diff --git a/.gitattributes b/.gitattributes
index cae443c670..c929f8dbab 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -12,3 +12,4 @@ configure.in text eol=lf
Makefile text eol=lf
Makefile.in text eol=lf
*.sh text eol=lf
+*.sql text eol=lf
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index f6d7178e46..daa63b1f64 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -7,6 +7,7 @@ Table of Contents
* [Reporting Bugs](#reporting-bugs)
* [Suggesting Enhancements](#suggesting-enhancements)
* [Issue Labels](#issue-labels)
+ * [Local Development Environment](#local-development-environment)
* [Become a Team Member](#become-a-team-member)
Reporting Bugs
@@ -161,6 +162,13 @@ For the most part you as a user will have no reason to worry about the **Milesto
[search-rathena-label-typemaintenance]: https://github.com/rathena/rathena/issues?q=is%3Aissue+is%3Aopen+label%3Atype%3Amaintenance
[search-rathena-label-typequestion]: https://github.com/rathena/rathena/issues?q=is%3Aissue+is%3Aopen+label%3Atype%3Aquestion
+Local Development Environment
+-----------------------------
+
+Developers can get up and running quickly with a Dockerized development environment that installs all dependencies needed to run and develop on rAthena.
+See tools/docker/README.md for details
+
+
Become a Team Member
--------------------
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE/bug_report.md
similarity index 78%
rename from .github/ISSUE_TEMPLATE.md
rename to .github/ISSUE_TEMPLATE/bug_report.md
index 96136d4cf4..22e6ccad9c 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -1,3 +1,12 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: type:bug
+assignees: ''
+
+---
+
* **rAthena Hash**:
@@ -21,7 +30,7 @@ How to get your GitHub Hash:
* Result:
* Expected Result:
* How to Reproduce:
- * Official Information:
+ * Official Information:
* **Modifications that may affect results**:
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000000..820adadf89
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,35 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: type:enhancement
+assignees: ''
+
+---
+
+
+
+**Is your request related to a missing feature?**
+
+
+
+**Describe the solution you'd like**
+
+
+
+**Describe alternatives you've considered**
+
+
+
+**Additional context**
+
+
diff --git a/.gitignore b/.gitignore
index 35d42bb676..0259b3ab62 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
/autom4te.cache/requests
/autom4te.cache/traces.0
#Global
+.vscode
.Apple*
.DS_Store
.clang_complete
@@ -41,6 +42,8 @@ Thumbs.db
/map-server
/mapcache
/nbproject
+/yaml2sql
+/yamlupgrade
# /3rdparty/libconfig/
/3rdparty/libconfig/Makefile
@@ -119,6 +122,8 @@ Thumbs.db
/mapserv.bat
/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/README.md b/README.md
index a2e89c9461..cd91f78d0a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
+
# rAthena
[](https://travis-ci.org/rathena/rathena) [](https://ci.appveyor.com/project/rAthenaAPI/rathena/branch/master) [](https://lgtm.com/projects/g/rathena/rathena/alerts/) [](https://lgtm.com/projects/g/rathena/rathena/context:cpp)  
diff --git a/appveyor.yml b/appveyor.yml
index c840d7db53..36da1ff2f9 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-image: Visual Studio 2013
+image: Visual Studio 2015
# This is the default location, but we put it here for safety reasons, since we use it in our test script
clone_folder: c:\projects\rathena
# We do not need the git history for our integration tests
@@ -8,10 +8,8 @@ pull_requests:
do_not_increment_build_number: true
environment:
matrix:
- - VisualStudioVersion: 14.0
- Defines: "\"BUILDBOT\""
- - VisualStudioVersion: 14.0
- Defines: "\"BUILDBOT;PRERE\""
+ - Defines: "\"BUILDBOT\""
+ - Defines: "\"BUILDBOT;PRERE\""
platform:
- Win32
- x64
diff --git a/conf/battle/battleground.conf b/conf/battle/battleground.conf
index f6ca66e30e..05537ea85f 100644
--- a/conf/battle/battleground.conf
+++ b/conf/battle/battleground.conf
@@ -30,3 +30,7 @@ bg_flee_penalty: 20
// Interval before updating the bg-member map mini-dots (milliseconds)
bg_update_interval: 1000
+
+// Before a player is warped into a Battleground from the Battleground Queue,
+// check to see if the player's current map has MF_NOWARP.
+bgqueue_nowarp_mapflag: no
diff --git a/conf/battle/client.conf b/conf/battle/client.conf
index d49b645edb..cc1035a1e4 100644
--- a/conf/battle/client.conf
+++ b/conf/battle/client.conf
@@ -38,7 +38,7 @@ hide_woe_damage: no
pet_hair_style: 100
// Visible area size (how many squares away from a player they can see)
-area_size: 15
+area_size: 14
// Maximum walk path (how many cells a player can walk going to cursor)
max_walk_path: 17
@@ -71,9 +71,7 @@ wedding_modifydisplay: no
save_clothcolor: yes
// Save body styles. (Note 1)
-// Note: Don't turn this on unless you know what you are doing.
-// Sprites are not released officially.
-save_body_style: no
+save_body_style: yes
// Do not display cloth colors for the wedding class?
// Note: Both save_clothcolor and wedding_modifydisplay have to be enabled
@@ -140,3 +138,19 @@ spawn_direction: no
// kRO removed the packet and this re-enables the message.
// Official: Disabled.
mvp_exp_reward_message: no
+
+// Send ping timer
+// Interval in seconds for each timer invoke.
+ping_timer_inverval: 30
+
+// Send packets timeout in seconds before ping packet can be sent.
+ping_time: 20
+
+// Show skill scale for clients 2015-12-23 and newer? (Note 1)
+// Official: yes
+show_skill_scale: yes
+
+// Should the connection be dropped on server side after a player disconnection request was received? (Note 1)
+// Note: Enabling this is known to cause problems on clients that make use of REST API calls.
+// Official: no
+drop_connection_on_quit: no
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/guild.conf b/conf/battle/guild.conf
index 80d87d28f8..8b4d24fba9 100644
--- a/conf/battle/guild.conf
+++ b/conf/battle/guild.conf
@@ -18,6 +18,7 @@ guild_max_castles: 0
// Activate guild skills delay by relog?
// Official setting is 5 minutes (300000 ms), otherwise allow guild leaders to relog to cancel the 5 minute delay.
+// Note: This was changed in renewal in favor of individual skill cooldown.
guild_skill_relog_delay: 300000
// Melee damage adjustments (non skills) for WoE battles (Guild Vs Guild) (Note 2)
diff --git a/conf/battle/homunc.conf b/conf/battle/homunc.conf
index acf42ce933..01fc0c4d3e 100644
--- a/conf/battle/homunc.conf
+++ b/conf/battle/homunc.conf
@@ -50,7 +50,7 @@ homunculus_auto_vapor: 80
homunculus_max_level: 99
// Max level for Homunculus S
-homunculus_S_max_level: 150
+homunculus_S_max_level: 175
// Growth level for Homunculus S
// This is the level at which homunculus S can use their growth tables
@@ -62,11 +62,46 @@ homunculus_S_growth_level: 99
// Official: yes
homunculus_autofeed_always: yes
-// Is getting exp/item from the homunculus disabled when you're idle?
+// Is getting exp/item from the homunculus 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.
-// You will only receive items if 'homunculus_autoloot' is activated,
+// Their master will only receive items if 'homunculus_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.
hom_idle_no_share: no
+
+// How the server should measure the homunculus master's idle time? (for homunculus exp share and autoloot ONLY) (Note 3)
+// (This will only work if 'hom_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 homunculus, separated from normal idle timer and 'idletime_option'.
+// It will only apply to homunculus-only kills and it will not affect normal autoloot and party share options.
+idletime_hom_option: 0x1F
+
+// The rate at which homunculus gain experience from kills. (Note 2)
+// Only applies to renewal mode.
+// Official: 10%
+homunculus_exp_gain: 10
+
+// The hunger rate, less than or equal to, at which a homunculus' hunger delay changes. (Note 2)
+// See 'homunculus_starving_delay' for the delay value.
+// Set to 0 to disable.
+// Official: 10
+homunculus_starving_rate: 10
+
+// Homunculi normally lose hunger every 60 seconds but when the 'homunculus_starving_rate' is met the hunger delay drops to 20 seconds (in milliseconds).
+// Official: 20 seconds
+homunculus_starving_delay: 20000
diff --git a/conf/battle/items.conf b/conf/battle/items.conf
index be5e6448d0..24da604c68 100644
--- a/conf/battle/items.conf
+++ b/conf/battle/items.conf
@@ -52,14 +52,9 @@ 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 or
-// specified as unavailable in db/item_avail.txt
+// NOTE: An item is not available if it was not loaded from the item_db.
// 0x1: Inventory
// 0x2: Cart
// 0x4: Storage
@@ -103,7 +98,7 @@ item_enabled_npc: yes
// Default: yes
item_flooritem_check: yes
-// Set default bound type for item_flag &8 (see db/[pre-]re/item_flag.txt
+// Set default bound type when item with BindOnEquip flag is equipped (see db/[pre-]re/item_db.yml)
// 0 - None
// 1 - Account
// 2 - Guild
@@ -120,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
@@ -134,6 +124,9 @@ broadcast_hide_name: 2
// Enable to sell rental item to NPC shop? (Note 1)
rental_transaction: yes
+// Sell rental item for 0 to NPC shop regardless of the item value in item_db? (Note 1)
+rental_item_novalue: no
+
// Minimum purchase price of items at a normal Shop
// Officially items cannot be purchased for less than 1 Zeny
min_shop_buy: 1
diff --git a/conf/battle/misc.conf b/conf/battle/misc.conf
index 1a3b8bb7e0..5850705ef9 100644
--- a/conf/battle/misc.conf
+++ b/conf/battle/misc.conf
@@ -114,6 +114,9 @@ at_timeout: 0
// Makes player cannot be attacked when autotrade? (turns player's state.monster_ignore) (Note 1)
at_monsterignore: no
+// Should autotrade trigger OnPCLogout script events? (Note 1)
+at_logout_event: yes
+
// Auction system, fee per hour. Default is 12000
auction_feeperhour: 12000
diff --git a/conf/battle/monster.conf b/conf/battle/monster.conf
index 012bb622bd..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,
@@ -276,3 +284,11 @@ boss_nopc_idleskill_rate: 100
// To switch it off, set it to 0.
mob_nopc_move_rate: 100
boss_nopc_move_rate: 100
+
+// When killing a monster, do AG_BATTLE type achievements trigger for everyone in the same party within the area?
+// Area is limited to area_size battle config.
+achievement_mob_share: no
+
+// Should slaves teleport back to their master if they get too far during chase? (Note 1)
+// Default (Official): no
+slave_stick_with_master: no
diff --git a/conf/battle/player.conf b/conf/battle/player.conf
index f5d0475670..456615ea1c 100644
--- a/conf/battle/player.conf
+++ b/conf/battle/player.conf
@@ -74,6 +74,9 @@ max_third_aspd: 193
// Max ASPD for extended class (Kagerou/Oboro and Rebellion). (Default 193, Highest allowed 199)
max_extended_aspd: 193
+// Max ASPD for Summoner Class (Doram). (Default 193, Highest allowed 199)
+max_summoner_aspd: 193
+
// Maximum walk speed rate (200 would be capped to twice the normal speed)
max_walk_speed: 300
@@ -256,24 +259,28 @@ fame_pharmacy_7: 10
fame_pharmacy_10: 50
// How the server should measure the character's idle time? (Note 3)
-// 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
+// 0x0001 - Walk Request
+// 0x0002 - UseSkillToID Request (Targetted skill use attempt)
+// 0x0004 - UseSkillToPos Request (AoE skill use attempt)
+// 0x0008 - UseItem Request (Including equip/unequip)
+// 0x0010 - Attack Request
+// 0x0020 - Chat Request (Whisper, Party, Guild, Battlegrounds, etc)
+// 0x0040 - Sit/Standup Request
+// 0x0080 - Emotion Request
+// 0x0100 - DropItem Request
+// 0x0200 - @/#Command Request
+// 0x0400 - Closing a NPC window
+// 0x0800 - Providing input to a NPC
+// 0x1000 - Choosing a NPC menu option
+// 0x2000 - Clicking the next button of a NPC
+// 0x4000 - Finishing for a NPC progress bar
// Please note that at least 1 option has to be enabled.
// Be mindful that the more options used, the easier it becomes to cheat features that rely on idletime (e.g. checkidle()).
-// Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) = 0x1F
-idletime_option: 0x1F
+// Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) + any npc interaction(0x400,0x800,0x1000,0x2000,0x4000) = 0x7C1F
+idletime_option: 0x7C1F
// Adjust the summoner class' special traits.
-// 0: Summoners behave like other classes.
-// 1: Summoners belong to brute race instead of demi-human
-// 2: Summoners are small size instead of medium
-// 3: Both of the above (official value)
-summoner_trait: 3
+// - Summoners belong to brute race category. They have their own race RC_PLAYER_DORAM (11) to be differentiated from monster race RC_BRUTE (2).
+// - Summoners are small size (0) instead of medium (1)
+summoner_race: 11
+summoner_size: 0
diff --git a/conf/battle/skill.conf b/conf/battle/skill.conf
index a142722495..56ac8eb9d4 100644
--- a/conf/battle/skill.conf
+++ b/conf/battle/skill.conf
@@ -85,7 +85,7 @@ clear_skills_on_warp: 15
//Setting this to YES will override the target mode of ground-based skills with the flag 0x01 to "No Enemies"
//The two skills affected by default are Pneuma and Safety Wall (if set to yes, those two skills will not protect everyone, but only allies)
-//See db/skill_unit_db.txt for more info.
+//See db/(pre-)re/skill_db.yml for more info.
defunit_not_enemy: no
// Should skills always do at least 'hits' damage when they don't miss/are blocked?
@@ -107,11 +107,11 @@ auto_counter_type: 15
// Can ground skills be placed on top of each other? (Note 3)
// By default, skills with UF_NOREITERATION set cannot be stacked on top of
-// other skills, this setting will override that. (skill_unit_db)
+// other skills, this setting will override that.
skill_reiteration: 0
// Can ground skills NOT be placed underneath/near players/monsters? (Note 3)
-// If set, only skills with UF_NOFOOTSET set will be affected (skill_unit_db)
+// If set, only skills with UF_NOFOOTSET set will be affected.
skill_nofootset: 1
// Should traps (hunter traps + quagmire) change their target to "all" inside gvg/pvp grounds? (Note 3)
@@ -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)
@@ -341,9 +341,9 @@ arrow_shower_knockback: yes
stormgust_knockback: yes
// For RENEWAL_CAST (Note 2)
-// By default skill that has '0' value for Fixed Casting Time will use 20% of cast time
+// By default skill that has '-1' value for Fixed Casting Time will use 20% of cast time
// as Fixed Casting Time, and the rest (80%) as Variable Casting Time.
-// Put it 0 to disable default Fixed Casting Time (just like -1 is the skill_cast_db.txt).
+// Put it 0 to disable default Fixed Casting Time (just like 0 in the skill_db.yml).
default_fixed_castrate: 20
// On official servers, skills that hit all targets on a path (e.g. Focused Arrow Strike and First Wind) first
@@ -355,6 +355,10 @@ default_fixed_castrate: 20
// Note: Brandish Spear will always use this algorithm due to its special damage behavior.
skill_eightpath_algorithm: yes
+// Should skills that use skill_eightpath_algorithm include targets in the caster's cell?
+// Official: yes
+skill_eightpath_same_cell: yes
+
// Can damage skill units like icewall and traps (Note 3)
// On official servers, players can damage icewalls and some traps with skills. When monsters use skills, damage
// will show on the icewalls and traps, but it is not actually substracted from the durability.
@@ -370,6 +374,13 @@ can_damage_skill: 1
// Legacy Athena: 1
land_protector_behavior: 0
+// NPC EMOTION behavior (Note 1)
+// On official servers, certain mobs cast NPC EMOTION skill which displays an emoticon and change their mode from
+// Aggressive to Passive for a certain time. The Athena behavior does not change their mode to Passive.
+// Official: 0
+// Legacy Athena: 1
+npc_emotion_behavior: 0
+
// Should Tarot Card of Fate have the same chance for each card to occur? (Note 1)
// Official chances: 15%: LOVERS | 10%: FOOL, MAGICIAN, HIGH PRIESTESS, STRENGTH, SUN | 8%: TEMPERANCE
// 7%: CHARIOT | 6%: THE HANGED MAN | 5%: DEATH, STAR | 2%: TOWER | 1%: WHEEL OF FORTUNE, DEVIL
diff --git a/conf/char_athena.conf b/conf/char_athena.conf
index 05332d2a4b..d448d5fb61 100644
--- a/conf/char_athena.conf
+++ b/conf/char_athena.conf
@@ -197,7 +197,7 @@ char_del_restriction: 3
// Uncomment to customize the restriction
//allowed_job_flag: 3
-// What folder the DB files are in (item_db.txt, etc.)
+// Folder that contains the database files.
db_path: db
//===================================
@@ -284,4 +284,14 @@ mail_return_days: 15
// Default: 15
mail_delete_days: 15
+// Does the Retrieve All button ignore unread mail status?
+// no: Only return attachments from read mail
+// yes: Return attachments from all mail
+// 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/inter_athena.conf b/conf/inter_athena.conf
index d814f32698..e60be22ef1 100644
--- a/conf/inter_athena.conf
+++ b/conf/inter_athena.conf
@@ -81,8 +81,6 @@ mysql_reconnect_count: 1
// Login Database Tables
login_server_account_db: login
ipban_table: ipbanlist
-
-// Shared
global_acc_reg_num_table: global_acc_reg_num
global_acc_reg_str_table: global_acc_reg_str
diff --git a/conf/login_athena.conf b/conf/login_athena.conf
index 9b193e8be4..719d366ea4 100644
--- a/conf/login_athena.conf
+++ b/conf/login_athena.conf
@@ -52,7 +52,8 @@ console_silent: 0
console: off
// Can you use _M/_F to make new accounts on the server?
-new_account: yes
+// Note: This only works if client side password encryption is not enabled.
+new_account: no
//If new_account is enabled, minimum length to userid and passwords should be 4?
//Must be 'Yes' unless your client uses both 'Disable 4 LetterUserID/Password' Diffs
@@ -162,6 +163,10 @@ dnsbl_servers: bl.blocklist.de, socks.dnsbl.sorbs.net
// Note: see 'doc/md5_hashcheck.txt' for more details.
client_hash_check: off
+// Enable web authentication token system
+// This is required for new clients that get data via an additional API over HTTP
+use_web_auth_token: yes
+
// Client MD5 hashes
// The client with the specified hash can be used to log in by players with
// a group_id equal to or greater than the given value.
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 81a7dd51a3..90f0e198e3 100644
--- a/conf/msg_conf/map_msg.conf
+++ b/conf/msg_conf/map_msg.conf
@@ -92,7 +92,7 @@
75: War of Emperium is currently not in progress.
76: All skills have been added to your skill tree.
77: The reference result of '%s' (name: id):
-78: - %s: %d
+78: - %s: %u
79: It is %d affair above.
80: Give the display name or monster name/id please.
81: Your GM level doesn't authorize you to perform this action on the specified player.
@@ -179,7 +179,7 @@
166: No item has been refined.
167: 1 item has been refined.
168: %d items have been refined.
-169: The item (%hu: '%s') is not equipable.
+169: The item (%u: '%s') is not equipable.
170: The item is not equipable.
171: %d - void
//172: You replace previous memo position %d - %s (%d,%d).
@@ -354,9 +354,10 @@
334: Total Domination
// Battlegrounds Queue
-337: You may not join a battleground queue when you're in a battleground map.
+337: You can't apply to a battleground queue from this map.
338: You can't apply to a battleground queue due to recently deserting a battleground. Time remaining: %d minutes and %d seconds.
339: You can't apply to a battleground queue for %d seconds due to recently leaving one.
+340: Participants were unable to join. Delaying entry for more participants.
// Templates for @who output
343: Name: %s
@@ -428,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
@@ -550,7 +551,7 @@
// Trade Spoof Messages
538: Hack on trade: character '%s' (account: %d) try to trade more items that he has.
-539: This player has %d of a kind of item (id: %hu), and tried to trade %d of them.
+539: This player has %d of a kind of item (id: %u), and tried to trade %d of them.
540: This player has been definitivly blocked.
// Rare Items Drop/Steal announce
@@ -738,19 +739,19 @@
707: You are VIP until: %s
708: The player is now VIP until: %s
-709: Item %hu has been removed from your inventory.
-710: Item %hu has been removed from your cart.
-711: Item %hu has been removed from your storage.
+709: Item %u has been removed from your inventory.
+710: Item %u has been removed from your cart.
+711: Item %u has been removed from your storage.
// Item shop
-712: You do not have enough %s (%hu).
+712: You do not have enough %s (%u).
713: You do not have enough '%s'.
-714: Item Shop List: %s (%hu)
+714: Item Shop List: %s (%u)
715: Point Shop List: '%s'
716: Your '%s' is now: %d
// MVP EXP reward message
-717: Congratulations! You are the MVP! Your reward EXP Points are %u !!
+717: Congratulations! You are the MVP! Your reward EXP Points are %llu !!
// @showrate
718: Personal rate information is not displayed now.
@@ -835,7 +836,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
@@ -1234,9 +1238,9 @@
1189: Item not found.
1190: You're already autolooting this item.
1191: Your autolootitem list is full. Remove some items first with @autolootid -- .
-1192: Autolooting item: '%s'/'%s' {%hu}
+1192: Autolooting item: '%s'/'%s' {%u}
1193: You're currently not autolooting this item.
-1194: Removed item: '%s'/'%s' {%hu} from your autolootitem list.
+1194: Removed item: '%s'/'%s' {%u} from your autolootitem list.
1195: You can have %d items on your autolootitem list.
1196: To add an item to the list, use "@alootid +
- ". To remove an item, use "@alootid -
- ".
1197: "@alootid reset" will clear your autolootitem list.
@@ -1326,12 +1330,12 @@
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:
1246: This monster has no drops.
-1247: MVP Bonus EXP:%u
+1247: MVP Bonus EXP:%llu
1248: MVP Items:
1249: This monster has no MVP prizes.
@@ -1385,7 +1389,7 @@
// @iteminfo
1276: Please enter an item name/ID (usage: @ii/@iteminfo
- ).
-1277: Item: '%s'/'%s'[%d] (%hu) Type: %s | Extra Effect: %s
+1277: Item: '%s'/'%s'[%d] (%u) Type: %s | Extra Effect: %s
1278: None
1279: With script
1280: NPC Buy:%dz, Sell:%dz | Weight: %.1f
@@ -1395,7 +1399,7 @@
// @whodrops
1284: Please enter item name/ID (usage: @whodrops
- ).
-1285: Item: '%s'[%d] (ID:%hu)
+1285: Item: '%s'[%d] (ID: %u)
1286: - Item is not dropped by mobs.
1287: - Common mobs with highest drop chance (only max %d are listed):
@@ -1718,12 +1722,19 @@
1511: > HUNTING : %d
1512: > PLAYTIME : %d
+// @changegm
+1513: Currently in WoE hours, unable to delegate Guild leader
+1514: You have to wait for a while before delegating a new Guild leader
+
+// @hatereset
+1515: Reset 'Hatred' monsters.
+
// More Adoption
-1513: The Baby is not level 50 or lower.
-1514: Baby has been disowned.
-1515: Baby is not adopted.
-1516: A Parent is not the father or mother of the Baby.
-1517: Usage:
+1516: The Baby is not level 50 or lower.
+1517: Baby has been disowned.
+1518: Baby is not adopted.
+1519: A Parent is not the father or mother of the Baby.
+1520: Usage:
//Custom translations
import: conf/msg_conf/import/map_msg_eng_conf.txt
diff --git a/conf/msg_conf/map_msg_chn.conf b/conf/msg_conf/map_msg_chn.conf
index f027b2aeeb..e1fc85d262 100644
--- a/conf/msg_conf/map_msg_chn.conf
+++ b/conf/msg_conf/map_msg_chn.conf
@@ -96,7 +96,7 @@
75: 公會戰還沒開始
76: 您學會了所有技能
77: 委託 '%s' (名字: 編號):
-78: %s: %d
+78: %s: %u
79: 查詢到 %d 個符合條件的結果
80: 重新讀取任務資料庫
81: 您的GM 等級並沒有權限在這位玩家上執行這個動作
@@ -183,7 +183,7 @@
166: 沒有道具被精練
167: 1 個道具已被精練
168: %d 個道具已被精練
-169: 此物品 (%d '%s')不是裝備
+169: 此物品 (%u: '%s')不是裝備
170: 此物品不是裝備
171: %d - 無
//172: You replace previous memo position %d - %s (%d,%d).
@@ -500,7 +500,7 @@
537: 玩家'%s' (account: %d) 試圖使用外掛(它試圖偵測假的怪物)
// Trade Spoof Messages
538: 危險交易: 玩家 '%s' (account: %d) 嘗試交易超過他所有的數量
-539: 這個使用者有%d 個物品(物品id: %d), 嘗試交易%d 個
+539: 這個使用者有%d 個物品(物品id: %u), 嘗試交易%d 個
540: 這個使用者已經被伺服器屏蔽
// Rare Items Drop/Steal announce
541: '%s' 取得 %s's %s (機率為: %%%0.02f)
@@ -1042,9 +1042,9 @@
1189: 未找到此道具。
1190: 此道具已在自動檢取列表中了。
1191: 自動檢取列表已經滿了,移除某些道具方法 @autolootid -<道具名稱或ID>。
-1192: 自動檢取的道具為: '%s'/'%s' {%d}。
+1192: 自動檢取的道具為: '%s'/'%s' {%u}。
1193: 目前你尚未將此道具列入自動檢取項目中。
-1194: 已從自動檢取列表中移除道具: '%s'/'%s' {%d}。
+1194: 已從自動檢取列表中移除道具: '%s'/'%s' {%u}。
1195: 在自動檢取列表你最多能有 %d 個檢取的項目。
1196: 如要在自動檢取項目列表增加檢取道具,使用 "@alootid +<道具名稱或ID>", 如要從列表移除道具 "@alootid -<道具名稱或ID>"。
1197: "@alootid reset" 將會清空所有自動檢取項目列表。
@@ -1134,12 +1134,12 @@
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: 掉落:
1246: 此魔物不掉落道具.
-1247: MVP額外經驗值:%u
+1247: MVP額外經驗值:%llu
1248: MVP額外獎勵道具:
1249: 此魔物無MVP額外獎勵道具.
@@ -1193,7 +1193,7 @@
// @iteminfo
1276: 請輸入 物品名稱/ID (用法: @ii/@iteminfo <物品名稱/ID>).
-1277: 物品: '%s'/'%s'[%d] (%d) 類型: %s | 額外效果: %s
+1277: 物品: '%s'/'%s'[%d] (%u) 類型: %s | 額外效果: %s
1278: None
1279: With script
1280: NPC 買價:%dz, 賣價:%dz | 重量: %.1f
diff --git a/conf/msg_conf/map_msg_frn.conf b/conf/msg_conf/map_msg_frn.conf
index e4c05ba42b..3f428a6985 100644
--- a/conf/msg_conf/map_msg_frn.conf
+++ b/conf/msg_conf/map_msg_frn.conf
@@ -96,7 +96,7 @@
75: La War of Emperium n'est pas en cours.
76: Toutes les comptences sont ajoutes votre arbre de comptence.
77: Rsultat de '%s' (nom: id):
-78: %s: %d
+78: %s: %u
79: %d rsultats sont affichs.
80: Veuillez donner le nom/id du montre.
81: Votre niveau de GM ne vous autorise pas effectuer cette action sur le Joueur spcifi.
@@ -183,7 +183,7 @@
166: Aucun quipement n'a t raffin.
167: 1 objet raffin.
168: %d objets raffins.
-169: L'objet (%hu: '%s') ne peut pas s'quiper.
+169: L'objet (%u: '%s') ne peut pas s'quiper.
170: L'objet ne peut pas s'quiper.
171: %d - void
//172: You replace previous memo position %d - %s (%d,%d).
@@ -512,7 +512,7 @@
537: Personnage '%s' (compte: %d) essaie d'utiliser un bot (il essaie de dtecter un faux mob).
// Trade Spoof Messages
538: Hack sur change: Personnage '%s' (account: %d) essaie d'changer plus d'Objets qu'il ne possde.
-539: Ce Joueur a %d d'une sorte d'Objet (id: %hu), et tente d'en changer %d.
+539: Ce Joueur a %d d'une sorte d'Objet (id: %u), et tente d'en changer %d.
540: Joueur dfinitivement bloqu.
// Rare Items Drop/Steal announce
541: '%s' obtient de %s l'Objet %s (chance: %0.02f%%)
@@ -1055,9 +1055,9 @@
1189: Objet trouvable.
1190: Vous ramasser dj automatiquement cet Objet.
1191: Votre liste d'Objet ramasser est pleine. Supprimez des Objets avec @autolootid -.
-1192: Ramassage automatique de: '%s'/'%s' {%hu}
+1192: Ramassage automatique de: '%s'/'%s' {%u}
1193: Actuellement vous ne ramassez pas automatiquement cet Objet.
-1194: Onjet supprim: '%s'/'%s' {%hu} de votre liste de 'autolootitem'.
+1194: Onjet supprim: '%s'/'%s' {%u} de votre liste de 'autolootitem'.
1195: Vous pouvez avoir %d Objets dans votre liste d'Objets ramasss automatiquement avec 'autolootitem'.
1196: Pour ajouter un Objet votre liste, utilisez "@alootid +". Pour supprimer un Objet de la liste, utilisez "@alootid -".
1197: "@alootid reset" videra votre liste d'Objets ramasss automatiquement avec 'autolootitem'.
@@ -1147,12 +1147,12 @@
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:
1246: Ce monstre n'a pas de drops.
-1247: MVP Bonus EXP:%u
+1247: MVP Bonus EXP:%llu
1248: MVP Items:
1249: Ce monstre n'a pas de Prix spcial MVP.
@@ -1206,7 +1206,7 @@
// @iteminfo
1276: Entrez un nom/ID d'objet (usage: @ii/@iteminfo ).
-1277: Item: '%s'/'%s'[%d] (%hu) Type: %s | Extra Effect: %s
+1277: Item: '%s'/'%s'[%d] (%u) Type: %s | Extra Effect: %s
1278: Aucun
1279: Avec script
1280: NPC Achet:%dz, Vendu:%dz | Poids: %.1f
diff --git a/conf/msg_conf/map_msg_grm.conf b/conf/msg_conf/map_msg_grm.conf
index b6d4bc69b2..5def0b53a7 100644
--- a/conf/msg_conf/map_msg_grm.conf
+++ b/conf/msg_conf/map_msg_grm.conf
@@ -95,7 +95,7 @@
75: War of Emperium ist zur Zeit nicht im Gange.
76: Alle Fähigkeiten wurden deinem Fähigkeitenbaum hinzugefügt.
77: Das Ergebnis der Suche nach '%s' lautet (Name: ID):
-78: %s: %d
+78: %s: %u
79: Es wurden %d Gegenstände gefunden.
80: Gib bitte den Anzeige-Namen oder die Monster-ID an.
81: Dein GM-Level berechtigt dich nicht, diese Aktion auf dem angegebenen Spieler auszuführen.
@@ -182,7 +182,7 @@
166: Kein Items sind refined.
167: 1 Item ist refined.
168: %d Items sind refined.
-169: Das Item (%d: '%s') ist nicht ausrüstbar.
+169: Das Item (%u: '%s') ist nicht ausrüstbar.
170: Das Item ist nicht ausrüstbar.
171: %d - ungültig
//172: You replace previous memo position %d - %s (%d,%d).
@@ -438,7 +438,7 @@
537: Charakter '%s' (account: %d) Versucht einen Bot zu benutzen (Es versucht einen fake Mob zu entlarven).
// Trade Spoof Messages
538: Hack bei Handel: Charakter '%s' (account: %d) versucht mit mehr Items zu Handeln als er besitzt.
-539: Dieser Spieler hat %d vom folgendem Item (id: %d), und versuchte %d von ihnen zu Handeln.
+539: Dieser Spieler hat %d vom folgendem Item (id: %u), und versuchte %d von ihnen zu Handeln.
540: Dieser Spieler wurde definitiv blockiert.
// Rare Items Drop/Steal announce
541: '%s' got %s's %s (chance: %0.02f%%)
diff --git a/conf/msg_conf/map_msg_idn.conf b/conf/msg_conf/map_msg_idn.conf
index 080d7519cc..8d8395873e 100644
--- a/conf/msg_conf/map_msg_idn.conf
+++ b/conf/msg_conf/map_msg_idn.conf
@@ -92,7 +92,7 @@
75: War of Emperium saat ini tidak sedang berjalan.
76: Semua skill telah ditambahkan ke skill tree.
77: Hasil referensi dari '%s' (nama: id):
-78: - %s: %d
+78: - %s: %u
79: Terdapat %d hal di atas.
80: Harap berikan nama tampilan atau nama/id monster.
81: Level GM kamu tidak diizinkan untuk untuk melakukan aksi ini pada pemain tertentu.
@@ -179,7 +179,7 @@
166: Tidak ada item yang ditempa.
167: 1 item berhasil ditempa.
168: %d item berhasil ditempa.
-169: Item (%hu: '%s') tidak bisa dipakai.
+169: Item (%u: '%s') tidak bisa dipakai.
170: Item ini tidak bisa dipakai.
171: %d - sudah habis
//172: Kamu sudah mengganti posisi memo %d - %s (%d,%d).
@@ -544,7 +544,7 @@
// Pesan tentang pelanggaran transaksi.
538: Hack pada transaksi: Karakter '%s' (akun: %d) sedang mencoba mentransaksikan item lebih dari yang dia punya.
-539: Pemain ini memiliki %d jenis item (id: %hu), dan sedang mencoba untuk mentransaksikan %d item.
+539: Pemain ini memiliki %d jenis item (id: %u), dan sedang mencoba untuk mentransaksikan %d item.
540: Pemain ini sudah diblok.
// Pesan tentang item langka yang berhasil didapatkan atau dicuri.
@@ -732,20 +732,17 @@
707: VIP anda berlaku hingga: %s
708: Status VIP pemain aktif hingga: %s
-709: Item %hu telah dihapus dari inventory-mu.
-710: Item %hu telah dihapus dari cart-mu.
-711: Item %hu telah dihapus dari storage-mu.
+709: Item %u telah dihapus dari inventory-mu.
+710: Item %u telah dihapus dari cart-mu.
+711: Item %u telah dihapus dari storage-mu.
//Item shop
-712: %s (%hu) yang kamu miliki tidak cukup.
+712: %s (%u) yang kamu miliki tidak cukup.
713: '%s' yang kamu miliki tidak cukup.
-714: Item Shop: %s (%hu)
+714: Item Shop: %s (%u)
715: Point Shop: '%s'
716: '%s' milikmu saat ini: %d
-//Item Group
-717: [%s] mendapatkan [%s] dari '%s'
-
//@showrate
718: Informasi mengenai rate pribadi tidak akan ditampilkan lagi.
719: Informasi mengenai rate pribadi akan ditampilkan kembali.
@@ -1146,9 +1143,9 @@
1189: Item tidak ditemukan.
1190: Kamu sudah mengambil secara otomatis item ini.
1191: Daftar autolooitem penuh. Hilangkan sebagian terlebih dahulu dengan @autolootid -.
-1192: Mengambil item secara otomatis: '%s'/'%s' {%hu}
+1192: Mengambil item secara otomatis: '%s'/'%s' {%u}
1193: Kamu saat ini sedang tidak mengambil item ini secara otomatis.
-1194: Item dihilangkan: '%s'/'%s' {%hu} dari daftar pengambilan otomatismu.
+1194: Item dihilangkan: '%s'/'%s' {%u} dari daftar pengambilan otomatismu.
1195: Kamu hanya memiliki item %d di daftarmu.
1196: Untuk menambahkan item ke daftar, gunakan \"@alootid +\". Untuk menghilangkannya, gunakan \"@alootid -\".
1197: \"@alootid reset\" akan membersihkan daftar autolootitem.
@@ -1243,7 +1240,7 @@
1244: ATK:%d~%d Jarak:%d~%d~%d Ukuran:%s Race: %s Elemen: %s (Lv:%d)
1245: Barang yang dijatuhkan:
1246: Monster ini tidak menjatuhkan barang.
-1247: Bonus EXP MVP:%u
+1247: Bonus EXP MVP:%llu
1248: Item MVP:
1249: Monster ini tidak memiliki bonus MVP.
@@ -1297,7 +1294,7 @@
// @iteminfo
1276: Harap masukkan nama/ID item. (Penggunaan: @ii/@iteminfo ).
-1277: Item: '%s'/'%s'[%d] (%hu) Jenis: %s | Efek tambahan: %s
+1277: Item: '%s'/'%s'[%d] (%u) Jenis: %s | Efek tambahan: %s
1278: Tidak ada
1279: Dengan script.
1280: NPC Harga Beli:%dz, Harga jual:%dz | Berat: %.1f
diff --git a/conf/msg_conf/map_msg_por.conf b/conf/msg_conf/map_msg_por.conf
index 2953f84f05..cbe9e74cac 100644
--- a/conf/msg_conf/map_msg_por.conf
+++ b/conf/msg_conf/map_msg_por.conf
@@ -102,7 +102,7 @@
75: A Guerra do Emperium ainda não foi iniciada.
76: Todas as habilidades foram adicionadas à sua árvore de habilidades.
77: O resultado da referência à '%s' (nome: id):
-78: %s: %d
+78: %s: %u
79: Encontrado %d acima.
80: Entre com o nome de exibição ou nome/id do monstro.
81: Seu nível de Game Master não autoriza a realização desta ação neste personagem.
@@ -189,7 +189,7 @@
166: Nenhum item foi refinado.
167: 1 item foi refinado.
168: %d itens foram refinados.
-169: O item (%hu: '%s') não é equipável.
+169: O item (%u: '%s') não é equipável.
170: O item não é equipável.
171: %d - vazio
//172: Você substituiu o ponto de memorização %d - %s (%d,%d).
@@ -555,7 +555,7 @@
// Mensagens de tentativa de Spoof em Negociações
538: Hack em negociação: personagem '%s' (account: %d) tentou negociar mais itens que possuía.
-539: Este jogador possui %d unidades de um item (id: %hu), e tentou negociar %d destes.
+539: Este jogador possui %d unidades de um item (id: %u), e tentou negociar %d destes.
540: Este jogador foi bloqueado indefinidamente.
// Anúncio de drop de Itens Raros/Furtar
@@ -744,18 +744,18 @@
707: Você é VIP até: %s
708: O jogador agora é VIP até: %s
-709: Item %hu foi removido do seu inventário.
-710: Item %hu foi removido do seu carrinho.
-711: Item %hu foi removido do seu armazém.
+709: Item %u foi removido do seu inventário.
+710: Item %u foi removido do seu carrinho.
+711: Item %u foi removido do seu armazém.
// Item shop
-712: Você não possui %s suficiente (%hu).
+712: Você não possui %s suficiente (%u).
713: Você não tem '%s' suficiente.
-714: Lista de Loja de Itens: %s (%hu)
+714: Lista de Loja de Itens: %s (%u)
715: Lista de loja de pontos: '%s'
716: Seu '%s' agora é: %d
// MVP EXP reward message
-717: Parabéns! Você é o MVP! Sua recompensa EXP Points are %u !!
+717: Parabéns! Você é o MVP! Sua recompensa EXP Points are %llu !!
// @showrate
718: As informações de taxa pessoal não são exibidas agora.
@@ -1225,9 +1225,9 @@
1189: Item não encontrado.
1190: Você já está autorrecolhendo este item.
1191: Sua lista de autorrecolhimento está cheia. Remova alguns itens com @autolootid -.
-1192: Autorrecolhendo item: '%s'/'%s' {%hu}
+1192: Autorrecolhendo item: '%s'/'%s' {%u}
1193: Você atualmente não está autorrecolhendo este item.
-1194: Removido item: '%s'/'%s' {%hu} da sua lista de autorrecolhimento.
+1194: Removido item: '%s'/'%s' {%u} da sua lista de autorrecolhimento.
1195: Você pode possuir %d itens na sua lista de autorrecolhimento.
1196: Para adicionar um item a lista, use "@alootid +". Para remover um item, use "@alootid -".
1197: "@alootid reset" irá limpar a sua lista de autorrecolhimento.
@@ -1317,12 +1317,12 @@
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:
1246: Este monstro não possui drops.
-1247: EXP Bônus MVP:%u
+1247: EXP Bônus MVP:%llu
1248: Itens MVP:
1249: Este monstro não possui prêmios MVP.
@@ -1376,7 +1376,7 @@
// @iteminfo
1276: Digite o nome/ID de um item (uso: @ii/@iteminfo ).
-1277: Item: '%s'/'%s'[%d] (%hu) Tipo: %s | Efeito Extra: %s
+1277: Item: '%s'/'%s'[%d] (%u) Tipo: %s | Efeito Extra: %s
1278: Nenhum
1279: Com script
1280: NPC Compra:%dz, Venda:%dz | Peso: %.1f
diff --git a/conf/msg_conf/map_msg_rus.conf b/conf/msg_conf/map_msg_rus.conf
index 6526cec682..7f0d1e01b8 100644
--- a/conf/msg_conf/map_msg_rus.conf
+++ b/conf/msg_conf/map_msg_rus.conf
@@ -94,7 +94,7 @@
75: .
76: .
77: '%s' (: ID):
-78: %s: %d
+78: %s: %u
79: %d .
80: ID/ .
81: .
@@ -181,7 +181,7 @@
166: .
167: 1 .
168: %d .
-169: (%hu: '%s') .
+169: (%u: '%s') .
170: .
171: %d -
//172:
@@ -512,7 +512,7 @@
537: '%s' (account: %d) ( ).
//
538: : '%s' (account: %d) .
-539: %d (id: %hu), %d .
+539: %d (id: %u), %d .
540: .
// /
541: '%s' %s's %s (: %0.02f%%)
@@ -1055,9 +1055,9 @@
1189: .
1190: .
1191: . @autolootid -.
-1192: : '%s'/'%s' {%hu}
+1192: : '%s'/'%s' {%u}
1193: .
-1194: : '%s'/'%s' {%hu} .
+1194: : '%s'/'%s' {%u} .
1195: %d .
1196: "@alootid +". : "@alootid -".
1197: "@alootid reset" .
@@ -1147,12 +1147,12 @@
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: :
1246: .
-1247: MVP :%u
+1247: MVP :%llu
1248: MVP :
1249: MVP .
@@ -1206,7 +1206,7 @@
// @iteminfo
1276: ID/ (: @ii/@iteminfo ).
-1277: : '%s'/'%s'[%d] (%hu) : %s | . : %s
+1277: : '%s'/'%s'[%d] (%u) : %s | . : %s
1278:
1279:
1280: :%d , :%d | : %.1f
diff --git a/conf/msg_conf/map_msg_spn.conf b/conf/msg_conf/map_msg_spn.conf
index 3f5b9812bd..901df9f63d 100644
--- a/conf/msg_conf/map_msg_spn.conf
+++ b/conf/msg_conf/map_msg_spn.conf
@@ -92,7 +92,7 @@
75: En estos momentos no hay ninguna guerra de clanes.
76: Se han aadido todas las habilidades a tu rbol de habilidades.
77: Estos son los resultados de la bsqueda de '%s' (nombre: ID):
-78: %s: %d
+78: %s: %u
79: Total de resultados: %d
80: Debes introducir el nombre del monstruo o su ID.
81: Tu nivel de GM no te permite utilizar este comando en ese jugador.
@@ -179,7 +179,7 @@
166: No se ha refinado ningn objeto.
167: Se ha refinado 1 objeto.
168: Se han refinado %d objetos.
-169: El objeto (%hu: '%s') no puede ser equipado.
+169: El objeto (%u: '%s') no puede ser equipado.
170: No puedes equiparte ese objeto.
171: %d - vaco
//172: Has reemplazado tu lugar memorizado %d - %s (%d,%d).
@@ -545,7 +545,7 @@
// Mensajes del sistemade intercambio de objetos
538: Se ha detectado una irregularidad en el intercambio de objetos del personaje '%s' (cuenta: %d), est intentando intercambiar ms de lo que tiene.
-539: Ese jugador tiene %d unidades del objeto (id: %hu), pero ha intentado intercambiar %d.
+539: Ese jugador tiene %d unidades del objeto (id: %u), pero ha intentado intercambiar %d.
540: Ese jugador ha sido bloqueado.
// Anuncios de consecucin de objetos poco comunes y robos de objetos.
@@ -733,19 +733,19 @@
707: Sers VIP hasta: %s
708: El jugador ser VIP hasta: %s
-709: El objeto %hu ha sido eliminado de tu inventario.
-710: El objeto %hu ha sido eliminado de tu carro.
-711: El objeto %hu ha sido eliminado de tu almacn.
+709: El objeto %u ha sido eliminado de tu inventario.
+710: El objeto %u ha sido eliminado de tu carro.
+711: El objeto %u ha sido eliminado de tu almacn.
// Item shop
-712: No tienes suficientes %s (%hu).
+712: No tienes suficientes %s (%u).
713: No tienes suficientes '%s'.
-714: Listado de la tienda de objetos: %s (%hu)
+714: Listado de la tienda de objetos: %s (%u)
715: Listado de puntos de la tienda: '%s'
716: Tu '%s' ahora es: %d
// MVP EXP reward message
-717: Enhorabuena! Eres todo un MVP! Puntos de experiencia obtenidos: %u!!
+717: Enhorabuena! Eres todo un MVP! Puntos de experiencia obtenidos: %llu!!
// @showrate
718: La informacin de ratio personal no se mostrar.
@@ -1194,9 +1194,9 @@
1189: Ese objeto no existe.
1190: Ese objeto ya estaba programado para ser recogido automticamente.
1191: Tu lista de recogida de objetos de forma automtica est llena. Elimina alguno de esos objetos con @autolootid .
-1192: Recogiendo: '%s'/'%s' {%hu}
+1192: Recogiendo: '%s'/'%s' {%u}
1193: No ests recogiendo ese objeto.
-1194: Has eliminado'%s'/'%s' {%hu} de tu lista de recogida de objetos.
+1194: Has eliminado'%s'/'%s' {%u} de tu lista de recogida de objetos.
1195: Puedes almacenar %d objetos en tu lista de recogida de objetos.
1196: Para aadir un nuevo objeto a la lista utiliza @alootid +. Para eliminar un objeto utiliza @alootid -.
1197: "@alootid reset" reiniciar tu lista de recogida de objetos.
@@ -1286,12 +1286,12 @@
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:
1246: Este monstruo no tiene ningn objeto.
-1247:Bono de EXP MVP:%u
+1247:Bono de EXP MVP:%llu
1248:Objetos MVP:
1249: Este monstruo no tiene ningnobjeto de MVP.
@@ -1345,7 +1345,7 @@
// @iteminfo
1276: Introduce el nombre/ID de un objeto (instrucciones: @ii/@iteminfo ).
-1277: Objeto: '%s'/'%s'[%d] (%hu) Tipo: %s | Efecto: %s
+1277: Objeto: '%s'/'%s'[%d] (%u) Tipo: %s | Efecto: %s
1278: Ninguno
1279: Contiene cdigo
1280: Compra en NPC:%dz, Venta:%dz | Peso: %.1f
@@ -1666,5 +1666,9 @@
1503: Has entrado en una zona PK.
1504: Has entrado en una zona PK (segura hasta el nivel %d).
+// @changegm
+1513: No puedes delegar el liderazgo del clan durante el horario de WoE
+1514: Debes esperar un tiempo antes de poder designar un nuevo lder de clan
+
//Traducciones personalizadas
import: conf/msg_conf/import/map_msg_spn_conf.txt
diff --git a/conf/msg_conf/map_msg_tha.conf b/conf/msg_conf/map_msg_tha.conf
index a715149e9d..64bf940eac 100644
--- a/conf/msg_conf/map_msg_tha.conf
+++ b/conf/msg_conf/map_msg_tha.conf
@@ -96,7 +96,7 @@
75: War of Emperium ӧҹ㹢й.
76: ء Skill ١Фäسº.
77: Ѿäҧԧҡ '%s' (: ):
-78: %s: %d
+78: %s: %u
79: Ѿ %d ҧ.
80: سкت Monster Monster.
81: дѺ GM ͧس ѺحҵسöԹáѺФ÷к.
@@ -183,7 +183,7 @@
166: Item ѺѾõ.
167: 1 Item ѺѾõ.
168: %d Item ѺѾõ.
-169: Item (%hu: '%s') ػó.
+169: Item (%u: '%s') ػó.
170: 辺 Item 鹹㹰ҹ.
171: %d - ҧ
//172: You replace previous memo position %d - %s (%d,%d).
@@ -506,7 +506,7 @@
537: Ф '%s' (account: %d) bot (ѹеǨ monster ).
// Trade Spoof Messages
538: Hack on trade: Ф '%s' (account: %d) š¹ item ӹǹҡҷ.
-539: item ӹǹ %d (id: %hu), оš¹㹨ӹǹ %d.
+539: item ӹǹ %d (id: %u), оš¹㹨ӹǹ %d.
540: 蹹١š¹.
// Rare Items Drop/Steal announce
541: '%s' %s's %s (͡: %0.02f%%)
@@ -1048,9 +1048,9 @@
1189: 辺 Item ѧ.
1190: سѹ֡ item ŧ¡º.
1191: ¡ autolootitem ͧس. ź item ҧ¡͡ @autolootid -.
-1192: ѹ֡ item : '%s'/'%s' {%hu} ŧ¡ autolootitem ͧس.
+1192: ѹ֡ item : '%s'/'%s' {%u} ŧ¡ autolootitem ͧس.
1193: سѹ֡ item ŧ¡.
-1194: ź item : '%s'/'%s' {%hu} ҡ¡ autolootitem ͧس.
+1194: ź item : '%s'/'%s' {%u} ҡ¡ autolootitem ͧس.
1195: سöѹ֡ %d item 㹡¡ autolootitem.
1196: 㹡¡, "@alootid +". 㹡ź¡, "@alootid -".
1197: "@alootid reset" 㹡ҧ¡ autolootitem ͧس.
@@ -1140,12 +1140,12 @@
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:
1246: Monster բͧ.
-1247: MVP Bonus EXP:%u
+1247: MVP Bonus EXP:%llu
1248: MVP Items:
1249: Monster բͧҧ MVP.
@@ -1199,7 +1199,7 @@
// @iteminfo
1276: ôкت/ID item (Ը: @ii/@iteminfo ).
-1277: Item: '%s'/'%s'[%d] (%hu) Type: %s | Extra Effect: %s
+1277: Item: '%s'/'%s'[%d] (%u) Type: %s | Extra Effect: %s
1278: None
1279: With script
1280: NPC Buy:%dz, Sell:%dz | Weight: %.1f
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 2dbed729ad..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
@@ -29,7 +29,12 @@
# MinLevel Minimum level required to join the battleground. (Default: 1)
# MaxLevel Maximum level to join the battleground. (Default: MAX_LEVEL value)
# Deserter Amount of time in seconds a player is marked deserter. (Default: 600)
-# StartDelay Amount of time in seconds once a queue is filled before a start message is sent to players. (Default: 30)
+# StartDelay Amount of time in seconds once a queue is filled before players are warped. (Default: 0)
+# Join: Which application type is accepted. The entryqueuelist.lub can visually disable these options.
+# Solo Able to join a queue as an individual. (Default: true)
+# Party Able to join a queue as a party. (Default: true)
+# Guild Able to join a queue as a guild. (Default: true)
+# JobRestrictions List of jobs that are unable to join the battleground.
# Locations: Battleground location settings.
# - Map The map on which the battleground will be played.
# StartEvent NPC event triggered when the battleground starts.
@@ -38,12 +43,14 @@
# RespawnY Y coordinate for warping on death.
# DeathEvent NPC event triggered when a player dies.
# QuitEvent NPC event triggered when a player quits.
+# ActiveEvent NPC event triggered when a player joints an active battleground.
# Variable Name of BG ID variable used in the battleground script.
# TeamB: TeamB settings.
# RespawnX X coordinate for warping on death.
# RespawnY Y coordinate for warping on death.
# DeathEvent NPC event triggered when a player dies.
# QuitEvent NPC event triggered when a player quits.
+# ActiveEvent NPC event triggered when a player joints an active battleground.
# Variable Name of BG ID variable used in the battleground script.
###########################################################################
@@ -53,121 +60,151 @@ Header:
Body:
- Id: 1
- Name: "Tierra Gorge"
+ Name: Tierra Gorge
MinPlayers: 6
MinLevel: 80
+ JobRestrictions:
+ Novice: true
+ SuperNovice: true
+ Novice_High: true
+ Baby: true
+ Super_Baby: true
+ Super_Novice_E: true
+ Super_Baby_E: true
Locations:
- - Map: "bat_a01"
- StartEvent: "start#bat_a01::OnReadyCheck"
+ - Map: bat_a01
+ StartEvent: start#bat_a01::OnReadyCheck
TeamA:
RespawnX: 50
RespawnY: 374
- QuitEvent: "start#bat_a01::OnGuillaumeQuit"
- Variable: "$@TierraBG1_id1"
+ QuitEvent: start#bat_a01::OnGuillaumeQuit
+ ActiveEvent: start#bat_a01::OnGuillaumeActive
+ Variable: $@TierraBG1_id1
TeamB:
RespawnX: 42
RespawnY: 16
- QuitEvent: "start#bat_a01::OnCroixQuit"
- Variable: "$@TierraBG1_id2"
- - Map: "bat_a02"
- StartEvent: "start#bat_a02::OnReadyCheck"
+ QuitEvent: start#bat_a01::OnCroixQuit
+ ActiveEvent: start#bat_a01::OnCroixActive
+ Variable: $@TierraBG1_id2
+ - Map: bat_a02
+ StartEvent: start#bat_a02::OnReadyCheck
TeamA:
RespawnX: 50
RespawnY: 374
- QuitEvent: "start#bat_a02::OnGuillaumeQuit"
- Variable: "$@TierraBG2_id1"
+ QuitEvent: start#bat_a02::OnGuillaumeQuit
+ ActiveEvent: start#bat_a02::OnGuillaumeActive
+ Variable: $@TierraBG2_id1
TeamB:
RespawnX: 42
RespawnY: 16
- QuitEvent: "start#bat_a02::OnCroixQuit"
- Variable: "$@TierraBG2_id2"
+ QuitEvent: start#bat_a02::OnCroixQuit
+ ActiveEvent: start#bat_a02::OnCroixActive
+ Variable: $@TierraBG2_id2
- Id: 2
- Name: "Flavius"
+ Name: Flavius
MinPlayers: 6
MinLevel: 80
+ JobRestrictions:
+ Novice: true
+ SuperNovice: true
+ Novice_High: true
+ Baby: true
+ Super_Baby: true
+ Super_Novice_E: true
+ Super_Baby_E: true
Locations:
- - Map: "bat_b01"
- StartEvent: "start#bat_b01::OnReadyCheck"
+ - Map: bat_b01
+ StartEvent: start#bat_b01::OnReadyCheck
TeamA:
RespawnX: 10
RespawnY: 290
- QuitEvent: "start#bat_b01::OnGuillaumeQuit"
- Variable: "$@FlaviusBG1_id1"
+ QuitEvent: start#bat_b01::OnGuillaumeQuit
+ ActiveEvent: start#bat_b01::OnGuillaumeActive
+ Variable: $@FlaviusBG1_id1
TeamB:
RespawnX: 390
RespawnY: 10
- QuitEvent: "start#bat_b01::OnCroixQuit"
- Variable: "$@FlaviusBG1_id2"
- - Map: "bat_b02"
- StartEvent: "start#bat_b02::OnReadyCheck"
+ QuitEvent: start#bat_b01::OnCroixQuit
+ ActiveEvent: start#bat_b01::OnCroixActive
+ Variable: $@FlaviusBG1_id2
+ - Map: bat_b02
+ StartEvent: start#bat_b02::OnReadyCheck
TeamA:
RespawnX: 10
RespawnY: 290
- QuitEvent: "start#bat_b02::OnGuillaumeQuit"
- Variable: "$@FlaviusBG2_id1"
+ QuitEvent: start#bat_b02::OnGuillaumeQuit
+ ActiveEvent: start#bat_b02::OnGuillaumeActive
+ Variable: $@FlaviusBG2_id1
TeamB:
RespawnX: 390
RespawnY: 10
- QuitEvent: "start#bat_b02::OnCroixQuit"
- Variable: "$@FlaviusBG2_id2"
+ QuitEvent: start#bat_b02::OnCroixQuit
+ ActiveEvent: start#bat_b02::OnCroixActive
+ Variable: $@FlaviusBG2_id2
- Id: 3
- Name: "KVM (Level 80 and up)"
+ Name: KVM (Level 80 and up)
MinPlayers: 5
MinLevel: 80
Locations:
- - Map: "bat_c01"
- StartEvent: "KvM01_BG::OnStart"
+ - Map: bat_c01
+ StartEvent: KvM01_BG::OnStart
TeamA:
RespawnX: 52
RespawnY: 129
- DeathEvent: "KvM01_BG::OnGuillaumeDie"
- QuitEvent: "KvM01_BG::OnGuillaumeQuit"
- Variable: "$@KvM01BG_id1"
+ DeathEvent: KvM01_BG::OnGuillaumeDie
+ QuitEvent: KvM01_BG::OnGuillaumeQuit
+ ActiveEvent: KvM01_BG::OnGuillaumeActive
+ Variable: $@KvM01BG_id1
TeamB:
RespawnX: 147
RespawnY: 55
- DeathEvent: "KvM01_BG::OnCroixDie"
- QuitEvent: "KvM01_BG::OnCroixQuit"
- Variable: "$@KvM01BG_id2"
+ DeathEvent: KvM01_BG::OnCroixDie
+ QuitEvent: KvM01_BG::OnCroixQuit
+ ActiveEvent: KvM01_BG::OnCroixActive
+ Variable: $@KvM01BG_id2
- Id: 4
- Name: "KVM (Level 60~79)"
+ Name: KVM (Level 60~79)
MinPlayers: 5
MinLevel: 60
MaxLevel: 79
Locations:
- - Map: "bat_c02"
- StartEvent: "KvM02_BG::OnStart"
+ - Map: bat_c02
+ StartEvent: KvM02_BG::OnStart
TeamA:
RespawnX: 52
RespawnY: 129
- DeathEvent: "KvM02_BG::OnGuillaumeDie"
- QuitEvent: "KvM02_BG::OnGuillaumeQuit"
- Variable: "$@KvM02BG_id1"
+ DeathEvent: KvM02_BG::OnGuillaumeDie
+ QuitEvent: KvM02_BG::OnGuillaumeQuit
+ ActiveEvent: KvM02_BG::OnGuillaumeActive
+ Variable: $@KvM02BG_id1
TeamB:
RespawnX: 147
RespawnY: 55
- DeathEvent: "KvM02_BG::OnCroixDie"
- QuitEvent: "KvM02_BG::OnCroixQuit"
- Variable: "$@KvM02BG_id2"
+ DeathEvent: KvM02_BG::OnCroixDie
+ QuitEvent: KvM02_BG::OnCroixQuit
+ ActiveEvent: KvM02_BG::OnCroixActive
+ Variable: $@KvM02BG_id2
- Id: 5
- Name: "KVM (Level 59 and below"
+ Name: KVM (Level 59 and below
MinPlayers: 5
MaxLevel: 59
Locations:
- - Map: "bat_c03"
- StartEvent: "KvM03_BG::OnStart"
+ - Map: bat_c03
+ StartEvent: KvM03_BG::OnStart
TeamA:
RespawnX: 52
RespawnY: 129
- DeathEvent: "KvM03_BG::OnGuillaumeDie"
- QuitEvent: "KvM03_BG::OnGuillaumeQuit"
- Variable: "$@KvM03BG_id1"
+ DeathEvent: KvM03_BG::OnGuillaumeDie
+ QuitEvent: KvM03_BG::OnGuillaumeQuit
+ ActiveEvent: KvM03_BG::OnGuillaumeActive
+ Variable: $@KvM03BG_id1
TeamB:
RespawnX: 147
RespawnY: 55
- DeathEvent: "KvM03_BG::OnCroixDie"
- QuitEvent: "KvM03_BG::OnCroixQuit"
- Variable: "$@KvM03BG_id2"
+ DeathEvent: KvM03_BG::OnCroixDie
+ QuitEvent: KvM03_BG::OnCroixQuit
+ ActiveEvent: KvM03_BG::OnCroixActive
+ Variable: $@KvM03BG_id2
Footer:
Imports:
diff --git a/db/const.txt b/db/const.txt
index 83a9102b51..d1a57fd9a3 100644
--- a/db/const.txt
+++ b/db/const.txt
@@ -14,200 +14,6 @@
// in field Value. Depending on the implementation values assigned by scripts to parameters will affect
// runtime values, such as Zeny, as well (see pc_readparam/pc_setparam).
-RDMOPT_VAR_MAXHPAMOUNT 1
-RDMOPT_VAR_MAXSPAMOUNT 2
-RDMOPT_VAR_STRAMOUNT 3
-RDMOPT_VAR_AGIAMOUNT 4
-RDMOPT_VAR_VITAMOUNT 5
-RDMOPT_VAR_INTAMOUNT 6
-RDMOPT_VAR_DEXAMOUNT 7
-RDMOPT_VAR_LUKAMOUNT 8
-RDMOPT_VAR_MAXHPPERCENT 9
-RDMOPT_VAR_MAXSPPERCENT 10
-RDMOPT_VAR_HPACCELERATION 11
-RDMOPT_VAR_SPACCELERATION 12
-RDMOPT_VAR_ATKPERCENT 13
-RDMOPT_VAR_MAGICATKPERCENT 14
-RDMOPT_VAR_PLUSASPD 15
-RDMOPT_VAR_PLUSASPDPERCENT 16
-RDMOPT_VAR_ATTPOWER 17
-RDMOPT_VAR_HITSUCCESSVALUE 18
-RDMOPT_VAR_ATTMPOWER 19
-RDMOPT_VAR_ITEMDEFPOWER 20
-RDMOPT_VAR_MDEFPOWER 21
-RDMOPT_VAR_AVOIDSUCCESSVALUE 22
-RDMOPT_VAR_PLUSAVOIDSUCCESSVALUE 23
-RDMOPT_VAR_CRITICALSUCCESSVALUE 24
-RDMOPT_ATTR_TOLERACE_NOTHING 25
-RDMOPT_ATTR_TOLERACE_WATER 26
-RDMOPT_ATTR_TOLERACE_GROUND 27
-RDMOPT_ATTR_TOLERACE_FIRE 28
-RDMOPT_ATTR_TOLERACE_WIND 29
-RDMOPT_ATTR_TOLERACE_POISON 30
-RDMOPT_ATTR_TOLERACE_SAINT 31
-RDMOPT_ATTR_TOLERACE_DARKNESS 32
-RDMOPT_ATTR_TOLERACE_TELEKINESIS 33
-RDMOPT_ATTR_TOLERACE_UNDEAD 34
-RDMOPT_ATTR_TOLERACE_ALL 35
-RDMOPT_DAMAGE_PROPERTY_NOTHING_USER 36
-RDMOPT_DAMAGE_PROPERTY_NOTHING_TARGET 37
-RDMOPT_DAMAGE_PROPERTY_WATER_USER 38
-RDMOPT_DAMAGE_PROPERTY_WATER_TARGET 39
-RDMOPT_DAMAGE_PROPERTY_GROUND_USER 40
-RDMOPT_DAMAGE_PROPERTY_GROUND_TARGET 41
-RDMOPT_DAMAGE_PROPERTY_FIRE_USER 42
-RDMOPT_DAMAGE_PROPERTY_FIRE_TARGET 43
-RDMOPT_DAMAGE_PROPERTY_WIND_USER 44
-RDMOPT_DAMAGE_PROPERTY_WIND_TARGET 45
-RDMOPT_DAMAGE_PROPERTY_POISON_USER 46
-RDMOPT_DAMAGE_PROPERTY_POISON_TARGET 47
-RDMOPT_DAMAGE_PROPERTY_SAINT_USER 48
-RDMOPT_DAMAGE_PROPERTY_SAINT_TARGET 49
-RDMOPT_DAMAGE_PROPERTY_DARKNESS_USER 50
-RDMOPT_DAMAGE_PROPERTY_DARKNESS_TARGET 51
-RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_USER 52
-RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_TARGET 53
-RDMOPT_DAMAGE_PROPERTY_UNDEAD_USER 54
-RDMOPT_DAMAGE_PROPERTY_UNDEAD_TARGET 55
-RDMOPT_MDAMAGE_PROPERTY_NOTHING_USER 56
-RDMOPT_MDAMAGE_PROPERTY_NOTHING_TARGET 57
-RDMOPT_MDAMAGE_PROPERTY_WATER_USER 58
-RDMOPT_MDAMAGE_PROPERTY_WATER_TARGET 59
-RDMOPT_MDAMAGE_PROPERTY_GROUND_USER 60
-RDMOPT_MDAMAGE_PROPERTY_GROUND_TARGET 61
-RDMOPT_MDAMAGE_PROPERTY_FIRE_USER 62
-RDMOPT_MDAMAGE_PROPERTY_FIRE_TARGET 63
-RDMOPT_MDAMAGE_PROPERTY_WIND_USER 64
-RDMOPT_MDAMAGE_PROPERTY_WIND_TARGET 65
-RDMOPT_MDAMAGE_PROPERTY_POISON_USER 66
-RDMOPT_MDAMAGE_PROPERTY_POISON_TARGET 67
-RDMOPT_MDAMAGE_PROPERTY_SAINT_USER 68
-RDMOPT_MDAMAGE_PROPERTY_SAINT_TARGET 69
-RDMOPT_MDAMAGE_PROPERTY_DARKNESS_USER 70
-RDMOPT_MDAMAGE_PROPERTY_DARKNESS_TARGET 71
-RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_USER 72
-RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_TARGET 73
-RDMOPT_MDAMAGE_PROPERTY_UNDEAD_USER 74
-RDMOPT_MDAMAGE_PROPERTY_UNDEAD_TARGET 75
-RDMOPT_BODY_ATTR_NOTHING 76
-RDMOPT_BODY_ATTR_WATER 77
-RDMOPT_BODY_ATTR_GROUND 78
-RDMOPT_BODY_ATTR_FIRE 79
-RDMOPT_BODY_ATTR_WIND 80
-RDMOPT_BODY_ATTR_POISON 81
-RDMOPT_BODY_ATTR_SAINT 82
-RDMOPT_BODY_ATTR_DARKNESS 83
-RDMOPT_BODY_ATTR_TELEKINESIS 84
-RDMOPT_BODY_ATTR_UNDEAD 85
-RDMOPT_BODY_ATTR_ALL 86
-RDMOPT_RACE_TOLERACE_NOTHING 87
-RDMOPT_RACE_TOLERACE_UNDEAD 88
-RDMOPT_RACE_TOLERACE_ANIMAL 89
-RDMOPT_RACE_TOLERACE_PLANT 90
-RDMOPT_RACE_TOLERACE_INSECT 91
-RDMOPT_RACE_TOLERACE_FISHS 92
-RDMOPT_RACE_TOLERACE_DEVIL 93
-RDMOPT_RACE_TOLERACE_HUMAN 94
-RDMOPT_RACE_TOLERACE_ANGEL 95
-RDMOPT_RACE_TOLERACE_DRAGON 96
-RDMOPT_RACE_DAMAGE_NOTHING 97
-RDMOPT_RACE_DAMAGE_UNDEAD 98
-RDMOPT_RACE_DAMAGE_ANIMAL 99
-RDMOPT_RACE_DAMAGE_PLANT 100
-RDMOPT_RACE_DAMAGE_INSECT 101
-RDMOPT_RACE_DAMAGE_FISHS 102
-RDMOPT_RACE_DAMAGE_DEVIL 103
-RDMOPT_RACE_DAMAGE_HUMAN 104
-RDMOPT_RACE_DAMAGE_ANGEL 105
-RDMOPT_RACE_DAMAGE_DRAGON 106
-RDMOPT_RACE_MDAMAGE_NOTHING 107
-RDMOPT_RACE_MDAMAGE_UNDEAD 108
-RDMOPT_RACE_MDAMAGE_ANIMAL 109
-RDMOPT_RACE_MDAMAGE_PLANT 110
-RDMOPT_RACE_MDAMAGE_INSECT 111
-RDMOPT_RACE_MDAMAGE_FISHS 112
-RDMOPT_RACE_MDAMAGE_DEVIL 113
-RDMOPT_RACE_MDAMAGE_HUMAN 114
-RDMOPT_RACE_MDAMAGE_ANGEL 115
-RDMOPT_RACE_MDAMAGE_DRAGON 116
-RDMOPT_RACE_CRI_PERCENT_NOTHING 117
-RDMOPT_RACE_CRI_PERCENT_UNDEAD 118
-RDMOPT_RACE_CRI_PERCENT_ANIMAL 119
-RDMOPT_RACE_CRI_PERCENT_PLANT 120
-RDMOPT_RACE_CRI_PERCENT_INSECT 121
-RDMOPT_RACE_CRI_PERCENT_FISHS 122
-RDMOPT_RACE_CRI_PERCENT_DEVIL 123
-RDMOPT_RACE_CRI_PERCENT_HUMAN 124
-RDMOPT_RACE_CRI_PERCENT_ANGEL 125
-RDMOPT_RACE_CRI_PERCENT_DRAGON 126
-RDMOPT_RACE_IGNORE_DEF_PERCENT_NOTHING 127
-RDMOPT_RACE_IGNORE_DEF_PERCENT_UNDEAD 128
-RDMOPT_RACE_IGNORE_DEF_PERCENT_ANIMAL 129
-RDMOPT_RACE_IGNORE_DEF_PERCENT_PLANT 130
-RDMOPT_RACE_IGNORE_DEF_PERCENT_INSECT 131
-RDMOPT_RACE_IGNORE_DEF_PERCENT_FISHS 132
-RDMOPT_RACE_IGNORE_DEF_PERCENT_DEVIL 133
-RDMOPT_RACE_IGNORE_DEF_PERCENT_HUMAN 134
-RDMOPT_RACE_IGNORE_DEF_PERCENT_ANGEL 135
-RDMOPT_RACE_IGNORE_DEF_PERCENT_DRAGON 136
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_NOTHING 137
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_UNDEAD 138
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANIMAL 139
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_PLANT 140
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_INSECT 141
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_FISHS 142
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_DEVIL 143
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_HUMAN 144
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANGEL 145
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_DRAGON 146
-RDMOPT_CLASS_DAMAGE_NORMAL_TARGET 147
-RDMOPT_CLASS_DAMAGE_BOSS_TARGET 148
-RDMOPT_CLASS_DAMAGE_NORMAL_USER 149
-RDMOPT_CLASS_DAMAGE_BOSS_USER 150
-RDMOPT_CLASS_MDAMAGE_NORMAL 151
-RDMOPT_CLASS_MDAMAGE_BOSS 152
-RDMOPT_CLASS_IGNORE_DEF_PERCENT_NORMAL 153
-RDMOPT_CLASS_IGNORE_DEF_PERCENT_BOSS 154
-RDMOPT_CLASS_IGNORE_MDEF_PERCENT_NORMAL 155
-RDMOPT_CLASS_IGNORE_MDEF_PERCENT_BOSS 156
-RDMOPT_DAMAGE_SIZE_SMALL_TARGET 157
-RDMOPT_DAMAGE_SIZE_MIDIUM_TARGET 158
-RDMOPT_DAMAGE_SIZE_LARGE_TARGET 159
-RDMOPT_DAMAGE_SIZE_SMALL_USER 160
-RDMOPT_DAMAGE_SIZE_MIDIUM_USER 161
-RDMOPT_DAMAGE_SIZE_LARGE_USER 162
-RDMOPT_DAMAGE_SIZE_PERFECT 163
-RDMOPT_DAMAGE_CRI_TARGET 164
-RDMOPT_DAMAGE_CRI_USER 165
-RDMOPT_RANGE_ATTACK_DAMAGE_TARGET 166
-RDMOPT_RANGE_ATTACK_DAMAGE_USER 167
-RDMOPT_HEAL_VALUE 168
-RDMOPT_HEAL_MODIFY_PERCENT 169
-RDMOPT_DEC_SPELL_CAST_TIME 170
-RDMOPT_DEC_SPELL_DELAY_TIME 171
-RDMOPT_DEC_SP_CONSUMPTION 172
-RDMOPT_HP_DRAIN 173
-RDMOPT_SP_DRAIN 174
-RDMOPT_WEAPON_ATTR_NOTHING 175
-RDMOPT_WEAPON_ATTR_WATER 176
-RDMOPT_WEAPON_ATTR_GROUND 177
-RDMOPT_WEAPON_ATTR_FIRE 178
-RDMOPT_WEAPON_ATTR_WIND 179
-RDMOPT_WEAPON_ATTR_POISON 180
-RDMOPT_WEAPON_ATTR_SAINT 181
-RDMOPT_WEAPON_ATTR_DARKNESS 182
-RDMOPT_WEAPON_ATTR_TELEKINESIS 183
-RDMOPT_WEAPON_ATTR_UNDEAD 184
-RDMOPT_WEAPON_INDESTRUCTIBLE 185
-RDMOPT_BODY_INDESTRUCTIBLE 186
-RDMOPT_MDAMAGE_SIZE_SMALL_TARGET 187
-RDMOPT_MDAMAGE_SIZE_MIDIUM_TARGET 188
-RDMOPT_MDAMAGE_SIZE_LARGE_TARGET 189
-RDMOPT_MDAMAGE_SIZE_SMALL_USER 190
-RDMOPT_MDAMAGE_SIZE_MIDIUM_USER 191
-RDMOPT_MDAMAGE_SIZE_LARGE_USER 192
-//RDMOPT_ATTR_TOLERACE_ALL 193
-
SWORDCLAN 1
ARCWANDCLAN 2
GOLDENMACECLAN 3
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/homun_skill_tree.txt b/db/homun_skill_tree.txt
index 01afb4988a..ae44218702 100644
--- a/db/homun_skill_tree.txt
+++ b/db/homun_skill_tree.txt
@@ -89,31 +89,31 @@
//Eira
6048,8022,5,128,0,0,0,0,0,0,0,0,0,0,0 //MH_LIGHT_OF_REGENE
6048,8023,5,114,0,0,0,0,0,0,0,0,0,0,0 //MH_OVERED_BOOST
-6048,8024,5,106,0,0,0,0,0,0,0,0,0,0,0 //MH_ERASER_CUTTER
-6048,8025,5,121,0,0,0,0,0,0,0,0,0,0,0 //MH_XENO_SLASHER
+6048,8024,10,106,0,0,0,0,0,0,0,0,0,0,0 //MH_ERASER_CUTTER
+6048,8025,10,121,0,0,0,0,0,0,0,0,0,0,0 //MH_XENO_SLASHER
6048,8026,5,137,0,0,0,0,0,0,0,0,0,0,0 //MH_SILENT_BREEZE
//Bayeri
-6049,8031,5,105,0,0,0,0,0,0,0,0,0,0,0 //MH_STAHL_HORN
+6049,8031,10,105,0,0,0,0,0,0,0,0,0,0,0 //MH_STAHL_HORN
6049,8032,5,112,0,0,0,0,0,0,0,0,0,0,0 //MH_GOLDENE_FERSE
6049,8033,5,121,0,0,0,0,0,0,0,0,0,0,0 //MH_STEINWAND
-6049,8034,5,138,0,0,0,0,0,0,0,0,0,0,0 //MH_HEILIGE_STANGE
+6049,8034,10,138,0,0,0,0,0,0,0,0,0,0,0 //MH_HEILIGE_STANGE
6049,8035,5,130,0,0,0,0,0,0,0,0,0,0,0 //MH_ANGRIFFS_MODUS
//Sera
6050,8018,5,132,0,0,0,0,0,0,0,0,0,0,0 //MH_SUMMON_LEGION
-6050,8019,5,105,0,0,0,0,0,0,0,0,0,0,0 //MH_NEEDLE_OF_PARALYZE
+6050,8019,10,105,0,0,0,0,0,0,0,0,0,0,0 //MH_NEEDLE_OF_PARALYZE
6050,8020,5,116,0,0,0,0,0,0,0,0,0,0,0 //MH_POISON_MIST
-6050,8021,5,123,0,0,0,0,0,0,0,0,0,0,0 //MH_PAIN_KILLER
+6050,8021,10,123,0,0,0,0,0,0,0,0,0,0,0 //MH_PAIN_KILLER
//Dieter
6051,8039,5,122,0,0,0,0,0,0,0,0,0,0,0 //MH_MAGMA_FLOW
6051,8040,5,116,0,0,0,0,0,0,0,0,0,0,0 //MH_GRANITIC_ARMOR
-6051,8041,5,109,0,0,0,0,0,0,0,0,0,0,0 //MH_LAVA_SLIDE
-6051,8042,5,131,0,0,0,0,0,0,0,0,0,0,0 //MH_PYROCLASTIC
+6051,8041,10,109,0,0,0,0,0,0,0,0,0,0,0 //MH_LAVA_SLIDE
+6051,8042,10,131,0,0,0,0,0,0,0,0,0,0,0 //MH_PYROCLASTIC
6051,8043,5,102,0,0,0,0,0,0,0,0,0,0,0 //MH_VOLCANIC_ASH
//Elanor
6052,8027,1,100,0,0,0,0,0,0,0,0,0,0,0 //MH_STYLE_CHANGE
6052,8028,5,100,0,0,0,0,0,0,0,0,0,0,0 //MH_SONIC_CRAW
-6052,8029,5,114,0,0,0,0,0,0,0,0,0,0,0 //MH_SILVERVEIN_RUSH
-6052,8030,5,128,0,0,0,0,0,0,0,0,0,0,0 //MH_MIDNIGHT_FRENZY
+6052,8029,10,114,0,0,0,0,0,0,0,0,0,0,0 //MH_SILVERVEIN_RUSH
+6052,8030,10,128,0,0,0,0,0,0,0,0,0,0,0 //MH_MIDNIGHT_FRENZY
6052,8036,5,100,0,0,0,0,0,0,0,0,0,0,0 //MH_TINDER_BREAKER
6052,8037,5,112,0,0,0,0,0,0,0,0,0,0,0 //MH_CBC
6052,8038,5,133,0,0,0,0,0,0,0,0,0,0,0 //MH_EQC
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 9d7300bdd7..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
@@ -29,7 +29,12 @@
# MinLevel Minimum level required to join the battleground. (Default: 1)
# MaxLevel Maximum level to join the battleground. (Default: MAX_LEVEL value)
# Deserter Amount of time in seconds a player is marked deserter. (Default: 600)
-# StartDelay Amount of time in seconds once a queue is filled before a start message is sent to players. (Default: 30)
+# StartDelay Amount of time in seconds once a queue is filled before players are warped. (Default: 0)
+# Join: Which application type is accepted. The entryqueuelist.lub can visually disable these options.
+# Solo Able to join a queue as an individual. (Default: true)
+# Party Able to join a queue as a party. (Default: true)
+# Guild Able to join a queue as a guild. (Default: true)
+# JobRestrictions List of jobs that are unable to join the battleground.
# Locations: Battleground location settings.
# - Map The map on which the battleground will be played.
# StartEvent NPC event triggered when the battleground starts.
@@ -38,12 +43,14 @@
# RespawnY Y coordinate for warping on death.
# DeathEvent NPC event triggered when a player dies.
# QuitEvent NPC event triggered when a player quits.
+# ActiveEvent NPC event triggered when a player joints an active battleground.
# Variable Name of BG ID variable used in the battleground script.
# TeamB: TeamB settings.
# RespawnX X coordinate for warping on death.
# RespawnY Y coordinate for warping on death.
# DeathEvent NPC event triggered when a player dies.
# QuitEvent NPC event triggered when a player quits.
+# ActiveEvent NPC event triggered when a player joints an active battleground.
# Variable Name of BG ID variable used in the battleground script.
###########################################################################
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.txt b/db/import-tmpl/instance_db.txt
deleted file mode 100644
index 5672eec9e4..0000000000
--- a/db/import-tmpl/instance_db.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-// Instance Database
-//
-// Structure of Database:
-// ID,Name,LimitTime,IdleTimeOut,EnterMap,EnterX,EnterY,Map2,Map3,...,Map255
-//
-// EnterMap is considered as Map1
diff --git a/db/import-tmpl/instance_db.yml b/db/import-tmpl/instance_db.yml
new file mode 100644
index 0000000000..180561dd32
--- /dev/null
+++ b/db/import-tmpl/instance_db.yml
@@ -0,0 +1,40 @@
+# 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 .
+#
+###########################################################################
+# Instance Database
+###########################################################################
+#
+# Instance Settings
+#
+###########################################################################
+# - Id Instance ID.
+# Name Instance Name.
+# TimeLimit Total lifetime of instance in seconds. (Default: 3600)
+# IdleTimeOut Time before an idle instance is destroyed in seconds. (Default: 300)
+# Destroyable Toggles the ability to destroy the instance using instance 'Destroy' button. (Default: true)
+# Note: the button is displayed based on parties. For any mode, it requires the party leader to be the instance owner to destroy it.
+# Enter: Instance entrance coordinates.
+# Map Map Name where players start.
+# X X Coordinate where players start.
+# Y Y Coordinate where players start.
+# AdditionalMaps: List of maps that are part of an instance. (Optional)
+###########################################################################
+
+Header:
+ Type: INSTANCE_DB
+ Version: 1
diff --git a/db/import-tmpl/item_avail.txt b/db/import-tmpl/item_avail.txt
deleted file mode 100644
index d9704cda06..0000000000
--- a/db/import-tmpl/item_avail.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-// Item Availability and Alias Database
-//
-// Structure of Database:
-// ItemID,SpriteID
-//
-// 01. ItemID Item ID to change.
-// 02. SpriteID Item ID which will be sent to the client instead of ItemID.
-// If 0, the item becomes unavailable for use. If item_check is enabled and a player owns such an item, it will be removed upon next login/teleport.
-//
-// NOTE: Replaces an item client-side while keeping them separate server-side.
-// Think of it as a way to disguise items.
-// Don't sell the item in same shop with the source. Example, don't put 2240 & 2241 in same place!
diff --git a/db/import-tmpl/item_buyingstore.txt b/db/import-tmpl/item_buyingstore.txt
deleted file mode 100644
index 939785c557..0000000000
--- a/db/import-tmpl/item_buyingstore.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-// Buying Store Item List
-// List of items that can be sold to buying stores.
-//
-// Structure of Database:
-// ItemID
-//
-// Note:
-// Items are in same order as data\buyingstoreitemlist.txt, which
-// must be edited as well for the client to accept added items.
-
diff --git a/db/import-tmpl/item_db.txt b/db/import-tmpl/item_db.txt
deleted file mode 100644
index 2ae74382db..0000000000
--- a/db/import-tmpl/item_db.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-// Items Additional Database
-//
-// Structure of Database:
-// ID,Name,Name,Type,Price,Sell,Weight,ATK[:MATK],DEF,Range,Slot,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }
-//
-// THQ Quest Items
-//=============================================================
-//7950,THG_Membership,THG Membership,3,,10,10,,,,,,,,,,,,,{},{},{}
-//7951,Token_Bag,Token Bag,3,,10,10,,,,,,,,,,,,,{},{},{}
-//1998,Jeramiah's_Jur,Jeramiah's Jur,3,,10,10,,,,,,,,,,,,,{},{},{}
-//1999,Zed's_Staff,Zed's Staff,3,,10,10,,,,,,,,,,,,,{},{},{}
-
-// Official Event Items that had their Effects removed after the event was completed
-//585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{}
-//679,Gold_Pill,Pilule,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-
-//2681,Republic_Ring,Republic Anniversary Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{}
-
-//5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{}
-//5136,Santa's_Hat_,Louise's Santa Hat,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; },{},{}
-//5145,Carnival_Joker_Jester,Carnival Jester,4,10,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,89,{ bonus bAllStats,3; },{},{}
-//5147,Baseball_Cap,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,216,{ bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50; },{},{}
-//5201,Party_Hat_B,2nd Anniversary Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bAllStats,3; },{},{}
-//5202,Pumpkin_Hat_,Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; },{},{}
-//5204,Event_Pierrot_Nose,Rudolf's Red Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{}
-//5264,Aussie_Flag_Hat,Australian Flag Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,304,{ bonus bAllStats,2; },{},{}
-//5356,Pumpkin_Hat_H,Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5; },{},{}
-//5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,390,{ bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000; },{},{}
-//5811,Santa_Beard,Santa Beard,4,20,,100,,5,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus2 bSubRace,RC_Brute,5; },{},{}
-
-//11702,Moon_Cookie,Moon Cookie,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7; },{},{}
-//12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,180000,15; },{},{}
-//12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,25; },{},{}
-//Event effect: Summon monster? Probably Rice_Cake. x_x
-//12199,Rice_Scroll,Rice Scroll,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//12200,Event_Cake,Event Cake,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",3; },{},{}
-//12238,New_Year_Rice_Cake_1,New Year Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; },{},{}
-//12239,New_Year_Rice_Cake_2,New Year Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; },{},{}
-
-// iRO St. Patrick's Day Event 2008
-//=============================================================
-//12715,Black_Treasure_Chest,Black Treasure Chest,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_08stpattyseventbox"; },{},{}
-
-// iRO Valentine's Day Event 2009
-//=============================================================
-//12742,Valentine_Gift_Box_M,Valentine Gift Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7946,1; },{},{}
-//12743,Valentine_Gift_Box_F,Valentine Gift Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7947,1; },{},{}
-//12744,Chocolate_Box,Chocolate Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 558,1; },{},{}
-//14466,Valentine's_Emblem_Box,Valentine's Emblem Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5817,1; },{},{}
-//7946,Gold_Ring_Of_Valentine,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-//7947,Silver_Ring_Of_Valentine,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-//7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{}
-//5817,Valentine's_Emblem,Valentine's Emblem,4,10,,0,,3,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10; },{},{}
-
-// iRO Halloween Event 2009
-//=============================================================
-//5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500; },{},{}
-//6298,Crushed_Pumpkin,Crushed Pumpkin,3,0,,0,,,,,,,,,,,,,{},{},{}
-//6299,Worn_Fabric,Worn Fabric,3,0,,0,,,,,,,,,,,,,{},{},{}
-
-// Old Tuxedo and Wedding Dress, will display the outfit when worn.
-//==================================================================
-//2338,Wedding_Dress,Wedding Dress,4,43000,,500,,0,,0,0xFFFFFFFE,63,0,16,,0,1,0,{},{ sc_start SC_WEDDING,INFINITE_TICK,0; },{ sc_end SC_WEDDING; }
-//7170,Tuxedo,Tuxedo,4,43000,,10,,0,,0,0xFFFFFFFE,63,1,16,,0,1,0,{},{ sc_start SC_WEDDING,INFINITE_TICK,0; },{ sc_end SC_WEDDING; }
-
-// Non-kRO Eden Group Mark effect
-//=============================================================
-//22508,Para_Team_Mark_,Eden Group Mark,11,0,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AL_TELEPORT",3; },{},{}
diff --git a/db/import-tmpl/item_db.yml b/db/import-tmpl/item_db.yml
new file mode 100644
index 0000000000..c24997ae01
--- /dev/null
+++ b/db/import-tmpl/item_db.yml
@@ -0,0 +1,544 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+#Body:
+# THQ Quest Items
+#=============================================================
+# - Id: 1998
+# AegisName: Jeramiah's_Jur
+# Name: Jeramiah's Jur
+# Type: Etc
+# Sell: 10
+# Weight: 10
+# AliasName: Jur
+# - Id: 1999
+# AegisName: Zed's_Staff
+# Name: Zed's Staff
+# Type: Etc
+# Sell: 10
+# Weight: 10
+# AliasName: Staff_Of_Soul
+# - Id: 7950
+# AegisName: THG_Membership
+# Name: THG Membership
+# Type: Etc
+# Sell: 10
+# Weight: 10
+# AliasName: Foolishness_Of_Blind
+# - Id: 7951
+# AegisName: Token_Bag
+# Name: Token Bag
+# Type: Etc
+# Sell: 10
+# Weight: 10
+# AliasName: Leather_Bag_Of_Infinity
+
+# Official Event Items that had their Effects removed after the event was completed
+#=============================================================
+# - Id: 585
+# AegisName: Wurst
+# Name: Brusti
+# Type: Delayconsume
+# Buy: 2
+# Weight: 40
+# Script: |
+# itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;
+# - Id: 679
+# AegisName: Gold_Pill
+# Name: Pilule
+# Type: Healing
+# Buy: 5000
+# Weight: 300
+# Script: |
+# percentheal 50,50;
+# - Id: 2681
+# AegisName: Republic_Ring
+# Name: Republic Anniversary Ring
+# Type: Armor
+# Buy: 20
+# Weight: 100
+# Locations:
+# Right_Accessory: true
+# Left_Accessory: true
+# Script: |
+# bonus bAllStats,3;
+# - Id: 5134
+# AegisName: Pumpkin_Hat
+# Name: Pumpkin-Head
+# Type: Armor
+# Buy: 20
+# Weight: 200
+# Defense: 2
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 206
+# Script: |
+# bonus2 bSubRace,RC_Demon,5;
+# - Id: 5136
+# AegisName: Santa's_Hat_
+# Name: Louise's Santa Hat
+# Type: Armor
+# Buy: 20
+# Weight: 100
+# Defense: 3
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 20
+# Script: |
+# bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;
+# - Id: 5145
+# AegisName: Carnival_Joker_Jester
+# Name: Carnival Jester
+# Type: Armor
+# Buy: 10
+# Weight: 100
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 89
+# Script: |
+# bonus bAllStats,3;
+# - Id: 5147
+# AegisName: Baseball_Cap
+# Name: Baseball Cap
+# Type: Armor
+# Weight: 200
+# Defense: 3
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 216
+# Script: |
+# bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;
+# - Id: 5201
+# AegisName: Party_Hat_B
+# Name: 2nd Anniversary Party Hat
+# Type: Armor
+# Buy: 20
+# Weight: 300
+# Defense: 3
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 144
+# Script: |
+# bonus bAllStats,3;
+# - Id: 5202
+# AegisName: Pumpkin_Hat_
+# Name: Pumpkin Hat
+# Type: Armor
+# Buy: 20
+# Weight: 200
+# Defense: 2
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 206
+# Script: |
+# bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;
+# - Id: 5204
+# AegisName: Event_Pierrot_Nose
+# Name: Rudolf's Red Nose
+# Type: Armor
+# Buy: 20
+# Weight: 100
+# Locations:
+# Head_Low: true
+# View: 49
+# Script: |
+# bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;
+# - Id: 5264
+# AegisName: Aussie_Flag_Hat
+# Name: Australian Flag Hat
+# Type: Armor
+# Buy: 20
+# Weight: 500
+# Defense: 4
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 304
+# Script: |
+# bonus bAllStats,2;
+# - Id: 5356
+# AegisName: Pumpkin_Hat_H
+# Name: Pumpkin Hat
+# Type: Armor
+# Buy: 20
+# Weight: 200
+# Defense: 2
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 206
+# Script: |
+# bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;
+# - Id: 5384
+# AegisName: Santa_Hat_1
+# Name: Twin Pompom By JB
+# Type: Armor
+# Buy: 20
+# Weight: 200
+# Defense: 2
+# Slots: 1
+# Locations:
+# Head_Top: true
+# EquipLevelMin: 20
+# Refineable: true
+# View: 390
+# Script: |
+# bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000;
+# - Id: 5811
+# AegisName: Santa_Beard
+# Name: Santa 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;
+# - Id: 11702
+# AegisName: Moon_Cookie
+# Name: Moon Cookie
+# Type: Delayconsume
+# Weight: 10
+# 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; itemskill "AL_BLESSING",7;
+# - Id: 12131
+# AegisName: Lucky_Potion
+# Name: Lucky Potion
+# Type: Healing
+# Buy: 2
+# Weight: 100
+# Script: |
+# sc_start SC_LUKFOOD,180000,15;
+# - Id: 12143
+# AegisName: Red_Can
+# Name: Red Can
+# Type: Usable
+# Buy: 50000
+# Weight: 300
+# Script: |
+# percentheal 25,25;
+
+# Event effect: Summon monster? Probably Rice_Cake. x_x
+#=============================================================
+# - Id: 12199
+# AegisName: Rice_Scroll
+# Name: Rice Scroll
+# Type: Usable
+# - Id: 12200
+# AegisName: Event_Cake
+# Name: Event Cake
+# Type: Usable
+# Buy: 20
+# Weight: 50
+# Script: |
+# itemskill "PR_MAGNIFICAT",3;
+# - Id: 12238
+# AegisName: New_Year_Rice_Cake_1
+# Name: New Year Rice Cake
+# Type: Healing
+# Buy: 20
+# Weight: 100
+# Script: |
+# percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;
+# - Id: 12239
+# AegisName: New_Year_Rice_Cake_2
+# Name: New Year Rice Cake
+# Type: Healing
+# Buy: 20
+# Weight: 100
+# Script: |
+# percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;
+
+# iRO St. Patrick's Day Event 2008
+#=============================================================
+# - Id: 7915
+# AegisName: Copper_Coin_
+# Name: Bronze Coin
+# Type: Etc
+# Weight: 10
+# AliasName: Copper_Coin
+# - Id: 7916
+# AegisName: Silver_Coin_
+# Name: Silver Coin
+# Type: Etc
+# Weight: 10
+# AliasName: Silver_Coin
+# - Id: 12715
+# AegisName: Black_Treasure_Chest
+# Name: Black Treasure Chest
+# Type: Usable
+# Weight: 200
+# AliasName: Treasure_Box_
+# Script: |
+# callfunc "F_08stpattyseventbox";
+
+# iRO Valentine's Day Event 2009
+#=============================================================
+# - Id: 5817
+# AegisName: Valentine's_Emblem
+# Name: Valentine's Emblem
+# Type: Armor
+# Buy: 10
+# Defense: 3
+# Locations:
+# Right_Accessory: true
+# Left_Accessory: true
+# Script: |
+# bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10;
+# - Id: 7946
+# AegisName: Gold_Ring_Of_Valentine
+# Name: Gold Ring Of Valentine
+# Type: Etc
+# Buy: 10
+# - Id: 7947
+# AegisName: Silver_Ring_Of_Valentine
+# Name: Silver Ring Of Valentine
+# Type: Etc
+# Buy: 10
+# - Id: 7948
+# AegisName: Box
+# Name: Box
+# Type: Etc
+# Buy: 10
+# Weight: 10
+# - Id: 12742
+# AegisName: Valentine_Gift_Box_M
+# Name: Valentine Gift Box
+# Type: Usable
+# Buy: 10
+# Script: |
+# getitem 7946,1;
+# - Id: 12743
+# AegisName: Valentine_Gift_Box_F
+# Name: Valentine Gift Box
+# Type: Usable
+# Buy: 10
+# Script: |
+# getitem 7947,1;
+# - Id: 12744
+# AegisName: Chocolate_Box
+# Name: Chocolate Box
+# Type: Usable
+# Buy: 10
+# Script: |
+# getitem 558,1;
+# - Id: 14466
+# AegisName: Valentine's_Emblem_Box
+# Name: Valentine's Emblem Box
+# Type: Usable
+# Buy: 10
+# Script: |
+# getitem 5817,1;
+
+# iRO Halloween Event 2009
+#=============================================================
+# - Id: 5668
+# AegisName: Weird_Pumpkin_Hat
+# Name: Weird Pumpkin Hat
+# Type: Armor
+# Buy: 20
+# Defense: 5
+# Locations:
+# Head_Top: true
+# Refineable: true
+# View: 206
+# Script: |
+# bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;
+# - Id: 6298
+# AegisName: Crushed_Pumpkin
+# Name: Crushed Pumpkin
+# Type: Etc
+# - Id: 6299
+# AegisName: Worn_Fabric
+# Name: Worn Fabric
+# Type: Etc
+
+# Old Tuxedo and Wedding Dress, will display the outfit when worn.
+#==================================================================
+# - Id: 2338
+# AegisName: Wedding_Dress
+# Name: Wedding Dress
+# Type: Armor
+# Buy: 43000
+# Weight: 500
+# Jobs:
+# All: true
+# Novice: false
+# Gender: Female
+# Locations:
+# Armor: true
+# Refineable: true
+# EquipScript: |
+# sc_start SC_WEDDING,INFINITE_TICK,0;
+# UnEquipScript: |
+# sc_end SC_WEDDING;
+# - Id: 7170
+# AegisName: Tuxedo
+# Name: Tuxedo
+# Type: Armor
+# Buy: 43000
+# Weight: 10
+# Jobs:
+# All: true
+# Novice: false
+# Gender: Male
+# Locations:
+# Armor: true
+# Refineable: true
+# EquipScript: |
+# sc_start SC_WEDDING,INFINITE_TICK,0;
+# UnEquipScript: |
+# sc_end SC_WEDDING;
+
+# Non-kRO Eden Group Mark effect
+#=============================================================
+# - Id: 22508
+# AegisName: Para_Team_Mark_
+# Name: Eden Group Mark
+# 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_delay.txt b/db/import-tmpl/item_delay.txt
deleted file mode 100644
index 26aaec19c6..0000000000
--- a/db/import-tmpl/item_delay.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-// Item Delay Database
-//
-// Structure of Database:
-// Item ID,Delay in Milliseconds
-//
-// NOTE:
-// There is a max concurrent number of entries set in src/map/itemdb.h as MAX_ITEMDELAYS.
-
diff --git a/db/import-tmpl/item_flag.txt b/db/import-tmpl/item_flag.txt
deleted file mode 100644
index 1c1779b895..0000000000
--- a/db/import-tmpl/item_flag.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-// Flagged Items
-// ,
-//
-// :
-// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag)
-// 2 - As item group container, check player's inventory and weight before consumed
-// 4 - GUID item, cannot be stacked even same or stackable item
-// 8 - Item will be bound item when equipped
-// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted!
-// 32 - Item will not be removed on consumption. Also supports 'itemskill'
-// 64 - Item will be displayed with a client side defined drop
-// 128 - Item will be displayed with a white pillar drop effect
-// 256 - Item will be displayed with a blue pillar drop effect
-// 512 - Item will be displayed with a yellow pillar drop effect
-// 1024 - Item will be displayed with a purple pillar drop effect
-// 2048 - Item will be displayed with a orange pillar drop effect
-// NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree
diff --git a/db/import-tmpl/item_nouse.txt b/db/import-tmpl/item_nouse.txt
deleted file mode 100644
index 7572f03072..0000000000
--- a/db/import-tmpl/item_nouse.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-// Item Usage Restriction Configuration File
-// Defines if an item cannot be used under special circumstances.
-//
-// Structure of Database:
-// ItemID,Flag,Group ID Override
-//
-// Flag:
-// 1 = Cannot use item while sitting
-// ... [more to come]
-//
-// Group ID Override:
-// Group ID necessary to override this setting.
-
diff --git a/db/import-tmpl/item_randomopt_db.txt b/db/import-tmpl/item_randomopt_db.txt
deleted file mode 100644
index ee863504b5..0000000000
--- a/db/import-tmpl/item_randomopt_db.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-// Items Random Option Database
-//
-// Structure of Database:
-// ID,{ Bonus Script }
diff --git a/db/import-tmpl/improvise_db.yml b/db/import-tmpl/item_randomopt_db.yml
similarity index 76%
rename from db/import-tmpl/improvise_db.yml
rename to db/import-tmpl/item_randomopt_db.yml
index 2c0afce465..7802f25ad4 100644
--- a/db/import-tmpl/improvise_db.yml
+++ b/db/import-tmpl/item_randomopt_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,16 +16,17 @@
# along with this program. If not, see .
#
###########################################################################
-# Improvised Song Database
+# Item Random Option Database
###########################################################################
#
-# Improvised Song Settings
+# Item Random Option Settings
#
###########################################################################
-# - Skill Skill to be casted by Improvised Song.
-# Probability Probability of skill compared to others in database (1 = 0.01%, 10000 = 100%).
+# - Id Item Random Option ID matching the ID defined in enumvar.lub in the client.
+# Option Item Random Option constant.
+# Script Bonus script used for option.
###########################################################################
Header:
- Type: IMPROVISED_SONG_DB
+ Type: RANDOM_OPTION_DB
Version: 1
diff --git a/db/import-tmpl/item_randomopt_group.txt b/db/import-tmpl/item_randomopt_group.txt
deleted file mode 100644
index d7d68d4584..0000000000
--- a/db/import-tmpl/item_randomopt_group.txt
+++ /dev/null
@@ -1 +0,0 @@
-// ,,,,{,,,,,,,,,,,,}
diff --git a/db/import-tmpl/item_randomopt_group.yml b/db/import-tmpl/item_randomopt_group.yml
new file mode 100644
index 0000000000..9c603ea022
--- /dev/null
+++ b/db/import-tmpl/item_randomopt_group.yml
@@ -0,0 +1,46 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Random Option Group Database
+###########################################################################
+#
+# Item Random Option Group Settings
+#
+###########################################################################
+# - Id Item Random Option Group ID.
+# Group Item Random Option Group constant.
+# Slots: Slot in which an Item Random Option is guaranteed to be applied. Max of MAX_ITEM_RDM_OPT.
+# - Slot Slot number.
+# Options: List of possible Item Random Options for slot.
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+# MaxRandom Maximum amount of random options applied. These options are not guaranteed to be applied. Max of (MAX_ITEM_RDM_OPT - Total 'Slots'). (Default: 0)
+# Random: List of possible Item Random Options for remaining slots. (Optional)
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+###########################################################################
+
+Header:
+ Type: RANDOM_OPTION_GROUP
+ Version: 1
diff --git a/db/import-tmpl/item_stack.txt b/db/import-tmpl/item_stack.txt
deleted file mode 100644
index 6aea0ac12c..0000000000
--- a/db/import-tmpl/item_stack.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-// Item Stacking Restriction File
-// Prevents an item to be stacked more than x times in given
-// inventory types. Generally used by 3rd class related skill items.
-//
-// Structure of Database:
-// ItemID,MaxStackAmount,Type
-//
-// MaxStackAmount:
-// Stack limit for the item. Use 0 to disable a restriction.
-//
-// Type mask values:
-// &1: Character inventory restriction
-// &2: Character cart restriction
-// &4: Account storage restriction
-// &8: Guild storage restriction
-//
-// Example:
-// 512,4,12 // Will not allow more than 4 Apples in storages.
-
diff --git a/db/import-tmpl/item_trade.txt b/db/import-tmpl/item_trade.txt
deleted file mode 100644
index 172d79b193..0000000000
--- a/db/import-tmpl/item_trade.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-// Item Trade Restrictions Database
-// Defines special trade rules for individual items.
-//
-// Structure of Database:
-// Item ID, TradeMask,Group Level Override
-//
-// Legend for 'TradeMask' field (bitmask):
-// 1 - item can't be dropped
-// 2 - item can't be traded (nor vended)
-// 4 - wedded partner can override restriction 2
-// 8 - item can't be sold to npcs
-// 16 - item can't be placed in the cart
-// 32 - item can't be placed in the storage
-// 64 - item can't be placed in the guild storage
-// 128 - item can't be attached to mail
-// 256 - item can't be auctioned
-//
-// Example:
-// 1161,67,50
-// Balmung cannot be dropped, traded, or placed in Guild Storage (1+2+64).
-// Only groups of group-level 50 and up can override this setting.
-
diff --git a/db/import-tmpl/job_exp.txt b/db/import-tmpl/job_exp.txt
index 4420fc8b9f..eb50ece572 100644
--- a/db/import-tmpl/job_exp.txt
+++ b/db/import-tmpl/job_exp.txt
@@ -20,3 +20,57 @@
//Job - Renewal 255 Levels
//60,x,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,131668000,145518000,160753000,177511000,195944000,216220000,238523000,263056000,290042000,319726000,324726000,329726000,334726000,339726000,344726000,349726000,354726000,359726000,364726000,369726000,374726000,379726000,384726000,389726000,394726000,399726000,404726000,409726000,414726000,419726000,424726000,429726000,434726000,439726000,444726000,449726000,454726000,459726000,464726000,469726000,474726000,479726000,484726000,489726000,494726000,499726000,504726000,509726000,514726000,519726000,524726000,529726000,534726000,539726000,544726000,549726000,554726000,559726000,564726000,569726000,574726000,579726000,584726000,589726000,594726000,599726000,604726000,609726000,614726000,619726000,624726000,629726000,634726000,639726000,644726000,649726000,654726000,659726000,664726000,669726000,674726000,679726000,684726000,689726000,694726000,699726000,704726000,709726000,714726000,719726000,724726000,729726000,734726000,739726000,744726000,749726000,754726000,759726000,764726000,769726000,774726000,779726000,784726000,789726000,794726000,799726000,804726000,809726000,814726000,819726000,824726000,829726000,834726000,839726000,844726000,849726000,854726000,859726000,864726000,869726000,874726000,879726000,884726000,889726000,894726000,899726000,904726000,909726000,914726000,919726000,924726000,929726000,934726000,939726000,944726000,949726000,954726000,959726000,964726000,969726000,974726000,979726000,984726000,989726000,994726000,999726000,1004726000,1009726000,1014726000,1019726000,1024726000,1029726000,1034726000,1039726000,1044726000,1049726000,1054726000,1059726000,1064726000,1069726000,1074726000,1079726000,1084726000,1089726000,1094726000,1099726000,1104726000,1109726000,1114726000,1119726000,1124726000,1129726000,1134726000,1139726000,1144726000,1149726000,1154726000,1159726000,1164726000,1169726000,1174726000,1179726000,1184726000,1189726000,1194726000,1199726000,1204726000,1209726000,1214726000,1219726000,1224726000,1229726000,1234726000,1239726000,1244726000,1249726000,1254726000,1259726000,1264726000,1269726000,1274726000,1279726000,1284726000,1289726000,1294726000,1299726000
+
+
+// RENEWAL 175/60 (before kRO Updates to 185/65)
+// =============================================
+////Base - Normal and Baby Jobs
+//99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:23:24:25:4023:4024:4025:4026:4027:4028:4029:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4045:4046:4047:4048:4049:4050:4051:4052:4222:4225:4226:4227:4228:4238,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,57000,59000,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,99999999
+//
+////Base - Adv Jobs
+//99,4001:4002:4003:4004:4005:4006:4007:4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,0,660,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,99999999
+//
+////Base - 3rd Jobs, Baby 3rds, Oboro/Kagerou, Rebellion, Summoner, Star Emperor, Soul Reaper
+////Note: (First 98 values [Level 1 - 98] are only used by Summoner Class, because 3rd classes start at level 99.)
+//175,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4218:4220:4223:4224:4229:4239:4240:4241:4242:4243:4244,0,55,90,150,220,320,380,420,455,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1800,2100,2400,2700,3000,3300,3600,3900,4200,4500,5400,6300,7200,8100,9000,9900,10800,11700,12600,13500,16200,18900,21600,24300,27000,29700,32400,35100,37800,40500,43200,45900,48600,51300,54000,56700,59400,62100,64800,67500,75600,83700,91800,99900,108000,116100,124200,132300,140400,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,7070000,7400000,7770000,8150000,8550000,9100000,9610000,10150000,10570000,11180000,12000000,12200000,12930000,13150000,14030000,14420000,15420000,15670000,16870000,17140000,18720000,19020000,20590000,20930000,22690000,23310000,25290000,26020000,27860000,28535000,30990000,31680000,33560000,34942000,36372000,38350000,39890000,41545000,43330000,45400000,48100000,50410000,53370000,56250000,59230000,62590000,66120000,70200000,75330000,81100000,95000000,98000000,103000000,107000000,112000000,116000000,121000000,125000000,130000000,134000000,139000000,145000000,152200000,160840000,171200000,191930000,202290000,214720000,229640000,247550000,283370000,301280000,322770000,348560000,379500000,441390000,99999999
+//
+////Base - Expanded Super Novice & Expanded Super Baby
+//160,4190:4191,0,660,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,7070000,7400000,7770000,8150000,8550000,9100000,9610000,10150000,10570000,11180000,12000000,12200000,12930000,13150000,14030000,14420000,15420000,15670000,16870000,17140000,18720000,19020000,20590000,20930000,22690000,23310000,25290000,26020000,27860000,28535000,30990000,31680000,33560000,34942000,36372000,38350000,39890000,41545000,43330000,45400000,48100000,50410000,53370000,56250000,59230000,62590000,66120000,70200000,75330000,81100000,95000000,98000000,103000000,107000000,112000000,116000000,121000000,125000000,130000000,134000000,139000000,145000000,152200000,160840000,171200000,191930000,202290000,214720000,229640000,247550000,283370000,301280000,322770000,348560000,379500000,441390000,99999999
+//
+////Job - Novice & Baby Novice
+//10,0:4023,1,10,18,28,40,91,151,205,268,340,999999999
+//
+////Job - 1st Classes & Baby 1st Classes, Taekwon
+//50,1:2:3:4:5:6:4024:4025:4026:4027:4028:4029:4046:4050:4225,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,97180,999999999
+//
+////Job - 2nd Classes & Baby 2nd Classes, Soul Linker
+//50,7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4049:4051:4052:4227,1,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,31500,32000,33300,35100,40500,44100,46300,48500,50700,56000,59400,63500,68100,75000,85700,90500,96600,102600,108600,119700,126000,132300,138600,146100,157500,170600,180400,190300,196800,214900,225200,232000,245700,255900,279300,294000,308700,327000,345400,999999999
+//
+////Job - Novice High
+//10,4001,1,11,20,31,44,100,166,226,295,374,999999999
+//
+////Job - Adv First Classes
+//50,4002:4003:4004:4005:4006:4007,1,100,200,350,550,800,1100,1450,1850,2300,2800,3350,3950,4600,5300,6050,6850,7700,8600,9550,10550,11600,12700,13850,15050,16300,17600,18950,20350,21800,23300,24850,26450,28100,29800,31550,33350,35200,37100,39050,41050,43100,45200,47350,49550,51800,54100,56450,58850,61300,999999999
+//
+////Job - Adv Second Classes
+//70,4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,1,3800,6200,10400,15200,22900,27100,30000,32500,35700,41300,45000,45800,47600,50300,58700,63900,67100,70300,73500,90600,96200,102700,110200,121400,144700,152900,163100,173300,183500,213500,224700,236000,247200,260700,299800,324800,343600,362300,374800,474400,497000,512100,542200,564800,644300,678200,712100,754500,796900,873100,911900,950600,989400,1028100,1143300,1199900,1233800,1279100,1324300,1486900,1515900,1603000,1719200,1806300,2040300,2244300,2415900,2746000,3326000,999999999
+//
+////Job - 3rd Jobs & Baby 3rds, Oboro/Kagerou, Rebellion, Star Emperor, Soul Reaper
+//60,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4223:4224:4229:4239:4240:4241:4242:4243:4244,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,131668000,145518000,160753000,177511000,195944000,216220000,238523000,263056000,290042000,319726000,999999999
+//
+////Job - Expanded Super Novice & Expanded Super Baby
+//50,4190:4191,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,999999999
+//
+////Job - Ninja/Gunslinger
+//70,24:25:4222:4228,1,200,300,400,600,700,1000,1200,1400,1700,1900,2400,2700,3200,3600,4200,4900,5500,6100,6900,7700,8400,9300,10100,11100,12100,13000,14600,16100,17500,18600,21500,23300,24700,27000,29000,30000,32400,35000,38100,41100,44000,46700,49600,52500,55600,58900,62700,65500,69200,72300,81200,84100,89300,95500,100900,107800,114900,120700,128600,150500,176900,196100,219600,234200,247900,266400,281300,296600,308000,999999999
+//
+////Job - Star Gladiator
+//50,4047:4048:4226:4238,1,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,101400,112000,118800,127000,136200,150000,171400,181000,193200,205200,217200,239400,252000,264600,277200,292200,315000,341200,360800,380600,393600,429800,450400,464000,491400,511800,558600,588000,617400,654000,690800,999999999
+//
+////Job - Super Novice & Baby Super Novice
+//99,23:4045,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,97180,590120,600120,610120,620120,630120,640120,650120,660120,670120,680120,690120,700120,710120,720120,730120,740120,750120,760120,770120,780120,790120,800120,810120,820120,830120,840120,850120,860120,870120,880120,890120,900120,910120,920120,930120,940120,950120,960120,970120,980120,990120,1000120,1010120,1020120,1030120,1040120,1050120,1060120,1070120,999999999
+//
+////Job - Summoner
+//50,4218:4220,1,60,130,260,460,780,1060,1300,1560,1910,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,31500,34900,38300,41700,45100,48500,51900,55000,72000,89000,106000,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,999999999
+
+
diff --git a/db/import-tmpl/level_penalty.txt b/db/import-tmpl/level_penalty.txt
deleted file mode 100644
index 026114e12f..0000000000
--- a/db/import-tmpl/level_penalty.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-// Experience & Drop Rate Modifier Database
-//
-// Structure of Database:
-// Type,Class,Level difference,Rate
-//
-// TYPE:
-// 1=experience, 2=item drop
-// CLASS:
-// 0=Normal monsters, 1=Boss monsters, 2=Guardians
-//
-// Note: RENEWAL_DROP and/or RENEWAL_EXP must be enabled.
-
-// EXP modifiers due to level difference
-
diff --git a/db/import-tmpl/refine_db.yml b/db/import-tmpl/level_penalty.yml
similarity index 57%
rename from db/import-tmpl/refine_db.yml
rename to db/import-tmpl/level_penalty.yml
index fbe8728eec..0866b43f2c 100644
--- a/db/import-tmpl/refine_db.yml
+++ b/db/import-tmpl/level_penalty.yml
@@ -1,5 +1,5 @@
-# This file is a part of rAthena++.
-# Copyright(C) 2017 rAthena Development Team
+# 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
@@ -16,5 +16,18 @@
# along with this program. If not, see .
#
###########################################################################
-# Custom Refine Database
+# Level Penalty Database
###########################################################################
+#
+# Level Penalty Settings
+#
+###########################################################################
+# - Type: Type of Penalty (Exp, Drop, Mvp_Exp, Mvp_Drop)
+# LevelDifferences: List of level difference between player and monster
+# - Difference: Level difference between player and monster
+# Rate: Rate applied to original exp or drop rate (0-10000)
+###########################################################################
+
+Header:
+ Type: PENALTY_DB
+ Version: 1
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.txt b/db/import-tmpl/quest_db.txt
deleted file mode 100644
index 61416a27a4..0000000000
--- a/db/import-tmpl/quest_db.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-// Quest Database
-//
-// Structure of Database:
-// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title
-//
-// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob.
-// If no MobID* is given, then any mob has a chance to drop the given ItemID*.
diff --git a/db/import-tmpl/quest_db.yml b/db/import-tmpl/quest_db.yml
new file mode 100644
index 0000000000..853725d7a8
--- /dev/null
+++ b/db/import-tmpl/quest_db.yml
@@ -0,0 +1,56 @@
+# 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 .
+#
+###########################################################################
+# Quest Database
+###########################################################################
+#
+# Quest Settings
+#
+###########################################################################
+# - Id Quest ID.
+# Title Quest title.
+# 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" (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.
+# If Mob is supplied, Count is required and the other fields are ignored.
+# If Id is supplied, at least one other field of Race/Size/Element/MinLevel/MaxLevel is required.
+# If Id is supplied, Count is required for each new entry.
+# - 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). 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.
+# Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1)
+# Rate Item drop rate. (10000 = 100%)
+###########################################################################
+
+Header:
+ Type: QUEST_DB
+ 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/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 5aee1174cd..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
@@ -55,7 +55,7 @@
# NoNearNPC: Determines if the skill can be used near a NPC. (Optional)
# AdditionalRange Number of cells from an NPC where the skill can be cast. (Optional)
# Type: Type of NPC.
-# CastCancel Cancel cast when hit. (Default: true)
+# CastCancel Cancel cast when hit. (Default: false)
# CastDefenseReduction Defense reduction rate during skill cast. (Default: 0)
# CastTime: Time to cast the skill in milliseconds. (Default: 0)
# - Level Skill level.
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
new file mode 100644
index 0000000000..a243cf4b28
--- /dev/null
+++ b/db/instance_db.yml
@@ -0,0 +1,48 @@
+# 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 .
+#
+###########################################################################
+# Instance Database
+###########################################################################
+#
+# Instance Settings
+#
+###########################################################################
+# - Id Instance ID.
+# Name Instance Name.
+# TimeLimit Total lifetime of instance in seconds. (Default: 3600)
+# IdleTimeOut Time before an idle instance is destroyed in seconds. (Default: 300)
+# Destroyable Toggles the ability to destroy the instance using instance 'Destroy' button. (Default: true)
+# Note: the button is displayed based on parties. For any mode, it requires the party leader to be the instance owner to destroy it.
+# Enter: Instance entrance coordinates.
+# Map Map Name where players start.
+# X X Coordinate where players start.
+# Y Y Coordinate where players start.
+# AdditionalMaps: List of maps that are part of an instance. (Optional)
+###########################################################################
+
+Header:
+ Type: INSTANCE_DB
+ Version: 1
+
+Footer:
+ Imports:
+ - Path: db/pre-re/instance_db.yml
+ Mode: Prerenewal
+ - Path: db/re/instance_db.yml
+ Mode: Renewal
+ - Path: db/import/instance_db.yml
diff --git a/db/item_avail.txt b/db/item_avail.txt
deleted file mode 100644
index c5de56ff41..0000000000
--- a/db/item_avail.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-// Item Availability and Alias Database
-//
-// Structure of Database:
-// ItemID,SpriteID
-//
-// 01. ItemID Item ID to change.
-// 02. SpriteID Item ID which will be sent to the client instead of ItemID.
-// If 0, the item becomes unavailable for use. If item_check is enabled and a player owns such an item, it will be removed upon next login/teleport.
-//
-// NOTE: Replaces an item client-side while keeping them separate server-side.
-// Think of it as a way to disguise items.
-// Don't sell the item in same shop with the source. Example, don't put 2240 & 2241 in same place!
-
-2240,2241 //Beard - Grampa Beard
-
-//Treasure Hunters Quest Items
-//use these aliases if your game client doesn't support them normally
-//7950,7021
-//7951,7042
-//1998,1250
-//1999,1472
-
-//St. Patric's Day Quest (2008) Items
-//Enable if you plan to use the quest.
-//12715,7721
-//7915,673
-//7916,675
diff --git a/db/item_db.yml b/db/item_db.yml
new file mode 100644
index 0000000000..2388314dd5
--- /dev/null
+++ b/db/item_db.yml
@@ -0,0 +1,95 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Footer:
+ Imports:
+ - Path: db/pre-re/item_db.yml
+ Mode: Prerenewal
+ - Path: db/re/item_db.yml
+ Mode: Renewal
+ - Path: db/import/item_db.yml
diff --git a/db/item_nouse.txt b/db/item_nouse.txt
deleted file mode 100644
index e57dcb719d..0000000000
--- a/db/item_nouse.txt
+++ /dev/null
@@ -1,138 +0,0 @@
-// Item Usage Restriction Configuration File
-// Defines if an item cannot be used under special circumstances.
-//
-// Structure of Database:
-// ItemID,Flag,Group ID Override
-//
-// Flag:
-// 1 = Cannot use item while sitting
-// ... [more to come]
-//
-// Group ID Override:
-// Group ID necessary to override this setting.
-
-606,1,100 // Aloebera
-619,1,100 // Unripe_Apple
-620,1,100 // Orange_Juice
-621,1,100 // Bitter_Herb
-622,1,100 // Rainbow_Carrot
-623,1,100 // Earthworm_The_Dude
-624,1,100 // Rotten_Fish
-625,1,100 // Lusty_Iron
-626,1,100 // Monster_Juice
-627,1,100 // Sweet_Milk
-628,1,100 // Well_Dried_Bone
-629,1,100 // Singing_Flower
-630,1,100 // Dew_Laden_Moss
-631,1,100 // Deadly_Noxious_Herb
-632,1,100 // Fatty_Chubby_Earthworm
-633,1,100 // Baked_Yam
-634,1,100 // Tropical_Banana
-635,1,100 // Horror_Of_Tribe
-636,1,100 // No_Recipient
-637,1,100 // Old_Broom
-638,1,100 // Silver_Knife_Of_Chaste
-639,1,100 // Armlet_Of_Obedience
-640,1,100 // Shining_Stone
-641,1,100 // Contracts_In_Shadow
-642,1,100 // Book_Of_Devil
-659,1,100 // Heart_Of_Her
-660,1,100 // Prohibition_Red_Candle
-661,1,100 // Sway_Apron
-686,1,100 // Earth_Scroll_1_3
-687,1,100 // Earth_Scroll_1_5
-688,1,100 // Cold_Scroll_1_3
-689,1,100 // Cold_Scroll_1_5
-690,1,100 // Fire_Scroll_1_3
-691,1,100 // Fire_Scroll_1_5
-692,1,100 // Wind_Scroll_1_3
-693,1,100 // Wind_Scroll_1_5
-694,1,100 // Ghost_Scroll_1_3
-695,1,100 // Ghost_Scroll_1_5
-696,1,100 // Fire_Scroll_2_1
-697,1,100 // Fire_Scroll_2_5
-698,1,100 // Fire_Scroll_3_1
-699,1,100 // Fire_Scroll_3_5
-700,1,100 // Cold_Scroll_2_1
-11702,1,100 // Moon_Cookie
-12000,1,100 // Cold_Scroll_2_5
-12001,1,100 // Holy_Scroll_1_3
-12002,1,100 // Holy_Scroll_1_5
-12027,1,100 // Giggling_Box
-12028,1,100 // Box_Of_Thunder
-12029,1,100 // Gloomy_Box
-12030,1,100 // Box_Of_Grudge
-12031,1,100 // Sleepy_Box
-12032,1,100 // Box_Of_Storm
-12033,1,100 // Box_Of_Sunlight
-12034,1,100 // Painting_Box
-12215,1,100 // Blessing_10_Scroll
-12216,1,100 // Inc_Agi_10_Scroll
-12217,1,100 // Aspersio_5_Scroll
-12218,1,100 // Assumptio_5_Scroll
-12219,1,100 // Wind_Walk_10_Scroll
-12220,1,100 // Adrenaline_Scroll
-12225,1,100 // Sweet_Candy_Striper
-12235,1,100 // Strawberry_Choco
-12236,1,100 // Choco_Tart
-12237,1,100 // Choco_Lump
-12290,1,100 // Mysterious_Can
-12291,1,100 // Mysterious_PET_Bottle
-12310,1,100 // Spray_Of_Flowers
-12311,1,100 // Large_Spray_Of_Flowers
-12313,1,100 // Protection_Of_Angel
-12323,1,100 // N_Fly_Wing
-12324,1,100 // N_Butterfly_Wing
-12325,1,100 // N_Magnifier
-12340,1,100 // Mysterious_Rice_Powder
-12347,1,100 // Acorn_Jelly
-12350,1,100 // Angeling_Potion
-12358,1,100 // Fan_Of_Wind
-12359,1,100 // Very_Soft_Plant
-12360,1,100 // Very_Red_Juice
-12361,1,100 // Delicious_Shaved_Ice
-12362,1,100 // Kuloren
-12363,1,100 // Fit_Pipe
-12364,1,100 // Staff_Of_Leader
-12365,1,100 // Charming_Lotus
-12366,1,100 // Gril_Doll
-12367,1,100 // Luxury_Whisky_Bottle
-12368,1,100 // Splendid_Mirror
-12369,1,100 // Oilpalm_Coconut
-12370,1,100 // Gril's_Naivety
-12371,1,100 // Magical_Lithography
-12372,1,100 // Hell_Contract
-12373,1,100 // Boy's_Naivety
-12374,1,100 // Flaming_Ice
-12376,1,100 // Mysterious_Can2
-12377,1,100 // Mysterious_PET_Bottle2
-12388,1,100 // Runstone_Crush
-12389,1,100 // Runstone_Storm
-12390,1,100 // Runstone_Millennium
-12396,1,100 // Fools_Day_Box
-12397,1,100 // Fools_Day_Box2
-12415,1,100 // Siege_Teleport_Scroll2
-12473,1,100 // RWC_Parti_Box
-12474,1,100 // RWC_Final_Comp_Box
-12706,1,100 // Lucky_Cookie01
-12707,1,100 // Lucky_Cookie02
-12708,1,100 // Lucky_Cookie03
-12725,1,100 // Runstone_Nosiege
-12726,1,100 // Runstone_Rhydo
-12727,1,100 // Runstone_Verkana
-12728,1,100 // Runstone_Isia
-12729,1,100 // Runstone_Asir
-12730,1,100 // Runstone_Urj
-12731,1,100 // Runstone_Turisus
-12732,1,100 // Runstone_Pertz
-12733,1,100 // Runstone_Hagalas
-14521,1,100 // Repair_Scroll
-14529,1,100 // Greed_Scroll
-14532,1,100 // Battle_Manual25
-14587,1,100 // Repair_Scroll_
-14591,1,100 // Siege_Teleport_Scroll
-14592,1,100 // Job_Manual50
-14593,1,100 // Magic_Power_Scroll
-14594,1,100 // Quagmire_Scroll
-14599,1,100 // Greed_Scroll_C
-14606,1,100 // Job_Manual25
diff --git a/db/improvise_db.yml b/db/item_randomopt_db.yml
similarity index 73%
rename from db/improvise_db.yml
rename to db/item_randomopt_db.yml
index 0e53f56229..00dd23a90f 100644
--- a/db/improvise_db.yml
+++ b/db/item_randomopt_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,22 +16,23 @@
# along with this program. If not, see .
#
###########################################################################
-# Improvised Song Database
+# Item Random Option Database
###########################################################################
#
-# Improvised Song Settings
+# Item Random Option Settings
#
###########################################################################
-# - Skill Skill to be casted by Improvised Song.
-# Probability Probability of skill compared to others in database (1 = 0.01%, 10000 = 100%).
+# - Id Item Random Option ID matching the ID defined in enumvar.lub in the client.
+# Option Item Random Option constant.
+# Script Bonus script used for option.
###########################################################################
Header:
- Type: IMPROVISED_SONG_DB
+ Type: RANDOM_OPTION_DB
Version: 1
Footer:
Imports:
- - Path: db/re/improvise_db.yml
+ - Path: db/re/item_randomopt_db.yml
Mode: Renewal
- - Path: db/import/improvise_db.yml
+ - Path: db/import/item_randomopt_db.yml
diff --git a/db/item_randomopt_group.yml b/db/item_randomopt_group.yml
new file mode 100644
index 0000000000..2800af5133
--- /dev/null
+++ b/db/item_randomopt_group.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 .
+#
+###########################################################################
+# Item Random Option Group Database
+###########################################################################
+#
+# Item Random Option Group Settings
+#
+###########################################################################
+# - Id Item Random Option Group ID.
+# Group Item Random Option Group constant.
+# Slots: Slot in which an Item Random Option is guaranteed to be applied. Max of MAX_ITEM_RDM_OPT.
+# - Slot Slot number.
+# Options: List of possible Item Random Options for slot.
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+# MaxRandom Maximum amount of random options applied. These options are not guaranteed to be applied. Max of (MAX_ITEM_RDM_OPT - Total 'Slots'). (Default: 0)
+# Random: List of possible Item Random Options for remaining slots. (Optional)
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+###########################################################################
+
+Header:
+ Type: RANDOM_OPTION_GROUP
+ Version: 1
+
+Footer:
+ Imports:
+ - Path: db/re/item_randomopt_group.yml
+ Mode: Renewal
+ - Path: db/import/item_randomopt_group.yml
diff --git a/db/job_db2.txt b/db/job_db2.txt
index 526e87663c..582ebbc224 100644
--- a/db/job_db2.txt
+++ b/db/job_db2.txt
@@ -280,15 +280,15 @@
// Baby Mechanic (Mado)
4112,6,1,0,0,1,0,6,2,5,4,0,0,4,6,0,0,2,0,3,3,4,5,0,0,3,6,0,0,3,0,1,1,3,6,0,0,4,4,0,0,0,3,3,1,1,0,0,5,2,0,6,1,5,0,4,3,2,0,5,1
// Super Novice (Expanded)
-4190,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0
+4190,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,4,5,0
// Super Baby (Expanded)
-4191,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0
+4191,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,0,3,0,4,5,0,6,0,1,2,4,5,0
// Kagerou
4211,5,0,4,0,2,3,0,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,6,3,4,0,5,0,2,0,1,4,0,5,4,0,3,5,1,0,2,4,1,0,5,6,2,1,0,5
// Oboro
4212,5,0,4,0,2,3,0,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,6,3,4,0,5,0,2,0,1,4,0,5,4,0,3,5,1,0,2,4,1,0,5,6,2,1,0,5
// Rebellion
-4215,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1
+4215,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1,2,6,0,4,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
// Summoner
4218,5,0,3,0,5,3,0,2,4,0,2,4,5,0,2,4,5,0,2,4,5,0,6,3,5,0,2,0,6,0,4,5,0,6,0,4,6,0,2,0,5,4,3,0,5,6,3,2,0,5
// Baby Summoner
@@ -308,22 +308,19 @@
// Baby Gunslinger
4228,5,6,0,6,0,5,0,0,0,0,5,6,0,0,0,0,5,0,0,0,6,0,0,0,5,0,0,0,0,0,6,1,0,0,5,0,0,0,0,0,1,0,0,0,5,0,0,0,0,1,6,4,0,0,5,0,0,0,2,3,4,5,6,1,0,0,0,0,0,0
// Baby Rebellion
-4229,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1
+4229,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1,2,6,0,4,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
// Baby Star Gladiator (Union)
4238,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2
//================================
-// Note: Star Emperor and Soul Reaper bonus stats are unknown. Using Star Gladiator and Soul Linker's
-// bonus stats for now until I know the official ones.
-//
// Star Emperor
-4239,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2
+4239,1,5,0,0,2,0,4,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,1,3,4,0,5,0,2,5,1,0,0,5,2,6,3,5,1,0,2,3,1,0,5,0,2,1,0,5,0,0,0,0,0,1,0,0,2,0
// Soul Reaper
-4240,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5
+4240,4,5,0,0,4,3,5,0,0,0,5,4,2,0,5,4,3,0,1,5,2,0,0,3,4,5,0,1,2,5,4,0,0,5,2,0,3,5,4,0,2,3,1,4,5,0,2,0,4,5,0,2,0,4,0,0,0,0,4,0
// Baby Star Emperor
-4241,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2
+4241,1,5,0,0,2,0,4,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,1,3,4,0,5,0,2,5,1,0,0,5,2,6,3,5,1,0,2,3,1,0,5,0,2,1,0,5,0,0,0,0,0,1,0,0,2,0
// Baby Soul Reaper
-4242,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5
+4242,4,5,0,0,4,3,5,0,0,0,5,4,2,0,5,4,3,0,1,5,2,0,0,3,4,5,0,1,2,5,4,0,0,5,2,0,3,5,4,0,2,3,1,4,5,0,2,0,4,5,0,2,0,4,0,0,0,0,4,0
// Star Emperor (Union)
-4243,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2
+4243,1,5,0,0,2,0,4,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,1,3,4,0,5,0,2,5,1,0,0,5,2,6,3,5,1,0,2,3,1,0,5,0,2,1,0,5,0,0,0,0,0,1,0,0,2,0
// Baby Star Emperor (Union)
-4244,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2
+4244,1,5,0,0,2,0,4,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,1,3,4,0,5,0,2,5,1,0,0,5,2,6,3,5,1,0,2,3,1,0,5,0,2,1,0,5,0,0,0,0,0,1,0,0,2,0
diff --git a/db/re/improvise_db.yml b/db/level_penalty.yml
similarity index 50%
rename from db/re/improvise_db.yml
rename to db/level_penalty.yml
index 4961d20f8d..ce58fae53b 100644
--- a/db/re/improvise_db.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
@@ -16,50 +16,24 @@
# along with this program. If not, see .
#
###########################################################################
-# Improvised Song Database
+# Level Penalty Database
###########################################################################
#
-# Improvised Song Settings
+# Level Penalty Settings
#
###########################################################################
-# - Skill Skill to be casted by Improvised Song.
-# Probability Probability of skill compared to others in database (1 = 0.01%, 10000 = 100%).
+# - Type: Type of Penalty (Exp, Drop, Mvp_Exp, Mvp_Drop)
+# LevelDifferences: List of level difference between player and monster
+# - Difference: Level difference between player and monster
+# Rate: Rate applied to original exp or drop rate (0-10000)
###########################################################################
Header:
- Type: IMPROVISED_SONG_DB
+ Type: PENALTY_DB
Version: 1
-Body:
- - Skill: MG_NAPALMBEAT
- Probability: 6000
- - Skill: MG_SAFETYWALL
- Probability: 4000
- - Skill: MG_SOULSTRIKE
- Probability: 6000
- - Skill: MG_COLDBOLT
- Probability: 6000
- - Skill: MG_FROSTDIVER
- Probability: 6000
- - Skill: MG_FIREBALL
- Probability: 6000
- - Skill: MG_FIREWALL
- Probability: 4000
- - Skill: MG_FIREBOLT
- Probability: 6000
- - Skill: MG_LIGHTNINGBOLT
- Probability: 6000
- - Skill: MG_THUNDERSTORM
- Probability: 4000
- - Skill: WZ_FIREPILLAR
- Probability: 4000
- - Skill: WZ_METEOR
- Probability: 4000
- - Skill: WZ_JUPITEL
- Probability: 6000
- - Skill: WZ_VERMILION
- Probability: 4000
- - Skill: WZ_WATERBALL
- Probability: 6000
- - Skill: WZ_STORMGUST
- Probability: 4000
+Footer:
+ Imports:
+ - Path: db/re/level_penalty.yml
+ Mode: Renewal
+ - Path: db/import/level_penalty.yml
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 d564e3c635..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
@@ -118,6 +118,3 @@ Body:
- Id: GD_DEVELOPMENT
MaxLevel: 1
-
-# - Id: GD_GUILD_STORAGE
-# MaxLevel: 5
diff --git a/db/pre-re/instance_db.txt b/db/pre-re/instance_db.txt
deleted file mode 100644
index e9cf668f15..0000000000
--- a/db/pre-re/instance_db.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-// Instance Database
-//
-// Structure of Database:
-// ID,Name,LimitTime,IdleTimeOut,EnterMap,EnterX,EnterY,Map2,Map3,...,Map255
-//
-// EnterMap is considered as Map1
-
-1,Endless Tower,14400,300,1@tower,50,355,2@tower,3@tower,4@tower,5@tower,6@tower
-2,Sealed Catacomb,7200,300,1@cata,100,224,2@cata
-3,Orc's Memory,3600,300,1@orcs,179,15,2@orcs
-4,Nidhoggur's Nest,14400,300,1@nyd,32,36,2@nyd
diff --git a/db/pre-re/instance_db.yml b/db/pre-re/instance_db.yml
new file mode 100644
index 0000000000..f89c988e78
--- /dev/null
+++ b/db/pre-re/instance_db.yml
@@ -0,0 +1,81 @@
+# 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 .
+#
+###########################################################################
+# Instance Database
+###########################################################################
+#
+# Instance Settings
+#
+###########################################################################
+# - Id Instance ID.
+# Name Instance Name.
+# TimeLimit Total lifetime of instance in seconds. (Default: 3600)
+# IdleTimeOut Time before an idle instance is destroyed in seconds. (Default: 300)
+# Destroyable Toggles the ability to destroy the instance using instance 'Destroy' button. (Default: true)
+# Note: the button is displayed based on parties. For any mode, it requires the party leader to be the instance owner to destroy it.
+# Enter: Instance entrance coordinates.
+# Map Map Name where players start.
+# X X Coordinate where players start.
+# Y Y Coordinate where players start.
+# AdditionalMaps: List of maps that are part of an instance. (Optional)
+###########################################################################
+
+Header:
+ Type: INSTANCE_DB
+ Version: 1
+
+Body:
+ - Id: 1
+ Name: Endless Tower
+ TimeLimit: 14400
+ Enter:
+ Map: 1@tower
+ X: 50
+ Y: 355
+ AdditionalMaps:
+ 2@tower: true
+ 3@tower: true
+ 4@tower: true
+ 5@tower: true
+ 6@tower: true
+ - Id: 2
+ Name: Sealed Catacomb
+ TimeLimit: 7200
+ Enter:
+ Map: 1@cata
+ X: 100
+ Y: 224
+ AdditionalMaps:
+ 2@cata: true
+ - Id: 3
+ Name: Orc's Memory
+ Enter:
+ Map: 1@orcs
+ X: 179
+ Y: 15
+ AdditionalMaps:
+ 2@orcs: true
+ - Id: 4
+ Name: Nidhoggur's Nest
+ TimeLimit: 14400
+ Enter:
+ Map: 1@nyd
+ X: 32
+ Y: 36
+ AdditionalMaps:
+ 2@nyd: true
diff --git a/db/pre-re/item_buyingstore.txt b/db/pre-re/item_buyingstore.txt
deleted file mode 100644
index 7aba096643..0000000000
--- a/db/pre-re/item_buyingstore.txt
+++ /dev/null
@@ -1,1957 +0,0 @@
-// Buying Store Item List
-// List of items that can be sold to buying stores.
-//
-// Structure of Database:
-// ItemID
-//
-// Note:
-// Items are in same order as data\buyingstoreitemlist.txt, which
-// must be edited as well for the client to accept added items.
-
-//--- 2015 / 12 / 16 - ڹ
-//25127
-//25128
-//25129
-//25130
-//25131
-//23016
-//23080
-//4671
-//4672
-//4673
-//4674
-//4675
-//4676
-//4677
-//4678
-//4679
-//4680
-//4681
-//4682
-//4683
-//4684
-//4685
-//4686
-//4687
-//4688
-//4689
-//4690
-//4691
-//4692
-//4693
-//4694
-//4695
-//4696
-//--- 2015 / 11 19 - μ ߰
-//6905
-//--- 2015 / 11 / 30 - ī ߰
-4001 // Poring_Card
-4002 // Fabre_Card
-4003 // Pupa_Card
-4004 // Drops_Card
-4005 // Poring__Card
-4006 // Lunatic_Card
-4007 // Pecopeco_Egg_Card
-4008 // Picky_Card
-4009 // Chonchon_Card
-4010 // Wilow_Card
-4011 // Picky__Card
-4012 // Thief_Bug_Egg_Card
-4013 // Andre_Egg_Card
-4014 // Roda_Frog_Card
-4015 // Condor_Card
-4016 // Thief_Bug_Card
-4017 // Savage_Babe_Card
-4018 // Andre_Larva_Card
-4019 // Hornet_Card
-4020 // Farmiliar_Card
-4021 // Rocker_Card
-4022 // Spore_Card
-4023 // Desert_Wolf_Babe_Card
-4024 // Plankton_Card
-4025 // Skeleton_Card
-4026 // Thief_Bug_Female_Card
-4027 // Kukre_Card
-4028 // Tarou_Card
-4029 // Wolf_Card
-4030 // Mandragora_Card
-4031 // Pecopeco_Card
-4032 // Ambernite_Card
-4033 // Poporing_Card
-4034 // Worm_Tail_Card
-4035 // Hydra_Card
-4036 // Muka_Card
-4037 // Snake_Card
-4038 // Zombie_Card
-4039 // Stainer_Card
-4040 // Creamy_Card
-4041 // Coco_Card
-4042 // Steel_Chonchon_Card
-4043 // Andre_Card
-4044 // Smokie_Card
-4045 // Horn_Card
-4046 // Martin_Card
-4047 // Ghostring_Card
-4048 // Poison_Spore_Card
-4049 // Vadon_Card
-4050 // Thief_Bug_Male_Card
-4051 // Yoyo_Card
-4052 // Elder_Wilow_Card
-4053 // Vitata_Card
-4054 // Angeling_Card
-4055 // Marina_Card
-4056 // Dustiness_Card
-4057 // Metaller_Card
-4058 // Thara_Frog_Card
-4059 // Soldier_Andre_Card
-4060 // Goblin_Card
-4061 // Cornutus_Card
-4062 // Anacondaq_Card
-4063 // Caramel_Card
-4064 // Zerom_Card
-4065 // Kaho_Card
-4066 // Orc_Warrior_Card
-4067 // Megalodon_Card
-4068 // Scorpion_Card
-4069 // Drainliar_Card
-4070 // Eggyra_Card
-4071 // Orc_Zombie_Card
-4072 // Golem_Card
-4073 // Pirate_Skel_Card
-4074 // BigFoot_Card
-4075 // Argos_Card
-4076 // Magnolia_Card
-4077 // Phen_Card
-4078 // Savage_Card
-4079 // Mantis_Card
-4080 // Flora_Card
-4081 // Hode_Card
-4082 // Desert_Wolf_Card
-4083 // Rafflesia_Card
-4084 // Marine_Sphere_Card
-4085 // Orc_Skeleton_Card
-4086 // Soldier_Skeleton_Card
-4087 // Giearth_Card
-4088 // Frilldora_Card
-4089 // Sword_Fish_Card
-4090 // Munak_Card
-4091 // Kobold_Card
-4092 // Skel_Worker_Card
-4093 // Obeaune_Card
-4094 // Archer_Skeleton_Card
-4095 // Marse_Card
-4096 // Zenorc_Card
-4097 // Matyr_Card
-4098 // Dokebi_Card
-4099 // Pasana_Card
-4100 // Sohee_Card
-4101 // Sand_Man_Card
-4102 // Whisper_Card
-4103 // Horong_Card
-4104 // Requiem_Card
-4105 // Marc_Card
-4106 // Mummy_Card
-4107 // Verit_Card
-4108 // Myst_Card
-4109 // Jakk_Card
-4110 // Ghoul_Card
-4111 // Strouf_Card
-4112 // Marduk_Card
-4113 // Marionette_Card
-4114 // Argiope_Card
-4115 // Hunter_Fly_Card
-4116 // Isis_Card
-4117 // Side_Winder_Card
-4118 // Petit_Card
-4119 // Bathory_Card
-4120 // Petit__Card
-4121 // Phreeoni_Card
-4122 // Deviruchi_Card
-4123 // Eddga_Card
-4124 // Medusa_Card
-4125 // Deviace_Card
-4126 // Minorous_Card
-4127 // Nightmare_Card
-4128 // Golden_Bug_Card
-4129 // Baphomet__Card
-4130 // Scorpion_King_Card
-4131 // Moonlight_Flower_Card
-4132 // Mistress_Card
-4133 // Daydric_Card
-4134 // Dracula_Card
-4135 // Orc_Load_Card
-4136 // Khalitzburg_Card
-4137 // Drake_Card
-4138 // Anubis_Card
-4139 // Joker_Card
-4140 // Knight_Of_Abyss_Card
-4141 // Evil_Druid_Card
-4142 // Doppelganger_Card
-4143 // Orc_Hero_Card
-4144 // Osiris_Card
-4145 // Berzebub_Card
-4146 // Maya_Card
-4147 // Baphomet_Card
-4148 // Pharaoh_Card
-4149 // Gargoyle_Card
-4150 // Goat_Card
-4151 // Gajomart_Card
-4152 // Galapago_Card
-4153 // Crab_Card
-4154 // Rice_Cake_Boy_Card
-4155 // Goblin_Leader_Card
-4156 // Steam_Goblin_Card
-4157 // Goblin_Archer_Card
-4158 // Flying_Deleter_Card
-4159 // Nine_Tail_Card
-4160 // Antique_Firelock_Card
-4161 // Grand_Peco_Card
-4162 // Grizzly_Card
-4163 // Gryphon_Card
-4164 // Gullinbursti_Card
-4165 // Gig_Card
-4166 // Nightmare_Terror_Card
-4167 // Neraid_Card
-4168 // Dark_Lord_Card
-4169 // Dark_Illusion_Card
-4170 // Dark_Frame_Card
-4171 // Dark_Priest_Card
-4172 // The_Paper_Card
-4173 // Demon_Pungus_Card
-4174 // Deviling_Card
-4175 // Poison_Toad_Card
-4176 // Dullahan_Card
-4177 // Dryad_Card
-4178 // Dragon_Tail_Card
-4179 // Dragon_Fly_Card
-4180 // Driller_Card
-4181 // Disguise_Card
-4182 // Diabolic_Card
-4183 // Vagabond_Wolf_Card
-4184 // Lava_Golem_Card
-4185 // Rideword_Card
-4186 // Raggler_Card
-4187 // Raydric_Archer_Card
-4188 // Leib_Olmai_Card
-4189 // Wraith_Dead_Card
-4190 // Wraith_Card
-4191 // Loli_Ruri_Card
-4192 // Rotar_Zairo_Card
-4193 // Lude_Card
-4194 // Rybio_Card
-4195 // Leaf_Cat_Card
-4196 // Marin_Card
-4197 // Mastering_Card
-4198 // Maya_Puple_Card
-4199 // Merman_Card
-4200 // Megalith_Card
-4201 // Majoruros_Card
-4202 // Civil_Servant_Card
-4203 // Mutant_Dragon_Card
-4204 // Mini_Demon_Card
-4205 // Mimic_Card
-4206 // Mystcase_Card
-4207 // Mysteltainn_Card
-4208 // Miyabi_Ningyo_Card
-4209 // Violy_Card
-4210 // Wander_Man_Card
-4211 // Vocal_Card
-4212 // Bon_Gun_Card
-4213 // Brilight_Card
-4214 // Bloody_Murderer_Card
-4215 // Blazzer_Card
-4216 // Sasquatch_Card
-4217 // Live_Peach_Tree_Card
-4218 // Succubus_Card
-4219 // Sageworm_Card
-4220 // Solider_Card
-4221 // Skeleton_General_Card
-4222 // Skel_Prisoner_Card
-4223 // Stalactic_Golem_Card
-4224 // Stem_Worm_Card
-4225 // Stone_Shooter_Card
-4226 // Sting_Card
-4227 // Spring_Rabbit_Card
-4228 // Sleeper_Card
-4229 // C_Tower_Manager_Card
-4230 // Shinobi_Card
-4231 // Increase_Soil_Card
-4232 // Wild_Ginseng_Card
-4233 // Baby_Leopard_Card
-4234 // Anolian_Card
-4235 // Cookie_XMAS_Card
-4236 // Amon_Ra_Card
-4237 // Owl_Duke_Card
-4238 // Owl_Baron_Card
-4239 // Iron_Fist_Card
-4240 // Arclouse_Card
-4241 // Archangeling_Card
-4242 // Apocalips_Card
-4243 // Antonio_Card
-4244 // Alarm_Card
-4245 // Am_Mut_Card
-4246 // Assulter_Card
-4247 // Aster_Card
-4248 // Ancient_Mummy_Card
-4249 // Ancient_Worm_Card
-4250 // Executioner_Card
-4251 // Elder_Card
-4252 // Alligator_Card
-4253 // Alice_Card
-4254 // Tirfing_Card
-4255 // Orc_Lady_Card
-4256 // Orc_Archer_Card
-4257 // Wild_Rose_Card
-4258 // Wicked_Nymph_Card
-4259 // Wooden_Golem_Card
-4260 // Wootan_Shooter_Card
-4261 // Wootan_Fighter_Card
-4262 // Evil_Cloud_Hermit_Card
-4263 // Incant_Samurai_Card
-4264 // Wind_Ghost_Card
-4265 // Li_Me_Mang_Ryang_Card
-4266 // Eclipse_Card
-4267 // Explosion_Card
-4268 // Injustice_Card
-4269 // Incubus_Card
-4270 // Giant_Spider_Card
-4271 // Giant_Honet_Card
-4272 // Dancing_Dragon_Card
-4273 // Shellfish_Card
-4274 // Zombie_Master_Card
-4275 // Zombie_Prisoner_Card
-4276 // Lord_Of_Death_Card
-4277 // Zherlthsh_Card
-4278 // Gibbet_Card
-4279 // Deleter_Card
-4280 // Geographer_Card
-4281 // Zipper_Bear_Card
-4282 // Tengu_Card
-4283 // Greatest_General_Card
-4284 // Chepet_Card
-4285 // Choco_Card
-4286 // Karakasa_Card
-4287 // Kapha_Card
-4288 // Carat_Card
-4289 // Caterpillar_Card
-4290 // Cat_O_Nine_Tail_Card
-4291 // Kobold_Leader_Card
-4292 // Kobold_Archer_Card
-4293 // Cookie_Card
-4294 // Quve_Card
-4295 // Kraben_Card
-4296 // Cramp_Card
-4297 // Cruiser_Card
-4298 // Cremy_Fear_Card
-4299 // Clock_Card
-4300 // Chimera_Card
-4301 // Killer_Mantis_Card
-4302 // Tao_Gunka_Card
-4303 // Whisper_Boss_Card
-4304 // Tamruan_Card
-4305 // Turtle_General_Card
-4306 // Toad_Card
-4307 // Kind_Of_Beetle_Card
-4308 // Tri_Joint_Card
-4309 // Parasite_Card
-4310 // Panzer_Goblin_Card
-4311 // Permeter_Card
-4312 // Fur_Seal_Card
-4313 // Punk_Card
-4314 // Penomena_Card
-4315 // Pest_Card
-4316 // Fake_Angel_Card
-4317 // Mobster_Card
-4318 // Knight_Windstorm_Card
-4319 // Freezer_Card
-4320 // Bloody_Knight_Card
-4321 // Hylozoist_Card
-4322 // High_Orc_Card
-4323 // Garm_Baby_Card
-4324 // Garm_Card
-4325 // Harpy_Card
-4326 // See_Otter_Card
-4327 // Blood_Butterfly_Card
-4328 // Hyegun_Card
-4329 // Phendark_Card
-4330 // Dark_Snake_Lord_Card
-4331 // Heater_Card
-4332 // Waste_Stove_Card
-4333 // Venomous_Card
-4334 // Noxious_Card
-4335 // Pitman_Card
-4336 // Ungoliant_Card
-4337 // Porcellio_Card
-4338 // Obsidian_Card
-4339 // Mineral_Card
-4340 // Teddy_Bear_Card
-4341 // Metaling_Card
-4342 // Rsx_0806_Card
-4343 // Mole_Card
-4344 // Anopheles_Card
-4345 // Hill_Wind_Card
-4346 // Ygnizem_Card
-4347 // Armaia_Card
-4348 // Whikebain_Card
-4349 // Erend_Card
-4350 // Rawrel_Card
-4351 // Kavac_Card
-4352 // B_Ygnizem_Card
-4353 // Removal_Card
-4354 // Gemini_Card
-4355 // Gremlin_Card
-4356 // Beholder_Card
-4357 // B_Seyren_Card
-4358 // Seyren_Card
-4359 // B_Eremes_Card
-4360 // Eremes_Card
-4361 // B_Harword_Card
-4362 // Harword_Card
-4363 // B_Magaleta_Card
-4364 // Magaleta_Card
-4365 // B_Katrinn_Card
-4366 // Katrinn_Card
-4367 // B_Shecil_Card
-4368 // Shecil_Card
-4369 // Venatu_Card
-4370 // Dimik_Card
-4371 // Archdam_Card
-4372 // Bacsojin_Card
-4373 // Chung_E_Card
-4374 // Apocalips_H_Card
-4375 // Orc_Baby_Card
-4376 // Lady_Tanee_Card
-4377 // Green_Iguana_Card
-4378 // Acidus_Card
-4379 // Acidus__Card
-4380 // Ferus_Card
-4381 // Ferus__Card
-4382 // Novus__Card
-4383 // Novus_Card
-4384 // Hydro_Card
-4385 // Dragon_Egg_Card
-4386 // Detale_Card
-4387 // Ancient_Mimic_Card
-4388 // Deathword_Card
-4389 // Plasma_Card
-4390 // Breeze_Card
-4391 // Retribution_Card
-4392 // Observation_Card
-4393 // Shelter_Card
-4394 // Solace_Card
-4395 // Tha_Maero_Card
-4396 // Tha_Odium_Card
-4397 // Tha_Despero_Card
-4398 // Tha_Dolor_Card
-4399 // Thanatos_Card
-4400 // Aliza_Card
-4401 // Alicel_Card
-4402 // Aliot_Card
-4403 // Kiel_Card
-4404 // Skogul_Card
-4405 // Frus_Card
-4406 // Skeggiold_Card
-4407 // Randgris_Card
-4408 // Gloom_Under_Night_Card
-4409 // Agav_Card
-4410 // Echio_Card
-4411 // Vanberk_Card
-4412 // Isilla_Card
-4413 // Hodremlin_Card
-4414 // Seeker_Card
-4415 // Snowier_Card
-4416 // Siroma_Card
-4417 // Ice_Titan_Card
-4418 // Gazeti_Card
-4419 // Ktullanux_Card
-4420 // Muscipular_Card
-4421 // Drosera_Card
-4422 // Roween_Card
-4423 // Galion_Card
-4424 // Stapo_Card
-4425 // Atroce_Card
-4426 // Byorgue_Card
-4427 // Sword_Guardian_Card
-4428 // Bow_Guardian_Card
-4429 // Salamander_Card
-4430 // Ifrit_Card
-4431 // Kasa_Card
-4432 // Magmaring_Card
-4433 // Imp_Card
-4434 // Knocker_Card
-4435 // Zombie_Slaughter_Card
-4436 // Ragged_Zombie_Card
-4437 // Hell_Poodle_Card
-4438 // Banshee_Card
-4439 // Flame_Skull_Card
-4440 // Necromancer_Card
-4441 // Fallen_Bishop_Card
-4442 // Tatacho_Card
-4443 // Aqua_Elemental_Card
-4444 // Draco_Card
-4445 // Luciola_Vespa_Card
-//4446
-4447 // Centipede_Card
-4448 // Cornus_Card
-4449 // Dark_Shadow_Card
-4450 // Banshee_Master_Card
-4451 // Entweihen_Card
-4452 // Centipede_Larva_Card
-4453 // Hilsrion_Card
-//4454
-//4455
-//4456
-//4457
-//4458
-//4459
-//4460
-//4461
-//4462
-//4463
-//4464
-//4465
-//4466
-//4467
-//4468
-//4469
-//4470
-//4471
-//4472
-//4473
-//4474
-//4475
-//4476
-//4477
-//4478
-//4479
-//4480
-//4481
-//4482
-//4483
-//4484
-//4485
-//4486
-//4487
-//4488
-//4489
-//4490
-//4491
-//4492
-//4493
-//4494
-//4495
-//4496
-//4497
-//4498
-//4499
-//4500
-//4501
-//4502
-//4503
-//4504
-//4505
-//4506
-//4507
-//4508
-//4509
-//4510
-//4511
-//4512
-//4513
-//4514
-//4515
-//4516
-//4517
-//4518
-//4519
-//4520
-//4521
-//4522
-//4523
-//4524
-//4525
-//4526
-//4527
-//4528
-//4529
-//4530
-//4531
-//4532
-//4533
-//4534
-//4535
-//4536
-//4537
-//4538
-//4539
-//4540
-//4541
-//4542
-//4543
-//4544
-//4545
-//4546
-//4547
-//4548
-//4549
-//4550
-//4551
-//4552
-//4553
-//4554
-//4555
-//4556
-//4557
-//4558
-//4559
-//4560
-//4561
-//4562
-//4563
-//4564
-//4565
-//4566
-//4567
-//4568
-//4569
-//4570
-//4571
-//4572
-//4573
-//4574
-//4575
-//4576
-//4577
-//4578
-//4579
-//4580
-//4581
-//4582
-//4583
-//4584
-//4585
-//4586
-//4587
-//4588
-//4589
-//4590
-//4591
-//4592
-//4593
-//4594
-//4595
-//4596
-//4597
-//4598
-//4599
-//4600
-//4601
-//4602
-//4603
-//4604
-//4605
-//4606
-//4607
-//4608
-//4609
-//4610
-//4625
-//4626
-//4627
-//4628
-//4629
-//4630
-//4631
-//4632
-//4633
-//4634
-//4635
-//4636
-//4637
-//4638
-//4639
-//4640
-//4641
-//4642
-//4643
-//4644
-//4645
-//4646
-//4647
-//4648
-//4649
-//4650
-//4651
-//4652
-//4653
-//4654
-//4655
-//4656
-//4657
-//4658
-//--- 2015 / 7 / 9 -
-//11600
-//22847
-//22848
-//22849
-//6921
-//6922
-//6924
-//6936
-//6937
-//6938
-//6939
-//6940
-//6941
-//6942
-//6961
-//6962
-//6905
-//--- 2014 / 12 / 17
-12739 // Snow_Flower
-//--- 2014 / 07 / 09
-//6897
-//6898
-//6899
-//6900
-//6901
-//6902
-//6903
-//22770
-//22771
-//22772
-//22773
-//22774
-//22775
-//22776
-//--- 2014 / 04 / 21
-//6691
-//6692
-//6693
-//6694
-//6695
-//6696
-12490 // Vivid_Notation
-//22516
-//22534
-//11563
-//11564
-//--- 2013 / 12 / 23
-//6832
-//11597
-//22699
-//22679
-//22687
-//6615
-//--- 2013 / 08 / 02
-//6750
-//6751
-//22648
-//22649
-//6797
-//11556
-//6770
-//6771
-//6772
-//6773
-//6774
-//6775
-//6776
-//6777
-//6778
-//6779
-//6780
-//6781
-//6782
-//11589
-//11590
-//22620
-//22621
-
-//--- 2013 / 04 / 16
-//6557
-//6558
-//6559
-//6560
-//6561
-//12812
-//12813
-//12814
-//12815
-//6592
-//6594
-//6595
-//6596
-//6597
-//6598
-//6599
-//6600
-//6601
-//6602
-//6603
-//6604
-//6605
-//6668
-7056 // Payroll_Of_Kafra
-//11557
-//11558
-//6607
-//6608
-//6609
-//6610
-//6611
-//6612
-//6613
-7228 // Gold_Bullion
-7229 // Silver_Bullion
-7230 // White_Gold_Bullion
-//6699
-//6700
-//6701
-//6702
-//6703
-//6704
-//6705
-//6706
-//6683
-//7640
-//7642
-//7643
-//7644
-//6521
-//6522
-//6531
-//6557
-//6558
-//6559
-//6560
-//6561
-//12812
-//12813
-//12814
-//12815
-714 // Emperium
-6381 // Field_Shovel
-6382 // Urn
-6393 // Round_Feather
-6394 // Golden_Feather
-6395 // Angel_Magic_Power
-//6403
-//6404
-//6405
-//6423
-//6469
-//6470
-//6471
-6493 // Makibishi
-//6496
-//6497
-//6498
-6499 // Ancient_Grudge
-//6508
-//6509
-//6510
-//6511
-6512 // Charm_Fire
-6513 // Charm_Ice
-6514 // Charm_Wind
-6515 // Charm_Earth
-//6516
-//6517
-//6518
-//6523
-//6524
-//6525
-7347 // Lab_Staff_Record
-7760 // Yaga_Magic_Book
-7762 // Yaga_Pestle
-7824 // Spirit_Liquor
-11519 // Beef_Toast
-11520 // Mora_Mandarin
-11521 // Pingui_Berry_Juice
-11522 // Red_Raffle_Sap
-11523 // Yellow_Raffle_Sap
-11524 // White_Raffle_Sap
-11525 // Mora_Hip_Tea
-11526 // Rafflecino
-//11532
-//11533
-//11534
-//11536
-//11537
-//11547
-//11548
-//11549
-12329 // Recall_MaleGM
-12330 // Recall_FemaleGM
-12342 // Manuk's_Opportunity
-12343 // Manuk's_Courage
-12344 // Pinguicula's_fruit_Jam
-12345 // Luciola's_Honey_Jam
-12348 // Manuk's_Faith
-12349 // Cornus'_Tears
-12350 // Angeling_Potion
-12351 // Shout_Megaphone
-12354 // Buche_De_Noel
-12355 // Xmas_Gift
-12356 // Louise_Costume_Box
-12418 // Full_SwingK
-12419 // Mana_Plus
-12422 // HP_Increase_Potion_(Small)
-12423 // HP_Increase_Potion_(Medium)
-12424 // HP_Increase_Potion_(Large)
-12425 // SP_Increase_Potion_(Small)
-12426 // SP_Increase_Potion_(Medium)
-12427 // SP_Increase_Potion_(Large)
-12428 // Concentrated_White_Potion_Z
-12429 // Savage_Full_Roast
-12430 // Cocktail_Warg_Blood
-12431 // Minor_Stew
-12432 // Siroma_Iced_Tea
-12433 // Drosera_Herb_Salad
-12434 // Petite_Tail_Noodles
-12436 // Vitata_500
-12437 // Concentrated_Ceromain_Soup
-12475 // Cure_Free
-12536 // NY_Rice_Cake_Soup
-12539 // Splendid_Box
-12561 // Mysterious_Seed
-12574 // Mora_Berry
-12575 // Arrow_Of_Elf_Cntr
-12576 // Hunting_Arrow_Cntr
-//12582
-//12608
-//12609
-//12612
-//12613
-//12614
-//12615
-//12616
-//12617
-//12618
-//12619
-//12620
-//12621
-//12623
-//12675
-//12676
-//12677
-//12678
-//12679
-//12680
-//12683
-//12690
-//12691
-//12692
-//12693
-//12694
-//12695
-//12698
-//12699
-//12700
-//12775
-
-//--- 2010 / 03 / 12
-601 // Wing_Of_Fly
-602 // Wing_Of_Butterfly
-603 // Old_Blue_Box
-604 // Branch_Of_Dead_Tree
-605 // Anodyne
-606 // Aloebera
-607 // Yggdrasilberry
-608 // Seed_Of_Yggdrasil
-609 // Amulet
-610 // Leaf_Of_Yggdrasil
-611 // Spectacles
-612 // Portable_Furnace
-613 // Iron_Hammer
-614 // Golden_Hammer
-615 // Oridecon_Hammer
-616 // Old_Card_Album
-617 // Old_Violet_Box
-618 // Worn_Out_Scroll
-619 // Unripe_Apple
-620 // Orange_Juice
-621 // Bitter_Herb
-622 // Rainbow_Carrot
-623 // Earthworm_The_Dude
-624 // Rotten_Fish
-625 // Lusty_Iron
-626 // Monster_Juice
-627 // Sweet_Milk
-628 // Well_Dried_Bone
-629 // Singing_Flower
-630 // Dew_Laden_Moss
-631 // Deadly_Noxious_Herb
-632 // Fatty_Chubby_Earthworm
-633 // Baked_Yam
-634 // Tropical_Banana
-635 // Horror_Of_Tribe
-636 // No_Recipient
-637 // Old_Broom
-638 // Silver_Knife_Of_Chaste
-639 // Armlet_Of_Obedience
-640 // Shining_Stone
-641 // Contracts_In_Shadow
-642 // Book_Of_Devil
-643 // Pet_Incubator
-644 // Gift_Box
-645 // Center_Potion
-656 // Awakening_Potion
-657 // Berserk_Potion
-658 // Union_Of_Tribe
-659 // Heart_Of_Her
-660 // Prohibition_Red_Candle
-661 // Sway_Apron
-662 // Inspector_Certificate
-663 // Korea_Rice_Cake
-664 // Gift_Box_1
-665 // Gift_Box_2
-666 // Gift_Box_3
-667 // Gift_Box_4
-668 // Handsei
-669 // Rice_Cake_Soup
-678 // Poison_Bottle
-679 // Gold_Pill
-681 // Memory_Of_Wedding
-682 // Realgar_Wine
-683 // Exorcize_Herb
-684 // Durian
-686 // Earth_Scroll_1_3
-687 // Earth_Scroll_1_5
-688 // Cold_Scroll_1_3
-689 // Cold_Scroll_1_5
-690 // Fire_Scroll_1_3
-691 // Fire_Scroll_1_5
-692 // Wind_Scroll_1_3
-693 // Wind_Scroll_1_5
-694 // Ghost_Scroll_1_3
-695 // Ghost_Scroll_1_5
-696 // Fire_Scroll_2_1
-697 // Fire_Scroll_2_5
-698 // Fire_Scroll_3_1
-699 // Fire_Scroll_3_5
-700 // Cold_Scroll_2_1
-12000 // Cold_Scroll_2_5
-12001 // Holy_Scroll_1_3
-12002 // Holy_Scroll_1_5
-12003 // Holy_Scroll_2_1
-12004 // Arrow_Container
-12005 // Iron_Arrow_Container
-12006 // Steel_Arrow_Container
-12007 // Ori_Arrow_Container
-12008 // Fire_Arrow_Container
-12009 // Silver_Arrow_Container
-12010 // Wind_Arrow_Container
-12011 // Stone_Arrow_Container
-12012 // Crystal_Arrow_Container
-12013 // Shadow_Arrow_Container
-12014 // Imma_Arrow_Container
-12015 // Rusty_Arrow_Container
-12016 // Speed_Up_Potion
-12017 // Slow_Down_Potion
-12018 // Fire_Cracker
-12020 // Water_Of_Darkness
-12027 // Giggling_Box
-12028 // Box_Of_Thunder
-12029 // Gloomy_Box
-12030 // Box_Of_Grudge
-12031 // Sleepy_Box
-12032 // Box_Of_Storm
-12033 // Box_Of_Sunlight
-12034 // Painting_Box
-12040 // Stone_Of_Intelligence_
-12041 // Str_Dish01
-12042 // Str_Dish02
-12043 // Str_Dish03
-12044 // Str_Dish04
-12045 // Str_Dish05
-12046 // Int_Dish01
-12047 // Int_Dish02
-12048 // Int_Dish03
-12049 // Int_Dish04
-12050 // Int_Dish05
-12051 // Vit_Dish01
-12052 // Vit_Dish02
-12053 // Vit_Dish03
-12054 // Vit_Dish04
-12055 // Vit_Dish05
-12056 // Agi_Dish01
-12057 // Agi_Dish02
-12058 // Agi_Dish03
-12059 // Agi_Dish04
-12060 // Agi_Dish05
-12061 // Dex_Dish01
-12062 // Dex_Dish02
-12063 // Dex_Dish03
-12064 // Dex_Dish04
-12065 // Dex_Dish05
-12066 // Luk_Dish01
-12067 // Luk_Dish02
-12068 // Luk_Dish03
-12069 // Luk_Dish04
-12070 // Luk_Dish05
-12071 // Str_Dish06
-12072 // Str_Dish07
-12073 // Str_Dish08
-12074 // Str_Dish09
-12075 // Str_Dish10
-12076 // Int_Dish06
-12077 // Int_Dish07
-12078 // Int_Dish08
-12079 // Int_Dish09
-12080 // Int_Dish10
-12081 // Vit_Dish06
-12082 // Vit_Dish07
-12083 // Vit_Dish08
-12084 // Vit_Dish09
-12085 // Vit_Dish10
-12086 // Agi_Dish06
-12087 // Agi_Dish07
-12088 // Agi_Dish08
-12089 // Agi_Dish09
-12090 // Agi_Dish10
-12091 // Dex_Dish06
-12092 // Dex_Dish07
-12093 // Dex_Dish08
-12094 // Dex_Dish09
-12095 // Dex_Dish10
-12096 // Luk_Dish06
-12097 // Luk_Dish07
-12098 // Luk_Dish08
-12099 // Luk_Dish09
-12100 // Luk_Dish10
-12101 // Citron
-12102 // Meat_Skewer
-12103 // Bloody_Dead_Branch
-12104 // Random_Quiver
-12105 // Set_Of_Taiming_Item
-12106 // Accessory_Box
-12107 // Wrapped_Mask
-12108 // Bundle_Of_Magic_Scroll
-12109 // Poring_Box
-12110 // First_Aid_Kit
-12111 // Food_Package
-12112 // Tropical_Sograt
-12113 // Vermilion_The_Beach
-12114 // Elemental_Fire
-12115 // Elemental_Water
-12116 // Elemental_Earth
-12117 // Elemental_Wind
-12118 // Resist_Fire
-12119 // Resist_Water
-12120 // Resist_Earth
-12121 // Resist_Wind
-12122 // Sesame_Pastry
-12123 // Honey_Pastry
-12124 // Rainbow_Cake
-12125 // Outdoor_Cooking_Kits
-12126 // Indoor_Cooking_Kits
-12127 // High_end_Cooking_Kits
-12128 // Imperial_Cooking_Kits
-12129 // Fantastic_Cooking_Kits
-12130 // Cookie_Bag
-12132 // Red_Bag
-12144 // Sphere_Case_Wind
-12145 // Sphere_Case_Darkness
-12146 // Sphere_Case_Poison
-12147 // Sphere_Case_Water
-12148 // Sphere_Case_Fire
-12149 // Bullet_Case
-12150 // Bullet_Case_Blood
-12151 // Bullet_Case_Silver
-12183 // Holy_Arrow_Quiver
-12184 // Mercenary_Red_Potion
-12185 // Mercenary_Blue_Potion
-12194 // Hometown_Gift
-12195 // Plain_Rice_Cake
-12196 // Hearty_Rice_Cake
-12197 // Salty_Rice_Cake
-12198 // Lucky_Rice_Cake
-12241 // M_Center_Potion
-12242 // M_Awakening_Potion
-12243 // M_Berserk_Potion
-12246 // Magic_Card_Album
-12260 // Cool_Summer_Outfit
-12290 // Mysterious_Can
-12291 // Mysterious_PET_Bottle
-12292 // Unripe_Fruit
-12293 // Dried_Yggdrasilberry
-12341 // Special_Alloy_Trap_Box
-12346 // Unripe_Acorn
-12347 // Acorn_Jelly
-12353 // Tiny_Waterbottle
-12358 // Fan_Of_Wind
-12359 // Very_Soft_Plant
-12360 // Very_Red_Juice
-12362 // Kuloren
-12364 // Staff_Of_Leader
-12365 // Charming_Lotus
-12366 // Gril_Doll
-12367 // Luxury_Whisky_Bottle
-12368 // Splendid_Mirror
-12369 // Oilpalm_Coconut
-12371 // Magical_Lithography
-12372 // Hell_Contract
-12373 // Boy's_Naivety
-12374 // Flaming_Ice
-12376 // Mysterious_Can2
-12377 // Mysterious_PET_Bottle2
-12379 // Pope's_Cookie
-12383 // Vulcan_Bullet_Magazine
-12392 // Repair_A
-12393 // Repair_B
-12394 // Repair_C
-12395 // Tantanmen
-12414 // Guarana_Candy
-12717 // Poison_Paralysis
-12718 // Poison_Leech
-12719 // Poison_Oblivion
-12720 // Poison_Disheart
-12721 // Poison_Numb
-12722 // Poison_Fever
-12723 // Poison_Laughing
-12724 // Poison_Fatigue
-12734 // Runstone_Quality
-12735 // Runstone_Ancient
-12736 // Runstone_Mystic
-12737 // Runstone_Ordinary
-12738 // Runstone_Rare
-506 // Green_Potion
-507 // Red_Herb
-508 // Yellow_Herb
-509 // White_Herb
-510 // Blue_Herb
-511 // Green_Herb
-512 // Apple
-513 // Banana
-514 // Grape
-515 // Carrot
-516 // Sweet_Potato
-517 // Meat
-518 // Honey
-519 // Milk
-520 // Leaflet_Of_Hinal
-521 // Leaflet_Of_Aloe
-522 // Fruit_Of_Mastela
-523 // Holy_Water
-525 // Panacea
-526 // Royal_Jelly
-528 // Monster's_Feed
-529 // Candy
-530 // Candy_Striper
-531 // Apple_Juice
-532 // Banana_Juice
-533 // Grape_Juice
-534 // Carrot_Juice
-535 // Pumpkin
-536 // Ice_Cream
-537 // Pet_Food
-538 // Well_Baked_Cookie
-539 // Piece_Of_Cake
-544 // Fish_Slice
-548 // Cheese
-549 // Nice_Sweet_Potato
-550 // Popped_Rice
-551 // Shusi
-553 // Bun
-564 // Rice_Ball
-566 // Tomyumkung
-567 // Prawn
-568 // Lemon
-569 // Novice_Potion
-570 // Lucky_Candy
-571 // Lucky_Candy_Cane
-572 // Lucky_Cookie
-574 // Egg
-576 // Prickly_Fruit
-577 // Grain
-578 // Strawberry
-579 // Delicious_Fish
-580 // Bread
-581 // Mushroom
-582 // Orange
-584 // Fish_Ball_Soup
-587 // Prickly_Fruit_
-591 // Caviar_Pancake
-592 // Jam_Pancake
-593 // Honey_Pancake
-594 // Sour_Cream_Pancake
-595 // Mushroom_Pancake
-11513 // Protect_Neck_Candy
-11515 // Coconut
-11516 // Asai_Fruit
-11517 // Puri_Potion
-701 // Ora_Ora
-702 // Animal_Blood
-703 // Hinalle
-704 // Aloe
-705 // Clover
-706 // Four_Leaf_Clover
-707 // Singing_Plant
-708 // Ment
-709 // Izidor
-710 // Illusion_Flower
-711 // Shoot
-712 // Flower
-713 // Empty_Bottle
-715 // Yellow_Gemstone
-716 // Red_Gemstone
-717 // Blue_Gemstone
-718 // Dark_Red_Jewel
-719 // Violet_Jewel
-720 // Skyblue_Jewel
-721 // Azure_Jewel
-722 // Scarlet_Jewel
-723 // Cardinal_Jewel
-724 // Cardinal_Jewel_
-725 // Red_Jewel
-726 // Blue_Jewel
-727 // White_Jewel
-728 // Golden_Jewel
-729 // Bluish_Green_Jewel
-730 // Crystal_Jewel
-731 // Crystal_Jewel_
-732 // Crystal_Jewel__
-733 // Crystal_Jewel___
-734 // Red_Frame
-735 // Blue_Porcelain
-736 // White_Platter
-737 // Black_Ladle
-738 // Pencil_Case
-739 // Rouge
-740 // Stuffed_Doll
-741 // Poring_Doll
-742 // Chonchon_Doll
-743 // Spore_Doll
-744 // Bunch_Of_Flowers
-745 // Wedding_Bouquet
-746 // Glass_Bead
-747 // Crystal_Mirror
-748 // Witherless_Rose
-749 // Frozen_Rose
-750 // Baphomet_Doll
-751 // Osiris_Doll
-752 // Grasshopper_Doll
-753 // Monkey_Doll
-754 // Raccoondog_Doll
-756 // Oridecon_Stone
-757 // Elunium_Stone
-901 // Danggie
-902 // Tree_Root
-903 // Reptile_Tongue
-904 // Scorpion's_Tail
-905 // Stem
-906 // Pointed_Scale
-907 // Resin
-908 // Spawn
-909 // Jellopy
-910 // Garlet
-911 // Scell
-912 // Zargon
-913 // Tooth_Of_Bat
-914 // Fluff
-915 // Chrysalis
-916 // Feather_Of_Birds
-917 // Talon
-918 // Sticky_Webfoot
-919 // Animal's_Skin
-920 // Claw_Of_Wolves
-921 // Mushroom_Spore
-922 // Orcish_Cuspid
-923 // Evil_Horn
-924 // Powder_Of_Butterfly
-925 // Bill_Of_Birds
-926 // Scale_Of_Snakes
-928 // Insect_Feeler
-929 // Immortal_Heart
-930 // Rotten_Bandage
-931 // Orcish_Voucher
-932 // Skel_Bone
-934 // Mementos
-935 // Shell
-936 // Scales_Shell
-937 // Posionous_Canine
-938 // Sticky_Mucus
-939 // Bee_Sting
-940 // Grasshopper's_Leg
-941 // Nose_Ring
-942 // Yoyo_Tail
-943 // Solid_Shell
-944 // Horseshoe
-945 // Raccoon_Leaf
-946 // Snail's_Shell
-947 // Horn
-948 // Bear's_Foot
-949 // Feather
-950 // Heart_Of_Mermaid
-951 // Fin
-952 // Cactus_Needle
-953 // Stone_Heart
-954 // Shining_Scales
-955 // Worm_Peelings
-956 // Gill
-957 // Decayed_Nail
-958 // Horrendous_Mouth
-959 // Rotten_Scale
-960 // Nipper
-961 // Conch
-962 // Tentacle
-963 // Sharp_Scale
-964 // Crap_Shell
-965 // Clam_Shell
-966 // Flesh_Of_Clam
-967 // Turtle_Shell
-968 // Voucher_Of_Orcish_Hero
-969 // Gold
-970 // Alchol
-971 // Detrimindexta
-972 // Karvodailnirol
-973 // Counteragent
-974 // Mixture
-975 // Scarlet_Dyestuffs
-976 // Lemon_Dyestuffs
-978 // Cobaltblue_Dyestuffs
-979 // Darkgreen_Dyestuffs
-980 // Orange_Dyestuffs
-981 // Violet_Dyestuffs
-982 // White_Dyestuffs
-983 // Black_Dyestuffs
-984 // Oridecon
-985 // Elunium
-986 // Anvil
-987 // Oridecon_Anvil
-988 // Golden_Anvil
-989 // Emperium_Anvil
-990 // Boody_Red
-991 // Crystal_Blue
-992 // Wind_Of_Verdure
-993 // Yellow_Live
-994 // Flame_Heart
-995 // Mistic_Frozen
-996 // Rough_Wind
-997 // Great_Nature
-998 // Iron
-999 // Steel
-1000 // Star_Crumb
-1001 // Sparkling_Dust
-1002 // Iron_Ore
-1003 // Coal
-1004 // Patriotism_Marks
-1005 // Hammer_Of_Blacksmith
-1006 // Old_Magic_Book
-1007 // Penetration
-1008 // Frozen_Heart
-1009 // Sacred_Marks
-1010 // Phracon
-1011 // Emveretarcon
-1012 // Lizard_Scruff
-1013 // Colorful_Shell
-1014 // Jaws_Of_Ant
-1015 // Thin_N'_Long_Tongue
-1016 // Rat_Tail
-1017 // Moustache_Of_Mole
-1018 // Nail_Of_Mole
-1019 // Wooden_Block
-1020 // Long_Hair
-1021 // Dokkaebi_Horn
-1022 // Fox_Tail
-1023 // Fish_Tail
-1024 // Chinese_Ink
-1025 // Spiderweb
-1026 // Acorn
-1027 // Porcupine_Spike
-1028 // Wild_Boar's_Mane
-1029 // Tiger's_Skin
-1030 // Tiger_Footskin
-1031 // Limb_Of_Mantis
-1032 // Blossom_Of_Maneater
-1033 // Root_Of_Maneater
-1034 // Cobold_Hair
-1035 // Dragon_Canine
-1036 // Dragon_Scale
-1037 // Dragon_Train
-1038 // Petite_DiablOfs_Horn
-1039 // Petite_DiablOfs_Wing
-1040 // Elder_Pixie's_Beard
-1041 // Lantern
-1042 // Short_Leg
-1043 // Nail_Of_Orc
-1044 // Tooth_Of_
-1045 // Sacred_Masque
-1046 // Tweezer
-1047 // Head_Of_Medusa
-1048 // Slender_Snake
-1049 // Skirt_Of_Virgin
-1050 // Tendon
-1051 // Detonator
-1052 // Single_Cell
-1053 // Tooth_Of_Ancient_Fish
-1054 // Lip_Of_Ancient_Fish
-1055 // Earthworm_Peeling
-1056 // Grit
-1057 // Moth_Dust
-1058 // Wing_Of_Moth
-1059 // Transparent_Cloth
-1060 // Golden_Hair
-1061 // Starsand_Of_Witch
-1062 // Pumpkin_Head
-1063 // Sharpened_Cuspid
-1064 // Reins
-1065 // Booby_Trap
-1066 // Tree_Of_Archer_1
-1067 // Tree_Of_Archer_2
-1068 // Tree_Of_Archer_3
-1088 // Morocc_Potion
-1089 // Payon_Potion
-1092 // Empty_Cylinder
-1093 // Empty_Potion
-1094 // Short_Daenggie
-1095 // Needle_Of_Alarm
-1096 // Round_Shell
-1097 // Worn_Out_Page
-1098 // Manacles
-1099 // Worn_Out_Prison_Uniform
-6001 // Essence_Of_Fire
-6002 // Token_Of_Apostle
-6003 // Soul_Pendant
-6004 // Bapho_Doll
-6008 // Wood
-6010 // Pickaxe
-6020 // Fur
-6021 // Peaked_Hat
-6022 // Hard_Skin
-6023 // Mystic_Horn
-6032 // Horn_Of_Hilsrion
-6033 // Horn_Of_Tendrilion
-6073 // Dragon's_Mane
-6075 // Crystalized_Teardrop
-6086 // Withered_Flower
-6087 // Crystal_Of_Soul_01
-6088 // Crystal_Of_Soul_02
-6089 // Piece_Of_Darkness
-6090 // Purified_Bradium
-6091 // Dark_Red_Scale
-6095 // Flavored_Alcohol
-6096 // Fish_With_Blue_Back
-6097 // Pumpkin_Pie_
-6098 // Small_Snow_Flower
-6099 // Grilled_Rice_Cake
-6100 // Damp_Darkness
-6104 // Big_Cell
-6105 // Morning_Dew
-6106 // Well_Ripened_Berry
-6107 // Sunset_On_The_Rock
-6108 // Apple_Pudding
-6109 // Plant_Neutrient
-6110 // Vital_Flower
-6111 // Mystic_Stone
-6112 // Fresh_Plant
-6113 // Vital_Flower_
-6114 // Flame_Gemstone
-6115 // Bun_
-6120 // Face_Paint
-6123 // Surface_Paint
-6128 // Guillotine_Antidote
-6144 // Heartbroken_Tears
-6145 // Vulcan_Bullet
-6146 // Magic_Gear_Fuel
-6147 // Liquid_Condensed_Bullet
-6186 // Monkey_Wrench
-6189 // Magic_Book_FB
-6190 // Magic_Book_CB
-6191 // Magic_Book_LB
-6192 // Magic_Book_SG
-6193 // Magic_Book_LOV
-6194 // Magic_Book_MS
-6195 // Magic_Book_CM
-6196 // Magic_Book_TV
-6197 // Magic_Book_TS
-6198 // Magic_Book_JT
-6199 // Magic_Book_WB
-6200 // Magic_Book_HD
-6201 // Magic_Book_ES
-6202 // Magic_Book_ES_
-6203 // Magic_Book_CL
-6204 // Magic_Book_CR
-6205 // Magic_Book_DL
-6210 // Seed_Of_Horny_Plant
-6211 // Bloodsuck_Plant_Seed
-6212 // Bomb_Mushroom_Spore
-6213 // Explosive_Powder
-6214 // Smoke_Powder
-6215 // Tear_Gas
-6216 // Oil_Bottle
-6217 // Mandragora_Flowerpot
-6223 // Carnium
-6224 // Bradium
-6244 // Gun_Powder
-6245 // Black_Powder
-6246 // Yellow_Powder
-6247 // White_Powder
-6248 // Melange_Pot
-6249 // Savage_Meat
-6250 // Cooking_Skewer
-6251 // Black_Charcoal
-6252 // Wolf_Blood
-6253 // Cold_Ice
-6254 // Beef_Head_Meat
-6255 // Large_Cookpot
-6256 // Ice_Fragment
-6257 // Ice_Crystal
-6258 // Comodo_Tropic_Fruit
-6259 // Drocera_Tentacle
-6260 // Petti_Tail
-6261 // Fine_Noodle
-6262 // Cool_Gravy
-6263 // Coconut_Fruit
-6264 // Melon
-6265 // Pineapple
-6279 // Apple_Bomb_CB
-6280 // Pinepple_Bomb_CB
-6281 // Coconut_Bomb_CB
-6282 // Melon_Bomb_CB
-6283 // Banana_Bomb_CB
-6284 // Plant_Genetic_Grow
-6285 // Quality_Potion_Book
-6297 // Bottle_To_Throw
-6321 // Rakehorn_Helm
-6322 // Antler_Helm
-6323 // Twinhorn_Helm
-6324 // Singlehorn_Helm
-6325 // White_Spider_Limb
-6326 // Queen_Wing_Piece
-6360 // Scarlet_Pts
-6361 // Indigo_Pts
-6362 // Yellow_Wish_Pts
-6363 // Lime_Green_Pts
-7001 // Mould_Powder
-7002 // Ogre_Tooth
-7003 // Anolian_Skin
-7004 // Mud_Lump
-7005 // Skull
-7006 // Wing_Of_Red_Bat
-7007 // Claw_Of_Rat
-7008 // Stiff_Horn
-7009 // Glitter_Shell
-7010 // Tail_Of_Steel_Scorpion
-7011 // Claw_Of_Monkey
-7012 // Tough_Scalelike_Stem
-7013 // Coral_Reef
-7014 // Old_Portrait
-7015 // Bookclip_In_Memory
-7016 // Spoon_Stub
-7017 // Executioner's_Mitten
-7018 // Young_Twig
-7019 // Loki's_Whispers
-7020 // Mother's_Nightmare
-7021 // Foolishness_Of_Blind
-7022 // Old_Hilt
-7023 // Blade_Lost_In_Darkness
-7024 // Bloody_Edge
-7026 // Key_Of_Clock_Tower
-7027 // Underground_Key
-7030 // Claw_Of_Desert_Wolf
-7031 // Old_Frying_Pan
-7032 // Piece_Of_Egg_Shell
-7033 // Poison_Spore
-7034 // Red_Socks_With_Holes
-7035 // Matchstick
-7036 // Fang_Of_Garm
-7038 // Yarn
-7041 // Fine_Grit
-7043 // Fine_Sand
-7047 // Alice's_Apron
-7048 // Talon_Of_Griffin
-7049 // Stone
-7053 // Cyfar
-7054 // Brigan
-7055 // Animal_Pooopoo
-7056 // Payroll_Of_Kafra
-7057 // Gallar_Horn
-7058 // Gullraifnir
-7063 // Soft_Feather
-7064 // Dragon_Fly_Wing
-7065 // Sea_Otter_Leather
-7066 // Ice_Piece
-7067 // Stone_Piece
-7068 // Burn_Tree
-7069 // Broken_Armor_Piece
-7070 // Broken_Shell
-7071 // Tatters_Clothes
-7072 // Rust_Suriken
-7073 // Jewel_Of_Prayer
-7074 // Iron_Glove
-7075 // Iron_Maiden
-7076 // Mystery_Wheel
-7077 // Silver_Fancy
-7078 // Anger_Of_Valkurye
-7079 // Feather_Of_Angel
-7080 // Foot_Step_Of_Cat
-7081 // Beard_Of_Women
-7082 // Root_Of_Stone
-7083 // Soul_Of_Fish
-7084 // Saliva_Of_Bird
-7085 // Tendon_Of_Bear
-7086 // Symbol_Of_Sun
-7087 // Breath_Of_Soul
-7088 // Crystal_Of_Snow
-7089 // Indication_Of_Tempest
-7090 // Slilince_Wave
-7091 // Rough_Billows
-7092 // Air_Stream
-7093 // Wheel
-7094 // Mystery_Piece
-7095 // Broken_Steel_Piece
-7096 // Cold_Magma
-7097 // Burning_Heart
-7098 // Live_Coal
-7099 // Old_Magic_Circle
-7100 // Sharp_Leaf
-7101 // Peco_Wing_Feather
-7102 // Hideous_Dream
-7103 // Unknown_Liquid_Bottle
-7104 // Fake_Angel_Wing
-7105 // Fake_Angel_Loop
-7106 // Goat's_Horn
-7107 // Gaoat's_Skin
-7108 // Boroken_Shiled_Piece
-7109 // Shine_Spear_Blade
-7110 // Vroken_Sword
-7111 // Smooth_Paper
-7112 // Fright_Paper_Blade
-7113 // Broken_Pharaoh_Symbol
-7114 // Tutankhamen's_Mask
-7115 // Harpy's_Feather
-7116 // Harpy's_Claw
-7117 // Rent_Spell_Book
-7118 // Rent_Scroll
-7119 // Spawns
-7120 // Burning_Horse_Shoe
-7121 // Honey_Jar
-7122 // Hot_Hair
-7123 // Dragon's_Skin
-7124 // Sand_Lump
-7125 // Scropion's_Nipper
-7126 // Large_Jellopy
-7127 // Alcol_Create_Book
-7128 // FireBottle_Create_Book
-7129 // Acid_Create_Book
-7130 // Plant_Create_Book
-7131 // Mine_Create_Book
-7132 // Coating_Create_Book
-7133 // Slim_Potion_Create_Book
-7134 // Medicine_Bowl
-7140 // Seed_Of_Life
-7141 // Yggdrasilberry_Dew
-7143 // Life_Force_Pot
-7144 // Normal_Potion_Book
-7147 // Jasmin
-7149 // Yellow_Plate
-7150 // Bamboo_Cut
-7151 // Oil_Paper
-7152 // Glossy_Hair
-7153 // Old_Japaness_Clothes
-7154 // Poison_Powder
-7155 // Poison_Toad's_Skin
-7156 // Broken_Shuriken
-7157 // Black_Mask
-7158 // Broken_Wine_Vessel
-7159 // Tengu's_Nose
-7160 // Lord's_Passable_Ticket
-7161 // Black_Bear's_Skin
-7162 // Cloud_Piece
-7163 // Sharp_Feeler
-7164 // Hard_Peach
-7165 // Limpid_Celestial_Robe
-7166 // Soft_Silk_Cloth
-7167 // Mystery_Iron_Bit
-7168 // Great_Wing
-7169 // Taegeuk_Plate
-7170 // Tuxedo
-7171 // Leopard_Skin
-7172 // Leopard_Talon
-7174 // Packing_Ribbon
-7175 // Packing_Paper
-7182 // Cacao
-7186 // Thin_Stem
-7187 // Festival_Mask
-7188 // Browny_Root
-7189 // Heart_Of_Tree
-7190 // Solid_Peeling
-7191 // Lamplight
-7192 // Blade_Of_Pinwheel
-7193 // Germinating_Sprout
-7194 // Soft_Leaf
-7195 // Air_Rifle
-7196 // Shoulder_Protection
-7197 // Tough_Vines
-7198 // Great_Leaf
-7200 // Flexible_String
-7201 // Log
-7202 // Beetle_Nipper
-7203 // Solid_Twig
-7204 // Gunpowder
-7205 // Piece_Of_Black_Cloth
-7206 // Black_Kitty_Doll
-7207 // Old_Manteau
-7208 // Rusty_Cleaver
-7209 // Dullahan's_Helm
-7210 // Dullahan_Armor
-7211 // Rojerta_Piece
-7212 // Hanging_Doll
-7213 // Needle_Pouch
-7214 // Bat_Cage
-7215 // Broken_Needle
-7216 // Red_Scarf
-7217 // Spool
-7218 // Rotten_Rope
-7219 // Striped_Socks
-7220 // Ectoplasm
-7221 // Tangled_Chain
-7222 // Tree_Knot
-7223 // Distorted_Portrait
-7225 // Pumpkin_Bucket
-7226 // Pill
-7262 // Fan
-7263 // Cat_Eyed_Stone
-7264 // Dried_Sand
-7265 // Dragon_Horn
-7266 // Dragon_Fang
-7267 // Tiger_Skin_Panties
-7268 // Little_Blacky_Ghost
-7269 // Bib
-7270 // Milk_Bottle
-7277 // Munak_Doll
-7286 // Chilli
-7289 // Olivine
-7290 // Phlogopite
-7291 // Agate
-7292 // Muscovite
-7293 // Rose_Quartz
-7294 // Turquoise
-7295 // Citrine
-7296 // Pyroxene
-7297 // Biotite
-7298 // Leaf_Clothes
-7299 // Bamboo_Basket
-7300 // Gemstone
-7301 // Sword_Accessory
-7303 // Bag_Of_Rice
-7312 // Jubilee
-7315 // Dark_Crystal_Fragment
-7316 // Long_Limb
-7317 // Screw
-7318 // Old_Pick
-7319 // Old_Steel_Plate
-7320 // Air_Pollutant
-7321 // Fragment_Of_Crystal
-7322 // Poisonous_Gas
-7323 // Battered_Kettle
-7325 // Tube
-7326 // Fluorescent_Liquid
-7327 // Headlamp
-7340 // Will_Of_Darkness
-7345 // Armlet_Of_Prisoner
-7352 // Transparent_Plate01
-7353 // Transparent_Plate02
-7354 // Transparent_Plate03
-7355 // Transparent_Plate04
-7356 // Piece_Of_Crest1
-7357 // Piece_Of_Crest2
-7358 // Piece_Of_Crest3
-7359 // Piece_Of_Crest4
-7419 // Embryo_HandBook
-7433 // Scroll
-7434 // Elemental_Potion_Book
-7435 // Golden_Bracelet
-7436 // Piece_Of_Memory_Green
-7437 // Piece_Of_Memory_Purple
-7438 // Piece_Of_Memory_Blue
-7439 // Piece_Of_Memory_Red
-7440 // Red_Feather
-7441 // Blue_Feather
-7442 // Cursed_Seal
-7443 // Tri_Headed_Dragon_Head
-7444 // Treasure_Box
-7445 // Dragonball_Green
-7446 // Dragonball_Blue
-7447 // Dragonball_Red
-7448 // Dragonball_Yellow
-7449 // Bloody_Page
-7450 // Piece_Of_Bone_Armor
-7451 // Scale_Of_Red_Dragon
-7452 // Yellow_Spice
-7453 // Sweet_Sauce
-7454 // Plain_Sauce
-7455 // Hot_Sauce
-7456 // Red_Spice
-7457 // Cooking_Oil
-7472 // Cookbook01
-7473 // Cookbook02
-7474 // Cookbook03
-7475 // Cookbook04
-7476 // Cookbook05
-7477 // Cookbook06
-7478 // Cookbook07
-7479 // Cookbook08
-7480 // Cookbook09
-7481 // Cookbook10
-7482 // Pot
-7507 // Sturdy_Iron_Piece
-7510 // Valhalla_Flower
-7511 // Rune_Of_Darkness
-7512 // Burnt_Parts
-7513 // Pocket_Watch
-7521 // Flame_Stone
-7522 // Ice_Stone
-7523 // Wind_Stone
-7524 // Shadow_Orb
-7561 // Ice_Heart
-7562 // Ice_Scale
-7563 // Bloody_Rune
-7564 // Rotten_Meat
-7565 // Sticky_Poison
-7566 // Will_Of_Darkness_
-7567 // Suspicious_Hat
-7568 // White_Mask
-7574 // Ice_Particle
-7751 // Old_White_Cloth
-7752 // Clattering_Skull
-7753 // Broken_Farming_Utensil
-7754 // Broken_Crown
-7830 // Goddess_Tear
-7831 // Valkyrie_Token
-7832 // Brynhild_Armor_Piece
-7833 // Hero_Remains
-7834 // Andvari_Ring
-7835 // Dusk_Glow
-7836 // Dawn_Essence
-7837 // Cold_Moonlight
-7838 // Hazy_Starlight
-7931 // Poison_Kit
-7932 // Poison_Herb_Nerium
-7933 // Poison_Herb_Rantana
-7934 // Poison_Herb_Makulata
-7935 // Poison_Herb_Seratum
-7936 // Poison_Herb_Scopolia
-7937 // Poison_Herb_Amoena
-7938 // Light_Granule
-7939 // Elder_Branch
-7940 // Special_Alloy_Trap
-11000 // Prontera_Book_01
-11001 // Adventure_Story01
-11002 // Great_Chef_Orleans01
-11003 // Legend_Of_Kafra01
-11004 // Mercenary_Rebellion
-11005 // Tyrant_Schmidt
-11006 // Blood_Flower01
-11007 // Blood_Flower02
-11008 // Barmund
-11009 // Adventure_Story02
-11020 // Japan_Book1
-11021 // Japan_Book2
-11022 // Mix_Cook_Book
-11023 // Increase_Stamina_Study
-11024 // Vital_Drink_CB
-//--- 2010 / 03 / 12
diff --git a/db/pre-re/item_combo_db.txt b/db/pre-re/item_combo_db.txt
index 665f8bfa2c..eef0e8cc9f 100644
--- a/db/pre-re/item_combo_db.txt
+++ b/db/pre-re/item_combo_db.txt
@@ -66,18 +66,18 @@
2357:2421:2524:5171,{ bonus bAllStats,1; }
2358:5153,{ bonus bLuk,6; bonus bFlee,5; bonus bInt,2; }
2359:2654,{ bonus bUseSPrate,-20; bonus bMaxHP,300; }
-2369:2428:2533:5306,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus bMaxHPrate,20; bonus2 bResEff,Eff_Freeze,10000; skill "WZ_FROSTNOVA",10; }
+2369:2428:2533:5306,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,20; bonus2 bResEff,Eff_Freeze,10000; skill "WZ_FROSTNOVA",10; }
2371:2522,{ bonus bAgi,5; bonus bFlee,10; }
2371:2523,{ bonus bAgi,5; bonus bFlee,10; }
2374:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }
2375:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }
-2376:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bVit,3; bonus bMaxHPRate,12; bonus bHealpower2,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus2 bHPRegenRate,600,1000; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
-2377:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor; }
-2378:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bAgi,3; bonus bMaxHPRate,12; bonus bCritical,5; bonus bAspdRate,5; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
-2379:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bResEff,Eff_Stun,2000; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
-2380:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bCastrate,"AL_HOLYLIGHT",-50; bonus bHealPower,6; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
-2381:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
-2382:2437:2540,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player,300; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
+2376:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bVit,3; bonus bMaxHPRate,12; bonus bHealpower2,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus2 bHPRegenRate,600,1000; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
+2377:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor; }
+2378:2435:2538,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bAgi,3; bonus bMaxHPRate,12; bonus bCritical,5; bonus bAspdRate,5; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
+2379:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bResEff,Eff_Stun,2000; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
+2380:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bCastrate,"AL_HOLYLIGHT",-50; bonus bHealPower,6; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
+2381:2436:2539,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
+2382:2437:2540,{ bonus2 bSubRace,RC_All,-300; bonus2 bSubRace,RC_DemiHuman,300; bonus2 bSubRace,RC_Player_Human,300; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
2387:2440:2744,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bCastrate,-3; bonus bDelayrate,-15; }
2390:2749,{ bonus bFlee2,5; }
2394:2444:2549,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bResEff,Eff_Freeze,10000; bonus2 bSkillHeal2,"AM_POTIONPITCHER",3; bonus2 bSkillHeal2,"AL_HEAL",3; bonus2 bSkillHeal2,"PR_SANCTUARY",3; }
@@ -137,7 +137,7 @@
4153:4247:4273,{ bonus3 bAddMonsterDropItem,544,RC_Fish,3000; bonus2 bAddEle,Ele_Water,30; }
4168:4169,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bCastrate,-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; }
-4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; } }
+4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; bonus2 bComaRace,RC_Player_Doram,100; } }
4178:4234:4252:4297:4381,{ bonus bDex,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",5; bonus2 bSkillAtk,"DC_THROWARROW",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; if(BaseJob==Job_Bard||BaseJob==Job_Dancer) bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",2,50; }
4185:4217:4280:4293:4312,{ bonus bVit,10; bonus bCastrate,-10; bonus bUseSPRate,-10; if(BaseClass==Job_Acolyte) { bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,30; bonus2 bSubRace,RC_Demon,30; } }
4185:4293:4312:4332,{ bonus bStr,3; bonus bMaxSP,80; bonus bBaseAtk,25; bonus3 bAutoSpell,"AL_CRUCIS",5,10; bonus2 bSkillAtk,"MO_EXTREMITYFIST",10; if(BaseJob==Job_Monk) { bonus bUseSPrate,-10; bonus bNoCastCancel; } }
@@ -152,7 +152,7 @@
4268:4277,{ bonus bBaseAtk,20; bonus bLuk,3; }
4311:4319:4331:4371,{ bonus bInt,1; bonus bStr,1; bonus bDef,2; bonus bSPrecovRate,10; bonus2 bSkillAtk,"PA_SHIELDCHAIN",10; bonus2 bSkillAtk,"PA_SACRIFICE",10; bonus bCastrate,-10; if(BaseJob==Job_Crusader) bonus bDefEle,Ele_Holy; }
4323:4324,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,250; }
-4435:4436,{ bonus2 bSPGainRace,RC_DemiHuman,2; bonus2 bSPGainRace,RC_Player,2; }
+4435:4436,{ bonus2 bSPGainRace,RC_DemiHuman,2; bonus2 bSPGainRace,RC_Player_Human,2; }
5040:5442,{ bonus bAspdRate,3; bonus bCastrate,3; }
5068:5653,{ bonus bStr,1; bonus bAtkRate,5; }
5074:5653,{ bonus bStr,1; bonus bAspdRate,2; }
diff --git a/db/pre-re/item_db.txt b/db/pre-re/item_db.txt
deleted file mode 100644
index 79001500a8..0000000000
--- a/db/pre-re/item_db.txt
+++ /dev/null
@@ -1,6593 +0,0 @@
-// Items Database
-//
-// Structure of Database:
-// ID,AegisName,Name,Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }
-//
-// Healing Items
-//=============================================================
-501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-502,Orange_Potion,Orange Potion,0,200,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-503,Yellow_Potion,Yellow Potion,0,550,,130,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-504,White_Potion,White Potion,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-505,Blue_Potion,Blue Potion,0,5000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
-506,Green_Potion,Green Potion,0,40,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; },{},{}
-507,Red_Herb,Red Herb,0,18,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(18,28),0; },{},{}
-508,Yellow_Herb,Yellow Herb,0,40,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(38,58),0; },{},{}
-509,White_Herb,White Herb,0,120,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(75,115),0; },{},{}
-510,Blue_Herb,Blue Herb,0,60,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(15,30); },{},{}
-511,Green_Herb,Green Herb,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; },{},{}
-512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(16,22),0; },{},{}
-513,Banana,Banana,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(17,21),0; },{},{}
-514,Grape,Grape,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,15); },{},{}
-515,Carrot,Carrot,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(18,20),0; },{},{}
-516,Sweet_Potato,Potato,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(15,23),0; },{},{}
-517,Meat,Meat,0,50,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),0; },{},{}
-518,Honey,Honey,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),rand(20,40); },{},{}
-519,Milk,Milk,0,25,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(27,37),0; },{},{}
-520,Leaflet_Of_Hinal,Hinalle Leaflet,0,150,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-521,Leaflet_Of_Aloe,Aloe Leaflet,0,360,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-522,Fruit_Of_Mastela,Mastela Fruit,0,8500,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,600),0; },{},{}
-523,Holy_Water,Holy Water,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Curse; },{},{}
-525,Panacea,Panacea,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{}
-526,Royal_Jelly,Royal Jelly,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-528,Monster's_Feed,Monster's Feed,0,60,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(72,108),0; },{},{}
-529,Candy,Candy,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-530,Candy_Striper,Candy Cane,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-531,Apple_Juice,Apple Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,35),0; },{},{}
-532,Banana_Juice,Banana Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(26,34),0; },{},{}
-533,Grape_Juice,Grape Juice,0,250,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(15,25); },{},{}
-534,Carrot_Juice,Carrot Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(27,33),0; },{},{}
-535,Pumpkin,Pumpkin,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 19,0; },{},{}
-536,Ice_Cream,Ice Cream,0,150,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0; },{},{}
-537,Pet_Food,Pet Food,0,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-538,Well_Baked_Cookie,Well-baked Cookie,0,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(160,200),0; },{},{}
-539,Piece_Of_Cake,Piece of Cake,0,3000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),0; },{},{}
-540,Falcon's_Feed,Falcon Food,0,2000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(185,225),0; },{},{}
-541,Pecopeco's_Feed,PecoPeco Food,0,3000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-//542,Festive_Cookie,Festival Cookie,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-//543,Festive_Rainbow_Cake,Festival Rainbow Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-544,Fish_Slice,Raw Fish,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,60),0; },{},{}
-545,Red_Slim_Potion,Condensed Red Potion,0,150,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-546,Yellow_Slim_Potion,Condensed Yellow Potion,0,600,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-547,White_Slim_Potion,Condensed White Potion,0,1650,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-548,Cheese,Cheese,0,2800,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,15); },{},{}
-549,Nice_Sweet_Potato,Yam,0,180,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0; },{},{}
-550,Popped_Rice,Rice Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,15),0; },{},{}
-551,Shusi,Sushi,0,1,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,60),0; },{},{}
-552,KETUPAT,Ketupat,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,90),rand(20,30); },{},{}
-553,Bun,Bao,0,1,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(35,70),0; },{},{}
-554,Mojji,Mochi,0,400,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0; },{},{}
-555,Rice_Cake,Traditional Rice Cake,0,100,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-556,Long_Rice_Cake,Rice Cake Stick,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(20,25),0; },{},{}
-557,Hash_Rice_Cake,Neatly Sliced Rice Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,30),0; },{},{}
-558,Chocolate,Chocolate,0,1,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 1,1; },{},{}
-559,HandMade_Chocolate,Hand-made Chocolate,0,1,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{}
-560,HandMade_Chocolate_,Handmade White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{}
-561,White_Chocolate,White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{}
-562,Pizza,Doublecrust Swiss Fondue,0,100,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),0; },{},{}
-563,Pizza_01,Doublecrust Swiss Fondue,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(375,445),0; },{},{}
-564,Rice_Ball,Rice Ball,0,1,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 200,0; },{},{}
-565,Vita500_Bottle,Vita500,0,580,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(142,274),0; },{},{}
-566,Tomyumkung,Tom Yum Goong,0,10000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-567,Prawn,Shrimp,0,500,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(117,192),0; },{},{}
-568,Lemon,Lemon,0,60,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,20); },{},{}
-569,Novice_Potion,Novice Potion,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(22,33),0; },{},{}
-570,Lucky_Candy,Lucky Candy,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-571,Lucky_Candy_Cane,Lucky Candy Cane,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-572,Lucky_Cookie,Lucky Cookie,0,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(160,200),0; },{},{}
-573,Chocolate_Drink,Chocolate Drink,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-574,Egg,Egg,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(33,42),0; },{},{}
-575,Piece_Of_Cake_,2nd Anniversary Cake,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),0; },{},{}
-576,Prickly_Fruit,Prickly Fruit,0,540,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(150,300),rand(20,30); },{},{}
-577,Grain,Bag of Grain,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(60,70),0; },{},{}
-578,Strawberry,Strawberry,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(16,28); },{},{}
-579,Delicious_Fish,Fresh Fish,0,250,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(100,150),0; },{},{}
-580,Bread,Bread,0,150,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-581,Mushroom,Edible Mushroom,0,40,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(20,30),0; },{},{}
-582,Orange,Orange,0,300,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,20),rand(10,20); },{},{}
-583,KETUPAT_,Ketupat Sayur,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-584,Fish_Ball_Soup,Fish Cake Soup,0,100,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(40,70),0; },{},{}
-585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{}
-586,Mother's_Cake,Mother's Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-587,Prickly_Fruit_,Red Prickly Fruit,0,880,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),rand(20,30); },{},{}
-588,Spaghetti,Spaghetti,0,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(40,70),0; },{},{}
-589,Pizza_02,Pizza,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(375,445),0; },{},{}
-590,Brezel_,Pretzel,0,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-591,Caviar_Pancake,Caviar Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-592,Jam_Pancake,Jam Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-593,Honey_Pancake,Honey Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-594,Sour_Cream_Pancake,Sour-Cream Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-595,Mushroom_Pancake,Mushroom Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-596,Cute_Strawberry_Choco,Cute Strawberry-Choco,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(1,100); },{},{}
-597,Lovely_Choco_Tart,Lovely Choco-Tart,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,400),0; },{},{}
-598,Light_Red_Pot,Light Red Potion,0,50,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-599,Light_Orange_Pot,Light Orange Potion,0,200,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-// Usable Items
-//===================================================================
-601,Wing_Of_Fly,Fly Wing,11,60,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-602,Wing_Of_Butterfly,Butterfly Wing,11,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{}
-603,Old_Blue_Box,Old Blue Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_BlueBox),1; },{},{}
-604,Branch_Of_Dead_Tree,Dead Branch,2,50,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-1,1,""; },{},{}
-605,Anodyne,Anodyne,11,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "SM_ENDURE",1; },{},{}
-606,Aloebera,Aloevera,11,1500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "SM_SELFPROVOKE",1; },{},{}
-607,Yggdrasilberry,Yggdrasil Berry,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{}
-608,Seed_Of_Yggdrasil,Yggdrasil Seed,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; },{},{}
-609,Amulet,Amulet,2,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-610,Leaf_Of_Yggdrasil,Yggdrasil Leaf,11,4000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_RESURRECTION",1; },{},{}
-611,Spectacles,Magnifier,11,40,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{}
-612,Portable_Furnace,Mini Furnace,2,150,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 21; },{},{}
-613,Iron_Hammer,Iron Hammer,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 1; },{},{}
-614,Golden_Hammer,Golden Hammer,2,3000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 2; },{},{}
-615,Oridecon_Hammer,Oridecon Hammer,2,5000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 3; },{},{}
-616,Old_Card_Album,Old Card Album,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_CardAlbum),1; },{},{}
-617,Old_Violet_Box,Old Purple Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_VioletBox),1; },{},{}
-618,Worn_Out_Scroll,Worn Out Scroll,2,50,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-619,Unripe_Apple,Unripe Apple,2,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1002; },{},{}
-620,Orange_Juice,Orange Juice,2,1500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1113; },{},{}
-621,Bitter_Herb,Bitter Herb,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1031; },{},{}
-622,Rainbow_Carrot,Rainbow Carrot,2,2500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1063; },{},{}
-623,Earthworm_The_Dude,Earthworm the Dude,2,4000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1049; },{},{}
-624,Rotten_Fish,Rotten Fish,2,2500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1011; },{},{}
-625,Lusty_Iron,Rusty Iron,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1042; },{},{}
-626,Monster_Juice,Monster Juice,2,1500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1035; },{},{}
-627,Sweet_Milk,Sweet Milk,2,7000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1167; },{},{}
-628,Well_Dried_Bone,Well-Dried Bone,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1107; },{},{}
-629,Singing_Flower,Singing Flower,2,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1052; },{},{}
-630,Dew_Laden_Moss,Dew Laden Moss,2,10,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1014; },{},{}
-631,Deadly_Noxious_Herb,Deadly Noxious Herb,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1077; },{},{}
-632,Fatty_Chubby_Earthworm,Fatty Chubby Earthworm,2,5000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1019; },{},{}
-633,Baked_Yam,Sweet Potato,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1056; },{},{}
-634,Tropical_Banana,Tropical Banana,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1057; },{},{}
-635,Horror_Of_Tribe,Orc Trophy,2,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1023; },{},{}
-636,No_Recipient,No Recipient,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1026; },{},{}
-637,Old_Broom,Old Broom,2,350,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1110; },{},{}
-638,Silver_Knife_Of_Chaste,Silver Knife of Chastity,2,12000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1170; },{},{}
-639,Armlet_Of_Obedience,Armlet of Obedience,2,18000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1029; },{},{}
-640,Shining_Stone,Shining Stone,2,3000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1155; },{},{}
-641,Contracts_In_Shadow,Contract in Shadow,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1109; },{},{}
-642,Book_Of_Devil,Book of the Devil,2,1800,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1101; },{},{}
-643,Pet_Incubator,Pet Incubator,2,3000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ bpet; },{},{}
-644,Gift_Box,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox),1; },{},{}
-645,Center_Potion,Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; },{},{}
-656,Awakening_Potion,Awakening Potion,2,1500,,150,,,,,0xFFF7FEEF,7,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,0; },{},{}
-657,Berserk_Potion,Berserk Potion,2,3000,,200,,,,,0x41E646A6,7,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,0; },{},{}
-658,Union_Of_Tribe,Union of Tribe,2,2,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ guildgetexp rand(600000,1200000); },{},{}
-659,Heart_Of_Her,Her Heart,2,500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1188; },{},{}
-660,Prohibition_Red_Candle,Forbidden Red Candle,2,20000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1200; },{},{}
-661,Sway_Apron,Soft Apron,2,20000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1275; },{},{}
-662,Inspector_Certificate,Authoritative Badge,2,1450,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{}
-663,Korea_Rice_Cake,Korean Rice Cake,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,0; },{},{}
-664,Gift_Box_1,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_1),1; },{},{}
-665,Gift_Box_2,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_2),1; },{},{}
-666,Gift_Box_3,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_3),1; },{},{}
-667,Gift_Box_4,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_4),1; },{},{}
-668,Handsei,Red Envelope,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{}
-669,Rice_Cake_Soup,Tempting Rice-Cake Soup,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal -100,-100; },{},{}
-670,Gold_Coin_Moneybag,Bag of Gold Coins,3,100000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-671,Gold_Coin,Gold Coin,3,10000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-672,Copper_Coin_Moneybag,Bag of Bronze Coins,3,1000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-673,Copper_Coin,Bronze Coin,3,100,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-674,Mithril_Coin,Mithril Coin,3,5000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-675,Silver_Coin,Silver Coin,3,5000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-676,Silver_Coin_Moneybag,Bag of Silver Coins,3,50000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-677,White_Gold_Coin,Platinum Coin,3,2000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100; },{},{}
-679,Gold_Pill,Pilule,2,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{}
-680,Magical_Carnation,Magic Carnation,0,0,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{}
-681,Memory_Of_Wedding,Sweet Memory of Marriage,2,50000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(getpartnerid()) sc_start SC_WEDDING,600000,0; },{},{}
-682,Realgar_Wine,Distilled Fighting Spirit,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,30; },{},{}
-683,Exorcize_Herb,Herb of Incantation,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,60000,30; },{},{}
-684,Durian,Durian,2,15000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; },{},{}
-685,RAMADAN,Ramadan,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,50; },{},{}
-686,Earth_Scroll_1_3,Level 3 Earth Spike,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_EARTHSPIKE",3; },{},{}
-687,Earth_Scroll_1_5,Level 5 Earth Spike,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_EARTHSPIKE",5; },{},{}
-688,Cold_Scroll_1_3,Level 3 Cold Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_COLDBOLT",3; },{},{}
-689,Cold_Scroll_1_5,Level 5 Cold Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_COLDBOLT",5; },{},{}
-690,Fire_Scroll_1_3,Level 3 Fire Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBOLT",3; },{},{}
-691,Fire_Scroll_1_5,Level 5 Fire Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBOLT",5; },{},{}
-692,Wind_Scroll_1_3,Level 3 Lightening Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",3; },{},{}
-693,Wind_Scroll_1_5,Level 5 Lightening Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",5; },{},{}
-694,Ghost_Scroll_1_3,Level 3 Soul Strike,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_SOULSTRIKE",3; },{},{}
-695,Ghost_Scroll_1_5,Level 5 Soul Strike,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_SOULSTRIKE",5; },{},{}
-696,Fire_Scroll_2_1,Level 1 Fire Ball,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBALL",1; },{},{}
-697,Fire_Scroll_2_5,Level 5 Fire Ball,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBALL",5; },{},{}
-698,Fire_Scroll_3_1,Level 1 Fire Wall,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREWALL",1; },{},{}
-699,Fire_Scroll_3_5,Level 5 Fire Wall,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREWALL",5; },{},{}
-700,Cold_Scroll_2_1,Level 1 Frost Diver,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FROSTDIVER",1; },{},{}
-// Etc Items
-//===================================================================
-701,Ora_Ora,Ora Ora,3,55000,,200,,,,,,,,,,,,,{},{},{}
-702,Animal_Blood,Animal Gore,3,450,,100,,,,,,,,,,,,,{},{},{}
-703,Hinalle,Hinalle,3,500,,10,,,,,,,,,,,,,{},{},{}
-704,Aloe,Aloe,3,500,,10,,,,,,,,,,,,,{},{},{}
-705,Clover,Clover,3,10,,10,,,,,,,,,,,,,{},{},{}
-706,Four_Leaf_Clover,Four Leaf Clover,3,80000,,10,,,,,,,,,,,,,{},{},{}
-707,Singing_Plant,Singing Plant,3,500,,10,,,,,,,,,,,,,{},{},{}
-708,Ment,Ment,3,500,,10,,,,,,,,,,,,,{},{},{}
-709,Izidor,Izidor,3,500,,10,,,,,,,,,,,,,{},{},{}
-710,Illusion_Flower,Illusion Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-711,Shoot,Shoot,3,16,,10,,,,,,,,,,,,,{},{},{}
-712,Flower,Flower,3,2,,10,,,,,,,,,,,,,{},{},{}
-713,Empty_Bottle,Empty Bottle,3,6,,20,,,,,,,,,,,,,{},{},{}
-714,Emperium,Emperium,3,2,,1000,,,,,,,,,,,,,{},{},{}
-715,Yellow_Gemstone,Yellow Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-716,Red_Gemstone,Red Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-717,Blue_Gemstone,Blue Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-718,Dark_Red_Jewel,Garnet,3,6000,,100,,,,,,,,,,,,,{},{},{}
-719,Violet_Jewel,Amethyst,3,6000,,100,,,,,,,,,,,,,{},{},{}
-720,Skyblue_Jewel,Aquamarine,3,6000,,100,,,,,,,,,,,,,{},{},{}
-721,Azure_Jewel,Emerald,3,6000,,100,,,,,,,,,,,,,{},{},{}
-722,Scarlet_Jewel,Pearl,3,6000,,100,,,,,,,,,,,,,{},{},{}
-723,Cardinal_Jewel,Ruby,3,6000,,100,,,,,,,,,,,,,{},{},{}
-724,Cardinal_Jewel_,Cursed Ruby,3,600,,100,,,,,,,,,,,,,{},{},{}
-725,Red_Jewel,Sardonyx,3,6000,,100,,,,,,,,,,,,,{},{},{}
-726,Blue_Jewel,Sapphire,3,6000,,100,,,,,,,,,,,,,{},{},{}
-727,White_Jewel,Opal,3,6000,,100,,,,,,,,,,,,,{},{},{}
-728,Golden_Jewel,Topaz,3,6000,,100,,,,,,,,,,,,,{},{},{}
-729,Bluish_Green_Jewel,Zircon,3,6000,,100,,,,,,,,,,,,,{},{},{}
-730,Crystal_Jewel,1carat Diamond,3,10000,,100,,,,,,,,,,,,,{},{},{}
-731,Crystal_Jewel_,2carat Diamond,3,25000,,100,,,,,,,,,,,,,{},{},{}
-732,Crystal_Jewel__,3carat Diamond,3,55000,,100,,,,,,,,,,,,,{},{},{}
-733,Crystal_Jewel___,Cracked Diamond,3,10,,100,,,,,,,,,,,,,{},{},{}
-734,Red_Frame,Red Frame,3,3000,,200,,,,,,,,,,,,,{},{},{}
-735,Blue_Porcelain,Chung Jah,3,5000,,500,,,,,,,,,,,,,{},{},{}
-736,White_Platter,China,3,1000,,300,,,,,,,,,,,,,{},{},{}
-737,Black_Ladle,Black Ladle,3,400,,50,,,,,,,,,,,,,{},{},{}
-738,Pencil_Case,Pencil Case,3,400,,100,,,,,,,,,,,,,{},{},{}
-739,Rouge,Rouge,3,10000,,10,,,,,,,,,,,,,{},{},{}
-740,Stuffed_Doll,Puppet,3,1000,,100,,,,,,,,,,,,,{},{},{}
-741,Poring_Doll,Poring Doll,3,1800,,100,,,,,,,,,,,,,{},{},{}
-742,Chonchon_Doll,Chonchon Doll,3,3000,,100,,,,,,,,,,,,,{},{},{}
-743,Spore_Doll,Spore Doll,3,5500,,100,,,,,,,,,,,,,{},{},{}
-744,Bunch_Of_Flowers,Bouquet,3,2000,,50,,,,,,,,,,,,,{},{},{}
-745,Wedding_Bouquet,Wedding Bouquet,3,12000,,50,,,,,,,,,,,,,{},{},{}
-746,Glass_Bead,Glass Bead,3,1400,,50,,,,,,,,,,,,,{},{},{}
-747,Crystal_Mirror,Crystal Mirror,3,15000,,50,,,,,,,,,,,,,{},{},{}
-748,Witherless_Rose,Witherless Rose,3,55000,,10,,,,,,,,,,,,,{},{},{}
-749,Frozen_Rose,Frozen Rose,3,35000,,10,,,,,,,,,,,,,{},{},{}
-750,Baphomet_Doll,Baphomet Doll,3,18000,,100,,,,,,,,,,,,,{},{},{}
-751,Osiris_Doll,Osiris Doll,3,14000,,100,,,,,,,,,,,,,{},{},{}
-752,Grasshopper_Doll,Rocker Doll,3,4000,,100,,,,,,,,,,,,,{},{},{}
-753,Monkey_Doll,Yoyo Doll,3,6000,,100,,,,,,,,,,,,,{},{},{}
-754,Raccoondog_Doll,Raccoon Doll,3,5000,,100,,,,,,,,,,,,,{},{},{}
-756,Oridecon_Stone,Rough Oridecon,3,550,,200,,,,,,,,,,,,,{},{},{}
-757,Elunium_Stone,Rough Elunium,3,650,,200,,,,,,,,,,,,,{},{},{}
-901,Danggie,Daenggie,3,260,,10,,,,,,,,,,,,,{},{},{}
-902,Tree_Root,Tree Root,3,12,,10,,,,,,,,,,,,,{},{},{}
-903,Reptile_Tongue,Reptile Tongue,3,140,,10,,,,,,,,,,,,,{},{},{}
-904,Scorpion's_Tail,Scorpion Tail,3,124,,10,,,,,,,,,,,,,{},{},{}
-905,Stem,Stem,3,46,,10,,,,,,,,,,,,,{},{},{}
-906,Pointed_Scale,Pointed Scale,3,68,,10,,,,,,,,,,,,,{},{},{}
-907,Resin,Resin,3,120,,10,,,,,,,,,,,,,{},{},{}
-908,Spawn,Spawn,3,140,,10,,,,,,,,,,,,,{},{},{}
-909,Jellopy,Jellopy,3,6,,10,,,,,,,,,,,,,{},{},{}
-910,Garlet,Garlet,3,40,,10,,,,,,,,,,,,,{},{},{}
-911,Scell,Scell,3,160,,10,,,,,,,,,,,,,{},{},{}
-912,Zargon,Zargon,3,480,,10,,,,,,,,,,,,,{},{},{}
-913,Tooth_Of_Bat,Tooth of Bat,3,34,,10,,,,,,,,,,,,,{},{},{}
-914,Fluff,Fluff,3,8,,10,,,,,,,,,,,,,{},{},{}
-915,Chrysalis,Chrysalis,3,8,,10,,,,,,,,,,,,,{},{},{}
-916,Feather_Of_Birds,Feather of Birds,3,10,,10,,,,,,,,,,,,,{},{},{}
-917,Talon,Talon,3,20,,10,,,,,,,,,,,,,{},{},{}
-918,Sticky_Webfoot,Sticky Webfoot,3,20,,10,,,,,,,,,,,,,{},{},{}
-919,Animal's_Skin,Animal Skin,3,36,,10,,,,,,,,,,,,,{},{},{}
-920,Claw_Of_Wolves,Wolf Claw,3,58,,10,,,,,,,,,,,,,{},{},{}
-921,Mushroom_Spore,Mushroom Spore,3,36,,10,,,,,,,,,,,,,{},{},{}
-922,Orcish_Cuspid,Orc's Fang,3,220,,10,,,,,,,,,,,,,{},{},{}
-923,Evil_Horn,Evil Horn,3,1200,,10,,,,,,,,,,,,,{},{},{}
-924,Powder_Of_Butterfly,Powder of Butterfly,3,90,,10,,,,,,,,,,,,,{},{},{}
-925,Bill_Of_Birds,Bill of Birds,3,64,,10,,,,,,,,,,,,,{},{},{}
-926,Scale_Of_Snakes,Snake Scale,3,82,,10,,,,,,,,,,,,,{},{},{}
-928,Insect_Feeler,Insect Feeler,3,114,,10,,,,,,,,,,,,,{},{},{}
-929,Immortal_Heart,Immortal Heart,3,374,,10,,,,,,,,,,,,,{},{},{}
-930,Rotten_Bandage,Rotten Bandage,3,350,,10,,,,,,,,,,,,,{},{},{}
-931,Orcish_Voucher,Orcish Voucher,3,142,,10,,,,,,,,,,,,,{},{},{}
-932,Skel_Bone,Skel-Bone,3,232,,10,,,,,,,,,,,,,{},{},{}
-934,Mementos,Memento,3,600,,10,,,,,,,,,,,,,{},{},{}
-935,Shell,Shell,3,14,,10,,,,,,,,,,,,,{},{},{}
-936,Scales_Shell,Scale Shell,3,466,,10,,,,,,,,,,,,,{},{},{}
-937,Posionous_Canine,Venom Canine,3,148,,10,,,,,,,,,,,,,{},{},{}
-938,Sticky_Mucus,Sticky Mucus,3,70,,10,,,,,,,,,,,,,{},{},{}
-939,Bee_Sting,Bee Sting,3,32,,10,,,,,,,,,,,,,{},{},{}
-940,Grasshopper's_Leg,Grasshopper's Leg,3,36,,10,,,,,,,,,,,,,{},{},{}
-941,Nose_Ring,Nose Ring,3,568,,10,,,,,,,,,,,,,{},{},{}
-942,Yoyo_Tail,Yoyo Tail,3,114,,10,,,,,,,,,,,,,{},{},{}
-943,Solid_Shell,Solid Shell,3,448,,10,,,,,,,,,,,,,{},{},{}
-944,Horseshoe,Horseshoe,3,588,,10,,,,,,,,,,,,,{},{},{}
-945,Raccoon_Leaf,Raccoon Leaf,3,106,,10,,,,,,,,,,,,,{},{},{}
-946,Snail's_Shell,Snail's Shell,3,64,,10,,,,,,,,,,,,,{},{},{}
-947,Horn,Horn,3,116,,10,,,,,,,,,,,,,{},{},{}
-948,Bear's_Foot,Bear's Footskin,3,174,,10,,,,,,,,,,,,,{},{},{}
-949,Feather,Feather,3,20,,10,,,,,,,,,,,,,{},{},{}
-950,Heart_Of_Mermaid,Heart of Mermaid,3,264,,10,,,,,,,,,,,,,{},{},{}
-951,Fin,Fin,3,412,,10,,,,,,,,,,,,,{},{},{}
-952,Cactus_Needle,Cactus Needle,3,82,,10,,,,,,,,,,,,,{},{},{}
-953,Stone_Heart,Stone Heart,3,184,,10,,,,,,,,,,,,,{},{},{}
-954,Shining_Scales,Shining Scale,3,466,,10,,,,,,,,,,,,,{},{},{}
-955,Worm_Peelings,Worm Peeling,3,52,,10,,,,,,,,,,,,,{},{},{}
-956,Gill,Gill,3,342,,10,,,,,,,,,,,,,{},{},{}
-957,Decayed_Nail,Decayed Nail,3,82,,10,,,,,,,,,,,,,{},{},{}
-958,Horrendous_Mouth,Horrendous Mouth,3,390,,10,,,,,,,,,,,,,{},{},{}
-959,Rotten_Scale,Stinky Scale,3,168,,10,,,,,,,,,,,,,{},{},{}
-960,Nipper,Nipper,3,114,,10,,,,,,,,,,,,,{},{},{}
-961,Conch,Conch,3,158,,10,,,,,,,,,,,,,{},{},{}
-962,Tentacle,Tentacle,3,70,,10,,,,,,,,,,,,,{},{},{}
-963,Sharp_Scale,Sharp Scale,3,250,,10,,,,,,,,,,,,,{},{},{}
-964,Crap_Shell,Crab Shell,3,90,,10,,,,,,,,,,,,,{},{},{}
-965,Clam_Shell,Clam Shell,3,56,,10,,,,,,,,,,,,,{},{},{}
-966,Flesh_Of_Clam,Clam Flesh,3,158,,10,,,,,,,,,,,,,{},{},{}
-967,Turtle_Shell,Turtle Shell,3,680,,10,,,,,,,,,,,,,{},{},{}
-968,Voucher_Of_Orcish_Hero,Heroic Emblem,3,3000,,10,,,,,,,,,,,,,{},{},{}
-969,Gold,Gold,3,200000,,200,,,,,,,,,,,,,{},{},{}
-970,Alchol,Alcohol,3,400,,30,,,,,,,,,,,,,{},{},{}
-971,Detrimindexta,Detrimindexta,3,400,,30,,,,,,,,,,,,,{},{},{}
-972,Karvodailnirol,Karvodailnirol,3,400,,30,,,,,,,,,,,,,{},{},{}
-973,Counteragent,Counteragent,3,800,,70,,,,,,,,,,,,,{},{},{}
-974,Mixture,Mixture,3,800,,70,,,,,,,,,,,,,{},{},{}
-975,Scarlet_Dyestuffs,Scarlet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-976,Lemon_Dyestuffs,Lemon Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-978,Cobaltblue_Dyestuffs,Cobaltblue Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-979,Darkgreen_Dyestuffs,Darkgreen Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-980,Orange_Dyestuffs,Orange Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-981,Violet_Dyestuffs,Violet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-982,White_Dyestuffs,White Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-983,Black_Dyestuffs,Black Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-984,Oridecon,Oridecon,3,1100,,200,,,,,,,,,,,,,{},{},{}
-985,Elunium,Elunium,3,1100,,200,,,,,,,,,,,,,{},{},{}
-986,Anvil,Anvil,3,30000,,500,,,,,,,,,,,,,{},{},{}
-987,Oridecon_Anvil,Oridecon Anvil,3,120000,,700,,,,,,,,,,,,,{},{},{}
-988,Golden_Anvil,Golden Anvil,3,300000,,900,,,,,,,,,,,,,{},{},{}
-989,Emperium_Anvil,Emperium Anvil,3,600000,,1000,,,,,,,,,,,,,{},{},{}
-990,Boody_Red,Red Blood,3,1000,,50,,,,,,,,,,,,,{},{},{}
-991,Crystal_Blue,Crystal Blue,3,1000,,50,,,,,,,,,,,,,{},{},{}
-992,Wind_Of_Verdure,Wind of Verdure,3,1000,,50,,,,,,,,,,,,,{},{},{}
-993,Yellow_Live,Green Live,3,1000,,50,,,,,,,,,,,,,{},{},{}
-994,Flame_Heart,Flame Heart,3,3000,,300,,,,,,,,,,,,,{},{},{}
-995,Mistic_Frozen,Mystic Frozen,3,3000,,300,,,,,,,,,,,,,{},{},{}
-996,Rough_Wind,Rough Wind,3,3000,,300,,,,,,,,,,,,,{},{},{}
-997,Great_Nature,Great Nature,3,3000,,300,,,,,,,,,,,,,{},{},{}
-998,Iron,Iron,3,100,,50,,,,,,,,,,,,,{},{},{}
-999,Steel,Steel,3,1000,,100,,,,,,,,,,,,,{},{},{}
-1000,Star_Crumb,Star Crumb,3,4500,,100,,,,,,,,,,,,,{},{},{}
-1001,Sparkling_Dust,Star Dust,3,1500,,10,,,,,,,,,,,,,{},{},{}
-1002,Iron_Ore,Iron Ore,3,50,,150,,,,,,,,,,,,,{},{},{}
-1003,Coal,Coal,3,500,,50,,,,,,,,,,,,,{},{},{}
-1004,Patriotism_Marks,Chivalry Emblem,3,2,,100,,,,,,,,,,,,,{},{},{}
-1005,Hammer_Of_Blacksmith,Hammer of Blacksmith,3,2,,800,,,,,,,,,,,,,{},{},{}
-1006,Old_Magic_Book,Old Magicbook,3,2,,30,,,,,,,,,,,,,{},{},{}
-1007,Penetration,Necklace of Wisdom,3,2,,40,,,,,,,,,,,,,{},{},{}
-1008,Frozen_Heart,Necklace of Oblivion,3,2,,100,,,,,,,,,,,,,{},{},{}
-1009,Sacred_Marks,Hand of God,3,2,,20,,,,,,,,,,,,,{},{},{}
-1010,Phracon,Phracon,3,200,,200,,,,,,,,,,,,,{},{},{}
-1011,Emveretarcon,Emveretarcon,3,1000,,200,,,,,,,,,,,,,{},{},{}
-1012,Lizard_Scruff,Frill,3,250,,10,,,,,,,,,,,,,{},{},{}
-1013,Colorful_Shell,Rainbow Shell,3,90,,10,,,,,,,,,,,,,{},{},{}
-1014,Jaws_Of_Ant,Ant Jaw,3,232,,10,,,,,,,,,,,,,{},{},{}
-1015,Thin_N'_Long_Tongue,Tongue,3,528,,10,,,,,,,,,,,,,{},{},{}
-1016,Rat_Tail,Rat Tail,3,52,,10,,,,,,,,,,,,,{},{},{}
-1017,Moustache_Of_Mole,Mole Whiskers,3,106,,10,,,,,,,,,,,,,{},{},{}
-1018,Nail_Of_Mole,Mole Claw,3,210,,10,,,,,,,,,,,,,{},{},{}
-1019,Wooden_Block,Trunk,3,60,,10,,,,,,,,,,,,,{},{},{}
-1020,Long_Hair,Black Hair,3,292,,10,,,,,,,,,,,,,{},{},{}
-1021,Dokkaebi_Horn,Dokebi Horn,3,292,,10,,,,,,,,,,,,,{},{},{}
-1022,Fox_Tail,Nine Tails,3,650,,10,,,,,,,,,,,,,{},{},{}
-1023,Fish_Tail,Fish Tail,3,196,,10,,,,,,,,,,,,,{},{},{}
-1024,Chinese_Ink,Squid Ink,3,264,,10,,,,,,,,,,,,,{},{},{}
-1025,Spiderweb,Cobweb,3,184,,10,,,,,,,,,,,,,{},{},{}
-1026,Acorn,Acorn,3,98,,10,,,,,,,,,,,,,{},{},{}
-1027,Porcupine_Spike,Porcupine Quill,3,158,,10,,,,,,,,,,,,,{},{},{}
-1028,Wild_Boar's_Mane,Mane,3,196,,10,,,,,,,,,,,,,{},{},{}
-1029,Tiger's_Skin,Tiger Skin,3,548,,10,,,,,,,,,,,,,{},{},{}
-1030,Tiger_Footskin,Tiger's Footskin,3,1500,,10,,,,,,,,,,,,,{},{},{}
-1031,Limb_Of_Mantis,Mantis Scythe,3,196,,10,,,,,,,,,,,,,{},{},{}
-1032,Blossom_Of_Maneater,Maneater Blossom,3,196,,10,,,,,,,,,,,,,{},{},{}
-1033,Root_Of_Maneater,Maneater Root,3,208,,10,,,,,,,,,,,,,{},{},{}
-1034,Cobold_Hair,Blue Hair,3,342,,10,,,,,,,,,,,,,{},{},{}
-1035,Dragon_Canine,Dragon Canine,3,484,,10,,,,,,,,,,,,,{},{},{}
-1036,Dragon_Scale,Dragon Scale,3,500,,10,,,,,,,,,,,,,{},{},{}
-1037,Dragon_Train,Dragon Tail,3,1200,,10,,,,,,,,,,,,,{},{},{}
-1038,Petite_DiablOfs_Horn,Little Evil Horn,3,528,,10,,,,,,,,,,,,,{},{},{}
-1039,Petite_DiablOfs_Wing,Little Evil Wing,3,2000,,10,,,,,,,,,,,,,{},{},{}
-1040,Elder_Pixie's_Beard,Elder Pixie's Moustache,3,232,,10,,,,,,,,,,,,,{},{},{}
-1041,Lantern,Lantern,3,250,,10,,,,,,,,,,,,,{},{},{}
-1042,Short_Leg,Bug Leg,3,430,,10,,,,,,,,,,,,,{},{},{}
-1043,Nail_Of_Orc,Orc Claw,3,168,,10,,,,,,,,,,,,,{},{},{}
-1044,Tooth_Of_,Zenorc's Fang,3,264,,10,,,,,,,,,,,,,{},{},{}
-1045,Sacred_Masque,Cultish Masque,3,412,,10,,,,,,,,,,,,,{},{},{}
-1046,Tweezer,Scorpion Nipper,3,614,,10,,,,,,,,,,,,,{},{},{}
-1047,Head_Of_Medusa,Dead Medusa,3,548,,10,,,,,,,,,,,,,{},{},{}
-1048,Slender_Snake,Horrendous Hair,3,800,,10,,,,,,,,,,,,,{},{},{}
-1049,Skirt_Of_Virgin,Skirt of Virgin,3,1700,,10,,,,,,,,,,,,,{},{},{}
-1050,Tendon,Tendon,3,220,,10,,,,,,,,,,,,,{},{},{}
-1051,Detonator,Detonator,3,450,,10,,,,,,,,,,,,,{},{},{}
-1052,Single_Cell,Single Cell,3,46,,10,,,,,,,,,,,,,{},{},{}
-1053,Tooth_Of_Ancient_Fish,Ancient Tooth,3,548,,10,,,,,,,,,,,,,{},{},{}
-1054,Lip_Of_Ancient_Fish,Ancient Lips,3,1000,,10,,,,,,,,,,,,,{},{},{}
-1055,Earthworm_Peeling,Earthworm Peeling,3,196,,10,,,,,,,,,,,,,{},{},{}
-1056,Grit,Grit,3,306,,10,,,,,,,,,,,,,{},{},{}
-1057,Moth_Dust,Moth Dust,3,138,,10,,,,,,,,,,,,,{},{},{}
-1058,Wing_Of_Moth,Moth Wings,3,200,,10,,,,,,,,,,,,,{},{},{}
-1059,Transparent_Cloth,Fabric,3,306,,10,,,,,,,,,,,,,{},{},{}
-1060,Golden_Hair,Golden Hair,3,430,,10,,,,,,,,,,,,,{},{},{}
-1061,Starsand_Of_Witch,Witched Starsand,3,484,,10,,,,,,,,,,,,,{},{},{}
-1062,Pumpkin_Head,Jack o' Pumpkin,3,374,,10,,,,,,,,,,,,,{},{},{}
-1063,Sharpened_Cuspid,Fang,3,680,,10,,,,,,,,,,,,,{},{},{}
-1064,Reins,Reins,3,802,,10,,,,,,,,,,,,,{},{},{}
-1065,Booby_Trap,Trap,3,100,,10,,,,,,,,,,,,,{},{},{}
-1066,Tree_Of_Archer_1,Fine-grained Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1067,Tree_Of_Archer_2,Solid Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1068,Tree_Of_Archer_3,Barren Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1069,Mushroom_Of_Thief_1,Orange Net Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{}
-1070,Mushroom_Of_Thief_2,Orange Gooey Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{}
-1071,Mage_Test_1,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1072,Delivery_Message,Delivery Message,3,0,,10,,,,,,,,,,,,,{},{},{}
-1073,Merchant_Voucher_1,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1074,Merchant_Voucher_2,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1075,Merchant_Voucher_3,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1076,Merchant_Voucher_4,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1077,Merchant_Voucher_5,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1078,Merchant_Voucher_6,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1079,Merchant_Voucher_7,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1080,Merchant_Voucher_8,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1081,Merchant_Box_1,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-1082,Merchant_Box_2,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-1083,Merchant_Box_3,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-1084,Kapra's_Pass,Kafra Pass,3,0,,10,,,,,,,,,,,,,{},{},{}
-1085,Mage_Test_2,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1086,Mage_Test_3,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1087,Mage_Test_4,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1088,Morocc_Potion,Morocc Solution,3,0,,10,,,,,,,,,,,,,{},{},{}
-1089,Payon_Potion,Payon Solution,3,0,,10,,,,,,,,,,,,,{},{},{}
-1090,Mage_Test_Etc,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1091,Merchant_Box_Etc,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-1092,Empty_Cylinder,Empty Test Tube,3,3,,10,,,,,,,,,,,,,{},{},{}
-1093,Empty_Potion,Empty Potion Bottle,3,10,,10,,,,,,,,,,,,,{},{},{}
-1094,Short_Daenggie,Short Daenggie,3,278,,10,,,,,,,,,,,,,{},{},{}
-1095,Needle_Of_Alarm,Needle of Alarm,3,546,,10,,,,,,,,,,,,,{},{},{}
-1096,Round_Shell,Round Shell,3,780,,10,,,,,,,,,,,,,{},{},{}
-1097,Worn_Out_Page,Worn Out Page,3,948,,10,,,,,,,,,,,,,{},{},{}
-1098,Manacles,Manacles,3,658,,10,,,,,,,,,,,,,{},{},{}
-1099,Worn_Out_Prison_Uniform,Worn-out Prison Uniform,3,680,,10,,,,,,,,,,,,,{},{},{}
-// Weapons
-//===================================================================
-// 1-Handed Swords
-1101,Sword,Sword,5,100,,500,25,,1,3,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1102,Sword_,Sword,5,100,,500,25,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1103,Sword__,Sword,5,100,,500,25,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1104,Falchion,Falchion,5,1500,,600,39,,1,3,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1105,Falchion_,Falchion,5,1500,,600,39,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1106,Falchion__,Falchion,5,1500,,600,39,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1107,Blade,Blade,5,2900,,700,53,,1,3,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1108,Blade_,Blade,5,2900,,700,53,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1109,Blade__,Blade,5,2900,,700,53,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{}
-1110,Lapier,Rapier,5,10000,,500,70,,1,2,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1111,Lapier_,Rapier,5,10000,,500,70,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1112,Lapier__,Rapier,5,10000,,500,70,,1,0,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1113,Scimiter,Scimitar,5,17000,,700,85,,1,2,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1114,Scimiter_,Scimitar,5,17000,,700,85,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1115,Scimiter__,Scimitar,5,17000,,700,85,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{}
-1116,Katana,Katana,5,2000,,1000,60,,1,3,0x00004082,7,2,34,1,4,1,3,{},{},{}
-1117,Katana_,Katana,5,2000,,1000,60,,1,4,0x00004082,7,2,34,1,4,1,3,{},{},{}
-1118,Katana__,Katana,5,2000,,1000,60,,1,0,0x00004082,7,2,34,1,4,1,3,{},{},{}
-1119,Tsurugi,Tsurugi,5,51000,,1200,130,,1,1,0x000654E2,7,2,2,3,27,1,2,{},{},{}
-1120,Tsurugi_,Tsurugi,5,51000,,1200,130,,1,2,0x000654E2,7,2,2,3,27,1,2,{},{},{}
-1121,Tsurugi__,Tsurugi,5,51000,,1200,130,,1,0,0x000654E2,7,2,2,3,27,1,2,{},{},{}
-1122,Ring_Pommel_Saber,Ring Pommel Saber,5,24000,,900,100,,1,2,0x000654E2,7,2,2,2,14,1,2,{},{},{}
-1123,Haedonggum,Haedonggum,5,50000,,900,120,,1,1,0x000654E2,7,2,2,3,27,1,2,{ bonus bInt,3; },{},{}
-1124,Orcish_Sword,Orcish Sword,5,20,,800,90,,1,0,0x000654E3,7,2,2,3,5,1,2,{ bonus bUnbreakableWeapon; },{},{}
-1125,Ring_Pommel_Saber_,Ring Pommel Saber,5,24000,,900,100,,1,3,0x000654E2,7,2,2,2,14,1,2,{},{},{}
-1126,Saber,Saber,5,49000,,1000,115,,1,2,0x000654E2,7,2,2,3,27,1,2,{},{},{}
-1127,Saber_,Saber,5,49000,,1000,115,,1,3,0x000654E2,7,2,2,3,27,1,2,{},{},{}
-1128,Hae_Dong_Gum_,Haedonggum,5,50000,,900,120,,1,2,0x000654E2,7,2,2,3,27,1,2,{ bonus bInt,3; },{},{}
-1129,Flamberge,Flamberge,5,60000,,1500,150,,1,0,0x00004080,7,2,2,3,27,1,2,{},{},{}
-1130,Nagan,Nagan,5,20,,500,120,,1,0,0x000654E2,7,2,2,4,40,1,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-1131,Ice_Falchon,Ice Falchion,5,20,,600,100,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; },{},{}
-1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; },{},{}
-1133,Fire_Brand,Fireblend,5,20,,500,100,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; },{},{}
-1134,Scissores_Sword,Caesar's Sword,5,20,,700,140,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; },{},{}
-1135,Cutlas,Cutlus,5,20,,900,150,,1,0,0x000654E2,7,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-1136,Solar_Sword,Solar Sword,5,20,,1200,85,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{}
-1137,Excalibur,Excalibur,5,20,,1200,150,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; },{},{}
-1138,Mysteltainn_,Mysteltainn,5,20,,1000,170,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; },{},{}
-1139,Tale_Fing_,Tirfing,5,20,,1000,200,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; },{},{}
-1140,Byeorrun_Gum,Byeollungum,5,20,,900,150,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; },{},{}
-1141,Immaterial_Sword,Immaterial Sword,5,20,,900,140,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{}
-1142,Jewel_Sword,Jeweled Sword,5,20,,2200,104,,1,0,0x000654E2,7,2,2,3,68,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; },{},{}
-1143,Gaia_Sword,Gaia Sword,5,20,,2500,140,,1,0,0x000654E2,7,2,2,3,74,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Ore,30; },{},{}
-1144,Sasimi,Sashimi,5,20,,1400,75,,1,0,0x000654E2,7,2,2,3,48,1,2,{ bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; },{},{}
-1145,Holy_Avenger,Holy Avenger,5,450000,,1350,125,,1,0,0x00004000,7,2,2,3,75,1,2,{ bonus bAtkEle,Ele_Holy; bonus bVit,2; },{},{}
-1146,Town_Sword,Town Sword,5,42000,,800,100,,1,1,0x00000001,7,2,2,3,30,1,2,{},{},{}
-1147,Town_Sword_,Town Sword,5,42000,,800,100,,1,2,0x00000001,7,2,2,3,30,1,2,{},{},{}
-1148,Star_Dust_Blade,Star Dust Blade,5,20,,1000,140,,1,1,0x00000001,7,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{}
-1149,Flamberge_,Flamberge,5,60000,,1500,150,,1,2,0x00004080,7,2,2,3,27,1,2,{},{},{}
-// 2-Handed Swords
-1151,Slayer,Slayer,5,15000,,1300,90,,1,2,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1152,Slayer_,Slayer,5,15000,,1300,90,,1,3,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1153,Slayer__,Slayer,5,15000,,1300,90,,1,0,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1154,Bastard_Sword,Bastard Sword,5,22500,,1600,115,,1,2,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1155,Bastard_Sword_,Bastard Sword,5,22500,,1600,115,,1,3,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1156,Bastard_Sword__,Bastard Sword,5,22500,,1600,115,,1,0,0x00004082,7,2,34,2,18,1,3,{},{},{}
-1157,Two_Hand_Sword,Two-Handed Sword,5,60000,,2200,160,,1,1,0x00004082,7,2,34,3,33,1,3,{},{},{}
-1158,Two_Hand_Sword_,Two-Handed Sword,5,60000,,2200,160,,1,2,0x00004082,7,2,34,3,33,1,3,{},{},{}
-1159,Two_Hand_Sword__,Two-Handed Sword,5,60000,,2200,160,,1,0,0x00004082,7,2,34,3,33,1,3,{},{},{}
-1160,Broad_Sword,Broad Sword,5,65000,,2000,140,,1,1,0x00004082,7,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{}
-1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; },{},{}
-1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,7,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{}
-1163,Claymore,Claymore,5,74000,,2500,180,,1,0,0x00004080,7,2,34,3,33,1,3,{},{},{}
-1164,Muramasa,Muramasa,5,20,,1000,155,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; },{},{}
-1165,Masamune,Masamune,5,20,,1000,200,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1166,Dragon_Slayer,Dragon Slayer,5,20,,1300,150,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{}
-1167,Schweizersabel,Schweizersabel,5,20,,1600,160,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{}
-1168,Zweihander,Zweihander,5,20,,2200,200,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{}
-1169,Executioner_,Executioner,5,20,,2200,155,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1170,Katzbalger,Katzbalger,5,20,,2000,175,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bVit,5; bonus bDef,10; },{},{}
-1171,Zweihander_,Zweihander,5,20,,2200,200,,1,2,0x00004082,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{}
-1172,Claymore_,Claymore,5,74000,,2500,180,,1,2,0x00004080,7,2,34,3,33,1,3,{},{},{}
-1173,Muramasa_C,Muramasa,5,1,,0,204,,1,0,0x00004082,7,2,34,4,1,0,3,{ bonus bCritical,30; bonus bAspdRate,8; },{},{}
-1174,Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,7,2,34,4,0,0,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1175,Altas_Weapon,Atlas Weapon,5,20,,3500,200,,1,1,0x00004082,2,2,34,4,55,1,3,{ bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; },{},{}
-1176,Muscle_Cutter,Muscle Cutter,5,20,,2200,160,,1,2,0x00004082,2,2,34,4,55,1,3,{ bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; },{},{}
-1177,Muramash,Muramash,5,20,,0,120,,1,0,0x00004082,7,2,34,1,0,0,3,{ bonus2 bAddClass,Class_All,50; },{},{}
-1178,Schweizersabel_,Schweizersabel,5,20,,1600,160,,1,2,0x00004082,7,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{}
-1179,Executioner__,Executioner,5,20,,2200,155,,1,1,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1180,Dragon_Slayer_,Dragon Slayer,5,20,,1300,150,,1,2,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{}
-1181,Tae_Goo_Lyeon,Tae Goo Lyeon,5,20,,2000,250,,1,2,0x00004082,2,2,34,4,90,1,3,{ 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; } },{},{}
-1182,Bloody_Eater,Bloody Eater,5,20,,1200,200,,1,2,0x00004082,2,2,34,4,50,1,3,{ bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100; },{},{}
-1183,BF_Two_Handed_Sword1,Brave Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,7,2,34,3,80,1,3,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1184,BF_Two_Handed_Sword2,Valorous Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,7,2,34,3,80,1,3,{ bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; },{},{}
-1185,Violet_Fear,Violet Fear,5,20,,2200,275,,1,2,0x00004082,2,2,34,4,80,1,3,{ bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{}
-1186,Death_Guidance,Death Guidance,5,20,,2000,200,,1,2,0x00004082,2,2,34,4,70,1,3,{ 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; },{},{}
-1187,Krieger_Twohand_Sword1,Glorious Claymore,5,20,,0,220,,1,0,0x00004082,7,2,34,4,80,1,3,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } },{},{}
-1188,Veteran_Sword,Veteran Sword,5,10000,,2000,180,,1,1,0x00004082,7,2,34,4,80,1,3,{ 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; },{},{}
-1189,Krasnaya,Krasnaya,5,20,,3800,200,,2,3,0x00004082,2,2,34,2,50,1,3,{ if(readparam(bStr)>=95) { bonus bBaseAtk,20; } },{},{}
-1190,Claymore_C,Claymore,5,0,,0,220,,1,0,0x00004080,7,2,34,3,1,0,3,{ bonus2 bAddSize,Size_All,40; },{},{}
-// Daggers
-1201,Knife,Knife,5,50,,400,17,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1202,Knife_,Knife,5,50,,400,17,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1203,Knife__,Knife,5,50,,400,17,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1204,Cutter,Cutter,5,1250,,500,30,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1205,Cutter_,Cutter,5,1250,,500,30,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1206,Cutter__,Cutter,5,1250,,500,30,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1207,Main_Gauche,Main Gauche,5,2400,,600,43,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1208,Main_Gauche_,Main Gauche,5,2400,,600,43,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1209,Main_Gauche__,Main Gauche,5,2400,,600,43,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{}
-1210,Dirk,Dirk,5,8500,,500,59,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1211,Dirk_,Dirk,5,8500,,500,59,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1212,Dirk__,Dirk,5,8500,,500,59,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1213,Dagger,Dagger,5,14000,,600,73,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1214,Dagger_,Dagger,5,14000,,600,73,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1215,Dagger__,Dagger,5,14000,,600,73,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1216,Stiletto,Stiletto,5,19500,,700,87,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1217,Stiletto_,Stiletto,5,19500,,700,87,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1218,Stiletto__,Stiletto,5,19500,,700,87,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{}
-1219,Gladius,Gladius,5,43000,,700,105,,1,2,0x028F5EEE,7,2,2,3,24,1,1,{},{},{}
-1220,Gladius_,Gladius,5,43000,,700,105,,1,3,0x028F5EEE,7,2,2,3,24,1,1,{},{},{}
-1221,Gladius__,Gladius,5,43000,,700,105,,1,0,0x028F5EEE,7,2,2,3,24,1,1,{},{},{}
-1222,Damascus,Damascus,5,49000,,800,118,,1,1,0x028F5EEE,7,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{}
-1223,Forturn_Sword,Fortune Sword,5,20,,500,90,,1,0,0x028F5EEE,7,2,2,4,24,1,1,{ bonus bLuk,5; bonus bFlee2,20; },{},{}
-1224,Sword_Breaker,Swordbreaker,5,20,,1000,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{}
-1225,Mail_Breaker,Mailbreaker,5,20,,1000,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{}
-1226,Damascus_,Damascus,5,49000,,800,118,,1,2,0x028F5EEE,7,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{}
-1227,Weeder_Knife,Weeder Knife,5,20,,400,80,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; },{},{}
-1228,Combat_Knife,Combat Knife,5,20,,400,80,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; },{},{}
-1229,Mama's_Knife,Kitchen Knife,5,20,,500,75,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; },{},{}
-1230,House_Auger,Ice Pick,5,20,,600,80,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{}
-1231,Bazerald,Bazerald,5,20,,500,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10; },{},{}
-1232,Assasin_Dagger,Assassin Dagger,5,20,,600,140,,1,0,0x00001000,7,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{}
-1233,Exercise,Exorciser,5,20,,700,90,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; },{},{}
-1234,Moonlight_Sword,Moonlight Dagger,5,20,,700,50,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{}
-1235,Azoth,Azoth,5,20,,700,110,,1,0,0x00040000,7,2,2,4,36,1,1,{ bonus bClassChange,300; },{},{}
-1236,Sucsamad,Sucsamad,5,20,,800,140,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{}
-1237,Grimtooth_,Grimtooth,5,20,,800,180,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; },{},{}
-1238,Zeny_Knife,Zeny Knife,5,20,,1200,64,,1,0,0x028F5EEE,7,2,2,3,70,1,1,{ bonus2 bGetZenyNum,100,40; },{},{}
-1239,Poison_Knife,Poison Knife,5,20,,800,64,,1,0,0x028F5EEE,7,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-1240,Princess_Knife,Princess Knife,5,20,,400,84,,1,0,0x028F5EEE,7,2,2,4,1,1,1,{ bonus bAllStats,1; },{},{}
-1241,Cursed_Dagger,Cursed Dagger,5,80000,,400,55,,1,0,0x00810204,7,2,2,4,85,1,1,{ bonus2 bAddEff,Eff_Curse,5000; },{},{}
-1242,Counter_Dagger,Dagger of Counter,5,120000,,550,140,,1,0,0x00810204,7,2,2,4,55,1,1,{ bonus bCritical,90; },{},{}
-1243,Novice_Knife,Novice Main-Gauche,5,1,,1,45,,1,0,0x00000001,7,2,2,1,1,0,1,{},{},{}
-1244,Holy_Dagger,Holy Dagger,5,20,,800,100,,1,0,0x02021040,7,2,2,4,55,1,1,{ bonus bAtkEle,Ele_Holy; bonus bDex,1; },{},{}
-1245,Cinquedea,Cinquedea,5,40000,,700,110,,1,1,0x00000001,7,2,2,3,30,1,1,{},{},{}
-1246,Cinquedea_,Cinquedea,5,40000,,700,110,,1,2,0x00000001,7,2,2,3,30,1,1,{},{},{}
-1247,Kindling_Dagger,Kindle Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Fire; },{},{}
-1248,Obsidian_Dagger,Obsidian Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Earth; },{},{}
-1249,Fisherman's_Dagger,Fisherman's Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Water; },{},{}
-// Katars
-1250,Jur,Jur,5,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,16,{},{},{}
-1251,Jur_,Jur,5,19500,,800,125,,1,3,0x00001000,7,2,34,2,18,1,16,{},{},{}
-1252,Katar,Katar,5,41000,,1200,148,,1,1,0x00001000,7,2,34,3,33,1,16,{ bonus bDex,1; },{},{}
-1253,Katar_,Katar,5,41000,,1200,148,,1,2,0x00001000,7,2,34,3,33,1,16,{ bonus bDex,1; },{},{}
-1254,Jamadhar,Jamadhar,5,37200,,1500,165,,1,0,0x00001000,7,2,34,3,33,1,16,{},{},{}
-1255,Jamadhar_,Jamadhar,5,37200,,1500,165,,1,1,0x00001000,7,2,34,3,33,1,16,{},{},{}
-1256,Katar_Of_Cold_Icicle,Katar of Frozen Icicle,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{}
-1257,Katar_Of_Thornbush,Katar of Quaking,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{}
-1258,Katar_Of_Raging_Blaze,Katar of Raging Blaze,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{}
-1259,Katar_Of_Piercing_Wind,Katar of Piercing Wind,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{}
-1260,Ghoul_Leg,Sharpened Legbone of Ghoul,5,52500,,1700,150,,1,0,0x00001000,7,2,34,3,65,1,16,{ bonus bAtkEle,Ele_Undead; },{},{}
-1261,Infiltrator,Infiltrator,5,57000,,1500,140,,1,0,0x00001000,7,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{}
-1262,Nail_Of_Loki,Loki's Nail,5,20,,1200,115,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{}
-1263,Unholy_Touch,Unholy Touch,5,20,,1250,151,,1,0,0x00001000,7,2,34,4,70,1,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{}
-1264,Various_Jur,Specialty Jur,5,20,,800,90,,1,4,0x00001000,7,2,34,1,1,1,16,{ bonus2 bAddEff2,Eff_Bleeding,10; },{},{}
-1265,Bloody_Roar,Bloody Roar,5,20,,1000,120,,1,0,0x00001000,7,2,34,4,75,1,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{}
-1266,Infiltrator_,Infiltrator,5,57000,,1500,140,,1,1,0x00001000,7,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{}
-1267,Infiltrator_C,Infiltrator,5,1,,0,189,,1,0,0x00001000,7,2,34,4,1,0,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5; },{},{}
-1268,Wild_Beast_Claw,Wild Beast Claw,5,20,,1450,160,,1,1,0x00001000,2,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; },{},{}
-1269,Inverse_Scale,Inverse Scale,5,20,,1500,140,,1,0,0x00001000,2,2,34,4,55,1,16,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{}
-1270,Drill_Katar,Drill Katar,5,20,,1400,110,,1,1,0x00001000,2,2,34,4,55,1,16,{ bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; },{},{}
-1271,Blood_Tears,Blood Tears,5,20,,1700,120,,1,2,0x00001000,2,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; },{},{}
-1272,Scratcher,Scratcher,5,20,,0,120,,1,0,0x00001000,7,2,34,1,0,0,16,{ bonus2 bAddClass,Class_All,50; },{},{}
-1273,Bloody_Roar_C,Refined Bloody Roar,5,1,,0,148,,1,0,0x00001000,7,2,34,4,0,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bHPRegenRate,3,5000; },{},{}
-1274,Unholy_Touch_C,Refined Unholy Touch,5,1,,0,179,,1,0,0x00001000,7,2,34,4,0,0,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{}
-1275,Katar_Of_Cold_Icicle_,Katar of Frozen Icicle,5,45000,,1200,105,,1,3,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{}
-1276,Katar_Of_Thornbush_,Katar of Quaking,5,45000,,1200,105,,1,3,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{}
-1277,Katar_Of_Raging_Blaze_,Katar of Raging Blaze,5,45000,,1200,105,,1,3,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{}
-1278,Katar_Of_Piercing_Wind_,Katar of Piercing Wind,5,45000,,1200,105,,1,3,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{}
-1279,BF_Katar1,Brave Carnage Katar,5,20,,0,130,,1,0,0x00001000,7,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1280,BF_Katar2,Valorous Carnage Katar,5,20,,0,130,,1,0,0x00001000,7,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; },{},{}
-1281,Krieger_Katar1,Glorious Bloody Roar,5,20,,0,140,,1,0,0x00001000,7,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1282,Krieger_Katar2,Glorious Jamadhar,5,20,,0,140,,1,0,0x00001000,7,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1283,Katar_Of_Speed,Katar Of Speed,5,20,,0,175,,1,0,0x00001000,7,2,34,4,0,0,16,{ bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; },{},{}
-1284,Krishna,Krishna,5,20,,1200,120,,1,2,0x00001000,2,2,34,3,50,1,16,{ bonus2 bSkillAtk,"AS_GRIMTOOTH",10; if(getskilllv("AS_SONICBLOW")) { bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; }else{ bonus3 bAutoSpell,"AS_SONICBLOW",1,5; } },{},{}
-1285,Cakram,Chakram,5,20,,1000,130,,1,2,0x00001000,2,2,34,3,50,1,16,{ if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; },{},{}
-1286,Jamadhar_C,Jamadhar,5,0,,0,200,,1,0,0x00001000,7,2,34,3,1,0,16,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{}
-// 1-Handed Axes
-1301,Axe,Axe,5,500,,800,38,,1,3,0x000654E3,7,2,2,1,3,1,6,{},{},{}
-1302,Axe_,Axe,5,500,,800,38,,1,4,0x000654E3,7,2,2,1,3,1,6,{},{},{}
-1303,Axe__,Axe,5,500,,800,38,,1,0,0x000654E3,7,2,2,1,3,1,6,{},{},{}
-1304,Orcish_Axe,Orcish Axe,5,20,,1500,75,,1,0,0x000654E3,7,2,2,3,3,1,6,{},{},{}
-1305,Cleaver,Cleaver,5,20,,1200,140,,1,0,0x000444A2,7,2,2,4,44,1,6,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; },{},{}
-1306,War_Axe,War Axe,5,20,,4200,140,,1,1,0x00040400,7,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{}
-1307,Windhawk,Windhawk,5,18000,,1500,115,,1,0,0x000654E2,7,2,2,2,14,1,6,{ bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; },{},{}
-1308,Golden_Axe,Golden Axe,5,20,,3000,170,,1,0,0x00000001,7,2,2,4,45,1,6,{},{},{}
-1309,Orcish_Axe_,Orcish Axe,5,20,,1500,75,,1,4,0x000654E3,7,2,2,3,3,1,6,{},{},{}
-1310,Krieger_Onehand_Axe1,Glorious Cleaver,5,20,,0,130,,1,0,0x000444A2,7,2,2,4,80,1,6,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } },{},{}
-1311,Vecer_Axe,Vecer Axe,5,20,,1500,140,,1,2,0x000444A2,2,2,2,3,50,1,6,{ 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; } },{},{}
-1312,Orcish_Axe_C,Orcish Axe,5,0,,0,110,,1,0,0x000654E3,7,2,2,3,1,0,6,{ bonus2 bAddSize,Size_All,70; },{},{}
-1313,Tourist_Axe,Tourist Axe,5,0,,500,77,,1,0,0x000654E3,7,2,2,1,1,0,6,{ bonus bStr,2; },{},{}
-1314,F_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-1315,F_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{}
-// 2-Handed Axes
-1351,Battle_Axe,Battle Axe,5,5400,,1500,80,,1,3,0x000444A2,7,2,34,1,3,1,7,{},{},{}
-1352,Battle_Axe_,Battle Axe,5,5400,,1500,80,,1,4,0x000444A2,7,2,34,1,3,1,7,{},{},{}
-1353,Battle_Axe__,Battle Axe,5,5400,,1500,80,,1,0,0x000444A2,7,2,34,1,3,1,7,{},{},{}
-1354,Hammer,Hammer,5,15500,,2000,120,,1,2,0x000444A2,7,2,34,2,16,1,7,{},{},{}
-1355,Hammer_,Hammer,5,15500,,2000,120,,1,3,0x000444A2,7,2,34,2,16,1,7,{},{},{}
-1356,Hammer__,Hammer,5,15500,,2000,120,,1,0,0x000444A2,7,2,34,2,16,1,7,{},{},{}
-1357,Buster,Buster,5,34000,,2200,155,,1,1,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1358,Buster_,Buster,5,34000,,2200,155,,1,2,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1359,Buster__,Buster,5,34000,,2200,155,,1,0,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1360,Two_Handed_Axe,Two-Handed Axe,5,55000,,2500,185,,1,1,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1361,Two_Handed_Axe_,Two-Handed Axe,5,55000,,2500,185,,1,2,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1362,Two_Handed_Axe__,Two-Handed Axe,5,55000,,2500,185,,1,0,0x000444A2,7,2,34,3,30,1,7,{},{},{}
-1363,Brood_Axe,Bloody Axe,5,20,,4000,170,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bStr,10; bonus bSpeedRate,25; },{},{}
-1364,Great_Axe,Great Axe,5,20,,1800,187,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; },{},{}
-1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{}
-1366,Right_Epsilon,Light Epsilon,5,20,,2300,180,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; },{},{}
-1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; },{},{}
-1368,Tomahawk,Tomahawk,5,20,,2500,165,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{}
-1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{}
-1370,Doom_Slayer,Doom Slayer,5,20,,6000,10,,1,0,0x000444A2,7,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{}
-1371,Doom_Slayer_,Doom Slayer,5,20,,6000,10,,1,1,0x000444A2,7,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{}
-1372,Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; },{},{}
-1373,Brood_Axe_C,Refined Bloody Axe,5,2,,0,205,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5; },{},{}
-1374,Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{}
-1375,Berdysz,Berdysz,5,20,,2500,200,,1,2,0x000444A2,2,2,34,3,70,1,7,{ bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; },{},{}
-1376,Heart_Breaker,Heart Breaker,5,20,,2000,175,,1,1,0x000444A2,2,2,34,4,70,1,7,{ bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; },{},{}
-1377,Hurricane_Fury,Hurricane's Fury,5,20,,3500,332,,1,1,0x000444A2,2,2,34,4,80,1,7,{ bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; },{},{}
-1378,Great_Axe_C,Refined Great Axe,5,1,,0,215,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000; },{},{}
-1379,BF_Two_Handed_Axe1,Valorous Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,7,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1380,BF_Two_Handed_Axe2,Brave Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,7,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-1381,N_Battle_Axe,Novice Battle Axe,5,0,,0,100,,1,3,0x000444A2,7,2,34,1,3,0,7,{},{},{}
-1382,Krieger_Twohand_Axe1,Glorious Two-Handed Axe,5,20,,0,220,,1,0,0x000444A2,7,2,34,4,80,1,7,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; } },{},{}
-1383,Holy_Celestial_Axe,Celestial Axe,5,20,,1500,200,,1,0,0x000444A2,7,2,34,4,60,1,7,{ bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50; },{},{}
-1384,Veteran_Axe,Veteran Axe,5,10000,,3000,250,,1,2,0x000444A2,7,2,34,3,80,1,7,{ 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; },{},{}
-1385,Bradium_Stonehammer,Bradium Stone Hammer,5,20,,2700,210,,1,0,0x000444A2,2,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{}
-1386,Doom_Slayer_I,Doom Slayer,5,0,,0,20,,1,0,0x000444A2,7,2,34,4,0,0,7,{ if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; } },{},{}
-1387,Giant_Axe,Giant Axe,5,20,,4000,330,,1,1,0x000444A2,2,2,34,3,50,1,7,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } },{},{}
-1388,Two_Handed_Axe_C,Two-Handed Axe,5,0,,0,220,,1,0,0x000444A2,7,2,34,3,1,0,7,{ bonus2 bAddSize,Size_All,40; },{},{}
-1389,E_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-1390,E_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{}
-// 1-Handed Spears
-1401,Javelin,Javelin,5,150,,700,28,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1402,Javelin_,Javelin,5,150,,700,28,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1403,Javelin__,Javelin,5,150,,700,28,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1404,Spear,Spear,5,1700,,850,44,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1405,Spear_,Spear,5,1700,,850,44,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1406,Spear__,Spear,5,1700,,850,44,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1407,Pike,Pike,5,3450,,1000,60,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1408,Pike_,Pike,5,3450,,1000,60,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1409,Pike__,Pike,5,3450,,1000,60,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{}
-1410,Lance,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1411,Lance_,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1412,Lance__,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1413,Gungnir,Gungnir,5,20,,500,120,,3,0,0x00004082,7,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{}
-1414,Gelerdria,Gelerdria,5,20,,700,145,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{}
-1415,Skewer,Brocca,5,20,,850,100,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; },{},{}
-1416,Tjungkuletti,Tjungkuletti,5,20,,1000,95,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bSPDrainValue,1; bonus bSPGainValue,5; },{},{}
-1417,Pole_Axe,Pole Axe,5,20,,3800,160,,3,1,0x00004082,7,2,2,3,71,1,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1418,Gungnir_,Gungnir,5,20,,500,120,,3,2,0x00004082,7,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{}
-1419,Pole_Axe_C,Pole Axe,5,1,,4800,159,,3,0,0x00004082,7,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1420,Long_Horn,Long Horn,5,20,,1000,150,,3,1,0x00004082,2,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{}
-1421,Battle_Hook,Battle Hook,5,20,,900,140,,3,1,0x00004082,2,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; skill "KN_PIERCE",3; },{},{}
-1422,Hunting_Spear,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,2,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{}
-1423,Pole_XO,Pole XO,5,20,,0,120,,3,0,0x00004082,7,2,2,1,0,0,4,{ bonus2 bAddClass,Class_All,50; },{},{}
-1424,Skewer_C,Refined Brocca,5,1,,0,149,,3,0,0x00004082,7,2,2,4,0,0,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; },{},{}
-1425,BF_Spear1,Assaulter Spear,5,20,,0,60,,3,0,0x00004082,7,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{}
-1426,Krieger_Onehand_Spear1,Glorious Spear,5,20,,0,130,,3,0,0x00004082,7,2,2,4,80,1,4,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; } },{},{}
-1427,Spear_Of_Excellent,Spear Of Excellent,5,20,,0,160,,3,0,0x00004082,7,2,2,3,0,0,4,{ bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; },{},{}
-1428,Long_Horn_M,Long Horn,5,20,,1000,150,,3,1,0x00004082,2,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{}
-1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,2,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; },{},{}
-1430,Pike_C,Pike,5,0,,0,74,,3,0,0x00004082,7,2,2,1,1,0,4,{ bonus2 bAddSize,Size_All,70; },{},{}
-1431,F_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,7,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1432,E_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,7,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-// 2-Handed Spears
-1451,Guisarme,Guisarme,5,13000,,1000,84,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1452,Guisarme_,Guisarme,5,13000,,1000,84,,3,3,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1453,Guisarme__,Guisarme,5,13000,,1000,84,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1454,Glaive,Glaive,5,20000,,1200,104,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1455,Glaive_,Glaive,5,20000,,1200,104,,3,3,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1456,Glaive__,Glaive,5,20000,,1200,104,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1457,Partizan,Partizan,5,27000,,2000,124,,3,1,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1458,Partizan_,Partizan,5,27000,,2000,124,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1459,Partizan__,Partizan,5,27000,,2000,124,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{}
-1460,Trident,Trident,5,51000,,1200,150,,3,2,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1461,Trident_,Trident,5,51000,,1200,150,,3,3,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1462,Trident__,Trident,5,51000,,1200,150,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1463,Halberd,Halberd,5,54000,,2500,165,,3,1,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1464,Halberd_,Halberd,5,54000,,2500,165,,3,2,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1465,Halberd__,Halberd,5,54000,,2500,165,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{}
-1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{}
-1467,Bill_Guisarme,Bill Guisarme,5,20,,1000,183,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-1468,Zephyrus,Zephyrus,5,20,,2000,170,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{}
-1469,Longinus's_Spear,Longinus's Spear,5,20,,2500,180,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddRace,RC_Angel,10; },{},{}
-1470,Brionac,Brionac,5,20,,3000,190,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5; },{},{}
-1471,Hell_Fire,Hellfire,5,20,,3500,200,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3; },{},{}
-// 2-Handed Staffs
-1472,Staff_Of_Soul,Soul Staff,5,20,,1400,25,,1,0,0x00810204,7,2,34,3,73,1,23,{ bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15; },{},{}
-1473,Wizardy_Staff,Wizardry Staff,5,20,,2400,120,,1,0,0x00810204,7,2,34,4,90,1,23,{ bonus bInt,6; bonus bDex,2; bonus bMatkRate,15; },{},{}
-// 2-Handed Spears
-1474,Gae_Bolg,Gae Bolg,5,20,,2000,160,,3,0,0x00004082,7,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{}
-1475,Horseback_Lance,Equestrian's Spear,5,20,,3700,200,,4,0,0x00004082,7,2,34,4,75,1,5,{},{},{}
-1476,Crescent_Scythe_,Crescent Scythe,5,20,,2500,180,,3,1,0x00004082,7,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{}
-1477,Spectral_Spear,Spectral Spear,5,20,,2000,170,,3,0,0x00004082,7,2,34,4,75,1,5,{ 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; },{},{}
-1478,Ahlspiess,Ahlspiess,5,20,,1000,120,,3,0,0x00004080,7,2,34,4,65,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{}
-1479,Spectral_Spear_,Spectral Spear,5,20,,2000,170,,3,1,0x00004082,7,2,34,4,75,1,5,{ 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; },{},{}
-1480,Gae_Bolg_,Gae Bolg,5,20,,2000,160,,3,2,0x00004082,7,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{}
-1481,Zephyrus_,Zephyrus,5,20,,2000,170,,3,3,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{}
-1482,BF_Lance1,Assaulter Lance,5,,,0,160,,3,0,0x00004082,7,2,34,3,80,1,5,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bUnbreakableWeapon; },{},{}
-1483,Ivory_Lance,Ivory Lance,5,20,,1000,160,,3,1,0x00004082,2,2,34,3,50,1,5,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5; },{},{}
-1484,Cardo,Cardo,5,20,,5600,150,,3,1,0x00000080,2,2,34,4,70,1,5,{ bonus bAspdRate,-10; bonus bDef,getrefine()/2; },{},{}
-1485,Battle_Fork,Battle Fork,5,20,,700,112,,3,4,0x00004082,2,2,34,2,50,1,5,{},{},{}
-1486,Krieger_Twohand_Spear1,Glorious Lance,5,20,,0,220,,3,0,0x00004082,7,2,34,4,80,1,5,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; } },{},{}
-1487,Lance_C,Lance,5,0,,0,220,,3,0,0x00004082,7,2,34,3,1,0,5,{ bonus2 bAddSize,Size_All,50; },{},{}
-1488,Ahlspiess_C,Ahlspiess,5,20,,0,135,,3,0,0x00004080,7,2,34,4,1,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{}
-// Maces
-1501,Club,Club,5,120,,700,23,,1,3,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1502,Club_,Club,5,120,,700,23,,1,4,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1503,Club__,Club,5,120,,700,23,,1,0,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1504,Mace,Mace,5,1600,,800,37,,1,3,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1505,Mace_,Mace,5,1600,,800,37,,1,4,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1506,Mace__,Mace,5,1600,,800,37,,1,0,0x0004C5B3,7,2,2,1,2,1,8,{},{},{}
-1507,Smasher,Smasher,5,9000,,1000,54,,1,2,0x0004C5B3,7,2,2,2,14,1,8,{},{},{}
-1508,Smasher_,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,7,2,2,2,14,1,8,{},{},{}
-1509,Smasher__,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,7,2,2,2,14,1,8,{},{},{}
-1510,Flail,Flail,5,16000,,900,69,,1,2,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1511,Flail_,Flail,5,16000,,900,69,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1512,Flail__,Flail,5,16000,,900,69,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1513,Morning_Star,Morning Star,5,41000,,1500,110,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1514,Morning_Star_,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1515,Morning_Star__,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1516,Sword_Mace,Sword Mace,5,50000,,1200,130,,1,0,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1517,Sword_Mace_,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1518,Sword_Mace__,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{}
-1519,Chain,Chain,5,23000,,800,84,,1,2,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1520,Chain_,Chain,5,23000,,800,84,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1521,Chain__,Chain,5,23000,,800,84,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{}
-1522,Stunner,Stunner,5,60000,,2000,140,,1,0,0x00008110,7,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1523,Spike,Spike,5,20,,700,85,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1524,Golden_Mace,Golden Mace,5,20,,800,110,,1,1,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; },{},{}
-1525,Long_Mace,Long Mace,5,20,,800,135,,3,0,0x00008110,7,2,2,4,40,1,8,{ bonus bLongAtkDef,10; },{},{}
-1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{}
-1527,Quadrille,Quadrille,5,20,,900,165,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{}
-1528,Grand_Cross,Grand Cross,5,20,,1500,140,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{}
-1529,Iron_Driver,Iron Driver,5,20,,3000,155,,2,0,0x00008100,7,2,2,3,78,1,8,{},{},{}
-1530,Mjolnir,Mjolnir,5,20,,6000,250,,1,0,0x000444A2,7,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon; },{},{}
-1531,Spanner,Wrench,5,20,,2500,115,,1,0,0x00008110,7,2,2,3,55,1,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{}
-1532,Stunner_,Stunner,5,60000,,2000,140,,1,2,0x00008110,7,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1533,Warrior_Balmung,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,7,2,2,4,48,1,8,{ bonus bAllStats,5; },{},{}
-1534,Spanner_C,Wrench,5,2,,0,150,,1,0,0x00008110,7,2,2,3,0,0,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{}
-1535,Hollgrehenn_Hammer,Hollgrehenn's Hammer,5,4444,,44,4,,1,1,0x0004C5B2,7,2,2,4,44,1,8,{ bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } },{},{}
-1536,Good_Morning_Star,Good Morning Star,5,20,,0,120,,1,0,0x0004C5B2,7,2,2,1,0,0,8,{ bonus2 bAddClass,Class_All,50; },{},{}
-1537,Quadrille_C,Refined Quadrille,5,1,,0,193,,1,0,0x00008110,7,2,2,4,0,0,8,{ bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; },{},{}
-1538,Spike_,Spike,5,20,,700,85,,1,2,0x00008110,7,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1539,Golden_Mace_,Golden Mace,5,20,,800,110,,1,2,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; },{},{}
-1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,0x00008110,7,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{}
-1541,Nemesis,Nemesis,5,20,,900,120,,1,0,0x00008110,7,2,2,4,60,1,8,{ 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; }"; },{},{}
-1542,BF_Morning_Star1,Valorous Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,7,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1543,BF_Morning_Star2,Brave Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,7,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1544,Lunakaligo,Lunakaligo,5,20,,700,110,,1,3,0x00008110,2,2,2,3,50,1,8,{ 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; } },{},{}
-1545,N_Mace,Novice Mace,5,0,,0,57,,1,3,0x0004C5B3,7,2,2,1,2,0,8,{},{},{}
-1546,Krieger_Onehand_Mace1,Glorious Morning Star,5,20,,0,130,,1,0,0x0004C5B3,7,2,2,4,80,1,8,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } },{},{}
-1547,Mace_Of_Madness,Mace Of Madness,5,20,,0,150,,1,0,0x0004C5B2,7,2,2,3,0,0,8,{ bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; },{},{}
-1548,Veteran_Hammer,Veteran Hammer,5,10000,,1800,160,,1,2,0x00008110,7,2,2,3,80,1,8,{ bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; },{},{}
-1549,Pilebuncker,Pile Bunker,5,10000,,3500,450,,1,0,0x00000400,7,2,2,3,99,1,8,{},{},{}
-// Books
-1550,Book,Book,5,30000,,600,85,,1,3,0x00410100,7,2,2,2,14,1,15,{},{},{}
-1551,Bible,Bible,5,60000,,1000,115,,1,2,0x00410100,7,2,2,3,27,1,15,{ bonus bInt,2; },{},{}
-1552,Tablet,Tablet,5,51000,,800,125,,1,1,0x00410100,7,2,2,3,27,1,15,{},{},{}
-1553,Book_Of_Billows,Book of Billows,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{}
-1554,Book_Of_Mother_Earth,Book of Mother Earth,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{}
-1555,Book_Of_Blazing_Sun,Book of the Blazing Sun,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{}
-1556,Book_Of_Gust_Of_Wind,Book of Gust of Wind,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{}
-1557,Book_Of_The_Apocalypse,Book of the Apocalypse,5,60000,,800,120,,1,0,0x00410100,7,2,2,4,40,1,15,{ 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; },{},{}
-1558,Girl's_Diary,Girl's Diary,5,1500,,300,60,,1,1,0x00410100,7,2,2,4,40,1,15,{ bonus2 bAddDamageClass,1188,150; },{},{}
-1559,Legacy_Of_Dragon,Legacy of Dragon,5,20,,700,130,,1,0,0x00410100,7,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{}
-1560,Diary_Of_Great_Sage,Sage's Diary,5,20,,1100,100,,1,2,0x00410100,7,2,2,3,60,1,15,{ bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; },{},{}
-1561,Hardback,Hardcover Book,5,20,,1500,140,,1,1,0x00410100,7,2,2,4,55,1,15,{ bonus bStr,3; bonus bDex,2; },{},{}
-1562,Bible_Of_Battlefield,Battlefield Textbook,5,20,,700,110,,1,1,0x00410100,7,2,2,4,80,0,15,{ bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; },{},{}
-1563,Diary_Of_Great_Sage_C,Sage's Diary,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{ bonus bMatkRate,20; bonus bAspdRate,5; },{},{}
-1564,Encyclopedia,Encyclopedia,5,20,,2000,110,,1,2,0x00410100,7,2,2,3,70,1,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); },{},{}
-1565,Death_Note,Ledger of Death,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{}
-1566,Diary_Of_Great_Basil,Diary Of Great Basil,5,20,,0,120,,1,0,0x00410100,7,2,2,1,0,0,15,{ bonus2 bAddClass,Class_All,50; },{},{}
-1567,Hardback_C,Refined Hardcover Book,5,1,,0,168,,1,0,0x00410100,7,2,2,4,0,0,15,{ bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; },{},{}
-1568,Book_Of_Billows_,Book of Billows,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{}
-1569,Book_Of_Mother_Earth_,Book of Mother Earth,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{}
-1570,Book_Of_Blazing_Sun_,Book of Blazing Sun,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{}
-1571,Book_Of_Gust_Of_Wind_,Book of Gust of Wind,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{}
-1572,Principles_Of_Magic,Principles of Magic,5,20,,300,60,,1,2,0x00410100,7,2,2,3,60,1,15,{ bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5; },{},{}
-1573,Ancient_Magic,Ancient Magic,5,20,,700,30,,1,2,0x00410100,7,2,2,3,70,1,15,{ bonus bMatkRate,15; },{},{}
-1574,BF_Book1,Brave Battle Strategy Book,5,20,,0,90,,1,0,0x00410100,7,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90,,1,0,0x00410100,7,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; },{},{}
-1576,Krieger_Book1,Glorious Tablet,5,20,,0,90,,1,0,0x00410100,7,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; },{},{}
-1577,Krieger_Book2,Glorious Apocalypse,5,20,,0,90,,1,0,0x00410100,7,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; } },{},{}
-1578,Book_Of_Prayer,Book Of Prayer,5,20,,0,140,,1,0,0x00410100,7,2,2,3,0,0,15,{ bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; },{},{}
-1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{}
-1580,Encyclopedia_C,Giant Encyclopedia,5,0,,0,145,,1,0,0x00410100,7,2,2,3,0,0,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; },{},{}
-1581,F_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{},{},{}
-1582,E_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{},{},{}
-// GM Weapon
-1599,Angra_Manyu,Angra Manyu,5,1,,10,200,,2,0,0xFFFFFFFF,7,2,2,1,1,1,8,{ 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; },{},{}
-// Staffs
-1601,Rod,Rod,5,50,,400,15,,1,3,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{}
-1602,Rod_,Rod,5,50,,400,15,,1,4,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{}
-1603,Rod__,Rod,5,50,,400,15,,1,0,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{}
-1604,Wand,Wand,5,2500,,400,25,,1,2,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{}
-1605,Wand_,Wand,5,2500,,400,25,,1,3,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{}
-1606,Wand__,Wand,5,2500,,400,25,,1,0,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{}
-1607,Staff,Staff,5,9500,,400,40,,1,2,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{}
-1608,Staff_,Staff,5,9500,,400,40,,1,3,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{}
-1609,Staff__,Staff,5,9500,,400,40,,1,0,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{}
-1610,Arc_Wand,Arc Wand,5,45000,,400,60,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{}
-1611,Arc_Wand_,Arc Wand,5,45000,,400,60,,1,2,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{}
-1612,Arc_Wand__,Arc Wand,5,45000,,400,60,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{}
-1613,Mighty_Staff,Mighty Staff,5,20,,700,130,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2; },{},{}
-1614,Blessed_Wand,Wand of Occult,5,20,,700,75,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{}
-1615,Bone_Wand,Evil Bone Wand,5,20,,700,40,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15; },{},{}
-1616,Staff_Of_Wing,Wing Staff,5,20,,500,60,,1,0,0x00810204,7,2,2,4,40,1,10,{ bonus bMatkRate,15; bonus bCastrate,-5; },{},{}
-1617,Survival_Rod,Survivor's Rod,5,85000,,1000,50,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300; },{},{}
-1618,Survival_Rod_,Survivor's Rod,5,85000,,1000,50,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400; },{},{}
-1619,Survival_Rod2,Survivor's Rod,5,85000,,1000,50,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300; },{},{}
-1620,Survival_Rod2_,Survivor's Rod,5,85000,,1000,50,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400; },{},{}
-1621,Hypnotist's_Staff,Hypnotist's Staff,5,43000,,500,70,,1,1,0x00000001,7,2,2,3,30,1,10,{ bonus bInt,1; bonus bMatkRate,25; },{},{}
-1622,Hypnotist's_Staff_,Hypnotist's Staff,5,20,,500,70,,1,2,0x00000001,7,2,2,3,30,1,10,{ bonus bInt,1; bonus bMatkRate,25; },{},{}
-1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165,,1,0,0x00818314,7,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; },{},{}
-1624,Lich_Bone_Wand,Lich's Bone Wand,5,20,,800,60,,1,2,0x00018314,2,2,2,3,70,1,10,{ 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; } },{},{}
-1625,Healing_Staff,Healing Staff,5,20,,400,10,,1,0,0x00008110,7,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{}
-1626,Piercing_Staff,Piercing Staff,5,20,,500,80,,1,0,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); },{},{}
-1627,Staffy,Staffy,5,20,,0,40,,1,0,0x00818314,7,2,2,1,0,0,10,{ bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; },{},{}
-1628,Survival_Rod_C,Refined Survivor's Rod,5,1,,0,71,,1,0,0x00818314,7,2,2,3,0,0,10,{ bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; },{},{}
-1629,Walking_Stick,Gentleman's Staff,5,20,,500,40,,1,1,0x00818314,7,2,2,4,50,1,10,{ bonus bMatkRate,15; bonus bDex,1; },{},{}
-1630,Release_Of_Wish,Release of Wish,5,20,,500,30,,1,0,0x00810204,7,2,2,3,50,1,10,{ 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; }"; },{},{}
-1631,Holy_Stick,Holy Stick,5,20,,500,50,,1,1,0x00008100,7,2,2,4,70,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25; },{},{}
-1632,BF_Staff1,Warlock's Magic Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; },{},{}
-1633,BF_Staff2,Warlock's Battle Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; },{},{}
-1634,BF_Staff3,Strong Recovery Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{}
-1635,BF_Staff4,Speedy Recovery Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{}
-1636,Thorn_Staff,Thorn Staff of Darkness,5,20,,700,60,,1,0,0x00018314,2,2,2,4,75,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2); },{},{}
-1637,Eraser,Eraser,5,20,,500,80,,1,0,0x00018314,2,2,2,4,70,1,10,{ 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; },{},{}
-1638,Healing_Staff_C,Staff Of Healing,5,20,,0,10,,1,0,0x00008110,7,2,2,3,1,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{}
-1639,N_Rod,Novice Rod,5,0,,0,15,,1,3,0x00818315,7,2,2,1,1,0,10,{ bonus bMatkRate,16; },{},{}
-1640,Krieger_Onehand_Staff1,Glorious Arc Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,4,80,1,10,{ bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; } },{},{}
-1641,Krieger_Onehand_Staff2,Glorious Cure Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,4,80,1,10,{ bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player,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; } },{},{}
-1642,Staff_Of_Darkness,Staff Of Darkness,5,20,,0,100,,1,0,0x00818314,7,2,2,2,0,0,10,{ bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2; },{},{}
-1643,Dead_Tree_Cane,Dead Tree Cane,5,20,,100,100,,1,0,0x00818314,7,2,2,4,70,1,10,{ bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } },{},{}
-1644,Piercing_Staff_M,Staff of Piercing,5,20,,500,80,,1,0,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); },{},{}
-1645,Lich_Bone_Wand_M,Lich's Bone Wand,5,20,,800,60,,1,2,0x00018314,2,2,2,3,70,1,10,{ 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; } },{},{}
-1646,La'cryma_Stick,La'cryma Stick,5,20,,500,30,,1,2,0x00010204,2,2,2,3,50,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8; },{},{}
-1647,Croce_Staff,Croce Staff,5,20,,500,30,,1,1,0x00008110,2,2,2,3,50,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; },{},{}
-1648,Staff_Of_Bordeaux,Staff Of Bordeaux,5,20,,500,30,,1,0,0x00010204,2,2,2,4,50,1,10,{ bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{}
-// Bows
-1701,Bow,Bow,5,1000,,500,15,,5,3,0x000A0848,7,2,34,1,4,1,11,{},{},{}
-1702,Bow_,Bow,5,1000,,500,15,,5,4,0x000A0848,7,2,34,1,4,1,11,{},{},{}
-1703,Bow__,Bow,5,1000,,0,15,,5,0,0x000A0848,7,2,34,1,4,1,11,{ bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; },{},{}
-1704,Composite_Bow,Composite Bow,5,2500,,600,29,,5,3,0x000A0848,7,2,34,1,4,1,11,{},{},{}
-1705,Composite_Bow_,Composite Bow,5,2500,,600,29,,5,4,0x000A0848,7,2,34,1,4,1,11,{},{},{}
-1706,Composite_Bow__,Composite Bow,5,2500,,600,29,,5,0,0x000A0848,7,2,34,1,4,1,11,{},{},{}
-1707,Great_Bow,Great Bow,5,10000,,1000,50,,5,2,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1708,Great_Bow_,Great Bow,5,10000,,1000,50,,5,3,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1709,Great_Bow__,Great Bow,5,10000,,1000,50,,5,0,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1710,CrossBow,Crossbow,5,17000,,900,65,,5,2,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1711,CrossBow_,Crossbow,5,17000,,900,65,,5,3,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1712,CrossBow__,Crossbow,5,17000,,900,65,,5,0,0x000A0848,7,2,34,2,18,1,11,{},{},{}
-1713,Arbalest,Arbalest,5,48000,,1000,90,,5,1,0x000A0848,7,2,34,3,33,1,11,{ bonus bDex,2; },{},{}
-1714,Kakkung,Gakkung Bow,5,42000,,1100,100,,5,1,0x000A0848,7,2,34,3,33,1,11,{},{},{}
-1715,Arbalest_,Arbalest,5,48000,,1000,90,,5,2,0x000A0848,7,2,34,3,33,1,11,{ bonus bDex,2; },{},{}
-1716,Kakkung_,Gakkung Bow,5,42000,,1100,100,,5,2,0x000A0848,7,2,34,3,33,1,11,{},{},{}
-1718,Hunter_Bow,Hunter Bow,5,64000,,1500,125,,5,0,0x00000800,7,2,34,3,33,1,11,{},{},{}
-1719,Bow_Of_Roguemaster,Roguemaster's Bow,5,20,,500,75,,11,0,0x00000040,7,2,34,4,48,1,11,{},{},{}
-1720,Bow_Of_Rudra,Rudra Bow,5,20,,1200,150,,5,0,0x000A0808,7,2,34,4,48,1,11,{ 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; },{},{}
-1721,Repeting_CrossBow,Repeating Crossbow,5,89000,,2000,95,,9,1,0x00020840,7,2,34,3,65,1,11,{},{},{}
-1722,Balistar,Ballista,5,124000,,3500,145,,5,0,0x00080800,7,2,34,4,77,1,11,{},{},{}
-1723,Luna_Bow,Luna Bow,5,20,,2000,100,,5,2,0x00000800,7,2,34,3,30,1,11,{ bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8); },{},{}
-1724,Dragon_Wing,Dragon Wing,5,20,,1200,100,,5,0,0x000A0848,7,2,34,4,60,1,11,{ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; },{},{}
-1725,Bow_Of_Minstrel,Minstrel Bow,5,20,,1700,120,,5,1,0x00080800,7,2,34,4,70,1,11,{ bonus bInt,2; bonus bSPrecovRate,10; },{},{}
-1726,Hunter_Bow_,Hunter Bow,5,64000,,1500,125,,5,1,0x00000800,7,2,34,3,33,1,11,{},{},{}
-1727,Balistar_,Ballista,5,124000,,3500,145,,5,1,0x00080800,7,2,34,4,77,1,11,{},{},{}
-1728,Balistar_C,Ballista,5,1,,0,194,,5,0,0x00080800,7,2,34,4,1,0,11,{ bonus bLongAtkRate,20; },{},{}
-1729,Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0808,7,2,34,4,1,0,11,{ bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; },{},{}
-1730,Burning_Bow,Burning Bow,5,20,,1400,95,,5,1,0x000A0808,7,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{}
-1731,Frozen_Bow,Frozen Bow,5,20,,1400,100,,5,1,0x000A0808,7,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{}
-1732,Earth_Bow,Earth Bow,5,20,,1400,105,,5,1,0x000A0808,7,2,34,3,55,1,11,{},{},{}
-1733,Gust_Bow,Gust Bow,5,20,,1400,95,,5,1,0x000A0808,7,2,34,3,55,1,11,{},{},{}
-1734,Orc_Archer_Bow,Orc Archer Bow,5,20,,1600,120,,5,0,0x000A0808,7,2,34,3,65,1,11,{ bonus2 bAddMonsterDropItem,1753,200; },{},{}
-1735,Kkakkung,Kkakkung,5,20,,0,120,,5,0,0x000A0848,7,2,34,1,1,0,11,{ bonus2 bAddClass,Class_All,50; },{},{}
-1736,Double_Bound,Double Bound,5,20,,900,70,,5,3,0x00000800,2,2,34,3,70,1,11,{ bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; },{},{}
-1737,Ixion_Wing,Ixion Wings,5,20,,300,135,,5,1,0x00000800,2,2,34,4,70,1,11,{ autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; },{},{}
-1738,BF_Bow1,Valorous Battle CrossBow,5,0,,0,100,,5,0,0x000A0848,7,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1739,BF_Bow2,Brave Battle CrossBow,5,0,,0,100,,5,0,0x000A0848,7,2,34,3,80,1,11,{ bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bUnbreakableWeapon; },{},{}
-1740,Nepenthes_Bow,Nepenthes Bow,5,20,,1000,105,,5,2,0x00000800,2,2,34,4,60,1,11,{ bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; },{},{}
-1741,Cursed_Lyre,Cursed Lyre,5,20,,1250,125,,5,1,0x00080808,2,2,34,4,80,1,11,{ bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; },{},{}
-1742,N_Composite_Bow,Novice Composite Bow,5,1,,0,49,,5,3,0x000A0848,7,2,34,1,4,0,11,{},{},{}
-1743,Krieger_Bow1,Glorious Hunter Bow,5,0,,0,100,,5,0,0x001A0848,7,2,34,4,80,1,11,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20; },{},{}
-1744,Bow_Of_Evil,Bow Of Evil,5,0,,0,170,,5,0,0x000A0848,7,2,34,4,1,0,11,{ bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; },{},{}
-1745,Falken_Blitz,Falken Blitz,5,0,,1000,100,,5,2,0x00080808,2,2,34,3,50,1,11,{ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; },{},{}
-// Arrows
-1750,Arrow,Arrow,10,1,,1,25,,,,0x000A1848,7,2,32768,,1,,1,{},{},{}
-1751,Silver_Arrow,Silver Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{}
-1752,Fire_Arrow,Fire Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Fire; },{},{}
-1753,Steel_Arrow,Steel Arrow,10,4,,2,40,,,,0x000A1848,7,2,32768,,1,,1,{},{},{}
-1754,Crystal_Arrow,Crystal Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; },{},{}
-1755,Arrow_Of_Wind,Arrow of Wind,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Wind; },{},{}
-1756,Stone_Arrow,Stone Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Earth; },{},{}
-1757,Immatrial_Arrow,Immaterial Arrow,10,3,,1,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Ghost; },{},{}
-1758,Stun_Arrow,Stun Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1759,Freezing_Arrow,Frozen Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; },{},{}
-1760,Flash_Arrow,Flash Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Blind,1000; },{},{}
-1761,Curse_Arrow,Cursed Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Curse,1000; },{},{}
-1762,Rusty_Arrow,Rusty Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; },{},{}
-1763,Poison_Arrow,Poison Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; },{},{}
-1764,Incisive_Arrow,Sharp Arrow,10,20,,3,10,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bCriticalLong,20; },{},{}
-1765,Oridecon_Arrow,Oridecon Arrow,10,30,,3,50,,,,0x000A1848,7,2,32768,,1,,1,{},{},{}
-1766,Arrow_Of_Counter_Evil,Arrow of Counter Evil,10,40,,3,50,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{}
-1767,Arrow_Of_Shadow,Arrow of Shadow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Dark; },{},{}
-1768,Sleep_Arrow,Sleep Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Sleep,2000; },{},{}
-1769,Silence_Arrow,Mute Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Silence,1000; },{},{}
-1770,Iron_Arrow,Iron Arrow,10,2,,1,30,,,,0x000A1848,7,2,32768,,1,,1,{},{},{}
-1771,Venom_Knife,Venom Knife,10,50,,5,30,,,,0x00001000,7,2,32768,,1,,2,{},{},{}
-1772,Holy_Arrow,Holy Arrow,10,3,,2,50,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; },{},{}
-// Knuckles
-1801,Waghnakh,Waghnak,5,8000,,400,30,,1,3,0x00008100,7,2,2,1,1,1,12,{},{},{}
-1802,Waghnakh_,Waghnak,5,8000,,400,30,,1,4,0x00008100,7,2,2,1,1,1,12,{},{},{}
-1803,Knuckle_Duster,Knuckle Dusters,5,25000,,450,50,,1,2,0x00008100,7,2,2,2,12,1,12,{},{},{}
-1804,Knuckle_Duster_,Knuckle Dusters,5,25000,,450,50,,1,3,0x00008100,7,2,2,2,12,1,12,{},{},{}
-1805,Hora,Studded Knuckles,5,32000,,450,65,,1,2,0x00008100,7,2,2,2,12,1,12,{},{},{}
-1806,Hora_,Studded Knuckles,5,32000,,450,65,,1,3,0x00008100,7,2,2,2,12,1,12,{},{},{}
-1807,Fist,Fist,5,53000,,650,115,,1,0,0x00008100,7,2,2,3,24,1,12,{},{},{}
-1808,Fist_,Fist,5,53000,,650,115,,1,1,0x00008100,7,2,2,3,24,1,12,{},{},{}
-1809,Claw,Claw,5,67000,,500,86,,1,1,0x00008100,7,2,2,3,24,1,12,{ bonus bStr,2; },{},{}
-1810,Claw_,Claw,5,67000,,500,86,,1,2,0x00008100,7,2,2,3,24,1,12,{ bonus bStr,2; },{},{}
-1811,Finger,Finger,5,58000,,500,97,,1,1,0x00008100,7,2,2,3,24,1,12,{},{},{}
-1812,Finger_,Finger,5,58000,,500,97,,1,2,0x00008100,7,2,2,3,24,1,12,{},{},{}
-1813,Kaiser_Knuckle,Kaiser Knuckle,5,20,,450,110,,1,0,0x00008100,7,2,2,4,36,1,12,{ 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; },{},{}
-1814,Berserk,Berserk,5,20,,500,120,,1,0,0x00008100,7,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{}
-1815,Claw_Of_Garm,Hatii Claw,5,20,,550,152,,1,1,0x00008100,7,2,2,4,70,1,12,{ bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; },{},{}
-1816,Berserk_,Berserk,5,20,,500,120,,1,1,0x00008100,7,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{}
-1817,Kaiser_Knuckle_C,Kaiser Knuckle,5,1,,0,159,,1,0,0x00008100,7,2,2,4,1,0,12,{ 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; },{},{}
-1818,Magma_Fist,Magma Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; },{},{}
-1819,Icicle_Fist,Icicle Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; },{},{}
-1820,Electric_Fist,Electric Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; },{},{}
-1821,Seismic_Fist,Seismic Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; },{},{}
-1822,Combo_Battle_Glove,Combo Battle Glove,5,20,,500,30,,1,4,0x00008100,7,2,2,3,60,1,12,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; },{},{}
-1823,BF_Knuckle1,Valorous Battle Fist,5,20,,0,30,,1,0,0x00008100,7,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{}
-1824,BF_Knuckle2,Brave Battle Fist,5,20,,0,30,,1,0,0x00008100,7,2,2,3,80,1,12,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; },{},{}
-1825,Horn_Of_Hilthrion,Horn of Hillslion,5,20,,600,95,,1,3,0x00008000,2,2,2,3,60,1,12,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; },{},{}
-1826,Krieger_Knuckle1,Glorious Claw,5,20,,0,30,,1,0,0x00008100,7,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); } },{},{}
-1827,Krieger_Knuckle2,Glorious Fist,5,20,,0,30,,1,0,0x00008100,7,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } },{},{}
-1828,Monk_Knuckle,Monk Knuckle,5,20,,0,150,,1,0,0x00008100,7,2,2,4,0,0,12,{ bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; },{},{}
-1829,Fist_C,Fist,5,0,,0,150,,1,0,0x00008100,7,2,2,3,1,0,12,{ bonus2 bAddSize,Size_All,40; },{},{}
-// Instruments
-1901,Violin,Violin,5,4000,,700,50,,1,3,0x00080000,7,1,2,1,2,1,13,{},{},{}
-1902,Violin_,Violin,5,4000,,700,50,,1,4,0x00080000,7,1,2,1,2,1,13,{},{},{}
-1903,Mandolin,Mandolin,5,18000,,400,90,,1,2,0x00080000,7,1,2,2,14,1,13,{},{},{}
-1904,Mandolin_,Mandolin,5,18000,,400,90,,1,3,0x00080000,7,1,2,2,14,1,13,{},{},{}
-1905,Lute,Lute,5,24500,,500,105,,1,2,0x00080000,7,1,2,2,14,1,13,{},{},{}
-1906,Lute_,Lute,5,24500,,500,105,,1,3,0x00080000,7,1,2,2,14,1,13,{},{},{}
-1907,Guitar,Guitar,5,47000,,900,142,,1,0,0x00080000,7,1,2,3,27,1,13,{},{},{}
-1908,Guitar_,Guitar,5,47000,,900,142,,1,1,0x00080000,7,1,2,3,27,1,13,{},{},{}
-1909,Harp,Harp,5,62000,,900,114,,1,1,0x00080000,7,1,2,3,27,1,13,{ bonus bInt,2; },{},{}
-1910,Harp_,Harp,5,62000,,900,114,,1,2,0x00080000,7,1,2,3,27,1,13,{ bonus bInt,2; },{},{}
-1911,Guh_Moon_Goh,Gumoongoh,5,54000,,1300,126,,1,1,0x00080000,7,1,2,3,27,1,13,{},{},{}
-1912,Guh_Moon_Goh_,Gumoongoh,5,54000,,1300,126,,1,2,0x00080000,7,1,2,3,27,1,13,{},{},{}
-1913,Electronic_Guitar,Electric Guitar,5,20,,1800,110,,1,0,0x00080000,7,1,2,4,70,1,13,{ skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; },{},{}
-1914,Guitar_Of_Passion,Burning Passion Guitar,5,20,,900,110,,1,0,0x00080000,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Fire; },{},{}
-1915,Guitar_Of_Blue_Solo,Loner's Guitar,5,20,,900,110,,1,0,0x00080000,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Water; },{},{}
-1916,Guitar_Of_Vast_Land,Green Acre Guitar,5,20,,900,110,,1,0,0x00080000,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Earth; },{},{}
-1917,Guitar_Of_Gentle_Breeze,Gentle Breeze Guitar,5,20,,900,110,,1,0,0x00080000,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Wind; },{},{}
-1918,Oriental_Lute,Oriental Lute,5,20,,1200,150,,1,0,0x00080000,7,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{}
-1919,Base_Guitar,Bass Guitar,5,20,,1500,130,,1,1,0x00080000,2,1,2,3,70,1,13,{ bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; },{},{}
-1920,Berserk_Guitar,Berserk Guitar,5,20,,1800,10,,1,0,0x00080000,2,1,2,4,70,1,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{}
-1921,Guh_Moon_Gom,Gun Moon Gom,5,20,,0,120,,1,0,0x00080000,7,1,2,1,0,0,13,{ bonus2 bAddClass,Class_All,50; },{},{}
-1922,Oriental_Lute_,Oriental Lute,5,20,,1200,150,,1,2,0x00080000,7,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{}
-1923,BF_Instrument1,Valorous Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,7,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1924,BF_Instrument2,Brave Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,7,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{}
-1925,Cello,Cello,5,20,,700,110,,1,3,0x00080000,2,1,2,3,70,1,13,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{}
-1926,Harp_Of_Nepenthes,Harp of Nepenthes,5,20,,1000,120,,1,2,0x00080000,2,1,2,4,60,1,13,{ bonus bInt,2; if( getrefine()>9 ) { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; } else { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; } },{},{}
-1927,Krieger_Instrument1,Glorious Guitar,5,20,,0,50,,1,0,0x00080000,7,1,2,4,80,1,13,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{}
-1928,Berserk_Guitar_I,Spirited Guitar,5,0,,0,40,,1,0,0x00080000,2,1,2,4,0,0,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{}
-1929,Guitar_C,Guitar,5,0,,0,177,,1,0,0x00080000,7,1,2,3,1,0,13,{ bonus2 bAddSize,Size_All,40; },{},{}
-// Whips
-1950,Rope,Rope,5,2500,,400,45,,2,3,0x00080000,7,0,2,1,3,1,14,{},{},{}
-1951,Rope_,Rope,5,2500,,400,45,,2,4,0x00080000,7,0,2,1,3,1,14,{},{},{}
-1952,Line,Whip,5,12000,,300,80,,2,2,0x00080000,7,0,2,2,16,1,14,{},{},{}
-1953,Line_,Whip,5,12000,,300,80,,2,3,0x00080000,7,0,2,2,16,1,14,{},{},{}
-1954,Wire,Wire Whip,5,17500,,1000,95,,2,2,0x00080000,7,0,2,2,16,1,14,{},{},{}
-1955,Wire_,Wire Whip,5,17500,,1000,95,,2,3,0x00080000,7,0,2,2,16,1,14,{},{},{}
-1956,Rante,Rante Whip,5,32000,,900,135,,2,0,0x00080000,7,0,2,3,30,1,14,{},{},{}
-1957,Rante_,Rante Whip,5,32000,,900,135,,2,1,0x00080000,7,0,2,3,30,1,14,{},{},{}
-1958,Tail,Tail Whip,5,41000,,700,105,,2,1,0x00080000,7,0,2,3,30,1,14,{ bonus bLuk,3; },{},{}
-1959,Tail_,Tail Whip,5,41000,,700,105,,2,2,0x00080000,7,0,2,3,30,1,14,{ bonus bLuk,3; },{},{}
-1960,Whip,Whip,5,38000,,700,120,,2,1,0x00080000,7,0,2,3,30,1,14,{},{},{}
-1961,Whip_,Whip,5,38000,,700,120,,2,2,0x00080000,7,0,2,3,30,1,14,{},{},{}
-1962,Lariat,Lariat Whip,5,20,,400,100,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bDex,5; bonus bAgi,1; },{},{}
-1963,Rapture_Rose,Rapture Rose,5,20,,300,115,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; },{},{}
-1964,Chemeti,Chemeti Whip,5,20,,700,135,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; },{},{}
-1965,Whip_Of_Red_Flame,Red Flame Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Fire; },{},{}
-1966,Whip_Of_Ice_Piece,Icicle Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Water; },{},{}
-1967,Whip_Of_Earth,Gaia Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Earth; },{},{}
-1968,Jump_Rope,Skipping Rope,5,20,,400,120,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bCritical,20; },{},{}
-1969,Bladed_Whip,Blade Whip,5,20,,1200,140,,2,0,0x00080000,7,0,2,4,30,1,14,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{}
-1970,Queen's_Whip,Queen's Whip,5,20,,1100,150,,2,0,0x00080000,7,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-1971,Electric_Wire,Electric Wire,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Wind; },{},{}
-1972,Electric_Eel,Electric Eel,5,20,,2000,100,,2,2,0x00080000,2,0,2,4,70,1,14,{ 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; },{},{}
-1973,Sea_Witch_Foot,Sea Witch's Foot,5,20,,1500,110,,2,1,0x00080000,2,0,2,4,70,1,14,{ bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; },{},{}
-1974,Carrot_Whip,Carrot Whip,5,20,,1300,185,,2,0,0x00080000,2,0,2,4,70,1,14,{ if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; },{},{}
-1975,Queen_Is_Whip,Queen Is Whip,5,20,,0,120,,2,0,0x00080000,7,0,2,1,0,0,14,{ bonus2 bAddClass,Class_All,50; },{},{}
-1976,Queen's_Whip_,Queen's Whip,5,20,,1100,150,,2,2,0x00080000,7,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-1977,BF_Whip1,Valorous Battle Lariat,5,20,,0,50,,2,0,0x00080000,7,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1978,BF_Whip2,Brave Battle Lariat,5,20,,0,50,,2,0,0x00080000,7,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{}
-1979,Stem_Of_Nepenthes,Stem of Nepenthes,5,20,,1000,120,,2,2,0x00080000,2,0,2,4,60,1,14,{ bonus bInt,2; if( getrefine()>=9 ) { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; } else { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; } },{},{}
-1980,Whip_Of_Balance,Whip of Balance,5,20,,700,110,,2,3,0x00080000,2,0,2,3,70,1,14,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{}
-1981,Krieger_Whip1,Glorious Lariat,5,20,,0,50,,2,0,0x00080000,7,0,2,4,80,1,14,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{}
-1982,Phenomena_Whip,Phenomena Whip,5,20,,0,160,,2,0,0x00080000,7,0,2,4,0,0,14,{ bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; },{},{}
-1983,Rante_C,Rante Whip,5,0,,0,170,,2,0,0x00080000,7,0,2,3,1,0,14,{ bonus2 bAddSize,Size_All,40; },{},{}
-// Additional 2-Handed Staffs
-2000,Destruction_Rod,Staff of Destruction,5,20,,2500,130,,1,1,0x00000200,2,2,34,4,80,1,23,{ 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; },{},{}
-2001,Divine_Cross,Divine Cross,5,20,,1500,120,,1,0,0x00008100,7,2,34,4,70,1,23,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{}
-2002,Krieger_Twohand_Staff1,Glorious Destruction Staff,5,20,,0,70,,1,0,0x00018314,7,2,34,4,80,1,23,{ bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player,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; } },{},{}
-2003,Destruction_Rod_M,Staff of Destruction,5,20,,2500,130,,1,1,0x00000200,2,2,34,4,80,1,23,{ 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; },{},{}
-2004,Kronos,Kronos,5,20,,1000,30,,1,0,0x00010204,2,2,34,4,50,1,23,{ 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; }"; },{},{}
-2005,Dea_Staff,Dea Staff,5,20,,1000,30,,1,1,0x00008110,2,2,34,3,50,1,23,{ 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; }"; },{},{}
-2006,G_Staff_Of_Light,Staff Of Light,5,20,,1900,80,,1,0,0x00810204,7,2,34,4,60,1,23,{ /* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6; },{},{}
-// Shields
-//===================================================================
-2101,Guard,Guard,4,500,,300,,3,,0,0xFFFFFFFF,7,2,32,,0,1,1,{},{},{}
-2102,Guard_,Guard,4,500,,300,,3,,1,0xFFFFFFFF,7,2,32,,0,1,1,{},{},{}
-2103,Buckler,Buckler,4,14000,,600,,4,,0,0x000ED5F2,7,2,32,,0,1,2,{},{},{}
-2104,Buckler_,Buckler,4,14000,,600,,4,,1,0x000ED5F2,7,2,32,,0,1,2,{},{},{}
-2105,Shield,Shield,4,56000,,1300,,6,,0,0x00004082,7,2,32,,0,1,3,{},{},{}
-2106,Shield_,Shield,4,56000,,1300,,6,,1,0x00004082,7,2,32,,0,1,3,{},{},{}
-2107,Mirror_Shield,Mirror Shield,4,60000,,1000,,4,,0,0x00404082,7,2,32,,0,1,4,{ bonus bMdef,5; },{},{}
-2108,Mirror_Shield_,Mirror Shield,4,60000,,1000,,4,,1,0x00404082,7,2,32,,0,1,4,{ bonus bMdef,5; },{},{}
-2109,Memorize_Book,Memory Book,4,20,,1000,,3,,0,0x00810204,7,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{}
-2110,Holy_Guard,Holy Guard,4,85000,,1400,,5,,0,0x00004000,7,2,32,,68,0,4,{ bonus bVit,2; bonus bMdef,2; },{},{}
-2111,Herald_Of_GOD,Sacred Mission,4,128000,,1600,,5,,0,0x00004000,7,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{}
-2112,Novice_Guard,Novice Guard,4,1,,1,,3,,0,0x00000001,7,2,32,,0,0,1,{},{},{}
-2113,Novice_Shield,Novice Shield,4,5000,,1000,,3,,1,0x00000001,7,2,32,,40,1,3,{ 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; },{},{}
-2114,Stone_Buckler,Stone Buckler,4,30000,,1500,,3,,1,0xFFFFFFFE,7,2,32,,65,1,2,{ bonus2 bSubSize,Size_Large,5; },{},{}
-2115,Valkyrja's_Shield,Valkyrja's Shield,4,30000,,500,,3,,1,0xFFFFFFFE,7,2,32,,65,1,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{}
-2116,Angel's_Safeguard,Angelic Guard,4,10000,,400,,3,,1,0x00000001,7,2,32,,20,1,1,{ bonus2 bSubRace,RC_Demon,5; },{},{}
-2117,Arm_Guard,Arm Guard,4,10000,,150,,5,,0,0x02000000,7,2,32,,20,1,1,{},{},{}
-2118,Arm_Guard_,Arm Guard,4,10000,,150,,5,,1,0x02000000,7,2,32,,20,1,1,{},{},{}
-2119,Improved_Arm_Guard,Advanced Arm Guard,4,40000,,150,,4,,0,0x02000000,7,2,32,,50,1,1,{ bonus bMdef,5; },{},{}
-2120,Improved_Arm_Guard_,Advanced Arm Guard,4,40000,,150,,4,,1,0x02000000,7,2,32,,50,1,1,{ bonus bMdef,5; },{},{}
-2121,Memorize_Book_,Memory Book,4,20,,1000,,3,,1,0x00810204,7,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{}
-2122,Platinum_Shield,Platinum Shield,4,20,,1200,,5,,0,0xFFFFFFFE,2,2,32,,68,1,4,{ 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; },{},{}
-2123,Orleans_Server,Orleans's Server,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,32,,55,1,4,{ bonus bMdef,2; bonus bMagicDamageReturn,5; },{},{}
-2124,Thorny_Buckler,Thorny Buckler,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,32,,55,1,2,{ bonus bMdef,2; },{},{}
-2125,Strong_Shield,Strong Shield,4,20,,2500,,4,,1,0xFFFFFFFE,2,2,32,,75,1,4,{ 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; },{},{}
-2126,Guyak_Shield,Guyak Shield,4,20,,700,,3,,0,0xFFFFFFFE,7,2,32,,75,1,2,{ bonus bMdef,3; },{},{}
-2127,Secular_Mission,Secular Mission,4,20,,0,,10,,0,0xFFFFFFFF,7,2,32,,0,0,4,{ bonus2 bSubClass,Class_All,25; },{},{}
-2128,Herald_Of_GOD_,Sacred Mission,4,128000,,1600,,5,,1,0x00004000,7,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{}
-2129,Exorcism_Bible,Exorcism Bible,4,20,,600,,5,,0,0x00008100,7,2,32,,50,1,5,{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; },{},{}
-2130,Cross_Shield,Cross Shield,4,20,,2000,,6,,1,0x00004000,7,2,32,,80,1,4,{ bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; },{},{}
-2131,Magic_Study_Vol1,Magic Bible Vol1,4,20,,1000,,2,,1,0x00810204,2,2,32,,70,1,5,{ bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; },{},{}
-2132,Shelter_Resistance,Shell Of Resistance,4,20,,0,,9,,0,0xFFFFFFFF,7,2,32,,0,0,2,{ bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } },{},{}
-2133,Tournament_Shield,Tournament Shield,4,20,,1000,,5,,1,0x00004082,2,2,32,,50,1,4,{ bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5; },{},{}
-2134,Shield_Of_Naga,Shield of Naga,4,20,,500,,3,,1,0x00CFFF80,2,2,32,,70,1,2,{ bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; },{},{}
-2135,Shadow_Guard,Shadow Guard,4,20,,800,,4,,1,0x00020000,2,2,32,,70,1,2,{},{},{}
-2136,Cracked_Buckler,Cracked Buckler,4,0,,0,,5,,0,0xFFFFFFFF,7,2,32,,0,0,2,{ bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1; },{},{}
-2137,Valkyrja's_Shield_C,Neo Valkyrja's Shield,4,0,,0,,5,,0,0xFFFFFFFE,2,2,32,,95,0,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{}
-2138,Bradium_Shield,Bradium Shield,4,20,,1800,,5,,1,0x00CFFF80,2,2,32,,65,1,3,{ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; },{},{}
-2139,Flame_Thrower,Flame Thrower,4,20000,,2000,,60,,0,0x00000400,63,2,32,,99,0,1,{},{},{}
-// GM Shield
-2199,Ahura_Mazda,Ahura Mazdah,4,1,,10,,100,,0,0xFFFFFFFF,7,2,32,,1,1,0,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player,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; },{},{}
-// Headgears
-//===================================================================
-2201,Sunglasses,Sunglasses,4,5000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-2202,Sunglasses_,Sunglasses,4,5000,,100,,0,,1,0xFFFFFFFF,7,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-2203,Glasses,Glasses,4,4000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,3,{},{},{}
-2204,Glasses_,Glasses,4,4000,,100,,0,,1,0xFFFFFFFF,7,2,512,,0,0,3,{},{},{}
-2205,Diver's_Goggles,Diver Goggles,4,3500,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,10,{},{},{}
-2206,Wedding_Veil,Wedding Veil,4,23000,,100,,0,,0,0xFFFFFFFF,7,0,256,,0,1,44,{ bonus bMdef,5; },{},{}
-2207,Fancy_Flower,Fancy Flower,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,4,{ bonus2 bSubRace,RC_Plant,10; },{},{}
-2208,Ribbon,Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,17,{ bonus bMdef,3; },{},{}
-2209,Ribbon_,Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,17,{ bonus bMdef,3; },{},{}
-2210,Hair_Band,Hair Band,4,500,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,9,{},{},{}
-2211,Bandana,Bandana,4,400,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,6,{},{},{}
-2212,Eye_Bandage,Eye Patch,4,1000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,13,{},{},{}
-2213,Cat_Hairband,Kitty Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,2,{},{},{}
-2214,Bunny_Band,Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bLuk,2; },{},{}
-2215,Flower_Hairband,Flower Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,5,{},{},{}
-2216,Biretta,Biretta,4,9000,,100,,4,,0,0x00008110,7,2,256,,0,1,11,{},{},{}
-2217,Biretta_,Biretta,4,9000,,100,,4,,1,0x00008110,7,2,256,,0,1,11,{},{},{}
-2218,Flu_Mask,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{}
-2219,Flu_Mask_,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{}
-2220,Hat,Hat,4,1000,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{}
-2221,Hat_,Hat,4,1000,,200,,2,,1,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{}
-2222,Turban,Turban,4,4500,,300,,3,,0,0xFFFFFFFE,7,2,256,,0,1,7,{},{},{}
-2223,Turban_,Turban,4,4500,,300,,3,,1,0xFFFFFFFE,7,2,256,,0,1,7,{},{},{}
-2224,Goggle,Goggles,4,20,,300,,5,,0,0x000E5CEA,7,2,768,,0,1,1,{},{},{}
-2225,Goggle_,Goggles,4,20,,300,,5,,1,0x000E5CEA,7,2,768,,0,1,1,{},{},{}
-2226,Cap,Cap,4,12000,,400,,4,,0,0x000E5CEA,7,2,256,,0,1,14,{},{},{}
-2227,Cap_,Cap,4,12000,,400,,4,,1,0x000E5CEA,7,2,256,,0,1,14,{},{},{}
-2228,Helm,Helm,4,44000,,600,,6,,0,0x00004082,7,2,256,,0,1,40,{},{},{}
-2229,Helm_,Helm,4,44000,,600,,6,,1,0x00004082,7,2,256,,0,1,40,{},{},{}
-2230,Gemmed_Sallet,Gemmed Sallet,4,50000,,500,,4,,0,0x000654E2,7,2,256,,0,1,0,{ bonus bMdef,3; },{},{}
-2231,Gemmed_Sallet_,Gemmed Sallet,4,50000,,500,,4,,1,0x000654E2,7,2,256,,0,1,0,{ bonus bMdef,3; },{},{}
-2232,Circlet,Circlet,4,7500,,300,,3,,0,0x00818314,7,2,256,,0,1,18,{ bonus bMdef,3; },{},{}
-2233,Circlet_,Circlet,4,7500,,300,,3,,1,0x00818314,7,2,256,,0,1,18,{ bonus bMdef,3; },{},{}
-2234,Tiara,Tiara,4,20,,400,,4,,0,0xFFFFFFFE,7,0,256,,45,1,19,{ bonus bInt,2; },{},{}
-2235,Crown,Crown,4,20,,400,,4,,0,0xFFFFFFFE,7,1,256,,45,1,45,{ bonus bInt,2; },{},{}
-2236,Santa's_Hat,Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; },{},{}
-2237,Weird_Goatee,Bandit Beard,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,21,{},{},{}
-//2238,Weird_Moustache,Moustache,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,22,{},{},{}
-2239,One_Eyed_Glass,Monocle,4,10000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,23,{},{},{}
-2240,Beard,Beard,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,24,{},{},{}
-2241,Granpa_Beard,Grampa Beard,4,5000,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,25,{},{},{}
-2242,Luxury_Sunglasses,Purple Glasses,4,24000,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,26,{ bonus2 bResEff,Eff_Blind,1000; },{},{}
-2243,Spinning_Eyes,Geek Glasses,4,20000,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,1500; },{},{}
-2244,Big_Sis'_Ribbon,Big Ribbon,4,15000,,200,,2,,0,0xFFFFFFFE,7,2,256,,0,1,28,{ bonus bMdef,3; },{},{}
-2245,Sweet_Gents,Sweet Gent,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,29,{},{},{}
-2246,Golden_Gear,Golden Gear,4,20,,900,,5,,0,0xFFFFFFFE,7,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{}
-2247,Oldman's_Romance,Romantic Gent,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,31,{},{},{}
-2248,Western_Grace,Western Grace,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,32,{},{},{}
-2249,Coronet,Coronet,4,20,,300,,3,,0,0xFFFFFFFE,7,2,256,,0,1,33,{ bonus bInt,1; },{},{}
-2250,Fillet,Cute Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,34,{ bonus bMaxSP,20; },{},{}
-2251,Holy_Bonnet,Monk Hat,4,30000,,100,,5,,0,0x00008110,7,2,256,,0,1,35,{ bonus bMdef,3; },{},{}
-2252,Star_Sparkling,Wizard Hat,4,20,,300,,4,,0,0x00810204,7,2,256,,0,1,36,{ bonus bMaxSP,100; },{},{}
-2253,Sunflower,Sunflower,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{}
-2254,Angelic_Chain,Angel Wing,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,38,{ bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; },{},{}
-2255,Satanic_Chain,Evil Wing,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,39,{ bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; },{},{}
-2256,Magestic_Goat,Majestic Goat,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,1; },{},{}
-2257,Snowy_Horn,Unicorn Horn,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,42,{},{},{}
-2258,Sharp_Gear,Spiky Band,4,20,,1000,,6,,0,0x0066D5F2,7,2,256,,50,1,43,{},{},{}
-2259,Mini_Propeller,Mini Propeller,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,46,{},{},{}
-2260,Mini_Glasses,Mini Glasses,4,28000,,100,,1,,0,0xFFFFFFFE,7,2,512,,0,0,47,{},{},{}
-2261,Prontera_Army_Cap,Army Cap,4,20,,400,,4,,0,0x000654E2,7,2,256,,0,1,48,{},{},{}
-2262,Pierrot_Nose,Clown Nose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,49,{},{},{}
-2263,Gangster_Patch,Zorro Masque,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,50,{},{},{}
-2264,Munak_Turban,Munak Hat,4,20,,300,,5,,0,0xFFFFFFFF,7,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{}
-2265,Ganster_Mask,Gangster Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,52,{ bonus2 bResEff,Eff_Silence,1500; },{},{}
-2266,Iron_Cane,Iron Cain,4,20,,300,,1,,0,0x00004082,7,2,1,,50,0,53,{},{},{}
-2267,Cigar,Cigarette,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,54,{ bonus2 bSubRace,RC_Insect,3; },{},{}
-2268,Smoking_Pipe,Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus2 bSubRace,RC_Insect,3; },{},{}
-2269,Centimental_Flower,Romantic Flower,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-2270,Centimental_Leaf,Romantic Leaf,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,57,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-2271,Jack_A_Dandy,Jack be Dandy,4,45000,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,58,{},{},{}
-2272,Stop_Post,Stop Post,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,0,1,59,{},{},{}
-2273,Doctor_Cap,Doctor Band,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,60,{ bonus bInt,1; },{},{}
-2274,Ghost_Bandana,Ghost Bandana,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,0,1,61,{ bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10; },{},{}
-2275,Red_Bandana,Red Bandana,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,62,{},{},{}
-2276,Eagle_Eyes,Angled Glasses,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,63,{},{},{}
-2277,Nurse_Cap,Nurse Cap,4,20,,100,,2,,0,0x00008110,7,2,256,,0,1,64,{ bonus bInt,1; },{},{}
-2278,Mr_Smile,Mr. Smile,4,60,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,65,{},{},{}
-2279,Bomb_Wick,Bomb Wick,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,66,{},{},{}
-2280,Sahkkat,Sakkat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,67,{ bonus bAgi,1; },{},{}
-2281,Phantom_Of_Opera,Opera Masque,4,20,,200,,2,,0,0xFFFFFFFE,7,2,513,,0,0,68,{},{},{}
-2282,Spirit_Chain,Halo,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,69,{ bonus2 bSubEle,Ele_Holy,15; },{},{}
-2283,Ear_Mufs,Ear Muffs,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,70,{ bonus2 bResEff,Eff_Curse,1000; },{},{}
-2284,Antler,Antlers,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,0,1,71,{},{},{}
-2285,Apple_Of_Archer,Apple of Archer,4,20,,200,,0,,0,0xFFFFFFFE,7,2,256,,30,1,72,{ bonus bDex,3; },{},{}
-2286,Elven_Ears,Elven Ears,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,70,0,73,{},{},{}
-2287,Pirate_Bandana,Pirate Bandana,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,74,{ bonus bStr,1; },{},{}
-2288,Mr_Scream,Mr. Scream,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,75,{},{},{}
-2289,Poo_Poo_Hat,Poo Poo Hat,4,20,,700,,0,,0,0xFFFFFFFF,7,2,256,,0,0,76,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-2290,Funeral_Costume,Funeral Hat,4,3000,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,77,{},{},{}
-2291,Masquerade,Masquerade,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-2292,Welding_Mask,Welding Mask,4,20,,300,,2,,0,0x00040420,7,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; },{},{}
-2293,Pretend_Murdered,Pretend Murdered,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,80,{},{},{}
-2294,Star_Dust,Stellar,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,81,{},{},{}
-2295,Blinker,Blinker,4,1500,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-2296,Binoculars,Binoculars,4,20,,100,,1,,0,0x00080808,7,2,512,,50,0,83,{ bonus bDex,1; },{},{}
-2297,Goblini_Mask,Goblin Mask,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,84,{},{},{}
-2298,Green_Feeler,Green Feeler,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,0,85,{},{},{}
-2299,Viking_Helm,Orc Helm,4,20,,500,,5,,0,0x000654E2,7,2,256,,0,1,86,{},{},{}
-// Armors
-//===================================================================
-2301,Cotton_Shirt,Cotton Shirt,4,10,,100,,1,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2302,Cotton_Shirt_,Cotton Shirt,4,10,,100,,1,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2303,Leather_Jacket,Jacket,4,200,,200,,2,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2304,Leather_Jacket_,Jacket,4,200,,200,,2,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2305,Adventure_Suit,Adventurer's Suit,4,1000,,300,,3,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2306,Adventurere's_Suit_,Adventurer's Suit,4,1000,,300,,3,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2307,Mantle,Mantle,4,10000,,600,,4,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2308,Mantle_,Mantle,4,10000,,600,,4,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2309,Coat,Coat,4,22000,,1200,,5,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2310,Coat_,Coat,4,22000,,1200,,5,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2311,Mink_Coat,Mink Coat,4,20,,2300,,6,,1,0xFFFFFFFE,7,2,16,,30,1,0,{},{},{}
-2312,Padded_Armor,Padded Armor,4,48000,,2800,,7,,0,0x000654E2,7,2,16,,0,1,0,{},{},{}
-2313,Padded_Armor_,Padded Armor,4,48000,,2800,,7,,1,0x000654E2,7,2,16,,0,1,0,{},{},{}
-2314,Chain_Mail,Chain Mail,4,65000,,3300,,8,,0,0x000654E2,7,2,16,,0,1,0,{},{},{}
-2315,Chain_Mail_,Chain Mail,4,65000,,3300,,8,,1,0x000654E2,7,2,16,,0,1,0,{},{},{}
-2316,Plate_Armor,Full Plate,4,80000,,4500,,10,,0,0x00004082,7,2,16,,40,1,0,{},{},{}
-2317,Plate_Armor_,Full Plate,4,80000,,4500,,10,,1,0x00004082,7,2,16,,40,1,0,{},{},{}
-2318,Clothes_Of_The_Lord,Lord's Clothes,4,20,,2500,,8,,1,0x00040420,7,2,16,,70,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2319,Glittering_Clothes,Glittering Jacket,4,20,,2500,,7,,1,0xFFFFFFFE,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; },{},{}
-2320,Formal_Suit,Formal Suit,4,20,,300,,5,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2321,Silk_Robe,Silk Robe,4,8000,,400,,3,,0,0x0085C7B6,7,2,16,,0,1,0,{ bonus bMdef,10; },{},{}
-2322,Silk_Robe_,Silk Robe,4,8000,,400,,3,,1,0x0085C7B6,7,2,16,,0,1,0,{ bonus bMdef,10; },{},{}
-2323,Scapulare,Scapulare,4,6500,,400,,4,,0,0x00008110,7,2,16,,0,1,0,{},{},{}
-2324,Scapulare_,Scapulare,4,6500,,400,,4,,1,0x00008110,7,2,16,,0,1,0,{},{},{}
-2325,Saint_Robe,Saint's Robe,4,54000,,600,,6,,0,0x00048530,7,2,16,,0,1,0,{ bonus bMdef,5; },{},{}
-2326,Saint_Robe_,Saint's Robe,4,54000,,600,,6,,1,0x00048530,7,2,16,,0,1,0,{ bonus bMdef,5; },{},{}
-2327,Holy_Robe,Holy Robe,4,20,,1700,,7,,0,0x00008110,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{}
-2328,Wooden_Mail,Wooden Mail,4,5500,,1000,,4,,0,0x000444A2,7,2,16,,0,1,0,{},{},{}
-2329,Wooden_Mail_,Wooden Mail,4,5500,,1000,,4,,1,0x000444A2,7,2,16,,0,1,0,{},{},{}
-2330,Tights,Tights,4,71000,,500,,6,,0,0x00080808,7,2,16,,45,1,0,{ bonus bDex,1; },{},{}
-2331,Tights_,Tights,4,71000,,500,,6,,1,0x00080808,7,2,16,,45,1,0,{ bonus bDex,1; },{},{}
-2332,Silver_Robe,Silver Robe,4,7000,,700,,4,,0,0x00810204,7,2,16,,0,1,0,{},{},{}
-2333,Silver_Robe_,Silver Robe,4,7000,,700,,4,,1,0x00810204,7,2,16,,0,1,0,{},{},{}
-2334,Mage_Coat,Mage Coat,4,20,,600,,5,,0,0x00810204,7,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2335,Thief_Clothes,Thief Clothes,4,74000,,100,,6,,0,0x02021040,7,2,16,,0,1,0,{ bonus bAgi,1; },{},{}
-2336,Thief_Clothes_,Thief Clothes,4,74000,,100,,6,,1,0x02021040,7,2,16,,0,1,0,{ bonus bAgi,1; },{},{}
-2337,Ninja_Suit,Ninja Suit,4,20,,1500,,7,,0,0x02021040,7,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{}
-2338,Wedding_Dress,Wedding Dress,4,43000,,500,,0,,0,0xFFFFFFFE,7,2,16,,0,1,0,{ bonus bMdef,15; },{},{}
-2339,G_Strings,Pantie,4,1000,,100,,4,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2340,Novice_Breast,Novice Breastplate,4,89000,,500,,4,,1,0x00000001,7,2,16,,10,1,0,{},{},{}
-2341,Full_Plate_Armor,Legion Plate Armor,4,94000,,5500,,11,,0,0x00004000,7,2,16,,70,1,0,{},{},{}
-2342,Full_Plate_Armor_,Legion Plate Armor,4,102500,,5500,,11,,1,0x00004000,7,2,16,,70,1,0,{},{},{}
-2343,Robe_Of_Casting,Robe of Cast,4,124800,,1100,,5,,0,0x00810200,7,2,16,,75,1,0,{ bonus bCastrate,-3; bonus bMdef,4; },{},{}
-2344,Flame_Sprits_Armor,Lucius's Fierce Armor of Volcano,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{}
-2345,Flame_Sprits_Armor_,Lucius's Fierce Armor of Volcano,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{}
-2346,Water_Sprits_Armor,Saphien's Armor of Ocean,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{}
-2347,Water_Sprits_Armor_,Saphien's Armor of Ocean,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{}
-2348,Wind_Sprits_Armor,Aebecee's Raging Typhoon Armor,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{}
-2349,Wind_Sprits_Armor_,Aebecee's Raging Typhoon Armor,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{}
-2350,Earth_Sprits_Armor,Claytos Cracking Earth Armor,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{}
-2351,Earth_Sprits_Armor_,Claytos Cracking Earth Armor,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{}
-2352,Novice_Plate,Tattered Novice Ninja Suit,4,1,,1,,4,,0,0x00000001,7,2,16,,0,0,0,{},{},{}
-2353,Odin's_Blessing,Odin's Blessing,4,30000,,2500,,6,,1,0xFFFFFFFE,7,2,16,,65,1,0,{},{},{}
-2354,Goibne's_Armor,Goibne's Armor,4,50000,,3500,,7,,0,0xFFFFFFFE,7,2,16,,54,1,0,{ bonus bVit,2; bonus bMaxHPrate,10; },{},{}
-2355,Angel's_Protection,Angelic Protection,4,10000,,600,,4,,1,0x00000001,7,2,16,,40,1,0,{ bonus bMdef,20; },{},{}
-2356,Vestment_Of_Grace,Blessed Holy Robe,4,20,,2500,,5,,1,0x00008100,7,2,16,,70,1,0,{ bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; },{},{}
-2357,Valkyrie_Armor,Valkyrian Armor,4,0,,2800,,6,,1,0xFFFFFFFE,2,2,16,,1,1,0,{ 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; },{},{}
-2358,Dress_Of_Angel,Angel's Dress,4,20,,1000,,5,,0,0xFFFFFFFF,7,2,16,,1,0,0,{ bonus bLuk,4; },{},{}
-2359,Ninja_Suit_,Ninja Suit,4,20,,1500,,7,,1,0x02021040,7,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{}
-2360,Robe_Of_Casting_,Robe of Cast,4,124800,,1100,,5,,1,0x00810200,7,2,16,,75,1,0,{ bonus bCastrate,-3; bonus bMdef,4; },{},{}
-//2361,Blue_Aodai,Blue Robe,4,20,,500,,0,,0,0xFFFFFFFE,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-//2362,Red_Aodai,Red Robe,4,20,,500,,0,,0,0xFFFFFFFE,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-//2363,White_Aodai,White Robe,4,20,,500,,0,,0,0x00000001,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-2364,Meteo_Plate_Armor,Meteo Plate Armor,4,20,,3000,,10,,1,0x000444A2,2,2,16,,55,1,0,{ bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; },{},{}
-2365,Orleans_Gown,Orleans's Gown,4,20,,300,,2,,1,0xFFFFFFFE,2,2,16,,55,1,0,{ bonus bCastrate,15; bonus bNoCastCancel; },{},{}
-2366,Divine_Cloth,Divine Cloth,4,20,,1500,,6,,1,0xFFFFFFFE,2,2,16,,55,1,0,{ 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; },{},{}
-2367,Sniping_Suit,Sniping Suit,4,20,,750,,5,,1,0x00000800,2,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{}
-2368,Golden_Armor,Golden Armor,4,20,,2000,,4,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bMdef,4; },{},{}
-2369,Freyja_Overcoat,Freyja Overcoat,4,0,,500,,12,,0,0xFFFFFFFE,7,2,16,,0,0,0,{ bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-2370,Used_Mage_Coat,Used Mage Coat,4,0,,0,,15,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1; },{},{}
-2371,G_Strings_,Pantie,4,1000,,100,,4,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{}
-2372,Mage_Coat_,Mage Coat,4,20,,600,,5,,1,0x00810204,7,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2373,Holy_Robe_,Holy Robe,4,20,,1700,,7,,1,0x00008110,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{}
-2374,Diabolus_Robe,Diabolus Robe,4,20,,300,,6,,1,0x00098B1C,2,2,16,,55,1,0,{ bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; },{},{}
-2375,Diabolus_Armor,Diabolus Armor,4,20,,600,,7,,1,0x000654E2,2,2,16,,55,1,0,{ bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; },{},{}
-2376,Assaulter_Plate,Assaulter Plate,4,10,,0,,7,,1,0x006444A2,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2377,Elite_Engineer_Armor,Elite Engineer Armor,4,10,,0,,7,,1,0x00040420,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2378,Assassin_Robe,Assassin Robe,4,10,,0,,7,,1,0x02021040,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2379,Warlock_Battle_Robe,Warlock's Battle Robe,4,10,,0,,3,,1,0x00810204,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2380,Medic_Robe,Medic's Robe,4,10,,0,,3,,1,0x00008110,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2381,Elite_Archer_Suit,Elite Archer Suit,4,10,,0,,3,,1,0x00080808,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2382,Elite_Shooter_Suit,Elite Shooter Suit,4,10,,0,,3,,1,0x41000000,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2383,Brynhild,Brynhild,4,20,,400,,10,,0,0xFFFFFFFF,7,2,16,,94,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback; },{},{}
-2384,Spritual_Tunic,Spiritual Tunic,4,20,,0,,10,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ 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; },{},{}
-2385,Recuperative_Armor,Recuperative Armor,4,20,,0,,12,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; },{},{ heal 0,-100; }
-2386,Chameleon_Armor,Chameleon Armor,4,20,,1700,,5,,0,0x00CFFF80,2,2,16,,70,1,0,{ 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; },{},{}
-2387,Sprint_Mail,Sprint Mail,4,20,,1000,,3,,1,0x00CFFF80,2,2,16,,70,1,0,{ bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; },{},{}
-2388,Kandura,Kandura,4,20,,300,,4,,1,0x00001000,2,2,16,,70,1,0,{ bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; },{},{}
-2389,Armor_Of_Naga,Armor of Naga,4,20,,1000,,5,,1,0x00CFFF80,2,2,16,,70,1,0,{ bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-2390,Improved_Tights,Improved Tights,4,20,,400,,6,,1,0x00080808,2,2,16,,75,1,0,{ bonus bMdef,2; bonus bFlee2,3; },{},{}
-2391,Life_Link,Life Link,4,20,,3500,,9,,1,0x00004082,2,2,16,,82,1,0,{ bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; },{},{}
-2392,Old_Pant,Old Green Pantie,4,0,,0,,10,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; },{},{}
-2393,N_Adventurer's_Suit,Novice Adventurer's Suit,4,0,,0,,8,,1,0xFFFFFFFF,7,2,16,,0,0,0,{},{},{}
-2394,Krieger_Suit1,Glorious Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,81,1,0,{ bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; },{},{}
-2395,Krieger_Suit2,Glorious Popularized Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,61,1,0,{ bonus bMaxHP,600; bonus bSPrecovRate,10; },{},{}
-2396,Krieger_Suit3,Glorious Mass-Production Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,0,1,0,{ bonus bMaxHP,500; },{},{}
-2397,Incredible_Coat,Incredible Event Resignation Coat,4,10,,900,,2,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{}
-2398,Sniping_Suit_M,Sniping Suit,4,20,,750,,5,,1,0x00000800,2,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{}
-2399,Dragon_Vest,Dragon Vest,4,20,,500,,3,,1,0xFFFFFFFE,2,2,16,,0,1,0,{ bonus bMdef,3; },{},{}
-// Footgears
-//===================================================================
-2401,Sandals,Sandals,4,400,,200,,1,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{}
-2402,Sandals_,Sandals,4,400,,200,,1,,1,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{}
-2403,Shoes,Shoes,4,3500,,400,,2,,0,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{}
-2404,Shoes_,Shoes,4,3500,,400,,2,,1,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{}
-2405,Boots,Boots,4,18000,,600,,4,,0,0x016E5CEA,7,2,64,,0,1,0,{},{},{}
-2406,Boots_,Boots,4,18000,,600,,4,,1,0x016E5CEA,7,2,64,,0,1,0,{},{},{}
-2407,Chrystal_Pumps,Crystal Pumps,4,20,,100,,0,,0,0xFFFFFFFE,7,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{}
-2408,Cuffs,Shackles,4,5000,,3000,,3,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{}
-2409,Spiky_Heel,High Heels,4,8500,,600,,2,,0,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMdef,5; },{},{}
-2410,Sleipnir,Sleipnir,4,20,,3500,,5,,0,0xFFFFFFFF,7,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; },{},{}
-2411,Grave,Greaves,4,48000,,750,,5,,0,0x00004080,7,2,64,,65,1,0,{},{},{}
-2412,Grave_,Greaves,4,54000,,750,,5,,1,0x00004080,7,2,64,,65,1,0,{},{},{}
-2413,Safty_Boots,Safety Boots,4,34000,,350,,6,,0,0x00004082,7,2,64,,30,0,0,{},{},{}
-2414,Novice_Boots,Novice Slippers,4,1,,1,,2,,0,0x00000001,7,2,64,,0,0,0,{},{},{}
-2415,Slipper,Bunny Slipper,4,34000,,300,,3,,1,0xFFFFFFFE,7,0,64,,30,1,0,{ bonus bLuk,3; bonus bMdef,3; },{},{}
-2416,Novice_Shoes,Novice Shoes,4,35000,,500,,2,,1,0x00000001,7,2,64,,40,1,0,{ bonus bMaxHPrate,5; },{},{}
-2417,Fricco_Shoes,Fricco's Shoes,4,30000,,500,,3,,0,0xFFFFFFFE,7,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{}
-2418,Vidar's_Boots,Vidar's Boots,4,30000,,650,,4,,0,0xFFFFFFFE,7,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{}
-2419,Goibne's_Combat_Boots,Goibne's Greaves,4,30000,,700,,4,,0,0xFFFFFFFE,7,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-2420,Angel's_Arrival,Angel's Reincarnation,4,10000,,300,,2,,1,0x00000001,7,2,64,,25,1,0,{ bonus bMaxHP,100; },{},{}
-2421,Valkyrie_Shoes,Valkyrian Shoes,4,0,,500,,4,,1,0xFFFFFFFE,2,2,64,,1,1,0,{ 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); },{},{}
-2422,High_Fashion_Sandals,High Fashion Sandals,4,24000,,200,,2,,1,0x00818314,7,2,64,,40,1,0,{ bonus bMdef,10; },{},{}
-2423,Variant_Shoes,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,2,2,64,,85,1,0,{ bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; },{},{}
-2424,Tidal_Shoes,Tidal Shoes,4,20,,300,,3,,1,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-2425,Black_Leather_Boots,Black Leather Boots,4,20,,500,,4,,0,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; },{},{}
-2426,Shadow_Walk,Shadow Walk,4,20,,2000,,0,,0,0xFFFFFFFE,2,2,64,,75,1,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; },{},{}
-2427,Golden_Shoes,Golden Shoes,4,20,,300,,4,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMdef,4; },{},{}
-2428,Freyja_Boots,Freyja Boots,4,0,,300,,10,,0,0xFFFFFFFE,7,2,64,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-2429,Iron_Boots01,Iron Boots,4,0,,1500,,5,,0,0x000E5CEA,7,2,64,,0,1,0,{},{},{}
-2430,Iron_Boots02,Iron Boots,4,0,,800,,5,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{}
-2431,Valley_Shoes,Valley Shoes,4,20,,0,,10,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMaxHPRate,7; bonus bMaxSPRate,7; },{},{}
-2432,Spiky_Heel_,High Heels,4,8500,,600,,2,,1,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMdef,5; },{},{}
-2433,Diabolus_Boots,Diabolus Boots,4,20,,250,,4,,1,0x00CFFF80,2,2,64,,0,1,0,{ bonus bMaxHP,(BaseLevel*10); },{},{}
-2434,Black_Leather_Boots_,Black Leather Boots,4,20,,500,,4,,1,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; },{},{}
-2435,Battle_Greave,Battle Greaves,4,10,,0,,4,,1,0x026654E2,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2436,Combat_Boots,Combat Boots,4,10,,0,,3,,1,0x00898B1C,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2437,Battle_Boots,Battle Boots,4,10,,0,,3,,1,0x41000000,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2438,Paw_Of_Cat,Paw Of Cat,4,10,,300,,0,,0,0xFFFFFFFF,7,2,64,,80,1,0,{ bonus bFlee,5; bonus bAgi,1; },{},{}
-2439,Refresh_Shoes,Refresh Shoes,4,20,,0,,9,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; },{},{}
-2440,Sprint_Shoes,Sprint Shoes,4,20,,300,,2,,1,0x00CFFF80,2,2,64,,70,1,0,{ bonus bAgi,1; bonus bSPrecovRate,5; },{},{}
-2441,Beach_Sandal,Beach Sandals,4,20,,200,,0,,0,0xFFFFFFFF,7,2,64,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; },{},{}
-2442,Boots_Perforated,Red Stocking Boots,4,0,,0,,7,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1; },{},{}
-2443,Fish_Shoes,Fisher's Boots,4,10,,250,,0,,0,0xFFFFFFFF,7,2,64,,0,0,0,{},{},{}
-2444,Krieger_Shoes1,Glorious Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,81,1,0,{ bonus bMaxHPRate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; },{},{}
-2445,Krieger_Shoes2,Glorious Popularized Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,61,1,0,{ bonus bMaxHPRate,5; bonus bMaxSPRate,5; },{},{}
-2446,Krieger_Shoes3,Glorious Mass-Production Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMaxHPRate,5; },{},{}
-2447,Military_Boots,Army Boots,4,0,,1000,,5,,0,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{}
-2448,Air_Boss,Air Boss,4,0,,500,,2,,0,0xFFFFFFFF,7,2,64,,0,1,0,{ bonus bAgi,1; },{},{}
-2449,Variant_Shoes_M,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,2,2,64,,85,1,0,{ bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; },{},{}
-2450,Vital_Tree_Shoes,Vital Tree Shoes,4,20,,500,,4,,0,0xFFFFFFFE,2,2,64,,60,1,0,{ bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; },{},{}
-// Garments
-//===================================================================
-2501,Hood,Hood,4,1000,,200,,1,,0,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{}
-2502,Hood_,Hood,4,1000,,200,,1,,1,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{}
-2503,Muffler,Muffler,4,5000,,400,,2,,0,0xFFFFFFFE,7,2,4,,0,1,0,{},{},{}
-2504,Muffler_,Muffler,4,5000,,400,,2,,1,0xFFFFFFFE,7,2,4,,0,1,0,{},{},{}
-2505,Manteau,Manteau,4,32000,,600,,4,,0,0x006654E2,7,2,4,,0,1,0,{},{},{}
-2506,Manteau_,Manteau,4,32000,,600,,4,,1,0x006654E2,7,2,4,,0,1,0,{},{},{}
-2507,Cape_Of_Ancient_Lord,Ancient Cape,4,82000,,600,,2,,0,0xFFFFFFFE,7,2,4,,40,1,0,{ bonus bAgi,1; },{},{}
-2508,Ragamuffin_Cape,Ragamuffin Manteau,4,56000,,500,,1,,0,0xFFFFFFFE,7,2,4,,0,1,0,{ bonus bUnbreakableGarment; bonus bMdef,10; },{},{}
-2509,Clack_Of_Servival,Survivor's Manteau,4,20000,,550,,0,,0,0x00810204,7,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{}
-2510,Novice_Hood,Somber Novice Hood,4,1,,1,,2,,0,0x00000001,7,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,20; },{},{}
-2511,Skeleton's_Cape,Skeleton Manteau,4,5000,,700,,1,,0,0xFFFFFFFE,7,2,4,,75,1,0,{ bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; },{},{}
-2512,Novice_Manteau,Novice Manteau,4,50000,,500,,2,,1,0x00000001,7,2,4,,40,1,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2513,Celestial_Robe,Heavenly Maiden Robe,4,20,,500,,3,,1,0xFFFFFFFE,7,2,4,,80,1,0,{},{},{}
-2514,Pauldron,Pauldron,4,20,,800,,5,,1,0x000654E2,7,2,4,,80,1,0,{},{},{}
-2515,Wing_Of_Eagle,Eagle Wing,4,20000,,300,,1,,1,0x00810204,7,2,4,,85,1,0,{},{},{}
-2516,Falcon_Robe,Falcon Muffler,4,30000,,400,,3,,0,0xFFFFFFFE,7,2,4,,65,1,0,{ bonus bFlee,15; bonus bFlee2,5; },{},{}
-2517,Vali's_Manteau,Vali's Manteau,4,30000,,600,,4,,0,0xFFFFFFFE,7,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2518,Morpheus's_Shawl,Morpheus's Shawl,4,30000,,600,,3,,0,0xFFFFFFFE,7,2,4,,33,1,0,{ bonus bMaxSPrate,10; bonus bMdef,3; },{},{}
-2519,Morrigane's_Manteau,Morrigane's Manteau,4,30000,,600,,3,,0,0xFFFFFFFE,7,2,4,,61,1,0,{ bonus bLuk,2; bonus bFlee2,8; },{},{}
-2520,Goibne's_Shoulder_Arms,Goibne's Spaulders,4,30000,,700,,3,,0,0xFFFFFFFE,7,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{}
-2521,Angel's_Warmth,Angelic Cardigan,4,10000,,400,,2,,1,0x00000001,7,2,4,,20,1,0,{ bonus bHPrecovRate,5; },{},{}
-2522,Undershirt,Undershirt,4,20000,,150,,2,,0,0xFFFFFFFF,7,2,4,,1,1,0,{ bonus bMdef,1; },{},{}
-2523,Undershirt_,Undershirt,4,20000,,150,,2,,1,0xFFFFFFFF,7,2,4,,1,1,0,{ bonus bMdef,1; },{},{}
-2524,Valkyrie_Manteau,Valkyrian Manteau,4,0,,500,,3,,1,0xFFFFFFFE,2,2,4,,1,1,0,{ 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); },{},{}
-2525,Cape_Of_Ancient_Lord_,Ancient Cape,4,82000,,600,,2,,1,0xFFFFFFFE,7,2,4,,40,1,0,{ bonus bAgi,1; },{},{}
-2526,Dragon_Scale_Coat,Coat of Dragon Scale,4,20,,10,,4,,0,0xFFFFFFFF,7,2,4,,50,1,0,{},{},{}
-2527,Dragon_Breath,Dragon Breath,4,20,,600,,4,,1,0xFFFFFFFE,2,2,4,,48,1,0,{ bonus2 bSubRace,RC_Dragon,15; },{},{}
-2528,Wool_Scarf,Wool Scarf,4,20,,500,,3,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bMdef,4; },{},{}
-2529,Rider_Insignia,Rider Insignia,4,20,,500,,4,,0,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2530,Rider_Insignia_,Rider Insignia,4,20,,500,,4,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2531,Ulfhedinn,Ulfhedinn,4,20,,700,,3,,1,0x000654E2,2,2,4,,70,1,0,{ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; },{},{}
-2532,Mithril_Magic_Cape,Mithril Magic Cape,4,20,,400,,3,,1,0x00098B1C,2,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{}
-2533,Freyja_Cape,Freyja Cape,4,0,,200,,10,,0,0xFFFFFFFE,7,2,4,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; },{},{}
-2534,Ruffler,Ruffler,4,20,,0,,10,,0,0xFFFFFFFF,7,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; },{},{}
-2535,Cloak_Of_Survival_C,Cloak Of Survival,4,1,,0,,5,,0,0x00810204,7,2,4,,0,0,0,{ bonus bVit,10; bonus bMdef,10; },{},{}
-2536,Skin_Of_Ventus,Skin of Ventus,4,20,,250,,2,,1,0xFFFFFFFE,7,2,4,,60,1,0,{ bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; },{},{}
-2537,Diabolus_Manteau,Diabolus Manteau,4,20,,250,,5,,1,0x00CFFF80,2,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{}
-2538,Commander_Manteau,Captain's Manteau,4,10,,0,,4,,1,0x026654E2,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2539,Commander_Manteau_,Commander's Manteau,4,10,,0,,3,,1,0x00898B1C,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2540,Sheriff_Manteau,Sheriff's Manteau,4,10,,0,,3,,1,0x41000000,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2541,Asprika,Asprika,4,20,,400,,5,,0,0xFFFFFFFF,7,2,4,,94,0,0,{ 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; },{},{}
-2542,Flame_Manteau,Flame Manteau of Naght Sieger,4,20,,70,,4,,1,0xFFFFFFFE,2,2,4,,70,1,0,{ bonus bMaxHPRate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; },{},{}
-2543,Sylphid_Manteau,Sylphid Manteau,4,20,,0,,9,,0,0xFFFFFFFF,7,2,4,,0,0,0,{ bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; },{},{}
-2544,Leather_Of_Tendrilion,Leather of Tendrilion,4,20,,300,,3,,1,0x00CFDF80,2,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; },{},{}
-2545,Musika,Musika,4,20,,500,,2,,1,0x00008100,2,2,4,,70,1,0,{ bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; },{},{}
-2546,Beach_Manteau,Beach Manteau,4,20,,600,,0,,1,0xFFFFFFFF,7,2,4,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; },{},{}
-2547,Cheap_Running_Shirts,Cheap Undershirt,4,0,,0,,8,,0,0xFFFFFFFF,7,2,4,,0,1,0,{ bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; },{},{}
-2548,Muffler_C,Neo Muffler,4,0,,0,,5,,0,0xFFFFFFFE,2,2,4,,95,0,0,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; },{},{}
-2549,Krieger_Muffler1,Glorious Muffler,4,20,,0,,0,,0,0xFFFFFFFE,7,2,4,,81,1,0,{ bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-2550,Fisher's_Muffler,Fisher's Muffler,4,20,,200,,0,,0,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{}
-2551,Rider_Insignia_M,Crest of the Rider,4,20,,500,,4,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2552,Mithril_Magic_Cape_M,Mithril Magic Manteau,4,20,,400,,3,,1,0x00098B1C,2,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{}
-2553,Dragon_Manteau,Dragon Manteau,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,4,,0,1,0,{ bonus bAgi,1; bonus bMdef,5; },{},{}
-2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,5,,1,0xFFFFFFFE,2,2,4,,90,1,0,{ 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; },{},{}
-// Accessories
-//===================================================================
-2601,Ring,Ring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bStr,2; },{},{}
-2602,Earring,Earring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bInt,2; },{},{}
-2603,Necklace,Necklace,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bVit,2; },{},{}
-2604,Glove,Glove,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bDex,2; },{},{}
-2605,Brooch,Brooch,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bAgi,2; },{},{}
-2607,Clip,Clip,4,30000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{}
-2608,Rosary,Rosary,4,15000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bMdef,5; bonus bLuk,2; },{},{}
-2609,Skul_Ring,Skull Ring,4,10000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2610,Gold_Ring,Gold Ring,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2611,Silver_Ring,Silver Ring,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2612,Flower_Ring,Flower Ring,4,1500,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2613,Diamond_Ring,Diamond Ring,4,45000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2614,An_Eye_Of_Dullahan,Eye of Dullahan,4,90000,,100,,0,,0,0xFFFFFFFE,7,2,136,,50,0,0,{ bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; },{},{}
-2615,Safety_Ring,Safety Ring,4,75000,,100,,3,,0,0xFFFFFFFE,7,2,136,,40,0,0,{ bonus bMdef,3; },{},{}
-2616,Critical_Ring,Critical Ring,4,75000,,100,,0,,0,0xFFFFFFFE,7,2,136,,40,0,0,{ bonus bCritical,5; },{},{}
-2617,Mitten_Of_Presbyter,Celebrant's Mitten,4,2,,100,,1,,0,0xFFFFFFFE,7,2,136,,35,0,0,{ bonus bInt,1; },{},{}
-2618,Matyr's_Flea_Guard,Matyr's Leash,4,2,,100,,1,,0,0xFFFFFFFE,7,2,136,,35,0,0,{ bonus bAgi,1; },{},{}
-2619,Thimble_Of_Archer,Bow Thimble,4,10000,,100,,0,,0,0x00080808,7,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{}
-2620,Ring_Of_Rogue,Rogue's Treasure,4,10000,,100,,0,,0,0x02021040,7,2,136,,70,0,0,{ if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } },{},{}
-2621,Ring_,Ring,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bStr,1; },{},{}
-2622,Earring_,Earring,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bInt,1; },{},{}
-2623,Necklace_,Necklace,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bVit,1; },{},{}
-2624,Glove_,Glove,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bDex,1; },{},{}
-2625,Brooch_,Brooch,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bAgi,1; },{},{}
-2626,Rosary_,Rosary,4,15000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bMdef,3; bonus bLuk,1; },{},{}
-2627,Belt,Belt,4,20000,,1200,,0,,1,0xFFFFFFFF,7,2,136,,25,0,0,{},{},{}
-2628,Novice_Armlet,Novice Armlet,4,400,,200,,0,,1,0x00000001,7,2,136,,1,0,0,{},{},{}
-2629,Magingiorde,Megingjard,4,20,,8000,,2,,0,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bStr,40; bonus bMdef,7; },{},{}
-2630,Brysinggamen,Brisingamen,4,20,,1500,,1,,0,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5; },{},{}
-2631,First_Age_Ring,Celebration Ring,4,1,,10,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{}
-//2632,Korean_Trinket,Korean Trinket,4,125000,,100,,1,,0,0xFFFFFFFE,7,2,136,,65,0,0,{ bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{}
-//2633,Jade_Ring,Jade Ring,4,204000,,100,,0,,0,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bStr,2; bonus bInt,1; },{},{}
-2634,Bridegroom_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,1,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; },{},{}
-2635,Bride_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,0,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; },{},{}
-2636,Gold_Ring_,Gold Christmas Ring,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bLuk,1; },{},{}
-2637,Silver_Ring_,Silver Christmas Ring,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bLuk,1; },{},{}
-2638,Exorcize_Sachet,Sacred Incense,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bStr,1; bonus bLuk,1; },{},{}
-2639,Purification_Sachet,Occult Incense,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; bonus bAgi,1; },{},{}
-2640,Kafra_Ring,Kafra Ring,4,40000,,200,,1,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; },{},{}
-2641,Fashionable_Sack,Fashion Hip Sack,4,20,,700,,0,,0,0x00040420,7,2,136,,50,0,0,{ bonus bStr,2; },{},{}
-2642,Serin's_Gold_Ring,Serin's Gold Ring,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2643,Serin's_Gold_Ring_,Serin's Gold Ring,4,45000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2644,The_Sign_,The Sign,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{}
-2645,Moonlight_Ring,Moonlight Ring,4,40000,,200,,0,,0,0x02021040,7,2,136,,60,0,0,{ bonus bMdef,2; },{},{}
-2646,Bunch_Of_Carnation,Bunch of Carnations,4,2,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,3; },{},{}
-2647,Nile_Rose,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{}
-2648,Morpheus's_Ring,Morpheus's Ring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{}
-2649,Morpheus's_Armlet,Morpheus's Bracelet,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{}
-2650,Morrigane's_Belt,Morrigane's Belt,4,30000,,200,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bBaseAtk,5; bonus bCritical,3; },{},{}
-2651,Morrigane's_Pendant,Morrigane's Pendant,4,30000,,200,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bStr,2; bonus bCritical,3; },{},{}
-2652,Cursed_Lucky_Brooch,Goddess of Fortune's Cursed Brooch,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,40,0,0,{ bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; },{},{}
-2653,Sacrifice_Ring,Sacrifice Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,90,0,0,{},{},{}
-2654,Shinobi's_Sash,Shinobi Sash,4,20000,,300,,1,,0,0x02021040,7,2,136,,30,0,0,{ bonus bStr,1; bonus bAgi,1; bonus bMdef,1; },{},{}
-2655,Bloody_Iron_Ball,Bloodied Shackle Ball,4,50000,,4000,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{},{},{}
-2656,Hyper_Changer,Armor Charm,4,20000,,1000,,1,,0,0x000654E2,7,2,136,,1,0,0,{ bonus bMaxHP,50; },{},{}
-2657,Lab_Passport,Laboratory Permit,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{}
-2658,Nile_Rose_,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{}
-2659,Vesper_Core01,Vesper Core 01,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-2660,Vesper_Core02,Vesper Core 02,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{}
-2661,Vesper_Core03,Vesper Core 03,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{}
-2662,Vesper_Core04,Vesper Core 04,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{}
-2663,Gauntlet_Of_Accuracy,Gauntlet of Hit,4,20,,900,,0,,0,0xFFFFFFFF,7,2,136,,75,0,0,{ bonus bHit,15; bonus bStr,1; },{},{}
-2664,Scarf_Belt,Belcarf,4,20,,200,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bDex,2; bonus bInt,1; },{},{}
-2665,Ring_Of_Exorcism,Exorcising Ring,4,20,,500,,0,,0,0x00008110,7,2,136,,60,0,0,{ bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; },{},{}
-2666,Lamp_Of_Hope,Lantern of Hope,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; },{},{}
-2667,Glove_Of_Archer,Renown Archer's Gloves,4,20,,300,,0,,0,0xFFFFFFFE,7,2,136,,60,0,0,{ bonus bHit,5; bonus bCritical,5; bonus bDex,1; },{},{}
-2668,Women's_Glory,Woman Glory,4,0,,500,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{}
-2669,Golden_Necklace_,RJC Necklace,4,30000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{}
-2670,Ring_Of_Longing,Ring of Longing,4,20,,100,,1,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bFlee,5; },{},{}
-2671,Thimble_Of_Archer_,Bow Thimble,4,10000,,100,,0,,1,0x00080808,7,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{}
-2672,Anniversary_Ring,3rd Anniversary Celebration Ring,4,20,,100,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{},{},{}
-2673,Shining_Ring,Warrior's Shining Ring,4,0,,100,,0,,0,0xFFFFFFFE,7,2,136,,48,0,0,{ bonus bBaseAtk,10; bonus bSPrecovRate,3; },{},{}
-2674,Honor_Ring,Ring of Honor,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{}
-2675,Lord_Ring,Lord Ring,4,0,,10,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,3; },{},{}
-2676,Hunter_Earring,Hunter's Earring,4,20,,300,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bAddMonsterDropItem,7618,100; },{},{}
-2677,Spiritual_Ring,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{}
-2678,Ring_Of_Flame_Lord,Ring Of Flame Lord,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,0,0,0,{ 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; },{},{}
-2679,Ring_Of_Resonance,Ring Of Resonance,4,20,,100,,2,,0,0x00CFFF80,2,2,136,,0,0,0,{ 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; },{},{}
-2680,Lesser_Elemental_Ring,Lesser Elemental Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ 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; },{},{}
-2681,Republic_Ring,Republic Anniversary Ring,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,3; },{},{}
-2682,Ring_Of_Water,Ring of Water,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-2683,Ring_Of_Fire,Ring of Fire,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Fire,5; },{},{}
-2684,Ring_Of_Wind,Ring of Wind,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Wind,5; },{},{}
-2685,Ring_Of_Earth,Ring of Earth,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Earth,5; },{},{}
-2686,Elven_Ears_C,Elven Ears,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-2687,Steel_Flower_C,Steel Flower,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-2688,Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bCritical,10; },{},{}
-2689,Earring_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bInt,3; },{},{}
-2690,Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bStr,4; },{},{}
-2691,Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bVit,4; },{},{}
-2692,Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bDex,4; },{},{}
-2693,Brooch_C,Brooch,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{}
-2694,Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,5; bonus bLuk,4; },{},{}
-2695,Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,5; },{},{}
-2696,Vesper_Core01_C,Vesper Core 01,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-2697,Vesper_Core02_C,Vesper Core 02,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{}
-2698,Vesper_Core03_C,Vesper Core 03,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{}
-2699,Vesper_Core04_C,Vesper Core 04,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{}
-2700,Red_Silk_Seal,Red Silk Seal,4,20,,100,,0,,0,0x00004082,2,2,136,,60,0,0,{},{},{}
-2701,Orleans_Glove,Orleans's Glove,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{}
-2702,Bison_Horn,Bison Horn,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bAgi,2; },{},{}
-2703,Expert_Ring,Expert Ring,4,20,,150,,0,,1,0xFFFFFFFE,2,2,136,,50,0,0,{ bonus bDelayRate,-5; bonus bUseSPrate,5; },{},{}
-2704,Golden_Accessory,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,4; },{},{}
-2705,Golden_Accessory2,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,7,2,136,,,,,{ bonus2 bAddMonsterDropItem,12018,500; },{},{}
-2706,Handcuff,Arrest Handcuffs,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2707,Gusli,GUSLI,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2708,Chinese_Handicraft,Chinese Handicraft,4,0,,50,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus3 bAutoSpell,"MG_FIREBOLT",5,300; },{},{}
-2709,5_Anniversary_Coin,5th Anniversary Coin,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{}
-2710,Bloody_Iron_Ball_C,Bloody Iron Ball,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bBaseAtk,30; },{},{}
-2711,Spiritual_Ring_C,Spiritual Ring,4,1,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,2; },{},{}
-2712,Ragnarok_Limited_Ed,Ragnarok Limited Edition,4,0,,300,,0,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bVit,3; bonus bAgi,3; bonus bLuk,3; },{},{}
-2713,Certificate_TW,Certificate,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2714,Marvelous_Pandent,Marvelous Pendant,4,0,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2715,Skul_Ring_,Skull Ring,4,10000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bSubRace,RC_Undead,1; },{},{}
-2716,Librarian_Glove,Librarian Glove,4,20,,100,,0,,1,0x00810200,7,2,136,,80,0,0,{ bonus bMaxSP,20; },{},{}
-2717,Pocket_Watch_,Pocket Watch,4,20,,200,,0,,0,0x00810204,7,2,136,,80,0,0,{},{},{}
-2718,Lunatic_Brooch,Lunatic Brooch,4,20,,200,,0,,1,0x00080808,7,2,136,,65,0,0,{},{},{}
-2719,Iron_Wrist,Iron Wrist,4,20,,700,,1,,0,0x000444A2,7,2,136,,50,0,0,{ bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; },{},{}
-2720,Medal_Swordman,Medal of Honor,4,20,,0,,1,,0,0x00404082,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; },{},{}
-2721,Medal_Thief,Medal of Honor,4,20,,0,,1,,0,0x02021040,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; },{},{}
-2722,Medal_Acolyte,Medal of Honor,4,20,,0,,1,,0,0x00008110,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; },{},{}
-2723,Medal_Mage,Medal of Honor,4,20,,0,,1,,0,0x00810204,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; },{},{}
-2724,Medal_Archer,Medal of Honor,4,20,,0,,1,,0,0x00080808,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{}
-2725,Medal_Merchant,Medal of Honor,4,20,,0,,1,,0,0x00040420,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; },{},{}
-2726,Icarus_Wing,Icarus Wings,4,20,,100,,0,,0,0x00000800,2,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{}
-2727,Bowman_Scarf,Bowman Scarf,4,20,,200,,0,,0,0x00000800,2,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{}
-2728,Cursed_Hand,Cursed Hand,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; },{},{}
-2729,Diabolus_Ring,Diabolus Ring,4,20,,50,,0,,1,0x00CFFF80,2,2,136,,0,0,0,{ bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{}
-2730,Morroc_Seal,Seal of Continental Guard,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bMaxHP,50; bonus bAspdRate,3; },{},{}
-2731,Morroc_Charm_Stone,Rune Spellstone,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bMaxSP,50; bonus bCastRate,-1; },{},{}
-2732,Morroc_Ring,Death Loop,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bCritical,5; },{},{}
-2733,Medal_Gunner,Sheriff Badge,4,20,,0,,1,,0,0x41000000,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{}
-2734,Directive_A,Directive,4,0,,0,,1,,0,0x00000001,7,2,136,,0,0,0,{},{},{}
-2735,Directive_B,Directive,4,0,,0,,1,,0,0x00000001,7,2,136,,0,0,0,{},{},{}
-2736,Navel_Ring,Navel Ring,4,20,,100,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bDex,3; bonus bLuk,3; bonus bMdef,2; },{},{}
-2737,Foot_Ring,Foot Ring,4,20,,150,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bVit,3; bonus bMaxHPRate,10; },{},{}
-2738,Shiny_Coin,Shiny Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; },{},{}
-2739,Ordinary_Coin,Ordinary Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{}
-2740,Rusty_Coin,Rusty Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; },{},{}
-2741,All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{}
-//2742,Lucky_Clip,Lucky Clip,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2743,Angelic_Ring,Angelic Ring,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,70,0,0,{ 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; }"; },{},{}
-2744,Sprint_Ring,Sprint Ring,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,70,0,0,{ bonus bCastrate,-10; bonus bDelayRate,-5; },{},{}
-2745,Pinguicula_Corsage,Pinguicula Corsage,4,20,,200,,0,,1,0x00CFFF80,2,2,136,,70,0,0,{ bonus bMdef,2; bonus bMaxSP,25; },{},{}
-2746,Cold_Heart,Cold Heart,4,20,,100,,1,,0,0x00001000,2,2,136,,80,0,0,{ bonus bAgi,3; },{},{}
-2747,Black_Cat,Black Cat,4,20,,100,,1,,0,0x00020000,2,2,136,,80,0,0,{ bonus bDex,3; },{},{}
-2748,Cursed_Star,Cursed Star,4,20,,200,,0,,0,0x00080808,2,2,136,,84,0,0,{ bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; },{},{ heal -300,0; }
-2749,Linen_Glove,Linen Glove,4,20,,120,,1,,1,0x00CFFF80,2,2,136,,90,0,0,{ bonus bMdef,2; bonus bAgi,2; bonus bDex,1; },{},{}
-//2750,Summer_Night_Dream,Summer Night Dream,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2751,Academy_Badge,Academy Of Badge,4,0,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } },{},{}
-2752,Praxinus_C,Praccsinos,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; },{},{}
-2753,Beholder_Ring,Beholder Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Formless,15; },{},{}
-2754,Hallow_Ring,Hallow Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_undead,15; },{},{}
-2755,Clamorous_Ring,Clamorous Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Brute,15; },{},{}
-2756,Chemical_Ring,Chemical Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Plant,15; },{},{}
-2757,Insecticide_Ring,Insecticide Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Insect,15; },{},{}
-2758,Fisher_Ring,Fischer Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Fish,15; },{},{}
-2759,Decussate_Ring,Decussate Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Demon,15; },{},{}
-2760,Bloody_Ring,Bloody Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_DemiHuman,15; },{},{}
-2761,Satanic_Ring,Satanic Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Angel,15; },{},{}
-2762,Dragoon_Ring,Dragon Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Dragon,15; },{},{}
-2763,Skul_Ring_C,Neo Skull Ring,4,0,,0,,0,,0,0xFFFFFFFE,2,2,136,,95,0,0,{ bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1; },{},{}
-2764,Small_Fishing_Rod,Small Fishing Rod,4,10,,250,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2765,Novice_Figure,Novice Figure,4,0,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; },{},{}
-2766,Swordman_Figure,Swordman Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; },{},{}
-2767,Acolyte_Figure,Acolyte Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; },{},{}
-2768,Mage_Figure,Mage Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; },{},{}
-2769,Archer_Figure,Archer Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; },{},{}
-2770,Thief_Figure,Thief Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; },{},{}
-2771,Merchant_Figure,Merchant Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; },{},{}
-2772,Krieger_Ring1,Glorious Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,81,0,0,{ 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; },{},{}
-2773,Krieger_Ring2,Glorious Mass-Production Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bAllStats,2; },{},{}
-2774,Krieger_Ring3,Glorious Popularized Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bAllStats,1; },{},{}
-2775,Lure,Lure,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{}
-2776,Cool_Towel,Adventurer's Trusty Towel,4,20,,100,,,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{ sc_start SC_SUMMER,INFINITE_TICK,0; },{ sc_end SC_SUMMER; }
-2777,Shaman_Ring,Shaman Ring,4,20,,100,,0,,1,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bUseSPrate,-5; },{},{}
-2778,Shaman_Earing,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bInt,2; },{},{}
-2779,Dark_Knight_Belt,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bStr,2; bonus bAgi,1; },{},{}
-2780,Dark_Knight_Glove,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,7,2,136,,80,0,0,{ autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-2781,Aumdura's_Grace,Aumdura's Benefit,4,0,,100,,1,,1,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,1; },{},{}
-2782,Ring_Of_Wise_King,Ring of the Ancient Wise King,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,50; bonus bMaxSP,20; },{},{}
-2783,Eyes_Stone_Ring,Eye Stone Ring,4,20,,100,,0,,1,0xFFFFFFFF,7,2,136,,70,0,0,{ bonus bCritical,2; bonus bMaxSP,25; },{},{}
-2784,Oh_Holy_Night,Christmas Musicbox,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ skill "ALL_WEWISH",1; },{},{}
-2785,Orleans_Glove_M,Orlean's Gloves,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{}
-2786,Spiritual_Ring_M,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{}
-2787,Waterdrop_Brooch,Waterdrop Brooch,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,75,0,0,{ bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2; },{},{}
-2788,Bradium_Earing,Bradium Earring,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus bMatkRate,2; bonus bInt,1; bonus bDex,1; },{},{}
-2789,Bradium_Ring,Bradium Ring,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1; },{},{}
-2790,Bradium_Brooch,Bradium Brooch,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1; },{},{}
-2791,Just_Got_Fish,Fresh Fish,4,20,,500,,0,,1,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bHit,3; },{},{}
-//2792,Ring_Of_Flame_Lord_I,Ring of Flame Lord,4,0,,0,,0,,0,0x00CFFF80,2,2,136,,0,0,0,{ 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; },{},{}
-//2793,Ring_Of_Resonance_I,Ring of Resonance,4,0,,0,,2,,0,0x00CFFF80,2,2,136,,0,0,0,{ 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; },{},{}
-2794,Magic_Stone_Ring,Magic Stone Ring,4,0,,0,,0,,1,0x00004082,7,2,136,,99,0,0,{ bonus bStr,2; },{},{}
-2795,Green_Apple_Ring,Green Apple Ring,4,0,,0,,0,,0,0xFFFFFFFE,7,2,136,,99,0,0,{ bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); } },{},{}
-2796,Magical_Stone,Rocks,4,0,,200,,0,,0,0x00810204,7,2,136,,99,0,0,{ bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; },{},{}
-2797,Magical_Stone_,Rocks,4,0,,200,,0,,0,0x00810204,7,2,136,,99,0,0,{ bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; },{},{}
-2798,Will_Of_Exhausted_Angel,Will Of Exhausted Angel,4,0,,200,,0,,0,0x00008100,7,2,136,,99,0,0,{ if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } },{},{}
-2799,Kuirpenring,Kuirpenring,4,0,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,1; },{},{}
-2800,Accelerator,Accelerator,4,100000,,100,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,2; },{},{}
-2801,Hovering_Booster,Hovering Booster,4,100000,,2000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,1; },{},{}
-2802,Suicidal_Device,Suicidal Device,4,500000,,1000,,0,,1,0x00000400,7,2,136,,99,0,0,{},{},{}
-2803,Shape_Shifter,Shape Shifter,4,100000,,500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bInt,3; },{},{}
-2804,Cooling_Device,Cooling Device,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2805,Mag_Field_Generator,Magnetic Field Generator,4,100000,,6000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2806,Barrier_Builder,Barrier Builder,4,150000,,8000,,3,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2807,Repair_Kit,Repair Kit,4,200000,,400,,0,,1,0x00000400,7,2,136,,99,0,0,{},{},{}
-2808,Camouflage_Generator,Camouflague Generator,4,250000,,1000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,3; },{},{}
-2809,High_Quality_Cooler,High Quality Cooler,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2810,Special_Cooler,Special Cooler,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2819,Swordman_Manual,Swordsman Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; },{},{}
-2820,Thief_Manual,Thief Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; },{},{}
-2821,Acolyte_Manual,Acolyte Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; },{},{}
-2822,Archer_Manual,Archer Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; },{},{}
-2823,Merchant_Manual,Merchant Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; },{},{}
-2824,Mage_Manual,Mage Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; },{},{}
-// Cards
-//===================================================================
-4001,Poring_Card,Poring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bFlee2,1; },{},{}
-4002,Fabre_Card,Fabre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{}
-4003,Pupa_Card,Pupa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,700; },{},{}
-4004,Drops_Card,Drops Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDex,1; bonus bHit,3; },{},{}
-4005,Poring__Card,Santa Poring Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Dark,20; },{},{}
-4006,Lunatic_Card,Lunatic Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; },{},{}
-4007,Pecopeco_Egg_Card,Peco Peco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,20; },{},{}
-4008,Picky_Card,Picky Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,1; bonus bBaseAtk,10; },{},{}
-4009,Chonchon_Card,Chonchon Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus bFlee,2; },{},{}
-4010,Wilow_Card,Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxSP,80; },{},{}
-4011,Picky__Card,Picky Egg Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{}
-4012,Thief_Bug_Egg_Card,Thief Bug Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHP,400; },{},{}
-4013,Andre_Egg_Card,Andre Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHPrate,5; },{},{}
-4014,Roda_Frog_Card,Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,400; bonus bMaxSP,50; },{},{}
-4015,Condor_Card,Condor Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; },{},{}
-4016,Thief_Bug_Card,Thief Bug Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,1; },{},{}
-4017,Savage_Babe_Card,Savage Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Stun,500; },{},{}
-4018,Andre_Larva_Card,Andre Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMaxSP,10; },{},{}
-4019,Hornet_Card,Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bStr,1; bonus bBaseAtk,3; },{},{}
-4020,Farmiliar_Card,Familiar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; },{},{}
-4021,Rocker_Card,Rocker Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,1; bonus bBaseAtk,5; },{},{}
-4022,Spore_Card,Spore Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,2; },{},{}
-4023,Desert_Wolf_Babe_Card,Baby Desert Wolf Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; },{},{}
-4024,Plankton_Card,Plankton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; },{},{}
-4025,Skeleton_Card,Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; },{},{}
-4026,Thief_Bug_Female_Card,Female Thief Bug Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAgi,1; bonus bFlee,1; },{},{}
-4027,Kukre_Card,Kukre Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,2; },{},{}
-4028,Tarou_Card,Tarou Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,2; },{},{}
-4029,Wolf_Card,Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bCritical,1; },{},{}
-4030,Mandragora_Card,Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Wind,20; },{},{}
-4031,Pecopeco_Card,Peco Peco Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; },{},{}
-4032,Ambernite_Card,Ambernite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; },{},{}
-4033,Poporing_Card,Poporing Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_DETOXIFY",1; },{},{}
-4034,Worm_Tail_Card,Wormtail Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,2; },{},{}
-4035,Hydra_Card,Hydra Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; },{},{}
-4036,Muka_Card,Muka Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,10; },{},{}
-4037,Snake_Card,Snake Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; },{},{}
-4038,Zombie_Card,Zombie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,20; },{},{}
-4039,Stainer_Card,Stainer Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; },{},{}
-4040,Creamy_Card,Creamy Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_TELEPORT",1; },{},{}
-4041,Coco_Card,Coco Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; },{},{}
-4042,Steel_Chonchon_Card,Steel Chonchon Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; },{},{}
-4043,Andre_Card,Andre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; },{},{}
-4044,Smokie_Card,Smokie Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-4045,Horn_Card,Horn Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLongAtkDef,35; },{},{}
-4046,Martin_Card,Martin Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; },{},{}
-4047,Ghostring_Card,Ghostring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; },{},{}
-4048,Poison_Spore_Card,Poison Spore Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_POISON",3; },{},{}
-4049,Vadon_Card,Vadon Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Fire,20; },{},{}
-4050,Thief_Bug_Male_Card,Male Thief Bug Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,2; },{},{}
-4051,Yoyo_Card,Yoyo Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee2,5; bonus bAgi,1; },{},{}
-4052,Elder_Wilow_Card,Elder Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; },{},{}
-4053,Vitata_Card,Vitata Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_HEAL",1; bonus bUseSPrate,25; },{},{}
-4054,Angeling_Card,Angeling Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Holy; },{},{}
-4055,Marina_Card,Marina Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; },{},{}
-4056,Dustiness_Card,Dustiness Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; },{},{}
-4057,Metaller_Card,Metaller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; },{},{}
-4058,Thara_Frog_Card,Thara Frog Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player,30; },{},{}
-4059,Soldier_Andre_Card,Soldier Andre Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Plant,30; },{},{}
-4060,Goblin_Card,Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,20; },{},{}
-4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor; bonus bDef,1; },{},{}
-4062,Anacondaq_Card,Anacondaq Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Poison,20; },{},{}
-4063,Caramel_Card,Caramel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Insect,20; },{},{}
-4064,Zerom_Card,Zerom Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,3; },{},{}
-4065,Kaho_Card,Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Earth,20; },{},{}
-4066,Orc_Warrior_Card,Orc Warrior Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,30; },{},{}
-4067,Megalodon_Card,Megalodon Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; },{},{}
-4068,Scorpion_Card,Scorpion Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Plant,20; },{},{}
-4069,Drainliar_Card,Drainliar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Water,20; },{},{}
-4070,Eggyra_Card,Eggyra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSPrecovRate,15; },{},{}
-4071,Orc_Zombie_Card,Orc Zombie Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; },{},{}
-4072,Golem_Card,Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon; bonus bBaseAtk,5; },{},{}
-4073,Pirate_Skel_Card,Pirate Skeleton Card,6,20,,10,,,,,,,,136,,,,,{ skill "MC_DISCOUNT",5; },{},{}
-4074,BigFoot_Card,Bigfoot Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Insect,30; },{},{}
-4075,Argos_Card,Argos Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; },{},{}
-4076,Magnolia_Card,Magnolia Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; },{},{}
-4077,Phen_Card,Phen Card,6,20,,10,,,,,,,,136,,,,,{ bonus bNoCastCancel; bonus bCastrate,25; },{},{}
-4078,Savage_Card,Savage Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; },{},{}
-4079,Mantis_Card,Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{}
-4080,Flora_Card,Flora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Fish,20; },{},{}
-4081,Hode_Card,Hode Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; },{},{}
-4082,Desert_Wolf_Card,Desert Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; },{},{}
-4083,Rafflesia_Card,Rafflesia Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Fish,30; },{},{}
-4084,Marine_Sphere_Card,Marine Sphere Card,6,20,,10,,,,,,,,136,,,,,{ skill "SM_MAGNUM",3; },{},{}
-4085,Orc_Skeleton_Card,Orc Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Holy,20; },{},{}
-4086,Soldier_Skeleton_Card,Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,9; },{},{}
-4087,Giearth_Card,Giearth Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; },{},{}
-4088,Frilldora_Card,Frilldora Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",1; },{},{ sc_end SC_CLOAKING; }
-4089,Sword_Fish_Card,Swordfish Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus bDef,1; },{},{}
-4090,Munak_Card,Munak Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; },{},{}
-4091,Kobold_Card,Kobold Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,1; bonus bCritical,4; },{},{}
-4092,Skel_Worker_Card,Skeleton Worker Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; },{},{}
-4093,Obeaune_Card,Obeaune Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_CURE",1; },{},{}
-4094,Archer_Skeleton_Card,Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{}
-4095,Marse_Card,Marse Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; },{},{}
-4096,Zenorc_Card,Zenorc Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; },{},{}
-4097,Matyr_Card,Matyr Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bAgi,1; },{},{}
-4098,Dokebi_Card,Dokebi Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Wind; bonus bDef,1; },{},{}
-4099,Pasana_Card,Pasana Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Fire; bonus bDef,1; },{},{}
-4100,Sohee_Card,Sohee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,15; bonus bSPrecovRate,3; },{},{}
-4101,Sand_Man_Card,Sandman Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Earth; bonus bDef,1; },{},{}
-4102,Whisper_Card,Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; },{},{}
-4103,Horong_Card,Horong Card,6,20,,10,,,,,,,,136,,,,,{ skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; }
-4104,Requiem_Card,Requiem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Confusion,500; },{},{}
-4105,Marc_Card,Marc Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; },{},{}
-4106,Mummy_Card,Mummy Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,20; },{},{}
-4107,Verit_Card,Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-4108,Myst_Card,Myst Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; },{},{}
-4109,Jakk_Card,Jakk Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; },{},{}
-4110,Ghoul_Card,Ghoul Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; },{},{}
-4111,Strouf_Card,Strouf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Demon,20; },{},{}
-4112,Marduk_Card,Marduk Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,10000; },{},{}
-4113,Marionette_Card,Marionette Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; },{},{}
-4114,Argiope_Card,Argiope Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Poison; bonus bDef,1; },{},{}
-4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,30,15; },{},{}
-4116,Isis_Card,Isis Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; },{},{}
-4117,Side_Winder_Card,Sidewinder Card,6,20,,10,,,,,,,,2,,,,,{ skill "TF_DOUBLE",1; bonus bDoubleRate,5; },{},{}
-4118,Petit_Card,Earth Petite Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Dragon,20; },{},{}
-4119,Bathory_Card,Bathory Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Dark; },{},{}
-4120,Petit__Card,Sky Petite Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; },{},{}
-4121,Phreeoni_Card,Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,100; },{},{}
-4122,Deviruchi_Card,Deviruchi Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; },{},{}
-4123,Eddga_Card,Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-25; bonus bNoWalkDelay; },{},{}
-4124,Medusa_Card,Medusa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; },{},{}
-4125,Deviace_Card,Deviace Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; },{},{}
-4126,Minorous_Card,Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; },{},{}
-4127,Nightmare_Card,Nightmare Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; },{},{}
-4128,Golden_Bug_Card,Golden Thief Bug Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoMagicDamage,100; bonus bUseSPrate,100; },{},{}
-4129,Baphomet__Card,Bapho Jr. Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,3; bonus bCritical,1; },{},{}
-4130,Scorpion_King_Card,Scorpion King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Undead,20; },{},{}
-4131,Moonlight_Flower_Card,Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSpeedRate,25; },{},{}
-4132,Mistress_Card,Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone; bonus bUseSPrate,25; },{},{}
-4133,Daydric_Card,Raydric Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,20; },{},{}
-4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,100,5; },{},{}
-4135,Orc_Load_Card,Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,30; },{},{}
-4136,Khalitzburg_Card,Khalitzburg Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,30; },{},{}
-4137,Drake_Card,Drake Card,6,20,,10,,,,,,,,2,,,,,{ bonus bNoSizeFix; },{},{}
-4138,Anubis_Card,Anubis Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Angel,30; },{},{}
-4139,Joker_Card,Joker Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_STEAL",1; },{},{}
-4140,Knight_Of_Abyss_Card,Abysmal Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_Boss,25; },{},{}
-4141,Evil_Druid_Card,Evil Druid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; },{},{}
-4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; },{},{}
-4143,Orc_Hero_Card,Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; },{},{}
-4144,Osiris_Card,Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bRestartFullRecover; },{},{}
-4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,-30; },{},{}
-4146,Maya_Card,Maya Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMagicDamageReturn,50; },{},{}
-4147,Baphomet_Card,Baphomet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,-10; bonus bSplashRange,1; },{},{}
-4148,Pharaoh_Card,Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-30; },{},{}
-4149,Gargoyle_Card,Gargoyle Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12028,RC_Insect,100; },{},{}
-4150,Goat_Card,Goat Card,6,20,,10,,,,,,,,16,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } },{},{}
-4151,Gajomart_Card,Gajomart Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; },{},{}
-4152,Galapago_Card,Galapago Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; },{},{}
-4153,Crab_Card,Crab Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; },{},{}
-4154,Rice_Cake_Boy_Card,Dumpling Child Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; },{},{}
-4155,Goblin_Leader_Card,Goblin Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Goblin,30; },{},{}
-4156,Steam_Goblin_Card,Goblin Steamrider Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; },{},{}
-4157,Goblin_Archer_Card,Goblin Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; },{},{}
-4158,Flying_Deleter_Card,Sky Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHPrecovRate,-100; bonus bHPGainValue,100; },{},{}
-4159,Nine_Tail_Card,Nine Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; },{},{}
-4160,Antique_Firelock_Card,Firelock Soldier Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{}
-4161,Grand_Peco_Card,Grand Peco Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; },{},{}
-4162,Grizzly_Card,Grizzly Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,300; },{},{}
-4163,Gryphon_Card,Gryphon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; },{},{}
-4164,Gullinbursti_Card,Gullinbursti Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; },{},{}
-4165,Gig_Card,Gig Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Insect,5; },{},{ heal 0,-5; }
-4166,Nightmare_Terror_Card,Nightmare Terror Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,300; },{},{}
-4167,Neraid_Card,Nereid Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Brute,5; },{},{ heal 0,-5; }
-4168,Dark_Lord_Card,Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; },{},{}
-4169,Dark_Illusion_Card,Dark Illusion Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10; },{},{}
-4170,Dark_Frame_Card,Dark Frame Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,600; },{},{}
-4171,Dark_Priest_Card,Dark Priest Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; },{},{}
-4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus bSPDrainValue,-1; },{},{}
-4173,Demon_Pungus_Card,Demon Pungus Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,600; },{},{}
-4174,Deviling_Card,Deviling Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4175,Poison_Toad_Card,Poisonous Toad Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; },{},{}
-4176,Dullahan_Card,Dullahan Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; },{},{}
-4177,Dryad_Card,Dryad Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; },{},{}
-4178,Dragon_Tail_Card,Dragon Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; },{},{}
-4179,Dragon_Fly_Card,Dragon Fly Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; },{},{}
-4180,Driller_Card,Driller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Dragon,5; },{},{ heal 0,-5; }
-4181,Disguise_Card,Disguise Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); },{},{}
-4182,Diabolic_Card,Diabolic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Demon,5; },{},{ heal 0,-5; }
-4183,Vagabond_Wolf_Card,Vagabond Wolf Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,1; },{},{}
-4184,Lava_Golem_Card,Lava Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Golem,30; },{},{}
-4185,Rideword_Card,Rideword Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } },{},{}
-4186,Raggler_Card,Raggler Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,1; bonus bVit,1; },{},{}
-4187,Raydric_Archer_Card,Raydric Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12030,RC_Demon,100; },{},{}
-4188,Leib_Olmai_Card,Leib Olmai Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; },{},{}
-4189,Wraith_Dead_Card,Wraith Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,600; },{},{}
-4190,Wraith_Card,Wraith Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12027,RC_Undead,100; },{},{}
-4191,Loli_Ruri_Card,Loli Ruri Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{}
-4192,Rotar_Zairo_Card,Rotar Zairo Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; },{},{}
-4193,Lude_Card,Lude Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; },{},{}
-4194,Rybio_Card,Rybio Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); },{},{}
-4195,Leaf_Cat_Card,Leaf Cat Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{}
-4196,Marin_Card,Marin Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; },{},{}
-4197,Mastering_Card,Mastering Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLuk,1; },{},{}
-4198,Maya_Puple_Card,Maya Purple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; },{},{}
-4199,Merman_Card,Merman Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{}
-4200,Megalith_Card,Megalith Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<6) bonus bMdef,7; },{},{}
-4201,Majoruros_Card,Majoruros Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,600; },{},{}
-4202,Civil_Servant_Card,Mao Guai Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Ghost,20; },{},{}
-4203,Mutant_Dragon_Card,Mutant Dragonoid Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50; },{},{}
-4204,Mini_Demon_Card,Mini Demon Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Brute,-20; bonus2 bExpAddRace,RC_Brute,10; },{},{}
-4205,Mimic_Card,Mimic Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,603,10; },{},{}
-4206,Mystcase_Card,Myst Case Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddMonsterDropItem,644,30; },{},{}
-4207,Mysteltainn_Card,Mysteltainn Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,25; bonus bDef,1; },{},{}
-4208,Miyabi_Ningyo_Card,Miyabi Doll Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; },{},{}
-4209,Violy_Card,Violy Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; },{},{}
-4210,Wander_Man_Card,Wanderer Card,6,20,,10,,,,,,,,4,,,,,{ if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; },{},{}
-4211,Vocal_Card,Vocal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,3; },{},{}
-4212,Bon_Gun_Card,Bongun Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; },{},{}
-4213,Brilight_Card,Brilight Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,600; },{},{}
-4214,Bloody_Murderer_Card,Bloody Murderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; },{},{}
-4215,Blazzer_Card,Blazer Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Food,600; },{},{}
-4216,Sasquatch_Card,Sasquatch Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,600; },{},{}
-4217,Live_Peach_Tree_Card,Enchanted Peach Tree Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; },{},{}
-4218,Succubus_Card,Succubus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; },{},{}
-4219,Sageworm_Card,Sage Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; },{},{}
-4220,Solider_Card,Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,2; bonus bMdef,2; },{},{}
-4221,Skeleton_General_Card,Skeleton General Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; },{},{}
-4222,Skel_Prisoner_Card,Skeleton Prisoner Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,300; },{},{}
-4223,Stalactic_Golem_Card,Stalactic Golem Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; },{},{}
-4224,Stem_Worm_Card,Stem Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12032,RC_Brute,100; },{},{}
-4225,Stone_Shooter_Card,Stone Shooter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus bHit,10; },{},{}
-4226,Sting_Card,Sting Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; if(getrefine()>8) bonus bMdef,5; },{},{}
-4227,Spring_Rabbit_Card,Spring Rabbit Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; },{},{}
-4228,Sleeper_Card,Sleeper Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12031,RC_Fish,100; },{},{}
-4229,C_Tower_Manager_Card,Tower Keeper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bCastrate,-5; },{},{}
-4230,Shinobi_Card,Shinobi Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; },{},{}
-4231,Increase_Soil_Card,Mi Gao Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace2,RC2_Guardian,50; },{},{}
-4232,Wild_Ginseng_Card,Hermit Plant Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; },{},{}
-4233,Baby_Leopard_Card,Baby Leopard Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; },{},{}
-4234,Anolian_Card,Anolian Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; },{},{}
-4235,Cookie_XMAS_Card,Christmas Cookie Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; },{},{}
-4236,Amon_Ra_Card,Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); },{},{}
-4237,Owl_Duke_Card,Owl Duke Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{}
-4238,Owl_Baron_Card,Owl Baron Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; },{},{}
-4239,Iron_Fist_Card,Iron Fist Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; },{},{}
-4240,Arclouse_Card,Arclouze Card,6,20,,10,,,,,,,,32,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } },{},{}
-4241,Archangeling_Card,Arc Angeling Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } },{},{}
-4242,Apocalips_Card,Apocalipse Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; },{},{}
-4243,Antonio_Card,Antonio Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; },{},{}
-4244,Alarm_Card,Alarm Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; },{},{}
-4245,Am_Mut_Card,Am Mut Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player,-20; bonus2 bExpAddRace,RC_DemiHuman,10; },{},{}
-4246,Assulter_Card,Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player,7; },{},{}
-4247,Aster_Card,Aster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; },{},{}
-4248,Ancient_Mummy_Card,Ancient Mummy Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; },{},{}
-4249,Ancient_Worm_Card,Ancient Worm Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; },{},{}
-4250,Executioner_Card,Executioner Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Large,25; bonus bDef,1; },{},{}
-4251,Elder_Card,Elder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Guardian,40; },{},{}
-4252,Alligator_Card,Alligator Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLongAtkDef,5; },{},{}
-4253,Alice_Card,Alice Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; },{},{}
-4254,Tirfing_Card,Ogretooth Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus bDef,1; },{},{}
-4255,Orc_Lady_Card,Orc Lady Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,3,30; },{},{}
-4256,Orc_Archer_Card,Orc Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; },{},{}
-4257,Wild_Rose_Card,Wild Rose Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; },{},{}
-4258,Wicked_Nymph_Card,Evil Nymph Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bMaxSP,50; },{},{}
-4259,Wooden_Golem_Card,Wooden Golem Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,1; bonus bHPrecovRate,30; },{},{}
-4260,Wootan_Shooter_Card,Wootan Shooter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; },{},{}
-4261,Wootan_Fighter_Card,Wootan Fighter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; },{},{}
-4262,Evil_Cloud_Hermit_Card,Cloud Hermit Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12029,RC_Plant,100; },{},{}
-4263,Incant_Samurai_Card,Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; },{},{ 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; } }
-4264,Wind_Ghost_Card,Wind Ghost Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; },{},{}
-4265,Li_Me_Mang_Ryang_Card,Jing Guai Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12033,RC_Angel,100; },{},{}
-4266,Eclipse_Card,Eclipse Card,6,20,,10,,,,,,,,4,,,,,{ bonus bVit,1; },{},{}
-4267,Explosion_Card,Explosion Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-4268,Injustice_Card,Injustice Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"AS_SONICBLOW",1,50; },{},{}
-4269,Incubus_Card,Incubus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; },{},{}
-4270,Giant_Spider_Card,Giant Spider Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,600; },{},{}
-4271,Giant_Honet_Card,Giant Hornet Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; },{},{}
-4272,Dancing_Dragon_Card,Zhu Po Long Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus bCritical,3; },{},{}
-4273,Shellfish_Card,Shell Fish Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; },{},{}
-4274,Zombie_Master_Card,Zombie Master Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Undead,5; },{},{ heal 0,-5; }
-4275,Zombie_Prisoner_Card,Zombie Prisoner Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; },{},{}
-4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ 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; },{},{}
-4277,Zherlthsh_Card,Zealotus Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-4278,Gibbet_Card,Gibbet Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<6) bonus bMdef,5; },{},{}
-4279,Deleter_Card,Earth Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bSPrecovRate,-100; bonus bSPGainValue,10; },{},{ heal 0,-100; }
-4280,Geographer_Card,Geographer Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; },{},{}
-4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; },{},{}
-4282,Tengu_Card,Tengu Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; },{},{}
-4283,Greatest_General_Card,Greatest General Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); },{},{}
-4284,Chepet_Card,Chepet Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAutoSpell,"AL_HEAL",5,50,1; },{},{}
-4285,Choco_Card,Choco Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,5; bonus bFlee,10; },{},{}
-4286,Karakasa_Card,Karakasa Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); },{},{}
-4287,Kapha_Card,Kapha Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<6) bonus bMdef,8; },{},{}
-4288,Carat_Card,Carat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; },{},{}
-4289,Caterpillar_Card,Caterpillar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Plant,5; },{},{ heal 0,-5; }
-4290,Cat_O_Nine_Tail_Card,Cat O' Nine Tails Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMdef,3; bonus bMagicDamageReturn,5; },{},{}
-4291,Kobold_Leader_Card,Kobold Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Kobold,30; },{},{}
-4292,Kobold_Archer_Card,Kobold Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; },{},{}
-4293,Cookie_Card,Cookie Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; },{},{}
-4294,Quve_Card,Quve Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{}
-4295,Kraben_Card,Kraben Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,600; },{},{}
-4296,Cramp_Card,Cramp Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bGetZenyNum,500,1; },{},{}
-4297,Cruiser_Card,Cruiser Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; },{},{}
-4298,Cremy_Fear_Card,Creamy Fear Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,600; },{},{}
-4299,Clock_Card,Clock Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; },{},{ sc_end SC_AUTOGUARD; }
-4300,Chimera_Card,Chimera Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); },{},{}
-4301,Killer_Mantis_Card,Killer Mantis Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Bleeding,600; },{},{}
-4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50; },{},{}
-4303,Whisper_Boss_Card,Giant Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; },{},{}
-4304,Tamruan_Card,Tamruan Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; },{},{}
-4305,Turtle_General_Card,Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; },{},{}
-4306,Toad_Card,Toad Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,1; },{},{}
-4307,Kind_Of_Beetle_Card,Beetle King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Fish,5; },{},{ heal 0,-5; }
-4308,Tri_Joint_Card,Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Formless,5; },{},{ heal 0,-5; }
-4309,Parasite_Card,Parasite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus2 bSubRace,RC_Formless,5; },{},{}
-4310,Panzer_Goblin_Card,Panzer Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; },{},{}
-4311,Permeter_Card,Permeter Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; },{},{}
-4312,Fur_Seal_Card,Seal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } },{},{}
-4313,Punk_Card,Punk Card,6,20,,10,,,,,,,,4,,,,,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; },{},{}
-4314,Penomena_Card,Penomena Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Formless,30; },{},{}
-4315,Pest_Card,Pest Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); },{},{}
-4316,Fake_Angel_Card,False Angel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Angel,5; },{},{ heal 0,-5; }
-4317,Mobster_Card,Mobster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; },{},{}
-4318,Knight_Windstorm_Card,Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000; },{},{}
-4319,Freezer_Card,Freezer Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; },{},{}
-4320,Bloody_Knight_Card,Bloody Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_METEOR",1,20; },{},{}
-4321,Hylozoist_Card,Hylozoist Card,6,20,,10,,,,,,,,136,,,,,{ bonus bClassChange,100; },{},{}
-4322,High_Orc_Card,High Orc Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus bShortWeaponDamageReturn,5; },{},{}
-4323,Garm_Baby_Card,Hatii Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; },{},{}
-4324,Garm_Card,Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,5000; },{},{}
-4325,Harpy_Card,Harpy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; },{},{}
-4326,See_Otter_Card,Sea-Otter Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; },{},{}
-4327,Blood_Butterfly_Card,Bloody Butterfly Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; },{},{}
-4328,Hyegun_Card,Yao Jun Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,15; bonus bCritical,1; },{},{}
-4329,Phendark_Card,Phendark Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player,5; },{},{ heal 0,-5; }
-4330,Dark_Snake_Lord_Card,Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; },{},{}
-4331,Heater_Card,Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; },{},{}
-4332,Waste_Stove_Card,Waste Stove Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,5; bonus bInt,1; },{},{}
-4333,Venomous_Card,Venomous Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; },{},{}
-4334,Noxious_Card,Noxious Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; },{},{}
-4335,Pitman_Card,Pitman Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; },{},{ heal 0,-50; }
-4336,Ungoliant_Card,Ungoliant Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; },{},{}
-4337,Porcellio_Card,Porcellio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,25; bonus bDef,-5; },{},{}
-4338,Obsidian_Card,Obsidian Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,readparam(bDex)/18; },{},{}
-4339,Mineral_Card,Mineral Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,-25; bonus bDef,3; },{},{}
-4340,Teddy_Bear_Card,Teddy Bear Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Undead,30; },{},{}
-4341,Metaling_Card,Metaling Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; },{},{}
-4342,Rsx_0806_Card,RSX-0806 Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; },{},{}
-4343,Mole_Card,Holden Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,2; },{},{}
-4344,Anopheles_Card,Anopheles Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12058,RC_Insect,50; },{},{}
-4345,Hill_Wind_Card,Hill Wind Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; },{},{ heal 0,-50; }
-4346,Ygnizem_Card,Egnigem Cenia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,readparam(bInt)/18; },{},{}
-4347,Armaia_Card,Armeyer Dinze Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12053,RC_Fish,50; },{},{}
-4348,Whikebain_Card,Wickebine Tres Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; },{},{}
-4349,Erend_Card,Errende Ebecee Card,6,20,,10,,,,,,,,136,,,,,{ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; },{},{}
-4350,Rawrel_Card,Laurell Weinder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; },{},{ heal 0,-50; }
-4351,Kavac_Card,Kavach Icarus Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } },{},{}
-4352,B_Ygnizem_Card,General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{}
-4353,Removal_Card,Remover Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; },{},{}
-4354,Gemini_Card,Gemini-S58 Card,6,20,,10,,,,,,,,769,,,,,{ 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; } },{},{}
-4355,Gremlin_Card,Gremlin Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12043,RC_Brute,50; },{},{}
-4356,Beholder_Card,Beholder Card,6,20,,10,,,,,,,,136,,,,,{ skill "SA_CASTCANCEL",1; },{},{}
-4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; },{},{}
-4358,Seyren_Card,Seyren Windsor Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,getrefine()-6; },{},{}
-4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",3; },{},{ sc_end SC_CLOAKING; }
-4360,Eremes_Card,Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; },{},{}
-4362,Harword_Card,Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,-5; bonus bHit,30; },{},{}
-4363,B_Magaleta_Card,High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0; },{},{}
-4364,Magaleta_Card,Margaretha Sorin Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; },{},{}
-4365,B_Katrinn_Card,High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100; },{},{ heal 0,-2000; }
-4366,Katrinn_Card,Kathryne Keyron Card,6,20,,10,,,,,,,,769,,,,,{ bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; } },{},{}
-4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10; },{},{}
-4368,Shecil_Card,Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,5; bonus bHit,-30; },{},{}
-4369,Venatu_Card,Venatu Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,readparam(bAgi)/18; },{},{}
-4370,Dimik_Card,Dimik Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,getrefine()-5; },{},{}
-4371,Archdam_Card,Archdam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,10; bonus bCastrate,20; },{},{}
-4372,Bacsojin_Card,White Lady Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,30; bonus bUseSPrate,15; },{},{}
-4373,Chung_E_Card,Green Maiden Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLuk,getrefine()-5; bonus bCritical,getrefine(); },{},{}
-4374,Apocalips_H_Card,Vesper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; },{},{}
-4375,Orc_Baby_Card,Orc Baby Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; } },{},{}
-4376,Lady_Tanee_Card,Lady Tanee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; },{},{}
-4377,Green_Iguana_Card,Grove Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12063,RC_Formless,50; },{},{}
-4378,Acidus_Card,Gold Acidus Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } },{},{}
-4379,Acidus__Card,Blue Acidus Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } },{},{}
-4380,Ferus_Card,Red Ferus Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; },{},{ heal 0,-50; }
-4381,Ferus__Card,Green Ferus Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,1; bonus bMaxHPrate,10; },{},{}
-4382,Novus__Card,Yellow Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,500; bonus bHPrecovRate,10; },{},{}
-4383,Novus_Card,Red Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; },{},{}
-4384,Hydro_Card,Hydrolancer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; },{},{}
-4385,Dragon_Egg_Card,Dragon Egg Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; },{},{}
-4386,Detale_Card,Detardeurus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; },{},{}
-4387,Ancient_Mimic_Card,Ancient Mimic Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,readparam(bLuk)/18; },{},{}
-4388,Deathword_Card,Death Word Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; },{},{ heal 0,-50; }
-4389,Plasma_Card,Plasma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; },{},{}
-4390,Breeze_Card,Breeze Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; },{},{}
-4391,Retribution_Card,Baroness of Retribution Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12068,RC_Angel,50; },{},{}
-4392,Observation_Card,Dame of Sentinel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,readparam(bVit)/18; },{},{}
-4393,Shelter_Card,Mistress of Shelter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,readparam(bStr)/18; },{},{}
-4394,Solace_Card,Lady Solace Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; },{},{}
-4395,Tha_Maero_Card,Maero of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; },{},{}
-4396,Tha_Odium_Card,Odium of Thanatos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,getrefine()-5; },{},{}
-4397,Tha_Despero_Card,Despero of Thanatos Card,6,20,,10,,,,,,,,32,,,,,{ bonus bInt,getrefine()-6; },{},{}
-4398,Tha_Dolor_Card,Dolor of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Angel,10; },{},{}
-4399,Thanatos_Card,Memory of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; },{},{}
-4400,Aliza_Card,Aliza Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); },{},{}
-4401,Alicel_Card,Alicel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bFlee,10; bonus bDef,-5; },{},{}
-4402,Aliot_Card,Aliot Card,6,20,,10,,,,,,,,4,,,,,{ 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; } },{},{}
-4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,-30; },{},{}
-4404,Skogul_Card,Skogul Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; },{},{}
-4405,Frus_Card,Frus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; },{},{}
-4406,Skeggiold_Card,Skeggiold Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Demon,2; },{},{}
-4407,Randgris_Card,Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; },{},{}
-4408,Gloom_Under_Night_Card,Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; },{},{}
-4409,Agav_Card,Agav Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; },{},{}
-4410,Echio_Card,Echio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; },{},{}
-4411,Vanberk_Card,Vanberk Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-4412,Isilla_Card,Isilla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-4413,Hodremlin_Card,Hodremlin Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; },{},{}
-4414,Seeker_Card,Seeker Card,6,20,,10,,,,,,,,32,,,,,{ skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; },{},{}
-4415,Snowier_Card,Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100; },{},{}
-4416,Siroma_Card,Siroma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25; },{},{}
-4417,Ice_Titan_Card,Ice Titan Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; },{},{}
-4418,Gazeti_Card,Gazeti Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MG_COLDBOLT",2,100; },{},{}
-4419,Ktullanux_Card,Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; },{},{}
-4420,Muscipular_Card,Muscipular Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{}
-4421,Drosera_Card,Drosera Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCriticalLong,15; },{},{}
-4422,Roween_Card,Roween Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; },{},{}
-4423,Galion_Card,Galion Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,5; bonus2 bAddEle,Ele_Water,5; },{},{}
-4424,Stapo_Card,Stapo Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; },{},{}
-4425,Atroce_Card,Atroce Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-4426,Byorgue_Card,Byorgue Card,6,20,,10,,,,,,,,16,,,,,{ if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } },{},{}
-4427,Sword_Guardian_Card,Sword Guardian Card,6,20,,10,,,,,,,,2,,,,,{ 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; } },{},{}
-4428,Bow_Guardian_Card,Bow Guardian Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,50; } },{},{}
-4429,Salamander_Card,Salamander Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; },{},{}
-4430,Ifrit_Card,Ifrit Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10; },{},{}
-4431,Kasa_Card,Kasa Card,6,20,,10,,,,,,,,4,,,,,{ bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; },{},{}
-4432,Magmaring_Card,Magmaring Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; },{},{}
-4433,Imp_Card,Imp Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25; },{},{}
-4434,Knocker_Card,Knocker Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; },{},{}
-4435,Zombie_Slaughter_Card,Zombie Slaughter Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player,1; bonus bHPGainValue,50; },{},{}
-4436,Ragged_Zombie_Card,Ragged Zombie Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player,1; bonus2 bAddEff2,Eff_Bleeding,10; },{},{}
-4437,Hell_Poodle_Card,Hell Poodle Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; },{},{}
-4438,Banshee_Card,Banshee Card,6,20,,10,,,,,,,,769,,,,,{ 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; } },{},{}
-4439,Flame_Skull_Card,Flame Skull Card,6,20,,10,,,,,,,,32,,,,,{ 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; },{},{}
-4440,Necromancer_Card,Necromancer Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==W_STAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } },{},{}
-4441,Fallen_Bishop_Card,Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player,50; },{},{}
-4442,Tatacho_Card,Tatacho Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; },{},{}
-4443,Aqua_Elemental_Card,Aqua Elemental Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; },{},{}
-4444,Draco_Card,Draco Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; },{},{}
-4445,Luciola_Vespa_Card,Luciola Vespa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; },{},{}
-4447,Centipede_Card,Centipede Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; },{},{}
-4448,Cornus_Card,Cornus Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; },{},{}
-4449,Dark_Shadow_Card,Dark Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; },{},{}
-4450,Banshee_Master_Card,Banshee Master Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; bonus bMatk,10; },{},{}
-4451,Ant_Buyanne_Card,Entweihen Crothen Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,100; },{},{}
-4452,Centipede_Larva_Card,Centipede Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMatk,3; },{},{}
-4453,Hilsrion_Card,Hillsrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; },{},{}
-// Armor Enchant System
-//===================================================================
-4700,Strength1,STR+1,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; },{},{}
-4701,Strength2,STR+2,6,20,,10,,,,,,,,,,,,,{ bonus bStr,2; },{},{}
-4702,Strength3,STR+3,6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{}
-4703,Strength4,STR+4,6,20,,10,,,,,,,,,,,,,{ bonus bStr,4; },{},{}
-4704,Strength5,STR+5,6,20,,10,,,,,,,,,,,,,{ bonus bStr,5; },{},{}
-4705,Strength6,STR+6,6,20,,10,,,,,,,,,,,,,{ bonus bStr,6; },{},{}
-4706,Strength7,STR+7,6,20,,10,,,,,,,,,,,,,{ bonus bStr,7; },{},{}
-4707,Strength8,STR+8,6,20,,10,,,,,,,,,,,,,{ bonus bStr,8; },{},{}
-4708,Strength9,STR+9,6,20,,10,,,,,,,,,,,,,{ bonus bStr,9; },{},{}
-4709,Strength10,STR+10,6,20,,10,,,,,,,,,,,,,{ bonus bStr,10; },{},{}
-4710,Inteligence1,INT+1,6,20,,10,,,,,,,,,,,,,{ bonus bInt,1; },{},{}
-4711,Inteligence2,INT+2,6,20,,10,,,,,,,,,,,,,{ bonus bInt,2; },{},{}
-4712,Inteligence3,INT+3,6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{}
-4713,Inteligence4,INT+4,6,20,,10,,,,,,,,,,,,,{ bonus bInt,4; },{},{}
-4714,Inteligence5,INT+5,6,20,,10,,,,,,,,,,,,,{ bonus bInt,5; },{},{}
-4715,Inteligence6,INT+6,6,20,,10,,,,,,,,,,,,,{ bonus bInt,6; },{},{}
-4716,Inteligence7,INT+7,6,20,,10,,,,,,,,,,,,,{ bonus bInt,7; },{},{}
-4717,Inteligence8,INT+8,6,20,,10,,,,,,,,,,,,,{ bonus bInt,8; },{},{}
-4718,Inteligence9,INT+9,6,20,,10,,,,,,,,,,,,,{ bonus bInt,9; },{},{}
-4719,Inteligence10,INT+10,6,20,,10,,,,,,,,,,,,,{ bonus bInt,10; },{},{}
-4720,Dexterity1,DEX+1,6,20,,10,,,,,,,,,,,,,{ bonus bDex,1; },{},{}
-4721,Dexterity2,DEX+2,6,20,,10,,,,,,,,,,,,,{ bonus bDex,2; },{},{}
-4722,Dexterity3,DEX+3,6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{}
-4723,Dexterity4,DEX+4,6,20,,10,,,,,,,,,,,,,{ bonus bDex,4; },{},{}
-4724,Dexterity5,DEX+5,6,20,,10,,,,,,,,,,,,,{ bonus bDex,5; },{},{}
-4725,Dexterity6,DEX+6,6,20,,10,,,,,,,,,,,,,{ bonus bDex,6; },{},{}
-4726,Dexterity7,DEX+7,6,20,,10,,,,,,,,,,,,,{ bonus bDex,7; },{},{}
-4727,Dexterity8,DEX+8,6,20,,10,,,,,,,,,,,,,{ bonus bDex,8; },{},{}
-4728,Dexterity9,DEX+9,6,20,,10,,,,,,,,,,,,,{ bonus bDex,9; },{},{}
-4729,Dexterity10,DEX+10,6,20,,10,,,,,,,,,,,,,{ bonus bDex,10; },{},{}
-4730,Agility1,AGI+1,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,1; },{},{}
-4731,Agility2,AGI+2,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,2; },{},{}
-4732,Agility3,AGI+3,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{}
-4733,Agility4,AGI+4,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,4; },{},{}
-4734,Agility5,AGI+5,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,5; },{},{}
-4735,Agility6,AGI+6,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,6; },{},{}
-4736,Agility7,AGI+7,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,7; },{},{}
-4737,Agility8,AGI+8,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,8; },{},{}
-4738,Agility9,AGI+9,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,9; },{},{}
-4739,Agility10,AGI+10,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,10; },{},{}
-4740,Vitality1,VIT+1,6,20,,10,,,,,,,,,,,,,{ bonus bVit,1; },{},{}
-4741,Vitality2,VIT+2,6,20,,10,,,,,,,,,,,,,{ bonus bVit,2; },{},{}
-4742,Vitality3,VIT+3,6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{}
-4743,Vitality4,VIT+4,6,20,,10,,,,,,,,,,,,,{ bonus bVit,4; },{},{}
-4744,Vitality5,VIT+5,6,20,,10,,,,,,,,,,,,,{ bonus bVit,5; },{},{}
-4745,Vitality6,VIT+6,6,20,,10,,,,,,,,,,,,,{ bonus bVit,6; },{},{}
-4746,Vitality7,VIT+7,6,20,,10,,,,,,,,,,,,,{ bonus bVit,7; },{},{}
-4747,Vitality8,VIT+8,6,20,,10,,,,,,,,,,,,,{ bonus bVit,8; },{},{}
-4748,Vitality9,VIT+9,6,20,,10,,,,,,,,,,,,,{ bonus bVit,9; },{},{}
-4749,Vitality10,VIT+10,6,20,,10,,,,,,,,,,,,,{ bonus bVit,10; },{},{}
-4750,Luck1,LUK+1,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,1; },{},{}
-4751,Luck2,LUK+2,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,2; },{},{}
-4752,Luck3,LUK+3,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{}
-4753,Luck4,LUK+4,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,4; },{},{}
-4754,Luck5,LUK+5,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,5; },{},{}
-4755,Luck6,LUK+6,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,6; },{},{}
-4756,Luck7,LUK+7,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,7; },{},{}
-4757,Luck8,LUK+8,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,8; },{},{}
-4758,Luck9,LUK+9,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,9; },{},{}
-4759,Luck10,LUK+10,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,10; },{},{}
-4760,Matk1,MATK+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{}
-4761,Matk2,MATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,2; },{},{}
-4762,Evasion6,FLEE+6,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,6; },{},{}
-4763,Evasion12,FLEE+12,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,12; },{},{}
-4764,Critical5,CRI+5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,5; },{},{}
-4765,Critical7,CRI+7,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,7; },{},{}
-4766,Atk2,ATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,2; },{},{}
-4767,Atk3,ATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; },{},{}
-4768,Str1_J,STR+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4769,Str2_J,STR+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4770,Str3_J,STR+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4771,Int1_J,INT+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4772,Int2_J,INT+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4773,Int3_J,INT+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4774,Vit1_J,VIT+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4775,Vit2_J,VIT+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4776,Vit3_J,VIT+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4777,Agi1_J,AGI+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4778,Agi2_J,AGI+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4779,Agi3_J,AGI+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4780,Dex1_J,DEX+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4781,Dex2_J,DEX+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4782,Dex3_J,DEX+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4783,Luk1_J,LUK+1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4784,Luk2_J,LUK+2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4785,Luk3_J,LUK+3,6,20,,10,,,,,,,,,,,,,{},{},{}
-// More Headgears
-//===================================================================
-5001,Headset,Headset,4,20,,200,,3,,0,0xFFFFFFFE,7,2,256,,1,1,87,{ bonus2 bResEff,Eff_Curse,1000; },{},{}
-5002,Gemmed_Crown,Jewel Crown,4,20,,600,,4,,0,0x000654E2,7,2,256,,60,1,88,{ bonus bInt,2; bonus bLuk,1; bonus bMdef,3; },{},{}
-5003,Joker_Jester,Joker Jester,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; },{},{}
-5004,Oxygen_Mask,Oxygen Mask,4,20,,200,,0,,0,0xFFFFFFFE,7,2,1,,0,0,90,{ bonus2 bResEff,Eff_Poison,2000; },{},{}
-5005,Gas_Mask,Gas Mask,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{}
-5006,Machoman_Glasses,Machoman's Glasses,4,36000,,100,,1,,0,0xFFFFFFFE,7,2,512,,0,0,92,{},{},{}
-5007,Loard_Circlet,Grand Circlet,4,20,,200,,3,,0,0xFFFFFFFE,7,2,256,,55,1,93,{ bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; },{},{}
-5008,Puppy_Love,Puppy Love,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,94,{},{},{}
-5009,Safety_Helmet,Safety Helmet,4,20,,500,,3,,0,0xFFFFFFFE,7,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm; },{},{}
-5010,Indian_Hair_Piece,Indian Fillet,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,96,{},{},{}
-5011,Antenna,Aerial,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,97,{},{},{}
-5012,Ph.D_Hat,Ph.D Hat,4,20,,200,,3,,0,0xFFFFFFFE,7,2,256,,0,1,98,{},{},{}
-5013,Horn_Of_Lord_Kaho,Lord Kaho's Horn,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,99,{ bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; },{},{}
-5014,Fin_Helm,Fin Helm,4,20,,300,,2,,0,0x00004082,7,2,512,,65,0,100,{},{},{}
-5015,Egg_Shell,Egg Shell,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,0,101,{},{},{}
-5016,Boy's_Cap,Boy's Cap,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,102,{},{},{}
-5017,Bone_Helm,Bone Helm,4,20,,800,,7,,0,0x000444A2,7,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{}
-5018,Feather_Bonnet,Feather Bonnet,4,20,,300,,4,,0,0x00080808,7,2,256,,0,1,104,{ bonus bAgi,1; },{},{}
-5019,Corsair,Corsair,4,20,,500,,5,,0,0xFFFFFFFE,7,2,256,,0,1,105,{ bonus bVit,1; },{},{}
-5020,Kafra_Band,Kafra Band,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,106,{ bonus bMdef,3; },{},{}
-5021,Bankruptcy_Of_Heart,Grief for Greed,4,20,,1200,,4,,0,0x00040420,7,2,256,,38,1,107,{ bonus bInt,1; bonus bDex,1; },{},{}
-5022,Helm_Of_Sun,Hat of the Sun God,4,20,,2400,,4,,0,0x00CFDF80,7,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{}
-5023,Hat_Of_Bundle,Parcel Hat,4,20,,1000,,0,,0,0x00040420,7,2,256,,0,1,108,{},{},{}
-5024,Hat_Of_Cake,Cake Hat,4,20,,1000,,1,,0,0xFFFFFFFF,7,2,256,,0,1,109,{},{},{}
-5025,Helm_Of_Angel,Helm of Angel,4,20,,1600,,5,,0,0x00CFDF80,7,2,256,,74,1,110,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; },{},{}
-5026,Hat_Of_Cook,Chef Hat,4,20,,300,,1,,0,0xFFFFFFFE,7,2,256,,50,1,111,{ bonus bDex,1; },{},{}
-5027,Wizardry_Hat,Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5028,Candle,Candle,4,20,,150,,0,,0,0xFFFFFFFF,7,2,256,,0,1,113,{},{},{}
-5029,Spore_Hat,Spore Hat,4,20,,900,,3,,0,0xFFFFFFFE,7,2,256,,20,1,114,{},{},{}
-5030,Panda_Cap,Panda Hat,4,20,,800,,3,,0,0xFFFFFFFE,7,2,256,,40,1,115,{},{},{}
-5031,Mine_Helm,Mine Hat,4,20,,1500,,4,,0,0x0006D5F2,7,2,256,,55,1,116,{ bonus bDex,2; },{},{}
-5032,Picnic_Hat,Sunday Hat,4,20,,800,,1,,0,0xFFFFFFFE,7,2,256,,0,1,117,{},{},{}
-5033,Smokie_Hat,Raccoon Hat,4,20,,900,,3,,0,0xFFFFFFFE,7,2,256,,50,1,118,{},{},{}
-5034,Light_Bulb_Band,Bulb Band,4,20,,500,,0,,0,0xFFFFFFFE,7,2,256,,0,1,119,{},{},{}
-5035,Poring_Hat,Poring Hat,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,38,1,120,{},{},{}
-5036,Cross_Band,Cross Hat,4,20,,250,,1,,0,0xFFFFFFFE,7,2,256,,10,1,121,{},{},{}
-5037,Fruit_Shell,Nut Shell,4,20,,150,,4,,0,0xFFFFFFFF,7,2,256,,5,0,122,{},{},{}
-5038,Deviruchi_Cap,Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,123,{ bonus bStr,1; bonus bInt,1; },{},{}
-5039,Mottled_Egg_Shell,Rainbow Eggshell,4,20,,400,,4,,0,0xFFFFFFFF,7,2,256,,19,0,124,{},{},{}
-5040,Blush,Blush,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,125,{},{},{}
-5041,Heart_Hair_Pin,Heart Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,126,{},{},{}
-5042,Hair_Protector,Bao Bao,4,20,,150,,0,,0,0xFFFFFFFE,7,2,256,,14,1,127,{},{},{}
-5043,Opera_Ghost_Mask,Opera Phantom Mask,4,20,,200,,1,,0,0xFFFFFFFE,7,2,512,,20,0,128,{},{},{}
-5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,2,,0,0x0,7,2,256,,45,1,129,{ bonus bVit,1; },{},{}
-5045,Magician_Hat,Magician Hat,4,20,,500,,3,,0,0x00818314,7,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; },{},{}
-5046,Bongun_Hat,Bongun Hat,4,20,,300,,5,,0,0xFFFFFFFF,7,2,769,,0,0,139,{},{},{}
-5047,Fashion_Sunglass,Fashionable Glasses,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,0,1,131,{},{},{}
-5048,First_Moon_Hair_Pin,Cresent Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,132,{},{},{}
-5049,Stripe_Band,Striped Hairband,4,20,,150,,1,,0,0xFFFFFFFF,7,2,256,,0,0,133,{},{},{}
-5050,Mystery_Fruit_Shell,Wonder Nutshell,4,20,,300,,5,,0,0xFFFFFFFF,7,2,256,,30,0,134,{},{},{}
-5051,Kitty_Bell,Pussy Cat Bell,4,20,,100,,0,,0,0x0,7,2,1,,0,0,135,{},{},{}
-5052,Blue_Hair_Band,Blue Hairband,4,20,,150,,1,,0,0xFFFFFFFF,7,2,256,,0,1,136,{},{},{}
-5053,Spinx_Helm,Sphinx Hat,4,20,,3000,,5,,0,0x00004082,7,2,257,,65,0,137,{ bonus bStr,2; },{},{}
-5054,Assassin_Mask,Assassin Mask,4,20,,100,,0,,0,0x00001100,7,2,1,,70,0,180,{},{},{}
-5055,Novice_Egg_Cap,Novice False Eggshell,4,1,,1,,3,,0,0x00000001,7,2,256,,0,0,101,{},{},{}
-5056,Love_Berry,Fruit of Love,4,1,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,140,{},{},{}
-5057,Ear_Of_Black_Cat,Black Cat Ears,4,16000,,200,,2,,0,0xFFFFFFFF,7,2,256,,45,1,141,{},{},{}
-5058,Drooping_Kitty,Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{}
-5059,Brown_Bear_Cap,Teddybear Hat,4,20,,800,,3,,0,0xFFFFFFFF,7,2,256,,50,1,143,{},{},{}
-5060,Party_Hat,Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,144,{ bonus bLuk,1; },{},{}
-5061,Flower_Hairpin,Flower Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,145,{},{},{}
-5062,Straw_Hat,Straw Hat,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,50,1,146,{ bonus bAgi,1; },{},{}
-5063,Plaster,Giant Band Aid,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,147,{},{},{}
-5064,Leaf_Headgear,Smokie Leaf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,148,{},{},{}
-5065,Fish_On_Head,Blue Fish,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus2 bAddRace,RC_Fish,10; },{},{}
-5066,Horn_Of_Succubus,Succubus Horn,4,20,,800,,4,,0,0xFFFFFFFE,7,2,256,,70,1,150,{ bonus bInt,1; bonus bMdef,10; },{},{}
-5067,Sombrero,Sombrero,4,20,,350,,4,,0,0xFFFFFFFE,7,2,256,,0,1,151,{ bonus bAgi,1; },{},{}
-5068,Ear_Of_Devil's_Wing,Evil Wing Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,152,{ bonus bStr,1; },{},{}
-5069,Mask_Of_Fox,Kitsune Mask,4,20,,300,,1,,0,0xFFFFFFFE,7,2,256,,0,1,153,{ bonus bAgi,1; bonus bLuk,1; },{},{}
-5070,Headband_Of_Power,Hot-blooded Headband,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,154,{ bonus bStr,2; },{},{}
-5071,Indian_Headband,Indian Headband,4,20,,200,,1,,0,0xFFFFFFFE,7,2,256,,0,1,155,{ bonus bDex,1; },{},{}
-5072,Inccubus_Horn,Incubus Horn,4,20,,800,,4,,0,0xFFFFFFFE,7,2,256,,70,1,156,{ bonus bAgi,1; bonus bMdef,10; },{},{}
-5073,Cap_Of_Concentration,Model Training Hat,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,0,1,157,{ bonus bDex,2; },{},{}
-5074,Ear_Of_Angel's_Wing,Angel Wing Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,158,{ bonus bStr,1; },{},{}
-5075,Cowboy_Hat,Cowboy Hat,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,0,1,159,{},{},{}
-5076,Fur_Hat,Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,160,{ bonus bLuk,1; },{},{}
-5077,Tulip_Hairpin,Tulip Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,161,{},{},{}
-5078,Sea_Otter_Cap,Sea-Otter Hat,4,20,,800,,3,,0,0xFFFFFFFF,7,2,256,,50,1,162,{ bonus bVit,1; },{},{}
-5079,Crossed_Hair_Band,X Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,163,{},{},{}
-5080,Headgear_Of_Queen,Crown of Ancient Queen,4,20,,400,,4,,0,0xFFFFFFFF,7,2,256,,45,1,164,{},{},{}
-5081,Mistress_Crown,Crown of Mistress,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; },{},{}
-5082,Mushroom_Band,Decorative Mushroom,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,166,{},{},{}
-5083,Red_Tailed_Ribbon,Red Ribbon,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,45,1,167,{ bonus bMdef,10; },{},{}
-5084,Lazy_Raccoon,Lazy Smokie,4,20,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,168,{ bonus2 bResEff,Eff_Sleep,2000; },{},{}
-5085,Pair_Of_Red_Ribbon,Small Ribbons,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,45,0,169,{},{},{}
-5086,Alarm_Mask,Alarm Mask,4,20,,100,,2,,0,0xFFFFFFFE,7,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,5000; },{},{}
-5087,Goblin_Mask_01,Poker Face,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,171,{},{},{}
-5088,Goblin_Mask_02,Surprised Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,172,{},{},{}
-5089,Goblin_Mask_03,Annoyed Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,173,{},{},{}
-5090,Goblin_Mask_04,Goblin Leader Mask,4,20,,100,,2,,0,0xFFFFFFFF,7,2,513,,0,0,174,{},{},{}
-5091,Big_Golden_Bell,Decorative Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,7,2,768,,35,1,175,{},{},{}
-5092,Blue_Coif,Coif,4,150000,,300,,5,,0,0x00001100,7,2,768,,65,1,176,{},{},{}
-5093,Blue_Coif_,Coif,4,150000,,300,,5,,1,0x00001100,7,2,768,,65,1,177,{ bonus bMaxSP,100; },{},{}
-5094,Orc_Hero_Helm,Helmet of Orc Hero,4,500000,,900,,5,,0,0xFFFFFFFE,7,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; },{},{}
-//5095,Orc_Hero_Helm_,Helmet of Orc Hero,4,800000,,1000,,5,,1,0xFFFFFFFE,7,2,768,,55,1,179,{ bonus bStr,2; bonus bVit,1; },{},{}
-5096,Assassin_Mask_,Assassin Mask,4,20,,100,,0,,0,0x00001100,7,2,1,,70,0,180,{},{},{}
-5097,Cone_Hat_,Holiday Hat,4,0,,400,,0,,0,0xFFFFFFFF,7,2,256,,0,1,144,{},{},{}
-5098,Tiger_Mask,Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; bonus bMaxHP,100; },{},{}
-5099,Cat_Hat,Neko Mimi,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; },{},{}
-5100,Sales_Signboard,Sales Banner,4,20,,800,,0,,0,0xFFFFFFFF,7,2,256,,75,1,183,{ bonus bStr,1; bonus bAgi,1; bonus bLuk,1; },{},{}
-5101,Takius_Blindfold,Takius's Blindfold,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,184,{},{},{}
-5102,Round_Eyes,Blank Eyes,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,185,{},{},{}
-5103,Sunflower_Hairpin,Sunflower Hairpin,4,20,,600,,1,,0,0xFFFFFFFE,7,2,256,,30,0,186,{ bonus bAgi,2; bonus bCritical,5; },{},{}
-5104,Dark_Blindfold,Dark Blinder,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{}
-5105,Hat_Of_Cake_,2nd Anniversary Hat,4,20,,1000,,1,,0,0xFFFFFFFF,7,2,256,,24,1,109,{ bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; },{},{}
-5106,Cone_Hat_INA,2nd Anniversary Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,0,144,{ bonus bLuk,1; },{},{}
-5107,Well_Baked_Toast,Crunch Toast,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,188,{},{},{}
-5108,Detective_Hat,Renown Detective's Cap,4,20,,350,,3,,1,0xFFFFFFFF,7,2,256,,0,1,189,{},{},{}
-5109,Red_Bonnet,Red Bonnet,4,20,,400,,2,,0,0xFFFFFFFF,7,2,256,,0,1,190,{},{},{}
-5110,Baby_Pacifier,Baby Pacifier,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,191,{},{},{}
-5111,Galapago_Cap,Galapago Cap,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,55,1,192,{ bonus2 bAddMonsterDropItem,605,100; },{},{}
-5112,Super_Novice_Hat,Super Novice Hat,4,8500,,400,,4,,0,0x00000001,7,2,256,,40,1,193,{ bonus bAllStats,1; },{},{}
-5113,Angry_Mouth,Angry Snarl,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,194,{},{},{}
-5114,Fedora,Bucket Hat,4,6000,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,195,{},{},{}
-5115,Winter_Hat,Winter Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,196,{ bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5116,Banana_Hat,Banana Hat,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,197,{ bonus3 bAutoSpell,"SM_PROVOKE",3,30; },{},{}
-5117,Mistic_Rose,Mystic Rose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,198,{ bonus2 bSubRace,RC_Plant,2; },{},{}
-5118,Ear_Of_Puppy,Puppy Headband,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,199,{},{},{}
-5119,Super_Novice_Hat_,Super Novice Hat,4,8500,,400,,4,,1,0x00000001,7,2,256,,40,1,193,{ bonus bAllStats,1; },{},{}
-5120,Fedora_,Bucket Hat,4,6000,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,195,{},{},{}
-5121,Zherlthsh_Mask,Zealotus Mask,4,20,,400,,3,,0,0xFFFFFFFE,7,2,768,,70,1,200,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5122,Magni_Cap,Magni's Cap,4,30000,,1000,,5,,0,0xFFFFFFFE,7,2,256,,65,1,250,{ bonus bStr,2; },{},{}
-5123,Ulle_Cap,Ulle's Cap,4,30000,,500,,3,,1,0xFFFFFFFE,7,2,256,,65,1,254,{ bonus bDex,2; bonus bAgi,1; },{},{}
-5124,Fricca_Circlet,Fricca's Circlet,4,30000,,300,,3,,0,0xFFFFFFFE,7,2,256,,65,1,251,{ bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; },{},{}
-5125,Kiss_Of_Angel,Angel's Kiss,4,10000,,300,,3,,1,0x00000001,7,2,256,,50,1,255,{ bonus bSPrecovRate,5; },{},{}
-5126,Morpheus's_Hood,Morpheus's Hood,4,30000,,200,,1,,0,0xFFFFFFFE,7,2,256,,33,1,256,{ bonus bInt,2; },{},{}
-5127,Morrigane's_Helm,Morrigane's Helm,4,30000,,500,,4,,0,0xFFFFFFFE,7,2,256,,61,1,257,{ bonus bLuk,2; bonus bBaseAtk,3; },{},{}
-5128,Goibne's_Helmet,Goibne's Helm,4,30000,,500,,5,,0,0xFFFFFFFE,7,2,256,,54,1,258,{ bonus bVit,3; bonus bMdef,3; },{},{}
-5129,Bird_Nest,Bird Nest,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,50,0,201,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; },{},{}
-5130,Lion_Mask,Lion Mask,4,20,,700,,0,,0,0x00CFDF80,7,2,768,,75,1,202,{ bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; },{},{}
-5131,Close_Helmet,Close Helmet,4,20,,1200,,8,,0,0x00004082,7,2,769,,75,1,203,{ bonus bVit,3; bonus bMaxHPrate,3; },{},{}
-5132,Angeling_Hat,Angeling Hat,4,20,,700,,2,,0,0xFFFFFFFF,7,2,256,,0,0,204,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5133,Sheep_Hat,Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{ bonus bShortWeaponDamageReturn,5; },{},{}
-5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{}
-5135,Cyclops_Visor,Cyclop's Eye,4,0,,200,,0,,0,0xFFFFFFFE,7,2,512,,75,0,207,{ bonus bMaxSP,50; },{},{}
-5136,Santa's_Hat_,Antonio's Santa Hat,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,20,{},{},{}
-5137,Alice_Doll,Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{}
-5138,Magic_Eyes,Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20; },{},{}
-5139,Hibiscus,Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bDex,1; bonus bInt,1; bonus bMdef,5; },{},{}
-5140,Charming_Ribbon,Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; },{},{}
-5141,Marionette_Doll,Marionette Doll,4,20,,400,,0,,1,0xFFFFFFFE,7,2,256,,30,1,212,{ bonus bStr,1; },{},{}
-5142,Crescent_Helm,Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5143,Kabuki_Mask,Kabuki Mask,4,20,,1000,,5,,1,0xFFFFFFFE,7,1,769,,30,1,214,{ bonus2 bResEff,Eff_Silence,3000; },{},{}
-5144,Gambler_Hat,Gambler Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{ bonus bLuk,5; },{},{}
-5145,Carnival_Joker_Jester,Carnival Joker Jester,4,10,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,89,{},{},{}
-5146,Elephant_Hat,Elephant Hat,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,215,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1; },{},{}
-5147,Baseball_Cap,Baseball Cap,4,0,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{}
-5148,Phrygian_Cap,Phrygian Cap,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,217,{ bonus bInt,2; },{},{}
-5149,Silver_Tiara,Silver Tiara,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,218,{ bonus bInt,2; },{},{}
-5150,Joker_Jester_,Joker Jester,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,219,{ bonus bSpeedRate,25; },{},{}
-5151,Headset_OST,Note Headphones,4,20,,200,,4,,1,0xFFFFFFFF,7,2,768,,0,1,220,{ bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5152,Chinese_Crown,Chinese Crown,4,20,,2000,,2,,0,0xFFFFFFFF,7,2,768,,1,1,221,{ bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; },{},{}
-5153,Angeling_Hairpin,Angeling Hairpin,4,20,,700,,3,,0,0xFFFFFFFF,7,2,256,,0,1,222,{ bonus bFlee,5; },{},{}
-5154,Sunglasses_F,Father's Sunglasses,4,20,,100,,3,,0,0xFFFFFFFF,7,2,512,,0,0,12,{},{},{}
-5155,Granpa_Beard_F,Father's White Moustache,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,25,{ bonus bBaseAtk,20; },{},{}
-5156,Flu_Mask_F,Father's Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus bMatkRate,1; },{},{}
-5157,Viking_Helm_,Orc Helm,4,20,,500,,5,,1,0x000654E2,7,2,256,,0,1,86,{},{},{}
-5158,Holy_Bonnet_,Monk Hat,4,30000,,100,,5,,1,0x00008110,7,2,256,,0,1,35,{ bonus bMdef,3; },{},{}
-5159,Golden_Gear_,Golden Gear,4,20,,900,,5,,1,0xFFFFFFFE,7,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{}
-5160,Magestic_Goat_,Majestic Goat,4,20,,800,,5,,1,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,1; },{},{}
-5161,Sharp_Gear_,Spiky Band,4,20,,1000,,6,,1,0x0066D5F2,7,2,256,,50,1,43,{},{},{}
-5162,Bone_Helm_,Bone Helm,4,20,,800,,7,,1,0x000444A2,7,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{}
-5163,Corsair_,Corsair,4,20,,500,,5,,1,0xFFFFFFFE,7,2,256,,0,1,105,{ bonus bVit,1; },{},{}
-5164,Tiara_,Tiara,4,20,,400,,4,,1,0xFFFFFFFE,7,0,256,,45,1,19,{ bonus bInt,1; },{},{}
-5165,Crown_,Crown,4,20,,400,,4,,1,0xFFFFFFFE,7,1,256,,45,1,45,{ bonus bInt,1; },{},{}
-5166,Spinx_Helm_,Sphinx Hat,4,20,,3000,,5,,1,0x00004082,7,2,257,,65,0,137,{ bonus bStr,2; },{},{}
-5167,Munak_Turban_,Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,7,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{}
-5168,Bongun_Hat_,Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,7,2,769,,0,0,139,{},{},{}
-5169,Bride_Mask,Bride Mask,4,30000,,500,,4,,1,0xFFFFFFFF,7,2,768,,40,1,223,{ if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } },{},{}
-5170,Feather_Beret,Feather Beret,4,30000,,600,,1,,0,0xFFFFFFFE,7,2,256,,0,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5171,Valkyrie_Helm,Valkyrie Helm,4,100000,,1000,,5,,1,0xFFFFFFFE,2,2,256,,0,1,225,{ bonus bMdef,5; },{},{}
-5172,Beret,Beret,4,30000,,700,,0,,0,0xFFFFFFFF,7,2,256,,0,0,226,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5173,Satto_Hat,Magistrate Hat,4,30000,,400,,3,,1,0xFFFFFFFF,7,2,256,,60,1,227,{ if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } },{},{}
-5174,Ayam,Ayam,4,30000,,400,,3,,1,0xFFFFFFFF,7,2,256,,60,1,228,{ if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } },{},{}
-5175,Censor_Bar,Censor Bar,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,229,{ bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; },{},{}
-5176,Hahoe_Mask,Hahoe Mask,4,30000,,100,,2,,0,0xFFFFFFFF,7,2,513,,30,0,230,{ if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } },{},{}
-5177,Guardian_Lion_Mask,Mythical Lion Mask,4,30000,,500,,5,,1,0xFFFFFFFF,7,2,768,,40,1,231,{ if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } },{},{}
-5178,Candle_,Candle,4,20,,150,,0,,0,0xFFFFFFFF,7,2,256,,0,1,113,{ bonus bAllStats,1; },{},{}
-5179,Gold_Tiara,Golden Tiara,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,232,{ bonus bInt,2; },{},{}
-5180,Phrygian_Cap_,France Holiday Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,217,{ bonus bVit,1; },{},{}
-5181,Helm_Of_Darkness,Helm of Darkness,4,20,,2000,,3,,1,0x000654E2,7,2,768,,50,1,233,{ bonus bStr,2; },{},{}
-5182,Puppy_Hat,Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); },{},{}
-5183,Bird_Nest_Hat,Bird Nest Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,10,1,235,{ bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; },{},{}
-5184,Captain_Hat,Captain's Hat,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,30,1,236,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-5185,Laurel_Wreath,Laurel Wreath,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,10,1,237,{ bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; },{},{}
-5186,Geographer_Band,Geographer Band,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,30,0,238,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; },{},{}
-5187,Twin_Ribbon,Twin Ribbon,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,1,239,{ bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; },{},{}
-5188,Minstrel_Hat,Wandering Minstrel Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,240,{ bonus bInt,1; bonus bDex,1; },{},{}
-5189,Fallen_Leaves,Autumn Leaves,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,241,{ bonus bMaxHP,40; bonus bMaxSP,40; },{},{}
-5190,Baseball_Cap_,Independence Memorial Hat,4,20,,20,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{}
-5191,Ribbon_Black,Black Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,242,{ bonus bInt,1; bonus bMdef,3; },{},{}
-5192,Ribbon_Yellow,Yellow Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,243,{ bonus bMdef,3; },{},{}
-5193,Ribbon_Green,Green Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-5194,Ribbon_Pink,Pink Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,245,{ bonus bMdef,3; },{},{}
-5195,Ribbon_Red,Red Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,246,{ bonus bMdef,3; },{},{}
-5196,Ribbon_Orange,Orange Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,247,{ bonus bMdef,3; },{},{}
-5197,Ribbon_White,White Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,248,{ bonus bMdef,3; },{},{}
-5198,Drooping_Bunny,Drooping Bunny,4,10,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5199,Baseball_Cap_I,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{}
-5200,Coppola,Coppola,4,10,,300,,0,,0,0xFFFFFFFF,7,2,256,,0,1,252,{},{},{}
-5201,Party_Hat_B,Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,144,{},{},{}
-5202,Pumpkin_Hat_,Fantastic Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{}
-5203,Tongue_Mask,Smiling Mask,4,20,,200,,2,,0,0xFFFFFFFF,7,2,513,,0,0,253,{ bonus bSpeedRate,25; },{},{}
-5204,Event_Pierrot_Nose,Rudolph's Nose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{}
-5205,Wreath,Emperor's Laurel Crown,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,768,,0,1,261,{ bonus bAllStats,1; bonus bMdef,3; },{},{}
-5206,Romantic_White_Flower,Romantic White Flower,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-5207,Gold_Spirit_Chain,Angel Blessing,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,260,{ bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; },{},{}
-5208,Rideword_Hat,Rideword Hat,4,20,,300,,2,,1,0xFFFFFFFE,7,2,256,,40,1,262,{ bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; },{},{}
-5209,Yellow_Baseball_Cap,Love Dad Cap,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,1,263,{},{},{}
-5210,Flying_Angel,Flapping Angel Wing,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; },{},{}
-5211,Dress_Hat,Dress Hat,4,0,,200,,2,,1,0xFFFFFFFF,7,2,256,,20,1,265,{ 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; } },{},{}
-5212,Satellite_Hairband,Satellite Hairband,4,0,,1000,,3,,1,0xFFFFFFFF,7,2,256,,30,1,266,{ bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; },{},{ sc_end SC_RUWACH; }
-5213,Black_Bunny_Band,Sheila Hairnet,4,0,,200,,2,,0,0xFFFFFFFF,7,2,256,,1,1,267,{ bonus bAgi,2; bonus bMdef,3; },{},{}
-5214,Moonlight_Flower_Hat,Moonlight Flower Hat,4,0,,200,,3,,0,0xFFFFFFFF,7,2,768,,1,1,268,{ bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{}
-5215,Angelic_Chain_,Evolved Angel Wing,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,38,{ bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; },{},{}
-5216,Satanic_Chain_,Evolved Evil Wing,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{}
-5217,Magestic_Goat_TW,Evolved Majestic Goat,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-5218,Bunny_Band_,Evolved Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-5219,Drooping_Kitty_,Evolved Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,142,{ bonus bMdef,18; bonus bFlee,3; },{},{}
-5220,Smoking_Pipe_,Evolved Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,5; },{},{}
-5221,Pair_Of_Red_Ribbon_,Evolved Pair of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,0,512,,45,0,169,{ bonus bFlee,5; },{},{}
-5222,Fish_On_Head_,Evolved Blue Fish,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bAgi,1; bonus bDex,1; },{},{}
-5223,Big_Golden_Bell_,Evolved Big Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,7,2,768,,35,1,175,{ bonus bAgi,2; },{},{}
-5224,Orc_Hero_Helm_TW,Evolved Orc Hero Helm,4,500000,,900,,5,,0,0xFFFFFFFE,7,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; },{},{}
-5225,Marcher_Hat,Parade Hat,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,269,{ 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; },{},{}
-5226,Mini_Propeller_,Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,270,{ bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine(); },{},{}
-5227,Red_Deviruchi_Cap,Red Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,271,{ bonus bStr,1; bonus bInt,1; },{},{}
-5228,White_Deviruchi_Cap,Gray Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-5229,Gray_Deviruchi_Cap,Brown Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,273,{ bonus bStr,1; bonus bInt,1; },{},{}
-5230,White_Drooping_Kitty,Gray Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,274,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5231,Gray_Drooping_Kitty,Brown Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,275,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5232,Pink_Drooping_Kitty,Pink Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,276,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5233,Blue_Drooping_Kitty,Blue Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,277,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5234,Yellow_Drooping_Kitty,Yellow Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,278,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5235,Gray_Fur_Hat,Brown Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,279,{ bonus bLuk,1; },{},{}
-5236,Blue_Fur_Hat,Blue Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,280,{ bonus bLuk,1; },{},{}
-5237,Pink_Fur_Hat,Pink Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-5238,Red_Wizardry_Hat,Red Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,282,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5239,White_Wizardry_Hat,Gray Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,283,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5240,Gray_Wizardry_Hat,Brown Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5241,Blue_Wizardry_Hat,Blue Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,285,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5242,Yellow_Wizardry_Hat,Yellow Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5243,Chullos,Shafka,4,20,,800,,2,,1,0xFFFFFFFF,7,2,768,,0,1,287,{ bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5244,Elven_Blindfold,Elven Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,288,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5245,Elven_Sunglasses,Elven Sunglasses,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,289,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-5246,Angelic_Helm,Angelic Helm,4,20,,700,,3,,0,0xFFFFFFFF,7,2,256,,0,1,290,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{}
-5247,Satanic_Helm,Satanic Helm,4,20,,700,,4,,0,0xFFFFFFFF,7,2,256,,0,1,291,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{}
-5248,Robotic_Blindfold,Robotic Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,292,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5249,Human_Blindfold,Human Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,293,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5250,Robotic_Ears,Robotic Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,0,0,294,{},{},{}
-5251,Round_Ears,Round Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,0,0,295,{},{},{}
-5252,Drooping_Nine_Tail,Drooping Ninetail,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,20,1,296,{ bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; },{},{}
-5253,Lif_Doll_Hat,Lif Doll Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,20,1,297,{ bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1; },{},{}
-5254,Deviling_Hat,Deviling Hat,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,20,1,298,{ bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; } },{},{}
-5255,Triple_Poring_Hat,Triple Poring Hat,4,20,,600,,3,,0,0xFFFFFFFF,7,2,256,,20,0,299,{ bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; },{},{}
-5256,Valkyrie_Feather_Band,Valkyrie Feather Band,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,20,1,300,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; },{},{}
-5257,Soulless_Wing,Soul Ring,4,20,,300,,2,,0,0xFFFFFFFE,7,2,256,,20,1,301,{ bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; },{},{}
-5258,Afro_Wig,Afro Wig,4,20,,100,,0,,1,0xFFFFFFFF,7,2,768,,10,1,302,{ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; },{},{}
-5259,Elephant_Hat_,Elephant Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,215,{ bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; },{},{}
-5260,Cookie_Hat,Cookie Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,217,{ bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; },{},{}
-5261,Silver_Tiara_,Silver Tiara,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,218,{ 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); },{},{}
-5262,Gold_Tiara_,Golden Tiara,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; },{},{}
-5263,Ati_Atihan_Hat,Pagdayaw,4,20,,100,,1,,0,0xFFFFFFFE,7,2,769,,20,1,303,{ 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; },{},{}
-5264,Aussie_Flag_Hat,Australian Flag Hat,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,0,1,304,{ bonus bAllStats,2; },{},{}
-5265,Apple_Of_Archer_C,Apple of Archer,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-5266,Bunny_Band_C,Bunny Band,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5267,Sahkkat_C,Sakkat,4,1,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,67,{ bonus bAgi,3; },{},{}
-5268,Lord_Circlet_C,Grand Circlet,4,1,,0,,10,,0,0xFFFFFFFE,7,2,256,,1,0,93,{ bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; },{},{}
-5269,Flying_Angel_,Flapping Angel Wing,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25; },{},{}
-5270,Fallen_Leaves_,Autumn Leaves,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,241,{ bonus bFlee2,5; },{},{}
-5271,Chinese_Crown_,Phoenix Crown,4,20,,500,,4,,1,0xFFFFFFFF,7,2,768,,0,1,221,{ bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); },{},{}
-5272,Tongue_Mask_,Tongue Mask,4,20,,100,,2,,0,0xFFFFFFFF,7,2,513,,0,0,253,{ bonus3 bAutoSpell,"SM_PROVOKE",5,50; },{},{}
-5273,Happy_Wig,Happy Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,305,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5274,Shiny_Wig,Shiny Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,306,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5275,Marvelous_Wig,Marvelous Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,307,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5276,Fantastic_Wig,Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5277,Yellow_Bandana,Yellow Bandana,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,20,1,309,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{}
-5278,Yellow_Ribbon,Yellow Ribbon,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,20,1,310,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{}
-5279,Drooping_Kitty_C,Refined Drooping Cat,4,2,,0,,1,,0,0xFFFFFFFE,7,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{}
-5280,Magestic_Goat_C,Baphomet Horns,4,2,,0,,5,,0,0xFFFFFFFF,7,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-5281,Deviruchi_Cap_C,Refined Deviruchi Hat,4,2,,0,,2,,0,0xFFFFFFFE,7,2,256,,0,0,123,{ bonus bStr,1; bonus bInt,1; },{},{}
-5282,euRO_Baseball_Cap,Europe Baseball Cap,4,0,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{}
-5283,Chick_Hat,Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ 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,3; },{},{}
-5284,Water_Lily_Crown,Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3; },{},{}
-5285,Vane_Hairpin,Vane Hairpin,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-5286,Pecopeco_Hairband,Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,70,0,314,{ bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25; },{},{}
-5287,Vacation_Hat,Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-5288,Red_Glasses,Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-5289,Vanilmirth_Hat,Vanilmirth Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5; },{},{}
-5290,Drooping_Bunny_,Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5291,Kettle_Hat,Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,2,256,,30,1,318,{ bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; },{},{}
-5292,Dragon_Skull,Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,319,{ bonus2 bSubRace,RC_Dragon,5; },{},{}
-5293,Ramen_Hat,Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; },{},{}
-5294,Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{}
-5295,Golden_Bandana,Golden Bandana,4,20,,2400,,4,,0,0xFFFFFFFF,7,2,768,,0,0,138,{ bonus bMdef,4; },{},{}
-5296,Drooping_Nine_Tail_,Drooping Nine Tail,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,0,1,296,{ bonus bAgi,1; bonus bCritical,1; },{},{}
-5297,Soulless_Wing_,Soul Wing,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,0,1,301,{ bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; },{},{}
-5298,Marvelous_Wig_,Dokebi's Wig,4,20,,100,,1,,1,0xFFFFFFFF,7,2,768,,0,1,307,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; },{},{}
-5299,Ati_Atihan_Hat_,Pagdayaw,4,20,,100,,1,,1,0xFFFFFFFF,7,2,769,,0,0,303,{ bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{}
-5300,Bullock_Helm,Bullock Helm,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,45,1,322,{ bonus bMaxHP,100; },{},{}
-5301,Russian_Ribbon,Victory Hairband,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,323,{},{},{}
-5302,Lotus_Flower_Hat,Flower Lily,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,30,1,324,{},{},{}
-5303,Flower_Coronet,Flower Crown,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,325,{ bonus bMdef,3; bonus bMaxHP,50; },{},{}
-5304,Cap_Of_Blindness,Cap Of Blindness,4,20,,800,,4,,1,0xFFFFFFFF,7,2,769,,50,1,326,{ bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; },{},{}
-5305,Pirate_Dagger,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,327,{ bonus bBaseAtk,5; },{},{}
-5306,Freyja_Crown,Freya's Crown,4,0,,500,,12,,0,0xFFFFFFFE,7,2,256,,0,0,328,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5307,Carmen_Miranda's_Hat,Carmen Miranda's Hat,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,0,1,329,{ bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; },{},{}
-5308,Brazilian_Flag_Hat,Brazil National Flag Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,330,{ bonus bSpeedAddRate,25; },{},{}
-5309,Mahican,Wool Mask,4,20,,200,,1,,0,0xFFFFFFFF,7,2,769,,0,1,331,{ skill "RG_GRAFFITI",1; },{},{}
-5310,Bulb_Hairband,Shining Electric Bulb Hairband,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,0,1,332,{ bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; }
-5311,Large_Hibiscus,Large Hisbiscus,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,333,{ bonus bMdef,15; },{},{}
-5312,Ayothaya_Hat,Ayothaya King's Hat,4,20,,100,,5,,1,0x000654E2,7,2,256,,0,1,334,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5313,Diadem,Diadem,4,20,,100,,3,,1,0xFFFFFFFF,7,2,768,,0,1,335,{ bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3; },{},{}
-5314,Hockey_Mask,Hockey Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5315,Observer,Observer,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,35,0,337,{ skill "WZ_ESTIMATION",1; },{},{}
-5316,Umbrella_Hat,Umbrella Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,50,1,338,{ bonus2 bSubEle,Ele_Water,3; },{},{}
-5317,Fisherman_Hat,Fisherman's Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,50,1,339,{ bonus3 bAutoSpell,"WZ_WATERBALL",3,50; },{},{}
-5318,Poring_Party_Hat,Poring Party Hat,4,20,,0,,2,,0,0xFFFFFFFF,7,2,256,,0,1,340,{ bonus bAllStats,3; },{},{}
-5319,Hellomother_Hat,Hello Mother Hat,4,20,,200,,2,,0,0xFFFFFFFE,7,2,256,,10,1,341,{ bonus bLuk,3; },{},{}
-5320,Champion_Wreath,Champion Wreath,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,0,1,261,{ bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; },{},{}
-5321,Indonesian_Bandana,Bandana Merah Putih,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,342,{},{},{}
-5322,Scarf,Kerchief,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,24,1,343,{ bonus bMdef,2; bonus bFlee,5; },{},{}
-5323,Misstrance_Crown,Misstrance Crown,4,20,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,165,{ bonus bAllStats,2; },{},{}
-5324,Little_Angel_Doll,Little Angel Doll,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,10,1,344,{ bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; },{},{}
-5325,Robo_Eye,Robo Eye,4,20,,200,,2,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; },{},{}
-5326,Masquerade_C,Masquerade C,4,1,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; },{},{}
-5327,Orc_Hero_Helm_C,Refined Helmet of Orc Hero,4,1,,0,,10,,0,0xFFFFFFFE,7,2,768,,0,0,178,{ bonus bStr,5; bonus bVit,3; },{},{}
-5328,Evil_Wing_Ears_C,Evil Wing Ears C,4,1,,0,,2,,0,0xFFFFFFFF,7,2,512,,0,0,152,{ bonus bStr,1; },{},{}
-5329,Dark_Blindfold_C,Dark Blindfold C,4,1,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; },{},{}
-5330,kRO_Drooping_Kitty_C,kRO Drooping Kitty C,4,1,,0,,6,,0,0xFFFFFFFE,7,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000; },{},{}
-5331,Corsair_C,Corsair C,4,1,,0,,10,,0,0xFFFFFFFE,7,2,256,,0,0,105,{ bonus bVit,3; bonus bInt,3; },{},{}
-5332,Loki_Mask,Loki Mask,4,0,,200,,0,,0,0xFFFFFFFF,7,2,513,,20,0,346,{ bonus bFlee2,3; },{},{}
-5333,Radio_Antenna,Radio Antenna,4,0,,1500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,347,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; },{},{}
-5334,Angeling_Wanna_Fly,Flapping Angeling,4,0,,700,,0,,0,0xFFFFFFFF,7,2,256,,38,0,348,{ bonus bLuk,2; bonus bMdef,2; },{},{}
-5335,Jumping_Poring,Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm; },{},{}
-5336,Guildsman_Recruiter,Guildsman Recruiter Hat,4,,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,350,{},{},{}
-5337,Party_Recruiter_Hat,Party Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,351,{},{},{}
-5338,Bf_Recruiter_Hat,Bf Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,352,{},{},{}
-5339,Friend_Recruiter_Hat,Friend Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,353,{},{},{}
-5340,Deprotai_Doll_Hat,Defolty Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,354,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; },{},{}
-5341,Claris_Doll_Hat,Glaris Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,355,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bInt,2; bonus bMagicHPGainValue,50; },{},{}
-5342,Sorin_Doll_Hat,Sorin Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,356,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-5343,Tayelin_Doll_Hat,Telling Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,357,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; },{},{}
-5344,Binit_Doll_Hat,Bennit Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,358,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{}
-5345,Debril_Doll_Hat,W Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,359,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; },{},{}
-5346,Gf_Recruiter_Hat,Gf Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,360,{},{},{}
-5347,Ph.D_Hat_,Ph.D Hat,4,20,,200,,3,,1,0xFFFFFFFE,7,2,256,,0,1,98,{},{},{}
-5348,Big_Sis'_Ribbon_,Big Ribbon,4,15000,,200,,2,,1,0xFFFFFFFE,7,2,256,,0,1,28,{ bonus bMdef,3; },{},{}
-5349,Boy's_Cap_,Boy's Cap,4,20,,100,,2,,1,0xFFFFFFFE,7,2,256,,0,1,102,{},{},{}
-5350,Pirate_Bandana_,Pirate Bandana,4,20,,100,,3,,1,0xFFFFFFFE,7,2,256,,0,1,74,{ bonus bStr,1; },{},{}
-5351,Sunflower_,Sunflower,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{}
-5352,Poporing_Cap,Poporing Cap,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,38,1,361,{},{},{}
-5353,Helm_Of_Sun_,Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,7,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{}
-5354,Muslim_Hat_M,Muslim Hat M,4,0,,100,,2,,0,0xFFFFFFFF,7,1,256,,0,0,362,{ bonus bCastrate,-5; },{},{}
-5355,Muslim_Hat_F,Selendang,4,0,,100,,2,,0,0xFFFFFFFF,7,0,256,,0,0,363,{ bonus bCastrate,-5; },{},{}
-5356,Pumpkin_Hat_H,Festival Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; },{},{}
-5357,Wings_Of_Victory,Wings Of Victory,4,20,,200,,10,,0,0xFFFFFFFF,7,2,768,,0,0,365,{ bonus bMdef,10; bonus bUnbreakableHelm; },{},{}
-5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{}
-5359,J_Captain_Hat,Ship Captain Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,60,1,367,{ bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100; },{},{}
-5360,Whikebain_Ears,Hyuke's Black Cat Ears,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50; },{},{}
-5361,Gang_Scarf,Gangster Scarf,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,60,0,369,{ bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; },{},{}
-5362,Ninja_Scroll,Ninja Scroll,4,20,,200,,0,,0,0xFFFFFFFF,7,2,1,,60,0,370,{ bonus bMatkRate,1; },{},{}
-5363,Helm_Of_Abyss,Helm Of Abyss,4,20,,1000,,2,,1,0x000654E2,7,2,256,,70,1,371,{ bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus2 bSubClass,Class_Boss,10; },{},{}
-5364,Dark_Snake_Lord_Hat,Evil Snake Lord Hat,4,20,,500,,2,,1,0xFFFFFFFF,7,2,256,,60,1,372,{ bonus bStr,1; bonus bInt,1; bonus bAgi,2; },{},{}
-5365,Fried_Egg,Magnolia Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,0,373,{ bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1; },{},{}
-5366,Hat_0f_King,Love Dad Bandana,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,374,{ bonus bAllStats,5; },{},{}
-5367,Hyegun_Hat,Hyegun Hat,4,20,,100,,5,,1,0xFFFFFFFF,7,2,769,,10,0,375,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; },{},{}
-5368,White_Wing,White Wing,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,38,{ bonus2 bAddMonsterDropItem,12280,300; },{},{}
-5369,Dark_Wing,Dark Wing,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,39,{ bonus2 bAddMonsterDropItem,12279,300; },{},{}
-5370,Orchid_Hairband,Orchid Hairband,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,376,{ bonus bInt,1; },{},{}
-5371,Hat_Of_Judge,Judge Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,768,,0,1,377,{ bonus bLuk,1; bonus bMaxSP,30; },{},{}
-5372,Drooping_White_Kitty,Koneko Hat,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,0,1,378,{ bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; },{},{}
-5373,Darkness_Helm,Dark Randgris Helm,4,20,,300,,2,,1,0xFFFFFFFF,7,2,768,,0,1,379,{ bonus bDex,3; bonus bMdef,1; },{},{}
-5374,L_Magestic_Goat,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-5375,L_Orc_Hero_Helm,Orc Hero Headdress,4,20,,900,,5,,1,0xFFFFFFFF,7,2,768,,0,1,381,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; },{},{}
-5376,Satanic_Chain_P,Flying Evil Wing,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,0,1,382,{ bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300; },{},{}
-5377,Antique_Pipe,Gentleman's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,383,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-5378,Rabbit_Ear_Hat,Bunny Top Hat,4,20,,300,,0,,0,0xFFFFFFFF,7,2,256,,0,1,384,{ bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{}
-5379,Balloon_Hat,Tam,4,0,,800,,3,,1,0xFFFFFFFF,7,2,256,,50,1,385,{ bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); },{},{}
-5380,Fish_Head_Hat,Fish Head Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,0,1,386,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; },{},{}
-5381,Santa_Poring_Hat,Santa Poring Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,0,387,{ bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; },{},{}
-5382,Bell_Ribbon,Bell Ribbon,4,20,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,388,{ bonus bVit,1; skill "AL_ANGELUS",1; },{},{ sc_end SC_ANGELUS; }
-5383,Hunting_Cap,Hunter's Cap,4,20,,250,,3,,1,0xFFFFFFFE,7,2,256,,50,1,389,{ bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,20,1,390,{ bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500; },{},{}
-5385,Yoyo_Hat,Yoyo Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,20,1,391,{ skill "TF_HIDING", 1; },{},{ sc_end SC_HIDING; }
-5386,Ayam_,Ayam,4,0,,70,,7,,0,0xFFFFFFFF,7,2,256,,1,0,228,{ bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; },{},{}
-5387,Neko_Mimi_Kafra,Neko Mimi Kafra,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,1,392,{ bonus bMdef,5; },{},{}
-5388,Snake_Head,Snake Head Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,1,393,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; },{},{}
-5389,Angel_Spirit,Angel Spirit,4,20,,200,,0,,0,0xFFFFFFFF,7,2,512,,30,0,394,{ bonus bStr,2; bonus bHit,15; },{},{}
-5390,Santa_Hat_2,Frozen Twin Pompom,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,395,{ bonus2 bResEff, Eff_Freeze, 3000; },{},{}
-5391,Toast_C,Toast,4,20,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,188,{ bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; },{},{}
-5392,Louyang_Cap,Luoyang NewYear Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,396,{ bonus bLuk,2; },{},{}
-5393,Valentine_Hat,Love Valentine's Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,0,397,{ bonus bMaxSPrate, 7; bonus bMaxHPrate, 7; },{},{}
-5394,Bubblegum_Lower,Bubblegum,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,0,{},{},{}
-5395,Tiraya_Bonnet,Striped Hat,4,20,,500,,2,,1,0xFFFFFFFF,7,2,256,,50,1,398,{ bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; },{},{}
-5396,Jasper_Crest,Jasper Crest,4,20,,700,,2,,1,0xFFFFFFFF,7,2,256,,0,1,399,{ bonus bDex,3; bonus bVit,1; },{},{}
-5397,Scuba_Mask,Scuba Gear,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,400,{ bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0; },{},{}
-5398,Bone_Head,Bone Head,4,20,,1200,,5,,1,0x000444A2,2,2,256,,85,1,401,{ bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; },{},{}
-5399,Mandragora_Cap,Mandragora Cap,4,20,,300,,1,,1,0x00CFFF80,2,2,256,,85,0,402,{ bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; },{},{}
-5400,Fox_Hat,Fox Hat,4,20,,200,,0,,0,0xFFFFFFFF,7,0,769,,0,0,403,{ bonus bLuk,1; },{},{}
-5401,Black_Glasses,Black Frame Glasses,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,70,0,404,{ bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm, 0; },{},{}
-5402,Mischievous_Fairy,Mischievous Fairy,4,10,,200,,1,,0,0xFFFFFFFF,7,2,512,,70,0,405,{ bonus bUnbreakableHelm, 0; bonus bFlee2, 3; },{},{}
-5403,Fish_In_Mouth,Fish In Mouth,4,10,,200,,0,,0,0xFFFFFFFF,7,2,1,,30,0,406,{ bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; },{},{}
-5404,Blue_Ribbon,Blue Ribbon,4,10,,100,,1,,1,0xFFFFFFFF,7,2,256,,45,1,407,{ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; },{},{}
-5405,Filir_Hat,Filir Hat,4,10,,200,,0,,0,0xFFFFFFFF,7,2,256,,80,0,408,{ bonus bShortWeaponDamageReturn, 1; },{},{}
-5406,Academy_Freshman_Hat,Academy Freshman Hat,4,0,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,409,{ bonus bMaxHP,80; bonus bMaxSP,10; },{},{}
-5407,Academy_Graduating_Cap,Academy Completion Hat,4,0,,200,,2,,1,0xFFFFFFFF,7,2,256,,0,1,410,{ bonus bMaxSP,30; },{},{}
-5408,Old_Bandanna,Old Bandana,4,0,,0,,5,,0,0xFFFFFFFF,7,2,256,,0,0,6,{ bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10; },{},{}
-5409,New_Cowboy_Hat,Purple Cowboy Hat,4,20,,500,,4,,1,0xFFFFFFFF,7,2,256,,0,1,411,{ bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; },{},{}
-5410,Bread_Bag2,Brown Paperbag Hat,4,20,,200,,6,,0,0xFFFFFFFF,7,2,769,,0,0,412,{ bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; },{},{}
-5411,White_Snake_Hat,White Snake Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,413,{ bonus bDex,2; },{},{}
-5412,Sweet_Candy,Sweet Candy,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,0,0,414,{ bonus bUnbreakableHelm, 0; },{},{}
-5413,Popcorn_Hat,Pop Corn Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,415,{ bonus2 bSubEle,Ele_Wind, 10; },{},{}
-5414,Campfire_Hat,Camp Fire Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,416,{ bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; },{},{}
-5415,Poring_Cake_Cap,Poring Cake Hat,4,20,,1000,,5,,0,0xFFFFFFFF,7,2,256,,40,1,417,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; },{},{}
-5416,Beer_Cap,Beer Hat,4,20,,600,,2,,0,0xFFFFFFFE,7,2,256,,18,1,418,{ bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; },{},{}
-5417,Crown_Parrot,Crown Parrots,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,0,419,{ bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{}
-5418,Soldier_Hat,Legionnaire Hat,4,20,,400,,4,,1,0xFFFFFFFF,7,2,256,,0,1,420,{ bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; },{},{}
-5419,Evolved_Leaf,Leaves Of Grass,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,57,{ bonus bVit,1; bonus2 bSubRace,RC_Plant,5; },{},{}
-5420,Mask_Of_Ifrit,Mask Of Ifrit,4,,,0,,8,,0,0xFFFFFFFE,7,2,769,,70,0,421,{ 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; },{},{ sc_end SC_SIGHT; }
-5421,Ifrit's_Ear,Ears Of Ifrit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,512,,70,0,422,{ 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; },{},{}
-5422,Linguistic_Book_Cap,Linguistic Book Hat,4,20,,70,,0,,0,0xFFFFFFFF,7,2,256,,0,1,423,{ bonus bInt,1; bonus bMdef,2; },{},{}
-5423,Lovecap_China,I Love China,4,20,,250,,5,,0,0xFFFFFFFF,7,2,256,,0,0,424,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5424,Fanta_Orange_Can,Fanta Orange Can Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,425,{},{},{}
-5425,Fanta_Grape_Can,Fanta Grape Can Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,426,{},{},{}
-5426,Karada_Meguri_Tea_Hat,Karada Meguricha Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,427,{ bonus bLuk,1; },{},{}
-5427,Royal_Milk_Tea_Hat,Black Tea Kochakaden Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,428,{ bonus bAgi,1; },{},{}
-5428,Bread_Bag1,RWC Anniversary Bread Envelope,4,,,100,,0,,0,0xFFFFFFFF,7,2,769,,0,1,429,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player,12; },{},{}
-5429,Bogy_Cap,Bogy Cap,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,430,{ bonus bHPrecovRate, 5; bonus bSPrecovRate, 5; },{},{}
-5430,Sacred_Torch_Coronet,Torch Cap,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,431,{ bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; },{},{}
-5431,Chicken_Hat,Chicken Hat,4,20,,1000,,0,,1,0xFFFFFFFF,7,2,256,,30,1,432,{ bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; },{},{}
-5432,Brazil_Baseball_Cap,bRO 4th Anniversary Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,433,{ if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4; },{},{}
-5433,Golden_Wreath,Golden Laurel,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,434,{},{},{}
-//5434,Cola_Can,Cola Can,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,435,{},{},{}
-5435,Coke_Hat,Red Minstrel Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,40,1,436,{ bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; } },{},{}
-5436,Bride's_Corolla,Bride's Corolla,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,437,{ bonus bLuk,3; bonus bMdef,2; },{},{}
-5437,Flower_Of_Fairy,Fairy Flower,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,1,438,{ bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; },{},{}
-5438,Fillet_Green,Cute Green Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,439,{ bonus bMaxSP,20; },{},{}
-5439,Fillet_Red,Cute Red Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,440,{ bonus bMaxSP,20; },{},{}
-5440,Fillet_Blue,Cute Blue Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,441,{ bonus bMaxSP,20; },{},{}
-5441,Fillet_White,Cute White Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,442,{ bonus bMaxSP,20; },{},{}
-5442,Necktie,Necktie,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,70,1,443,{ bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; },{},{}
-5443,Status_Of_Baby_Angel,Statue Of Baby Angel,4,20,,600,,3,,1,0xFFFFFFFF,7,2,256,,70,1,444,{ bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; },{},{}
-5444,Hair_Brush,Hair Brush,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,445,{ bonus bCritical,6; },{},{}
-5445,Candy_Cane_In_The_Mouth,Candy Cane In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,446,{ bonus bMaxSP,5; },{},{}
-5446,Cat_Foot_Hairpin,Catfoot Hairpin,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,0,1,447,{ bonus bFlee,5; bonus bFlee2,3; },{},{}
-5447,Frog_Cap,Frog Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,70,1,448,{ bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; },{},{}
-5448,Solo_Play_Box1,Soloplay Box1,4,,,300,,0,,1,0xFFFFFFFF,7,2,769,,0,1,449,{},{},{}
-5449,Solo_Play_Box2,Soloplay Box2,4,,,300,,0,,1,0xFFFFFFFF,7,2,769,,0,1,450,{},{},{}
-5450,Sun_Cap,Solar Hat,4,20,,1000,,0,,0,0xFFFFFFFE,7,2,256,,20,1,451,{},{},{}
-5451,Dragonhelm_Gold,RWC 2008 Dragon Helm Gold,4,20,,2500,,7,,1,0xFFFFFFFF,7,2,256,,1,0,452,{ bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5452,Dragonhelm_Silver,RWC 2008 Dragon Helm Silver,4,20,,2500,,5,,1,0xFFFFFFFF,7,2,256,,1,0,453,{ bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-5453,Dragonhelm_Copper,RWC 2008 Dragon Helm Copper,4,20,,2500,,0,,1,0xFFFFFFFF,7,2,256,,1,0,454,{ bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; },{},{}
-5454,Dog_Cap_,Puppy Hat,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,0,1,234,{ 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; }"; },{},{}
-5455,Geographer_Band_,Decorative Geographer,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,0,1,238,{ bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; },{},{}
-5456,Vacation_Hat_,Summer Hat,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,0,1,315,{ bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; },{},{}
-5457,Spring_Rabbit_Hat,Moon Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,1,1,455,{ bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; } },{},{}
-5458,Pinwheel_Cap,Pinwheel Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,456,{ bonus bHPrecovRate, 5; bonus bHPrecovRate, 5; },{},{}
-5459,Drooping_Bunny_Chusuk,Drooping Bunny,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5460,Adv_Dragon_Skull,Evolved Dragon Skull Hat,4,20,,1000,,7,,0,0xFFFFFFFF,7,2,256,,60,1,457,{ bonus bAllStats, 2; bonus bMaxHPrate, 3; },{},{}
-5461,Adv_Whisper_Mask,Evolved Whisper Mask,4,20,,300,,1,,0,0xFFFFFFFF,7,2,769,,50,1,458,{ bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20; },{},{}
-5462,Spiked_Scarf,Spiked Scarf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,90,0,459,{ bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-5463,Rainbow_Scarf,Rainbow Scarf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,90,0,460,{ bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1; },{},{}
-5464,Zaha_Doll_Hat,Zaha Doll Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,461,{ bonus bInt,2; skill "PR_MAGNIFICAT", 3; },{},{}
-//5465,Celestial_Hat,Hat Of Fortune,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,40,1,462,{ bonus bLuk,2; bonus bMdef,5; if(getrefine()>4) bonus bLuk,getrefine()-4; },{},{}
-//5466,Wind_Milestone,Wind Milestone,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,30,1,463,{ bonus bAgi,2; skill "AL_TELEPORT",1; },{},{}
-//5467,Helm_Of_Dragoon,Helm Of Dragon,4,20,,2000,,5,,0,0xFFFFFFFF,7,2,256,,50,1,464,{ bonus2 bAddRace,RC_Dragon,20; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{}
-//5468,Parade_Cap,Parade Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,0,1,465,{ bonus bDelayRate,-5; bonus bMdef,2; if(getrefine()>5) bonus bCastrate,-(getrefine()-5); },{},{}
-//5469,Noble_Hat,Musketeer Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,30,1,466,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_ADRENALINE",1,7; },{},{}
-//5470,Eyes_Of_Darkness,Eye Of Darkness,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,50,0,467,{ bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; },{},{}
-//5471,Hairband_Of_Reginleif,Hairband Of Reginleif,4,20,,800,,1,,0,0xFFFFFFFF,7,2,512,,50,0,468,{ bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; },{},{}
-//5472,Red_White_Hat,Red Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,469,{ bonus3 bAddMonsterDropItem,550,RC_DemiHuman,3; },{},{}
-//5473,Forceps_Hairpin,Nipper Crab Hairpin,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,30,1,470,{ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,100; bonus3 bAddMonsterDropItem,991,RC_Fish,3; },{},{}
-//5474,Notice_Board,AFK Hat,4,20,,700,,2,,0,0xFFFFFFFF,7,2,256,,10,0,471,{},{},{}
-//5475,Cube_Mask,Mask Cube,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,472,{},{},{}
-5476,Hairband_Of_Grandpeco,Grand Peco Hairband,4,20,,800,,2,,0,0xFFFFFFFF,7,2,768,,30,1,473,{ bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15; },{},{}
-5477,Bro_Flag,Brazilian Flag Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,1,474,{ skill "SM_BASH", 1; },{},{}
-5478,Classic_Hat,Classic Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,475,{ bonus bStr,2; bonus bMaxHP,300; },{},{}
-5479,Shaman's_Hair_Ornament,Shaman's Hair Decoration,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,30,1,476,{ bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5; },{},{}
-5480,Bizofnil_Wing_Deco,Bijofnil Wings,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,256,,30,1,477,{ bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{}
-5481,Hermose_Cap,Hermode Cap,4,20,,1000,,1,,1,0xFFFFFFFF,7,2,256,,1,1,478,{ bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; },{},{}
-5482,Dark_Knight_Mask,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,7,2,769,,80,1,479,{ bonus bStr,3; },{},{}
-5483,Odin_Mask,Odin Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,50,0,480,{ bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player,6; },{},{}
-//5484,Taiwan_Flag_Hat,Holidays Hat,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,0,0,482,{ bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; },{},{}
-5485,Tiger_Face,Tiger Face,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,769,,60,1,483,{ bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; },{},{}
-5486,J_Anniversary_Hat,Anniversary Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,395,{ bonus bAllStats, 2; },{},{}
-5487,J_Poringcake_Hat,Poring Cake Hat,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,0,1,417,{ bonus bLuk,2; },{},{}
-5488,J_Twin_Santahat,Twin Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,390,{ bonus bLuk,1; bonus bMdef,1; },{},{}
-5489,Love_Daddy,Love Daddy Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,484,{ bonus bDex,2; },{},{}
-5490,Anubis_Helm,Anubis Helm,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,70,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{}
-5491,Hat_Of_Outlaw,Bandit Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,0,1,486,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10; },{},{}
-5492,Boy's_Cap_I,Student Cap,4,0,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,102,{ bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5493,Ulle_Cap_I,Ulle's Cap,4,0,,0,,3,,0,0xFFFFFFFE,7,2,256,,0,0,254,{ bonus bDex,2; bonus bAgi,1; },{},{}
-5494,Spinx_Helm_I,Sphinx Hat,4,0,,0,,5,,0,0x00004082,7,2,257,,0,0,137,{ bonus bStr,5; },{},{}
-5495,Power_Of_Thor,Power Of Thor,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,75,1,493,{ bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; },{},{}
-5496,Dice_Hat,Dice Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,50,0,494,{ bonus bLuk,4; },{},{}
-5497,King_Tiger_Doll_Hat,King Tiger Doll Hat,4,20,,400,,3,,1,0xFFFFFFFE,7,2,256,,30,1,495,{ bonus bStr,2; },{},{}
-5498,Wondering_Wolf_Helm,Wandering Wolf Helm,4,20,,600,,5,,0,0xFFFFFFFE,7,2,768,,50,1,490,{ bonus bVit,5; bonus bFlee,10; },{},{}
-5499,Pizza_Hat,Pizza Hat,4,20,,600,,0,,0,0xFFFFFFFF,7,2,256,,0,0,487,{ skill "SM_PROVOKE", 1; },{},{}
-5500,Icecream_Hat,Icecream Hat,4,0,,300,,6,,0,0xFFFFFFFF,7,2,256,,30,1,488,{ bonus bMdef,3; skill "MG_FROSTDIVER",3; },{},{}
-5501,Pirate's_Pride,Pirate's Pride,4,0,,100,,6,,0,0xFFFFFFFF,7,2,256,,10,0,496,{ bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; },{},{}
-5502,Necromencer's_Hood,Necromancer's Hood,4,0,,500,,2,,0,0xFFFFFFFF,7,2,768,,1,1,491,{ bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1; },{},{}
-5503,Rabbit_Magic_Hat,Magic Rabit Hat,4,0,,800,,2,,0,0xFFFFFFFF,7,2,256,,0,1,497,{ 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; },{},{}
-5504,China_Wedding_Veil,Wedding Weil,4,20,,500,,5,,0,0xFFFFFFFF,7,2,768,,70,1,489,{ bonus bMdef,10; },{},{}
-5505,Asara_Fairy_Hat,Asara Fairy Hat,4,0,,500,,2,,0,0xFFFFFFFF,7,2,768,,50,1,492,{ skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; },{},{}
-5506,Blue_Pajamas_Hat,Blue Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,501,{ bonus bBaseAtk,5; bonus bMatkRate,5; },{},{}
-5507,Pink_Pajamas_Hat,Pink Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,502,{ bonus bBaseAtk,5; bonus bMatkRate,5; },{},{}
-5508,Shark_Hat,Shark Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,503,{ bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10; },{},{}
-5509,Sting_Hat,Sting hat,4,20,,1000,,5,,0,0xFFFFFFFF,7,2,256,,0,1,504,{ 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; },{},{}
-5510,Shower_Cap,Shower Cap,4,20,,0,,4,,0,0xFFFFFFFF,7,2,256,,0,1,507,{ bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; },{},{}
-5511,Samambaia,Samambaia,4,20,,200,,5,,1,0xFFFFFFFF,7,2,768,,30,1,508,{ bonus bSPrecovRate,8; },{},{}
-5512,Aquarius_Diadem,Aquarius Diadem,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,509,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } },{},{}
-5513,Aquarius_Crown,Aquarius Crown,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,510,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } },{},{}
-5514,Pisces_Diadem,Pisces Diadem,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,511,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } },{},{}
-5515,Pisces_Crown,Pisces Crown,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,512,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } },{},{}
-5516,Hawk_Eyes01,hawk Eyes,4,10,,100,,0,,0,0x00000800,2,2,512,,60,0,23,{ bonus bDex,1; },{},{}
-5517,Hawk_Eyes02,Hawk Eyes,4,10,,100,,0,,0,0x00080808,7,2,512,,60,0,23,{ bonus bDex,1; },{},{}
-5518,L_Magestic_Goat2,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,513,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-5519,Peacock_Feather,Peacock Feather,4,20,,800,,4,,1,0xFFFFFFFF,7,2,256,,1,1,514,{ bonus bInt,2; },{},{}
-5520,Rabbit_Earplug,Rabbit Earplugs,4,,,400,,0,,1,0xFFFFFFFF,7,2,768,,1,1,515,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; },{},{}
-5521,Angry_Mouth_C,Angry Mouth,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,194,{ bonus bDelayRate,-3; },{},{}
-5522,Fanta_Zero_Lemon_Hat,Fanta Zero Lemon Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,516,{},{},{}
-5523,Sakura_Mist_Hat,Sakura Mist Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,517,{ bonus bDex,1; },{},{}
-5524,Sakura_Milk_Tea_Hat,Sakura Milk Tea Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,518,{ bonus bVit,1; },{},{}
-5525,First_Leaf_Tea_Hat,Flower Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,519,{ bonus bMaxHP,80; bonus bMaxSP,20; },{},{}
-5526,Lady_Tanee_Doll,Tanigumi Girl Doll,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,60,0,520,{ bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200; },{},{}
-5527,Lunatic_Hat,Lunatic Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,1,1,521,{ bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50; },{},{}
-5528,King_Frog_Hat,Frog King Hat,4,20,,500,,4,,1,0xFFFFFFFE,7,2,256,,30,0,522,{ bonus bAgi,1; },{},{}
-5529,Evil's_Bone_Hat,Satanic Bone Helm,4,20,,600,,6,,1,0xFFFFFFFF,7,2,768,,70,1,523,{ bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; },{},{}
-5530,Raven_Cap,Raven Cap,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,1,524,{},{},{}
-5531,B_Dragon_Hat,Baby Dragon Hat,4,45000,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,525,{ bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; },{},{}
-5532,Pirate_Dagger_J,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,1,327,{ bonus bShortWeaponDamageReturn,1; },{},{}
-5533,Emperor_Wreath_J,Emperor Wreath,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,80,1,261,{ bonus bAllStats,1; },{},{}
-//5534,Fox_Hat_J,Fox Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,70,0,403,{ bonus bAgi,1; bonus bFlee2,2; },{},{}
-5535,Side_Cap,Side Cap,4,0,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,529,{ bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-5536,Spare_Card,Spare Card,4,20,,10,,1,,0,0xFFFFFFFF,7,2,1,,1,0,526,{ bonus2 bAddMonsterDropItem,6187,1000; },{},{}
-5537,Quati_Hat,Kwati Hat,4,20,,700,,2,,1,0xFFFFFFFF,7,2,256,,45,0,527,{ bonus bAgi,3; },{},{}
-5538,Tucan_Hat,Tucan Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,768,,45,0,528,{ bonus bDex,3; },{},{}
-5539,Jaguar_Hat,Jaguar Hat,4,20,,400,,4,,1,0xFFFFFFFF,7,2,769,,25,1,530,{ bonus bMdef,2; skill "MC_LOUD", 1; },{},{}
-5540,Freyja_SCirclet7,Freyja SCirclet7,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5541,Freyja_SCirclet30,Freyja SCirclet30,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5542,Freyja_SCirclet60,Freyja SCirclet60,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5543,Freyja_SCirclet90,Freyja SCirclet90,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5544,Time_Keeper_Hat,Time Keeper Hat,4,30000,,0,,6,,0,0xFFFFFFFF,7,2,256,,1,1,240,{ bonus bInt,2; bonus bMaxSP,50; },{},{}
-5545,Aries_Diadem,Aries Diadem,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,70,1,531,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{}
-5546,Aries_Crown,Aries Crown,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,70,1,532,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{}
-5547,RJC_Katusa,RJC Katusa Flower,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,1,533,{ 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; ; },{},{}
-5548,Scarlet_Rose,Scarlet Rose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,50,1,534,{ bonus bLuk,1; },{},{}
-5549,Taurus_Diadem,Taurus Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,535,{ bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } },{},{}
-5550,Taurus_Crown,Taurus Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,536,{ bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } },{},{}
-//5551,Holy_Egg_Hat,Holy Egg Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,1,537,{},{},{}
-5552,Fest_Lord_Circlet,Festival Grand Circlet,4,0,,0,,8,,0,0xFFFFFFFF,7,2,256,,0,0,93,{ bonus bStr,3; bonus bInt,3; bonus bMdef,3; },{},{}
-5553,Fest_Bunny_Band,Festival Bunny Band,4,0,,0,,7,,0,0xFFFFFFFF,7,2,256,,0,0,15,{ bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player,9; },{},{}
-5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,20,1,538,{ bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; },{},{}
-5555,Leaf_Cat_Hat,Leaf Cat Hat,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,539,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; },{},{}
-5556,Fur_Seal_Hat,Seal Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,769,,55,1,540,{ bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; },{},{}
-5557,Wild_Rose_Hat,Wild Rose Hat,4,20,,500,,6,,1,0xFFFFFFFE,7,2,256,,20,1,541,{ bonus bAgi,3; },{},{}
-5558,Saci_Hat,Luxury Hat,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,1,542,{ bonus3 bAddMonsterDropItem,510,RC_Plant,500; },{},{}
-5559,Piece_Of_White_Cloth_E,Piece Of White Cloth,4,0,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,1,543,{},{},{}
-5560,Bullock_Helm_J,Bullock Helm,4,20,,3000,,3,,0,0xFFFFFFFF,7,2,256,,75,1,322,{ 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; },{},{}
-5561,Rabbit_Magic_Hat_J,Magic Rabbit Hat,4,0,,800,,1,,0,0xFFFFFFFF,7,2,256,,0,1,497,{ 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; },{},{}
-5562,Good_Wedding_Veil_J,Luxurious Wedding Veil,4,0,,500,,0,,1,0xFFFFFFFF,7,2,768,,45,0,489,{ bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5; },{},{}
-//5563,Dolor_Hat,Dolor Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,0,547,{},{},{}
-5564,Crown_Of_Deceit,Crown of Deceit,4,20,,300,,3,,1,0xFFFFFFFF,7,2,768,,85,1,544,{ bonus bInt,4; bonus bCastRate,-10; },{},{}
-5565,Dragon_Arhat_Mask,Dragon Arhat Mask,4,0,,0,,5,,0,0xFFFFFFFF,7,2,513,,1,0,545,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; },{},{}
-5566,Tiger_Arhat_Mask,Tiger Arhat Mask,4,0,,0,,1,,0,0xFFFFFFFF,7,2,513,,1,0,546,{ bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player,2; },{},{}
-5567,Bright_Fury,Bright Fury,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,1,1,548,{ bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; },{},{}
-5568,Rabbit_Bonnet,Rabbit Bonnet,4,20,,1000,,1,,1,0xFFFFFFFF,7,2,768,,0,1,549,{ bonus bInt,2; },{},{}
-5569,Gemini_Diadem,Gemini Diadem,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,70,1,550,{ bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; } },{},{}
-5570,Gemini_Crown,Gemini Crown,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,70,1,551,{ 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; } },{},{}
-//5571,Rasta_Wig,Rasta_Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,552,{ bonus bStr,1; },{},{}
-5572,Savage_Baby_Hat,Savage Babe Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,1,1,553,{ bonus bVit,2; },{},{}
-5573,Bogy_Horn,Dokebi Horn,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,554,{},{},{}
-5574,Pencil_In_Mouth,Well-Chewed Pencil,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,10,0,555,{ bonus bdex,2; bonus bHitRate,3; },{},{}
-5575,Onigiri_Hat,Rice Ball Hat,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,0,556,{},{},{}
-//5576,Japan_Winecup,Wine Cup,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,0,0,557,{},{},{}
-5577,Dark_Knight_MaskB,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,7,2,769,,80,1,479,{ bonus bStr,3; },{},{}
-5578,Voyage_Hat,Voyage_Hat,4,200,,10,,1,,0,0xFFFFFFFF,7,2,256,,0,1,236,{ bonus bAgi,2; },{},{}
-5579,Wanderer's_Sakkat,Wanderer's Sakkat,4,20,,300,,2,,1,0xFFFFFFFF,7,2,768,,70,1,558,{ bonus bAgi,2; },{},{}
-//5580,Red_Beret,Red Beret,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,559,{ bonus bAllStats,3; bonus bMdef,3; },{},{}
-5581,Cancer_Diadem,Cancer Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,560,{ bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; } },{},{}
-5582,Cancer_Crown,Cancer Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,561,{ bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; } },{},{}
-5583,Para_Team_Hat,Eden Team Hat,4,0,,0,,1,,0,0xFFFFFFFF,7,2,256,,12,1,465,{},{},{}
-5584,Majestic_Evil_Horn,Majestic Evil Horns,4,0,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,562,{ bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; },{},{}
-5585,Rune_Hairband,Rune Cloth Circlet,4,20,,400,,1,,1,0xFFFFFFFF,7,2,768,,1,1,564,{},{},{}
-5586,Mosquito_Coil,Mosquito Coil,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,1,1,563,{},{},{}
-5587,Mosquito_Coil_1Use,Mosquito Coil,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,563,{},{},{}
-//5588,Leo_Crown,Leo Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,565,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } },{},{}
-//5589,Leo_Diadem,Leo Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,566,{ 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; }"; } },{},{}
-5590,K_Poring_Cake_Cap,Poring Cake Hat,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,417,{},{},{}
-//5591,Desert_Prince,Desert Prince,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,0,567,{},{},{}
-5592,Sigrun's_Wing,Sigrun's Wings,4,20,,100,,2,,0,0xFFFFFFFF,7,2,512,,80,0,568,{ 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; } },{},{}
-5593,K_Rabbit_Bonnet,Rabbit Bonnet,4,20,,200,,1,,1,0xFFFFFFFF,7,2,768,,1,1,549,{},{},{}
-5594,Donut_In_Mouth,Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,7,2,1,,1,0,569,{},{},{}
-//5595,Eye_Of_Juno,Eye Of Juno,4,20,,400,,2,,1,0xFFFFFFFF,7,2,256,,1,1,570,{ bonus bMdef,2; },{},{}
-5596,4Leaf_Clover_In_Mouth,4Leaf Clover In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,7,2,1,,1,0,571,{ bonus bMdef,2; },{},{}
-5597,Bubble_Gum_In_Mouth,Bubble Gum In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,7,2,1,,1,0,572,{ bonus bMdef,2; },{},{}
-//5598,Virgo_Crown,Virgo Crown,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,70,1,573,{ 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; }"; } },{},{}
-//5599,Virgo_Diadem,Virgo Diadem,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,70,1,574,{ bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; },{},{}
-5600,Br_Twin_Ribbon,Brazil Twin Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,575,{ bonus bAllStats,3; bonus bMdef,1; },{},{}
-//5601,Br_Beret,Brazil Beret,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,576,{ bonus bAllStats,3; bonus bMdef,1; },{},{}
-//5602,Jaguar_Hat_J,Jaguar Hat J,4,20,,300,,0,,1,0xFFFFFFFF,7,2,513,,50,0,530,{},{},{}
-5603,RTC_Winner_Only,RTC First Place,4,0,,250,,8,,1,0xFFFFFFFF,7,2,256,,1,1,577,{ bonus bAllStats, 3; },{},{}
-5604,RTC_Second_Best,RTC Second Place,4,0,,250,,6,,1,0xFFFFFFFF,7,2,256,,1,1,578,{ bonus bAllStats, 2; },{},{}
-5605,RTC_Third_Best,RTC Third Place,4,0,,250,,4,,1,0xFFFFFFFF,7,2,256,,1,1,579,{ bonus bAllStats, 1; },{},{}
-//5606,Campume_Hat,Champune Hat,4,500,,1200,,4,,1,0xFFFFFFFF,7,2,256,,3,1,580,{ bonus bAllStats,1; },{},{}
-//5607,Lyria_Doll_Hat,Lyria Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,581,{},{},{}
-//5608,Dorothy_Doll_Hat,Dorothy Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,582,{},{},{}
-//5609,Chung_Hairband,Chung Hairband,4,0,,500,,5,,1,0xFFFFFFFF,7,2,256,,60,0,583,{ bonus bLuk,3; bonus bMdef,4; },{},{}
-//5610,Ice_Wing_Ear,Ice Wing Ear,4,0,,100,,0,,0,0xFFFFFFFF,7,2,512,,10,0,584,{ bonus bLuk,1; },{},{}
-//5611,Turtle_Hat,Turtle_Hat,4,0,,300,,0,,0,0xFFFFFFFF,7,2,256,,10,1,585,{ bonus bAgi,1; },{},{}
-//5612,F_Blue_Drooping_Kitty,F Blue Drooping Kitty,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{}
-//5613,F_Flying_Angel,F Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{}
-//5614,F_Smoking_Pipe_,F Smoking Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus bVit,1; },{},{}
-//5615,F_Pair_Of_Red_Ribbon_,F Pair Of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,45,0,169,{},{},{}
-//5616,F_Fish_On_Head_,F Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{}
-//5617,F_Hibiscus,F Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{}
-//5618,F_Cat_Hat,F Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{}
-//5619,F_Bunny_Band_,F Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-//5620,F_Magestic_Goat_TW,F Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-//5621,F_Sheep_Hat,F Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{},{},{}
-//5622,F_Mini_Propeller_,F Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{}
-//5623,F_Alice_Doll,F Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; },{},{}
-//5624,F_Red_Glasses,F Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-//5625,F_Chick_Hat,F Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ bonus bLuk,2; },{},{}
-//5626,F_White_Deviruchi_Cap,F White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-//5627,F_Vane_Hairpin,F Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-//5628,F_Pecopeco_Hairband,F Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,314,{},{},{}
-//5629,F_Vacation_Hat,F Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-//5630,F_Charming_Ribbon,F Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{},{},{}
-//5631,F_Water_Lily_Crown,F Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{}
-//5632,F_Vanilmirth_Hat,F Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bMdef,5; },{},{}
-//5633,F_Drooping_Bunny_,F Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; },{},{}
-//5634,F_Kettle_Hat,F Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,2,256,,30,1,318,{},{},{}
-//5635,F_Dragon_Skull,F Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,319,{},{},{}
-//5636,F_Ramen_Hat,F Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; },{},{}
-//5637,F_Pink_Fur_Hat,F Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-//5638,F_Puppy_Hat,F Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; },{},{}
-//5639,F_Magic_Eyes,F Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; },{},{}
-//5640,F_Jumping_Poring,F Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; },{},{}
-//5641,F_Robo_Eye,F Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus bDex,1; },{},{}
-//5642,F_Yellow_Wizardry_Hat,F Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; },{},{}
-//5643,F_Crescent_Helm,F Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; },{},{}
-//5644,F_Tiger_Mask,F Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; },{},{}
-//5645,F_Fantastic_Wig,F Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{},{},{}
-//5646,F_Whisper_Mask,F Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; },{},{}
-//5647,F_Bunny_Band_C,F Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; },{},{}
-//5648,F_Centimental_Flower_C,F Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{},{},{}
-//5649,F_Apple_Of_Archer_C,F Apple Of Archer C,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-//5650,F_Elven_Ears_C,F Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-//5651,F_Brooch_C,F Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{}
-//5652,F_Magestic_Goat_C,F Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-5653,Darkness_Helm_J,Darkness Helm,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,70,1,586,{},{},{}
-5654,Holy_Marching_Hat_J,Holy Marching Hat,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,587,{ bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30; },{},{}
-//5655,Dark_Snake_Lord_Hat_J,Evil Snake Lord Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,60,1,372,{ bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-//5656,Scooter_Hat_J,Scooter Helmet,4,20,,1000,,7,,1,0xFFFFFFFF,7,2,256,,50,1,588,{ bonus bUnbreakableHelm; },{},{}
-//5657,Antique_Pipe_J,Captain's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,30,0,383,{},{},{}
-5658,Imp_Hat,Imp Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{}
-5659,Sleepr_Hat,Sleeper Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,590,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; },{},{}
-5660,Gryphon_Hat,Gryphon Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,591,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5; },{},{}
-//5661,Red_Pirate_Bandana,Red Pirate Banada,4,0,,0,,3,,0,0xFFFFFFFF,7,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bCastRate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,30; },{},{}
-//5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,593,{ bonus bDex,3; },{},{}
-//5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,594,{ bonus bDex,3; },{},{}
-5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,1,595,{ bonus bAspdRate,2; bonus bCastRate,-2; },{},{}
-5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,1,1,596,{ 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; },{},{}
-5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,7,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{}
-5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,7,2,768,,30,1,598,{},{},{}
-5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,7,2,256,,1,1,206,{ bonus bMdef,5; },{},{}
-//5669,Poring_Party_Hat_J,Poring Party Hat J,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,1,1,340,{},{},{}
-//5670,Aniv_Star_Hat,Aniv Star Hat,4,20,,300,,0,,0,0xFFFFFFFF,7,2,256,,1,1,599,{},{},{}
-5671,Drooping_Morocc_Minion,Drooping Morocc Minion,4,20,,300,,0,,1,0xFFFFFFFF,7,2,256,,70,0,600,{},{},{}
-//5672,Southern_Cross,Southern Cross,4,20,,600,,3,,1,0xFFFFFFFF,7,2,256,,50,1,601,{ bonus bInt,1; },{},{}
-//5673,Home_Cherry_Blossom,Home Cherry Blossom,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,30,1,602,{},{},{}
-//5674,Pig_Moneybox,Pig Moneybox,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,256,,10,0,603,{},{},{}
-//5675,Poring_Letter,Poring Letter,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,10,0,604,{},{},{}
-//5676,Scorpio_Crown,Scorpio Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,605,{},{},{}
-//5677,Scorpio_Diadem,Scorpio Diadem,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,1,1,606,{ bonus bDex,2; },{},{}
-//5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,607,{},{},{}
-//5679,Engineer_Cap,Engineer Cap,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,608,{},{},{}
-//5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,10,0,609,{},{},{}
-5681,F_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-5682,Triangle_Rune_Cap,Triangle Rune Cap,4,20,,300,,5,,1,0xFFFFFFFF,7,2,256,,1,1,610,{ 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; } },{},{}
-5683,Majestic_Goat_Repl,Baphomet Horns,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,41,{},{},{}
-5684,Jewel_Crown_Repl,Ornate Crown,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,88,{},{},{}
-5685,Prontera_Army_Cap_Repl,Army Cap,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,48,{},{},{}
-5686,Feather_Bonnet_Repl,Nice Hat Feather,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,104,{},{},{}
-5687,Viking_Helm_Repl,Orc Helm,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,86,{},{},{}
-//5688,2009_Love_Dad,2009 Love Dad,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,1,1,611,{ bonus bVit,2; },{},{}
-//5689,Queen_Ant_Diadem,Queen Ant Diadem,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,75,1,612,{},{},{}
-5690,Red_Wing_Hat,Red Wing Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,50,1,613,{ if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } },{},{}
-5691,Catain_Bandanna,Sailor's Bandana,4,20,,10,,1,,0,0xFFFFFFFF,7,2,256,,1,1,542,{ bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; },{},{}
-5692,Sea_Cat_Hat,Sea Cat Hat,4,20,,10,,1,,0,0xFFFFFFFF,7,2,256,,1,1,539,{ bonus bDex,1; },{},{}
-//5693,No_Fear_Underware,No Fear Underwear,4,0,,0,,10,,0,0xFFFFFFFF,7,2,256,,20,0,30,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-//5694,No_Fear_P_Headgear,No Fear P Headgear,4,0,,0,,1,,1,0xFFFFFFFE,7,2,256,,20,0,614,{ bonus bVit,1; },{},{}
-//5695,E_Blue_Drooping_Kitty,E Blue Drooping Kitty,4,250000,,500,,1,,0,0,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{}
-//5696,E_Flying_Angel,E Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{}
-//5697,E_Smoking_Pipe_,E Smoking Pipe,4,20,,100,,0,,0,0,7,2,1,,0,0,55,{ bonus bVit,1; },{},{}
-//5698,E_Pair_OE_Red_Ribbon_,E Pair OE Red Ribbon,4,20,,100,,1,,0,0,7,2,512,,45,0,169,{},{},{}
-//5699,E_Fish_On_Head_,E Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{}
-//5700,E_Hibiscus,E Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{}
-//5701,E_Cat_Hat,E Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{}
-//5702,E_Bunny_Band_,E Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-//5703,E_Magestic_Goat_TW,E Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-//5704,E_Sheep_Hat,E Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{},{},{}
-//5705,E_Mini_Propeller_,E Mini Propeller,4,20,,200,,2,,0,0,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{}
-//5706,E_Alice_Doll,E Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; },{},{}
-//5707,E_Red_Glasses,E Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-//5708,E_Chick_Hat,E Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ bonus bLuk,2; },{},{}
-//5709,E_White_Deviruchi_Cap,E White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-//5710,E_Vane_Hairpin,E Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-//5711,E_Pecopeco_Hairband,E Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,314,{},{},{}
-//5712,E_Vacation_Hat,E Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-//5713,E_Charming_Ribbon,E Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{},{},{}
-//5714,E_Water_Lily_Crown,E Water Lily Crown,4,20,,200,,0,,1,0,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{}
-//5715,E_Vanilmirth_Hat,E Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bMdef,5; },{},{}
-//5716,E_Drooping_Bunny_,E Drooping Bunny,4,20,,100,,1,,0,0,7,2,256,,0,1,249,{ bonus bDex,1; },{},{}
-//5717,E_Kettle_Hat,E Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,2,256,,30,1,318,{},{},{}
-//5718,E_Dragon_Skull,E Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,319,{},{},{}
-//5719,E_Ramen_Hat,E Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; },{},{}
-//5720,E_Pink_Fur_Hat,E Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-//5721,E_Puppy_Hat,E Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; },{},{}
-//5722,E_Magic_Eyes,E Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; },{},{}
-//5723,E_Jumping_Poring,E Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; },{},{}
-//5724,E_Robo_Eye,E Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus bDex,1; },{},{}
-//5725,E_Yellow_Wizardry_Hat,E Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; },{},{}
-//5726,E_Crescent_Helm,E Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; },{},{}
-//5727,E_Tiger_Mask,E Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; },{},{}
-//5728,E_Fantastic_Wig,E Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{},{},{}
-//5729,E_Bunny_Band_C,E Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; },{},{}
-//5730,E_Centimental_Flower_C,E Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{},{},{}
-//5731,E_Apple_OE_Archer_C,E Apple OE Archer C,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-//5732,E_Elven_Ears_C,E Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-//5733,E_Brooch_C,E Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{}
-//5734,E_Magestic_Goat_C,E Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-//5735,E_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-//5736,EF_Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{}
-//5737,Cactus_Hat,Cactus Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,1,0,615,{},{},{}
-5738,Snowman_Hat,Snowman Hat,4,20,,300,,4,,1,0xFFFFFFFF,7,2,256,,1,1,616,{ 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; } },{},{}
-//5739,Sagittarius_Crown,Sagittarius Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,617,{ bonus bDex,2; },{},{}
-//5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,618,{ bonus bDex,2; bonus bMdef,3; },{},{}
-5741,Im_Egg_Shell_Hat,Eternal Egg Shell,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,10,1,101,{},{},{}
-5742,Rudolf_Santa_Hat,Rudolph Santa Hat,4,20,,400,,5,,0,0xFFFFFFFF,7,2,256,,10,1,619,{ bonus bLuk,1; },{},{}
-//5743,Orange_Stem_Hat,Orange Stem Hat,4,20,,100,,0,,0,0x00000000,7,2,256,,1,0,620,{ bonus bLuk,3; },{},{}
-//5744,Capricon_Crown,Capricon Crown,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,1,1,621,{ bonus bVit,2; bonus bDex,2; },{},{}
-//5745,Capricon_Diadem,Capricon Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,622,{ bonus bDex,2; bonus bMdef,5; },{},{}
-//5746,Rune_Circlet,Rune Circlet,4,20,,100,,12,,1,0x00000080,8,2,256,,100,1,623,{ bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } },{},{}
-//5747,Mitra,Mitra,4,20,,100,,12,,1,0x00000100,8,2,256,,100,1,624,{ bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } },{},{}
-//5748,Sniper_Goggles,Sniper Goggles,4,20,,100,,12,,1,0x00000800,8,2,768,,100,1,625,{ bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } },{},{}
-//5749,Driver_Band_M,Driver Band,4,20,,100,,12,,1,0x00000400,8,1,256,,100,1,626,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{}
-//5750,Shadow_Crown,Shadow Crown,4,20,,100,,12,,1,0x00020000,8,2,256,,100,1,627,{ bonus bAgi,1; bonus bInt,1; bonus bMdef,1; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } },{},{}
-//5751,Minstrel_Song_Hat,Minstrel Song Hat,4,20,,100,,12,,1,0x00080000,8,1,256,,100,1,628,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,4; bonus bUseSPrate,-10; },{},{}
-//5752,Midas_Whispers,Midas Whispers,4,20,,100,,12,,1,0x00040000,8,2,256,,100,1,629,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } },{},{}
-//5753,Magic_Stone_Hat,Magic Stone Hat,4,20,,100,,12,,1,0x00000200,8,2,256,,100,1,630,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatkRate,10; bonus bCastrate,-2; } },{},{}
-//5754,Burning_Spirit,Burning Spirit,4,20,,100,,12,,1,0x00008000,8,2,256,,100,1,631,{ bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } },{},{}
-//5755,Silent_Enforcer,Silent Enforcer,4,20,,100,,12,,0,0x00001000,8,2,513,,100,1,632,{ bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } },{},{}
-//5756,Wispers_of_Wind,Wispers of Wind,4,20,,100,,12,,1,0x00010000,8,2,256,,100,1,633,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bFlee,3; } },{},{}
-//5757,Reissue_Schmitz_Helm,Reissue Schmitz Helm,4,20,,100,,12,,1,0x00004000,8,2,768,,100,1,634,{ bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bDef,5; } },{},{}
-//5758,Resting_Swan,Resting Swan,4,20,,100,,17,,1,0x00080000,8,0,256,,100,1,635,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bAtkRate,5; bonus bUseSPrate,-10; },{},{}
-//5759,Noah_Hat,Noah Hat,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,1,1,636,{ bonus bMdef,3; },{},{}
-//5760,Driver_Band_F,Driver Band,4,20,,100,,12,,1,0x00000400,8,0,256,,100,1,637,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{}
-//5761,Sloth_Hat,Sloth Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,1,1,638,{ bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; },{},{}
-//5762,Duneyrr_Helm,Duneyrr Helm,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,639,{ bonus bAllStats,1; bonus bMdef,5; },{},{}
-//5763,Red_Bunny_Band,Red Bunny Band,4,0,,200,,4,,0,0xFFFFFFFF,7,2,256,,1,1,640,{ bonus bAgi,2; bonus bMdef,3; },{},{}
-//5765,Black_Tail_Ribbon,Black Tail Ribbon,4,20,,100,,0,,1,0xFFFFFFFF,7,2,256,,10,1,642,{ bonus bMdef,5; },{},{}
-//5766,Amistr_Cap,Amistr Cap,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,50,1,643,{ bonus bVit,5; },{},{}
-//5767,Samurai_Mask,Samurai Mask,4,20,,300,,1,,0,0xFFFFFFFF,7,2,1,,50,0,644,{},{},{}
-//5768,Sakura_Coronet,Sakura Coronet,4,20,,800,,1,,1,0xFFFFFFFF,7,2,256,,1,1,645,{ bonus bMdef,3; },{},{}
-//5769,Gold_Angel_Sculpture,Gold Angel Sculpture,4,100,,0,,2,,0,0xFFFFFFFF,7,2,256,,70,0,646,{},{},{}
-5770,Splash_Hat,Splash Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,349,{ autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }"; },{},{}
-5771,Family_Hat,Family Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,109,{ bonus bDex,1; bonus bMdef,1; },{},{}
-//5772,Red_Navy_Hat,Red Navy Hat,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,651,{},{},{}
-//5773,Navy_Beret,Navy Beret,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,652,{},{},{}
-//5774,Red_Pirate_Hat,Red Pirate Hat,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,496,{},{},{}
-5775,Choco_Donut_In_Mouth,Choco Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,7,2,1,,1,0,653,{},{},{}
-//5776,Blazing_Sun,Blazing Sun,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,1,1,654,{},{},{}
-//5777,Remover_Hat,Remover Hat,4,20,,800,,2,,0,0xFFFFFFFF,7,2,256,,30,0,655,{ bonus bMdef,1; },{},{}
-//5778,Blue_Arara_Hat,Blue Arara Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,656,{ bonus bStr,2; },{},{}
-//5779,Drooping_Boto,Drooping Boto,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,657,{ bonus bInt,2; },{},{}
-//5780,Tendrilion_Hat,Tendrilion Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,1,1,658,{},{},{}
-5781,Persika,Persika,4,20,,100,,0,,1,0xFFFFFFFF,7,2,256,,0,0,659,{},{},{}
-//
-//5783,YellowBunny_Hairband,YellowBunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,662,{ bonus bStr,1; bonus bInt,1; bonus bDex,2; },{},{}
-//5784,PinkBunny_Hairband,PinkBunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,663,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-//5785,Green_Bunny_Hairband,Green Bunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,664,{ bonus bStr,2; bonus bInt,1; bonus bDex,1; },{},{}
-5786,Ancient_Elven_Ear,Ancient Elven Ear,4,10,,200,,1,,0,0xFFFFFFFF,7,2,512,,1,0,665,{ bonus bLuk,1; },{},{}
-//5787,Tha_Maero_Mask,Tha Maero Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,513,,30,0,666,{ bonus bMdef,2; },{},{}
-5788,3D_Glasses,3D Glasses,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,1,0,661,{},{},{}
-//5789,Thanatos_Mal_Mask,Thanatos Mal Mask,4,20,,100,,3,,0,0xFFFFFFFF,7,2,513,,30,0,667,{ bonus bVit,1; },{},{}
-//5790,Holy_Mom_Love,TM,4,20,,500,,0,,1,0xFFFFFFFF,7,2,768,,45,1,610,{},{},{}
-//5791,Tenkaippin_Ramen,Tenkaippin Ramen,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,30,0,668,{ bonus bInt,-1; bonus bDex,4; },{},{}
-5792,Fish_Pin,Fish Pin,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,1,1,669,{},{},{}
-5793,Ribbon_Of_Life,Ribbon Of Life,4,20,,0,,2,,0,0xFFFFFFFF,7,2,512,,1,0,575,{ bonus bInt,1; bonus bMdef,2; },{},{}
-5794,3D_Glasses_,3D Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,1,0,661,{},{},{}
-//5795,Red_Dress_Hat,Red Dress Hat,4,20,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,1,670,{ bonus bMdef,7; },{},{}
-5796,Cheer_Scarf,Cheer Scarf,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-5797,Cheer_Scarf2,Cheer Scarf2,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-5798,Cheer_Scarf3,Cheer Scarf3,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-5799,Cheer_Scarf4,Cheer Scarf4,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-5800,Blush_Of_Groom,Blush of Groom,4,20,,50,,0,,0,0xFFFFFFFF,7,2,512,,0,0,125,{ bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; },{},{}
-5801,Ribbon_Of_Bride,Red Tailed Ribbon,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,167,{ bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; } },{},{}
-5802,Upgrade_Elephant_Hat,Upgraded Elephant Hat,4,0,,500,,3,,1,0xFFFFFFFF,7,2,256,,0,1,215,{},{},{}
-5803,Flower_Love_Hat,Love Flower Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,5,{ bonus2 bAddMonsterDropItem,608,100; },{},{}
-5804,Pirate_Eyepatch,Pirate Eye Bandage,4,1000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,13,{},{},{}
-5805,Victorious_Coronet,Victorious Coronet,4,0,,150,,1,,0,0xFFFFFFFF,7,2,256,,70,0,43,{ bonus bMaxHPrate,15; bonus bSPrecovRate,5; },{},{}
-5806,Poem_Natalia_Hat,Poet Natalie's Hat,4,20,,300,,5,,0,0xFFFFFFFF,7,2,256,,0,0,67,{},{},{}
-5807,October_Fest_Cap,October Fest Cap,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,50,1,104,{},{},{}
-5808,Diabolus_Helmet,Dark Bacilium,4,20,,250,,5,,1,0x000FDF80,2,2,769,,0,1,364,{ bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); },{},{}
-5809,Boom_Boom_Hat,Boom Boom Hat,4,0,,100,,6,,0,0xFFFFFFFF,7,2,256,,0,0,216,{ bonus bAllStats,5; },{},{}
-5810,Ph.D_Hat_V,Ph.D Hat V,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,98,{ bonus bInt,5; bonus bVit,3; bonus bDex,3; },{},{}
-5811,Santa_Beard,Santa's Beard,4,20,,100,,5,,0,0xFFFFFFFF,7,2,1,,0,0,25,{},{},{}
-5812,Hat_Of_Expert,Hat Of Expert,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{}
-//5813,Red_Ph.D_Hat,Red Ph.D Hat,4,1000,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,481,{ bonus bInt,1; },{},{}
-//5814,Ati_Atihan_Hat3
-5815,Classic_Hat_J,Classic Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,475,{ bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5; },{},{}
-5816,Cowboy_Hat_J,Purple Cowboy Hat,4,20,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,411,{ bonus bBaseAtk,15; bonus bFlee,-5; },{},{}
-5817,Valentine_Pledge,Valentine Pledge,4,20,,0,,3,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,2; bonus bMdef,3; },{},{}
-5818,Carnival_Hat,Carnival Hat,4,0,,0,,6,,0,0xFFFFFFFF,7,2,256,,0,1,505,{ bonus bAllStats, 3; },{},{}
-5819,Carnival_Circlet,Carnival Circlet,4,0,,0,,6,,0,0xFFFFFFFF,7,2,256,,0,1,506,{ bonus bAllStats, 3; },{},{}
-//5820,Black_Elven_Ears,Black Elven Ears,4,10,,100,,2,,0,0xFFFFFFFF,7,2,512,,0,0,498,{},{},{}
-5821,Gold_Tulip_Hairpin,Gold Tulip Hairpin,4,10,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,499,{ bonus2 bExpAddClass,Class_All,5; },{},{}
-5822,Love_Chick_Hat,Love Chick Hat,4,10000,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,500,{ bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; bonus2 bSubRace,RC_Undead,7; },{},{}
-//5823,Love_Arrow,Love Arrow,4,5000,,100,,1,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bDex,5; bonus bAgi,5; },{},{}
-5824,Fools_Day_Hat,Fools Day Hat,4,20,,300,,6,,1,0xFFFFFFFF,7,2,256,,30,1,265,{},{},{}
-//5825,Badge_Of_Order_Grace,Badge Of Order Grace,4,0,,0,,1,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,1; },{},{}
-5826,Valkyrie_Helmet,Valkyrie Helmet,4,0,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,225,{ bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5; },{},{}
-5827,Book_File_Hat,Book File Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,423,{},{},{}
-5828,Honor_Gold_Ring,Honor Gold Ring,4,0,,50,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,5; },{},{}
-//5829,Ordinary_Armor,Ordinary Armor,4,0,,0,,0,,0,0xFFFFFFFF,7,2,16,,30,1,0,{},{},{}
-//5830,Woe_Sahkkat,Woe Sahkkat,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,67,{},{},{}
-//5831,Woe_Big_Sis_Ribbon,Woe Big Sis Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,28,{},{},{}
-//5832,Woe_Vane_Hairpin,Woe Vane Hairpin,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,313,{},{},{}
-//5833,Woe_Picnic_Hat,Woe Picnic Hat,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,117,{},{},{}
-//5834,Woe_Crown,Woe Crown,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,45,{},{},{}
-//5835,Woe_Tiara,Woe Tiara,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,19,{},{},{}
-//5836,Woe_Boys_Cap,Woe Boys Cap,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,102,{},{},{}
-//5837,Woe_Sunglass,Woe Sunglass,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,12,{},{},{}
-//5838,Woe_Fin_Helm,Woe Fin Helm,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,100,{},{},{}
-//5839,Woe_Blush,Woe Blush,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,125,{},{},{}
-//5840,Woe_Elven_Ears,Woe Elven Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,73,{},{},{}
-//5841,Shaman_Hat_,Shaman_Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,1,596,{ bonus bLuk,2; },{},{}
-//5842,Loyal_Ring1,Loyal Ring1,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,1,0,{},{},{}
-//5843,Loyal_Ring2,Loyal Ring2,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,1,0,{ bonus bAllStats,2; },{},{}
-5844,Loyal_Ring3,Loyal Ring3,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,3; },{},{}
-//5845,Buzzy_Ball_Board,Buzzy Ball Board,4,50,,400,,0,,0,0xFFFFFFFF,7,2,256,,1,1,641,{},{},{}
-5846,Buzzy_Ball_Gum,Buzzy Ball Gum,4,50,,100,,1,,0,0xFFFFFFFF,7,2,1,,1,0,572,{ bonus bMdef,5; },{},{}
-//5847,Fools_Day_Helmet,Fools Day Helmet,4,0,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,0,647,{ bonus bInt,5; bonus bVit,-3; },{},{}
-//5848,Robin_Eyepatch,Robin Eyepatch,4,20,,0,,0,,0,0xFFFFFFFF,7,2,512,,1,0,50,{},{},{}
-//5849,Doctor_Hairband,Doctor Hairband,4,20,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,0,60,{},{},{}
-//5850,Golden_Savage_Hat,Golden Savage Hat,4,20,,500,,5,,0,0xFFFFFFFF,7,2,256,,50,1,648,{},{},{}
-5851,Summer_Knight,Summer Knight,4,20,,0,,1,,0,0xFFFFFFFF,7,2,768,,60,0,138,{},{},{}
-//5852,Resurrect_Egg_Shell,Resurrect Egg Shell,4,20,,500,,-7,,0,0xFFFFFFFF,7,2,256,,40,1,537,{ bonus bMdef,-7; },{},{}
-//
-5856,Passion_FB_Hat,Passion FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,671,{ bonus bStr,2; bonus bDex,2; },{},{}
-5857,Cool_FB_Hat,Cool FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,672,{ bonus bInt,2; bonus bVit,2; },{},{}
-5858,Victory_FB_Hat,Victory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,673,{ bonus bInt,2; bonus bDex,2; },{},{}
-5859,Glory_FB_Hat,Glory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,674,{ bonus bAllStats,1; },{},{}
-// More Etc Items
-//===================================================================
-6000,Dark_Ashes,Ashes of Darkness,3,0,,0,,,,,,,,,,,,,{},{},{}
-6001,Essence_Of_Fire,Essence of Fire,3,0,,10,,,,,,,,,,,,,{},{},{}
-6002,Token_Of_Apostle,Token of Apostle,3,0,,10,,,,,,,,,,,,,{},{},{}
-6003,Soul_Pendant,Pendant of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{}
-6004,Bapho_Doll,Cursed Baphomet Doll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6005,New_Year_Rice_Cake,New Year Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{}
-6006,Rice_Cake_Delivery_Box,Rice Cake Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-6007,New_Year_Rice_Cake_Soup,New Year Rice Cake Soup,3,0,,10,,,,,,,,,,,,,{},{},{}
-6008,Wood,Wood,3,0,,10,,,,,,,,,,,,,{},{},{}
-6009,Large_Magical_Fan,Big Fan Of Magic,3,0,,0,,,,,,,,,,,,,{},{},{}
-6010,Pickaxe,Hoe,3,0,,10,,,,,,,,,,,,,{},{},{}
-6011,Blue_Card_B,Blue B Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6012,Blue_Card_C,Blue C Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6013,Blue_Card_J,Blue J Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6015,Blue_Card_M,Blue M Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6016,Blue_Card_Q,Blue Q Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6017,Blue_Card_T,Blue T Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6018,Blue_Card_V,Blue V Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6019,Blue_Card_Z,Blue Z Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6020,Fur,Fur,3,704,,10,,,,,,,,,,,,,{},{},{}
-6021,Peaked_Hat,Peaked Hat,3,433,,10,,,,,,,,,,,,,{},{},{}
-6022,Hard_Skin,Hard Skin,3,884,,10,,,,,,,,,,,,,{},{},{}
-6023,Mystic_Horn,Mystic Horn,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6024,17Carat_Dia,17Carat Diamond,3,0,,10,,,,,,,,,,,,,{},{},{}
-6025,Towel_Of_Memory,Towel of Memory,3,0,,0,,,,,,,,,,,,,{},{},{}
-6026,Marriage_Covenant,Written Oath Of Marriage,3,0,,10,,,,,,,,,,,,,{},{},{}
-6027,Crystal_Of_Feardoom,Crystal Of Feardom,3,0,,0,,,,,,,,,,,,,{},{},{}
-6028,Seal_Scroll,Sealed Scroll,3,0,,0,,,,,,,,,,,,,{},{},{}
-6029,Morocc_Tracing_Log,Morocc Tracing Log,3,0,,0,,,,,,,,,,,,,{},{},{}
-6030,Glitering_PaperA,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-6031,Glitering_PaperB,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-6032,Horn_Of_Hilsrion,Horn of Hillslion,3,500,,10,,,,,,,,,,,,,{},{},{}
-6033,Horn_Of_Tendrilion,Horn of Tendrilion,3,500,,10,,,,,,,,,,,,,{},{},{}
-6034,Weird_Part,Weird Part,3,0,,0,,,,,,,,,,,,,{},{},{}
-6035,Decaying_Stem,Decaying Stem,3,0,,0,,,,,,,,,,,,,{},{},{}
-6036,Invite_To_Meeting,Meeting Invitation,3,0,,10,,,,,,,,,,,,,{},{},{}
-6037,Rough_File,Messy File,3,0,,0,,,,,,,,,,,,,{},{},{}
-6038,Neat_Report,Neat Report,3,0,,10,,,,,,,,,,,,,{},{},{}
-6039,Piece_Of_Fish,Piece of Fish,3,0,,10,,,,,,,,,,,,,{},{},{}
-6040,Some_Of_Report,Part of a Report,3,0,,0,,,,,,,,,,,,,{},{},{}
-6041,Strong_Bine,Strong Vine,3,30,,50,,,,,,,,,,,,,{},{},{}
-6042,Ordinary_Branch,Ordinary Branch,3,0,,10,,,,,,,,,,,,,{},{},{}
-6043,Letter_From_Lugen,Letter from Lugen,3,0,,10,,,,,,,,,,,,,{},{},{}
-6044,Letter_From_Otto,Letter from Otto,3,0,,10,,,,,,,,,,,,,{},{},{}
-6045,Supply_Box,Supply Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-6046,Clothing_Dye_Coupon,Clothing Dye Coupon,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-6047,Clothing_Dye_Coupon_II,Clothing Dye Coupon II,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-6048,Unidentified_Mineral,Unidentified Mineral,3,0,,10,,,,,,,,,,,,,{},{},{}
-6049,Marlin,Marlin,3,0,,10,,,,,,,,,,,,,{},{},{}
-6050,Mercenary_Contract,Mercenary Contract,3,0,,10,,,,,,,,,,,,,{},{},{}
-6051,Gray_Hollow,Gray Hollow,3,0,,10,,,,,,,,,,,,,{},{},{}
-6052,Ornamental_Hairpin,Ornament Hairpin,3,1,,0,,,,,,,,,,,,,{},{},{}
-6053,Yuanbao,Circle Step,3,100,,100,,,,,,,,,,,,,{},{},{}
-6054,Blue_Card_6,Number 6 Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6055,Blue_Card_Annyver,Character Week Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6056,Blue_Card_Sary,Character Year Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6057,Blue_Card_E,Character Lee Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6058,Blue_Card_Ven,Character Ben Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6059,Blue_Card_Nt,Character Project Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6060,Moon_Admin_Ticket,Month Viewing Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-6061,Plantain,Blood Beginner,3,100,,50,,,,,,,,,,,,,{},{},{}
-6062,Moon_Cake15,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6063,Moon_Cake16,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6064,Moon_Cake17,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6065,Moon_Cake18,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6066,Moon_Cake19,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6067,Moon_Cake20,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6068,Rabbit_Skin,Leather Rabbit,3,10,,10,,,,,,,,,,,,,{},{},{}
-6069,ABUNDANCE,Abundance,3,10,,10,,,,,,,,,,,,,{},{},{}
-6070,Shaman's_Old_Paper,Shaman's Document,3,0,,10,,,,,,,,,,,,,{},{},{}
-6071,Broken_Sword,Broken Sword,3,0,,10,,,,,,,,,,,,,{},{},{}
-6072,Wing_Of_Bizofnil,Bijofnil Feather,3,0,,10,,,,,,,,,,,,,{},{},{}
-6073,Dragon's_Mane,Dragon's Mane,3,0,,0,,,,,,,,,,,,,{},{},{}
-6074,Bazett's_Order,Bazett's Order,3,0,,0,,,,,,,,,,,,,{},{},{}
-6075,Crystalized_Teardrop,Crystalized Teardrop,3,0,,0,,,,,,,,,,,,,{},{},{}
-6076,Portable_Toolbox,Portable Toolbox,3,0,,0,,,,,,,,,,,,,{},{},{}
-6077,Rough_Mineral,Rough Mineral,3,0,,0,,,,,,,,,,,,,{},{},{}
-6078,Stone_Fragments,Stone Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6079,Flower_Of_Alfheim,Flower Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{}
-6080,Manuk_Coin,Manuk Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6081,Splendide_Coin,Splendide Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6082,Spirit_Of_Alfheim,Spirit Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{}
-6083,Dolly_Capsule,Capsule Dolls,3,0,,10,,,,,,,,,,,,,{},{},{}
-6084,Bradium_Fragments,Bradium Fragments,3,0,,0,,,,,,,,,,,,,{},{},{}
-6085,Shaggy_Muffler,Shaggy Muffler,3,0,,0,,,,,,,,,,,,,{},{},{}
-6086,Withered_Flower,Withered Flower,3,890,,10,,,,,,,,,,,,,{},{},{}
-6087,Crystal_Of_Soul_01,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{}
-6088,Crystal_Of_Soul_02,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{}
-6089,Piece_Of_Darkness,Dark Piece,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6090,Purified_Bradium,Refined Bradium,3,1100,,50,,,,,,,,,,,,,{},{},{}
-6091,Dark_Red_Scale,Dark Red Scale,3,200000,,10,,,,,,,,,,,,,{},{},{}
-6092,Singing_Crystal_Piece,Piece Of Singing Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-6093,Egg_Of_Draco,Draco's Egg,3,0,,0,,,,,,,,,,,,,{},{},{}
-6094,Traditional_Cookie,Traditional Sweets,3,20,,10,,,,,,,,,,,,,{},{},{}
-6095,Flavored_Alcohol,Flavored Alcohol,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6096,Fish_With_Blue_Back,Fish With Blue Back,3,20,,10,,,,,,,,,,,,,{},{},{}
-6097,Pumpkin_Pie_,Pumpkin Pie,3,20,,10,,,,,,,,,,,,,{},{},{}
-6098,Small_Snow_Flower,Small Snow Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6099,Grilled_Rice_Cake,Grilled Rice Cake,3,20,,10,,,,,,,,,,,,,{},{},{}
-6100,Damp_Darkness,Damp Darkness,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6101,Attendance_Card,Attendance Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-6102,Report_On_Splendide,Report On Splendide,3,0,,0,,,,,,,,,,,,,{},{},{}
-6103,Report_On_Manuk,Report On Manuk,3,0,,0,,,,,,,,,,,,,{},{},{}
-6104,Big_Cell,Big Cell,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6105,Morning_Dew,Morning Dew,3,20,,10,,,,,,,,,,,,,{},{},{}
-6106,Well_Ripened_Berry,Well Ripened Berry,3,20,,10,,,,,,,,,,,,,{},{},{}
-6107,Sunset_On_The_Rock,Sunset On The Rock,3,20,,10,,,,,,,,,,,,,{},{},{}
-6108,Apple_Pudding,Apple Pudding,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6109,Plant_Neutrient,Plant Neutrient,3,20,,10,,,,,,,,,,,,,{},{},{}
-6110,Vital_Flower,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6111,Mystic_Stone,Mystic Stone,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6112,Fresh_Plant,Fresh Plant,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6113,Vital_Flower_,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6114,Flame_Gemstone,Flame Gemstone,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6115,Bun_,Bun,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6116,Succu_Pet_Coupon,Succubus Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6117,Imp_Pet_Coupon,Imp Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6118,Chung_E_Pet_Coupon,Chung E Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6119,Natural_Leather,Cow Leather,3,0,,0,,,,,,,,,,,,,{},{},{}
-6120,Face_Paint,Face Paint,3,120,,20,,,,,,,,,,,,,{},{},{}
-6121,Makeover_Brush,Makeover Brush,3,10,,0,,,,,,,,,,,,,{},{},{}
-6122,Paint_Brush,Paint Brush,3,10,,0,,,,,,,,,,,,,{},{},{}
-6123,Surface_Paint,Surface Paint,3,200,,30,,,,,,,,,,,,,{},{},{}
-6124,Wolf's_Flute,Wolf Flute,3,10,,0,,,,,,,,,,,,,{},{},{}
-6125,Lucky_Box,Spring Time Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6126,Happy_Box,Summer Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6127,Purification_Stone,Purification Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6128,Guillotine_Antidote,Antidote,3,0,,0,,,,,,,,,,,,,{},{},{}
-6129,Ticket_Nightmare,Nightmare Terror Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6130,Ticket_Loli_Ruri,Loli Ruri Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6131,Ticket_Goblin_Leader,Goblin Leader Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6132,Ticket_Incubus,Incubus Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6133,Ticket_Miyabi_Ningyo,Miyabi Ningyo Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6134,Ticket_Whisper,Giant Whisper Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6135,Ticket_Wicked_Nymph,Evil Nymph Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6136,Ticket_Medusa,Medusa Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6137,Ticket_Stoneshooter,Stone Shooter Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6138,Ticket_Marionette,Marionette Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6139,Ticket_Leafcat,Leaf Cat Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6140,Ticket_Dullahan,Dullahan Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6141,Ticket_Shinobi,Shinobi Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6142,Ticket_Golem,Golem Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6143,Ticket_Civil_Servant,Civil Servant Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6144,Heartbroken_Tears,Regrettable Tears,3,1000,,2,,,,,,,,,,,,,{},{},{}
-6145,Vulcan_Bullet,Vulcan Bullet,3,10,,2,,,,,,,,,,,,,{},{},{}
-6146,Magic_Gear_Fuel,Magic Gear Fuel,3,300,,30,,,,,,,,,,,,,{},{},{}
-6147,Liquid_Condensed_Bullet,Liquid Condensed Bullet,3,100,,3,,,,,,,,,,,,,{},{},{}
-6148,Chocolate_Of_Eternity,Eternity Of Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6149,Plain_Chocolate,Simple Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6150,Key_Of_The_Mansion,Key of The Mansion,3,0,,0,,,,,,,,,,,,,{},{},{}
-6151,Peice_Of_Great_Bradium,Giant Bradium Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6152,Glittering_Crystal,Glittering Crystal,3,0,,0,,,,,,,,,,,,,{},{},{}
-6153,Special_Exchange_Coupon,Special Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6154,Broken_Horn_Pipe,Broken Horn Pipe,3,0,,10,,,,,,,,,,,,,{},{},{}
-6155,Coke_Membership_Card,Member Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-6156,Approval_Report,Approval Report,3,0,,10,,,,,,,,,,,,,{},{},{}
-6157,Poring_Ticket,Poring Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6158,Drops_Ticket,Drops Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6159,Poporing_Ticket,Poporing Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6160,Lunatic_Ticket,Lunatic Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6161,Picky_Ticket,Picky Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6162,Pecopeco_Ticket,Peco Peco Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6163,Savage_Baby_Ticket,Savage Babe Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6164,Spore_Ticket,Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6165,Poison_Spore_Ticket,Poison Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6166,Chonchon_Ticket,Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6167,Steel_Chonchon_Ticket,Steel Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6168,Petit_Ticket,Sky Petite Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6169,Deviruchi_Ticket,Deviruchi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6170,Isis_Ticket,Isis Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6171,Smokie_Ticket,Smokie Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6172,Dokebi_Ticket,Dokebi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6173,Desert_Wolf_B_Ticket,Baby Desert Wolf Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6174,Yoyo_Ticket,Yoyo Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6175,Sohee_Ticket,Sohee Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6176,Rocker_Ticket,Rocker Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6177,Hunter_Fly_Ticket,Hunter Fly Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6178,Orc_Warrior_Ticket,Orc Warrior Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6179,Bapho_Jr_Ticket,Bapho Jr. Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6180,Munak_Ticket,Munak Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6181,Bongun_Ticket,Bongun Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6182,Goblin_Ticket,Christmas Goblin Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6183,Hardtack_Ticket,Rice Cake Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6184,Zherlthsh_Ticket,Zherlthsh Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6185,Alice_Ticket,Alice Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6186,Monkey_Wrench,Monkey Wrench,3,500,,10,,,,,,,,,,,,,{},{},{}
-6187,Blank_Card,Blank Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6188,Slot_Coupon,Slotting Advertisement,3,20,,10,,,,,,,,,,,,,{},{},{}
-6189,Magic_Book_FB,Spell Book (Fire Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6190,Magic_Book_CB,Spell Book (Cold Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6191,Magic_Book_LB,Spell Book (Lightening Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6192,Magic_Book_SG,Spell Book (Storm Gust),3,0,,0,,,,,,,,,,,,,{},{},{}
-6193,Magic_Book_LOV,Spell Book (Lord Of Vermilion),3,0,,0,,,,,,,,,,,,,{},{},{}
-6194,Magic_Book_MS,Spell Book (Meteor Storm),3,0,,0,,,,,,,,,,,,,{},{},{}
-6195,Magic_Book_CM,Spell Book (Comet),3,0,,0,,,,,,,,,,,,,{},{},{}
-6196,Magic_Book_TV,Spell Book (Tetra Vortex),3,0,,0,,,,,,,,,,,,,{},{},{}
-6197,Magic_Book_TS,Spell Book (Thunder Storm),3,0,,0,,,,,,,,,,,,,{},{},{}
-6198,Magic_Book_JT,Spell Book (Jupitel Thunder),3,0,,0,,,,,,,,,,,,,{},{},{}
-6199,Magic_Book_WB,Spell Book (Water Ball),3,0,,0,,,,,,,,,,,,,{},{},{}
-6200,Magic_Book_HD,Spell Book (Heaven's Drive),3,0,,0,,,,,,,,,,,,,{},{},{}
-6201,Magic_Book_ES,Spell Book (Earth Spike),3,0,,0,,,,,,,,,,,,,{},{},{}
-6202,Magic_Book_ES_,Spell Book (Earth Strain),3,0,,0,,,,,,,,,,,,,{},{},{}
-6203,Magic_Book_CL,Spell Book (Chain Lightning),3,0,,0,,,,,,,,,,,,,{},{},{}
-6204,Magic_Book_CR,Spell Book (Crimson Rock),3,0,,0,,,,,,,,,,,,,{},{},{}
-6205,Magic_Book_DL,Spell Book (Drain Life),3,0,,0,,,,,,,,,,,,,{},{},{}
-6206,I_Love_You,I Love You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6207,Thank_You,Thank You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6208,I_Respect_You,I Respect You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6209,Glory_Of_Knights,Knight's Honor,3,0,,0,,,,,,,,,,,,,{},{},{}
-6210,Seed_Of_Horny_Plant,Seed Of Thorny Plant,3,600,,1,,,,,,,,,,,,,{},{},{}
-6211,Bloodsuck_Plant_Seed,Bloodsuck Plant Seed,3,800,,1,,,,,,,,,,,,,{},{},{}
-6212,Bomb_Mushroom_Spore,Bomb Mushroom Spore,3,1000,,1,,,,,,,,,,,,,{},{},{}
-6213,Explosive_Powder,Explosive Powder,3,500,,1,,,,,,,,,,,,,{},{},{}
-6214,Smoke_Powder,Smoke Powder,3,500,,1,,,,,,,,,,,,,{},{},{}
-6215,Tear_Gas,Tear Gas,3,500,,1,,,,,,,,,,,,,{},{},{}
-6216,Oil_Bottle,Oil Bottle,3,1000,,1,,,,,,,,,,,,,{},{},{}
-6217,Mandragora_Flowerpot,Mandragora Flowerpot,3,2000,,1,,,,,,,,,,,,,{},{},{}
-6218,Disin_Delivery_Box,Delivery_Daishin_Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-6219,Para_Team_Mark,Eden Group Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6220,Mysterious_Dyestuff,Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6221,Mystic_Leaf_Cat_Ball,Mystic Leaf Cat Ball,3,0,,0,,,,,,,,,,,,,{},{},{}
-6222,Shining_Beads,Shining Beads,3,20,,0,,,,,,,,,,,,,{},{},{}
-6223,Carnium,Carnium,3,2000,,150,,,,,,,,,,,,,{},{},{}
-6224,Bradium,Bradium,3,2000,,150,,,,,,,,,,,,,{},{},{}
-6225,HD_Carnium,HD Carnium,3,0,,10,,,,,,,,,,,,,{},{},{}
-6226,HD_Bradium,HD Bradium,3,0,,10,,,,,,,,,,,,,{},{},{}
-6228,Guarantee_Weapon_9Up,+9 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6229,Guarantee_Weapon_8Up,+8 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6230,Guarantee_Weapon_7Up,+7 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6231,Guarantee_Weapon_6Up,+6 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6232,Guarantee_Armor_9Up,+9 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6233,Guarantee_Armor_8Up,+8 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6234,Guarantee_Armor_7Up,+7 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6235,Guarantee_Armor_6Up,+6 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6236,Blue_Card_7,Blue Card 7,3,0,,0,,,,,,,,,,,,,{},{},{}
-6237,Guarana_Fruit,Guarana Fruit,3,0,,0,,,,,,,,,,,,,{},{},{}
-6238,Guarantee_Weapon_11Up,+11 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6239,Guarantee_Armor_11Up,+11 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6240,HD_Oridecon,HD Oridecon,3,20,,10,,,,,,,,,,,,,{},{},{}
-6241,HD_Elunium,HD Elunium,3,20,,10,,,,,,,,,,,,,{},{},{}
-6242,Midgard_Coin,Midgard Coin,3,20,,10,,,,,,,,,,,,,{},{},{}
-6243,Exchange_Coupon,Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6244,Gun_Powder,Gun Powder,3,10,,1,,,,,,,,,,,,,{},{},{}
-6245,Black_Powder,Black Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6246,Yellow_Powder,Yellow Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6247,White_Powder,White Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6248,Melange_Pot,Melange Pot,3,600,,10,,,,,,,,,,,,,{},{},{}
-6249,Savage_Meat,Savage Meat,3,100,,10,,,,,,,,,,,,,{},{},{}
-6250,Cooking_Skewer,Cooking Skewer,3,300,,10,,,,,,,,,,,,,{},{},{}
-6251,Black_Charcoal,Black Charcoal,3,300,,10,,,,,,,,,,,,,{},{},{}
-6252,Wolf_Blood,Blood Of Wolf,3,100,,10,,,,,,,,,,,,,{},{},{}
-6253,Cold_Ice,Cold Ice,3,100,,10,,,,,,,,,,,,,{},{},{}
-6254,Beef_Head_Meat,Beef Head,3,100,,10,,,,,,,,,,,,,{},{},{}
-6255,Large_Cookpot,Large Cookpot,3,500,,10,,,,,,,,,,,,,{},{},{}
-6256,Ice_Fragment,Ice Piece,3,100,,10,,,,,,,,,,,,,{},{},{}
-6257,Ice_Crystal,Ice Crystal,3,100,,10,,,,,,,,,,,,,{},{},{}
-6258,Comodo_Tropic_Fruit,Comodo Tropical Fruit,3,800,,10,,,,,,,,,,,,,{},{},{}
-6259,Drocera_Tentacle,Drosera Tentacle,3,100,,10,,,,,,,,,,,,,{},{},{}
-6260,Petti_Tail,Petite's Tail,3,100,,10,,,,,,,,,,,,,{},{},{}
-6261,Fine_Noodle,Fine Noodles,3,500,,10,,,,,,,,,,,,,{},{},{}
-6262,Cool_Gravy,Cool Gravy,3,400,,10,,,,,,,,,,,,,{},{},{}
-6263,Coconut_Fruit,Coconut Fruit,3,100,,10,,,,,,,,,,,,,{},{},{}
-6264,Melon,Melon,3,100,,10,,,,,,,,,,,,,{},{},{}
-6265,Pineapple,Pineapple,3,100,,10,,,,,,,,,,,,,{},{},{}
-6266,Cheat_Key,Key Of Deception,3,0,,0,,,,,,,,,,,,,{},{},{}
-6267,Virtual_Key,Key Of Illusion,3,0,,0,,,,,,,,,,,,,{},{},{}
-6268,Mirth_Key,Key Of Gaiety,3,0,,0,,,,,,,,,,,,,{},{},{}
-6269,Master_Brush,A Master's Blush,3,0,,0,,,,,,,,,,,,,{},{},{}
-6270,Mins_Picture,A Picture Of Minstrel Song,3,0,,0,,,,,,,,,,,,,{},{},{}
-6271,Mins_Receipt,Receipt,3,0,,0,,,,,,,,,,,,,{},{},{}
-6272,Experiment_Seed,Experiment Seed,3,0,,0,,,,,,,,,,,,,{},{},{}
-6273,Altered_Seed,Seed For Experiment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6274,Saint_Cloth_Piece,A Piece Of Cloth Of A Saint,3,0,,0,,,,,,,,,,,,,{},{},{}
-6275,King_Shield,Shield Of King,3,0,,0,,,,,,,,,,,,,{},{},{}
-6276,Clear_Reagent,Clear Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6277,Red_Reagent,Red Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6278,Black_Reagent,Black Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6279,Apple_Bomb_CB,Apple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6280,Pinepple_Bomb_CB,Pineapple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6281,Coconut_Bomb_CB,Coconut Fruit Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6282,Melon_Bomb_CB,Melon Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6283,Banana_Bomb_CB,Banana Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6284,Plant_Genetic_Grow,How To Grow Plant Genes,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6285,Quality_Potion_Book,Manual: How To Make High Quality Potion,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6286,F_Max_Weight_Up_Scroll,F Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6287,F_Clothing_Dye_Coupon,F Clothing Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6288,F_Happy_Box,F Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6289,F_Mysterious_Dyestuff,F Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6290,F_New_Style_Coupon,F New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6291,F_Enriched_Elunium,F Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-6292,F_Enriched_Oridecon,F Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-6293,F_Token_Of_Siegfried,F Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-6294,F_Marriage_Covenant,F Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{}
-6295,F_Clothing_Dye_Coupon2,F Clothing Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{}
-6296,RF_Taining_Notice,Training Notice,3,20,,10,,,,,,,,,,,,,{},{},{}
-6297,Bottle_To_Throw,Throwing Bottle,3,300,,10,,,,,,,,,,,,,{},{},{}
-6298,Pumpkin_Head_Crushed,Pumpkin Head Crushed,3,20,,0,,,,,,,,,,,,,{},{},{}
-6299,Worn_Cloth_Piece,Worn Cloth Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-6300,J_7Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{}
-6301,J_Semi_Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{}
-6302,GM_Handwriting,GM Handwriting,3,20004,,0,,,,,,,,,,,,,{},{},{}
-6303,Changed_Hydra_Ball,Changed Hydra Ball,3,0,,0,,,,,,,,,,,,,{},{},{}
-6304,Sapa_Feat_Cert,Proof Of Sapha's Honor,3,0,,0,,,,,,,,,,,,,{},{},{}
-6305,Frozen_Skin_Piece,Frozen Piece Of Skin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6306,Solid_Bloodstain,Hard Bloodstain,3,0,,0,,,,,,,,,,,,,{},{},{}
-6307,Suspicious_Magic_Stone,Cursed Magical Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6308,Unidentified_Relic,Unidentified Relic,3,0,,0,,,,,,,,,,,,,{},{},{}
-6309,E_Max_Weight_Up_Scroll,E Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6310,E_Cloth_Dye_Coupon,E Cloth Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6311,E_Happy_Box,E Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6312,E_Mysterious_Dyestuff,E Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6313,E_New_Style_Coupon,E New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6314,E_Enriched_Elunium,E Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-6315,E_Enriched_Oridecon,E Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-6316,E_Token_Of_Siegfried,E Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-6317,E_Marriage_Covenant,E Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{}
-6318,E_Cloth_Dye_Coupon2,E Cloth Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{}
-6319,Small_Bradium,Small Bradium,3,324,,10,,,,,,,,,,,,,{},{},{}
-6320,Premium_Reset_Stone,Premium Reset Stone,3,20,,0,,,,,,,,,,,,,{},{},{}
-6321,Rakehorn_Helm,Rakehorn Helm,3,822,,10,,,,,,,,,,,,,{},{},{}
-6322,Antler_Helm,Antler Helmet,3,800,,10,,,,,,,,,,,,,{},{},{}
-6323,Twinhorn_Helm,Two-Horned Helmet,3,728,,10,,,,,,,,,,,,,{},{},{}
-6324,Singlehorn_Helm,Single Horned Helmet,3,702,,10,,,,,,,,,,,,,{},{},{}
-6325,White_Spider_Limb,White Spider Limb,3,1004,,10,,,,,,,,,,,,,{},{},{}
-6326,Queen_Wing_Piece,Queen Wing Piece,3,1630,,10,,,,,,,,,,,,,{},{},{}
-6328,Calender_January,Calender January,3,20,,0,,,,,,,,,,,,,{},{},{}
-6329,Calender_February,Calender February,3,20,,0,,,,,,,,,,,,,{},{},{}
-6330,Calender_March,Calender March,3,20,,0,,,,,,,,,,,,,{},{},{}
-6331,Calender_April,Calender April,3,20,,0,,,,,,,,,,,,,{},{},{}
-6332,Calender_May,Calender May,3,20,,0,,,,,,,,,,,,,{},{},{}
-6333,Calender_June,Calender June,3,20,,0,,,,,,,,,,,,,{},{},{}
-6334,Calender_July,Calender July,3,20,,0,,,,,,,,,,,,,{},{},{}
-6335,Calender_August,Calender August,3,20,,0,,,,,,,,,,,,,{},{},{}
-6336,Calender_September,Calender September,3,20,,0,,,,,,,,,,,,,{},{},{}
-6337,Calender_October,Calender October,3,20,,0,,,,,,,,,,,,,{},{},{}
-6338,Calender_November,Calender November,3,20,,0,,,,,,,,,,,,,{},{},{}
-6339,Calender_December,Calender December,3,20,,0,,,,,,,,,,,,,{},{},{}
-6340,Fade_Notation_Green,Fade Notation Green,3,0,,10,,,,,,,,,,,,,{},{},{}
-6341,Fade_Notation_Red,Fade Notation Red,3,0,,10,,,,,,,,,,,,,{},{},{}
-6342,Fade_Notation_Purple,Fade Notation Purple,3,0,,10,,,,,,,,,,,,,{},{},{}
-6343,Fade_Notation_Blue,Fade Notation Blue,3,0,,10,,,,,,,,,,,,,{},{},{}
-6344,Muscle_Story,Muscle Story,3,0,,0,,,,,,,,,,,,,{},{},{}
-6345,Love_Ball,Love Ball,3,0,,0,,,,,,,,,,,,,{},{},{}
-6346,Seagate_Mark,Seagate Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6347,Bless_Word_Paper1,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6348,Bless_Word_Paper2,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6349,Bless_Word_Paper3,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6350,Bless_Word_Paper4,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6351,Bless_Word_Paper5,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6352,Bless_Word_Paper6,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6353,Bless_Word_Paper7,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6354,Bless_Word_Paper8,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6355,Bless_Word_Paper9,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6356,Bless_Word_Paper10,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6357,Fortune_Cookie_Fail,Fortune Cookie Fail,3,4020,,10,,,,,,,,,,,,,{},{},{}
-6358,Free_Cash_Coupon,Free Cash Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6359,Guidebook_Exchange,Guidebook Exchange,3,0,,0,,,,,,,,,,,,,{},{},{}
-6360,Scarlet_Pts,Scarlet Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6361,Indigo_Pts,Indigo Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6362,Yellow_Wish_Pts,Yellow Wish Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6363,Lime_Green_Pts,Lime Green Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6369,Amatsu_Bead_A,Amatsu Bead A,3,0,,0,,,,,,,,,,,,,{},{},{}
-6370,Amatsu_Bead_Ma,Amatsu Bead Ma,3,0,,0,,,,,,,,,,,,,{},{},{}
-6371,Amatsu_Bead_Tsu,Amatsu Bead Tsu,3,0,,0,,,,,,,,,,,,,{},{},{}
-6372,Amatsu_Bead_Jam,Amatsu Bead Jam,3,0,,0,,,,,,,,,,,,,{},{},{}
-6373,Amatsu_Bead_Bo,Amatsu Bead Bo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6374,Amatsu_Bead_Ree,Amatsu Bead Ree,3,0,,0,,,,,,,,,,,,,{},{},{}
-6375,Amatsu_Bead_!,Amatsu Bead !,3,0,,0,,,,,,,,,,,,,{},{},{}
-6376,KVM_Badge,KVM Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-6377,Buy_Market_Permit,Buy Market Permit,3,20,,10,,,,,,,,,,,,,{},{},{}
-6378,Winning_Mark,Winning Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6379,7Star_Board,7Star Board,3,20,,10,,,,,,,,,,,,,{},{},{}
-6380,Mora_Coin,Mora Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6381,Field_Shovel,Field Shovel,3,20,,10,,,,,,,,,,,,,{},{},{}
-6382,Urn,Urn,3,20,,10,,,,,,,,,,,,,{},{},{}
-6383,Clue_Of_Lope,Lope's Clue,3,20,,10,,,,,,,,,,,,,{},{},{}
-6384,Ring_Of_Lope,Lope's Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-6385,Research_Tool_Bag,Research Tool Bag,3,0,,0,,,,,,,,,,,,,{},{},{}
-6386,Bathtub_R_Sample,Bath Water Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6387,Teeth_Sample,Teeth Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6388,Scale_Sample,Scale Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6389,Puddle_R_Sample,Sample Of Puddle Research,3,20,,0,,,,,,,,,,,,,{},{},{}
-6390,Small_Pocket,Small Pocket,3,20,,0,,,,,,,,,,,,,{},{},{}
-6391,Splendid_Supply_Kit,Splendid Supply Kit,3,20,,2000,,,,,,,,,,,,,{},{},{}
-6392,Bradium_Box,Bradium Box,3,20,,10,,,,,,,,,,,,,{},{},{}
-6393,Round_Feather,Round Feather,3,700,,10,,,,,,,,,,,,,{},{},{}
-6394,Golden_Feather,Golden Feather,3,650,,10,,,,,,,,,,,,,{},{},{}
-6395,Angel_Magic_Power,Angel Magic Power,3,820,,10,,,,,,,,,,,,,{},{},{}
-6396,Auger_Of_Spirit,Auger Of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{}
-//
-6456,Guarantee_Weapon_5Up,+5 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6457,Guarantee_Armor_5Up,+5 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6493,Makibishi,Makibishi,3,30,,1,,,,,,,,,,,,,{},{},{}
-6499,Ancient_Grudge,Ancient Grudge,3,500,,10,,,,,,,,,,,,,{},{},{}
-6512,Charm_Fire,Fire Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6513,Charm_Ice,Ice Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6514,Charm_Wind,Wind Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6515,Charm_Earth,Earth Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-//
-7001,Mould_Powder,Mould Powder,3,466,,10,,,,,,,,,,,,,{},{},{}
-7002,Ogre_Tooth,Ogre Tooth,3,658,,10,,,,,,,,,,,,,{},{},{}
-7003,Anolian_Skin,Anolian Skin,3,968,,10,,,,,,,,,,,,,{},{},{}
-7004,Mud_Lump,Mud Lump,3,876,,10,,,,,,,,,,,,,{},{},{}
-7005,Skull,Skull,3,1044,,10,,,,,,,,,,,,,{},{},{}
-7006,Wing_Of_Red_Bat,Wing of Red Bat,3,168,,10,,,,,,,,,,,,,{},{},{}
-7007,Claw_Of_Rat,Claw of Rat,3,748,,10,,,,,,,,,,,,,{},{},{}
-7008,Stiff_Horn,Stiff Horn,3,636,,10,,,,,,,,,,,,,{},{},{}
-7009,Glitter_Shell,Glitter Shell,3,528,,10,,,,,,,,,,,,,{},{},{}
-7010,Tail_Of_Steel_Scorpion,Tail of Steel Scorpion,3,548,,10,,,,,,,,,,,,,{},{},{}
-7011,Claw_Of_Monkey,Claw of Monkey,3,466,,10,,,,,,,,,,,,,{},{},{}
-7012,Tough_Scalelike_Stem,Tough Scalelike Stem,3,412,,10,,,,,,,,,,,,,{},{},{}
-7013,Coral_Reef,Coral Reef,3,772,,10,,,,,,,,,,,,,{},{},{}
-7014,Old_Portrait,Old Portrait,3,1500,,100,,,,,,,,,,,,,{},{},{}
-7015,Bookclip_In_Memory,Bookclip in Memory,3,3000,,20,,,,,,,,,,,,,{},{},{}
-7016,Spoon_Stub,Spoon Stub,3,2500,,20,,,,,,,,,,,,,{},{},{}
-7017,Executioner's_Mitten,Executioner's Mitten,3,4500,,30,,,,,,,,,,,,,{},{},{}
-7018,Young_Twig,Young Twig,3,50,,10,,,,,,,,,,,,,{},{},{}
-7019,Loki's_Whispers,Loki's Whispers,3,20,,10,,,,,,,,,,,,,{},{},{}
-7020,Mother's_Nightmare,Mother's Nightmare,3,20,,10,,,,,,,,,,,,,{},{},{}
-7021,Foolishness_Of_Blind,Foolishness of the Blind,3,20,,10,,,,,,,,,,,,,{},{},{}
-7022,Old_Hilt,Old Hilt,3,150,,30,,,,,,,,,,,,,{},{},{}
-7023,Blade_Lost_In_Darkness,Blade Lost in Darkness,3,12000,,40,,,,,,,,,,,,,{},{},{}
-7024,Bloody_Edge,Bloody Edge,3,10000,,40,,,,,,,,,,,,,{},{},{}
-7025,Lucifer's_Lament,Lucifer's Lament,3,30000,,50,,,,,,,,,,,,,{},{},{}
-7026,Key_Of_Clock_Tower,Key of Clock Tower,3,100,,30,,,,,,,,,,,,,{},{},{}
-7027,Underground_Key,Key of Underground,3,100,,30,,,,,,,,,,,,,{},{},{}
-7028,Invite_For_Duel,Invite for Duel,3,0,,0,,,,,,,,,,,,,{},{},{}
-7029,Admission_For_Duel,Admission for Duel,3,0,,0,,,,,,,,,,,,,{},{},{}
-7030,Claw_Of_Desert_Wolf,Claw of Desert Wolf,3,208,,10,,,,,,,,,,,,,{},{},{}
-7031,Old_Frying_Pan,Old Frying Pan,3,196,,10,,,,,,,,,,,,,{},{},{}
-7032,Piece_Of_Egg_Shell,Piece of Egg Shell,3,168,,10,,,,,,,,,,,,,{},{},{}
-7033,Poison_Spore,Poison Spore,3,114,,10,,,,,,,,,,,,,{},{},{}
-7034,Red_Socks_With_Holes,Red Stocking,3,100,,10,,,,,,,,,,,,,{},{},{}
-7035,Matchstick,Matchstick,3,100,,10,,,,,,,,,,,,,{},{},{}
-7036,Fang_Of_Garm,Fang of Hatii,3,100,,10,,,,,,,,,,,,,{},{},{}
-7037,Trade_Coupon,Coupon,3,100,,10,,,,,,,,,,,,,{},{},{}
-7038,Yarn,Yarn,3,100,,10,,,,,,,,,,,,,{},{},{}
-7039,Novice_Nametag,Newbie Tag,3,0,,10,,,,,,,,,,,,,{},{},{}
-7040,Megaphone,Megaphone,3,1,,10,,,,,,,,,,,,,{},{},{}
-7041,Fine_Grit,Fine Grit,3,120,,10,,,,,,,,,,,,,{},{},{}
-7042,Leather_Bag_Of_Infinity,Leather Bag of Infinity,3,1,,10,,,,,,,,,,,,,{},{},{}
-7043,Fine_Sand,Fine Sand,3,100,,10,,,,,,,,,,,,,{},{},{}
-7044,Vigorgra,Vigorgra,3,1,,10,,,,,,,,,,,,,{},{},{}
-7045,Magic_Paint,Magic Paint,3,1,,10,,,,,,,,,,,,,{},{},{}
-7046,Cart_Parts,Cart Parts,3,1,,10,,,,,,,,,,,,,{},{},{}
-7047,Alice's_Apron,Alice's Apron,3,2424,,10,,,,,,,,,,,,,{},{},{}
-7048,Talon_Of_Griffin,Talon of Griffon,3,5418,,10,,,,,,,,,,,,,{},{},{}
-7049,Stone,Stone,3,0,,30,,,,,,,,,,,,,{},{},{}
-7050,Cotton_Mat,Cotton Mat,3,100,,10,,,,,,,,,,,,,{},{},{}
-7051,Silk_Mat,Silk Mat,3,100,,10,,,,,,,,,,,,,{},{},{}
-7052,Old_Magazine,Old Papers,3,100,,10,,,,,,,,,,,,,{},{},{}
-7053,Cyfar,Cyfar,3,772,,10,,,,,,,,,,,,,{},{},{}
-7054,Brigan,Brigan,3,746,,10,,,,,,,,,,,,,{},{},{}
-7055,Animal_Pooopoo,Animal Poop,3,100,,50,,,,,,,,,,,,,{},{},{}
-7056,Payroll_Of_Kafra,Payment Statement for Kafra Employee,3,1,,50,,,,,,,,,,,,,{},{},{}
-7057,Gallar_Horn,Gjallar,3,1,,500,,,,,,,,,,,,,{},{},{}
-7058,Gullraifnir,Gleipnir,3,1,,500,,,,,,,,,,,,,{},{},{}
-7059,Cargo_Free_Ticket,Free Ticket for Kafra Storage,3,1,,0,,,,,,,,,,,,,{},{},{}
-7060,Warp_Free_Ticket,Free Ticket for Kafra Transportation,3,1,,0,,,,,,,,,,,,,{},{},{}
-7061,Cart_Free_Ticket,Free Ticket for the Cart Service,3,1,,0,,,,,,,,,,,,,{},{},{}
-7062,Broken_Turtle_Shell,Broken Turtle Shell,3,280,,10,,,,,,,,,,,,,{},{},{}
-7063,Soft_Feather,Soft Feather,3,280,,10,,,,,,,,,,,,,{},{},{}
-7064,Dragon_Fly_Wing,Wing of Dragonfly,3,520,,10,,,,,,,,,,,,,{},{},{}
-7065,Sea_Otter_Leather,Sea-Otter Fur,3,820,,10,,,,,,,,,,,,,{},{},{}
-7066,Ice_Piece,Ice Cubic,3,660,,10,,,,,,,,,,,,,{},{},{}
-7067,Stone_Piece,Stone Fragment,3,640,,10,,,,,,,,,,,,,{},{},{}
-7068,Burn_Tree,Burnt Tree,3,722,,10,,,,,,,,,,,,,{},{},{}
-7069,Broken_Armor_Piece,Destroyed Armor,3,1042,,10,,,,,,,,,,,,,{},{},{}
-7070,Broken_Shell,Broken Shell,3,900,,10,,,,,,,,,,,,,{},{},{}
-7071,Tatters_Clothes,Tattered Clothes,3,1280,,10,,,,,,,,,,,,,{},{},{}
-7072,Rust_Suriken,Old Shuriken,3,1780,,10,,,,,,,,,,,,,{},{},{}
-7073,Jewel_Of_Prayer,Freya's Jewel,3,1,,500,,,,,,,,,,,,,{},{},{}
-7074,Iron_Glove,Thor's Gauntlets,3,1,,500,,,,,,,,,,,,,{},{},{}
-7075,Iron_Maiden,Iron Maiden,3,1,,500,,,,,,,,,,,,,{},{},{}
-7076,Mystery_Wheel,Wheel of the Unknown,3,1,,500,,,,,,,,,,,,,{},{},{}
-7077,Silver_Fancy,Silver Ornament,3,1,,500,,,,,,,,,,,,,{},{},{}
-7078,Anger_Of_Valkurye,Wrath of Valkyrie,3,1,,500,,,,,,,,,,,,,{},{},{}
-7079,Feather_Of_Angel,Feather of Angel Wing,3,1,,500,,,,,,,,,,,,,{},{},{}
-7080,Foot_Step_Of_Cat,Cat Tread,3,1,,500,,,,,,,,,,,,,{},{},{}
-7081,Beard_Of_Women,Woman's Moustache,3,1,,500,,,,,,,,,,,,,{},{},{}
-7082,Root_Of_Stone,Root of Stone,3,1,,500,,,,,,,,,,,,,{},{},{}
-7083,Soul_Of_Fish,Spirit of Fish,3,1,,500,,,,,,,,,,,,,{},{},{}
-7084,Saliva_Of_Bird,Sputum of Bird,3,1,,500,,,,,,,,,,,,,{},{},{}
-7085,Tendon_Of_Bear,Sinew of Bear,3,1,,500,,,,,,,,,,,,,{},{},{}
-7086,Symbol_Of_Sun,Emblem of the Sun God,3,1,,500,,,,,,,,,,,,,{},{},{}
-7087,Breath_Of_Soul,Breath of Spirit,3,1,,500,,,,,,,,,,,,,{},{},{}
-7088,Crystal_Of_Snow,Snow Crystal,3,1,,500,,,,,,,,,,,,,{},{},{}
-7089,Indication_Of_Tempest,Omen of Tempest,3,1,,500,,,,,,,,,,,,,{},{},{}
-7090,Slilince_Wave,Ripple,3,1,,500,,,,,,,,,,,,,{},{},{}
-7091,Rough_Billows,Billow,3,1,,500,,,,,,,,,,,,,{},{},{}
-7092,Air_Stream,Drifting Air,3,1,,500,,,,,,,,,,,,,{},{},{}
-7093,Wheel,Cogwheel,3,1512,,10,,,,,,,,,,,,,{},{},{}
-7094,Mystery_Piece,Fragment,3,1344,,10,,,,,,,,,,,,,{},{},{}
-7095,Broken_Steel_Piece,Metal Fragment,3,1075,,10,,,,,,,,,,,,,{},{},{}
-7096,Cold_Magma,Lava,3,1109,,10,,,,,,,,,,,,,{},{},{}
-7097,Burning_Heart,Burning Heart,3,924,,10,,,,,,,,,,,,,{},{},{}
-7098,Live_Coal,Live Coal,3,638,,10,,,,,,,,,,,,,{},{},{}
-7099,Old_Magic_Circle,Worn-out Magic Scroll,3,773,,10,,,,,,,,,,,,,{},{},{}
-7100,Sharp_Leaf,Sharp Leaf,3,806,,10,,,,,,,,,,,,,{},{},{}
-7101,Peco_Wing_Feather,Peco Peco Feather,3,454,,10,,,,,,,,,,,,,{},{},{}
-7102,Hideous_Dream,Nightmare,3,1075,,10,,,,,,,,,,,,,{},{},{}
-7103,Unknown_Liquid_Bottle,Unknown Liquid Bottle,3,10,,10,,,,,,,,,,,,,{},{},{}
-7104,Fake_Angel_Wing,False Angel Wing,3,756,,10,,,,,,,,,,,,,{},{},{}
-7105,Fake_Angel_Loop,False Heaven Ring,3,924,,10,,,,,,,,,,,,,{},{},{}
-7106,Goat's_Horn,Antelope Horn,3,672,,10,,,,,,,,,,,,,{},{},{}
-7107,Gaoat's_Skin,Antelope Skin,3,756,,10,,,,,,,,,,,,,{},{},{}
-7108,Boroken_Shiled_Piece,Piece of Shield,3,1680,,10,,,,,,,,,,,,,{},{},{}
-7109,Shine_Spear_Blade,Shining Spear Blade,3,840,,10,,,,,,,,,,,,,{},{},{}
-7110,Vroken_Sword,Broken Sword,3,588,,10,,,,,,,,,,,,,{},{},{}
-7111,Smooth_Paper,Slick Paper,3,706,,10,,,,,,,,,,,,,{},{},{}
-7112,Fright_Paper_Blade,Sharp Paper,3,907,,10,,,,,,,,,,,,,{},{},{}
-7113,Broken_Pharaoh_Symbol,Broken Pharaoh Emblem,3,2016,,10,,,,,,,,,,,,,{},{},{}
-7114,Tutankhamen's_Mask,Masque of Tutankhamen,3,10,,10,,,,,,,,,,,,,{},{},{}
-7115,Harpy's_Feather,Harpy Feather,3,1142,,10,,,,,,,,,,,,,{},{},{}
-7116,Harpy's_Claw,Harpy Talon,3,1210,,10,,,,,,,,,,,,,{},{},{}
-7117,Rent_Spell_Book,Torn Magic Book,3,1142,,10,,,,,,,,,,,,,{},{},{}
-7118,Rent_Scroll,Torn Scroll,3,1361,,10,,,,,,,,,,,,,{},{},{}
-7119,Spawns,Bacillus,3,1025,,10,,,,,,,,,,,,,{},{},{}
-7120,Burning_Horse_Shoe,Burning Horseshoe,3,823,,10,,,,,,,,,,,,,{},{},{}
-7121,Honey_Jar,Honey Pot,3,622,,10,,,,,,,,,,,,,{},{},{}
-7122,Hot_Hair,Burning Hair,3,974,,10,,,,,,,,,,,,,{},{},{}
-7123,Dragon's_Skin,Dragon Skin,3,1025,,10,,,,,,,,,,,,,{},{},{}
-7124,Sand_Lump,Sand Clump,3,706,,10,,,,,,,,,,,,,{},{},{}
-7125,Scropion's_Nipper,Scorpion Claw,3,706,,10,,,,,,,,,,,,,{},{},{}
-7126,Large_Jellopy,Large Jellopy,3,840,,10,,,,,,,,,,,,,{},{},{}
-7127,Alcol_Create_Book,Alcohol Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7128,FireBottle_Create_Book,Bottle Grenade Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7129,Acid_Create_Book,Acid Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7130,Plant_Create_Book,Plant Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7131,Mine_Create_Book,Marine Sphere Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7132,Coating_Create_Book,Glistening Coat Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7133,Slim_Potion_Create_Book,Condensed Potion Creation Guide,3,240000,,10,,,,,,,,,,,,,{},{},{}
-7134,Medicine_Bowl,Medicine Bowl,3,8,,10,,,,,,,,,,,,,{},{},{}
-7135,Fire_Bottle,Bottle Grenade,3,200,,10,,,,,,,,,,,,,{},{},{}
-7136,Acid_Bottle,Acid Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7137,MenEater_Plant_Bottle,Plant Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7138,Mini_Bottle,Marine Sphere Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7139,Coating_Bottle,Glistening Coat,3,200,,10,,,,,,,,,,,,,{},{},{}
-7140,Seed_Of_Life,Seed of Life,3,60000,,10,,,,,,,,,,,,,{},{},{}
-7141,Yggdrasilberry_Dew,Morning Dew of Yggdrasil,3,20000,,10,,,,,,,,,,,,,{},{},{}
-7142,Germination_Breed,Embryo,3,10,,10,,,,,,,,,,,,,{},{},{}
-7143,Life_Force_Pot,Glass Tube,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7144,Normal_Potion_Book,Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7145,Rag_T_Shirts,Ragnarok T-shirt,3,1,,10,,,,,,,,,,,,,{},{},{}
-7146,Vacance_Ticket,Vacation Ticket,3,1,,10,,,,,,,,,,,,,{},{},{}
-7147,Jasmin,Jasmine,3,1,,10,,,,,,,,,,,,,{},{},{}
-7148,Mother_Letter,Mother's Letter,3,1,,10,,,,,,,,,,,,,{},{},{}
-7149,Yellow_Plate,Yellow Plate,3,220,,10,,,,,,,,,,,,,{},{},{}
-7150,Bamboo_Cut,Piece of Bamboo,3,310,,10,,,,,,,,,,,,,{},{},{}
-7151,Oil_Paper,Oil Paper,3,210,,10,,,,,,,,,,,,,{},{},{}
-7152,Glossy_Hair,Glossy Hair,3,340,,10,,,,,,,,,,,,,{},{},{}
-7153,Old_Japaness_Clothes,Worn-out Kimono,3,590,,10,,,,,,,,,,,,,{},{},{}
-7154,Poison_Powder,Poisonous Powder,3,160,,10,,,,,,,,,,,,,{},{},{}
-7155,Poison_Toad's_Skin,Poisonous Toad Skin,3,280,,10,,,,,,,,,,,,,{},{},{}
-7156,Broken_Shuriken,Broken Shuriken,3,470,,10,,,,,,,,,,,,,{},{},{}
-7157,Black_Mask,Dark Mask,3,315,,10,,,,,,,,,,,,,{},{},{}
-7158,Broken_Wine_Vessel,Broken Liquor Jar,3,160,,10,,,,,,,,,,,,,{},{},{}
-7159,Tengu's_Nose,Tengu Nose,3,400,,10,,,,,,,,,,,,,{},{},{}
-7160,Lord's_Passable_Ticket,Feudal Lord Permit,3,1,,10,,,,,,,,,,,,,{},{},{}
-7161,Black_Bear's_Skin,Black Bear Skin,3,384,,10,,,,,,,,,,,,,{},{},{}
-7162,Cloud_Piece,Cloud Crumb,3,390,,10,,,,,,,,,,,,,{},{},{}
-7163,Sharp_Feeler,Hard Feeler,3,570,,10,,,,,,,,,,,,,{},{},{}
-7164,Hard_Peach,Solid Peach,3,400,,10,,,,,,,,,,,,,{},{},{}
-7165,Limpid_Celestial_Robe,Transparent Celestial Robe,3,650,,10,,,,,,,,,,,,,{},{},{}
-7166,Soft_Silk_Cloth,Soft Silk,3,1200,,10,,,,,,,,,,,,,{},{},{}
-7167,Mystery_Iron_Bit,Strange Steel Piece,3,430,,10,,,,,,,,,,,,,{},{},{}
-7168,Great_Wing,Giant Butterfly Wing,3,614,,10,,,,,,,,,,,,,{},{},{}
-7169,Taegeuk_Plate,Ba Gua,3,2800,,10,,,,,,,,,,,,,{},{},{}
-7170,Tuxedo,Tuxedo,3,43000,,10,,,,,,,,,,,,,{},{},{}
-7171,Leopard_Skin,Leopard Skin,3,282,,10,,,,,,,,,,,,,{},{},{}
-7172,Leopard_Talon,Leopard Claw,3,290,,10,,,,,,,,,,,,,{},{},{}
-7173,BurnBuster_Bag,iROGM02's Backpack,3,0,,10,,,,,,,,,,,,,{},{},{}
-7174,Packing_Ribbon,Wrapping Lace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7175,Packing_Paper,Wrapping Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7176,XMAS_Coupon,Royal Certificate,3,0,,10,,,,,,,,,,,,,{},{},{}
-7177,Part_Of_Star's_Sob,Crumb of Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{}
-7178,Star's_Sob,Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{}
-7179,Donation_Card,Proof of Donation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7180,Introduction_Of_Mr.Han,Hahn Sukbong's Recommendation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7181,Receipt_01,Receipt,3,0,,10,,,,,,,,,,,,,{},{},{}
-7182,Cacao,Cacao,3,200,,20,,,,,,,,,,,,,{},{},{}
-7183,Sister_Letter,Letter from Sister,3,0,,10,,,,,,,,,,,,,{},{},{}
-7184,Piano_Keyboard,Piano Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7185,Quiz_Ticket,Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7186,Thin_Stem,Thin Trunk,3,380,,10,,,,,,,,,,,,,{},{},{}
-7187,Festival_Mask,Festival Mask,3,100,,10,,,,,,,,,,,,,{},{},{}
-7188,Browny_Root,Brown Root,3,560,,10,,,,,,,,,,,,,{},{},{}
-7189,Heart_Of_Tree,Wooden Heart,3,680,,10,,,,,,,,,,,,,{},{},{}
-7190,Solid_Peeling,Solid Husk,3,140,,10,,,,,,,,,,,,,{},{},{}
-7191,Lamplight,Lamp,3,0,,10,,,,,,,,,,,,,{},{},{}
-7192,Blade_Of_Pinwheel,Vane,3,160,,10,,,,,,,,,,,,,{},{},{}
-7193,Germinating_Sprout,Sprout,3,230,,10,,,,,,,,,,,,,{},{},{}
-7194,Soft_Leaf,Soft Blade of Grass,3,400,,10,,,,,,,,,,,,,{},{},{}
-7195,Air_Rifle,Slingshot,3,210,,10,,,,,,,,,,,,,{},{},{}
-7196,Shoulder_Protection,Shoulder Protector,3,230,,10,,,,,,,,,,,,,{},{},{}
-7197,Tough_Vines,Tough Vines,3,500,,10,,,,,,,,,,,,,{},{},{}
-7198,Great_Leaf,Huge Leaf,3,610,,10,,,,,,,,,,,,,{},{},{}
-7199,Coupon,Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7200,Flexible_String,Elastic Band,3,380,,10,,,,,,,,,,,,,{},{},{}
-7201,Log,Log,3,250,,10,,,,,,,,,,,,,{},{},{}
-7202,Beetle_Nipper,Pincher of Beetle,3,290,,10,,,,,,,,,,,,,{},{},{}
-7203,Solid_Twig,Strong Branch,3,190,,10,,,,,,,,,,,,,{},{},{}
-7204,Gunpowder,Gunpowder,3,320,,10,,,,,,,,,,,,,{},{},{}
-7205,Piece_Of_Black_Cloth,Piece of Black Cloth,3,526,,10,,,,,,,,,,,,,{},{},{}
-7206,Black_Kitty_Doll,Black Cat Doll,3,1440,,10,,,,,,,,,,,,,{},{},{}
-7207,Old_Manteau,Old Manteau,3,1050,,10,,,,,,,,,,,,,{},{},{}
-7208,Rusty_Cleaver,Rusty Kitchen Knife,3,1780,,10,,,,,,,,,,,,,{},{},{}
-7209,Dullahan's_Helm,Helm of Dullahan,3,1350,,10,,,,,,,,,,,,,{},{},{}
-7210,Dullahan_Armor,Armor Piece of Dullahan,3,790,,10,,,,,,,,,,,,,{},{},{}
-7211,Rojerta_Piece,Fragment of Rossata Stone,3,2600,,10,,,,,,,,,,,,,{},{},{}
-7212,Hanging_Doll,Hung Doll,3,1020,,10,,,,,,,,,,,,,{},{},{}
-7213,Needle_Pouch,Needle Packet,3,832,,10,,,,,,,,,,,,,{},{},{}
-7214,Bat_Cage,Bat Cage,3,880,,10,,,,,,,,,,,,,{},{},{}
-7215,Broken_Needle,Broken Needle,3,690,,10,,,,,,,,,,,,,{},{},{}
-7216,Red_Scarf,Red Muffler,3,660,,10,,,,,,,,,,,,,{},{},{}
-7217,Spool,Spool,3,424,,10,,,,,,,,,,,,,{},{},{}
-7218,Rotten_Rope,Decomposed Rope,3,390,,10,,,,,,,,,,,,,{},{},{}
-7219,Striped_Socks,Striped Sock,3,920,,10,,,,,,,,,,,,,{},{},{}
-7220,Ectoplasm,Ectoplasm,3,322,,10,,,,,,,,,,,,,{},{},{}
-7221,Tangled_Chain,Tangled Chains,3,740,,10,,,,,,,,,,,,,{},{},{}
-7222,Tree_Knot,Wooden Gnarl,3,468,,10,,,,,,,,,,,,,{},{},{}
-7223,Distorted_Portrait,Contorted Self-Portrait,3,2032,,10,,,,,,,,,,,,,{},{},{}
-7224,Stone_Of_Intelligence,Stone of Sage,3,0,,10,,,,,,,,,,,,,{},{},{}
-7225,Pumpkin_Bucket,Pumpkin Lantern,3,486,,10,,,,,,,,,,,,,{},{},{}
-7226,Pill,Pellet,3,2,,10,,,,,,,,,,,,,{},{},{}
-7227,TCG_Card,TCG Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7228,Gold_Bullion,Gold Bullion,3,100000,,300,,,,,,,,,,,,,{},{},{}
-7229,Silver_Bullion,Silver Bullion,3,50000,,300,,,,,,,,,,,,,{},{},{}
-7230,White_Gold_Bullion,Platinum Bullion,3,200000,,300,,,,,,,,,,,,,{},{},{}
-7231,Gold_Ore,Gold Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7232,Silver_Ore,Silver Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7233,Mithril_Ore,Mithril Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7234,Soul_Of_Guild,Spirit of Guild,3,0,,10,,,,,,,,,,,,,{},{},{}
-7235,Soul_Of_Courage,Spirit of Charge,3,0,,10,,,,,,,,,,,,,{},{},{}
-7236,Soul_Of_Guard,Spirit of Protection,3,0,,10,,,,,,,,,,,,,{},{},{}
-7237,Soul_Of_Partnership,Spirit of Association,3,0,,10,,,,,,,,,,,,,{},{},{}
-7238,Soul_Of_Correspondence,Spirit of Coordination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7239,Soul_Of_Proceeding,Spirit of Advance,3,0,,10,,,,,,,,,,,,,{},{},{}
-7240,Soul_Of_Confidence,Spirit of Trust,3,0,,10,,,,,,,,,,,,,{},{},{}
-7241,Soul_Of_Agreement,Spirit of Union,3,0,,10,,,,,,,,,,,,,{},{},{}
-7242,Soul_Of_Harmony,Spirit of Combination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7243,Soul_Of_Cooperate,Spirit of Cooperation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7244,Soul_Of_Unity,Spirit of Solidarity,3,0,,10,,,,,,,,,,,,,{},{},{}
-7245,Soul_Of_Friendship,Spirit of Friendship,3,0,,10,,,,,,,,,,,,,{},{},{}
-7246,Soul_Of_Peace,Spirit of Peace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7247,Soul_Of_Spirit,Spirit of Determination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7248,Soul_Of_Honor,Spirit of Honor,3,0,,10,,,,,,,,,,,,,{},{},{}
-7249,Soul_Of_Service,Spirit of Service,3,0,,10,,,,,,,,,,,,,{},{},{}
-7250,Soul_Of_Glory,Spirit of Glory,3,0,,10,,,,,,,,,,,,,{},{},{}
-7251,Soul_Of_Victory,Spirit of Victory,3,0,,10,,,,,,,,,,,,,{},{},{}
-7252,Herb_Medicine,Herbal Medicine,3,0,,10,,,,,,,,,,,,,{},{},{}
-7253,Taeguk_Flag,Golden Korean Flag,3,0,,10,,,,,,,,,,,,,{},{},{}
-7254,Digital_Print_Ticket,Digital Picture Printing Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7255,China_Marble01,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7256,China_Marble02,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7257,China_Marble03,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7258,China_Marble04,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7259,China_Marble05,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7260,China_Marble06,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7261,China_Marble07,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7262,Fan,Folding Fan of Cat Ghost,3,466,,10,,,,,,,,,,,,,{},{},{}
-7263,Cat_Eyed_Stone,Cat's Eye,3,954,,10,,,,,,,,,,,,,{},{},{}
-7264,Dried_Sand,Dry Sand,3,322,,10,,,,,,,,,,,,,{},{},{}
-7265,Dragon_Horn,Dragon Horn,3,544,,10,,,,,,,,,,,,,{},{},{}
-7266,Dragon_Fang,Denture from Dragon Mask,3,436,,10,,,,,,,,,,,,,{},{},{}
-7267,Tiger_Skin_Panties,Tiger Panty,3,298,,10,,,,,,,,,,,,,{},{},{}
-7268,Little_Blacky_Ghost,Little Ghost Doll,3,1210,,10,,,,,,,,,,,,,{},{},{}
-7269,Bib,Pinafore,3,960,,10,,,,,,,,,,,,,{},{},{}
-7270,Milk_Bottle,Nursing Bottle,3,1100,,10,,,,,,,,,,,,,{},{},{}
-7271,Figure,Novice Figure,3,10000,,10,,,,,,,,,,,,,{},{},{}
-7272,Meat_Dumpling_Doll,Rice Ball Doll,3,500,,10,,,,,,,,,,,,,{},{},{}
-7273,Golden_Necklace,RWC Necklace,3,2,,10,,,,,,,,,,,,,{},{},{}
-7274,Ancient_Translator,Translated Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{}
-7275,Ancient_Document,Record of Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{}
-7276,Picture_Letter,Doodled Message,3,0,,0,,,,,,,,,,,,,{},{},{}
-7277,Munak_Doll,Munak Doll,3,8900,,10,,,,,,,,,,,,,{},{},{}
-7278,Wellbeing_Letter,Letter to Wife,3,0,,10,,,,,,,,,,,,,{},{},{}
-7279,Vita500_Lid,Vita500 Lid,3,10,,10,,,,,,,,,,,,,{},{},{}
-7280,Quiz_Ticket01,1st Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7281,Quiz_Ticket02,2nd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7282,Quiz_Ticket03,3rd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7283,Quiz_Ticket04,4th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7284,Quiz_Ticket05,5th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7285,Thread_Skein,Holy Threads,3,2,,10,,,,,,,,,,,,,{},{},{}
-7286,Chilli,Red Chile,3,20,,10,,,,,,,,,,,,,{},{},{}
-7287,Thread_Skein_,Holier Threads,3,2,,10,,,,,,,,,,,,,{},{},{}
-7288,Thai_Ring,Engagement Ring,3,2,,10,,,,,,,,,,,,,{},{},{}
-7289,Olivine,Peridot,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7290,Phlogopite,Phlogopite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7291,Agate,Agate,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7292,Muscovite,Muscovite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7293,Rose_Quartz,Rose Quartz,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7294,Turquoise,Turquoise,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7295,Citrine,Citrin,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7296,Pyroxene,Pyroxene,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7297,Biotite,Biotite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7298,Leaf_Clothes,Fig Leaf,3,538,,10,,,,,,,,,,,,,{},{},{}
-7299,Bamboo_Basket,Straw Basket,3,632,,10,,,,,,,,,,,,,{},{},{}
-7300,Gemstone,Gemstone,3,1420,,10,,,,,,,,,,,,,{},{},{}
-7301,Sword_Accessory,Tassel,3,798,,10,,,,,,,,,,,,,{},{},{}
-7302,KRATHONG,Krathong,3,2,,10,,,,,,,,,,,,,{},{},{}
-7303,Bag_Of_Rice,Straw Rice Bag,3,0,,800,,,,,,,,,,,,,{},{},{}
-7304,Witch's_Spell_Book,Witch's Spell Scroll,3,0,,0,,,,,,,,,,,,,{},{},{}
-7305,Authority_Of_Nine_World,Symbol of the Nine Realms,3,0,,0,,,,,,,,,,,,,{},{},{}
-7306,Fragment_Of_Soul,Piece of Spirit,3,0,,0,,,,,,,,,,,,,{},{},{}
-7307,Whisper_Of_Soul,Spiritual Whispers,3,0,,0,,,,,,,,,,,,,{},{},{}
-7308,Witch's_Potion,Witch's Tonic,3,0,,0,,,,,,,,,,,,,{},{},{}
-7309,Wing_Of_Crow,Crow Wing,3,0,,0,,,,,,,,,,,,,{},{},{}
-7310,Free_Peco_Ticket,Free Ticket for Peco Ride,3,20,,10,,,,,,,,,,,,,{},{},{}
-7311,Free_Flying_Ship_Ticket,Free Ticket for Flyship,3,20,,10,,,,,,,,,,,,,{},{},{}
-7312,Jubilee,Jubilee,3,32,,10,,,,,,,,,,,,,{},{},{}
-7313,Seal_Of_Witch,Witch's Medal,3,2,,0,,,,,,,,,,,,,{},{},{}
-7314,The_Sign,The Sign,3,2,,0,,,,,,,,,,,,,{},{},{}
-7315,Dark_Crystal_Fragment,Dark Crystal Fragment,3,422,,10,,,,,,,,,,,,,{},{},{}
-7316,Long_Limb,Insect Leg,3,658,,10,,,,,,,,,,,,,{},{},{}
-7317,Screw,Rusty Screw,3,534,,10,,,,,,,,,,,,,{},{},{}
-7318,Old_Pick,Old Pick,3,512,,10,,,,,,,,,,,,,{},{},{}
-7319,Old_Steel_Plate,Used Iron Plate,3,1024,,10,,,,,,,,,,,,,{},{},{}
-7320,Air_Pollutant,Dust Pollutant,3,256,,10,,,,,,,,,,,,,{},{},{}
-7321,Fragment_Of_Crystal,Crystal Fragment,3,552,,10,,,,,,,,,,,,,{},{},{}
-7322,Poisonous_Gas,Toxic Gas,3,666,,10,,,,,,,,,,,,,{},{},{}
-7323,Battered_Kettle,Battered Kettle,3,256,,10,,,,,,,,,,,,,{},{},{}
-7325,Tube,Flexible Tube,3,102,,10,,,,,,,,,,,,,{},{},{}
-7326,Fluorescent_Liquid,Fluorescent Liquid,3,712,,10,,,,,,,,,,,,,{},{},{}
-7327,Headlamp,Flashlight,3,1024,,10,,,,,,,,,,,,,{},{},{}
-7328,Legendary_Scroll,Legend of Songkran,3,0,,10,,,,,,,,,,,,,{},{},{}
-7329,Old_Copper_Key,Old Bronze Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7330,2anny,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7331,Flower_Of_Heaven,Heaven Flower,3,500,,10,,,,,,,,,,,,,{},{},{}
-7332,Slate,Complete Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7333,Piece_Of_Slate_1,Prontera Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7334,Piece_Of_Slate_2,Payon Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7335,Piece_Of_Slate_3,Morocc Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7336,Piece_Of_Slate_4,Geffen Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7337,Eye_Of_Hellion,Eye of Hellion,3,0,,0,,,,,,,,,,,,,{},{},{}
-7338,RO_Transportation_Card,One-way Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7339,RO_Transportation_Card_,Commemorative Travel Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-7340,Will_Of_Darkness,Will of the Darkness,3,734,,50,,,,,,,,,,,,,{},{},{}
-7341,Worn_Out_Pendant,Old Pendant,3,20,,0,,,,,,,,,,,,,{},{},{}
-7342,File01,File Folder,3,20,,0,,,,,,,,,,,,,{},{},{}
-7343,File02,Sealed File Folder,3,20,,0,,,,,,,,,,,,,{},{},{}
-7344,File03,Shinokas Case File,3,20,,0,,,,,,,,,,,,,{},{},{}
-7345,Armlet_Of_Prisoner,Handcuffs,3,724,,10,,,,,,,,,,,,,{},{},{}
-7346,Pile_Of_Ymir_Heart,Ymir's Heart Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-7347,Lab_Staff_Record,Research Chart,3,840,,10,,,,,,,,,,,,,{},{},{}
-7348,Indication_Of_Member01,Membership Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-7349,Indication_Of_Member02,Archive Permit,3,20,,0,,,,,,,,,,,,,{},{},{}
-7350,Pass,Pass,3,20,,10,,,,,,,,,,,,,{},{},{}
-7351,Friend's_Diary,Friend's Diary,3,20,,0,,,,,,,,,,,,,{},{},{}
-7352,Transparent_Plate01,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7353,Transparent_Plate02,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7354,Transparent_Plate03,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7355,Transparent_Plate04,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7356,Piece_Of_Crest1,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7357,Piece_Of_Crest2,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7358,Piece_Of_Crest3,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7359,Piece_Of_Crest4,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7360,RO_Festival_Ticket,RO Festival Invitation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7361,Lotto01,Lotto Ball 01,3,0,,10,,,,,,,,,,,,,{},{},{}
-7362,Lotto02,Lotto Ball 02,3,0,,10,,,,,,,,,,,,,{},{},{}
-7363,Lotto03,Lotto Ball 03,3,0,,10,,,,,,,,,,,,,{},{},{}
-7364,Lotto04,Lotto Ball 04,3,0,,10,,,,,,,,,,,,,{},{},{}
-7365,Lotto05,Lotto Ball 05,3,0,,10,,,,,,,,,,,,,{},{},{}
-7366,Lotto06,Lotto Ball 06,3,0,,10,,,,,,,,,,,,,{},{},{}
-7367,Lotto07,Lotto Ball 07,3,0,,10,,,,,,,,,,,,,{},{},{}
-7368,Lotto08,Lotto Ball 08,3,0,,10,,,,,,,,,,,,,{},{},{}
-7369,Lotto09,Lotto Ball 09,3,0,,10,,,,,,,,,,,,,{},{},{}
-7370,Lotto10,Lotto Ball 10,3,0,,10,,,,,,,,,,,,,{},{},{}
-7371,Lotto11,Lotto Ball 11,3,0,,10,,,,,,,,,,,,,{},{},{}
-7372,Lotto12,Lotto Ball 12,3,0,,10,,,,,,,,,,,,,{},{},{}
-7373,Lotto13,Lotto Ball 13,3,0,,10,,,,,,,,,,,,,{},{},{}
-7374,Lotto14,Lotto Ball 14,3,0,,10,,,,,,,,,,,,,{},{},{}
-7375,Lotto15,Lotto Ball 15,3,0,,10,,,,,,,,,,,,,{},{},{}
-7376,Lotto16,Lotto Ball 16,3,0,,10,,,,,,,,,,,,,{},{},{}
-7377,Lotto17,Lotto Ball 17,3,0,,10,,,,,,,,,,,,,{},{},{}
-7378,Lotto18,Lotto Ball 18,3,0,,10,,,,,,,,,,,,,{},{},{}
-7379,Lotto19,Lotto Ball 19,3,0,,10,,,,,,,,,,,,,{},{},{}
-7380,Lotto20,Lotto Ball 20,3,0,,10,,,,,,,,,,,,,{},{},{}
-7381,Lotto21,Lotto Ball 21,3,0,,10,,,,,,,,,,,,,{},{},{}
-7382,Lotto22,Lotto Ball 22,3,0,,10,,,,,,,,,,,,,{},{},{}
-7383,Lotto23,Lotto Ball 23,3,0,,10,,,,,,,,,,,,,{},{},{}
-7384,Lotto24,Lotto Ball 24,3,0,,10,,,,,,,,,,,,,{},{},{}
-7385,Lotto25,Lotto Ball 25,3,0,,10,,,,,,,,,,,,,{},{},{}
-7386,Lotto26,Lotto Ball 26,3,0,,10,,,,,,,,,,,,,{},{},{}
-7387,Lotto27,Lotto Ball 27,3,0,,10,,,,,,,,,,,,,{},{},{}
-7388,Lotto28,Lotto Ball 28,3,0,,10,,,,,,,,,,,,,{},{},{}
-7389,Lotto29,Lotto Ball 29,3,0,,10,,,,,,,,,,,,,{},{},{}
-7390,Lotto30,Lotto Ball 30,3,0,,10,,,,,,,,,,,,,{},{},{}
-7391,Lotto31,Lotto Ball 31,3,0,,10,,,,,,,,,,,,,{},{},{}
-7392,Lotto32,Lotto Ball 32,3,0,,10,,,,,,,,,,,,,{},{},{}
-7393,Lotto33,Lotto Ball 33,3,0,,10,,,,,,,,,,,,,{},{},{}
-7394,Lotto34,Lotto Ball 34,3,0,,10,,,,,,,,,,,,,{},{},{}
-7395,Lotto35,Lotto Ball 35,3,0,,10,,,,,,,,,,,,,{},{},{}
-7396,Lotto36,Lotto Ball 36,3,0,,10,,,,,,,,,,,,,{},{},{}
-7397,Lotto37,Lotto Ball 37,3,0,,10,,,,,,,,,,,,,{},{},{}
-7398,Lotto38,Lotto Ball 38,3,0,,10,,,,,,,,,,,,,{},{},{}
-7399,Word_Card01,Selamat,3,2,,10,,,,,,,,,,,,,{},{},{}
-7400,Word_Card02,Hari,3,2,,10,,,,,,,,,,,,,{},{},{}
-7401,Word_Card03,Kemerdekaan,3,2,,10,,,,,,,,,,,,,{},{},{}
-7402,Word_Card04,Republik,3,2,,10,,,,,,,,,,,,,{},{},{}
-7403,Word_Card05,Indonesia,3,2,,10,,,,,,,,,,,,,{},{},{}
-7404,Word_Card06,Ke-60,3,2,,10,,,,,,,,,,,,,{},{},{}
-7405,Crushed_Can,Crushed Can,3,2,,10,,,,,,,,,,,,,{},{},{}
-7406,Moon_Cake1,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7407,Moon_Cake2,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7408,Moon_Cake3,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7409,Moon_Cake4,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7410,Moon_Cake5,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7411,Moon_Cake6,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7412,Moon_Cake7,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7413,Moon_Cake8,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7414,Moon_Cake9,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7415,Stone_Of_Summons,Summoning Stone,3,2,,10,,,,,,,,,,,,,{},{},{}
-7416,Letter_Of_Recommend,Letter of Recommendation,3,0,,0,,,,,,,,,,,,,{},{},{}
-7417,Mission_ScrollA,Written Request(A),3,0,,0,,,,,,,,,,,,,{},{},{}
-7418,Mission_ScrollB,Written Request(B),3,0,,0,,,,,,,,,,,,,{},{},{}
-7419,Embryo_HandBook,Embryo Creation Guide,3,48000,,10,,,,,,,,,,,,,{},{},{}
-7420,Skull_,Skull,3,0,,0,,,,,,,,,,,,,{},{},{}
-7421,Key_Red,Red Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7422,Key_Yellow,Yellow Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7423,Key_Blue,Blue Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7424,Key_Green,Green Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7425,Key_Black,Black Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7426,Magic_Gem_Red,Red Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7427,Magic_Gem_Yellow,Yellow Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7428,Magic_Gem_Blue,Blue Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7429,Magic_Gem_Green,Green Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7430,Magic_Gem_Black,Black Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7431,Several_Books,Pile of Books,3,0,,0,,,,,,,,,,,,,{},{},{}
-7432,Leather_Pouch,Leather Pouch,3,0,,0,,,,,,,,,,,,,{},{},{}
-7433,Scroll,Blank Scroll,3,4000,,10,,,,,,,,,,,,,{},{},{}
-7434,Elemental_Potion_Book,Elemental Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7435,Golden_Bracelet,Golden Ornament,3,1907,,10,,,,,,,,,,,,,{},{},{}
-7436,Piece_Of_Memory_Green,Fragment of Agony,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7437,Piece_Of_Memory_Purple,Fragment of Misery,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7438,Piece_Of_Memory_Blue,Fragment of Hatred,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7439,Piece_Of_Memory_Red,Fragment of Despair,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7440,Red_Feather,Red Feather,3,1335,,10,,,,,,,,,,,,,{},{},{}
-7441,Blue_Feather,Blue Feather,3,1408,,10,,,,,,,,,,,,,{},{},{}
-7442,Cursed_Seal,Cursed Seal,3,1332,,10,,,,,,,,,,,,,{},{},{}
-7443,Tri_Headed_Dragon_Head,Three-Headed Dragon's Head,3,956,,10,,,,,,,,,,,,,{},{},{}
-7444,Treasure_Box,Treasure Box,3,300000,,10,,,,,,,,,,,,,{},{},{}
-7445,Dragonball_Green,Green Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7446,Dragonball_Blue,Blue Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7447,Dragonball_Red,Red Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7448,Dragonball_Yellow,Yellow Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7449,Bloody_Page,Bloody Page,3,681,,10,,,,,,,,,,,,,{},{},{}
-7450,Piece_Of_Bone_Armor,Skeletal Armor Piece,3,2050,,10,,,,,,,,,,,,,{},{},{}
-7451,Scale_Of_Red_Dragon,Fire Dragon Scale,3,1852,,10,,,,,,,,,,,,,{},{},{}
-7452,Yellow_Spice,Yellow Spice,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7453,Sweet_Sauce,Sweet Sauce,3,700,,10,,,,,,,,,,,,,{},{},{}
-7454,Plain_Sauce,Savory Sauce,3,700,,10,,,,,,,,,,,,,{},{},{}
-7455,Hot_Sauce,Spicy Sauce,3,700,,10,,,,,,,,,,,,,{},{},{}
-7456,Red_Spice,Red Spice,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7457,Cooking_Oil,Cooking Oil,3,500,,10,,,,,,,,,,,,,{},{},{}
-7458,Baphomet's_Horn,Fortune Horn,3,2,,10,,,,,,,,,,,,,{},{},{}
-7459,RAMADAN_,Idul Fitri Card,3,2,,10,,,,,,,,,,,,,{},{},{}
-7460,Niflheim_Ticket,Niflheim Express Ticket,3,2,,10,,,,,,,,,,,,,{},{},{}
-7461,BlueCard_A,Blue A Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7462,BlueCard_E,Blue E Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7463,BlueCard_F,Blue F Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7464,BlueCard_H,Blue H Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7465,BlueCard_L,Blue L Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7466,BlueCard_N,Blue N Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7467,BlueCard_O,Blue O Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7468,BlueCard_P,Blue P Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7469,BlueCard_U,Blue U Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7470,BlueCard_W,Blue W Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7471,BlueCard_Y,Blue Y Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7472,Cookbook01,Level 1 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7473,Cookbook02,Level 2 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7474,Cookbook03,Level 3 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7475,Cookbook04,Level 4 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7476,Cookbook05,Level 5 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7477,Cookbook06,Level 6 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7478,Cookbook07,Level 7 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7479,Cookbook08,Level 8 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7480,Cookbook09,Level 9 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7481,Cookbook10,Level 10 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7482,Pot,Pot,3,200,,10,,,,,,,,,,,,,{},{},{}
-7483,Key_Of_Seal,Key of the Seal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7484,Warrior_Symbol,Symbol of a Brave Warrior,3,0,,10,,,,,,,,,,,,,{},{},{}
-7485,2nd_Floor_Pass,Cloud General,3,0,,10,,,,,,,,,,,,,{},{},{}
-7486,3rd_Floor_Pass,Wind General,3,0,,10,,,,,,,,,,,,,{},{},{}
-7487,Tavern_Wine,Culinary Wine,3,0,,0,,,,,,,,,,,,,{},{},{}
-7488,Delivery_Box,Delivery Package,3,0,,0,,,,,,,,,,,,,{},{},{}
-7489,Villa_Spare_Key,Cottage Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7490,Kyll_Hire_Letter,Letter to Elly,3,0,,0,,,,,,,,,,,,,{},{},{}
-7491,Iron_Box,Steel Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-7492,Yellow_Key_Card,Yellow Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7493,Golden_Key,Golden Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7494,Kiel_Button,Luxurious Button,3,0,,0,,,,,,,,,,,,,{},{},{}
-7495,Blue_Key_Card,Blue Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7496,Red_Key_Card,Red Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7497,Steel_Piece,Metal Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-7498,Rosimier_Key,Rosimier Mansion Keys,3,0,,0,,,,,,,,,,,,,{},{},{}
-7499,Family_Portrait,Family Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7500,Elysia_Portrait,Woman's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7501,Kyll_Hire_Letter2,K.H's Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7502,Piece_Memo_Of_James,James's Note,3,0,,0,,,,,,,,,,,,,{},{},{}
-7503,Man_Portrait,Man's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7504,Toy_Motor,Power Device,3,0,,0,,,,,,,,,,,,,{},{},{}
-7505,Toy_Key,Toy Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7506,Black_Key_Card,Black Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7507,Sturdy_Iron_Piece,Solid Iron Piece,3,842,,10,,,,,,,,,,,,,{},{},{}
-7508,Elysia_Ring,Allysia's Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7509,Fancy_Key_Card,Luxurious Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7510,Valhalla_Flower,Valhalla's Flower,3,200000,,10,,,,,,,,,,,,,{},{},{}
-7511,Rune_Of_Darkness,Rune of Darkness,3,2526,,10,,,,,,,,,,,,,{},{},{}
-7512,Burnt_Parts,Burnt Part,3,1600,,10,,,,,,,,,,,,,{},{},{}
-7513,Pocket_Watch,Pocket Watch,3,3420,,10,,,,,,,,,,,,,{},{},{}
-7514,Monster_Ticket,Monster Ticket,3,2,,0,,,,,,,,,,,,,{},{},{}
-7515,Marvelous_Medal,Prize Medal,3,2,,0,,,,,,,,,,,,,{},{},{}
-7516,Green_Key_Card,Green Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7517,Gold_Coin_,Gold Coin,3,1000,,100,,,,,,,,,,,,,{},{},{}
-7518,Women's_Medal,Women's Medal,3,0,,10,,,,,,,,,,,,,{},{},{}
-7519,Money_Envelope,Handsel,3,0,,10,,,,,,,,,,,,,{},{},{}
-7520,Chinese_Scroll,Please Be Rich,3,0,,10,,,,,,,,,,,,,{},{},{}
-7521,Flame_Stone,Flame Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7522,Ice_Stone,Ice Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7523,Wind_Stone,Wind Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7524,Shadow_Orb,Shadow Orb,3,300,,20,,,,,,,,,,,,,{},{},{}
-7525,Summer_Feast_Ticket,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7526,Manuscript_Paper,Manuscript Paper,3,2,,0,,,,,,,,,,,,,{},{},{}
-7527,Life_Book,Book About True Life,3,0,,100,,,,,,,,,,,,,{},{},{}
-7528,Id_Lottery_Ticket,Lottery Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7529,Stolen_Sandals,Stolen Sandal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7530,Travel_Brochure_01,Travel Brochure [Amatsu],3,0,,0,,,,,,,,,,,,,{},{},{}
-7531,Travel_Brochure_02,Travel Brochure [Kunlun],3,0,,0,,,,,,,,,,,,,{},{},{}
-7532,Travel_Brochure_03,Travel Brochure [Luoyang],3,0,,0,,,,,,,,,,,,,{},{},{}
-7533,Travel_Brochure_04,Travel Brochure [Ayothaya],3,0,,0,,,,,,,,,,,,,{},{},{}
-7534,Photo_Album_01,Amatsu Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7535,Photo_Album_02,Kunlun Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7536,Photo_Album_03,Luoyang Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7537,Photo_Album_04,Ayothaya Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7538,Sifted_Sand,Sand for Work,3,0,,0,,,,,,,,,,,,,{},{},{}
-7539,Poring_Coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7540,Lotto39,Lotto Ball 39,3,0,,10,,,,,,,,,,,,,{},{},{}
-7541,Lotto40,Lotto Ball 40,3,0,,10,,,,,,,,,,,,,{},{},{}
-7542,Lotto41,Lotto Ball 41,3,0,,10,,,,,,,,,,,,,{},{},{}
-7543,Lotto42,Lotto Ball 42,3,0,,10,,,,,,,,,,,,,{},{},{}
-7544,Lotto43,Lotto Ball 43,3,0,,10,,,,,,,,,,,,,{},{},{}
-7545,Lotto44,Lotto Ball 44,3,0,,10,,,,,,,,,,,,,{},{},{}
-7546,Lotto45,Lotto Ball 45,3,0,,10,,,,,,,,,,,,,{},{},{}
-7547,Soccer_Ball,Soccer Ball,3,20,,10,,,,,,,,,,,,,{},{},{}
-7548,Soccer_Shoes,Soccer Shoes,3,20,,10,,,,,,,,,,,,,{},{},{}
-7549,Brazilian_Flag,Brazilian Flag,3,20,,10,,,,,,,,,,,,,{},{},{}
-7550,Ticket01,6.13 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7551,Ticket02,6.18 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7552,Ticket03,6.22 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7553,Lotus_Flower,Lotus Flower,3,0,,0,,,,,,,,,,,,,{},{},{}
-7554,Striped_Candle,Striped Candle,3,0,,0,,,,,,,,,,,,,{},{},{}
-7555,Green_Incense,Green Incense,3,0,,0,,,,,,,,,,,,,{},{},{}
-7556,Longing_Heart,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{}
-7557,Invitation_Letter,Invitation Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7558,Invitation_Ticket,Invitation Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7559,Key_Of_Flower_Garden,Key to the Secret Garden,3,0,,0,,,,,,,,,,,,,{},{},{}
-7560,Longing_Heart2,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{}
-7561,Ice_Heart,Glacial Heart,3,606,,10,,,,,,,,,,,,,{},{},{}
-7562,Ice_Scale,Ice Scale,3,3020,,10,,,,,,,,,,,,,{},{},{}
-7563,Bloody_Rune,Bloody Rune,3,2016,,10,,,,,,,,,,,,,{},{},{}
-7564,Rotten_Meat,Rotten Meat,3,102,,10,,,,,,,,,,,,,{},{},{}
-7565,Sticky_Poison,Sticky Poison,3,350,,10,,,,,,,,,,,,,{},{},{}
-7566,Will_Of_Darkness_,Will of Red Darkness,3,1530,,10,,,,,,,,,,,,,{},{},{}
-7567,Suspicious_Hat,Suspicious Hat,3,1290,,10,,,,,,,,,,,,,{},{},{}
-7568,White_Mask,White Mask,3,1060,,10,,,,,,,,,,,,,{},{},{}
-7569,Hammer_Of_Wind,Wind Hammer,3,0,,0,,,,,,,,,,,,,{},{},{}
-7570,Temple_Lottery_Ticket,Temple Lottery Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7571,Diary_Of_Blue,Bruspetti's Diary,3,0,,0,,,,,,,,,,,,,{},{},{}
-7572,Magic_Necklace,Ashy Necklace,3,0,,0,,,,,,,,,,,,,{},{},{}
-7573,Magic_Necklace_,Sparkling Necklace,3,0,,0,,,,,,,,,,,,,{},{},{}
-7574,Ice_Particle,Freezing Snow Powder,3,0,,0,,,,,,,,,,,,,{},{},{}
-7575,Red_Jewel_,Red Jewel,3,20,,0,,,,,,,,,,,,,{},{},{}
-7576,Blue_Jewel_,Blue Jewel,3,20,,0,,,,,,,,,,,,,{},{},{}
-7577,Golden_Jewel_,Yellow Jewel,3,20,,50,,,,,,,,,,,,,{},{},{}
-7578,Anti_Spell_Bead,Countermagic Crystal,3,20,,10,,,,,,,,,,,,,{},{},{}
-7579,Silk_Handkerchief,Silk Handkerchief of Zhi Nu,3,20,,10,,,,,,,,,,,,,{},{},{}
-7580,Black_Bead,Black Marble,3,20,,10,,,,,,,,,,,,,{},{},{}
-7581,Anniversary_Ticket,Celebration Document,3,20,,10,,,,,,,,,,,,,{},{},{}
-7582,Gem_Of_Ruin,Jewel of Destruction,3,10,,10,,,,,,,,,,,,,{},{},{}
-7583,Evil_Mind,Evil Mind,3,10,,10,,,,,,,,,,,,,{},{},{}
-7584,Proof_Of_Guard1,Guard's First Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7585,Proof_Of_Guard2,Guard's Second Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7586,Proof_Of_Guard3,Guard's Third Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7587,Proof_Of_Guard4,Guard's Fourth Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7588,IPOD_Ticker,IPOD Coupon,3,10,,10,,,,,,,,,,,,,{},{},{}
-7589,Moon_Cake10,Lettered Moon Snack 01,3,20,,10,,,,,,,,,,,,,{},{},{}
-7590,Moon_Cake11,Lettered Moon Snack 02,3,20,,10,,,,,,,,,,,,,{},{},{}
-7591,Moon_Cake12,Lettered Moon Snack 03,3,20,,10,,,,,,,,,,,,,{},{},{}
-7592,Moon_Cake13,Lettered Moon Snack 04,3,20,,10,,,,,,,,,,,,,{},{},{}
-7593,Moon_Cake14,Lettered Moon Snack 05,3,20,,10,,,,,,,,,,,,,{},{},{}
-7594,Sonia's_Letter,Sonia's Letter,3,20,,10,,,,,,,,,,,,,{},{},{}
-7595,Unique_Sword,Special Sword,3,20,,10,,,,,,,,,,,,,{},{},{}
-7596,Unique_Shield,Special Shield,3,20,,10,,,,,,,,,,,,,{},{},{}
-7597,Magic_Stone,Magic Stone,3,20,,10,,,,,,,,,,,,,{},{},{}
-//7598,BlueCard_I,Blue I Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7599,BlueCard_D,Blue D Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7600,BlueCard_K,Blue K Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7601,BlueCard_S,Blue S Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7602,BlueCard_R,Blue R Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7603,RO_Party_Ticket,RO Party Invitation Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7604,Flour,Flour,3,0,,10,,,,,,,,,,,,,{},{},{}
-7605,Chicken_Egg,Chicken Egg,3,0,,10,,,,,,,,,,,,,{},{},{}
-7606,Coin,Token of the Ox,3,0,,10,,,,,,,,,,,,,{},{},{}
-7607,Evil_Dragon_Head,Neck of Demon Dragon,3,10,,10,,,,,,,,,,,,,{},{},{}
-7608,Premium_Ticket,Premium Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7609,Pumpkin_Mojo,Pumpkin Mojo,3,0,,10,,,,,,,,,,,,,{},{},{}
-7610,Food_Ticket,Food Exchange Ticket,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7611,Fox_Symbol,Symbol of Fox,3,20,,10,,,,,,,,,,,,,{},{},{}
-7612,Heart_Of_Fox_Queen,Heart of Queen Fox,3,2,,10,,,,,,,,,,,,,{},{},{}
-7613,Small_Rice_Dough,Small Rice Cake Dough,3,0,,0,,,,,,,,,,,,,{},{},{}
-7614,Special_Packing_Paper,Wrapping Paper,3,10,,10,,,,,,,,,,,,,{},{},{}
-7615,MVP_Ticket,MVP Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7616,Mini_Boss_Ticket,Miniboss Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7617,Monster_Ticket_,Monster Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7618,Monster_Crystal,Monster Crystal,3,2,,100,,,,,,,,,,,,,{},{},{}
-7619,Enriched_Elunium,Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-7620,Enriched_Oridecon,Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-7621,Token_Of_Siegfried,Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-7622,New_Style_Coupon,Hairstyle Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7623,Name_Change_Coupon,Ticket Of Identification,3,2,,0,,,,,,,,,,,,,{},{},{}
-7624,Spring_Stanza23,Spring Stanza23,3,2,,10,,,,,,,,,,,,,{},{},{}
-7625,Registration_Ticket,Registration Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7626,Bubble_Gum_Token,Bubble Gum Token,3,10,,10,,,,,,,,,,,,,{},{},{}
-7627,Sage_Key,Sage Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7628,Idiot_Key,Idiot Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7629,Pink_Gift_Box,Pink Gift Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-7630,Clean_Beach_Brush,Clean Beach Brush,3,0,,0,,,,,,,,,,,,,{},{},{}
-7631,Trash_Debris,Trash Debris,3,0,,0,,,,,,,,,,,,,{},{},{}
-7635,Sachet,Sachet,3,100,,0,,,,,,,,,,,,,{},{},{}
-//
-7701,Dragon_Spirit,Soul,3,2,,10,,,,,,,,,,,,,{},{},{}
-7702,Special_Cogwheel,Special Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{}
-7703,Piece_Of_Cogwheel,Piece of Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{}
-7704,Broken_Thermometer,Broken Thermometer,3,2,,0,,,,,,,,,,,,,{},{},{}
-7705,Note_Of_Geologist,Note of Geologist,3,2,,0,,,,,,,,,,,,,{},{},{}
-7706,Spoiled_Carrot_Juice,Broken Carrot Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7707,Spoiled_Banana_Juice,Broken Banana Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7708,Spoiled_Apple_Juice,Broken Apple Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7709,Spoiled_Grape_Juice,Broken Grape Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7710,Black_Gemstone,Black Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-7711,Update_Ticket,Event Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7712,Nokia5500,Nokia 5500,3,0,,10,,,,,,,,,,,,,{},{},{}
-7713,BlueCard_A_,Blue A(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7714,BlueCard_R_,Blue R(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7715,Handmade_Choco_Recipe,Handmade Chocolate Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7716,Strawberry_Choco_Recipe,Chocolate Strawberry Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7717,Choco_Tart_Recipe,Chocolate Tart Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7718,Cacao_Bean,Cacao Bean,3,0,,10,,,,,,,,,,,,,{},{},{}
-7719,BlueCard_G,Blue G Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7720,Gold_Coin_US,Gold Coin,3,100,,10,,,,,,,,,,,,,{},{},{}
-7721,Treasure_Box_,Treasure Box,3,100,,500,,,,,,,,,,,,,{},{},{}
-7722,Debt_Note,Debt Note,3,20,,0,,,,,,,,,,,,,{},{},{}
-7723,Diamond_Of_Ruin,Diamond of Ruin,3,20,,0,,,,,,,,,,,,,{},{},{}
-7724,Forbidden_Secret_Art,Forbidden Secret Art,3,20,,0,,,,,,,,,,,,,{},{},{}
-7725,Unlucky_Emerald,Unlucky Emerald,3,20,,0,,,,,,,,,,,,,{},{},{}
-7726,Token_Of_King,Token of King,3,20,,0,,,,,,,,,,,,,{},{},{}
-7727,HP_Doctor_Ticket,HP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7728,SP_Doctor_Ticket,SP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7729,Rok_Star_Badge,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{}
-7730,Mission_Certificate1,Mission Ticket 1,3,0,,10,,,,,,,,,,,,,{},{},{}
-7731,Mission_Certificate2,Mission Ticket 2,3,0,,10,,,,,,,,,,,,,{},{},{}
-7732,Mission_Certificate3,Mission Ticket 3,3,0,,10,,,,,,,,,,,,,{},{},{}
-7733,Mission_Certificate4,Mission Ticket 4,3,0,,10,,,,,,,,,,,,,{},{},{}
-7734,Mission_Certificate5,Mission Ticket 5,3,0,,10,,,,,,,,,,,,,{},{},{}
-7735,Mission_Certificate6,Mission Ticket 6,3,0,,10,,,,,,,,,,,,,{},{},{}
-7736,Mission_Certificate7,Mission Ticket 7,3,0,,10,,,,,,,,,,,,,{},{},{}
-7737,Mission_Certificate8,Mission Ticket 8,3,0,,10,,,,,,,,,,,,,{},{},{}
-7738,Mission_Certificate9,Mission Ticket 9,3,0,,10,,,,,,,,,,,,,{},{},{}
-7739,Mission_Certificate10,Mission Ticket 10,3,0,,10,,,,,,,,,,,,,{},{},{}
-7740,Mission_Certificate11,Mission Ticket 11,3,0,,10,,,,,,,,,,,,,{},{},{}
-7741,Mission_Certificate12,Mission Ticket 12,3,0,,10,,,,,,,,,,,,,{},{},{}
-7742,Kaong,Kaong,3,2,,10,,,,,,,,,,,,,{},{},{}
-7743,Gulaman,Gulaman,3,2,,10,,,,,,,,,,,,,{},{},{}
-7744,Leche_Flan,Leche Flan,3,2,,10,,,,,,,,,,,,,{},{},{}
-7745,Ube_Jam,Ube Jam,3,2,,10,,,,,,,,,,,,,{},{},{}
-7746,Sago,Sago,3,2,,10,,,,,,,,,,,,,{},{},{}
-7747,Langka,Langka,3,2,,10,,,,,,,,,,,,,{},{},{}
-7748,Sweet_Bean,Sweet Beans,3,2,,10,,,,,,,,,,,,,{},{},{}
-7749,Sweet_Banana,Sweet Bananas,3,2,,10,,,,,,,,,,,,,{},{},{}
-7750,Macapuno,Macapuno,3,2,,10,,,,,,,,,,,,,{},{},{}
-7751,Old_White_Cloth,Old White Cloth,3,550,,10,,,,,,,,,,,,,{},{},{}
-7752,Clattering_Skull,Clattering Skull,3,840,,10,,,,,,,,,,,,,{},{},{}
-7753,Broken_Farming_Utensil,Broken Farming Utensil,3,330,,10,,,,,,,,,,,,,{},{},{}
-7754,Broken_Crown,Broken Crown,3,3000,,10,,,,,,,,,,,,,{},{},{}
-7755,Research_Note,Research Note,3,20,,0,,,,,,,,,,,,,{},{},{}
-7756,Sealed_Book,Sealed Book,3,2000,,10,,,,,,,,,,,,,{},{},{}
-7757,Mithril,Mithril,3,20,,100,,,,,,,,,,,,,{},{},{}
-7758,Star_Crystal,Star Crystal,3,20,,100,,,,,,,,,,,,,{},{},{}
-7759,Geology_Report,Geologist's Report,3,20,,0,,,,,,,,,,,,,{},{},{}
-7760,Yaga_Magic_Book,Yaga's Magic Book,3,20,,10,,,,,,,,,,,,,{},{},{}
-7761,Magic_Gourd_Bottle,Magic Gourd Bottle,3,20,,10,,,,,,,,,,,,,{},{},{}
-7762,Yaga_Pestle,Yaga's Pestle,3,20,,10,,,,,,,,,,,,,{},{},{}
-7763,Sticky_Herb,Sticky Herb,3,20,,10,,,,,,,,,,,,,{},{},{}
-7764,High_Strength_Adhesive,High Strength Adhesive,3,20,,10,,,,,,,,,,,,,{},{},{}
-7765,Yaga_Secret_Medicine,Baba Yaga's Secret Medicine,3,20,,10,,,,,,,,,,,,,{},{},{}
-7766,Bok_Choy,Bok Choy,3,20,,10,,,,,,,,,,,,,{},{},{}
-7767,Chung_E_Cake,Green Maiden's Cake,3,20,,10,,,,,,,,,,,,,{},{},{}
-7768,Squid,Squid,3,0,,10,,,,,,,,,,,,,{},{},{}
-7769,Egg_Yolk,Egg Yolk,3,0,,10,,,,,,,,,,,,,{},{},{}
-7770,Sweet_Rice,Sweet Rice,3,0,,10,,,,,,,,,,,,,{},{},{}
-7771,Lotus_Leaf,Lotus Leaf,3,0,,10,,,,,,,,,,,,,{},{},{}
-7772,String,String,3,0,,10,,,,,,,,,,,,,{},{},{}
-7773,War_Badge,Wat Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7774,Chung_E_Ticket,Green Maiden Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7775,Spring_Rabbit_Ticket,Spring Rabbit Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7776,Max_Weight_Up_Scroll,Gym Pass,3,0,,10,,,,,,,,,,,,,{},{},{}
-7777,Gold_Box,Sealed Golden Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7778,Silver_Box,Sealed Silver Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7779,Gold_Key_TW,Golden Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7780,Silver_Key,Silver Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7781,Heart_Box,Engrave Treasure Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7782,Gold_Key77,Episode 13.1 Poporing Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7783,Silver_Key77,Episode 13.2 Poring Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7784,Fawner_Coupon1,Free Coupon 1,3,0,,10,,,,,,,,,,,,,{},{},{}
-7785,Fawner_Coupon2,Free Coupon 2,3,0,,10,,,,,,,,,,,,,{},{},{}
-7786,Fawner_Coupon3,Free Coupon 3,3,0,,10,,,,,,,,,,,,,{},{},{}
-7787,Fawner_Coupon4,Free Coupon 4,3,0,,10,,,,,,,,,,,,,{},{},{}
-7788,Fawner_Coupon5,Free Coupon 5,3,0,,10,,,,,,,,,,,,,{},{},{}
-7789,Fawner_Coupon6,Free Coupon 6,3,0,,10,,,,,,,,,,,,,{},{},{}
-7790,Fawner_Coupon7,Free Coupon 7,3,0,,10,,,,,,,,,,,,,{},{},{}
-7791,Fawner_Coupon8,Free Coupon 8,3,0,,10,,,,,,,,,,,,,{},{},{}
-7792,Guyak,Guyak,3,0,,10,,,,,,,,,,,,,{},{},{}
-7793,Golden_Apple,Golden Apple,3,0,,0,,,,,,,,,,,,,{},{},{}
-7794,Fate_Of_Crow,The Crow of Destiny,3,0,,0,,,,,,,,,,,,,{},{},{}
-7795,Mami_Photo_Album,Mammi's Photo Album,3,2,,10,,,,,,,,,,,,,{},{},{}
-7796,Author_Autograph,Author's Autograph,3,2,,10,,,,,,,,,,,,,{},{},{}
-7797,Author_Memo,Author's Memo,3,2,,10,,,,,,,,,,,,,{},{},{}
-7798,Dark_Debris,Fragment of Darkness,3,500,,10,,,,,,,,,,,,,{},{},{}
-7799,Dark_Crystal,Crystal of Darkness,3,10,,10,,,,,,,,,,,,,{},{},{}
-7800,Golden_Apple_,Golden Charm Apple,3,0,,0,,,,,,,,,,,,,{},{},{}
-7801,Girl_Fan_Letter,Girl's Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7802,Autograph_Book,Signature Notebook,3,0,,0,,,,,,,,,,,,,{},{},{}
-7803,Battle_Manual_TW,Beginner's Field Manual,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7804,????_???,????_???,3,,,10,,,,,,,,,,,,,{},{},{}
-7805,Brown_Ring,Brown Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7806,Black_Anvil,God Anvil,3,0,,10,,,,,,,,,,,,,{},{},{}
-7807,Ore,God Mineral,3,0,,10,,,,,,,,,,,,,{},{},{}
-7808,Gold_Hammer,God Hammer,3,0,,10,,,,,,,,,,,,,{},{},{}
-7809,Gold_Furnace,God Furnace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7810,Yellow_Cat_Eyed_Stone,Symbol of Richness,3,0,,10,,,,,,,,,,,,,{},{},{}
-7811,Gold_Anvil,Anvil,3,0,,10,,,,,,,,,,,,,{},{},{}
-7812,Red_Cat_Eyed_Stone,Symbol of Bravery,3,0,,10,,,,,,,,,,,,,{},{},{}
-7813,Th_Red_Ring,Red Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7814,Green_Ring,Green Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7815,Blue_Ring,Blue Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7816,Blue_Cat_Eyed_Stone,Symbol of Faith,3,0,,10,,,,,,,,,,,,,{},{},{}
-7817,White_Cat_Eyed_Stone,Symbol of Peace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7818,RJC_Golden_Necklace,Jessur's Necklace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7819,Nokia5300,Nokia 5300,3,0,,10,,,,,,,,,,,,,{},{},{}
-7820,Morroc_Skin,Piece of Morocc Skin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7821,Green_Apple,Green Apple,3,20,,10,,,,,,,,,,,,,{},{},{}
-7822,Whole_Barbecue,Whole Barbecue,3,20,,10,,,,,,,,,,,,,{},{},{}
-7823,Meat_Veg_Skewer,Meat Veg Skewer,3,20,,10,,,,,,,,,,,,,{},{},{}
-7824,Spirit_Liquor,Spirit Liquor,3,20,,10,,,,,,,,,,,,,{},{},{}
-7825,Heroic_Stone,Heroic Stone,3,20,,10,,,,,,,,,,,,,{},{},{}
-7826,Continental_Guard_Paper,Continental Guard Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7827,Mineral_Report,Mineral Evals,3,0,,0,,,,,,,,,,,,,{},{},{}
-7828,BF_Badge1,Bravery Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7829,BF_Badge2,Valor Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7830,Goddess_Tear,Goddess Tear,3,1,,500,,,,,,,,,,,,,{},{},{}
-7831,Valkyrie_Token,Valkyrie's Token,3,1,,500,,,,,,,,,,,,,{},{},{}
-7832,Brynhild_Armor_Piece,Brynhild Armor Piece,3,1,,500,,,,,,,,,,,,,{},{},{}
-7833,Hero_Remains,Hero's Remains,3,1,,500,,,,,,,,,,,,,{},{},{}
-7834,Andvari_Ring,Andvari's Ring,3,1,,500,,,,,,,,,,,,,{},{},{}
-7835,Dusk_Glow,Dusk Glow,3,1,,500,,,,,,,,,,,,,{},{},{}
-7836,Dawn_Essence,Dawn Essence,3,1,,500,,,,,,,,,,,,,{},{},{}
-7837,Cold_Moonlight,Cold Moonlight,3,1,,500,,,,,,,,,,,,,{},{},{}
-7838,Hazy_Starlight,Hazy Starlight,3,1,,500,,,,,,,,,,,,,{},{},{}
-7839,Crystal_Key,Crystal Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7840,Valkyrie_Gift,Valkyrie's Gift,3,0,,0,,,,,,,,,,,,,{},{},{}
-7841,Spotted_Paper,Stained Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7842,Torn_Paper,Torn Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7843,Old_Paper,Old Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7844,Burnt_Paper,Burnt Pieces Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7845,Copy_Of_Spotted_Paper,Copy Of Spotted Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7846,Copy_Of_Torn_Paper,Copy Of Torn Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7847,Copy_Of_Old_Paper,Copy Of Old Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7848,Copy_Of_Burnt_Paper,Copy Of Burnt Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7849,Soul_Crystal,Soul Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-7850,Wooden_Block_,Wooden Block,3,20,,100,,,,,,,,,,,,,{},{},{}
-7851,Pass_F1,Wii Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7852,Pass_F2,Divx Player Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7853,Pass_F3,iPod nano Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7854,Pass_CF,Comodo Festival Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7855,Heart,Heart,3,20,,10,,,,,,,,,,,,,{},{},{}
-7856,Girl_Bunch_Of_Flower_,Girl's Bouquet,3,20,,50,,,,,,,,,,,,,{},{},{}
-7857,Handmade_Kitty_Doll,Hand-made Kitty Doll,3,20,,30,,,,,,,,,,,,,{},{},{}
-7858,Dragonball_Yellow_,Dragonball Yellow,3,20,,10,,,,,,,,,,,,,{},{},{}
-7859,Game_Ticket,Game Ticket,3,20,,100,,,,,,,,,,,,,{},{},{}
-7860,Peeps,Peeps,3,0,,50,,,,,,,,,,,,,{},{},{}
-7861,Jelly_Bean,Jelly Bean,3,0,,50,,,,,,,,,,,,,{},{},{}
-7862,Marshmallow,Marshmallow,3,0,,50,,,,,,,,,,,,,{},{},{}
-7863,GOLD_ID4,Special Gold,3,20,,200,,,,,,,,,,,,,{},{},{}
-7864,Love_Flower,Love Flower,3,20,,10,,,,,,,,,,,,,{},{},{}
-7865,Gold_Pouch,Gold Pouch,3,10,,0,,,,,,,,,,,,,{},{},{}
-7866,Certificate,Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-7867,SesamePouch,Sesame Bag,3,10,,100,,,,,,,,,,,,,{},{},{}
-7868,Water,Fresh Water,3,10,,100,,,,,,,,,,,,,{},{},{}
-7869,RicePouch,Rice Pouch,3,10,,100,,,,,,,,,,,,,{},{},{}
-7870,Corn,Corn,3,5,,20,,,,,,,,,,,,,{},{},{}
-7871,BeanPouch,Bean Bag,3,10,,20,,,,,,,,,,,,,{},{},{}
-7872,Grass,Herb,3,10,,30,,,,,,,,,,,,,{},{},{}
-7873,MVP_Monster_Scroll,MVP Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{}
-7874,Monster_Scroll,Create Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{}
-7875,Pirate_Box,Pirate Treasure,3,300000,,0,,,,,,,,,,,,,{},{},{}
-7876,Gold_Key,Golden Key,3,0,,50,,,,,,,,,,,,,{},{},{}
-7877,Red_Ring,Red Ring,3,0,,100,,,,,,,,,,,,,{},{},{}
-7878,Lusalka_Hair,Lusalka's Hair,3,0,,10,,,,,,,,,,,,,{},{},{}
-7879,Golden_Thread,Golden Thread,3,0,,10,,,,,,,,,,,,,{},{},{}
-7880,Babayaga_Silver_Spoon,Baba Yaga's Silver Spoon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7881,Book_Of_Magic,Mystery Magic Book,3,0,,50,,,,,,,,,,,,,{},{},{}
-7882,Pointed_Branch,Sharp Branch,3,0,,0,,,,,,,,,,,,,{},{},{}
-7883,Pointed_Wooden_Flute,Wooden Flute,3,0,,0,,,,,,,,,,,,,{},{},{}
-7884,Jade_Plate,Jade Plate,3,0,,0,,,,,,,,,,,,,{},{},{}
-7885,Sacred_Arrow,Sacred Arrow,3,0,,0,,,,,,,,,,,,,{},{},{}
-7886,Bean_Paste,Bean Paste,3,0,,10,,,,,,,,,,,,,{},{},{}
-7887,Dried_Fruit_Box,Dried Fruit Box,3,0,,30,,,,,,,,,,,,,{},{},{}
-7888,Bag_Of_Nuts,Bag of Nuts,3,0,,30,,,,,,,,,,,,,{},{},{}
-7889,Chicken_Feed,Chicken Feed,3,0,,20,,,,,,,,,,,,,{},{},{}
-7891,Mug,Mug,3,2,,100,,,,,,,,,,,,,{},{},{}
-7892,Charcoal,Charcoal,3,10,,10,,,,,,,,,,,,,{},{},{}
-7893,Sulfur,Sulphur,3,10,,10,,,,,,,,,,,,,{},{},{}
-7894,Nitrate,Nitrogen Acid,3,10,,10,,,,,,,,,,,,,{},{},{}
-7895,TRO_Memory_Book01,Rama5 Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7896,TRO_Memory_Book02,Loykrathong Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7897,TRO_Memory_Book03,Constitution Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7898,VVS_Balmung,VV Strong Balmung,3,0,,0,,,,,,,,,,,,,{},{},{}
-7899,Spiritualist_Dagger,Dagger Of Psychic,3,0,,0,,,,,,,,,,,,,{},{},{}
-7900,Jenoss_Ring1,Jonathan Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7901,Jenoss_Ring2,Jillberriel Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7902,Jenoss_Ring3,Jessur Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7903,Jenoss_Ring4,Jenoss Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7904,Piano_Key,Piano Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7905,Rok_Star_Badge_,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{}
-7906,Poppy_Wreath,Poppy Wreath,3,0,,0,,,,,,,,,,,,,{},{},{}
-7907,Bobbin_Of_Goddess,Bobbin Of Goddess,3,20,,10,,,,,,,,,,,,,{},{},{}
-7908,Louis_Hair_Coupon,Louise's Beauty Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7909,Stolen_Cookie,Stolen Cookie,3,0,,10,,,,,,,,,,,,,{},{},{}
-7910,Stolen_Candy,Stolen Candy,3,0,,10,,,,,,,,,,,,,{},{},{}
-7911,Yulia_Hat,Yulia's Hat,3,0,,10,,,,,,,,,,,,,{},{},{}
-7912,Portable_Snowman,Portable Snowman Machine,3,0,,0,,,,,,,,,,,,,{},{},{}
-7913,Test_Certificate,Battle Test Certificate,3,0,,0,,,,,,,,,,,,,{},{},{}
-7914,Ancient_Document_TW,Ancient Language Document,3,10,,0,,,,,,,,,,,,,{},{},{}
-7915,Copper_Coin_,Bronze Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7916,Silver_Coin_,Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7917,Magic_Potion,Magic Potion,3,0,,0,,,,,,,,,,,,,{},{},{}
-7918,Particle_Of_Memory,Fragment Of Memory,3,2000,,100,,,,,,,,,,,,,{},{},{}
-7919,Festival_Ticket,Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7920,Hero's_Arsenal,He's Arsenal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7921,Essence_Of_Dragon,Essence Of Dragon,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7922,RWC_Ticket,RWC Voucher Items,3,2,,10,,,,,,,,,,,,,{},{},{}
-7923,KRATHONG_,Krathong,3,0,,0,,,,,,,,,,,,,{},{},{}
-7928,Brazilian_Flag_,Brazil National Flag,3,10,,10,,,,,,,,,,,,,{},{},{}
-7929,Golden_Coin_,Gold Coin,3,10,,10,,,,,,,,,,,,,{},{},{}
-7930,Cowking's_Nose_Ring,Devil's Cattle Ring,3,0,,1000,,,,,,,,,,,,,{},{},{}
-7931,Poison_Kit,Poison Kit,3,1,,10,,,,,,,,,,,,,{},{},{}
-7932,Poison_Herb_Nerium,Poison Herb Nerium,3,1,,10,,,,,,,,,,,,,{},{},{}
-7933,Poison_Herb_Rantana,Poison Herb Rantana,3,1,,10,,,,,,,,,,,,,{},{},{}
-7934,Poison_Herb_Makulata,Poison Herb Makulata,3,1,,10,,,,,,,,,,,,,{},{},{}
-7935,Poison_Herb_Seratum,Poison Herb Seratum,3,1,,10,,,,,,,,,,,,,{},{},{}
-7936,Poison_Herb_Scopolia,Poison Herb Scoporia,3,1,,10,,,,,,,,,,,,,{},{},{}
-7937,Poison_Herb_Amoena,Poison Herb Amoena,3,1,,10,,,,,,,,,,,,,{},{},{}
-7938,Light_Granule,Light Granule,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7939,Elder_Branch,Elder Branch,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7940,Special_Alloy_Trap,Special Alloy Trap,3,200,,2,,,,,,,,,,,,,{},{},{}
-7941,Halloween_Ticket,Halloween Ticket,3,10,,0,,,,,,,,,,,,,{},{},{}
-7942,Letter_From_Chico,Chico Cesar Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7943,Caskinya,Caskinya,3,0,,0,,,,,,,,,,,,,{},{},{}
-7944,Sealed_Box,Sealed Box,3,10,,10,,,,,,,,,,,,,{},{},{}
-7945,Almighty_Charm,Universal Amulet,3,0,,10,,,,,,,,,,,,,{},{},{}
-7946,Valentine_Gold_Ring,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-7947,Valentine_Silver_Ring,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{}
-7949,Woven_Wool,Woven Wool,3,10,,0,,,,,,,,,,,,,{},{},{}
-7950,Ayothaya_Ticket,Ayothaya Fest Ticket,3,10,,0,,,,,,,,,,,,,{},{},{}
-7951,Gold_Tulip,Golden Tulip Flower,3,10,,0,,,,,,,,,,,,,{},{},{}
-7952,Gift_From_Romiros,Gift Of Lomi Ross,3,0,,0,,,,,,,,,,,,,{},{},{}
-7953,Gift_From_Juliedge,Gift Of Juliet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7954,Festival_Ticket_,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7955,Lost_Card1,Lost Card1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7956,Lost_Card2,Lost Card2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7957,Lost_Card3,Lost Card3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7958,Lost_Card4,Lost Card4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7959,Ancient_Gold_Coin,Ancient Gold Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7960,Ancient_Silver_Coin,Ancient Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7961,Weapon_Exchange,Weapon Exchange,3,0,,0,,,,,,,,,,,,,{},{},{}
-7962,Treasure_Map1,Treasure Map1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7963,Treasure_Map2,Treasure Map2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7964,Treasure_Map3,Treasure Map3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7965,Treasure_Map4,Treasure Map4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7966,Weird_Parchment1,Weird Parchment1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7967,Weird_Parchment2,Weird Parchment2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7968,Weird_Parchment3,Weird Parchment3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7969,Weird_Parchment4,Weird Parchment4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7970,Unwritten_Letter1,Unwritten Letter1,3,0,,0,,,,,,,,,,,,,{},{},{}
-7971,Unwritten_Letter2,Unwritten Letter2,3,0,,0,,,,,,,,,,,,,{},{},{}
-7972,Oath_Day_Letter,Oath Day Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7973,Immortality_Egg,Immortality Egg,3,20,,0,,,,,,,,,,,,,{},{},{}
-7974,Illusion_Piece,Illusion Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-7975,Cupid_Choco,Cupid Choco,3,0,,0,,,,,,,,,,,,,{},{},{}
-7976,Gf_Magic_Coin,Gf Magic Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-7977,Hunting_Medal_Badge,Hunting Medal Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7978,Spring_Stanza1,Spring Stanza1,3,2,,10,,,,,,,,,,,,,{},{},{}
-7979,Spring_Stanza2,Spring Stanza2,3,2,,10,,,,,,,,,,,,,{},{},{}
-7980,Spring_Stanza3,Spring Stanza3,3,2,,10,,,,,,,,,,,,,{},{},{}
-7981,Spring_Stanza4,Spring Stanza4,3,2,,10,,,,,,,,,,,,,{},{},{}
-7982,Spring_Stanza5,Spring Stanza5,3,2,,10,,,,,,,,,,,,,{},{},{}
-7983,Spring_Stanza6,Spring Stanza6,3,2,,10,,,,,,,,,,,,,{},{},{}
-7984,Spring_Stanza7,Spring Stanza7,3,2,,10,,,,,,,,,,,,,{},{},{}
-7985,Spring_Stanza8,Spring Stanza8,3,2,,10,,,,,,,,,,,,,{},{},{}
-7986,Spring_Stanza9,Spring Stanza9,3,2,,10,,,,,,,,,,,,,{},{},{}
-7987,Spring_Stanza10,Spring Stanza10,3,2,,10,,,,,,,,,,,,,{},{},{}
-7988,Spring_Stanza11,Spring Stanza11,3,2,,10,,,,,,,,,,,,,{},{},{}
-7989,Spring_Stanza12,Spring Stanza12,3,2,,10,,,,,,,,,,,,,{},{},{}
-7990,Spring_Stanza13,Spring Stanza13,3,2,,10,,,,,,,,,,,,,{},{},{}
-7991,Spring_Stanza14,Spring Stanza14,3,2,,10,,,,,,,,,,,,,{},{},{}
-7992,Spring_Stanza15,Spring Stanza15,3,2,,10,,,,,,,,,,,,,{},{},{}
-7993,Spring_Stanza16,Spring Stanza16,3,2,,10,,,,,,,,,,,,,{},{},{}
-7994,Spring_Stanza17,Spring Stanza17,3,2,,10,,,,,,,,,,,,,{},{},{}
-7995,Spring_Stanza18,Spring Stanza18,3,2,,10,,,,,,,,,,,,,{},{},{}
-7996,Spring_Stanza19,Spring Stanza19,3,2,,10,,,,,,,,,,,,,{},{},{}
-7997,Spring_Stanza20,Spring Stanza20,3,2,,10,,,,,,,,,,,,,{},{},{}
-7998,Spring_Stanza21,Spring Stanza21,3,2,,10,,,,,,,,,,,,,{},{},{}
-7999,Spring_Stanza22,Spring Stanza22,3,2,,10,,,,,,,,,,,,,{},{},{}
-// Pet Eggs
-//===================================================================
-9001,Poring_Egg,Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9002,Drops_Egg,Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9003,Poporing_Egg,Poporing Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9004,Lunatic_Egg,Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9005,Picky_Egg,Picky Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9006,Chonchon_Egg,Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9007,Steel_Chonchon_Egg,Steel Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9008,Hunter_Fly_Egg,Hunter Fly Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9009,Savage_Bebe_Egg,Savage Babe Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9010,Baby_Desert_Wolf_Egg,Baby Desert Wolf Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9011,Rocker_Egg,Rocker Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9012,Spore_Egg,Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9013,Poison_Spore_Egg,Poison Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9014,PecoPeco_Egg,Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9015,Smokie_Egg,Smokie Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9016,Yoyo_Egg,Yoyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9017,Orc_Warrior_Egg,Orc Warrior Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9018,Munak_Egg,Munak Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9019,Dokkaebi_Egg,Dokebi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9020,Sohee_Egg,Sohee Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9021,Isis_Egg,Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9022,Green_Petite_Egg,Green Petite Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9023,Deviruchi_Egg,Deviruchi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9024,Bapho_Jr._Egg,Bapho Jr. Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9025,Bongun_Egg,Bongun Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9026,Zherlthsh_Egg,Zealotus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9027,Alice_Egg,Alice Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9028,Rice_Cake_Egg,Hard Rice Cake,7,20,,0,,,,,,,,,,,,,{},{},{}
-9029,Santa_Goblin_Egg,Christmas Goblin's Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9030,Chung_E_Egg,Green Maiden Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9031,Spring_Rabbit_Egg,Spring Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9032,Knife_Goblin_Egg,Knife Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9033,Flail_Goblin_Egg,Flail Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9034,Hammer_Goblin_Egg,Hammer Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9035,Red_Deleter_Egg,Red Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9036,Diabolic_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9037,Wanderer_Egg,Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9038,New_Year_Doll_Egg,New Year Doll Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9039,Bacsojin_Egg,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9040,Civil_Servant_Egg,Civil Servant Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9041,Leaf_Cat_Egg,Leaf Cat Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9042,Loli_Ruri_Egg,Loli Ruri Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9043,Marionette_Egg,Marionette Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9044,Shinobi_Egg,Shinobi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9045,Whisper_Egg,Whisper Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9046,Goblin_Leader_Egg,Goblin Leader Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9047,Wicked_Nymph_Egg,Wicked Nymph Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9048,Miyabi_Ningyo_Egg,Miyabi Ningyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9049,Dullahan_Egg,Dullahan Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9050,Medusa_Egg,Medusa Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9051,Stone_Shooter_Egg,Stone Shooter Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9052,Incubus_Egg,Incubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9053,Golem_Egg,Golem Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9054,Nightmare_Terror_Egg,Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9055,Succubus_Egg,Succubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9056,Imp_Egg,Imp Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-// Pet Accessories
-//===================================================================
-10001,Skull_Helm,Skull Helm,8,20,,0,,,,,,,,,,,,,{},{},{}
-10002,Monster_Oxygen_Mask,Monster Oxygen Mask,8,20,,0,,,,,,,,,,,,,{},{},{}
-10003,Transparent_Headgear,Transparent Head Protector,8,20,,0,,,,,,,,,,,,,{},{},{}
-10004,Pacifier,Pacifier,8,20,,0,,,,,,,,,,,,,{},{},{}
-10005,Wig,Wig,8,20,,0,,,,,,,,,,,,,{},{},{}
-10006,Queen's_Hair_Ornament,Queen's Hair Ornament,8,20,,0,,,,,,,,,,,,,{},{},{}
-10007,Silk_Ribbon,Silk Ribbon,8,20,,0,,,,,,,,,,,,,{},{},{}
-10008,Punisher,Punisher,8,20,,0,,,,,,,,,,,,,{},{},{}
-10009,Wild_Flower,Wild Flower,8,20,,0,,,,,,,,,,,,,{},{},{}
-10010,Battered_Pot,Battered Pot,8,20,,0,,,,,,,,,,,,,{},{},{}
-10011,Stellar_Hairpin,Stellar Hairpin,8,20,,0,,,,,,,,,,,,,{},{},{}
-10012,Tiny_Egg_Shell,Tiny Egg Shell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10013,Backpack,Backpack,8,1500,,0,,,,,,,,,,,,,{},{},{}
-10014,Rocker_Glasses,Rocker Glasses,8,2000,,0,,,,,,,,,,,,,{},{},{}
-10015,Green_Lace,Green Lace,8,20,,0,,,,,,,,,,,,,{},{},{}
-10016,Golden_Bell,Golden Bell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10017,Bark_Shorts,Bark Shorts,8,20,,0,,,,,,,,,,,,,{},{},{}
-10018,Monkey_Circlet,Monkey Circlet,8,20,,0,,,,,,,,,,,,,{},{},{}
-10019,Red_Muffler,Red Scarf,8,20,,0,,,,,,,,,,,,,{},{},{}
-10020,Sword_Of_Grave_Keeper,Grave Keeper's Sword,8,20,,0,,,,,,,,,,,,,{},{},{}
-10021,Round_Hair_Ornament,Circular Headgear,8,20,,0,,,,,,,,,,,,,{},{},{}
-10022,Golden_Earing,Gold Earring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10023,Green_Lucky_Bag,Green Jewel Bag,8,20,,0,,,,,,,,,,,,,{},{},{}
-10024,Fashionable_Glasses,Fashion Glasses,8,20,,0,,,,,,,,,,,,,{},{},{}
-10025,Star_Hairband,Hairband Of Stars,8,20,,0,,,,,,,,,,,,,{},{},{}
-10026,Wine_On_Sleeve,Tassel for Durumagi,8,20,,0,,,,,,,,,,,,,{},{},{}
-10027,Spirit_Chain_,Pet Soul Ring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10028,Nice_Badge,Beautiful Badges,8,20,,0,,,,,,,,,,,,,{},{},{}
-10029,Jade_Trinket,Jade Trinket,8,20,,0,,,,,,,,,,,,,{},{},{}
-10030,Summer_Fan,Summer Fan,8,20,,0,,,,,,,,,,,,,{},{},{}
-10031,Death_Coil,Ring Of Death,8,20,,0,,,,,,,,,,,,,{},{},{}
-10032,Queen's_Coronet,Queen's Coronet,8,20,,0,,,,,,,,,,,,,{},{},{}
-10033,Apro_Hair,Afro,8,20,,0,,,,,,,,,,,,,{},{},{}
-10034,Ball_Mask,Masked Ball,8,20,,0,,,,,,,,,,,,,{},{},{}
-10035,Windup_Spring,Spring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10036,Hell_Horn,Horn Of Hell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10037,Black_Butterfly_Mask,Black Butterfly Mask,8,20,,0,,,,,,,,,,,,,{},{},{}
-10038,Horn_Protector,Horn Barrier,8,20,,0,,,,,,,,,,,,,{},{},{}
-// Misc "Etc" Books
-//===================================================================
-11000,Prontera_Book_01,History book of Prontera,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11001,Adventure_Story01,Adventure Story Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11002,Great_Chef_Orleans01,Chef King Orleans Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11003,Legend_Of_Kafra01,Kafra Legend Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11004,Mercenary_Rebellion,Old Book,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11005,Tyrant_Schmidt,Rune Royal Family Book,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11006,Blood_Flower01,Blood Flower Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11007,Blood_Flower02,Blood Flower Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11008,Barmund,Biographical Dictionary Copy Edition,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11009,Adventure_Story02,Adventure Story Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11010,Reward_List_Book,Battlegrounds Catalog,3,0,,10,,,,,,,,,,,,,{},{},{}
-11011,Barmund_Note,Varmunt's Note,3,0,,0,,,,,,,,,,,,,{},{},{}
-11012,Expedition_Report,Expedition Report,3,0,,0,,,,,,,,,,,,,{},{},{}
-11013,Expedition_Report_Vol1,Expedition Report Vol1,3,0,,0,,,,,,,,,,,,,{},{},{}
-11014,Expedition_Report_Vol2,Expedition Report Vol2,3,0,,0,,,,,,,,,,,,,{},{},{}
-11015,Expedition_Report_Vol3,Expedition Report Vol3,3,0,,0,,,,,,,,,,,,,{},{},{}
-11016,Expedition_Report_Vol4,Expedition Report Vol4,3,0,,0,,,,,,,,,,,,,{},{},{}
-11017,Reward_List_Book2,KVM Reward Items Catalog,3,0,,10,,,,,,,,,,,,,{},{},{}
-11018,Splendide_Selling_Item,Splendide Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{}
-11019,Manuk_Selling_Item,Manuk Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{}
-11020,Japan_Book1,Japan Book1,3,20,,10,,,,,,,,,,,,,{},{},{}
-11021,Japan_Book2,Japan Book2,3,20,,10,,,,,,,,,,,,,{},{},{}
-11022,Mix_Cook_Book,Mix Cook Book,3,10,,10,,,,,,,,,,,,,{},{},{}
-11023,Increase_Stamina_Study,Increase Stamina Study,3,10,,50,,,,,,,,,,,,,{},{},{}
-11024,Vital_Drink_CB,Vital Drink CB,3,10,,50,,,,,,,,,,,,,{},{},{}
-11025,Swordman_Book_Basic,Swordman Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11026,Swordman_Book_Practice,Swordman Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11027,Swrodman_Book_Misc,Swrodman Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11028,Thief_Book_Basic,Thief Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11029,Thief_Book_Practice,Thief Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11030,Thief_Book_Misc,Thief Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11031,Archer_Book_Basic,Archer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11032,Archer_Book_Practice,Archer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11033,Archer_Book_Misc,Archer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11034,Acol_Book_Basic,Acol Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11035,Acol_Book_Practice,Acol Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11036,Acol_Book_Misc,Acol Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11037,Mage_Book_Basic,Mage Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11038,Mage_Book_Practice,Mage Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11039,Mage_Book_Misc,Mage Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11040,Mer_Book_Basic,Mer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11041,Mer_Book_Practice,Mer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11042,Mer_Book_Misc,Mer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11043,TK_Book_Basic,TK Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11044,TK_Book_Practice,TK Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11045,TK_Book_Misc,TK Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11046,Ninja_Book_Basic,Ninja Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11047,Ninja_Book_Practice,Ninja Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11048,Ninja_Book_Misc,Ninja Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11049,Gun_Book_Basic,Gun Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11050,Gun_Book_Practice,Gun Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11051,Gun_Book_Misc,Gun Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11052,SN_Book_Basic,SN Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11053,SN_Book_Practice,SN Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11054,SN_Book_Misc,SN Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11055,Basic_Adventure,Basic Adventure,3,20,,10,,,,,,,,,,,,,{},{},{}
-11056,Elemental_Spirit_Guide,Elemental Spirit Guide,3,1000,,10,,,,,,,,,,,,,{},{},{}
-// More Usable Items
-//===================================================================
-11500,Light_Yellow_Pot,Light Yellow Potion,0,550,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-11501,Light_White_Pot,Light White Potion,0,1200,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-11502,Light_Blue_Pot,Light Blue Potion,0,5000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
-11503,Siege_White_Potion,WoE White Potion,0,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,500),0; },{},{}
-11504,Siege_Blue_Potion,WoE Blue Potion,0,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(50,70); },{},{}
-11505,Iris,Iris,0,0,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,150; },{},{}
-11506,Fanta_Orange,Fanta Orange,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11507,Fanta_Grape,Fanta Grape,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11508,Karada_Meguri_Tea,Karada Meguricha,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11509,Royal_Milk_Tea,Black Tea Kochakaden,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11510,Coke_Zero,Coca Cola Zero,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11511,Coke_No_Cal,Diet Coca Cola,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11512,Coca_Cola,Coca Cola,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11513,Protect_Neck_Candy,Protect Neck Candy,0,200,,1,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(5,25),0; },{},{}
-11514,Enriched_Slim_Pot,Enriched Slim Pot,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(335,415),0; },{},{}
-11515,Coconut,Coconut,0,1500,,120,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(300,400),0; },{},{}
-11516,Asai_Fruit,Asai Fruit,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(16,22),0; },{},{}
-11517,Puri_Potion,Puri Potion,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,600),0; },{},{}
-11518,N_Blue_Potion,Blue Potion,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,5; },{},{}
-11519,Beef_Toast,Beef Toast,0,650,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(170,250),0; },{},{}
-11520,Mora_Mandarin,Mora Mandar,0,500,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(50,80); },{},{}
-11521,Pingui_Berry_Juice,Pingui Berry Juice,0,500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,800),rand(50,80); },{},{}
-11522,Red_Raffle_Sap,Red Raffle Sap,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,800),0; },{},{}
-11523,Yellow_Raffle_Sap,Yellow Raffle Sap,0,2400,,120,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(600,1000),0; },{},{}
-11524,White_Raffle_Sap,White Raffle Sap,0,2800,,140,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(800,1200),0; },{},{}
-11525,Mora_Hip_Tea,Mora HIp Tea,0,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(1500,2000),0; },{},{}
-11526,Rafflecino,Rafflecino,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(120,160); },{},{}
-11527,Baklava,Baklava,0,3500,,600,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 1200,440; },{},{}
-11528,Kanafeh,Kanafeh,0,1500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 300,240; },{},{}
-11529,MAAMOUL_,Maamoul,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 120,60; },{},{}
-11530,Jujube,Jujube,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 30,0; },{},{}
-11531,Coffee,Coffee,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,10; },{},{}
-11701,Girl_Bunch_Of_Flower,Girl's Bouquet,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-11702,Moon_Cookie,Moon Cookie,0,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-11703,Mysterious_Blood,Mystery Blood,0,0,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(25,35); },{},{}
-11704,KETUPAT_F,Ketupat,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,90),0; },{},{}
-11705,Special_White_Potion,Children's Potion,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(425,425),0; },{},{}
-11706,Steak,Steak,0,1,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(700,1000),0; },{},{}
-11707,Roasted_Beef,Roast Beef,0,1,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(100,200); },{},{}
-11708,Fore_Flank_Sirloin,Fore Flank Sirloin,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(30,50),rand(1,5); },{},{}
-11709,Fanta_Zero_Lemon,Fanta Zero Lemon,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11710,Sakura_Mist,Sakura Mist,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11711,Sakura_Milk_Tea,Sakura Milk Tea,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11712,First_Leaf_Tea,Flower,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-12000,Cold_Scroll_2_5,Level 5 Frost Diver,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FROSTDIVER",5; },{},{}
-12001,Holy_Scroll_1_3,Level 3 Heal,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_HEAL",3; },{},{}
-12002,Holy_Scroll_1_5,Level 5 Heal,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_HEAL",5; },{},{}
-12003,Holy_Scroll_2_1,Level 1 Teleport,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-12004,Arrow_Container,Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1750,500; },{},{}
-12005,Iron_Arrow_Container,Iron Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1770,500; },{},{}
-12006,Steel_Arrow_Container,Steel Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1753,500; },{},{}
-12007,Ori_Arrow_Container,Oridecon Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1765,500; },{},{}
-12008,Fire_Arrow_Container,Fire Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1752,500; },{},{}
-12009,Silver_Arrow_Container,Silver Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1751,500; },{},{}
-12010,Wind_Arrow_Container,Wind Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1755,500; },{},{}
-12011,Stone_Arrow_Container,Stone Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1756,500; },{},{}
-12012,Crystal_Arrow_Container,Crystal Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1754,500; },{},{}
-12013,Shadow_Arrow_Container,Shadow Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1767,500; },{},{}
-12014,Imma_Arrow_Container,Immaterial Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1757,500; },{},{}
-12015,Rusty_Arrow_Container,Rusty Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1762,500; },{},{}
-12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{}
-12017,Slow_Down_Potion,Slow Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SlowDown,5000,0; },{},{}
-12018,Fire_Cracker,Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12019,Holy_Egg,Holy Egg,11,2,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_RESURRECTION",2; },{},{}
-12020,Water_Of_Darkness,Cursed Water,11,2,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",8; },{},{}
-12021,Pork_Belly,Pork,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,99),0; },{},{}
-12022,Spareribs,Galbi,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,99),0; },{},{}
-12023,Giftbox_China,Wrapped Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBoxChina),1; },{},{}
-12024,Red_Pouch_Of_Surprise,Red Pouch,2,50,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-4,1,""; },{},{}
-12025,Egg_Boy,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_EggBoy),1; },{},{}
-12026,Egg_Girl,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_EggGirl),1; },{},{}
-12027,Giggling_Box,Giggling Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 9,0; sc_start SC_Curse,30000,0,3000,0; },{},{}
-12028,Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,20000,25; },{},{}
-12029,Gloomy_Box,Box of Gloom,11,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AC_CONCENTRATION",1; },{},{}
-12030,Box_Of_Grudge,Box of Resentment,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,20; },{},{}
-12031,Sleepy_Box,Box of Drowsiness,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,60000,20; },{},{}
-12032,Box_Of_Storm,Box of Storms,11,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{}
-12033,Box_Of_Sunlight,Box of Sunlight,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Intravision,30000,0; },{},{}
-12034,Painting_Box,Box of Panting,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,9; sc_start SC_Silence,30000,0,3000,0; },{},{}
-12035,Lotto_Box01,Lotto Box 01,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7361,7370),1; },{},{}
-12036,Lotto_Box02,Lotto Box 02,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7371,7380),1; },{},{}
-12037,Lotto_Box03,Lotto Box 03,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7381,7390),1; },{},{}
-12038,Lotto_Box04,Lotto Box 04,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_LottoBox),1; },{},{}
-12039,Lotto_Box05,Lotto Box 05,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7542,7546),1; },{},{}
-12040,Stone_Of_Intelligence_,Stone of Sage,2,100000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ homevolution; },{},{}
-12041,Str_Dish01,Fried Grasshopper Legs,0,2000,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{}
-12042,Str_Dish02,Seasoned Sticky Webfoot,0,4000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{}
-12043,Str_Dish03,Bomber Steak,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{}
-12044,Str_Dish04,Herb Marinade Beef,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,4; percentheal 5,0; },{},{}
-12045,Str_Dish05,Lutie Lady's Pancake,0,10000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{}
-12046,Int_Dish01,Grape Juice Herbal Tea,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{}
-12047,Int_Dish02,Autumn Red Tea,0,4000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{}
-12048,Int_Dish03,Honey Herbal Tea,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{}
-12049,Int_Dish04,Morocc Fruit Wine,0,8000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,4; percentheal 0,5; },{},{}
-12050,Int_Dish05,Mastela Fruit Wine,0,10000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{}
-12051,Vit_Dish01,Steamed Crab Nippers,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{}
-12052,Vit_Dish02,Assorted Seafood,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{}
-12053,Vit_Dish03,Clam Soup,0,6000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{}
-12054,Vit_Dish04,Seasoned Jellyfish,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,4; percentheal 5,0; },{},{}
-12055,Vit_Dish05,Spicy Fried Bao,0,10000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{}
-12056,Agi_Dish01,Frog Egg Squid Ink Soup,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{}
-12057,Agi_Dish02,Smooth Noodle,0,4000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{}
-12058,Agi_Dish03,Tentacle Cheese Gratin,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{}
-12059,Agi_Dish04,Lutie Cold Noodle,0,8000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; },{},{}
-12060,Agi_Dish05,Steamed Bat Wing in Pumpkin,0,10000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{}
-12061,Dex_Dish01,Honey Grape Juice,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{}
-12062,Dex_Dish02,Chocolate Mousse Cake,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{}
-12063,Dex_Dish03,Fruit Mix,0,6000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{}
-12064,Dex_Dish04,Cream Sandwich,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; },{},{}
-12065,Dex_Dish05,Green Salad,0,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{}
-12066,Luk_Dish01,Fried Monkey Tails,0,2000,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{}
-12067,Luk_Dish02,Mixed Juice,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{}
-12068,Luk_Dish03,Fried Sweet Potato,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{}
-12069,Luk_Dish04,Steamed Ancient Lips,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; },{},{}
-12070,Luk_Dish05,Fried Scorpion Tails,0,10000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{}
-12071,Str_Dish06,Shiny Marinade Beef,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,6; percentheal 10,2; },{},{}
-12072,Str_Dish07,Whole Roast,0,40000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,7; percentheal 10,4; },{},{}
-12073,Str_Dish08,Bearfoot Special,0,60000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,8; percentheal 15,6; },{},{}
-12074,Str_Dish09,Tendon Satay,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,9; percentheal 15,8; },{},{}
-12075,Str_Dish10,Steamed Tongue,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,10; percentheal 20,20; },{},{}
-12076,Int_Dish06,Red Mushroom Wine,0,20000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,6; percentheal 2,10; },{},{}
-12077,Int_Dish07,Special Royal Jelly Herbal Tea,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,7; percentheal 4,10; },{},{}
-12078,Int_Dish08,Royal Family Tea,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,8; percentheal 6,10; },{},{}
-12079,Int_Dish09,Tristan XII,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,9; percentheal 8,15; },{},{}
-12080,Int_Dish10,Dragon Breath Cocktail,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,10; percentheal 10,20; },{},{}
-12081,Vit_Dish06,Awfully Bitter Bracer,0,20000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,6; percentheal 13,0; },{},{}
-12082,Vit_Dish07,Sumptuous Feast,0,40000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,7; percentheal 16,0; },{},{}
-12083,Vit_Dish08,Giant Burito,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,8; percentheal 19,0; },{},{}
-12084,Vit_Dish09,Ascending Dragon Soup,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,9; percentheal 22,0; },{},{}
-12085,Vit_Dish10,Immortal Stew,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,10; percentheal 25,0; },{},{}
-12086,Agi_Dish06,Chile Shrimp Gratin,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; },{},{}
-12087,Agi_Dish07,Steamed Alligator with Vegetable,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; },{},{}
-12088,Agi_Dish08,Incredibly Spicy Curry,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; },{},{}
-12089,Agi_Dish09,Special Meat Stew,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; },{},{}
-12090,Agi_Dish10,Steamed Desert Scorpions,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; },{},{}
-12091,Dex_Dish06,Peach Cake,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; },{},{}
-12092,Dex_Dish07,Soul Haunted Bread,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; },{},{}
-12093,Dex_Dish08,Special Toast,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; },{},{}
-12094,Dex_Dish09,Heavenly Fruit Juice,0,80000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; },{},{}
-12095,Dex_Dish10,Hwergelmir's Tonic,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; },{},{}
-12096,Luk_Dish06,Lucky Soup,0,20000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; },{},{}
-12097,Luk_Dish07,Assorted Shish Kebob,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; },{},{}
-12098,Luk_Dish08,Strawberry Flavored Rice Ball,0,60000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; },{},{}
-12099,Luk_Dish09,Blood Flavored Soda,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; },{},{}
-12100,Luk_Dish10,Cooked Nine Tail's Tails,0,100000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; },{},{}
-12101,Citron,Citron,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12102,Meat_Skewer,Grilled Skewer,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12103,Bloody_Dead_Branch,Bloody Branch,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-3,1,""; },{},{}
-12104,Random_Quiver,Random Quiver,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Quiver),1; },{},{}
-12105,Set_Of_Taiming_Item,Taming Gift Set,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; },{},{}
-12106,Accessory_Box,Jewelry Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Accesory),1; },{},{}
-12107,Wrapped_Mask,Wrapped Mask,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Mask),1; },{},{}
-12108,Bundle_Of_Magic_Scroll,Scroll Package,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; },{},{}
-12109,Poring_Box,Poring Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-2,1,""; },{},{}
-12110,First_Aid_Kit,First Aid Kit,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; },{},{}
-12111,Food_Package,Bundle of Food,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; },{},{}
-12112,Tropical_Sograt,Tropical Sograt,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Curse,10000,1; },{},{}
-12113,Vermilion_The_Beach,Vermilion on the Beach,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Stun,10000,1; },{},{}
-12114,Elemental_Fire,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",4; },{},{}
-12115,Elemental_Water,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{}
-12116,Elemental_Earth,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",3; },{},{}
-12117,Elemental_Wind,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",5; },{},{}
-12118,Resist_Fire,Fireproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; },{},{}
-12119,Resist_Water,Coldproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; },{},{}
-12120,Resist_Earth,Earthproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; },{},{}
-12121,Resist_Wind,Thunderproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; },{},{}
-12122,Sesame_Pastry,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,1200000,30; },{},{}
-12123,Honey_Pastry,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,1200000,30; },{},{}
-12124,Rainbow_Cake,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BATKFOOD,1200000,10; sc_start SC_MATKFOOD,120000,10; },{},{}
-12125,Outdoor_Cooking_Kits,Outdoor Cooking Kit,2,500,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 11; },{},{}
-12126,Indoor_Cooking_Kits,Home Cooking Kit,2,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 12; },{},{}
-12127,High_end_Cooking_Kits,Professional Cooking Kit,2,2000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 13; },{},{}
-12128,Imperial_Cooking_Kits,Royal Cooking Kit,2,5000,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 14; },{},{}
-12129,Fantastic_Cooking_Kits,Fantastic Cooking Kit,2,10000,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 15; },{},{}
-12130,Cookie_Bag,Cookie Bag,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; },{},{}
-12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12132,Red_Bag,Santa's Bag,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Xmas,600000,0; },{},{}
-12133,Ice_Cream_,McDonald's Ice Cone,0,0,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; } },{},{}
-12134,Red_Envelope,Red Envelope,2,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{}
-12135,Green_Ale,Green Ale,2,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0; },{},{}
-12136,Women's_Bundle,Women's Bundle,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem callfunc("F_Rand",558,529,2668,7518),1; },{},{}
-12137,1st_Stage_Prize,First Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12138,2nd_Stage_Prize,Second Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12139,3rd_Stage_Prize,Third Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12140,4th_Stage_Prize,Fourth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12141,5th_Stage_Prize,Fifth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12142,Magic_Book,Book of Magic,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{}
-12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12144,Sphere_Case_Wind,Lightning Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13204,500; },{},{}
-12145,Sphere_Case_Darkness,Blind Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13206,500; },{},{}
-12146,Sphere_Case_Poison,Poison Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13205,500; },{},{}
-12147,Sphere_Case_Water,Freezing Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13207,500; },{},{}
-12148,Sphere_Case_Fire,Flare Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13203,500; },{},{}
-12149,Bullet_Case,Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13200,500; },{},{}
-12150,Bullet_Case_Blood,Blood Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13202,500; },{},{}
-12151,Bullet_Case_Silver,Silver Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13201,500; },{},{}
-12152,Special_Box,Special Present,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12153,Bow_Mercenary_Scroll1,Bowman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6017,1800000; },{},{}
-12154,Bow_Mercenary_Scroll2,Bowman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6018,1800000; },{},{}
-12155,Bow_Mercenary_Scroll3,Bowman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6019,1800000; },{},{}
-12156,Bow_Mercenary_Scroll4,Bowman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6020,1800000; },{},{}
-12157,Bow_Mercenary_Scroll5,Bowman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6021,1800000; },{},{}
-12158,Bow_Mercenary_Scroll6,Bowman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6022,1800000; },{},{}
-12159,Bow_Mercenary_Scroll7,Bowman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6023,1800000; },{},{}
-12160,Bow_Mercenary_Scroll8,Bowman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6024,1800000; },{},{}
-12161,Bow_Mercenary_Scroll9,Bowman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6025,1800000; },{},{}
-12162,Bow_Mercenary_Scroll10,Bowman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6026,1800000; },{},{}
-12163,SwordMercenary_Scroll1,Fencer Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6037,1800000; },{},{}
-12164,SwordMercenary_Scroll2,Fencer Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6038,1800000; },{},{}
-12165,SwordMercenary_Scroll3,Fencer Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6039,1800000; },{},{}
-12166,SwordMercenary_Scroll4,Fencer Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6040,1800000; },{},{}
-12167,SwordMercenary_Scroll5,Fencer Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6041,1800000; },{},{}
-12168,SwordMercenary_Scroll6,Fencer Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6042,1800000; },{},{}
-12169,SwordMercenary_Scroll7,Fencer Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6043,1800000; },{},{}
-12170,SwordMercenary_Scroll8,Fencer Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6044,1800000; },{},{}
-12171,SwordMercenary_Scroll9,Fencer Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6045,1800000; },{},{}
-12172,SwordMercenary_Scroll10,Fencer Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6046,1800000; },{},{}
-12173,SpearMercenary_Scroll1,Spearman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6027,1800000; },{},{}
-12174,SpearMercenary_Scroll2,Spearman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6028,1800000; },{},{}
-12175,SpearMercenary_Scroll3,Spearman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6029,1800000; },{},{}
-12176,SpearMercenary_Scroll4,Spearman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6030,1800000; },{},{}
-12177,SpearMercenary_Scroll5,Spearman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6031,1800000; },{},{}
-12178,SpearMercenary_Scroll6,Spearman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6032,1800000; },{},{}
-12179,SpearMercenary_Scroll7,Spearman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6033,1800000; },{},{}
-12180,SpearMercenary_Scroll8,Spearman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6034,1800000; },{},{}
-12181,SpearMercenary_Scroll9,Spearman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6035,1800000; },{},{}
-12182,SpearMercenary_Scroll10,Spearman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6036,1800000; },{},{}
-12183,Holy_Arrow_Quiver,Holy Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1772,500; },{},{}
-12184,Mercenary_Red_Potion,Mercenary Red Potion,2,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_heal 1000,0; },{},{}
-12185,Mercenary_Blue_Potion,Mercenary Blue Potion,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_heal 0,100; },{},{}
-12186,Red_Box,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_RedBox),1; },{},{}
-12187,Green_Box,Old Green Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GreenBox),1; },{},{}
-12188,Magical_Moon_Cake,Grace Moon Cake,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; },{},{}
-12189,Red_Box_,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_RedBox_2),1; },{},{}
-12190,Moon_Cake,Moon Cake,2,2,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12191,Special_Moon_Cake,Special Moon Cake,2,2,,500,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12192,Pumpkin_Pie,Pumpkin Pie,0,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{}
-12193,Brezel,Pretzel,2,20,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12194,Hometown_Gift,Hometown Gift,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; },{},{}
-12195,Plain_Rice_Cake,Plain Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{}
-12196,Hearty_Rice_Cake,Hearty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,0; },{},{}
-12197,Salty_Rice_Cake,Salty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,10; },{},{}
-12198,Lucky_Rice_Cake,Lucky Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCLUK,1200000,21; },{},{}
-12199,Rice_Scroll,Scroll of Magic,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12200,Event_Cake,X-mas Cake,11,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",3; },{},{}
-12201,Red_Box_C,Commonplace Red Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-// Cash Shop Usable Items
-12202,Str_Dish10_,Steamed Tongue,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; },{},{}
-12203,Agi_Dish10_,Steamed Scorpion,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; },{},{}
-12204,Int_Dish10_,Dragon Breath Cocktail,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; },{},{}
-12205,Dex_Dish10_,Hwergelmir's Tonic,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; },{},{}
-12206,Luk_Dish10_,Cooked Nine Tail's Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; },{},{}
-12207,Vit_Dish10_,Stew Of Immortality,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; },{},{}
-12208,Battle_Manual,Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{}
-12209,Insurance,Life Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{}
-12210,Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{}
-12211,Kafra_Card,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashStore"; },{},{}
-12212,Giant_Fly_Wing,Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashPartyCall"; },{},{}
-12213,Neuralizer,Neuralizer,11,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashReset"; },{},{}
-12214,Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{}
-12215,Blessing_10_Scroll,LV10 Blessing Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{}
-12216,Inc_Agi_10_Scroll,LV10 Agil Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } },{},{}
-12217,Aspersio_5_Scroll,LV5 Aspersio Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } },{},{}
-12218,Assumptio_5_Scroll,LV5 Assumptio Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; },{},{}
-12219,Wind_Walk_10_Scroll,LV10 Wind Walker Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; },{},{}
-12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; } },{},{}
-12221,Megaphone_,Megaphone,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; },{},{}
-12225,Sweet_Candy_Striper,Sweet Candy Cane,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1245; },{},{}
-12226,Examination1,Examination 1,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12227,Examination2,Examination 2,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12228,Examination3,Examination 3,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12229,Examination4,Examination 4,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12230,Examination5,Examination 5,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12231,Examination6,Examination 6,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12232,Gingerbread,Ginger Bread,2,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; },{},{}
-12233,Kvass,Kvass,0,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{}
-12234,Cacao99,Fierce Cacao 99%,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 25,0; },{},{}
-12235,Strawberry_Choco,Chocolate Strawberry,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{}
-12236,Choco_Tart,Chocolate Tart,11,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; itemskill "AL_ANGELUS",5; },{},{}
-12237,Choco_Lump,Junky Chocolate,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0; },{},{}
-12238,New_Year_Rice_Cake_1,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{}
-12239,New_Year_Rice_Cake_2,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{}
-12240,Old_Yellow_Box,Old Yellow Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_YellowBox),1; },{},{}
-12241,M_Center_Potion,Mercenary Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION0,1800000,0; },{},{}
-12242,M_Awakening_Potion,Mercenary Awakening Potion,2,1500,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION1,1800000,0; },{},{}
-12243,M_Berserk_Potion,Mercenary Berserk Potion,2,3000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION2,1800000,0; },{},{}
-12244,Old_Gift_Box,Old Gift Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_OldGiftBox),1; },{},{}
-12245,Green_Ale_US,Green Ale,0,5000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,0; },{},{}
-12246,Magic_Card_Album,Mystical Card Album,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_MagicCardAlbum),1; },{},{}
-12247,Halohalo,Halo-Halo,2,2,,100,,,,,0xFFFFFFFF,7,2,,,20,,,{ sc_start SC_INCALLSTATUS,600000,3; },{},{}
-12248,Masquerade_Ball_Box,Fancy Ball Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Masquerade),1; },{},{}
-12249,Payroll_Of_Kafra_,Payment Statement for Kafra Employee,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12250,Str_Dish10_M,Steamed Tongue,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,3600000,10; percentheal 20,20; },{},{}
-12251,Agi_Dish10_M,Steamed Desert Scorpions,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; },{},{}
-12252,Int_Dish10_M,Dragon Breath Cocktail,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,3600000,10; percentheal 10,20; },{},{}
-12253,Dex_Dish10_M,Hwergelmir's Tonic,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; },{},{}
-12254,Luk_Dish10_M,Cooked Nine Tail,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; },{},{}
-12255,Vit_Dish10_M,Immortal Stew,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,3600000,10; percentheal 25,0; },{},{}
-12256,PRO_Gift_Box,PRO Gift Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12257,Cold_Medicine,Cold Medicine,0,20,,100,,,,,0xFFFFFFFF,7,2,,,50,,,{ percentheal 25,25; },{},{}
-12258,Bombring_Box,Bomb Poring Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } },{},{}
-12259,Miracle_Medicine,Miracle Tonic,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getexp2(3000000,1500000); },{},{}
-12260,Cool_Summer_Outfit,Cool Summer Outfit,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Summer,600000,0; },{},{}
-12261,Secret_Medicine,Leap of Fantasy,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getexp2(2000000,1000000); },{},{}
-12262,Inspector_Certificate_,Authoritative Badge,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,540000,25; },{},{}
-12263,Comp_Battle_Manual,Field Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{}
-12264,Comp_Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{}
-12265,Comp_Insurance,Life Insurrance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{}
-12266,Sesame_Pastry_,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,1200000,30; },{},{}
-12267,Honey_Pastry_,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,1200000,30; },{},{}
-12268,Rainbow_Cake_,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,120000,10; },{},{}
-12269,Tasty_Colonel,Tasty Pink Ration,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,600000,15; },{},{}
-12270,Tasty_Major,Tasty White Ration,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,600000,15; },{},{}
-12271,Mre_A,Military Ration A,0,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; },{},{}
-12272,Mre_B,Military Ration B,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCHIT,600000,33; },{},{}
-12273,Mre_C,Military Ration C,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCFLEE,600000,33; },{},{}
-12274,Gold_Pill_1,Daehwandan,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCMHPRATE,3600000,5; percentheal 10,0; },{},{}
-12275,Gold_Pill_2,Taecheongdan,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCMSPRATE,3600000,5; percentheal 0,10; },{},{}
-12276,Mimic_Scroll,Mimic Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2058,1800000; },{},{}
-12277,Disguise_Scroll,Disguise Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2059,1800000; },{},{}
-12278,Alice_Scroll,Alice Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2060,1800000; },{},{}
-12279,Undead_Element_Scroll,Undead Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; },{},{}
-12280,Holy_Element_Scroll,Holy Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; },{},{}
-12281,Tresure_Box_WoE,Event Treasure Box,2,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Tresure_Box_WoE),1; },{},{}
-12282,Internet_Cafe1,Internet Cafe1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; },{},{}
-12283,Internet_Cafe2,Internet Cafe2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12284,Internet_Cafe3,Internet Cafe3,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; },{},{}
-12285,Internet_Cafe4,Internet Cafe4,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12286,Masquerade_Ball_Box2,Masquerade Ball Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Masquerade_2),1; },{},{}
-12287,Love_Angel,Love Angel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 1; },{},{ setfont 0; }
-12288,Squirrel,Squirrel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 2; },{},{ setfont 0; }
-12289,Gogo,Gogo Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 3; },{},{ setfont 0; }
-12290,Mysterious_Can,Mysterious Can Magic Powder,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; },{},{}
-12291,Mysterious_PET_Bottle,Mysterious PET Bottle,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; },{},{}
-12292,Unripe_Fruit,Unripe Fruit,0,500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 20,0; },{},{}
-12293,Dried_Yggdrasilberry,Dried Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{}
-12294,PC_Bang_Coin_Box1,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2740,1; },{},{}
-12295,PC_Bang_Coin_Box2,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2739,1; },{},{}
-12296,PC_Bang_Coin_Box3,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2738,1; },{},{}
-12297,PC_Bang_Coin_Box4,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2738,2; },{},{}
-12298,SP_Potion,SP Consumption Reduction Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPCOST_RATE,3600000,15; },{},{}
-12299,Mega_Resist_Potion,Mega Resist Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_COMMONSC_RESIST,3600000,10; },{},{}
-12300,Wild_Rose_Scroll,Wild Rose Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1965,1800000; },{},{}
-12301,Doppelganger_Scroll,Doppelganger Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1966,1800000; },{},{}
-12302,Ygnizem_Scroll,Egnigem Cenia Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1967,1800000; },{},{}
-12303,Water_Of_Blessing,Blessing Of Water,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12304,Picture_Diary,Diary Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 4; },{},{ setfont 0; }
-12305,Mini_Heart,Mini Heart Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 5; },{},{ setfont 0; }
-12306,Newcomer,Freshman Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 6; },{},{ setfont 0; }
-12307,Kid,Kid Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 7; },{},{ setfont 0; }
-12308,Magic_Castle,Magic Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 8; },{},{ setfont 0; }
-12309,Bulging_Head,JJangu Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 9; },{},{ setfont 0; }
-12310,Spray_Of_Flowers,Spray Of Flowers,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCFLEE,600000,10; },{},{}
-12311,Large_Spray_Of_Flowers,Huge Spray Of Flowers,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_PARTYFLEE",1; },{},{}
-12312,Thick_Manual50,Thick Battle Manual,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,3600000,50; },{},{}
-12313,Protection_Of_Angel,Guardian Angel,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12314,Noive_Box,Noive Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12315,Goddess_Bless,Goddess Of Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12316,Angel_Bless,Angel Of Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12317,Powder_Snow,Snow Powder,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12318,Little_Heart,Small Hearts,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12319,Strawberry_Cake,Rune Strawberry Cake,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; },{},{}
-12320,Pineapple_Juice,Schwarzwald Pine Jubilee,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCHIT,600000,10; sc_start SC_INCFLEE2,600000,20; },{},{}
-12321,Spicy_Sandwich,Arunafeltz Desert Sandwich,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCCRI,600000,7; },{},{}
-12322,Chocolate_Pie,Chocolate Pie,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{}
-12323,N_Fly_Wing,Novice Fly Wing,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-12324,N_Butterfly_Wing,Novice Butterfly Wing,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{}
-12325,N_Magnifier,Novice Magnifier,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{}
-12326,J_Firecracker,Large Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12327,Charm_Of_Luck,Charm Of Luck,2,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12328,Charm_Of_Happiness,Charm Of Happiness,2,1800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{}
-12329,Recall_MaleGM,Summon Male GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2000,1800000; },{},{}
-12330,Recall_FemaleGM,Summon Female GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2001,1800000; },{},{}
-12331,Ginseng,Ginseng,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 6,0; },{},{}
-12332,Fruit_Juice,Fruit Juice,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,6; },{},{}
-12333,Ansila,Ancilla,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,15; },{},{}
-12334,Cherish_Box,Treasure Edition Helm Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Cherish_Box),1; },{},{}
-12335,Yummy_Skewered_Dish,Grilled Delicious Skewer,0,1000,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 60,60; },{},{}
-12336,Baked_Mushroom,Grilled Mushroom,0,500,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; },{},{}
-12337,Grilled_Sausage,Grilled Sausages,0,300,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 20,20; },{},{}
-12338,Grilled_Corn,Grilled Corn,2,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; },{},{}
-12339,Cherish_Box_Ori,Treasure Edition Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Cherish_Box_Ori),1; },{},{}
-12340,Mysterious_Rice_Powder,Chewy Rice Powder,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1815; },{},{}
-12341,Special_Alloy_Trap_Box,Special Alloy Trap Box,2,30000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7940,100; },{},{}
-12342,Manuk's_Opportunity,Manuk's Opportunity,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; },{},{}
-12343,Manuk's_Courage,Manuk's Courage,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; },{},{}
-12344,Pinguicula's_fruit_Jam,Pinguicula's Fruit Jam,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; },{},{}
-12345,Luciola's_Honey_Jam,Luciola's Honey Jam,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; },{},{}
-12346,Unripe_Acorn,Unripe Acorn,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ heal -100,0; },{},{}
-12347,Acorn_Jelly,Acorn Jelly,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_REVERSEORCISH",1; },{},{}
-12348,Manuk's_Faith,Manuk's Faith,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; },{},{}
-12349,Cornus'_Tears,Cornus' Tears,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; },{},{}
-12350,Angeling_Potion,Angeling Potion,11,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; },{},{}
-12351,Shout_Megaphone,Scream Megaphone,11,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_LOUD",1; },{},{}
-12352,Dun_Tele_Scroll3,Dungeon Teleport Scroll 3,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",3; },{},{}
-12353,Tiny_Waterbottle,Small Bottle,2,800,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_WATERWEAPON,90000,1; },{},{}
-12354,Buche_De_Noel,Buche De Noel,2,2,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12355,Xmas_Gift,Xmas Gift,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Xmas_Gift),1; },{},{}
-12356,Louise_Costume_Box,Louise Costume Box,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Louise_Costume_Box),1; },{},{}
-12357,Shiny_Wing_Gown,Shiny Wing Gown,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1630; },{},{}
-12358,Fan_Of_Wind,Fan Of Wind,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1513; },{},{}
-12359,Very_Soft_Plant,Very Soft Plant,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1586; },{},{}
-12360,Very_Red_Juice,Very Red Juice,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1505; },{},{}
-12361,Delicious_Shaved_Ice,Delicious Shaved Ice,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1143; },{},{}
-12362,Kuloren,Kuloren,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1401; },{},{}
-12363,Fit_Pipe,Fit Pipe,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1179; },{},{}
-12364,Staff_Of_Leader,Staff Of Leader,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1299; },{},{}
-12365,Charming_Lotus,Charming Lotus,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1416; },{},{}
-12366,Gril_Doll,Girl's Doll,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1404; },{},{}
-12367,Luxury_Whisky_Bottle,Luxury Whisky Bottle,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1504; },{},{}
-12368,Splendid_Mirror,Splendid Mirror,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1148; },{},{}
-12369,Oilpalm_Coconut,Oilpalm Coconut,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1495; },{},{}
-12370,Gril's_Naivety,Girl's Naivety,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1374; },{},{}
-12371,Magical_Lithography,Magical Lithography,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1040; },{},{}
-12372,Hell_Contract,Hell Contract,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1379; },{},{}
-12373,Boy's_Naivety,Boy's Pure Heart,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1370; },{},{}
-12374,Flaming_Ice,Ice Fireworks,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1837; },{},{}
-12375,Acaraje,Akaraje,2,0,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; },{},{}
-12376,Mysterious_Can2,Mysterious Can2,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 3,0; itemskill "PR_GLORIA",2; },{},{}
-12377,Mysterious_PET_Bottle2,Mysterious PET Bottle2,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,3; itemskill "PR_MAGNIFICAT",1; },{},{}
-12378,2009_Rice_Cake_Soup,Rice Cake Soup,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ /* percentheal 50,50; */ },{},{}
-12379,Pope's_Cookie,Pope Cookie,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12380,Desert_Wolf_Babe_Scroll,Job Change Flute,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2034,1800000; },{},{}
-12381,ValkyrieA_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } },{},{}
-12382,ValkyrieB_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } },{},{}
-12383,Vulcan_Bullet_Magazine,Vulcan Bullet Magazine,2,11000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6145,1000; },{},{}
-12384,Rainbow_Ruby_Water,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */ },{},{}
-12385,Rainbow_Ruby_Fire,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */ },{},{}
-12386,Rainbow_Ruby_Wind,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */ },{},{}
-12387,Rainbow_Ruby_Earth,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */ },{},{}
-12388,Runstone_Crush,Rhydo Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */ },{},{}
-12389,Runstone_Storm,Pertz Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */ },{},{}
-12390,Runstone_Millennium,Verkana Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */ },{},{}
-12391,Lucky_Egg_C,Lucky Egg,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12392,RepairA,Repair A,2,220,,100,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(200,300),0; } },{},{}
-12393,RepairB,Repair B,2,500,,140,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(300,400),0; } },{},{}
-12394,RepairC,Repair C,2,1100,,180,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(400,500),0; } },{},{}
-12395,Tantanmen,Tantan Noodle,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1519; },{},{}
-12396,Fools_Day_Box,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ .@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; },{},{}
-12397,Fools_Day_Box2,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ .@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; },{},{}
-12398,PCBang_Gift_Box,PCBang Gift Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12399,Castle_Treasure_Box,Castle Treasure Box,2,20,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ Zeny += 1000000; },{},{}
-12400,Water_Of_Blessing_,Water Of Blessing,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12401,Rune_Kn_Test_Int,Rune Kn Test Int,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,300000,40; },{},{}
-12402,29Fruit,29Fruit,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{}
-12403,Lucky_Egg_C2,Lucky Egg2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12404,Acti_Potion,Acti Potion,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12405,Underripe_Yggseed,Underripe Yggseed,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; },{},{}
-12406,Psychic_ArmorS,Psychic ArmorS,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12407,PCBang_Coupon_Box,PCBang Coupon Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12408,Leaf_Cat_Ball,Leaf Cat Ball,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 2081; },{},{}
-12409,Pork_Belly_H,1st Class Pork Belly,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12410,Spareribs_H,Thick Pork Belly H,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12411,HE_Battle_Manual,HE Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,900000,200; },{},{}
-12412,HE_Bubble_Gum,HE Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,900000,300; },{},{}
-12413,PCBang_Coupon_Box2,PCBang Coupon Box2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12414,Guarana_Candy,Guarana Candy,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; },{},{}
-12415,Siege_Teleport_Scroll2,Siege Teleport Scroll Silver,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12416,Lucky_Egg_C3,Lucky Egg C3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12417,Boost500,Boost500,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BOOST500,500000,10; },{},{}
-12418,Full_SwingK,Full SwingK,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FULL_SWING_K,500000,50; },{},{}
-12419,Mana_Plus,Mana Plus,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MANA_PLUS,500000,50; },{},{}
-12420,Stamina_Up_M,Stamina Up M,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MUSTLE_M,500000,5; },{},{}
-12421,Digestive_F,Falmons F,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{}
-12422,HP_Increase_PotionS,HP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; },{},{}
-12423,HP_Increase_PotionM,HP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; },{},{}
-12424,HP_Increase_PotionL,HP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; },{},{}
-12425,SP_Increase_PotionS,SP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; },{},{}
-12426,SP_Increase_PotionM,SP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; },{},{}
-12427,SP_Increase_PotionL,SP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; },{},{}
-12428,Enrich_White_PotionZ,Concentrated White Potion Z,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; },{},{}
-12429,Savage_BBQ,Savage Full Roast,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{}
-12430,Wug_Blood_Cocktail,Cocktail Warg Blood,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{}
-12431,Minor_Brisket,Minor Stew,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MINOR_BBQ,300000,20; },{},{}
-12432,Siroma_Icetea,Siroma Iced Tea,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{}
-12433,Drocera_Herb_Stew,Drosera Herb Salad,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{}
-12434,Petti_Tail_Noodle,Petite Tail Noodles,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{}
-12435,Black_Thing,Black Mass,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{}
-12436,Vitata500,Vitata 500,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITATA_500,500000,0; itemheal 0,200; },{},{}
-12437,Enrich_Celermine_Juice,Concentrated Ceromain Soup,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{}
-12438,F_Giant_Fly_Wing,F Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12439,F_Battle_Manual,F Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12440,F_Insurance,F Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12441,F_Bubble_Gum,F Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12442,F_Kafra_Card,F Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12443,F_Neuralizer,F Neuralizer,2,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12444,F_Dun_Tele_Scroll1,F Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12445,F_Str_Dish10_,F Str Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12446,F_Agi_Dish10_,F Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12447,F_Int_Dish10_,F Int Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12448,F_Dex_Dish10_,F Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12449,F_Luk_Dish10_,F Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12450,F_Vit_Dish10_,F Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12451,F_WOB_Rune,F WOB Rune,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12452,F_WOB_Schwaltz,F WOB Schwarz,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12453,F_WOB_Rachel,F WOB Rachel,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12454,F_WOB_Local,F WOB Local,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12456,F_Greed_Scroll,F Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12457,F_Glass_Of_Illusion,F Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12458,F_Abrasive,F Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12459,F_Med_Life_Potion,F Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12460,F_Small_Life_Potion,F Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12461,F_Regeneration_Potion,F Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12462,F_B_Mdef_Potion,F B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12463,F_S_Mdef_Potion,F S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12464,F_B_Def_Potion,F B Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12465,F_S_Def_Potion,F S Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12466,F_Blessing_10_Scroll,F Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12467,F_Inc_Agi_10_Scroll,F Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12468,F_Aspersio_5_Scroll,F Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12470,F_Wind_Walk_10_Scroll,F Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12471,F_Adrenaline_Scroll,F Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12472,F_Convex_Mirror,F Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12473,RWC_Parti_Box,RWC Parti Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12474,RWC_Final_Comp_Box,RWC Final Comp Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12475,Cure_Free,Cure Free,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-12476,PCBang_Coupon_Box3,PCBang Coupon Box3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12477,Gift_Bundle,Gift Bundle,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12478,Chance_Box,Chance Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12479,Caracas_Ring_Box,Caracas Ring Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12480,Attend_3Day_Box,Attend 3Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12481,Attend_7Day_Box,Attend 7Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12482,Attend_10Day_Box,Attend 10Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12483,Attend_15Day_Box,Attend 15Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12484,Attend_20Day_Box,Attend 20Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12485,Attend_25Day_Box,Attend 25Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12486,GoldPC_First_Box,GoldPC First Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12487,PC_4Leaf_Clover_Box,PC 4Leaf Clover Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12488,Ticket_Gift_Box,Ticket Gift Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12489,Ticket_Gift_Box2,Ticket Gift Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12490,Vivid_Notation,Vivid Notation,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12491,Curious_Snowball,Curious Snowball,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_Snowball"; },{},{}
-12492,Crumpled_Paper,Crumpled Paper,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12493,Lucky_Egg_C4,Lucky Egg C4,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12494,E_Giant_Fly_Wing,E Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12495,E_Battle_Manual,E Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12496,E_Insurance,E Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12497,E_Bubble_Gum,E Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12498,E_Kafra_Card,E Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12499,E_Neuralizer,E Neuralizer,2,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12500,E_Dun_Tele_Scroll1,E Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12501,E_Str_Dish10_,E Str Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12502,E_Agi_Dish10_,E Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12503,E_Int_Dish10_,E Int Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12504,E_Dex_Dish10_,E Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12505,E_Luk_Dish10_,E Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12506,E_Vit_Dish10_,E Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12507,E_WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",1; },{},{}
-12508,E_WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",2; },{},{}
-12509,E_WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",3; },{},{}
-12510,E_WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",5; },{},{}
-12511,E_Siege_Teleport_Scroll,E Siege Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12512,E_Greed_Scroll,E Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12513,E_Glass_Of_Illusion,E Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12514,E_Abrasive,E Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12515,E_Med_Life_Potion,E Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12516,E_Small_Life_Potion,E Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12517,E_Regeneration_Potion,E Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12518,E_B_Mdef_Potion,E B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12519,E_S_Mdef_Potion,E S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12520,E_B_Def_Potion,E B Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12521,E_S_Def_Potion,E S Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12522,E_Blessing_10_Scroll,E Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12523,E_Inc_Agi_10_Scroll,E Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12524,E_Aspersio_5_Scroll,E Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12525,E_Assumptio_5_Scroll,E Assumptio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12526,E_Wind_Walk_10_Scroll,E Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12527,E_Adrenaline_Scroll,E Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12528,E_Convex_Mirror,E Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12529,White_Slim_Potion_Box,White Slim Potion Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12530,Mastela_Fruit_Box,Mastela Fruit Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12531,White_Potion_Box,White Potion Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12532,Royal_Jelly_Box2,Royal Jelly Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12533,Blue_Herb_Box2,Blue Herb Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12534,Yggdrasil_Seed_Box,Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12535,Iggdrasilberry_Box,Iggdrasilberry Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12536,NY_Rice_Cake_Soup,NY Rice Cake Soup,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12537,Solo_Gift_Basket,Solo Gift Basket,2,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12538,Couple_Event_Basket,Couple Event Basket,2,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12539,Splendid_Box,Splendid Box,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12540,GM_Warp_Box,GM Warp Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12541,Fortune_Cookie1,Fortune Cookie1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12542,Fortune_Cookie2,Fortune Cookie2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12543,Fortune_Cookie3,Fortune Cookie3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12544,Mystic_Tree_Branch,Mystic Tree Branch,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12545,Lucky_Egg_C5,Lucky Egg C5,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12546,Suspicious_Dish,Suspicious Dish,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12547,Chalcenodny_Box,Chalcenodny Box,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12548,Buy_Market_Permit2,Shabby Purchase Street Stall License,2,500,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ buyingstore 2; },{},{}
-12549,White_Slim_Pot_Box2,White Slim Pot Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12550,Poison_Bottle_Box2,Poison Bottle Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12551,MVP_Tele_Scroll,MVP Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12552,Quest_Tele_Scroll,Quest Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12553,Brysinggamen_Piece_Box,Brysinggamen Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12554,Asprika_Piece_Box,Asprika Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12555,Brynhild_Piece_Box,Brynhild Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12556,Sleipnir_Piece_Box,Sleipnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12557,Mjolnir_Piece_Box,Mjolnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12558,Magingiorde_Piece_Box,Magingiorde Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12559,Tenkaippin_Strong,Tenkaippin Strong,2,650,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12560,Tenkaippin_Clean,Tenkaippin Clean,2,650,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12561,Mysterious_Seed,Mysterious Seed,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12562,Bubble_Gum_Plus,Bubble Gum Plus,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12563,BM75,BM75,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12564,3D_Glasses_Box,3D Glasses Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12565,Cheer_Scarf_Box,Cheer Scarf Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12566,Cheer_Scarf2_Box,Cheer Scarf2 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12567,Cheer_Scarf3_Box,Cheer Scarf3 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12568,Cheer_Scarf4_Box,Cheer Scarf4 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12569,Cheer_Scarf6_Box,Cheer Scarf6 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12570,Cheer_Scarf8_Box,Cheer Scarf8 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12571,Cheer_Scarf10_Box,Cheer Scarf10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12572,Cheer_Scarf10_Box2,Cheer Scarf10 Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12573,Fruit_Basket,Fruit Basket,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12574,Mora_Berry,Mora Berry,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12575,Arrow_Of_Elf_Cntr,Arrow Of Elf Cntr,2,500,,250,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12576,Hunting_Arrow_Cntr,Hunting Arrow Cntr,2,500,,250,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12577,Lucky_Egg_C6,Lucky Egg C6,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12578,Rapid_Life_Water,Rapid Life Water,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12579,Ring_Of_Valkyrie_Box,Ring Of Valkyrie Box,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12580,Vending_Search_Scroll,Universal Catalog Silver,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,0; },{},{}
-12581,Vending_Search_Scroll2,Universal Catalog Gold,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,1; },{},{}
-12591,Uni_Catalog_Bz,Universal Catalog Bronze,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,1; },{},{}
-12609,Old_Ore_Box,Old Ore Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12701,Old_Blue_Box_F,Old Blue Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12702,Old_Bleu_Box,Old Navy Box,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1; },{},{}
-12703,Holy_Egg_2,Holy Egg,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12704,Elixir_Of_Life,Elixir of Life,0,0,,10,,,,,0xFFFFFFFF,7,2,,,85,,,{ percentheal 100,0; },{},{}
-12705,Noble_Nameplate,Noble Nameplate,2,0,,100,,,,,0xFFFFFFFF,7,2,,,90,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{}
-12706,Lucky_Cookie01,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_GLORIA",5; },{},{}
-12707,Lucky_Cookie02,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",1; },{},{}
-12708,Lucky_Cookie03,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_IMPOSITIO",3; },{},{}
-12709,Guyak_Candy,Guyak Candy,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; },{},{}
-12710,Guyak_Pudding,Guyak Pudding,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP1,300000,50; },{},{}
-12711,Pretzel,Pretzel,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-12712,Green_Beer,Green Beer,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,50; },{},{}
-12713,Monster_Extract,Monster Extract,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12714,Easter_Scroll,Easter Scroll,2,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Easter_Scroll),1; },{},{}
-12715,Black_Treasure_Box,Black Treasure Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12716,Indian_Rice_Cake,Indian Rice Cake,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-// Guillotine Cross Poisons
-12717,Poison_Paralysis,Paralyze,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PARALYSE,300000,0,10,0; },{},{}
-12718,Poison_Leech,Leech End,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LEECHESEND,300000,0,10,0; },{},{}
-12719,Poison_Oblivion,Oblivion Curse,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_OBLIVIONCURSE,300000,0,10,0; },{},{}
-12720,Poison_Contamination,Disheart,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEATHHURT,300000,0,10,0; },{},{}
-12721,Poison_Numb,Toxin,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_TOXIN,300000,0,10,0; },{},{}
-12722,Poison_Fever,Pyrexia,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PYREXIA,300000,0,10,0; },{},{}
-12723,Poison_Laughing,Magic Mushroom,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MAGICMUSHROOM,300000,0,10,0; },{},{}
-12724,Poison_Fatigue,Venom Bleed,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VENOMBLEED,15000,0,10,0; },{},{}
-
-// Rune Knight's Rune Stones
-12725,Runstone_Nosiege,Nauthiz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; },{},{}
-12726,Runstone_Rhydo,Raido Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; },{},{}
-12727,Runstone_Verkana,Berkana Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; },{},{}
-12728,Runstone_Isia,Isa Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; },{},{}
-12729,Runstone_Asir,Othila Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; },{},{}
-12730,Runstone_Urj,Uruz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; },{},{}
-12731,Runstone_Turisus,Thurisaz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; },{},{}
-12732,Runstone_Pertz,Wyrd Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; },{},{}
-12733,Runstone_Hagalas,Hagalaz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; },{},{}
-
-// Rune Knight Rune Ores
-12734,Runstone_Quality,Luxurious Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 5; },{},{}
-12735,Runstone_Ancient,Ancient Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 11; },{},{}
-12736,Runstone_Mystic,Mystic Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 14; },{},{}
-12737,Runstone_Ordinary,General Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 2; },{},{}
-12738,Runstone_Rare,Rare Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 8; },{},{}
-
-12739,Snow_Flower,Snow Flowers,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12740,Inc_Str_Scroll,Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12741,Inc_Int_Scroll,Intellect Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12742,Valentine_Gift_Box1,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12743,Valentine_Gift_Box2,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12744,Chocotate_Box,Chocolate Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12745,Skull_Scroll,Skull Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12746,Destruction_Scroll,Destruction Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12747,Royal_Scroll,Royal Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12748,Immune_Scroll,Immune Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12749,Mystic_Scroll,Mystic Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12750,Battle_Scroll,Battle Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12751,Armor_Scroll,Armor Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12752,Prayer_Scroll,Prayer Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12753,Soul_Scroll,Soul Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12754,New_Year_Bun,Chinese Pastel,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12755,Traditional_Firecrack,Chinese Fireworks,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ },{},{}
-12756,New_Gift_Envelope,Chinese New Year Envelope,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12757,Loyal_Ring1_Box,Loyal Ring1 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12758,Loyal_Ring2_Box,Loyal Ring2 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12759,Loyal_Ring3_Box,Loyal Ring3 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12760,Bubble_Gum_Green,Bubble Gum Green,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12761,Bubble_Gum_Yellow,Bubble Gum Yellow,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12762,Bubble_Gum_Orange,Bubble Gum Orange,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12763,Bubble_Gum_Red,Bubble Gum Red,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12764,Fools_Day_Box_Tw,Fools Day Box Tw,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12765,Summer_Knight_Box,Summer Knight Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12766,Reward_Job_BM25,Reward Job BM25,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12767,Passion_FB_Hat_Box,Passion FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12768,Cool_FB_Hat_Box,Cool FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12769,Victory_FB_Hat_Box,Victory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12770,Glory_FB_Hat_Box,Glory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12771,Passion_Hat_Box2,Passion Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12772,Cool_Hat_Box2,Cool Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12773,Victory_Hat_Box2,Victory Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12831,Potion_Box,Potion Box,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12848,Falcon_Flute,Falcon Flute,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } },{},{}
-12900,Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; },{},{}
-12901,Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,10; },{},{}
-12902,Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,10; },{},{}
-12903,Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,10; },{},{}
-12904,Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,10; },{},{}
-12905,Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; },{},{}
-12906,Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,10; },{},{}
-12907,Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,10; },{},{}
-12908,Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,10; },{},{}
-12909,Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,10; },{},{}
-12910,Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,10; },{},{}
-12911,Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12213,1; },{},{}
-12912,Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,10; },{},{}
-12913,Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{}
-12914,Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{}
-12915,Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,10; },{},{}
-12916,Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,10; },{},{}
-12917,Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{}
-12918,Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{}
-12919,Megaphone_Box,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,10; },{},{}
-12920,Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,10; },{},{}
-12921,Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,10; },{},{}
-12922,Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,10; },{},{}
-12923,Pet_Egg_Scroll_Box1,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12925,1; },{},{}
-12924,Pet_Egg_Scroll_Box2,Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12926,1; },{},{}
-12925,Pet_Egg_Scroll1,Kafra Item Mall Prize Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12926,Pet_Egg_Scroll2,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12927,J_Aspersio_5_Scroll_Box,Aspersio Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12928,10; },{},{}
-12928,J_Aspersio_5_Scroll,Sacred Scroll,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{}
-12929,Pet_Egg_Scroll_Box3,Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12932,1; },{},{}
-12930,Pet_Egg_Scroll_Box4,Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12933,1; },{},{}
-12931,Pet_Egg_Scroll_Box5,Pet Egg Box 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12934,1; },{},{}
-12932,Pet_Egg_Scroll3,Episode 13.2 Key Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12933,Pet_Egg_Scroll4,Summer Hat Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12934,Pet_Egg_Scroll5,Pet Egg Scroll5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12935,Infiltrator_Box,Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{}
-12936,Muramasa_Box,Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{}
-12937,Excalibur_Box,Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{}
-12938,Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{}
-12939,Counter_Dagger_Box,Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{}
-12940,Kaiser_Knuckle_Box,Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{}
-12941,Pole_Axe_Box,Poll Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1419,604800; },{},{}
-12942,Mighty_Staff_Box,Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{}
-12943,Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{}
-12944,Balistar_Box,Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{}
-12945,Diary_Of_Great_Sage_Box,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{}
-12946,Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{}
-12947,Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{}
-12948,Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{}
-12949,Sahkkat_Box,Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{}
-12950,Lord_Circlet_Box,Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{}
-12951,Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,604800; },{},{}
-12952,Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{}
-12953,Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{}
-12954,Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{}
-12955,Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{}
-12956,Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{}
-12957,Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{}
-12958,Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{}
-12959,Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{}
-12960,Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{}
-12961,Vesper_Core01_Box,Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{}
-12962,Vesper_Core02_Box,Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{}
-12963,Vesper_Core03_Box,Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{}
-12964,Vesper_Core04_Box,Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{}
-12965,Emergency_Box1,Emergency Level 1 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12968,1; },{},{}
-12966,Emergency_Box2,Emergency Level 2 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12969,1; },{},{}
-12967,Emergency_Box3,Emergency Level 3 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12970,1; },{},{}
-12968,Emergency_Scroll1,Emergency Level 1 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; },{},{}
-12969,Emergency_Scroll2,Emergency Level 2 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; },{},{}
-12970,Emergency_Scroll3,Emergency Level 3 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; },{},{}
-12971,Teleport_Box1,Teleport Scroll Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12977,10; },{},{}
-12972,Teleport_Box2,Teleport Scroll Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12978,10; },{},{}
-12973,Teleport_Box3,Teleport Scroll Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12979,10; },{},{}
-12974,Teleport_Box4,Teleport Scroll Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12980,10; },{},{}
-12975,Teleport_Box5,Teleport Scroll Box 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12981,10; },{},{}
-12976,Teleport_Box6,Teleport Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12982,10; },{},{}
-12977,Teleport_Scroll1,Teleport Scroll 1,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",1; },{},{}
-12978,Teleport_Scroll2,Teleport Scroll 2,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",2; },{},{}
-12979,Teleport_Scroll3,Teleport Scroll 3,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",3; },{},{}
-12980,Teleport_Scroll4,Teleport Scroll 4,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",4; },{},{}
-12981,Teleport_Scroll5,Teleport Scroll 5,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",5; },{},{}
-12982,Teleport_Scroll6,Teleport Scroll 6,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",6; },{},{}
-12983,Pet_Egg_Scroll_Box6,Pet Egg Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12989,1; },{},{}
-12984,Pet_Egg_Scroll_Box7,Pet Egg Scroll Box 7,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12990,1; },{},{}
-12985,Pet_Egg_Scroll_Box8,Pet Egg Scroll Box 8,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12991,1; },{},{}
-12986,Pet_Egg_Scroll_Box9,Adventurer Pack Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12992,1; },{},{}
-12987,Pet_Egg_Scroll_Box10,Pet Egg Scroll Box 10,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12993,1; },{},{}
-12988,Pet_Egg_Scroll_Box11,Pet Egg Scroll Box 11,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12994,1; },{},{}
-12989,Pet_Egg_Scroll6,Pet Egg Scroll 6,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12990,Pet_Egg_Scroll7,Pet Egg Scroll 7,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12991,Pet_Egg_Scroll8,Party Hard Pack,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12992,Pet_Egg_Scroll9,Adventurer Pack,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12993,Pet_Egg_Scroll10,Pet Egg Scroll 10,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12994,Pet_Egg_Scroll11,Pet Egg Scroll 11,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-12995,White_Herb_Box,White Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 509,15; },{},{}
-12996,Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 510,15; },{},{}
-12997,Elunium_Box,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 985,5; },{},{}
-12998,Oridecon_Box,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,5; },{},{}
-12999,Branch_Of_Dead_Tree_Box,Dead Branch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,3; },{},{}
-// More Weapons
-//===================================================================
-// Daggers and Ninja Weapons
-13000,Jujube_Dagger,Jujube Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Wind; },{},{}
-13001,Dragon_Killer,Dragon Killer,5,20,,900,110,,1,0,0x3E9F7EEF,7,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-13002,Ginnungagap,Ginnungagap,5,20,,700,148,,1,0,0x3E9F7EEF,7,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{}
-13003,Coward,Cowardice Blade,5,52000,,700,80,,1,1,0x02021040,7,2,2,3,55,1,1,{ bonus bDef,5; },{},{}
-13004,Coward_,Cowardice Blade,5,52000,,700,80,,1,2,0x02021040,7,2,2,3,55,1,1,{ bonus bDef,5; },{},{}
-13005,Angelwing_Short_Sword,Angelic Wing Dagger,5,20,,600,120,,1,2,0x00000001,7,2,2,4,50,1,1,{},{},{}
-13006,Khukri,Khukri,5,240000,,600,150,,1,0,0x02000000,7,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; },{},{}
-13007,Jitte,Jitte,5,20000,,400,70,,1,0,0x02000000,7,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{}
-13008,Jitte_,Jitte,5,20000,,400,70,,1,1,0x02000000,7,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{}
-13009,Kamaitachi,Kamaitachi,5,48000,,900,125,,2,0,0x02000000,7,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; },{},{}
-13010,Asura,Asura,5,3000,,600,50,,1,2,0x02000000,7,2,2,1,12,1,1,{ bonus bMatkRate,10; },{},{}
-13011,Asura_,Asura,5,3000,,600,50,,1,3,0x02000000,7,2,2,1,12,1,1,{ bonus bMatkRate,10; },{},{}
-13012,Murasame,Murasame,5,20,,700,95,,1,1,0x02000000,7,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-13013,Murasame_,Murasame,5,20,,700,95,,1,2,0x02000000,7,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-13014,Hakujin,Hakujin,5,20,,800,120,,1,0,0x02000000,7,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{}
-13015,Hakujin_,Hakujin,5,20,,800,120,,1,1,0x02000000,7,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{}
-13016,Poison_Knife_,Poison Knife,5,20,,800,64,,1,2,0x028F5EEE,7,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-13017,House_Auger_,Ice Pick,5,20,,600,70,,1,1,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{}
-13018,Sucsamad_,Sucsamad,5,20,,800,140,,1,1,0x028F5EEE,7,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{}
-13019,Ginnungagap_,Ginnungagap,5,20,,700,148,,1,1,0x3E9F7EEF,7,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{}
-13020,Warrior_Balmung_,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,7,2,2,4,48,1,1,{ bonus bAllStats,5; },{},{}
-13021,Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,7,2,2,4,1,0,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{}
-13022,Counter_Dagger_C,Dagger of Counter,5,1,,0,209,,1,0,0x00810204,7,2,2,4,1,0,1,{ bonus bCritical,90; },{},{}
-13023,Asura_C,Ashura,5,1,,0,120,,1,0,0x02000000,7,2,2,1,1,0,1,{ bonus bMatkRate,15; },{},{}
-13024,Sword_Breaker_C,Refined Swordbreaker,5,2,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bBreakWeaponRate,500; },{},{}
-13025,Mail_Breaker_C,Refined Mailbreaker,5,2,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bBreakArmorRate,500; },{},{}
-13026,Moonlight_Sword_C,Moonlight Dagger,5,2,,0,85,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{}
-13027,Scalpel,Scalpel,5,20,,500,120,,1,3,0x028F5EEE,2,2,2,4,55,1,1,{ bonus2 bAddEff,Eff_Bleeding,500; },{},{}
-13028,Tooth_Blade,Tooth Blade,5,20,,700,130,,1,1,0x028F5EEE,2,2,2,4,55,1,1,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; },{},{}
-13029,Prinsence_Knife,Prinsense Knife,5,20,,0,120,,1,0,0x028F5EEE,7,2,2,1,0,0,1,{ bonus2 bAddClass,Class_All,50; },{},{}
-13030,Dragon_Killer_,Dragon Killer,5,20,,900,110,,1,2,0x3E9F7EEF,7,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-13031,Sword_Breaker_,Swordbreaker,5,20,,1000,70,,1,3,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{}
-13032,Mail_Breaker_,Mailbreaker,5,20,,1000,70,,1,3,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{}
-13033,Assasin_Dagger_,Assassin Dagger,5,20,,600,140,,1,1,0x00001000,7,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{}
-13034,Twilight_Desert,Desert Twilight,5,20,,600,130,,1,2,0x00001000,2,2,2,2,70,1,1,{},{},{}
-13035,Sandstorm,Sandstorm,5,20,,600,50,,1,4,0x00001000,2,2,2,2,70,1,1,{},{},{}
-13036,BF_Dagger1,Brave Assassin's Damascus,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{}
-13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,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; },{},{}
-13038,Dagger_Of_Hunter,Dagger of Hunter,5,20,,700,120,,1,3,0x00020000,2,2,2,3,70,1,1,{ bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20; },{},{}
-13039,Ivory_Knife,Ivory Knife,5,20,,700,130,,1,2,0x028F5EEE,2,2,2,3,50,1,1,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; },{},{}
-13040,N_Cutter,Novice Cutter,5,0,,0,50,,1,3,0x3E9F7EEF,7,2,2,1,1,0,1,{},{},{}
-13041,N_Main_Gauche,Novice Main Gauche,5,0,,0,63,,1,3,0x3E9F7EEF,7,2,2,1,1,0,1,{},{},{}
-13042,Krieger_Dagger1,Glorious Gladius,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,4,80,1,1,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; },{},{}
-13043,Fortune_Sword_I,Fortune Sword,5,0,,0,120,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bLuk,5; },{},{}
-13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{},{},{}
-13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,7,2,2,4,0,0,1,{},{},{}
-13046,Krieg,Krierg,5,20,,500,110,,1,3,0x00021040,2,2,2,2,50,1,1,{ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; },{},{}
-13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,2,2,2,3,50,1,1,{ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-13048,Damascus_C,Damascus,5,0,,0,153,,1,0,0x028F5EEE,7,2,2,3,1,0,1,{ bonus2 bAddSize,Size_All,40; },{},{}
-// Revolvers
-13100,Six_Shooter,Six Shooter,5,4500,,400,30,,7,1,0x41000000,7,2,34,1,10,1,17,{ bonus bHit,-10; },{},{}
-13101,Six_Shooter_,Six Shooter,5,4500,,400,30,,7,2,0x41000000,7,2,34,1,10,1,17,{ bonus bHit,-10; },{},{}
-13102,Crimson_Bolt,Crimson Bolt,5,20000,,450,45,,7,1,0x41000000,7,2,34,2,35,1,17,{ bonus bHit,-10; },{},{}
-13103,Crimson_Bolt_,Crimson Bolt,5,20000,,450,45,,7,2,0x41000000,7,2,34,2,35,1,17,{ bonus bHit,-10; },{},{}
-13104,The_Garrison,Garrison,5,48000,,500,70,,7,1,0x41000000,7,2,34,2,55,1,17,{ bonus bHit,-10; },{},{}
-13105,The_Garrison_,Garrison,5,48000,,500,70,,7,2,0x41000000,7,2,34,2,55,1,17,{ bonus bHit,-10; },{},{}
-13106,Gold_Lux,Gold Lux,5,100000,,500,20,,7,0,0x41000000,7,2,34,3,12,1,17,{ bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; },{},{}
-13107,Wasteland_Outlaw,Wasteland's Outlaw,5,20,,580,68,,7,2,0x41000000,7,2,34,3,70,1,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; },{},{}
-13108,BF_Pistol1,Soldier Revolver,5,0,,0,70,,7,0,0x41000000,7,2,34,3,80,1,17,{ bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-13109,Wasteland_Outlaw_C,Wasteland Outlaw,5,20,,0,100,,7,0,0x41000000,7,2,34,3,0,0,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; },{},{}
-13110,Krieger_Pistol1,Glorious Pistol,5,0,,0,80,,7,0,0x41000000,7,2,34,4,80,1,17,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; } },{},{}
-//13111,Sharpshooter_Revolver
-13112,P_Revolver1,Eden Revlover I,5,0,,0,4,,7,0,0x41000000,7,2,34,1,26,0,17,{ bonus bHit,-5; },{},{}
-13113,P_Revolver2,Eden Revlover II,5,0,,0,60,,7,0,0x41000000,7,2,34,1,40,0,17,{ bonus bHit,-5; },{},{}
-// Guns
-13150,Branch,Branch,5,3000,,500,50,,9,3,0x41000000,7,2,34,1,1,1,18,{},{},{}
-13151,The_Cyclone,Cyclone,5,17500,,700,120,,9,1,0x41000000,7,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13152,The_Cyclone_,Cyclone,5,17500,,700,120,,9,2,0x41000000,7,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13153,Dusk,Dusk,5,23500,,750,150,,9,1,0x41000000,7,2,34,2,56,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13154,Rolling_Stone,Rolling Stone,5,12000,,900,135,,9,1,0x41000000,7,2,34,1,14,1,20,{ bonus bSplashRange,1; },{},{}
-13155,Black_Rose,Black Rose,5,32000,,900,180,,9,1,0x41000000,7,2,34,2,35,1,20,{ bonus bSplashRange,1; },{},{}
-13156,Gate_Keeper,Gate Keeper,5,56000,,1000,210,,9,0,0x41000000,7,2,34,2,24,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; },{},{}
-13157,Drifter,Drifter,5,80000,,2300,50,,9,1,0x41000000,7,2,34,2,55,1,19,{},{},{}
-13158,Butcher,Butcher,5,130000,,2500,75,,9,0,0x41000000,7,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; },{},{}
-13159,Butcher_,Butcher,5,130000,,2500,75,,9,1,0x41000000,7,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; },{},{}
-13160,Destroyer,Destroyer,5,110000,,1200,220,,9,0,0x41000000,7,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{}
-13161,Destroyer_,Destroyer,5,110000,,1200,220,,9,1,0x41000000,7,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{}
-13162,Inferno,Inferno,5,230000,,1250,280,,9,1,0x41000000,7,2,34,2,65,1,21,{},{},{}
-13163,Long_Barrel,Long Barrel,5,40000,,1000,150,,9,0,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{}
-13164,Long_Barrel_,Long Barrel,5,40000,,1000,150,,9,1,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{}
-13165,Jungle_Carbine,Jungle Carbine,5,56000,,700,170,,9,0,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{}
-13166,Jungle_Carbine_,Jungle Carbine,5,56000,,700,170,,9,1,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{}
-13167,Gate_KeeperDD,Gate Keeper-DD,5,72000,,1300,200,,9,0,0x41000000,7,2,34,4,70,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; },{},{}
-13168,Thunder_P,Thunder P,5,76000,,700,80,,9,1,0x41000000,7,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{}
-13169,Thunder_P_,Thunder P,5,76000,,700,80,,9,2,0x41000000,7,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{}
-13170,Lever_Action_Rifle,Lever Action Rifle,5,20,,770,138,,9,2,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; },{},{}
-13171,BF_Rifle1,Soldier Rifle,5,0,,0,50,,9,0,0x41000000,7,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13172,BF_Gatling_Gun1,Soldier Gatling Gun,5,0,,0,80,,9,0,0x41000000,7,2,34,3,80,1,19,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13173,BF_Shotgun1,Soldier Shotgun,5,0,,0,100,,9,0,0x41000000,7,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13174,BF_Launcher1,Soldier Grenade Launcher,5,0,,0,300,,9,0,0x41000000,7,2,34,3,80,1,21,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13175,Lever_Action_Rifle_C,Lever Action Rifle,5,20,,0,170,,9,0,0x41000000,7,2,34,3,0,0,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; },{},{}
-13176,Krieger_Rifle1,Glorious Rifle,5,0,,0,90,,9,0,0x41000000,7,2,34,4,80,1,18,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; } },{},{}
-13177,Krieger_Gatling1,Glorious Gatling Gun,5,0,,0,90,,9,0,0x41000000,7,2,34,4,80,1,19,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); } },{},{}
-13178,Krieger_Shotgun1,Glorious Shotgun,5,0,,0,110,,9,0,0x41000000,7,2,34,4,80,1,20,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,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,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } },{},{}
-13179,Krieger_Launcher1,Glorious Grenade Launcher,5,0,,0,330,,9,0,0x41000000,7,2,34,4,80,1,21,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; }"; } },{},{}
-// Bullets
-13200,Bullet,Bullet,10,1,,2,10,,,,0x41000000,7,2,32768,,1,,3,{},{},{}
-13201,Silver_Bullet,Silver Bullet,10,15,,2,15,,,,0x41000000,7,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{}
-13202,Shell_Of_Blood,Bloody Shell,10,30,,2,30,,,,0x41000000,7,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13203,Flare_Sphere,Flare Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Fire; },{},{}
-13204,Lighting_Sphere,Lightning Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Wind; },{},{}
-13205,Poison_Sphere,Poison Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{}
-13206,Blind_Sphere,Blind Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{}
-13207,Freezing_Sphere,Freezing Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Water; },{},{}
-// Shurikens & Kunais
-13250,Shuriken,Shuriken,10,4,,5,10,,,,0x02000000,7,2,32768,,1,,6,{},{},{}
-13251,Nimbus_Shuriken,Nimbus Shuriken,10,10,,5,30,,,,0x02000000,7,2,32768,,20,,6,{},{},{}
-13252,Flash_Shuriken,Flash Shuriken,10,20,,5,45,,,,0x02000000,7,2,32768,,40,,6,{},{},{}
-13253,Sharp_Leaf_Shuriken,Sharp Leaf Shuriken,10,40,,5,70,,,,0x02000000,7,2,32768,,60,,6,{},{},{}
-13254,Thorn_Needle_Shuriken,Thorn Needle Shuriken,10,100,,5,100,,,,0x02000000,7,2,32768,,80,,6,{},{},{}
-13255,Kunai_Of_Icicle,Icicle Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Water; },{},{}
-13256,Kunai_Of_Black_Soil,Black Earth Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Earth; },{},{}
-13257,Kunai_Of_Furious_Wind,High Wind Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-13258,Kunai_Of_Fierce_Flame,Heat Wave Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Fire; },{},{}
-13259,Kunai_Of_Deadly_Poison,Fell Poison Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{}
-// Genetic Created Bombs And Throwing Items
-13260,Apple_Bomb,Apple Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13261,Coconut_Bomb,Coconut Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13262,Melon_Bomb,Melon Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13263,Pineapple_Bomb,Pineapple Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13264,Banana_Bomb,Banana Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13265,Black_Lump,Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13266,Black_Hard_Lump,Hard Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13267,Very_Hard_Lump,Extremely Hard Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{}
-13268,Mysterious_Powder,Mysterious Powder,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MYSTERIOUS_POWDER,10000,2; },{},{}
-13269,Boost500_To_Throw,Throwing Boost 500,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_BOOST500,500000,10; },{},{}
-13270,Full_SwingK_To_Throw,Throwing Full Swing K,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_FULL_SWING_K,500000,50; },{},{}
-13271,Mana_Plus_To_Throw,Throwing Mana Plus,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MANA_PLUS,500000,50; },{},{}
-13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ 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; },{},{}
-13273,Stamina_Up_M_To_Throw,Throwing Muramura M,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MUSTLE_M,500000,5; },{},{}
-13274,Digestive_F_To_Throw,Throwing Falmons F,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{}
-13275,HP_Inc_PotS_To_Throw,Throwing Increase HP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13281,En_White_PotZ_To_Throw,Throwing Concentrated White Potion Z,10,100,,70,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; },{},{}
-13282,Vitata500_To_Throw,Throwing Vitata 500,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; },{},{}
-13283,En_Cel_Juice_To_Throw,Throwing Ceromain Soup,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{}
-13284,Savage_BBQ_To_Throw,Throwing Savage Full Roast,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{}
-13285,Wug_Cocktail_To_Throw,Throwing Cocktail Warg Blood,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{}
-13286,M_Brisket_To_Throw,Throwing Minor Stew,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MINOR_BBQ,300000,20; },{},{}
-13287,Siroma_Icetea_To_Throw,Throwing Siroma Iced Tea,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{}
-13288,Drocera_Stew_To_Throw,Throwing Drosera Herb Salad,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{}
-13289,Petti_Noodle_To_Throw,Throwing Petite Tail Soup,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{}
-13290,Black_Thing_To_Throw,Throwing Black Mass,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{}
-13294,Explosive_Kunai,Explosive Kunai,10,100,,30,50,,,,0x02000000,63,2,32768,,100,,7,{ bonus bAtkEle,Ele_Neutral; },{},{}
-// Ninja Fuuma Shurikens
-13300,Huuma_Bird_Wing,Huuma Wing Shuriken,5,90000,,3000,150,,1,0,0x02000000,7,2,34,4,65,1,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; },{},{}
-13301,Huuma_Giant_Wheel,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,3,0x02000000,7,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13302,Huuma_Giant_Wheel_,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,4,0x02000000,7,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13303,Huuma_Blaze,Huuma Blaze Shuriken,5,78000,,1500,185,,1,0,0x02000000,7,2,34,4,55,1,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; },{},{}
-13304,Huuma_Calm_Mind,Huuma Calm Mind,5,20,,1550,112,,1,2,0x02000000,7,2,34,3,70,1,22,{ bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; },{},{}
-13305,BF_Huuma_Shuriken1,Brave Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13306,BF_Huuma_Shuriken2,Valorous Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-13307,Krieger_Huuma_Shuriken1,Glorious Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,4,80,1,22,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,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,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } },{},{}
-13308,Huuma_Blaze_I,Huuma Blaze Shuriken,5,0,,0,230,,1,0,0x02000000,7,2,34,4,0,0,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2; },{},{}
-13309,Huuma_Giant_Wheel_C,Huuma Giant Wheel Shuriken,5,0,,0,99,,1,0,0x02000000,7,2,34,4,1,0,22,{ bonus2 bAddSize,Size_All,80; },{},{}
-// More 1-Handed Swords
-13400,Cutlas_,Cutlus,5,20,,900,150,,1,1,0x000654E2,7,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-13401,Excalibur_C,Excalibur,5,1,,0,199,,1,0,0x000654E2,7,2,2,4,1,0,2,{ bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; },{},{}
-13402,Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,7,2,2,4,0,0,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000; },{},{}
-13404,Platinum_Shotel,Platinum Shotel,5,20,,1500,130,,1,1,0x000654E2,7,2,2,4,55,1,2,{ bonus bCritical,50; },{},{}
-13405,Curved_Sword,Curved Sword,5,20,,800,125,,1,2,0x000654E2,7,2,2,4,55,1,2,{ bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; },{},{}
-13406,Edger,Edger,5,20,,0,120,,1,0,0x000654E2,7,2,2,1,0,0,2,{ bonus2 bAddClass,Class_All,50; },{},{}
-13407,Nagan_C,Refined Nagan,5,1,,0,148,,1,0,0x000654E2,7,2,2,4,0,0,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; },{},{}
-13408,Fire_Brand_C,Refined Fireblend,5,1,,0,120,,1,0,0x000654E2,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; },{},{}
-13409,Immaterial_Sword_C,Refined Immaterial Sword,5,1,,0,160,,1,0,0x000654E2,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{}
-13410,BF_Sword1,Valorous Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,7,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,7,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bMatkRate,10; bonus bUnbreakableWeapon; },{},{}
-13412,Twin_Edge_B,Twin Edge of Naght Sieger,5,20,,1500,150,,1,3,0x000654E2,2,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{}
-13413,Twin_Edge_R,Twin Edge of Naght Sieger,5,20,,1500,160,,1,3,0x000654E2,2,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{}
-13414,Elemental_Sword,Elemental Sword,5,20,,1200,105,,1,3,0x000654E2,2,2,2,3,70,1,2,{ 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; },{},{}
-13415,N_Falchion,Novice Falchion,5,0,,0,59,,1,3,0x000654E3,7,2,2,1,2,0,2,{},{},{}
-13416,Krieger_Onehand_Sword1,Glorious Flamberge,5,20,,0,130,,1,0,0x000654E3,7,2,2,4,80,1,2,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } },{},{}
-13417,Krieger_Onehand_Sword2,Glorious Rapier,5,20,,0,130,,1,0,0x000654E3,7,2,2,4,80,1,2,{ bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5; },{},{}
-13418,Krieger_Onehand_Sword3,Glorious Holy Avenger,5,20,,0,130,,1,0,0x000444A2,7,2,2,4,80,1,2,{ 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; },{},{}
-13419,Holy_Saber,Holy saber,5,20,,0,160,,1,0,0x000654E2,7,2,2,3,0,0,2,{},{},{}
-13420,Honglyun's_Sword,Honglyun's Sword,5,20,,1200,160,,1,1,0x000654E2,7,2,2,4,70,1,2,{ bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; },{},{}
-13421,Ruber,Ruber,5,20,,1500,170,,1,1,0x000444A2,2,2,2,3,50,1,2,{ autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-13422,Flamberge_C,Flamberge,5,0,,0,185,,1,0,0x00004080,7,2,2,3,1,0,2,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{}
-// More Cash Shop Items
-13500,Insurance60_Package,Life Insurrance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14500,10; },{},{}
-13501,Assorted_Scroll_Box,Experience Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13502,Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5279,604800; },{},{}
-13503,Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5280,604800; },{},{}
-13504,Deviruchi_Cap_Box,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5281,604800; },{},{}
-13505,Executioner_Box,Executioner Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1174,604800; },{},{}
-13506,Brood_Axe_Box,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1373,604800; },{},{}
-13507,Tomahawk_Box,Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1374,604800; },{},{}
-13508,Bow_Of_Rudra_Box,Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1729,604800; },{},{}
-13509,Cutlas_Box,Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13402,604800; },{},{}
-13510,Solar_Sword_Box,Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13403,604800; },{},{}
-13511,Sword_Breaker_Box,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13024,604800; },{},{}
-13512,Mail_Breaker_Box,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13025,604800; },{},{}
-13513,Moonlight_Sword_Box,Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13026,604800; },{},{}
-13514,Spanner_Box,Wrench Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1534,604800; },{},{}
-13515,Grape_Box,Grape Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 514,10; },{},{}
-13516,Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 526,5; },{},{}
-13517,Yggdrasilberry_Box,Yggdrasil Berry Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 607,3; },{},{}
-13518,Weapon_Card_Scroll_Box,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13558,1; },{},{}
-13519,Armor_Card_Scroll_Box,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13559,1; },{},{}
-13520,Helmet_Card_Scroll_Box,Helmet Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13560,1; },{},{}
-13521,Hood_Card_Scroll_Box,Garment Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13561,1; },{},{}
-13522,Hood_Card_Scroll_Box2,Shield Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13562,1; },{},{}
-13523,Shoes_Card_Scroll_Box,Shoes Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13563,1; },{},{}
-13524,Accy_Card_Scroll_Box,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13564,1; },{},{}
-13525,Zeny_Scroll_Box,Zeny Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14508,1; },{},{}
-13526,Pet_Egg_Scroll_Box1_,Pet Egg Scroll Box 12,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12925,30; },{},{}
-13527,Pet_Egg_Scroll_Box2_,Pet Egg Scroll Box 13,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12926,30; },{},{}
-13528,Pet_Egg_Scroll_Box3_,Pet Egg Scroll Box 14,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12932,30; },{},{}
-13529,Pet_Egg_Scroll_Box4_,Pet Egg Scroll Box 15,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12933,30; },{},{}
-13530,Pet_Egg_Scroll_Box5_,Pet Egg Scroll Box 16,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12934,30; },{},{}
-13531,Light_Red_Pot_Box,Light Red Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 598,50; },{},{}
-13532,Light_Orange_Pot_Box,Light Orange Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 599,50; },{},{}
-13533,Light_Yellow_Pot_Box,Light Yellow Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11500,50; },{},{}
-13534,Light_White_Pot_Box,Light White Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11501,50; },{},{}
-13535,Light_Center_Pot_Box,Light Concentration Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14509,20; },{},{}
-13536,Light_Awakening_Pot_Box,Light Awakening Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14510,20; },{},{}
-13537,Light_Berserk_Pot_Box,Light Berserk Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14511,20; },{},{}
-13538,Meteor_10_Scroll_Box,Meteor Storm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14512,10; },{},{}
-13539,Storm_10_Scroll_Box,Storm Gust Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14513,10; },{},{}
-13540,Vermilion_10_Scroll_Box,Lord of Vermilion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14514,10; },{},{}
-13541,Lex_Aeterna_Scroll_Box,Lex Aeterna Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14515,10; },{},{}
-13542,Magnificat_5_Scroll_Box,Magnificat Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14516,10; },{},{}
-13543,CP_Helm_Scroll_Box,Chemical Protection Helm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14517,10; getitem 7139,10; },{},{}
-13544,CP_Shield_Scroll_Box,Chemical Protection Shield Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14518,10; getitem 7139,10; },{},{}
-13545,CP_Armor_Scroll_Box,Chemical Protection Armor Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14519,10; getitem 7139,10; },{},{}
-13546,CP_Weapon_Scroll_Box,Chemical Protection Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14520,10; getitem 7139,10; },{},{}
-13547,Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{}
-13548,Big_Bun_Box,Big Bun Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,10; },{},{}
-13549,Pill__Box,Pill Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,10; },{},{}
-13550,Superb_Fish_Slice_Box,Fish Slice Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14524,10; },{},{}
-13551,Chewy_Ricecake_Box,Chewy Ricecake Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14525,10; },{},{}
-13552,Oriental_Pastry_Box,Pastry Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14526,10; },{},{}
-13553,Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,5; },{},{}
-13554,Weapon_Card_Scroll_Box2,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13565,1; },{},{}
-13555,Weapon_Card_Scroll_Box3,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13566,1; },{},{}
-13556,Armor_Card_Scroll_Box2,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13567,1; },{},{}
-13557,Accy_Card_Scroll_Box2,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13568,1; },{},{}
-13558,Weapon_Card_Scroll,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13559,Armor_Card_Scroll,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13560,Helmet_Card_Scroll,Helmet Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13561,Hood_Card_Scroll,Garment Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13562,Hood_Card_Scroll2,Shield Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13563,Shoes_Card_Scroll,Shoes Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13564,Accy_Card_Scroll,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13565,Weapon_Card_Scroll2,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13566,Weapon_Card_Scroll3,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13567,Armor_Card_Scroll2,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13568,Accy_Card_Scroll2,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13569,PVP_Tele_Scroll_Box,PVP Teleport Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14528,10; },{},{}
-13570,Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,50; },{},{}
-13571,Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,100; },{},{}
-13572,Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,30; },{},{}
-13573,Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,50; },{},{}
-13574,Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,30; },{},{}
-13575,Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,50; },{},{}
-13576,Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,30; },{},{}
-13577,Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,50; },{},{}
-13578,Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,30; },{},{}
-13579,Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,50; },{},{}
-13580,Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,30; },{},{}
-13581,Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,50; },{},{}
-13582,Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,5; },{},{}
-13583,Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,30; },{},{}
-13584,Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,30; },{},{}
-13585,Blessing10_Box50,Blessing Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,50; },{},{}
-13586,Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,30; },{},{}
-13587,Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,50; },{},{}
-13588,Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,30; },{},{}
-13589,Assumptio_5_Box50,Assumptio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,50; },{},{}
-13590,Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,30; },{},{}
-13591,Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,50; },{},{}
-13592,Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,30; },{},{}
-13593,Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,50; },{},{}
-13594,Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,30; },{},{}
-13595,Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,50; },{},{}
-13596,Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,30; },{},{}
-13597,Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,50; },{},{}
-13598,Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,1; },{},{}
-13599,Battle_Manual_Box5,Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; },{},{}
-13600,Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,5; },{},{}
-13601,Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,20; },{},{}
-13602,Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,30; },{},{}
-13603,Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,50; },{},{}
-13604,Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,30; },{},{}
-13605,Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,50; },{},{}
-13606,Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,1; },{},{}
-13607,Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,5; },{},{}
-13608,Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,1; },{},{}
-13609,Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,5; },{},{}
-13610,Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,5; },{},{}
-13611,Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,5; },{},{}
-13612,Handcuff_Box,Arrest Handcuffs Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2706,1; },{},{}
-13613,Super_Pet_Egg_Box1,Super Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13617,1; },{},{}
-13614,Super_Pet_Egg_Box2,Super Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13618,1; },{},{}
-13615,Super_Pet_Egg_Box3,Super Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13619,1; },{},{}
-13616,Super_Pet_Egg_Box4,Super Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13620,1; },{},{}
-13617,Super_Pet_Egg1,Super Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13618,Super_Pet_Egg2,Super Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13619,Super_Pet_Egg3,Super Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13620,Super_Pet_Egg4,Super Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13621,Greed_Box30,Greed Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,30; },{},{}
-13622,Greed_Box50,Greed Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,50; },{},{}
-13623,Greed_Box100,Greed Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,100; },{},{}
-13624,Flee_30_Scroll_Box,Evasion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14530,1; },{},{}
-13625,Accuracy_30_Scroll_Box,Concentration Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14531,1; },{},{}
-13626,Super_Card_Pet_Egg_Box1,Super Card Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13630,1; },{},{}
-13627,Super_Card_Pet_Egg_Box2,Super Card Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13631,1; },{},{}
-13628,Super_Card_Pet_Egg_Box3,Super Card Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13632,1; },{},{}
-13629,Super_Card_Pet_Egg_Box4,Super Card Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13633,1; },{},{}
-13630,Super_Card_Pet_Egg1,Super Card Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13631,Super_Card_Pet_Egg2,Super Card Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13632,Super_Card_Pet_Egg3,Super Card Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13633,Super_Card_Pet_Egg4,Super Card Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13634,Vigorgra_Package1,1 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-13635,Vigorgra_Package2,1 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-13636,Vigorgra_Package3,1 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-13637,Vigorgra_Package4,1 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-13638,Vigorgra_Package5,1 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-13639,Vigorgra_Package6,1 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{}
-13640,Vigorgra_Package7,2 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-13641,Vigorgra_Package8,2 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-13642,Vigorgra_Package9,2 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-13643,Vigorgra_Package10,2 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-13644,Vigorgra_Package11,2 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-13645,Vigorgra_Package12,2 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{}
-13646,Infiltrator_Box1,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{}
-13647,Muramasa_Box1,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{}
-13648,Excalibur_Box1,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{}
-13649,Combat_Knife_Box1,Refined Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{}
-13650,Counter_Dagger_Box1,Refined Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{}
-13651,Kaiser_Knuckle_Box1,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{}
-13652,Pole_Axe_Box1,Refined Pole Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1419,604800; },{},{}
-13653,Mighty_Staff_Box1,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{}
-13654,Right_Epsilon_Box1,Refined Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{}
-13655,Balistar_Box1,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{}
-13656,Diary_Of_Sage_Box1,Refined Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{}
-13657,Asura_Box1,Refined Ashura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{}
-13658,Apple_Of_Archer_Box1,Refined Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{}
-13659,Bunny_Band_Box1,Refined Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{}
-13660,Sahkkat_Box1,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{}
-13661,Lord_Circlet_Box1,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{}
-13662,Elven_Ears_Box1,Refined Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,1209600; },{},{}
-13663,Steel_Flower_Box1,Refined Romantic Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{}
-13664,Critical_Ring_Box1,Refined Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{}
-13665,Earring_Box1,Refined Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{}
-13666,Ring_Box1,Refined Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{}
-13667,Necklace_Box1,Refined Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{}
-13668,Glove_Box1,Refined Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{}
-13669,Brooch_Box1,Refined Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{}
-13670,Rosary_Box1,Refined Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{}
-13671,Safety_Ring_Box1,Refined Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{}
-13672,Vesper_Core01_Box1,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{}
-13673,Vesper_Core02_Box1,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{}
-13674,Vesper_Core03_Box1,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{}
-13675,Vesper_Core04_Box1,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{}
-13676,Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5279,1209600; },{},{}
-13677,Magestic_Goat_Box1,Refined Majestic Goat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5280,1209600; },{},{}
-13678,Deviruchi_Cap_Box1,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5281,1209600; },{},{}
-13679,Executioner_Box1,Refined Executioner Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1174,604800; },{},{}
-13680,Brood_Axe_Box1,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1373,604800; },{},{}
-13681,Tomahawk_Box1,Refined Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1374,604800; },{},{}
-13682,Bow_Of_Rudra_Box1,Refined Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1729,604800; },{},{}
-13683,Cutlas_Box1,Refined Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13402,604800; },{},{}
-13684,Solar_Sword_Box1,Refined Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13403,604800; },{},{}
-13685,Sword_Breaker_Box1,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13024,604800; },{},{}
-13686,Mail_Breaker_Box1,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13025,604800; },{},{}
-13687,Moonlight_Sword_Box1,Refined Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13026,604800; },{},{}
-13688,Spanner_Box1,Refined Wrench Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1534,604800; },{},{}
-13689,Bok_Choy_Box,Bok Choy Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7766,100; },{},{}
-13690,Chung_E_Cake_Box,Green Maiden Cake Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7767,100; },{},{}
-13691,Freyja_Overcoat_Box,Freya's Clothes Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2369,604800; },{},{}
-13692,Freyja_Boots_Box,Freya's Boots Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2428,604800; },{},{}
-13693,Freyja_Cape_Box,Freya's Manteau Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2533,604800; },{},{}
-13694,Freyja_Crown_Box,Freya's Crown Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5306,604800; },{},{}
-13695,Battle_Manual25_Box,Field Manual 25% Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14532,10; },{},{}
-13696,Battle_Manual100_Box,Field Manual 100% Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14533,10; },{},{}
-13697,J_Blessing10_Box,Blessing Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{}
-13698,J_Inc_Agi10_Box,Increase Agility Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{}
-13699,J_Wind_Walk10_Box,Wind Walk Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{}
-13700,J_Adrenaline10_Box,Adrenaline Rush Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{}
-13701,Pet_Egg_Scroll12,Pet Egg Scroll 12,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13702,Pet_Egg_Scroll13,Pet Egg Scroll 13,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13703,Pet_Egg_Scroll14,Pet Egg Scroll 14,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13704,Super_Pet_Egg5,Super Pet Egg 5,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13705,Super_Pet_Egg6,Super Pet Egg 6,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13706,Super_Pet_Egg7,Super Pet Egg 7,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13707,Super_Pet_Egg8,Super Pet Egg 8,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13708,Pet_Egg_Scroll_E,Pet Egg Scroll E,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13709,BRO_Package_1,BRO Package Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13710,Max_Weight_Up_Box,Gym Pass Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7776,10; },{},{}
-13711,Small_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,10; },{},{}
-13712,Small_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,30; },{},{}
-13713,Small_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,50; },{},{}
-13714,Med_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,10; },{},{}
-13715,Med_Life_Potion_Box30,Medium Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,30; },{},{}
-13716,Med_Life_Potion_Box50,Medium Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,50; },{},{}
-13717,Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,5; },{},{}
-13718,Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,10; },{},{}
-13719,Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,5; },{},{}
-13720,Regeneration_Box10,Regeneration 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,10; },{},{}
-13721,Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,10; },{},{}
-13722,Pecopeco_Hairband_Box,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5286,1; },{},{}
-13723,Red_Glasses_Box,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5288,1; },{},{}
-13724,Whisper_Mask_Box,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5294,1; },{},{}
-13725,Ramen_Hat_Box,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5293,1; },{},{}
-13726,Gold_Box_,Golden Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7777,1; },{},{}
-13727,Silver_Box_,Silver Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7778,1; },{},{}
-13728,Gold_Key1_Box,Golden Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7779,1; },{},{}
-13729,Gold_Key5_Box,Golden Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7779,5; },{},{}
-13730,Silver_Key1_Box,Silver Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7780,1; },{},{}
-13731,Silver_Key5_Box,Silver Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7780,5; },{},{}
-//
-//
-13734,Pecopeco_Hairband_Box1,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5286,1; },{},{}
-13735,Red_Glasses_Box1,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5288,1; },{},{}
-13736,Whisper_Mask_Box1,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5294,1; },{},{}
-13737,Ramen_Hat_Box1,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5293,1; },{},{}
-13738,Glass_Of_Illusion_Box5,Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,5; },{},{}
-13739,Glass_Of_Illusion_Box10,Glass of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,10; },{},{}
-13740,Shadow_Armor_S_Box5,Shadow Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,5; },{},{}
-13741,Shadow_Armor_S_Box10,Shadow Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,10; },{},{}
-13742,Shadow_Armor_S_Box30,Shadow Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,30; },{},{}
-13743,Holy_Armor_S_Box5,Holy Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,5; },{},{}
-13744,Holy_Armor_S_Box10,Holy Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,10; },{},{}
-13745,Holy_Armor_S_Box30,Holy Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,30; },{},{}
-13746,S_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,10; },{},{}
-13747,S_Def_Potion_Box30,Small Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,30; },{},{}
-13748,S_Def_Potion_Box50,Small Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,50; },{},{}
-13749,B_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,10; },{},{}
-13750,B_Def_Potion_Box30,Big Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,30; },{},{}
-13751,B_Def_Potion_Box50,Big Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,50; },{},{}
-13752,S_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,10; },{},{}
-13753,S_Mdef_Potion_Box30,Small Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,30; },{},{}
-13754,S_Mdef_Potion_Box50,Small Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,50; },{},{}
-13755,B_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,10; },{},{}
-13756,B_Mdef_Potion_Box30,Big Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,30; },{},{}
-13757,B_Mdef_Potion_Box50,Big Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,50; },{},{}
-13758,Battle_Manual_X3_Box,Field Manual 300% Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14545,20; },{},{}
-13759,In_Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 510,50; },{},{}
-13760,Honey_Box,Honey Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 518,100; },{},{}
-13761,Empty_Bottle_Box,Empty Bottle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 713,500; },{},{}
-13762,In_Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 526,70; },{},{}
-13763,5_Anniversary_Coin_Box,Coin Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2709,1; },{},{}
-13764,Battle_Manual_Box_TW,Beginner's Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7803,5; },{},{}
-13765,Certificate_TW_Box,Certificate Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7804,1; },{},{}
-13766,Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,604800; },{},{}
-13767,Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,604800; },{},{}
-13768,Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,604800; },{},{}
-13769,Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,604800; },{},{}
-13770,Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,604800; },{},{}
-13771,Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,604800; },{},{}
-13772,Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,604800; },{},{}
-13773,Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,604800; },{},{}
-13774,Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,604800; },{},{}
-13775,Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,604800; },{},{}
-13776,Cloak_Of_Survival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,1209600; },{},{}
-13777,Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,1209600; },{},{}
-13778,Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,1209600; },{},{}
-13779,Evil_Wing_Ears_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,1209600; },{},{}
-13780,Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,1209600; },{},{}
-13781,kRO_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,1209600; },{},{}
-13782,Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,1209600; },{},{}
-13783,Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,604800; },{},{}
-13784,Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,604800; },{},{}
-13785,Nagan_Box1,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,86400; },{},{}
-13786,Skewer_Box1,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,86400; },{},{}
-13787,Survival_Rod_Box1,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,86400; },{},{}
-13788,Quadrille_Box1,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,86400; },{},{}
-13789,Great_Axe_Box1,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,86400; },{},{}
-13790,Bloody_Roar_Box1,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,86400; },{},{}
-13791,Hardback_Box1,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,86400; },{},{}
-13792,Fire_Brand_Box1,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,86400; },{},{}
-13793,Immaterial_Sword_Box1,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,86400; },{},{}
-13794,Unholy_Touch_Box1,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,86400; },{},{}
-13795,Cloak_Of_Survival_Box1,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,86400; },{},{}
-13796,Masquerade_Box1,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,86400; },{},{}
-13797,Orc_Hero_Helm_Box1,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,86400; },{},{}
-13798,Evil_Wing_Ears_Box1,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,86400; },{},{}
-13799,Dark_Blindfold_Box1,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,86400; },{},{}
-13800,kRO_Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,86400; },{},{}
-13801,Corsair_Box1,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,86400; },{},{}
-13802,Bloody_Iron_Ball_Box1,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,86400; },{},{}
-13803,Spiritual_Ring_Box1,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,86400; },{},{}
-13804,Fire_Cracker_Love_Box,I Love You Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14546,10; },{},{}
-13805,Fire_Cracker_Wday_Box,Whiteday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14547,10; },{},{}
-13806,Fire_Cracker_Vday_Box,Valentine's Day Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14548,10; },{},{}
-13807,Fire_Cracker_Bday_Box,Birthday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14549,10; },{},{}
-13808,Fire_Cracker_Xmas_Box,Xmas Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14550,10; },{},{}
-13809,Blue_Gemstone_Box,Blue Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 717,100; },{},{}
-13810,Blue_Potion_Box,Blue Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11502,25; },{},{}
-13811,Food_Box_Lv1,Food Box Vol 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; },{},{}
-13812,Food_Box_Lv2,Food Box Vol 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; },{},{}
-13813,Food_Box_Lv3,Food Box Vol 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; },{},{}
-13814,Indonesia_Box,Healing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13815,Knife_Goblin_Box,Knife Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14569,10; },{},{}
-13816,Flail_Goblin_Box,Flail Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14570,10; },{},{}
-13817,Hammer_Goblin_Box,Hammer Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14571,10; },{},{}
-13818,Red_Deleter_Box,Red Deleter Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14572,10; },{},{}
-13819,Diabolic_Box,Diabolic Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14573,10; },{},{}
-13820,Wanderer_Box,Wanderer Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14574,10; },{},{}
-13821,Green_Apple_Box,Green Apple Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7821,10; },{},{}
-13822,Whole_Barbecue_Box,Barbeque Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7822,10; },{},{}
-13823,Meat_Veg_Skewer_Box,Meat Skewer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7823,10; },{},{}
-13824,Spirit_Liquor_Box,Spirit Liquor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7824,10; },{},{}
-13825,Green_Box_,Old Green Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13826,Power_Box1,Power Box 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 682,1; getitem 12123,1; getitem 12122,1; },{},{}
-13827,Power_Box2,Power Box 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 683,1; getitem 12123,1; getitem 12122,1; },{},{}
-13828,Resist_Box1,Resist Box 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12118,1; getitem 12119,1; },{},{}
-13829,Resist_Box2,Resist Box 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12120,1; getitem 12121,1; },{},{}
-13830,Stat_Boost1,Stat Boost 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; },{},{}
-13831,Stat_Boost2,Stat Boost 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13832,Stat_Boost3,Stat Boost 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13833,Stat_Boost4,Stat Boost 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13834,Dun_Tele_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,5; },{},{}
-13835,Dun_Tele_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,10; },{},{}
-13836,Mbl_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,1; },{},{}
-13837,Mbl_Agi_Dish_Box,Steamed Desert Scorpions Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12251,1; },{},{}
-13838,Mbl_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,1; },{},{}
-13839,Mbl_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12253,1; },{},{}
-13840,Mbl_Luk_Dish_Box,Cooked Nine Tail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12254,1; },{},{}
-13841,Mbl_Vit_Dish_Box,Immortal Stew Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12255,1; },{},{}
-13842,Mbl_Kafra_Card_Box,Payment Statement for Kafra Employee Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12249,1; },{},{}
-13843,Mbl_Battle_Manual_Box,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14532,1; },{},{}
-13844,Heroic_Stone_Box,Heroic Stone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7825,1; },{},{}
-13845,Mysterious_Travel_Sack1,Mystery Travel Sack A,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13846,Mysterious_Travel_Sack2,Mystery Travel Sack B,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13847,Mysterious_Travel_Sack3,Mystery Travel Sack C,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13848,Mysterious_Travel_Sack4,Mystery Travel Sack D,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13849,WOB_Box_Rune5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,5; },{},{}
-13850,WOB_Box_Rune10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,10; },{},{}
-13851,WOB_Box_Schawaltz5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,5; },{},{}
-13852,WOB_Box_Schawaltz10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,10; },{},{}
-13853,WOB_Box_Rachel5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,5; },{},{}
-13854,WOB_Box_Rachel10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,10; },{},{}
-13855,WOB_Box_Local5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,5; },{},{}
-13856,WOB_Box_Local10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,10; },{},{}
-13857,Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,5; },{},{}
-13858,Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,10; },{},{}
-13859,Directive_A_Envelope,Directive Envelope A,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2734,1; },{},{}
-13860,Directive_B_Envelope,Directive Envelope B,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2735,1; },{},{}
-13861,Mini_Battle_Manual_Box,Small Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,4; },{},{}
-13862,Trial_Box,Trial Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,2; getitem 12215,15; getitem 12216,15; },{},{}
-13863,Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{}
-//13864,Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5314,604800; },{},{}
-//13865,Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5315,604800; },{},{}
-13866,Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5210,1; },{},{}
-13867,Neko_Mimi_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{}
-13868,MFH_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5214,1; },{},{}
-13869,Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5283,1; },{},{}
-13870,New_Style_Box,Beauty Gift Certificate Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7622,1; },{},{}
-13871,Magician_Card_Box,Mage Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1; },{},{}
-13872,Acolyte_Card_Box,Acolyte Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1; },{},{}
-13873,Archer_Card_Box,Archer Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1; },{},{}
-13874,Swordman_Card_Box,Swordman Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1; },{},{}
-13875,Thief_Card_Box,Thief Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1; },{},{}
-13876,Merchant_Card_Box,Merchant Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1; },{},{}
-13877,Clock_Tower_Card_Box,Clock Tower Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; },{},{}
-13878,Geffenia_Card_Box,Geffenia Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4218,1; getitem 4269,1; },{},{}
-13879,Owl_Card_Box,Owl Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4237,1; getitem 4238,1; },{},{}
-13880,Ghost_Card_Box,Ghost Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4193,1; getitem 4294,1; },{},{}
-13881,Nightmare_Card_Box,Nightmare Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4127,1; getitem 4166,1; },{},{}
-13882,Curse_Card_Box,Curse Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4076,4; },{},{}
-13883,Sleep_Card_Box,Sleep Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4024,4; },{},{}
-13884,Freeze_Card_Box,Freeze Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4055,4; },{},{}
-13885,Stun_Card_Box,Stun Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4017,4; },{},{}
-13886,Silence_Card_Box,Silence Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4057,4; },{},{}
-13887,Blind_Card_Box,Blind Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4020,4; },{},{}
-13888,Chaos_Card_Box,Chaos Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4104,4; },{},{}
-13889,Elunium_Box_,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 985,10; },{},{}
-13890,Oridecon_Box_,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,10; },{},{}
-13891,Fire_Converter_Box,Fire Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12114,10; },{},{}
-13892,Water_Converter_Box,Water Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12115,10; },{},{}
-13893,Wind_Converter_Box,Wind Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12117,10; },{},{}
-13894,Earth_Converter_Box,Earth Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12116,10; },{},{}
-13895,Starter_Pack,Starter Pack,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-13896,Mimic_Summon_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,5; },{},{}
-13897,Disguise_Summon_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,5; },{},{}
-13898,Alice_Summon_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,5; },{},{}
-13899,Mimic_Summon_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,10; },{},{}
-13900,Disguise_Summon_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,10; },{},{}
-13901,Alice_Summon_Box10,Alice Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,10; },{},{}
-13902,Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5380,1; },{},{}
-13903,Santa_Poring_Hat_Box,Santa Poring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5381,1; },{},{}
-13904,Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5382,1; },{},{}
-13905,Hard_Core_Set_Box,XM Hardcore Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; getitem 12209,10; getitem 12210,10; },{},{}
-13906,Kitty_Set_Box,XM Kitty Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1; },{},{}
-13907,Soft_Core_Set_Box,XM Softcore Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; getitem 12209,5; getitem 12210,5; },{},{}
-13908,Deviruchi_Set_Box,XM Deviruchi Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5227,1; getitem 5228,1; getitem 5229,1; },{},{}
-13909,MVP_Hunt_Box,MVP Hunting Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3; },{},{}
-13910,Brewing_Box,XM Brewing Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; getitem 12205,10; getitem 12206,10; },{},{}
-13911,Xmas_Pet_Scroll,Christmas Pet Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13912,Party_Blessing_Box,Party Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14588,10; },{},{}
-13913,Party_Inc_Agi_Box,Party Increase Agi 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14589,10; },{},{}
-13914,Party_Assumptio_Box,Party Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14590,10; },{},{}
-13915,Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12287,604800; },{},{}
-13916,Squirrel_Box,Squirrel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12288,604800; },{},{}
-13917,Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12289,604800; },{},{}
-//13918,Drooping_W_Kitty_Box,Koneko Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5372,1; },{},{}
-//13919,L_Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5374,1; },{},{}
-//13920,Satanic_Chain_P_Box,Flying Evil Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5376,1; },{},{}
-//13921,Antique_Pipe_Box,Gentleman's Pipe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5377,1; },{},{}
-//13922,Rabbit_Ear_Hat_Box,Bunny Top Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5378,1; },{},{}
-//13923,Darkness_Helm_Box,Dark Randgris Helm Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5373,1; },{},{}
-//13924,L_Orc_Hero_Helm_Box,Orc Hero Headdress Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5375,1; },{},{}
-//13925,Year_Of_Mouse_Scroll,... GoodLuck Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13926,Crusader_Card_Box,Crusader Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; },{},{}
-13927,Alchemist_Card_Box,Alchemist Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; },{},{}
-13928,Rogue_Card_Box,Rogue Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; },{},{}
-13929,Bard_Dancer_Card_Box,Bard Dancer Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; },{},{}
-13930,Sage_Card_Box,Sage card box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; },{},{}
-13931,Monk_Card_Box,Monk Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; },{},{}
-13932,Sylph_Box,Sylph Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4345,4; },{},{}
-13933,Undine_Box,Undine Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4350,4; },{},{}
-13934,Salamander_Box,Salamander Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4380,4; },{},{}
-13935,Soul_Box,Soul Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4388,4; },{},{}
-13936,Noum_Bpx,Gnome Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4335,4; },{},{}
-13937,Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5325,1; },{},{}
-13938,Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5187,1; },{},{}
-//13939,Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5313,1; },{},{}
-13940,Siege_Tele_Scroll_Box,WoE Teleport Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14591,100; },{},{}
-13941,Valentine_Scroll_TW,Taiwan Valentine Scroll,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13942,Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14009,1; },{},{}
-13943,Squirrel_Box_1m,Squirrel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14010,1; },{},{}
-13944,Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14011,1; },{},{}
-13945,Br_SwordPackage,Brazil Swordsman Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-13946,Br_MagePackage,Brazil Magician Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1; },{},{}
-13947,Br_AcolPackage,Brazil Acolyte Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1; },{},{}
-13948,Br_ArcherPackage,Brazil Archer package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1; },{},{}
-13949,Br_MerPackage,Brazil Merchant Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1; },{},{}
-13950,Br_ThiefPackage,Brazil Thief Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1; },{},{}
-13951,Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13109,604800; },{},{}
-13952,Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13170,604800; },{},{}
-13953,All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2741,604800; },{},{}
-13954,Spiritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2384,604800; },{},{}
-13955,Recuperative_Armor_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2385,604800; },{},{}
-13956,Shelter_Resistance_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2132,604800; },{},{}
-13957,Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2543,604800; },{},{}
-13958,Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2439,604800; },{},{}
-13959,Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5391,604800; },{},{}
-13960,Name_Change_Coupon_Box,Identification Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7623,1; },{},{}
-13961,Mojji_Box,Mochi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 554,5; },{},{}
-13962,Deprotai_Doll_Hat_Box,Defolty Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5340,1; },{},{}
-13963,Claris_Doll_Hat_Box,Glaris Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5341,1; },{},{}
-13964,Sorin_Doll_Hat_Box,Sorin Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5342,1; },{},{}
-13965,Tayelin_Doll_Hat_Box,Tailring Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5343,1; },{},{}
-13966,Binit_Doll_Hat_Box,Vinit Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5344,1; },{},{}
-13967,Debril_Doll_Hat_Box,W Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5345,1; },{},{}
-//13968,Bubblegum_Lower_Box,Bubble Gum Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5394,86400;},{},{}
-//13969,Lucky_Clip_Box,Lucky Clip Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2742,86400; },{},{}
-13970,Iron_10_Box,Iron Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 998,10; },{},{}
-13971,Steel_10_Box,Steel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 999,10; },{},{}
-13972,Coal_10_Box,Coal Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1003,10; },{},{}
-13973,Poison_Bottle_30_Box,Poison Bottle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,30; },{},{}
-13974,TW_Scroll01,Fisherman Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-13975,Picture_Diary_Box,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,604800; },{},{}
-13976,Mini_Heart_Box,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,604800; },{},{}
-13977,Newcomer_Box,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,604800; },{},{}
-13978,Kid_Box,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,604800; },{},{}
-13979,Magic_Castle_Box,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,604800; },{},{}
-13980,Bulging_Head_Box,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,604800; },{},{}
-13981,Picture_Diary_Box_1m,Diary Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,2592000; },{},{}
-13982,Mini_Heart_Box_1m,Mini Heart Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,2592000; },{},{}
-13983,Newcomer_Box_1m,Freshman Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,2592000; },{},{}
-13984,Kid_Box_1m,Kid Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,2592000; },{},{}
-13985,Magic_Castle_Box_1m,Magic Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,2592000; },{},{}
-13986,Bulging_Head_Box_1m,JJangu Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,2592000; },{},{}
-13987,Ori_Stone_5_Box,Rough Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 756,5; },{},{}
-13988,Ori_Stone_50_Box,Rough Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 756,50; },{},{}
-13989,Acidbomb_10_Box,Acid Bomb 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7135,10; getitem 7136,10; },{},{}
-13990,Job_Manual50_Box,JOB Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14592,10; },{},{}
-13991,Tiger_Mask_Box,Tiger Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5098,1; },{},{}
-13992,Cat_Hat_Box,Pussy Cat Bell Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{}
-13993,Alice_Doll_Box,Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5137,1; },{},{}
-13994,Speed_Up_Potion_Box5,Speed Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12016,5; },{},{}
-13995,Speed_Up_Potion_Box10,Speed Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12016,10; },{},{}
-13996,Big_Bun_Box100,Big Bun 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,100; },{},{}
-13997,Big_Bun_Box500,Big Bun 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,500; },{},{}
-13998,Giant_Fly_Wing_Box500,Giant Fly Wing 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,500; },{},{}
-13999,Pill__Box100,Pill 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,100; },{},{}
-14000,Pill__Box500,Pill 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,500; },{},{}
-14001,Basic_Siege_Supply_Box,Recruit Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,25; getitem 11504,10; },{},{}
-14002,Adv_Siege_Supply_Box,Veteran Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,50; getitem 11504,20; },{},{}
-14003,Elite_Siege_Supply_Box,Elite Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,100; getitem 11504,50; },{},{}
-14004,Poison_Bottle_10_Box,Poison Bottle 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,10; },{},{}
-14005,Poison_Bottle_5_Box,Poison Bottle 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,5; },{},{}
-14006,F_Drooping_W_Kitty_Box,Evolved Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5372,1; },{},{}
-14007,F_Rabbit_Ear_Hat_Box,Evolved Rabbits Headband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5378,1; },{},{}
-14008,F_L_Orc_Hero_Helm_Box,Evolved Helmet Of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5375,1; },{},{}
-14009,F_Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12287,604800; },{},{}
-14010,F_Squirrel_Box,Squillroll Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12288,604800; },{},{}
-14011,F_Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12289,604800; },{},{}
-14012,F_Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13915,2592000; },{},{}
-14013,F_Squirrel_Box_1m,Squillroll Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13916,2592000; },{},{}
-14014,F_Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13917,2592000; },{},{}
-14015,F_Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13107,604800; },{},{}
-14016,F_Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13170,604800; },{},{}
-14017,F_All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2741,604800; },{},{}
-14018,F_Spritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2384,604800; },{},{}
-14019,F_Recuperative_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2385,604800; },{},{}
-14020,F_Shelter_Resist_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2132,604800; },{},{}
-14021,F_Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2543,604800; },{},{}
-14022,F_Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2439,604800; },{},{}
-14023,F_Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5391,604800; },{},{}
-14024,F_Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5325,1; },{},{}
-14025,F_Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5187,1; },{},{}
-//14026,F_Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5313,1; },{},{}
-14027,F_Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5380,1; },{},{}
-14028,F_Santa_Poring_Hat_Box,SantaPoring Cap Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5381,1; },{},{}
-14029,F_Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5382,1; },{},{}
-14030,F_Mimic_Scroll_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,5; },{},{}
-14031,F_Disguise_Scroll_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,5; },{},{}
-14032,F_Alice_Scroll_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,5; },{},{}
-14033,F_Mimic_Scroll_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,10; },{},{}
-14034,F_Disguise_Scroll_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,10; },{},{}
-14035,F_Alice_Scroll_Box10,Alice Summoning 10 Box),18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,10; },{},{}
-14036,F_New_Style_Coupon_Box,New Style Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7622,1; },{},{}
-14037,F_Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{}
-14038,F_Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{}
-//14039,F_Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5314,604800; },{},{}
-//14040,F_Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5315,604800; },{},{}
-14041,F_WOB_Rune_Box5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,5; },{},{}
-14042,F_WOB_Rune_Box10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,10; },{},{}
-14043,F_WOB_Schwaltz_Box5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,5; },{},{}
-14044,F_WOB_Schwaltz_Box10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,10; },{},{}
-14045,F_WOB_Rachel_Box5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,5; },{},{}
-14046,F_WOB_Rachel_Box10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,10; },{},{}
-14047,F_WOB_Local_Box5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,5; },{},{}
-14048,F_WOB_Local_Box10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,10; },{},{}
-14049,F_Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,5; },{},{}
-14050,F_Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,10; },{},{}
-14051,F_Dun_Tel_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,5; },{},{}
-14052,F_Dun_Tel_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,10; },{},{}
-14053,F_Little_Angel_Doll_Box,Little Angel Doll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5324,1; },{},{}
-14054,F_Triple_Poring_Hat_Box,Poring 3 Hats Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5255,1; },{},{}
-14055,F_Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,604800; },{},{}
-14056,F_Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,604800; },{},{}
-14057,F_Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,604800; },{},{}
-14058,F_Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,604800; },{},{}
-14059,F_Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,604800; },{},{}
-14060,F_Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,604800; },{},{}
-14061,F_Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,604800; },{},{}
-14062,F_Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,604800; },{},{}
-14063,F_Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,604800; },{},{}
-14064,F_Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,604800; },{},{}
-14065,F_Clack_Of_Servival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,1209600; },{},{}
-14066,F_Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,1209600; },{},{}
-14067,F_Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,1209600; },{},{}
-14068,F_Ear_Of_Devil_Wing_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,1209600; },{},{}
-14069,F_Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,1209600; },{},{}
-14070,F_K_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,1209600; },{},{}
-14071,F_Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,1209600; },{},{}
-14072,F_Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,604800; },{},{}
-14073,F_Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,604800; },{},{}
-14074,F_G_O_I_Box5,Wine Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,5; },{},{}
-14075,F_G_O_I_Box10,Glass Of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,10; },{},{}
-14076,F_Shadow_Armor_S_Box5,Scroll of Shadow Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,5; },{},{}
-14077,F_Shadow_Armor_S_Box10,Scroll of Shadow Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,10; },{},{}
-14078,F_Shadow_Armor_S_Box30,Scroll of Shadow Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,30; },{},{}
-14079,F_Holy_Armor_S_Box5,Scroll of Holy Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,5; },{},{}
-14080,F_Holy_Armor_S_Box10,Scroll of Holy Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,10; },{},{}
-14081,F_Holy_Armor_S_Box30,Scroll of Holy Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,30; },{},{}
-14082,FS_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,10; },{},{}
-14083,FS_Def_Potion_Box30,Small Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,30; },{},{}
-14084,FS_Def_Potion_Box50,Small Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,50; },{},{}
-14085,FB_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,10; },{},{}
-14086,FB_Def_Potion_Box30,Large Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,30; },{},{}
-14087,FB_Def_Potion_Box50,Large Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,50; },{},{}
-14088,FS_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,10; },{},{}
-14089,FS_Mdef_Potion_Box30,Small Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,30; },{},{}
-14090,FS_Mdef_Potion_Box50,Small Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,50; },{},{}
-14091,FB_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,10; },{},{}
-14092,FB_Mdef_Potion_Box30,Large Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,30; },{},{}
-14093,FB_Mdef_Potion_Box50,Large Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,50; },{},{}
-14094,F_Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5210,1; },{},{}
-14095,F_Cat_Hat_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{}
-14096,F_M_F_H_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5214,1; },{},{}
-14097,F_Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5283,1; },{},{}
-14098,F_Pecopeco_Hairband_Box,Peco Peco Hairband Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5286,1209600; },{},{}
-14099,F_Red_Glasses_Box,Red Glasses Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5288,1209600; },{},{}
-14100,F_Whisper_Mask_Box,Whisper Mask Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5294,1209600; },{},{}
-14101,F_Ramen_Hat_Box,Ramen Hat Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5293,1209600; },{},{}
-14102,F_Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,5; },{},{}
-14103,F_Max_Weight_Up_Box,Gym Membership Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7776,1; },{},{}
-14104,F_S_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,10; },{},{}
-14105,F_S_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,30; },{},{}
-14106,F_S_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,50; },{},{}
-14107,F_M_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,10; },{},{}
-14108,F_M_Life_Potion_Box30,Large Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,30; },{},{}
-14109,F_M_Life_Potion_Box50,Large Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,50; },{},{}
-14110,F_Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,5; },{},{}
-14111,F_Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,10; },{},{}
-14112,F_Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,5; },{},{}
-14113,F_Regeneration_Box10,Regeneration Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,10; },{},{}
-14114,F_Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,10; },{},{}
-14115,F_Infiltrator_Box,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{}
-14116,F_Muramasa_Box,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{}
-14117,F_Excalibur_Box,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{}
-14118,F_Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{}
-14119,F_Counter_Dagger_Box,Counter Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{}
-14120,F_Kaiser_Knuckle_Box,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{}
-14121,F_Mighty_Staff_Box,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{}
-14122,F_Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{}
-14123,F_Balistar_Box,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{}
-14124,F_Diary_Of_Great_Sage,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{}
-14125,F_Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{}
-14126,F_Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{}
-14127,F_Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{}
-14128,F_Sahkkat_Box,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{}
-14129,F_Lord_Circlet_Box,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{}
-14130,F_Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,1209600; },{},{}
-14131,F_Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{}
-14132,F_Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{}
-14133,F_Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{}
-14134,F_Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{}
-14135,F_Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{}
-14136,F_Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{}
-14137,F_Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{}
-14138,F_Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{}
-14139,F_Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{}
-14140,F_Vesper_Core_Box01,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{}
-14141,F_Vesper_Core_Box02,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{}
-14142,F_Vesper_Core_Box03,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{}
-14143,F_Vesper_Core_Box04,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{}
-14144,F_Vigorgra_Package1,Vigorgra Box1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14145,F_Vigorgra_Package2,Vigorgra Box2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14146,F_Vigorgra_Package3,Vigorgra Box3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14147,F_Vigorgra_Package4,Vigorgra Box4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14148,F_Vigorgra_Package5,Vigorgra Box5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14149,F_Vigorgra_Package6,Vigorgra Box6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{}
-14150,F_Vigorgra_Package7,Vigorgra Box7,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14151,F_Vigorgra_Package8,Vigorgra Box8,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14152,F_Vigorgra_Package9,Start your Journey Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14153,F_Vigorgra_Package10,Siege Mode Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14154,F_Vigorgra_Package11,1 Hour Survival Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14155,F_Vigorgra_Package12,Weekend Hunting Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{}
-14156,F_Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; },{},{}
-14157,F_Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,10; },{},{}
-14158,F_Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,10; },{},{}
-14159,F_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,10; },{},{}
-14160,F_Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,10; },{},{}
-14161,F_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; },{},{}
-14162,F_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,10; },{},{}
-14163,F_Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,10; },{},{}
-14164,F_Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,10; },{},{}
-14165,F_Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,10; },{},{}
-14166,F_Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,10; },{},{}
-14167,F_Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12213,1; },{},{}
-14168,F_Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,10; },{},{}
-14169,F_Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{}
-14170,F_Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{}
-14171,F_Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,10; getitem 523,10; },{},{}
-14172,F_Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,10; },{},{}
-14173,F_Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{}
-14174,F_Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{}
-14175,F_Megaphone_Box,Megaphone 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,10; },{},{}
-14176,F_Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,10; },{},{}
-14177,F_Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,10; },{},{}
-14178,F_Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,10; },{},{}
-14179,F_Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,50; },{},{}
-14180,F_Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,100; },{},{}
-14181,F_Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,30; },{},{}
-14182,F_Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,50; },{},{}
-14183,F_Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,30; },{},{}
-14184,F_Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,50; },{},{}
-14185,F_Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,30; },{},{}
-14186,F_Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,50; },{},{}
-14187,F_Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,30; },{},{}
-14188,F_Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,50; },{},{}
-14189,F_Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,30; },{},{}
-14190,F_Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,50; },{},{}
-14191,F_Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,5; },{},{}
-14192,F_Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,30; },{},{}
-14193,F_Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,30; },{},{}
-14194,F_Blessing10_Box50,Lv10 Blessing Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,50; },{},{}
-14195,F_Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,30; },{},{}
-14196,F_Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,50; },{},{}
-14197,F_Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,30; },{},{}
-14198,F_Assumptio_5_Box50,Lv5 Assumptio Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,50; },{},{}
-14199,F_Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,30; getitem 523,30; },{},{}
-14200,F_Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,50; getitem 523,50; },{},{}
-14201,F_Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,30; },{},{}
-14202,F_Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,50; },{},{}
-14203,F_Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,30; },{},{}
-14204,F_Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,50; },{},{}
-14205,F_Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,30; },{},{}
-14206,F_Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,50; },{},{}
-14207,F_Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,1; },{},{}
-14208,F_Battle_Manual_Box5,Battle Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; },{},{}
-14209,F_Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,5; },{},{}
-14210,F_Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,20; },{},{}
-14211,F_Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,30; },{},{}
-14212,F_Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,50; },{},{}
-14213,F_Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,30; },{},{}
-14214,F_Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,50; },{},{}
-14215,F_Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,1; },{},{}
-14216,F_Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,5; },{},{}
-14217,F_Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,1; },{},{}
-14218,F_Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,5; },{},{}
-14219,F_Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,5; },{},{}
-14220,F_Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,5; },{},{}
-14221,MP_Scroll_Box,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,10; },{},{}
-14222,MP_Scroll_Box30,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,30; },{},{}
-14223,MP_Scroll_Box50,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,50; },{},{}
-14224,Quagmire_Scroll_Box,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,10; },{},{}
-14225,Quagmire_Scroll_Box30,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,30; },{},{}
-14226,Quagmire_Scroll_Box50,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,50; },{},{}
-14227,Healing_Staff_Box,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1638,604800; },{},{}
-//14228,Praxinus_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2752,604800; },{},{}
-//14229,Cherry_Blossom_Scroll,Cherry Blossom Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-//14230,Note_Headphones_Box,Note Headphones Box,18,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5151,1; },{},{}
-//14231,Novice_Breastplate_Boxes,Novice Breastplate Boxes,18,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14232,Yggdrasilberry_Box_,Yggdrasil Berry 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 607,10; },{},{}
-14233,Dead_Tree_Branch_Box1,Dead Branch 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,10; },{},{}
-14234,Dead_Tree_Branch_Box2,Dead Branch 25 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,25; },{},{}
-14235,Field_Manual_Box_2,Field Manual 2 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,2; },{},{}
-14236,Steamed_Tongue_Box_20,Steamed Tongue 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,20; },{},{}
-14237,Steamed_Desert_Scorpions_Box_20,Steamed Desert Scorpions Box(20),18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,20; },{},{}
-14238,Stew_Of_Immortality_Box_20,Immortal Stew 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,20; },{},{}
-14239,Dragon_Breath_Cocktail_Box_20,Dragon Breath Cocktail 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,20; },{},{}
-14240,Hwergelmir's_Tonic_Box_20,Hwergelmir's Tonic 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,20; },{},{}
-14241,Nine_Tail_Dish_Box_20,Nine Tail Dish 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,20; },{},{}
-14242,Beholder_Ring_Box,Beholder Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2753,1; },{},{}
-14243,Hallow_Ring_Box,Hallow Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2754,1; },{},{}
-14244,Clamorous_Ring_Box,Clamorous Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2755,1; },{},{}
-14245,Chemical_Ring_Box,Chemical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2756,1; },{},{}
-14246,Insecticide_Ring_Box,Insecticide Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2757,1; },{},{}
-14247,Fisher_Ring_Box,Fisher Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2758,1; },{},{}
-14248,Decussate_Ring_Box,Decussate Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2759,1; },{},{}
-14249,Bloody_Ring_Box,Bloody Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2760,1; },{},{}
-14250,Satanic_Ring_Box,Satanic Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2761,1; },{},{}
-14251,Dragoon_Ring_Box,Dragon Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2762,1; },{},{}
-14252,Beholder_Ring_Box2,Beholder Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2753,1; },{},{}
-14253,Hallow_Ring_Box2,Hallow Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2754,1; },{},{}
-14254,Clamorous_Ring_Box2,Clamorous Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2755,1; },{},{}
-14255,Chemical_Ring_Box2,Chemical Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2756,1; },{},{}
-14256,Insecticide_Ring_Box2,Insecticide Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2757,1; },{},{}
-14257,Fisher_Ring_Box2,Fisher Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2758,1; },{},{}
-14258,Decussate_Ring_Box2,Decussate Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2759,1; },{},{}
-14259,Bloody_Ring_Box2,Bloody Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2760,1; },{},{}
-14260,Satanic_Ring_Box2,Satanic Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2761,1; },{},{}
-14261,Dragoon_Ring_Box2,Dragon Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2762,1; },{},{}
-14262,Diary_Magic_Powder_Box,Diary Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,604800; },{},{}
-14263,Mini_Heart_Magic_Powder_Box,Mini Heart Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,604800; },{},{}
-14264,Freshman_Magic_Powder_Box,Freshman Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,604800; },{},{}
-14265,Kid_Magic_Powder_Box,Kid Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,604800; },{},{}
-14266,Magic_Magic_Powder_Box,Magic Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,604800; },{},{}
-14267,JJangu_Magic_Powder_Box,JJangu Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,604800; },{},{}
-14268,Diary_Magic_Powder_Box4,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14269,Mini_Heart_Magic_Powder_Box4,Mini_Heart_Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14270,Freshman_Magic_Powder_Box4,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14271,Kid_Magic_Powder_Box4,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14272,Magic_Magic_Powder_Box4,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14273,JJangu_Magic_Powder_Box4,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14274,Amplification_10_Scroll_Box2,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,10; },{},{}
-14275,Amplification_30_Scroll_Box2,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,30; },{},{}
-14276,Amplification_50_Scroll_Box2,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,50; },{},{}
-14277,Quagmire_10_Scroll_Box2,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,10; },{},{}
-14278,Quagmire_30_Scroll_Box2,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,30; },{},{}
-14279,Quagmire_50_Scroll_Box2,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,50; },{},{}
-14280,Healing_Staff_Box2,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1638,1; },{},{}
-//14281,Praccsinos_Box,Praccsinos_Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2752,1; },{},{}
-14282,Emperium_Box,Emperium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 714,1; },{},{}
-14283,Marriage_Certificate_Box,Written Oath Of Marriage Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6026,1; },{},{}
-//14284,Muffler_Box,Muffler Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2548,1; },{},{}
-//14285,Balkiriah_Shield_Box,Balkiriah Shield Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2137,1; },{},{}
-//14286,Skull_Ring_Box,Skull Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2763,1; },{},{}
-14287,Baricade_Repair_Kit,Barricade Repair Kit,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; },{},{}
-14288,Guardian_Stone_Repair_Kit,Guardian Stone Repair Kit,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; },{},{}
-14289,Cloth_Dye_Coupon_Box,New Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6046,1; },{},{}
-14290,Cloth_Dye_Coupon2_Box,Original Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6047,1; },{},{}
-14291,Cloth_Dye_Coupon3_Box,Clothing Dye Coupon Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6046,1; },{},{}
-14292,Cloth_Dye_Coupon4_Box,Clothing Dye Coupon Box II,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6047,1; },{},{}
-//14293,Mercenary_Contract_Box,Mercenary Contract Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,1; },{},{}
-//14294,Mercenary_Contract_Box5,Mercenary Contract Box 5ea,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,5; },{},{}
-//14295,Mercenary_Contract_Box10,Mercenary Contract Box 10ea,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,10; },{},{}
-14296,Angel_Scroll,Angel Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14297,Devil_Scroll,Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14300,Mask_Of_Ifrit_Box,Mask Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5420,1; },{},{}
-14301,Ifrit's_Ear_Box,Ears Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5421,1; },{},{}
-14304,Scuba_Mask_Box,Scuba Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5397,1; },{},{}
-14314,Phreeoni_Scroll_Box,Phreeoni Scroll Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14597,10; },{},{}
-14315,GhostringS_Box,Ghostring Scroll Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14598,10; },{},{}
-14316,July7_Scroll,July7 Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14317,Bacsojin_Scroll,Bacsojin Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14343,Spiked_Scarf_Box,Spiked Scarf Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5462,1; },{},{}
-14344,Rainbow_Scarf_Box,Rainbow Scarf Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5463,1; },{},{}
-14345,Animal_Scroll,Animal Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14349,Mental_Potion20_Box,Mental Potion 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14600,20; },{},{}
-14350,Mental_Potion50_Box,Mental Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14600,50; },{},{}
-14351,Tyr's_Blessing20_Box,Tyr's Blessing 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14601,20; },{},{}
-14352,Tyr's_Blessing50_Box,Tyr's Blessing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14601,50; },{},{}
-14363,Heart_Scroll,Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14375,Holy_Celestial_Axe_Box,Celestial Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1383,1; },{},{}
-14376,Angeling_Pot_Box,Angeling Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12350,1; },{},{}
-14377,Shout_Megaphone_Box,Scream Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12351,1; },{},{}
-14380,Anubis_Helm_Box,Anubis Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5490,1; },{},{}
-14393,Almighty_Charm_Box,Universal Amulet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7945,1; },{},{}
-14408,New_Year_Scroll,New Year Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14440,Dice_Hat_Box,Dice Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5496,1; },{},{}
-14441,King_Tiger_Doll_Hat_Box,King Tiger Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5497,1; },{},{}
-14447,Pirate's_Pride_Box,Pirate's Pride Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5501,1; },{},{}
-14448,Necromencer's_Hood_Box,Necromancer's Hood Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5502,1; },{},{}
-14459,Rabbit_Magic_Hat_Box,Magic Rabbit Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5503,1; },{},{}
-14460,China_Wedding_Veil_Box,RO 5th Wedding Anniversary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5504,1; },{},{}
-14461,Asara_Fairy_Hat_Box,Ashura Fairy Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5505,1; },{},{}
-14466,Valentine_Pledge_Box,Valentine's Emblem Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14469,Ox_Tail_Scroll,Ox Tail Egg,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14500,Insurance60,Life Insurrance Certificate,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,3600000,0; },{},{}
-14508,Zeny_Scroll,Zeny Pet Egg Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14509,Light_Center_Pot,Light Concentration Potion,2,800,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; },{},{}
-14510,Light_Awakening_Pot,Light Awakening Potion,2,1500,,20,,,,,0xFFF7FEEF,7,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,0; },{},{}
-14511,Light_Berserk_Pot,Light Berserk Potion,2,3000,,20,,,,,0x01E646A6,7,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,0; },{},{}
-14512,Meteor_10_Scroll,Meteor Storm Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_METEOR",10; },{},{}
-14513,Storm_10_Scroll,Storm Gust Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_STORMGUST",10; },{},{}
-14514,Vermilion_10_Scroll,Lord of Vermilion Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_VERMILION",10; },{},{}
-14515,Lex_Aeterna_Scroll,Lex Aeterna Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_LEXAETERNA",1; },{},{}
-14516,Magnificat_5_Scroll,Magnificat Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",5; },{},{}
-14517,CP_Helm_Scroll,Chemical Protection Helm Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_HELM",5; },{},{}
-14518,CP_Shield_Scroll,Chemical Protection Shield Scrol,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_SHIELD",5; },{},{}
-14519,CP_Armor_Scroll,Chemical Protection Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_ARMOR",5; },{},{}
-14520,CP_Weapon_Scroll,Chemical Protection Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_WEAPON",5; },{},{}
-14521,Repair_Scroll,Repair Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; },{},{}
-14522,Big_Bun,Big Bun,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,0; },{},{}
-14523,Pill_,Pill,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,100; },{},{}
-14524,Superb_Fish_Slice,Superb Fish Slice,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{}
-14525,Chewy_Ricecake,Chewy Ricecake,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,1800000,10; },{},{}
-14526,Oriental_Pastry,Oriental Pastry,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,1800000,10; },{},{}
-14527,Dun_Tele_Scroll1,Dungeon Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",1; },{},{}
-14528,PVP_Tele_Scroll,PVP Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14529,Greed_Scroll,Greed Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "BS_GREED",1; },{},{}
-14530,Flee_30_Scroll,Evasion Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCFLEE,1800000,30; },{},{}
-14531,Accuracy_30_Scroll,Concentration Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCHIT,1800000,30; },{},{}
-14532,Battle_Manual25,Field Manual 25%,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,25; },{},{}
-14533,Battle_Manual100,Field Manual 100%,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{}
-14534,Small_Life_Potion,Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; },{},{}
-14535,Med_Life_Potion,Medium Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; },{},{}
-14536,Abrasive,Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{}
-14537,Regeneration_Potion,Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; },{},{}
-14538,Glass_Of_Illusion,Glass of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; },{},{}
-14539,Shadow_Armor_S,Shadow Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; },{},{}
-14540,Holy_Armor_S,Holy Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; },{},{}
-14541,S_Def_Potion,Small Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; },{},{}
-14542,B_Def_Potion,Big Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; },{},{}
-14543,S_Mdef_Potion,Small Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; },{},{}
-14544,B_Mdef_Potion,Big Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; },{},{}
-14545,Battle_Manual_X3,Field Manual 300%,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,300; },{},{}
-14546,Fire_Cracker_Love,I Love You Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14547,Fire_Cracker_Wday,Whiteday Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14548,Fire_Cracker_Vday,Valentine's Day Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14549,Fire_Cracker_Bday,Birthday Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14550,Fire_Cracker_Xmas,Xmas Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14551,Str_Dish01_,Fried Grasshopper Legs,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{}
-14552,Str_Dish02_,Seasoned Sticky Webfoot,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{}
-14553,Str_Dish03_,Bomber Steak,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{}
-14554,Int_Dish01_,Grape Juice Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{}
-14555,Int_Dish02_,Autumn Red Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{}
-14556,Int_Dish03_,Honey Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{}
-14557,Vit_Dish01_,Steamed Crab Nippers,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{}
-14558,Vit_Dish02_,Assorted Seafood,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{}
-14559,Vit_Dish03_,Clam Soup,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{}
-14560,Agi_Dish01_,Frog Egg Squid Ink Soup,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{}
-14561,Agi_Dish02_,Smooth Noodle,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{}
-14562,Agi_Dish03_,Tentacle Cheese Gratin,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{}
-14563,Dex_Dish01_,Honey Grape Juice,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{}
-14564,Dex_Dish02_,Chocolate Mousse Cake,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{}
-14565,Dex_Dish03_,Fruit Mix,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{}
-14566,Luk_Dish01_,Fried Monkey Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{}
-14567,Luk_Dish02_,Mixed Juice,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{}
-14568,Luk_Dish03_,Fried Sweet Potato,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{}
-14569,Knife_Goblin_Ring,Knife Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1122; },{},{}
-14570,Flail_Goblin_Ring,Flail Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1123; },{},{}
-14571,Hammer_Goblin_Ring,Hammer Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1125; },{},{}
-14572,Holy_Marble,Holy Marble,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1385; },{},{}
-14573,Red_Burning_Stone,Red Burning Stone,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1382; },{},{}
-14574,Skull_Of_Vagabond,Vagabond's Skull,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1208; },{},{}
-14575,Str_Dish05_,Lutie Lady's Pancake,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{}
-14576,Int_Dish05_,Mastela Fruit Wine,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{}
-14577,Vit_Dish05_,Spicy Fried Bao,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{}
-14578,Agi_Dish05_,Steamed Bat Wing in Pumpkin,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{}
-14579,Dex_Dish05_,Green Salad,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{}
-14580,Luk_Dish05_,Fried Scorpion Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{}
-14581,Dun_Tele_Scroll2,Dungeon Teleport Scroll II,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",2; },{},{}
-14582,WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",1; },{},{}
-14583,WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",2; },{},{}
-14584,WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",3; },{},{}
-14585,WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",4; },{},{}
-14586,Spark_Candy,Jumping Candy,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14587,Repair_Scroll_,Equipment Repair Spell Book,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "BS_REPAIRWEAPON",1; },{},{}
-14588,Pty_Blessing_Scroll,Party Blessing 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_BLESSING",10; },{},{}
-14589,Pty_Inc_Agi_Scroll,Party Increase Agi 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_INCAGI",10; },{},{}
-14590,Pty_Assumptio_Scroll,Party Assumptio 5 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_ASSUMPTIO",5; },{},{}
-14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{}
-14592,Job_Manual50,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_JEXPBOOST,1800000,50; },{},{}
-14593,Magic_Power_Scroll,Mystical Amplification Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "HW_MAGICPOWER",10; },{},{}
-14594,Quagmire_Scroll,Quagmire Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_QUAGMIRE",5; },{},{}
-14595,Unsealed_Magic_Spell,Unsealed Magic Spell,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ warp "yuno_fild09",255,127; },{},{}
-14596,Pierre_Treasurebox,Pierre's Treasure Box,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ 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; },{},{}
-14597,PhreeoniS,Phreeoni Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; },{},{}
-14598,GhostringS,Ghostring Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; },{},{}
-14599,Greed_Scroll_C,Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14600,Mental_Potion,Mental Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14601,Tyr's_Blessing,Tyr's Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCFLEE,300000,30; sc_start SC_INCHIT,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{}
-14602,TaogunkaS,Tao Gunka Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA; },{},{}
-14603,MistressS,Mistress Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS; },{},{}
-14604,Orc_HeroS,Orc Hero Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO; },{},{}
-14605,Orc_LoadS,Orc Lord Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD; },{},{}
-14606,Job_Manual25,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-14607,Luxurious_Dinner_W,Luxurious Western Food,2,10000,,600,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,3; },{},{}
-14608,Luxurious_Dinner_E,Manchu-Han Imperial Feast,2,20000,,1200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,6; },{},{}
-14609,Spoiled_Cuisine,Spoiled Cuisine,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,10; },{},{}
-// More Armors
-15000,Bone_Plate,Bone Plate,4,20,,1000,,7,,1,0x000654E2,2,2,16,,85,1,0,{ bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; },{},{}
-15001,Odin's_Blessing_I,Odin's Blessing,4,0,,0,,10,,0,0xFFFFFFFE,7,2,16,,0,0,0,{},{},{}
-// More Maces
-16000,Erde,Erde,5,20,,500,130,,1,2,0x0004C5B2,2,2,2,4,50,1,8,{ bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; },{},{}
-16001,Red_Square_Bag,Red Square Bag,5,20,,500,130,,1,2,0x0004C5B2,2,2,2,3,50,1,8,{ 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; },{},{}
-16002,Stunner_C,Stunner,5,0,,0,175,,1,0,0x00008110,7,2,2,3,1,0,8,{ bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; },{},{}
-//
-16030,Pilebuncker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,7,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{}
-16031,Pilebuncker_P,Pile Bunker P,5,20,,4000,450,,1,,0x00000400,7,2,2,4,130,1,8,{ bonus bBaseAtk,getrefine()*5; },{},{}
-16032,Pilebuncker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,7,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{}
-// More Rental Boxes
-16134,King_Frog_Hat_Box,Frog King Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5528,1; },{},{}
-16135,Evil's_Bone_Hat_Box,Satanic Bone Helm Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5529,1; },{},{}
-//16186,Baby_Dragon_Hat_Box,
-//16226,Aries_Diadem_Box,
-//16227,Aries_Crown_Box,
-//16230,Taurus_Diadem_Box,
-//16231,Taurus_Crown_Box,
-//16246,Crown_of_Deceit_Box,
-16247,Dragon_Arhat_Mask_Box,Dragon Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5565,1; },{},{}
-16248,Tiger_Arhat_Mask_Box,Tiger Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5566,1; },{},{}
-//16249,Knight's_Gift_Box
-//16250,Valkyrie's_Gift_Box
-//16251,Gemini_Diadem_Box
-//16252,Gemini_Crown_Box
-16257,Buddah_Scroll,Buddah Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-16258,HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6226,5; },{},{}
-16259,HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6225,5; },{},{}
-16260,HD_Bradium_Box10,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6226,10; },{},{}
-16261,HD_Carnium_Box10,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6225,10; },{},{}
-//16262,HD_Bradium_5_Box,
-//16263,HD_Carnium_5_Box,
-//16264,HD_Bradium_10_Box,
-//16265,HD_Carnium_10_Box,
-//16267,HE_Battle_Manual_Box
-//16268,HE_Bubble_Gum_Box
-//16269,Cancer_Diadem_Box
-//16270,Cancer_Crown_Box,
-16304,Evil_Incarnation_Disable,Evil Incarnation,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-//16343,Leo_Crown_Box
-//16344,Leo_Diadem_Box
-//16345,Leo_Crown_Box
-//16346,Leo_Diadem_Box
-//16368,Virgo_Crown_Box
-16371,Tw_Aug_Scroll,Tw Aug Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-//16381,WoE_Teleport_Scroll_100_Box
-16393,HD_Ori_Box5,HD Oridecon 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,5; },{},{}
-16394,HD_Ori_Box10,HD Oridecon 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,10; },{},{}
-16395,HD_Elu_Box5,HD Elunium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,5; },{},{}
-16396,HD_Elu_Box10,HD Elunium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,10; },{},{}
-//16397,Virgo_Diadem_Box
-//16398,Virgo_Crown_Box
-//16399,Virgo_Diadem_Box
-//16418,Giant_Fly_Wing_Box_500
-//16419,Greed_Scroll_30_Box
-//16420,Adventurer_Pack
-//16421,Written_Oath_Of_Marriage_Box
-//16422,Baphomet_Horns_Box
-//16423,Episode_13.1_Key_Package
-//16424,Executioner_Box
-//16425,Cutlas_Box
-//16426,Moonlight_Dagger_Box
-//16427,Wrench_Box
-//16428,Solar_Sword_Box
-//16429,Tomahawk_Box
-//16430,Rudra_Bow_Box
-//16431,Pole_Axe_Box
-//16436,Libra_Crown_Box
-//16437,Libra_Crown_Box
-//16438,Libra_Diadem_Box
-//16439,Libra_Diadem_Box
-//16447,Scorpio_Crown_Box
-//16448,Scorpio_Diadem_Box
-//16449,Scorpio_Crown_Box
-//16450,Scorpio_Diadem_Box
-16461,Red_Wing_Hat_Box,Red Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5690,1; },{},{}
-//16462,Red_Wing_Hat_Box
-//16543,Snowman_Hat_Box
-//16544,Snowman_Hat_Box
-//16548,Sagittarius_Crown_Box
-//16549,Sagittarius_Diadem_Box
-//16550,Sagittarius_Crown_Box
-//16551,Sagittarius_Diadem_Box
-//16554,Elven_Sunglasses_Box
-16555,Pr_Reset_Stone_Box,Pr Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{}
-//16565,Capricorn_Crown_Box
-//16566,Capricorn_Crown_Box
-//16567,Capricorn_Diadem_Box
-//16568,Capricorn_Diadem_Box
-//16588,Thoughtful_Hat_Box
-//16589,Thoughtful_Hat_Box
-//16590,Thoughtful_Hat_Box
-16677,Universal_Catalog_Gold_Box10,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{}
-16678,Universal_Catalog_Gold_Box50,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{}
-16679,Universal_Catalog_Gold_Box10_,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{}
-16680,Universal_Catalog_Gold_Box50_,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{}
-16776,Universal_Catalog_Gold_Box10__,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{}
-16777,Universal_Catalog_Gold_Box50__,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{}
-//
-17104,HD_Oridecon_50Box,HD Oridecon 50 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,50; },{},{}
-17105,HD_Elunium_50Box,HD Elunium 50 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,50; },{},{}
-// Mechanic/Genetic Cannonballs
-18000,Cannon_Ball,Cannon Ball,10,100,,10,100,,,,0x00040400,8,2,32768,,99,,8,{},{},{}
-18001,Holy_Cannon_Ball,Holy Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Holy; },{},{}
-18002,Dark_Cannon_Ball,Dark Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Dark; },{},{}
-18003,Soul_Cannon_Ball,Soul Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Ghost; },{},{}
-18004,Iron_Cannon_Ball,Iron Cannon Ball,10,500,,10,250,,,,0x00040400,8,2,32768,,99,,8,{},{},{}
-// More Bows
-18100,Shooting_Star_C,Shooting Star,5,20,,0,190,,5,0,0x00080800,7,2,34,4,1,1,11,{ bonus bLongAtkRate,20; },{},{}
-18101,F_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,7,2,34,4,0,0,11,{ 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; },{},{}
-18102,E_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,7,2,34,4,0,0,11,{ 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; },{},{}
-// More Headgears
-18500,Cheer_Scarf6,Cheer Scarf6,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-18501,Cheer_Scarf8,Cheer Scarf8,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-18502,Cheer_Scarf10,Cheer Scarf10,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{}
-18503,Small_Horn_Of_Devil,Small Devil Horns,4,20,,100,,2,,0,0xFFFFFFFF,7,2,512,,1,0,562,{ bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10; },{},{}
-18505,Umbala_Spirit,Umbala Spirit,4,0,,200,,1,,1,0xFFFFFFFF,7,2,1,,30,0,675,{ bonus bVit,1; },{},{}
-18506,Hattah_Black,Hattah Black,4,12000,,4000,,2,,1,0xFFFFFFFF,7,2,769,,1,1,676,{},{},{}
-18507,Elven_Ears_,Elven Ears,4,20,,100,,0,,1,0xFFFFFFFE,7,2,512,,70,0,73,{},{},{}
-//
-18539,Skull_Cap,Skull Cap,4,40,,200,,5,,1,0xFFFFFFFF,7,2,256,,10,1,713,{ bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; } },{},{}
-//
-18595,Horn_Of_Ancient,Horn of Ancient,4,40,,200,,8,,1,0xFFFFFFFF,7,2,256,,50,1,757,{ autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-18596,Sprout_Hat,Sprout Hat,4,20,,200,,4,,0,0xFFFFFFFF,7,2,256,,70,1,758,{ skill "WZ_HEAVENDRIVE",3; },{},{}
-18597,Mercury_Helm,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,7,2,256,,0,1,759,{ bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; }},{},{}
-//
-18600,Cat_Ears_Beret,Cat Ear Beret,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,761,{ bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player,(getrefine() - 5); bonus2 bSubRace,RC_Player,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; } },{},{}
-//
-18612,White_Musang_Hat,White Musang Hat,4,40,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,770,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; },{},{}
-18613,Black_Musang_Hat,Black Musang Hat,4,40,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,771,{ bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; },{},{}
-//
-18620,Heart_Eyepatch,Heart Eyepatch,4,5,,200,,2,,0,0xFFFFFFFF,7,2,512,,20,1,779,{},{},{}
-//
-18656,Wit_Pumpkin_Hat,Witch's Pumpkin Hat,4,20,,300,,10,,0,0xFFFFFFFF,7,2,256,,20,1,717,{ bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; },{},{}
-
-// Costume System
-19500,T_Mr_Smile,T Mr Smile,4,0,,0,,0,,0,0xFFFFFFFF,7,2,6144,,0,0,65,{ bonus bStr,2; },{},{}
-19501,T_Spinx_Helm,T Spinx Helm,4,0,,0,,0,,1,0xFFFFFFFF,7,2,5120,,0,0,137,{},{},{}
-19504,T_Sunglasses,T Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,7,2,2048,,0,0,12,{},{},{}
-19505,T_Cigarette,T Cigarette,4,0,,0,,0,,0,0xFFFFFFFF,7,2,4096,,0,0,54,{},{},{}
-19506,T_Valkyrie_Feather_Band,T Valkyrie Feather Band,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1024,,0,1,300,{},{},{}
-19507,Fine_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1024,,1,0,654,{},{},{}
-
-22777,Gift_Buff_Set,Gift Buff Set,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{},{},{}
diff --git a/db/pre-re/item_db.yml b/db/pre-re/item_db.yml
new file mode 100644
index 0000000000..740ba94540
--- /dev/null
+++ b/db/pre-re/item_db.yml
@@ -0,0 +1,93 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Footer:
+ Imports:
+ - Path: db/pre-re/item_db_usable.yml
+ - Path: db/pre-re/item_db_equip.yml
+ - Path: db/pre-re/item_db_etc.yml
diff --git a/db/pre-re/item_db_equip.yml b/db/pre-re/item_db_equip.yml
new file mode 100644
index 0000000000..2930bd6d45
--- /dev/null
+++ b/db/pre-re/item_db_equip.yml
@@ -0,0 +1,40372 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 1101
+ AegisName: Sword
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1102
+ AegisName: Sword_
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1103
+ AegisName: Sword__
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1104
+ AegisName: Falchion
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1105
+ AegisName: Falchion_
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1106
+ AegisName: Falchion__
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1107
+ AegisName: Blade
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1108
+ AegisName: Blade_
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1109
+ AegisName: Blade__
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1110
+ AegisName: Lapier
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1111
+ AegisName: Lapier_
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1112
+ AegisName: Lapier__
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1113
+ AegisName: Scimiter
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1114
+ AegisName: Scimiter_
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1115
+ AegisName: Scimiter__
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1116
+ AegisName: Katana
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1117
+ AegisName: Katana_
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1118
+ AegisName: Katana__
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1119
+ AegisName: Tsurugi
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1120
+ AegisName: Tsurugi_
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1121
+ AegisName: Tsurugi__
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1122
+ AegisName: Ring_Pommel_Saber
+ Name: Ring Pommel Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 24000
+ Weight: 900
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1123
+ AegisName: Haedonggum
+ Name: Haedonggum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 50000
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1124
+ AegisName: Orcish_Sword
+ Name: Orcish Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 5
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1125
+ AegisName: Ring_Pommel_Saber_
+ Name: Ring Pommel Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 24000
+ Weight: 900
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1126
+ AegisName: Saber
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 49000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1127
+ AegisName: Saber_
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 49000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1128
+ AegisName: Hae_Dong_Gum_
+ Name: Haedonggum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 50000
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1129
+ AegisName: Flamberge
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 60000
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1130
+ AegisName: Nagan
+ Name: Nagan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 1131
+ AegisName: Ice_Falchon
+ Name: Ice Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 600
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ bonus2 bAddEff2,Eff_Freeze,10;
+ skill "MG_COLDBOLT",3;
+ bonus3 bAutoSpell,"MG_COLDBOLT",3,100;
+ - Id: 1132
+ AegisName: Edge
+ Name: Edge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,30;
+ bonus2 bComaClass,Class_Normal,10;
+ - Id: 1133
+ AegisName: Fire_Brand
+ Name: Fireblend
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ skill "MG_FIREBOLT",3;
+ bonus3 bAutoSpell,"MG_FIREBOLT",3,100;
+ - Id: 1134
+ AegisName: Scissores_Sword
+ Name: Caesar's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Plant,25;
+ bonus bIgnoreDefRace,RC_Plant;
+ - Id: 1135
+ AegisName: Cutlas
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 1136
+ AegisName: Solar_Sword
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bHPDrainRate,1000,1;
+ bonus2 bSPLossRate,15,10000;
+ - Id: 1137
+ AegisName: Excalibur
+ Name: Excalibur
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bInt,5;
+ bonus bLuk,10;
+ bonus bDex,-1;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1138
+ AegisName: Mysteltainn_
+ Name: Mysteltainn
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEle,Ele_Ghost,15;
+ bonus3 bAutoSpell,"MG_STONECURSE",3,100;
+ bonus2 bAddEff,Eff_Stone,10;
+ bonus bDex,3;
+ - Id: 1139
+ AegisName: Tale_Fing_
+ Name: Tirfing
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bHPLossRate,35,10000;
+ - Id: 1140
+ AegisName: Byeorrun_Gum
+ Name: Byeollungum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Normal,-10;
+ bonus2 bAddClass,Class_Boss,50;
+ bonus bAllStats,2;
+ - Id: 1141
+ AegisName: Immaterial_Sword
+ Name: Immaterial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ bonus2 bSPVanishRate,30,30;
+ bonus bSPDrainValue,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 1142
+ AegisName: Jewel_Sword
+ Name: Jeweled Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 104
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;
+ - Id: 1143
+ AegisName: Gaia_Sword
+ Name: Gaia Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 2500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 74
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Ore,30;
+ - Id: 1144
+ AegisName: Sasimi
+ Name: Sashimi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1400
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus3 bAddMonsterDropItem,544,RC_Fish,4000;
+ - Id: 1145
+ AegisName: Holy_Avenger
+ Name: Holy Avenger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 450000
+ Weight: 1350
+ Attack: 125
+ Range: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bVit,2;
+ - Id: 1146
+ AegisName: Town_Sword
+ Name: Town Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 42000
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1147
+ AegisName: Town_Sword_
+ Name: Town Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 42000
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1148
+ AegisName: Star_Dust_Blade
+ Name: Star Dust Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus bUnbreakableWeapon;
+ - Id: 1149
+ AegisName: Flamberge_
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 60000
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1151
+ AegisName: Slayer
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1152
+ AegisName: Slayer_
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1153
+ AegisName: Slayer__
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1154
+ AegisName: Bastard_Sword
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1155
+ AegisName: Bastard_Sword_
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1156
+ AegisName: Bastard_Sword__
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1157
+ AegisName: Two_Hand_Sword
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1158
+ AegisName: Two_Hand_Sword_
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1159
+ AegisName: Two_Hand_Sword__
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1160
+ AegisName: Broad_Sword
+ Name: Broad Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 65000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1161
+ AegisName: Balmung
+ Name: Balmung
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 250
+ Range: 1
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1162
+ AegisName: Broad_Sword_
+ Name: Broad Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 65000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1163
+ AegisName: Claymore
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 74000
+ Weight: 2500
+ Attack: 180
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1164
+ AegisName: Muramasa
+ Name: Muramasa
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 155
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bAspdRate,8;
+ bonus2 bAddEff2,Eff_Curse,10;
+ - Id: 1165
+ AegisName: Masamune
+ Name: Masamune
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bFlee,30;
+ bonus bStr,-5;
+ bonus bAspd,2;
+ bonus bDefRate,-67;
+ bonus bDef2Rate,-67;
+ - Id: 1166
+ AegisName: Dragon_Slayer
+ Name: Dragon Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1300
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddRace,RC_Dragon,15;
+ - Id: 1167
+ AegisName: Schweizersabel
+ Name: Schweizersabel
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1600
+ Attack: 160
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDef,1;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;
+ - Id: 1168
+ AegisName: Zweihander
+ Name: Zweihander
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1169
+ AegisName: Executioner_
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1170
+ AegisName: Katzbalger
+ Name: Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 175
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bVit,5;
+ bonus bDef,10;
+ - Id: 1171
+ AegisName: Zweihander_
+ Name: Zweihander
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1172
+ AegisName: Claymore_
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 74000
+ Weight: 2500
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1173
+ AegisName: Muramasa_C
+ Name: Muramasa
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 1
+ Attack: 204
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,30;
+ bonus bAspdRate,8;
+ - Id: 1174
+ AegisName: Executioner_C
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2
+ Attack: 190
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1175
+ AegisName: Altas_Weapon
+ Name: Atlas Weapon
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3500
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,10;
+ if (readparam(bStr)>=80)
+ bonus bBreakArmorRate,500;
+ - Id: 1176
+ AegisName: Muscle_Cutter
+ Name: Muscle Cutter
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,800;
+ bonus3 bAutoSpell,"AL_DECAGI",1,30;
+ - Id: 1177
+ AegisName: Muramash
+ Name: Muramash
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1178
+ AegisName: Schweizersabel_
+ Name: Schweizersabel
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1600
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDef,1;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;
+ - Id: 1179
+ AegisName: Executioner__
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1180
+ AegisName: Dragon_Slayer_
+ Name: Dragon Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1300
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddRace,RC_Dragon,15;
+ - Id: 1181
+ AegisName: Tae_Goo_Lyeon
+ Name: Tae Goo Lyeon
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bFlee2,10;
+ if (JobLevel>=70)
+ autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ if (getrefine()>8) {
+ bonus bCastrate,-20;
+ bonus bDelayRate,-20;
+ }
+ - Id: 1182
+ AegisName: Bloody_Eater
+ Name: Bloody Eater
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }";
+ bonus bHPGainValue,100;
+ - Id: 1183
+ AegisName: BF_Two_Handed_Sword1
+ Name: Brave Assaulter's Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1184
+ AegisName: BF_Two_Handed_Sword2
+ Name: Valorous Assaulter's Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,20;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus bCritAtkRate,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1185
+ AegisName: Violet_Fear
+ Name: Violet Fear
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 275
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"WZ_METEOR",3,30;
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;
+ - Id: 1186
+ AegisName: Death_Guidance
+ Name: Death Guidance
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bAgi,2;
+ bonus bFlee2,20;
+ bonus3 bAutoSpell,"NPC_HELLPOWER",1,10;
+ bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0;
+ if (getrefine()>8)
+ bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20;
+ else
+ bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20;
+ - Id: 1187
+ AegisName: Krieger_Twohand_Sword1
+ Name: Glorious Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 220
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30;
+ bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30;
+ }
+ - Id: 1188
+ AegisName: Veteran_Sword
+ Name: Veteran Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 10000
+ Weight: 2000
+ Attack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ if (getskilllv("SM_BASH") == 10) {
+ bonus2 bSkillAtk,"SM_BASH",50;
+ }
+ if (getskilllv("KN_BOWLINGBASH") == 10) {
+ bonus2 bSkillAtk,"KN_BOWLINGBASH",50;
+ }
+ bonus bStr,1;
+ bonus bDex,1;
+ - Id: 1189
+ AegisName: Krasnaya
+ Name: Krasnaya
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3800
+ Attack: 200
+ Range: 2
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,20;
+ }
+ - Id: 1190
+ AegisName: Claymore_C
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 220
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1201
+ AegisName: Knife
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1202
+ AegisName: Knife_
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1203
+ AegisName: Knife__
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1204
+ AegisName: Cutter
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1205
+ AegisName: Cutter_
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1206
+ AegisName: Cutter__
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1207
+ AegisName: Main_Gauche
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1208
+ AegisName: Main_Gauche_
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1209
+ AegisName: Main_Gauche__
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1210
+ AegisName: Dirk
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1211
+ AegisName: Dirk_
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1212
+ AegisName: Dirk__
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1213
+ AegisName: Dagger
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1214
+ AegisName: Dagger_
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1215
+ AegisName: Dagger__
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1216
+ AegisName: Stiletto
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1217
+ AegisName: Stiletto_
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1218
+ AegisName: Stiletto__
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1219
+ AegisName: Gladius
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1220
+ AegisName: Gladius_
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1221
+ AegisName: Gladius__
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1222
+ AegisName: Damascus
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 49000
+ Weight: 800
+ Attack: 118
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1223
+ AegisName: Forturn_Sword
+ Name: Fortune Sword
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bLuk,5;
+ bonus bFlee2,20;
+ - Id: 1224
+ AegisName: Sword_Breaker
+ Name: Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 1225
+ AegisName: Mail_Breaker
+ Name: Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 1226
+ AegisName: Damascus_
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 49000
+ Weight: 800
+ Attack: 118
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1227
+ AegisName: Weeder_Knife
+ Name: Weeder Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Plant;
+ bonus2 bAddRace,RC_Plant,15;
+ bonus2 bSubRace,RC_Plant,15;
+ - Id: 1228
+ AegisName: Combat_Knife
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Demon,-10;
+ - Id: 1229
+ AegisName: Mama's_Knife
+ Name: Kitchen Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,5000;
+ - Id: 1230
+ AegisName: House_Auger
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ - Id: 1231
+ AegisName: Bazerald
+ Name: Bazerald
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,5;
+ bonus bMatkRate,10;
+ - Id: 1232
+ AegisName: Assasin_Dagger
+ Name: Assassin Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,15;
+ bonus bAspdRate,2;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1233
+ AegisName: Exercise
+ Name: Exorciser
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Demon;
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ - Id: 1234
+ AegisName: Moonlight_Sword
+ Name: Moonlight Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ - Id: 1235
+ AegisName: Azoth
+ Name: Azoth
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bClassChange,300;
+ - Id: 1236
+ AegisName: Sucsamad
+ Name: Sucsamad
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1237
+ AegisName: Grimtooth_
+ Name: Grimtooth
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bFlee,10;
+ bonus bFlee2,5;
+ bonus bDefRate,-50;
+ bonus bDef2Rate,-50;
+ - Id: 1238
+ AegisName: Zeny_Knife
+ Name: Zeny Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1200
+ Attack: 64
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bGetZenyNum,100,40;
+ - Id: 1239
+ AegisName: Poison_Knife
+ Name: Poison Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 64
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,3000;
+ - Id: 1240
+ AegisName: Princess_Knife
+ Name: Princess Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 84
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 1241
+ AegisName: Cursed_Dagger
+ Name: Cursed Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 80000
+ Weight: 400
+ Attack: 55
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,5000;
+ - Id: 1242
+ AegisName: Counter_Dagger
+ Name: Dagger of Counter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 120000
+ Weight: 550
+ Attack: 140
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,90;
+ - Id: 1243
+ AegisName: Novice_Knife
+ Name: Novice Main-Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Weight: 1
+ Attack: 45
+ Range: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 1244
+ AegisName: Holy_Dagger
+ Name: Holy Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bDex,1;
+ - Id: 1245
+ AegisName: Cinquedea
+ Name: Cinquedea
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1246
+ AegisName: Cinquedea_
+ Name: Cinquedea
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1247
+ AegisName: Kindling_Dagger
+ Name: Kindle Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1248
+ AegisName: Obsidian_Dagger
+ Name: Obsidian Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1249
+ AegisName: Fisherman's_Dagger
+ Name: Fisherman's Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1250
+ AegisName: Jur
+ Name: Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 19500
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1251
+ AegisName: Jur_
+ Name: Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 19500
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1252
+ AegisName: Katar
+ Name: Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 41000
+ Weight: 1200
+ Attack: 148
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 1253
+ AegisName: Katar_
+ Name: Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 41000
+ Weight: 1200
+ Attack: 148
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 1254
+ AegisName: Jamadhar
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 37200
+ Weight: 1500
+ Attack: 165
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1255
+ AegisName: Jamadhar_
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 37200
+ Weight: 1500
+ Attack: 165
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1256
+ AegisName: Katar_Of_Cold_Icicle
+ Name: Katar of Frozen Icicle
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ - Id: 1257
+ AegisName: Katar_Of_Thornbush
+ Name: Katar of Quaking
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 1258
+ AegisName: Katar_Of_Raging_Blaze
+ Name: Katar of Raging Blaze
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bAddEff,Eff_Silence,500;
+ - Id: 1259
+ AegisName: Katar_Of_Piercing_Wind
+ Name: Katar of Piercing Wind
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Sleep,500;
+ - Id: 1260
+ AegisName: Ghoul_Leg
+ Name: Sharpened Legbone of Ghoul
+ Type: Weapon
+ SubType: Katar
+ Buy: 52500
+ Weight: 1700
+ Attack: 150
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Undead;
+ - Id: 1261
+ AegisName: Infiltrator
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 57000
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,50;
+ bonus2 bAddRace,RC_Player_Human,50;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ - Id: 1262
+ AegisName: Nail_Of_Loki
+ Name: Loki's Nail
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 115
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,300;
+ - Id: 1263
+ AegisName: Unholy_Touch
+ Name: Unholy Touch
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1250
+ Attack: 151
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,200;
+ bonus bCritical,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 1264
+ AegisName: Various_Jur
+ Name: Specialty Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 800
+ Attack: 90
+ Range: 1
+ Slots: 4
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddEff2,Eff_Bleeding,10;
+ - Id: 1265
+ AegisName: Bloody_Roar
+ Name: Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus bFlee,-(readparam(bAgi)+BaseLevel);
+ bonus bHPrecovRate,-100;
+ bonus bSPrecovRate,-100;
+ - Id: 1266
+ AegisName: Infiltrator_
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 57000
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,50;
+ bonus2 bAddRace,RC_Player_Human,50;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ - Id: 1267
+ AegisName: Infiltrator_C
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 189
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ bonus bAspdRate,5;
+ - Id: 1268
+ AegisName: Wild_Beast_Claw
+ Name: Wild Beast Claw
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1450
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ if (getrefine()>=9)
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100;
+ else
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;
+ - Id: 1269
+ AegisName: Inverse_Scale
+ Name: Inverse Scale
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;
+ - Id: 1270
+ AegisName: Drill_Katar
+ Name: Drill Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1400
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,30;
+ bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;
+ - Id: 1271
+ AegisName: Blood_Tears
+ Name: Blood Tears
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1700
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ if (getrefine()>=9)
+ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30;
+ else
+ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30;
+ - Id: 1272
+ AegisName: Scratcher
+ Name: Scratcher
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1273
+ AegisName: Bloody_Roar_C
+ Name: Refined Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 148
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bHPRegenRate,3,5000;
+ - Id: 1274
+ AegisName: Unholy_Touch_C
+ Name: Refined Unholy Touch
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 179
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,5000;
+ bonus bCritical,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 1275
+ AegisName: Katar_Of_Cold_Icicle_
+ Name: Katar of Frozen Icicle
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ - Id: 1276
+ AegisName: Katar_Of_Thornbush_
+ Name: Katar of Quaking
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 1277
+ AegisName: Katar_Of_Raging_Blaze_
+ Name: Katar of Raging Blaze
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bAddEff,Eff_Silence,500;
+ - Id: 1278
+ AegisName: Katar_Of_Piercing_Wind_
+ Name: Katar of Piercing Wind
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Sleep,500;
+ - Id: 1279
+ AegisName: BF_Katar1
+ Name: Brave Carnage Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1280
+ AegisName: BF_Katar2
+ Name: Valorous Carnage Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus bCritAtkRate,20;
+ bonus bAspdRate,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1281
+ AegisName: Krieger_Katar1
+ Name: Glorious Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1282
+ AegisName: Krieger_Katar2
+ Name: Glorious Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bCriticalAddRace,RC_DemiHuman,5;
+ bonus2 bCriticalAddRace,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1283
+ AegisName: Katar_Of_Speed
+ Name: Katar Of Speed
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 175
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"AS_SONICBLOW",25;
+ bonus bAspdRate,3;
+ - Id: 1284
+ AegisName: Krishna
+ Name: Krishna
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AS_GRIMTOOTH",10;
+ if (getskilllv("AS_SONICBLOW")) {
+ bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5;
+ }
+ else {
+ bonus3 bAutoSpell,"AS_SONICBLOW",1,5;
+ }
+ - Id: 1285
+ AegisName: Cakram
+ Name: Chakram
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1000
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (getskilllv("AS_KATAR") == 10) {
+ bonus bHit,10;
+ }
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",20;
+ - Id: 1286
+ AegisName: Jamadhar_C
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Attack: 200
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1301
+ AegisName: Axe
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1302
+ AegisName: Axe_
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1303
+ AegisName: Axe__
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1304
+ AegisName: Orcish_Axe
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1305
+ AegisName: Cleaver
+ Name: Cleaver
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,3000;
+ - Id: 1306
+ AegisName: War_Axe
+ Name: War Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 4200
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 76
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bLuk,2;
+ - Id: 1307
+ AegisName: Windhawk
+ Name: Windhawk
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 18000
+ Weight: 1500
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bAspdRate,5;
+ - Id: 1308
+ AegisName: Golden_Axe
+ Name: Golden Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 3000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 45
+ Refineable: true
+ - Id: 1309
+ AegisName: Orcish_Axe_
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 75
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1310
+ AegisName: Krieger_Onehand_Axe1
+ Name: Glorious Cleaver
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,5;
+ }
+ if (getrefine()>8) {
+ bonus bAspdRate,5;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;
+ bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 1311
+ AegisName: Vecer_Axe
+ Name: Vecer Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bLuk)>=90) {
+ bonus bBaseAtk,20;
+ }
+ if (readparam(bDex)>=90) {
+ bonus bCritical,5;
+ }
+ if (readparam(bDex)>=90 || readparam(bLuk)>=90) {
+ bonus2 bSkillAtk,"MC_MAMMONITE",15;
+ }
+ - Id: 1312
+ AegisName: Orcish_Axe_C
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,70;
+ - Id: 1313
+ AegisName: Tourist_Axe
+ Name: Tourist Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 500
+ Attack: 77
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1314
+ AegisName: F_Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1315
+ AegisName: F_Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,10;
+ - Id: 1351
+ AegisName: Battle_Axe
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1352
+ AegisName: Battle_Axe_
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1353
+ AegisName: Battle_Axe__
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1354
+ AegisName: Hammer
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1355
+ AegisName: Hammer_
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1356
+ AegisName: Hammer__
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1357
+ AegisName: Buster
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1358
+ AegisName: Buster_
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1359
+ AegisName: Buster__
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1360
+ AegisName: Two_Handed_Axe
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1361
+ AegisName: Two_Handed_Axe_
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1362
+ AegisName: Two_Handed_Axe__
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1363
+ AegisName: Brood_Axe
+ Name: Bloody Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 4000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bStr,10;
+ bonus bSpeedRate,25;
+ - Id: 1364
+ AegisName: Great_Axe
+ Name: Great Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 1800
+ Attack: 187
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bAddSkillBlow,"MC_MAMMONITE",5;
+ bonus2 bAddEff,Eff_Stun,1500;
+ - Id: 1365
+ AegisName: Sabbath
+ Name: Sabbath
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2300
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bComaRace,RC_Demon,50;
+ bonus2 bCriticalAddRace,RC_Undead,50;
+ - Id: 1366
+ AegisName: Right_Epsilon
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2300
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",3;
+ bonus2 bAddRace,RC_Demon,3;
+ - Id: 1367
+ AegisName: Slaughter
+ Name: Slaughter
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus2 bComaRace,RC_Brute,40;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus2 bComaRace,RC_Player_Doram,40;
+ - Id: 1368
+ AegisName: Tomahawk
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 165
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1369
+ AegisName: Guillotine
+ Name: Guillotine
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 3000
+ Attack: 215
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bComaRace,RC_DemiHuman,30;
+ bonus2 bComaRace,RC_Player_Human,30;
+ bonus2 bSPDrainValueRace,RC_DemiHuman,2;
+ bonus2 bSPDrainValueRace,RC_Player_Human,2;
+ bonus2 bSPGainRace,RC_DemiHuman,20;
+ bonus2 bSPGainRace,RC_Player_Human,20;
+ - Id: 1370
+ AegisName: Doom_Slayer
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 6000
+ Attack: 10
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-40;
+ bonus bUseSPrate,100;
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,340;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1371
+ AegisName: Doom_Slayer_
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 6000
+ Attack: 10
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-40;
+ bonus bUseSPrate,100;
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,340;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1372
+ AegisName: Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",3;
+ bonus2 bAddRace,RC_Demon,3;
+ bonus bStr,10;
+ bonus bSpeedRate,25;
+ - Id: 1373
+ AegisName: Brood_Axe_C
+ Name: Refined Bloody Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 205
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bStr,20;
+ bonus bSpeedRate,25;
+ bonus bAspdRate,5;
+ - Id: 1374
+ AegisName: Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1375
+ AegisName: Berdysz
+ Name: Berdysz
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Medium,13;
+ bonus2 bSubSize,Size_Large,15;
+ - Id: 1376
+ AegisName: Heart_Breaker
+ Name: Heart Breaker
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2000
+ Attack: 175
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bCritical,20+getrefine();
+ bonus bAspdRate,5;
+ if (Class == Job_Whitesmith || Class == Job_Creator)
+ bonus3 bAutoSpell,"BS_HAMMERFALL",3,30;
+ - Id: 1377
+ AegisName: Hurricane_Fury
+ Name: Hurricane's Fury
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 3500
+ Attack: 332
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Medium,10+getrefine();
+ bonus bAspdRate,getrefine();
+ bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;
+ - Id: 1378
+ AegisName: Great_Axe_C
+ Name: Refined Great Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 215
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bStr,5;
+ bonus bHit,20;
+ bonus2 bAddSkillBlow,"MC_MAMMONITE",5;
+ bonus2 bAddEff,Eff_Stun,2000;
+ - Id: 1379
+ AegisName: BF_Two_Handed_Axe1
+ Name: Valorous Insane Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1380
+ AegisName: BF_Two_Handed_Axe2
+ Name: Brave Insane Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 1381
+ AegisName: N_Battle_Axe
+ Name: Novice Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1382
+ AegisName: Krieger_Twohand_Axe1
+ Name: Glorious Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 220
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;
+ }
+ if (getrefine()>8) {
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;
+ bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;
+ bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 1383
+ AegisName: Holy_Celestial_Axe
+ Name: Celestial Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bVit,10;
+ bonus2 bAddRace,RC_Undead,10;
+ bonus3 bAutoSpell,"AL_BLESSING",5,50;
+ - Id: 1384
+ AegisName: Veteran_Axe
+ Name: Veteran Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10000
+ Weight: 3000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ if (getskilllv("BS_DAGGER") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_SWORD") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_TWOHANDSWORD") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_KNUCKLE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_SPEAR") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_AXE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_MACE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ bonus bVit,2;
+ - Id: 1385
+ AegisName: Bradium_Stonehammer
+ Name: Bradium Stone Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2700
+ Attack: 210
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());
+ - Id: 1386
+ AegisName: Doom_Slayer_I
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 20
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,400;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bAspdRate,-25;
+ bonus bUseSPrate,100;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1387
+ AegisName: Giant_Axe
+ Name: Giant Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 4000
+ Attack: 330
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WS_CARTTERMINATION",15;
+ if (readparam(bStr)>=95) {
+ bonus bHit,10;
+ bonus bAspdRate,3;
+ }
+ - Id: 1388
+ AegisName: Two_Handed_Axe_C
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 220
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1389
+ AegisName: E_Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1390
+ AegisName: E_Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,10;
+ - Id: 1401
+ AegisName: Javelin
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1402
+ AegisName: Javelin_
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1403
+ AegisName: Javelin__
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1404
+ AegisName: Spear
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1405
+ AegisName: Spear_
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1406
+ AegisName: Spear__
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1407
+ AegisName: Pike
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1408
+ AegisName: Pike_
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1409
+ AegisName: Pike__
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1410
+ AegisName: Lance
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1411
+ AegisName: Lance_
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1412
+ AegisName: Lance__
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1413
+ AegisName: Gungnir
+ Name: Gungnir
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 4
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bPerfectHitRate,25;
+ bonus bHit,30;
+ - Id: 1414
+ AegisName: Gelerdria
+ Name: Gelerdria
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 700
+ Attack: 145
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bMaxHP,800;
+ bonus bMaxSP,-50;
+ - Id: 1415
+ AegisName: Skewer
+ Name: Brocca
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 850
+ Attack: 100
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus2 bAddEle,Ele_Neutral,25;
+ - Id: 1416
+ AegisName: Tjungkuletti
+ Name: Tjungkuletti
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 95
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bSPDrainValue,1;
+ bonus bSPGainValue,5;
+ - Id: 1417
+ AegisName: Pole_Axe
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 3800
+ Attack: 160
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 71
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1418
+ AegisName: Gungnir_
+ Name: Gungnir
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 4
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bPerfectHitRate,25;
+ bonus bHit,30;
+ - Id: 1419
+ AegisName: Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 159
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1420
+ AegisName: Long_Horn
+ Name: Long Horn
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ skill "TF_DETOXIFY",1;
+ bonus bUnbreakableWeapon;
+ - Id: 1421
+ AegisName: Battle_Hook
+ Name: Battle Hook
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 900
+ Attack: 140
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ skill "KN_PIERCE",3;
+ - Id: 1422
+ AegisName: Hunting_Spear
+ Name: Hunting Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 4200
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,1000;
+ bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;
+ - Id: 1423
+ AegisName: Pole_XO
+ Name: Pole XO
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1424
+ AegisName: Skewer_C
+ Name: Refined Brocca
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Attack: 149
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus2 bAddSize,Size_Medium,20;
+ - Id: 1425
+ AegisName: BF_Spear1
+ Name: Assaulter Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 60
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (BaseJob == Job_Crusader)
+ bonus bAspdRate,20;
+ - Id: 1426
+ AegisName: Krieger_Onehand_Spear1
+ Name: Glorious Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 130
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,10;
+ }
+ if (getrefine()>8) {
+ if (BaseJob == Job_Knight)
+ bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;
+ else if (BaseJob == Job_Crusader)
+ bonus3 bAutoSpell,"PA_PRESSURE",5,100;
+ }
+ - Id: 1427
+ AegisName: Spear_Of_Excellent
+ Name: Spear Of Excellent
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"SM_MAGNUM",25;
+ bonus bStr,2;
+ - Id: 1428
+ AegisName: Long_Horn_M
+ Name: Long Horn
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ skill "TF_DETOXIFY",1;
+ bonus bUnbreakableWeapon;
+ - Id: 1429
+ AegisName: Hunting_Spear_M
+ Name: Hunting Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 4200
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,1000;
+ bonus3 bAutoSpell,"LK_JOINTBEAT",3,500;
+ - Id: 1430
+ AegisName: Pike_C
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Attack: 74
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,70;
+ - Id: 1431
+ AegisName: F_Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 195
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1432
+ AegisName: E_Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 195
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1451
+ AegisName: Guisarme
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1452
+ AegisName: Guisarme_
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1453
+ AegisName: Guisarme__
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1454
+ AegisName: Glaive
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1455
+ AegisName: Glaive_
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1456
+ AegisName: Glaive__
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1457
+ AegisName: Partizan
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1458
+ AegisName: Partizan_
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1459
+ AegisName: Partizan__
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1460
+ AegisName: Trident
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1461
+ AegisName: Trident_
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1462
+ AegisName: Trident__
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1463
+ AegisName: Halberd
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1464
+ AegisName: Halberd_
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1465
+ AegisName: Halberd__
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1466
+ AegisName: Crescent_Scythe
+ Name: Crescent Scythe
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bHit,10;
+ - Id: 1467
+ AegisName: Bill_Guisarme
+ Name: Bill Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 183
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 1468
+ AegisName: Zephyrus
+ Name: Zephyrus
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Silence,200;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;
+ - Id: 1469
+ AegisName: Longinus's_Spear
+ Name: Longinus's Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_Angel,10;
+ - Id: 1470
+ AegisName: Brionac
+ Name: Brionac
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3000
+ Attack: 190
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",5;
+ bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;
+ bonus2 bAddClass,Class_Boss,5;
+ - Id: 1471
+ AegisName: Hell_Fire
+ Name: Hellfire
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3500
+ Attack: 200
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus3 bAutoSpell,"MG_FIREBALL",3,100;
+ bonus bStr,3;
+ - Id: 1472
+ AegisName: Staff_Of_Soul
+ Name: Soul Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1400
+ Attack: 25
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 73
+ Refineable: true
+ Script: |
+ bonus bInt,5;
+ bonus bAgi,2;
+ bonus bMatkRate,15;
+ - Id: 1473
+ AegisName: Wizardy_Staff
+ Name: Wizardry Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2400
+ Attack: 120
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bDex,2;
+ bonus bMatkRate,15;
+ - Id: 1474
+ AegisName: Gae_Bolg
+ Name: Gae Bolg
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddClass,Class_Boss,10;
+ - Id: 1475
+ AegisName: Horseback_Lance
+ Name: Equestrian's Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3700
+ Attack: 200
+ Range: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ - Id: 1476
+ AegisName: Crescent_Scythe_
+ Name: Crescent Scythe
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bHit,10;
+ - Id: 1477
+ AegisName: Spectral_Spear
+ Name: Spectral Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Dark,20;
+ bonus2 bAddRace,RC_Demon,20;
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bSubEle,Ele_Dark,10;
+ bonus2 bSubRace,RC_Demon,10;
+ bonus2 bSubRace,RC_Undead,10;
+ bonus2 bAddEff2,Eff_Confusion,1000;
+ bonus bHPGainValue,50;
+ - Id: 1478
+ AegisName: Ahlspiess
+ Name: Ahlspiess
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus bIgnoreDefClass,Class_Boss;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus3 bAutoSpell,"KN_PIERCE",5,30;
+ - Id: 1479
+ AegisName: Spectral_Spear_
+ Name: Spectral Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Dark,20;
+ bonus2 bAddRace,RC_Demon,20;
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bSubEle,Ele_Dark,10;
+ bonus2 bSubRace,RC_Demon,10;
+ bonus2 bSubRace,RC_Undead,10;
+ bonus2 bAddEff2,Eff_Confusion,1000;
+ bonus bHPGainValue,50;
+ - Id: 1480
+ AegisName: Gae_Bolg_
+ Name: Gae Bolg
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 160
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddClass,Class_Boss,10;
+ - Id: 1481
+ AegisName: Zephyrus_
+ Name: Zephyrus
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Silence,200;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;
+ - Id: 1482
+ AegisName: BF_Lance1
+ Name: Assaulter Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,25;
+ bonus2 bAddRace,RC_Player_Human,25;
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus bUnbreakableWeapon;
+ - Id: 1483
+ AegisName: Ivory_Lance
+ Name: Ivory Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 160
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bAspdRate,3;
+ bonus2 bAddEff,Eff_Bleeding,300;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ skill "KN_SPEARSTAB",5;
+ - Id: 1484
+ AegisName: Cardo
+ Name: Cardo
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 5600
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-10;
+ bonus bDef,getrefine()/2;
+ - Id: 1485
+ AegisName: Battle_Fork
+ Name: Battle Fork
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 700
+ Attack: 112
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 1486
+ AegisName: Krieger_Twohand_Spear1
+ Name: Glorious Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ if (BaseJob == Job_Knight)
+ bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;
+ else if (BaseJob == Job_Crusader)
+ bonus3 bAutoSpell,"PA_PRESSURE",5,200;
+ }
+ - Id: 1487
+ AegisName: Lance_C
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,50;
+ - Id: 1488
+ AegisName: Ahlspiess_C
+ Name: Ahlspiess
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 135
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus bIgnoreDefClass,Class_Boss;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus3 bAutoSpell,"KN_PIERCE",5,30;
+ - Id: 1501
+ AegisName: Club
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1502
+ AegisName: Club_
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1503
+ AegisName: Club__
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1504
+ AegisName: Mace
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1505
+ AegisName: Mace_
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1506
+ AegisName: Mace__
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1507
+ AegisName: Smasher
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1508
+ AegisName: Smasher_
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1509
+ AegisName: Smasher__
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1510
+ AegisName: Flail
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1511
+ AegisName: Flail_
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1512
+ AegisName: Flail__
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1513
+ AegisName: Morning_Star
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1514
+ AegisName: Morning_Star_
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1515
+ AegisName: Morning_Star__
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1516
+ AegisName: Sword_Mace
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1517
+ AegisName: Sword_Mace_
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1518
+ AegisName: Sword_Mace__
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1519
+ AegisName: Chain
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1520
+ AegisName: Chain_
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1521
+ AegisName: Chain__
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1522
+ AegisName: Stunner
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Buy: 60000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1523
+ AegisName: Spike
+ Name: Spike
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bCritical,40;
+ bonus bDefRate,-67;
+ bonus bDef2Rate,-67;
+ - Id: 1524
+ AegisName: Golden_Mace
+ Name: Golden Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1525
+ AegisName: Long_Mace
+ Name: Long Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 135
+ Range: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,10;
+ - Id: 1526
+ AegisName: Slash
+ Name: Slash
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1000
+ Attack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,15;
+ bonus2 bComaRace,RC_Undead,10;
+ bonus2 bExpAddRace,RC_Undead,5;
+ - Id: 1527
+ AegisName: Quadrille
+ Name: Quadrille
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 900
+ Attack: 165
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ - Id: 1528
+ AegisName: Grand_Cross
+ Name: Grand Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "PR_TURNUNDEAD",3;
+ bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;
+ bonus2 bSPDrainValueRace,RC_Undead,1;
+ bonus2 bSPGainRace,RC_Undead,3;
+ - Id: 1529
+ AegisName: Iron_Driver
+ Name: Iron Driver
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3000
+ Attack: 155
+ Range: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 78
+ Refineable: true
+ - Id: 1530
+ AegisName: Mjolnir
+ Name: Mjolnir
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 6000
+ Attack: 250
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDex,40;
+ bonus bStr,15;
+ bonus bAspdRate,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1531
+ AegisName: Spanner
+ Name: Wrench
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 2500
+ Attack: 115
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Blind,100;
+ bonus2 bAddEff,Eff_Stun,100;
+ bonus2 bAddEff,Eff_Poison,100;
+ bonus2 bAddEff,Eff_Freeze,100;
+ - Id: 1532
+ AegisName: Stunner_
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Buy: 60000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1533
+ AegisName: Warrior_Balmung
+ Name: Warrior's Balmung
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 1534
+ AegisName: Spanner_C
+ Name: Wrench
+ Type: Weapon
+ SubType: Mace
+ Buy: 2
+ Attack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Script: |
+ bonus2 bAddEff,Eff_Blind,100;
+ bonus2 bAddEff,Eff_Stun,100;
+ bonus2 bAddEff,Eff_Poison,100;
+ bonus2 bAddEff,Eff_Freeze,100;
+ - Id: 1535
+ AegisName: Hollgrehenn_Hammer
+ Name: Hollgrehenn's Hammer
+ Type: Weapon
+ SubType: Mace
+ Buy: 4444
+ Weight: 44
+ Attack: 4
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,100;
+ bonus bBreakWeaponRate,100;
+ if (readparam(bStr)>=44) {
+ bonus bBaseAtk,44;
+ }
+ - Id: 1536
+ AegisName: Good_Morning_Star
+ Name: Good Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1537
+ AegisName: Quadrille_C
+ Name: Refined Quadrille
+ Type: Weapon
+ SubType: Mace
+ Buy: 1
+ Attack: 193
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bAddRace,RC_Demon,40;
+ bonus2 bAddRace,RC_Undead,40;
+ - Id: 1538
+ AegisName: Spike_
+ Name: Spike
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bCritical,40;
+ bonus bDefRate,-67;
+ bonus bDef2Rate,-67;
+ - Id: 1539
+ AegisName: Golden_Mace_
+ Name: Golden Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1540
+ AegisName: Grand_Cross_
+ Name: Grand Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "PR_TURNUNDEAD",3;
+ bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;
+ bonus2 bSPDrainValueRace,RC_Undead,1;
+ bonus2 bSPGainRace,RC_Undead,3;
+ - Id: 1541
+ AegisName: Nemesis
+ Name: Nemesis
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_Demon,10;
+ bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100;
+ autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";
+ - Id: 1542
+ AegisName: BF_Morning_Star1
+ Name: Valorous Battlefield Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1543
+ AegisName: BF_Morning_Star2
+ Name: Brave Battlefield Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1544
+ AegisName: Lunakaligo
+ Name: Lunakaligo
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bStr)>=77) {
+ bonus bAspdRate,4;
+ bonus2 bAddEff,Eff_Stun,1500;
+ bonus3 bAddMonsterDropItem,12065,RC_Plant,500;
+ bonus3 bAddMonsterDropItem,12043,RC_Brute,500;
+ bonus3 bAddMonsterDropItem,12069,RC_Fish,500;
+ }
+ - Id: 1545
+ AegisName: N_Mace
+ Name: Novice Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 57
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1546
+ AegisName: Krieger_Onehand_Mace1
+ Name: Glorious Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bAddEff,Eff_Stun,2000;
+ bonus bAspdRate,5;
+ }
+ - Id: 1547
+ AegisName: Mace_Of_Madness
+ Name: Mace Of Madness
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"MC_CARTREVOLUTION",25;
+ bonus bStr,2;
+ - Id: 1548
+ AegisName: Veteran_Hammer
+ Name: Veteran Hammer
+ Type: Weapon
+ SubType: Mace
+ Buy: 10000
+ Weight: 1800
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bHealPower,getskilllv("AL_DP");
+ bonus bCritical,getskilllv("PR_MACEMASTERY")*2;
+ bonus bInt,1;
+ bonus bLuk,1;
+ - Id: 1549
+ AegisName: Pilebuncker
+ Name: Pile Bunker
+ Type: Weapon
+ SubType: Mace
+ Buy: 10000
+ Weight: 3500
+ Attack: 450
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ - Id: 1550
+ AegisName: Book
+ Name: Book
+ Type: Weapon
+ SubType: Book
+ Buy: 30000
+ Weight: 600
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1551
+ AegisName: Bible
+ Name: Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1552
+ AegisName: Tablet
+ Name: Tablet
+ Type: Weapon
+ SubType: Book
+ Buy: 51000
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1553
+ AegisName: Book_Of_Billows
+ Name: Book of Billows
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1554
+ AegisName: Book_Of_Mother_Earth
+ Name: Book of Mother Earth
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1555
+ AegisName: Book_Of_Blazing_Sun
+ Name: Book of the Blazing Sun
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1556
+ AegisName: Book_Of_Gust_Of_Wind
+ Name: Book of Gust of Wind
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1557
+ AegisName: Book_Of_The_Apocalypse
+ Name: Book of the Apocalypse
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEle,Ele_Holy,5;
+ bonus2 bAddEle,Ele_Water,7;
+ bonus2 bAddEle,Ele_Earth,7;
+ bonus2 bAddEle,Ele_Fire,7;
+ bonus2 bAddEle,Ele_Wind,7;
+ - Id: 1558
+ AegisName: Girl's_Diary
+ Name: Girl's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 1500
+ Weight: 300
+ Attack: 60
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddDamageClass,1188,150;
+ - Id: 1559
+ AegisName: Legacy_Of_Dragon
+ Name: Legacy of Dragon
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bSPGainRace,RC_Dragon,10;
+ - Id: 1560
+ AegisName: Diary_Of_Great_Sage
+ Name: Sage's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1100
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ if (readparam(bStr)>=50)
+ bonus bAspdRate,5;
+ if (readparam(bInt)>=70)
+ bonus bMatkRate,5;
+ - Id: 1561
+ AegisName: Hardback
+ Name: Hardcover Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bStr,3;
+ bonus bDex,2;
+ - Id: 1562
+ AegisName: Bible_Of_Battlefield
+ Name: Battlefield Textbook
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Script: |
+ bonus bInt,3;
+ bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20;
+ - Id: 1563
+ AegisName: Diary_Of_Great_Sage_C
+ Name: Sage's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,20;
+ bonus bAspdRate,5;
+ - Id: 1564
+ AegisName: Encyclopedia
+ Name: Encyclopedia
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 2000
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bCritical,20+((readparam(bLuk)*2)/10);
+ - Id: 1565
+ AegisName: Death_Note
+ Name: Ledger of Death
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1000
+ Attack: 137
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,-20;
+ bonus2 bComaRace,RC_DemiHuman,10;
+ bonus2 bComaRace,RC_Player_Human,10;
+ bonus bAspdRate,getrefine();
+ if (BaseJob == Job_Sage)
+ bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;
+ - Id: 1566
+ AegisName: Diary_Of_Great_Basil
+ Name: Diary Of Great Basil
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1567
+ AegisName: Hardback_C
+ Name: Refined Hardcover Book
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 168
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bStr,5;
+ bonus bDex,2;
+ bonus bMatkRate,20;
+ - Id: 1568
+ AegisName: Book_Of_Billows_
+ Name: Book of Billows
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1569
+ AegisName: Book_Of_Mother_Earth_
+ Name: Book of Mother Earth
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1570
+ AegisName: Book_Of_Blazing_Sun_
+ Name: Book of Blazing Sun
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1571
+ AegisName: Book_Of_Gust_Of_Wind_
+ Name: Book of Gust of Wind
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1572
+ AegisName: Principles_Of_Magic
+ Name: Principles of Magic
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 300
+ Attack: 60
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMatkRate,20;
+ bonus bInt,3;
+ bonus bSPrecovRate,5;
+ - Id: 1573
+ AegisName: Ancient_Magic
+ Name: Ancient Magic
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 30
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 1574
+ AegisName: BF_Book1
+ Name: Brave Battle Strategy Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus bMatkRate,15;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1575
+ AegisName: BF_Book2
+ Name: Valorous Battle Strategy Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus bMatkRate,15;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ - Id: 1576
+ AegisName: Krieger_Book1
+ Name: Glorious Tablet
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus2 bAddRace,RC_DemiHuman,80;
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ - Id: 1577
+ AegisName: Krieger_Book2
+ Name: Glorious Apocalypse
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus2 bAddRace,RC_DemiHuman,80;
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5)
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ if (getrefine()>8) {
+ bonus bMatkRate,5;
+ bonus bCastrate,-5;
+ bonus bDelayRate,-5;
+ }
+ - Id: 1578
+ AegisName: Book_Of_Prayer
+ Name: Book Of Prayer
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,2;
+ bonus bMaxSPrate,10;
+ - Id: 1579
+ AegisName: Death_Note_M
+ Name: Book of the Dead
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1000
+ Attack: 137
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,-20;
+ bonus2 bComaRace,RC_DemiHuman,10;
+ bonus2 bComaRace,RC_Player_Human,10;
+ bonus bAspdRate,getrefine();
+ if (BaseJob == Job_Sage)
+ bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;
+ - Id: 1580
+ AegisName: Encyclopedia_C
+ Name: Giant Encyclopedia
+ Type: Weapon
+ SubType: Book
+ Attack: 145
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bCritical,20+((readparam(bLuk)*2)/10);
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1581
+ AegisName: F_Diary_Of_Great_Sage_C
+ Name: Diary Of Great Sage
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ - Id: 1582
+ AegisName: E_Diary_Of_Great_Sage_C
+ Name: Diary Of Great Sage
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ - Id: 1599
+ AegisName: Angra_Manyu
+ Name: Angra Manyu
+ Type: Weapon
+ SubType: Mace
+ Buy: 1
+ Weight: 10
+ Attack: 200
+ Range: 2
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,50;
+ bonus bBaseAtk,3800;
+ bonus bMatkRate,200;
+ bonus2 bHPDrainRate,1000,100;
+ bonus2 bSPDrainRate,1000,20;
+ bonus bHealPower,200;
+ bonus2 bAddClass,Class_All,100;
+ skill "WZ_STORMGUST",10;
+ Skill "WZ_METEOR",10;
+ Skill "WZ_VERMILION",10;
+ skill "GM_SANDMAN",1;
+ - Id: 1601
+ AegisName: Rod
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 1602
+ AegisName: Rod_
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 1603
+ AegisName: Rod__
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 1604
+ AegisName: Wand
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,15;
+ - Id: 1605
+ AegisName: Wand_
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,15;
+ - Id: 1606
+ AegisName: Wand__
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,15;
+ - Id: 1607
+ AegisName: Staff
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMatkRate,15;
+ - Id: 1608
+ AegisName: Staff_
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMatkRate,15;
+ - Id: 1609
+ AegisName: Staff__
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMatkRate,15;
+ - Id: 1610
+ AegisName: Arc_Wand
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMatkRate,15;
+ - Id: 1611
+ AegisName: Arc_Wand_
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMatkRate,15;
+ - Id: 1612
+ AegisName: Arc_Wand__
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMatkRate,15;
+ - Id: 1613
+ AegisName: Mighty_Staff
+ Name: Mighty Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,10;
+ bonus bMatkRate,15;
+ bonus bSPDrainValue,-2;
+ - Id: 1614
+ AegisName: Blessed_Wand
+ Name: Wand of Occult
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 75
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMatkRate,15;
+ - Id: 1615
+ AegisName: Bone_Wand
+ Name: Evil Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 40
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus bAtkEle,Ele_Undead;
+ bonus bMatkRate,15;
+ - Id: 1616
+ AegisName: Staff_Of_Wing
+ Name: Wing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 60
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bCastrate,-5;
+ - Id: 1617
+ AegisName: Survival_Rod
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,15;
+ bonus bMaxHP,300;
+ - Id: 1618
+ AegisName: Survival_Rod_
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bDex,3;
+ bonus bMatkRate,15;
+ bonus bMaxHP,400;
+ - Id: 1619
+ AegisName: Survival_Rod2
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMatkRate,15;
+ bonus bMaxHP,300;
+ - Id: 1620
+ AegisName: Survival_Rod2_
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMatkRate,15;
+ bonus bMaxHP,400;
+ - Id: 1621
+ AegisName: Hypnotist's_Staff
+ Name: Hypnotist's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 43000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,25;
+ - Id: 1622
+ AegisName: Hypnotist's_Staff_
+ Name: Hypnotist's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,25;
+ - Id: 1623
+ AegisName: Mighty_Staff_C
+ Name: Mighty Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 1
+ Attack: 165
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,10;
+ bonus bInt,4;
+ bonus bMatkRate,20;
+ bonus bSPDrainValue,-1;
+ - Id: 1624
+ AegisName: Lich_Bone_Wand
+ Name: Lich's Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 60
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bAtkEle,Ele_Undead;
+ bonus bMatkRate,20;
+ bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine();
+ if (getrefine()>=9) {
+ bonus bMatkRate,3;
+ bonus bMaxSP,300;
+ }
+ - Id: 1625
+ AegisName: Healing_Staff
+ Name: Healing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 400
+ Attack: 10
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15;
+ bonus bHealPower,(getrefine()*3/2);
+ - Id: 1626
+ AegisName: Piercing_Staff
+ Name: Piercing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatkRate,15;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();
+ - Id: 1627
+ AegisName: Staffy
+ Name: Staffy
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 40
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1628
+ AegisName: Survival_Rod_C
+ Name: Refined Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 1
+ Attack: 71
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Script: |
+ bonus bDex,4;
+ bonus bMatkRate,20;
+ bonus bMaxHP,500;
+ - Id: 1629
+ AegisName: Walking_Stick
+ Name: Gentleman's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 40
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bDex,1;
+ - Id: 1630
+ AegisName: Release_Of_Wish
+ Name: Release of Wish
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,3;
+ bonus bHealPower,5;
+ autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";
+ - Id: 1631
+ AegisName: Holy_Stick
+ Name: Holy Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15;
+ bonus2 bCastrate,"AL_HOLYLIGHT",-25;
+ bonus2 bCastrate,"PR_TURNUNDEAD",-25;
+ bonus2 bCastrate,"PR_MAGNUS",-25;
+ - Id: 1632
+ AegisName: BF_Staff1
+ Name: Warlock's Magic Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bDex,3;
+ bonus bMatkRate,15;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus3 bAddEff,Eff_Stun,500,ATF_SKILL;
+ bonus bUnbreakableWeapon;
+ - Id: 1633
+ AegisName: BF_Staff2
+ Name: Warlock's Battle Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,3;
+ bonus bMatkRate,15;
+ bonus2 bMagicAddRace,RC_DemiHuman,15;
+ bonus2 bMagicAddRace,RC_Player_Human,15;
+ bonus3 bAddEff,Eff_Stun,500,ATF_SKILL;
+ bonus bUnbreakableWeapon;
+ - Id: 1634
+ AegisName: BF_Staff3
+ Name: Strong Recovery Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bHealPower,14;
+ bonus2 bSPRegenRate,5,10000;
+ bonus bUnbreakableWeapon;
+ - Id: 1635
+ AegisName: BF_Staff4
+ Name: Speedy Recovery Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bMatkRate,15;
+ bonus bDelayRate,-15;
+ bonus2 bSPRegenRate,5,10000;
+ bonus bUnbreakableWeapon;
+ - Id: 1636
+ AegisName: Thorn_Staff
+ Name: Thorn Staff of Darkness
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 60
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,3;
+ bonus bMatkRate,20;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine();
+ bonus bDelayRate,-(getrefine()*3/2);
+ - Id: 1637
+ AegisName: Eraser
+ Name: Eraser
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMatkRate,20;
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bSPrecovRate,8;
+ if (getrefine()>9 )
+ bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0;
+ else
+ bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0;
+ - Id: 1638
+ AegisName: Healing_Staff_C
+ Name: Staff Of Healing
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 10
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15;
+ bonus bHealPower,(getrefine()*3/2);
+ - Id: 1639
+ AegisName: N_Rod
+ Name: Novice Rod
+ Type: Weapon
+ SubType: Staff
+ Attack: 15
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,16;
+ - Id: 1640
+ AegisName: Krieger_Onehand_Staff1
+ Name: Glorious Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_DemiHuman,15;
+ bonus2 bMagicAddRace,RC_Player_Human,15;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0);
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0);
+ bonus bUnbreakableWeapon;
+ if (getrefine()>8) {
+ bonus bCastrate,-5;
+ bonus bDelayRate,-5;
+ bonus bMatkRate,5;
+ }
+ - Id: 1641
+ AegisName: Krieger_Onehand_Staff2
+ Name: Glorious Cure Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,14;
+ bonus bDelayRate,-10;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5;
+ bonus bHealPower,5+(getrefine()-5)*2;
+ }
+ if (getrefine()>8)
+ bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1;
+ if (getrefine()>9) {
+ bonus bHealPower,10;
+ }
+ - Id: 1642
+ AegisName: Staff_Of_Darkness
+ Name: Staff Of Darkness
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 100
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCastrate,-5;
+ bonus bMatkRate,15;
+ bonus bInt,2;
+ - Id: 1643
+ AegisName: Dead_Tree_Cane
+ Name: Dead Tree Cane
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 100
+ Attack: 100
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMatk,15;
+ bonus bInt,4;
+ if (getrefine()>5) {
+ bonus bInt,getrefine()-5;
+ bonus bMaxHP,-200;
+ bonus bMaxSP,-100;
+ }
+ - Id: 1644
+ AegisName: Piercing_Staff_M
+ Name: Staff of Piercing
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatkRate,15;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();
+ - Id: 1645
+ AegisName: Lich_Bone_Wand_M
+ Name: Lich's Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 60
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bAtkEle,Ele_Undead;
+ bonus bMatkRate,20;
+ bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine();
+ if (getrefine()>=9) {
+ bonus bMatkRate,3;
+ bonus bMaxSP,300;
+ }
+ - Id: 1646
+ AegisName: La'cryma_Stick
+ Name: La'cryma Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatkRate,15;
+ bonus bMdef,getrefine();
+ bonus2 bSkillAtk,"WZ_STORMGUST",getrefine();
+ if (getrefine()>9)
+ bonus2 bCastrate,"WZ_STORMGUST",-8;
+ - Id: 1647
+ AegisName: Croce_Staff
+ Name: Croce Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15;
+ bonus bInt,4;
+ bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;
+ - Id: 1648
+ AegisName: Staff_Of_Bordeaux
+ Name: Staff Of Bordeaux
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,2;
+ bonus bDex,1;
+ if (getskilllv("SA_DRAGONOLOGY") == 5) {
+ bonus bUseSPrate,-15;
+ bonus bInt,3;
+ }
+ - Id: 1701
+ AegisName: Bow
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Weight: 500
+ Attack: 15
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1702
+ AegisName: Bow_
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Weight: 500
+ Attack: 15
+ Range: 5
+ Slots: 4
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1703
+ AegisName: Bow__
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Attack: 15
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,1002,500;
+ bonus2 bAddDamageClass,1113,500;
+ bonus2 bAddDamageClass,1031,500;
+ bonus2 bAddDamageClass,1242,500;
+ - Id: 1704
+ AegisName: Composite_Bow
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1705
+ AegisName: Composite_Bow_
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Slots: 4
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1706
+ AegisName: Composite_Bow__
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1707
+ AegisName: Great_Bow
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1708
+ AegisName: Great_Bow_
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1709
+ AegisName: Great_Bow__
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1710
+ AegisName: CrossBow
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1711
+ AegisName: CrossBow_
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1712
+ AegisName: CrossBow__
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1713
+ AegisName: Arbalest
+ Name: Arbalest
+ Type: Weapon
+ SubType: Bow
+ Buy: 48000
+ Weight: 1000
+ Attack: 90
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1714
+ AegisName: Kakkung
+ Name: Gakkung Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 42000
+ Weight: 1100
+ Attack: 100
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1715
+ AegisName: Arbalest_
+ Name: Arbalest
+ Type: Weapon
+ SubType: Bow
+ Buy: 48000
+ Weight: 1000
+ Attack: 90
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1716
+ AegisName: Kakkung_
+ Name: Gakkung Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 42000
+ Weight: 1100
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1718
+ AegisName: Hunter_Bow
+ Name: Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 64000
+ Weight: 1500
+ Attack: 125
+ Range: 5
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1719
+ AegisName: Bow_Of_Roguemaster
+ Name: Roguemaster's Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 500
+ Attack: 75
+ Range: 11
+ Jobs:
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ - Id: 1720
+ AegisName: Bow_Of_Rudra
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 1721
+ AegisName: Repeting_CrossBow
+ Name: Repeating Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 89000
+ Weight: 2000
+ Attack: 95
+ Range: 9
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 1722
+ AegisName: Balistar
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 124000
+ Weight: 3500
+ Attack: 145
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 77
+ Refineable: true
+ - Id: 1723
+ AegisName: Luna_Bow
+ Name: Luna Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 2000
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8);
+ - Id: 1724
+ AegisName: Dragon_Wing
+ Name: Dragon Wing
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300;
+ bonus bIgnoreDefRace,RC_Dragon;
+ - Id: 1725
+ AegisName: Bow_Of_Minstrel
+ Name: Minstrel Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1700
+ Attack: 120
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bSPrecovRate,10;
+ - Id: 1726
+ AegisName: Hunter_Bow_
+ Name: Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 64000
+ Weight: 1500
+ Attack: 125
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1727
+ AegisName: Balistar_
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 124000
+ Weight: 3500
+ Attack: 145
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 77
+ Refineable: true
+ - Id: 1728
+ AegisName: Balistar_C
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 1
+ Attack: 194
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,20;
+ - Id: 1729
+ AegisName: Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ - Id: 1730
+ AegisName: Burning_Bow
+ Name: Burning Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 1731
+ AegisName: Frozen_Bow
+ Name: Frozen Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 100
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 1732
+ AegisName: Earth_Bow
+ Name: Earth Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 105
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 1733
+ AegisName: Gust_Bow
+ Name: Gust Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 1734
+ AegisName: Orc_Archer_Bow
+ Name: Orc Archer Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1600
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItem,1753,200;
+ - Id: 1735
+ AegisName: Kkakkung
+ Name: Kkakkung
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1736
+ AegisName: Double_Bound
+ Name: Double Bound
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 900
+ Attack: 70
+ Range: 5
+ Slots: 3
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;
+ - Id: 1737
+ AegisName: Ixion_Wing
+ Name: Ixion Wings
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 300
+ Attack: 135
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;
+ - Id: 1738
+ AegisName: BF_Bow1
+ Name: Valorous Battle CrossBow
+ Type: Weapon
+ SubType: Bow
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1739
+ AegisName: BF_Bow2
+ Name: Brave Battle CrossBow
+ Type: Weapon
+ SubType: Bow
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bInt,10;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus bUnbreakableWeapon;
+ - Id: 1740
+ AegisName: Nepenthes_Bow
+ Name: Nepenthes Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 105
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;
+ - Id: 1741
+ AegisName: Cursed_Lyre
+ Name: Cursed Lyre
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1250
+ Attack: 125
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bLuk,-2;
+ bonus2 bAddEff,Eff_Curse,400;
+ - Id: 1742
+ AegisName: N_Composite_Bow
+ Name: Novice Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1
+ Attack: 49
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1743
+ AegisName: Krieger_Bow1
+ Name: Glorious Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bCritAtkRate,getrefine() * 2;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ bonus2 bSkillAtk,"AC_DOUBLE",20;
+ - Id: 1744
+ AegisName: Bow_Of_Evil
+ Name: Bow Of Evil
+ Type: Weapon
+ SubType: Bow
+ Attack: 170
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"AC_DOUBLE",25;
+ bonus bDex,2;
+ - Id: 1745
+ AegisName: Falken_Blitz
+ Name: Falken Blitz
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10;
+ bonus2 bSkillAtk,"AC_DOUBLE",10;
+ bonus2 bSkillAtk,"AC_CHARGEARROW",10;
+ - Id: 1801
+ AegisName: Waghnakh
+ Name: Waghnak
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 8000
+ Weight: 400
+ Attack: 30
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1802
+ AegisName: Waghnakh_
+ Name: Waghnak
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 8000
+ Weight: 400
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1803
+ AegisName: Knuckle_Duster
+ Name: Knuckle Dusters
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 25000
+ Weight: 450
+ Attack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1804
+ AegisName: Knuckle_Duster_
+ Name: Knuckle Dusters
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 25000
+ Weight: 450
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1805
+ AegisName: Hora
+ Name: Studded Knuckles
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 32000
+ Weight: 450
+ Attack: 65
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1806
+ AegisName: Hora_
+ Name: Studded Knuckles
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 32000
+ Weight: 450
+ Attack: 65
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1807
+ AegisName: Fist
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 53000
+ Weight: 650
+ Attack: 115
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1808
+ AegisName: Fist_
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 53000
+ Weight: 650
+ Attack: 115
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1809
+ AegisName: Claw
+ Name: Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 67000
+ Weight: 500
+ Attack: 86
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1810
+ AegisName: Claw_
+ Name: Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 67000
+ Weight: 500
+ Attack: 86
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1811
+ AegisName: Finger
+ Name: Finger
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 58000
+ Weight: 500
+ Attack: 97
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1812
+ AegisName: Finger_
+ Name: Finger
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 58000
+ Weight: 500
+ Attack: 97
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1813
+ AegisName: Kaiser_Knuckle
+ Name: Kaiser Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 450
+ Attack: 110
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ - Id: 1814
+ AegisName: Berserk
+ Name: Berserk
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAspdRate,12;
+ - Id: 1815
+ AegisName: Claw_Of_Garm
+ Name: Hatii Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 550
+ Attack: 152
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus bMaxHPrate,-2;
+ bonus2 bAddEff,Eff_Bleeding,200;
+ - Id: 1816
+ AegisName: Berserk_
+ Name: Berserk
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAspdRate,12;
+ - Id: 1817
+ AegisName: Kaiser_Knuckle_C
+ Name: Kaiser Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 1
+ Attack: 159
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bAspdRate,5;
+ - Id: 1818
+ AegisName: Magma_Fist
+ Name: Magma Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;
+ - Id: 1819
+ AegisName: Icicle_Fist
+ Name: Icicle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;
+ - Id: 1820
+ AegisName: Electric_Fist
+ Name: Electric Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;
+ - Id: 1821
+ AegisName: Seismic_Fist
+ Name: Seismic Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;
+ - Id: 1822
+ AegisName: Combo_Battle_Glove
+ Name: Combo Battle Glove
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"MO_TRIPLEATTACK",15;
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",15;
+ bonus2 bSkillAtk,"MO_COMBOFINISH",20;
+ - Id: 1823
+ AegisName: BF_Knuckle1
+ Name: Valorous Battle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0;
+ bonus bUnbreakableWeapon;
+ - Id: 1824
+ AegisName: BF_Knuckle2
+ Name: Brave Battle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bCastrate,"MO_EXTREMITYFIST",-25;
+ autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }";
+ bonus bUnbreakableWeapon;
+ - Id: 1825
+ AegisName: Horn_Of_Hilthrion
+ Name: Horn of Hillslion
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 600
+ Attack: 95
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;
+ bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100;
+ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100;
+ - Id: 1826
+ AegisName: Krieger_Knuckle1
+ Name: Glorious Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50);
+ bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50);
+ }
+ - Id: 1827
+ AegisName: Krieger_Knuckle2
+ Name: Glorious Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bCastrate,"MO_EXTREMITYFIST",-100;
+ bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000;
+ }
+ - Id: 1828
+ AegisName: Monk_Knuckle
+ Name: Monk Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 150
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;
+ - Id: 1829
+ AegisName: Fist_C
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 150
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1901
+ AegisName: Violin
+ Name: Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 4000
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1902
+ AegisName: Violin_
+ Name: Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 4000
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1903
+ AegisName: Mandolin
+ Name: Mandolin
+ Type: Weapon
+ SubType: Musical
+ Buy: 18000
+ Weight: 400
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1904
+ AegisName: Mandolin_
+ Name: Mandolin
+ Type: Weapon
+ SubType: Musical
+ Buy: 18000
+ Weight: 400
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1905
+ AegisName: Lute
+ Name: Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 24500
+ Weight: 500
+ Attack: 105
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1906
+ AegisName: Lute_
+ Name: Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 24500
+ Weight: 500
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1907
+ AegisName: Guitar
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 47000
+ Weight: 900
+ Attack: 142
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1908
+ AegisName: Guitar_
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 47000
+ Weight: 900
+ Attack: 142
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1909
+ AegisName: Harp
+ Name: Harp
+ Type: Weapon
+ SubType: Musical
+ Buy: 62000
+ Weight: 900
+ Attack: 114
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1910
+ AegisName: Harp_
+ Name: Harp
+ Type: Weapon
+ SubType: Musical
+ Buy: 62000
+ Weight: 900
+ Attack: 114
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1911
+ AegisName: Guh_Moon_Goh
+ Name: Gumoongoh
+ Type: Weapon
+ SubType: Musical
+ Buy: 54000
+ Weight: 1300
+ Attack: 126
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1912
+ AegisName: Guh_Moon_Goh_
+ Name: Gumoongoh
+ Type: Weapon
+ SubType: Musical
+ Buy: 54000
+ Weight: 1300
+ Attack: 126
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1913
+ AegisName: Electronic_Guitar
+ Name: Electric Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1800
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ skill "WZ_JUPITEL",1;
+ bonus3 bAutoSpell,"WZ_JUPITEL",1,100;
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,2;
+ bonus bAgi,1;
+ - Id: 1914
+ AegisName: Guitar_Of_Passion
+ Name: Burning Passion Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1915
+ AegisName: Guitar_Of_Blue_Solo
+ Name: Loner's Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1916
+ AegisName: Guitar_Of_Vast_Land
+ Name: Green Acre Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1917
+ AegisName: Guitar_Of_Gentle_Breeze
+ Name: Gentle Breeze Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1918
+ AegisName: Oriental_Lute
+ Name: Oriental Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ - Id: 1919
+ AegisName: Base_Guitar
+ Name: Bass Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSPGainValue,3;
+ bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1;
+ bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;
+ - Id: 1920
+ AegisName: Berserk_Guitar
+ Name: Berserk Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1800
+ Attack: 10
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAspdRate,100;
+ bonus bHPrecovRate,-100;
+ bonus2 bHPLossRate,50,5000;
+ bonus bDex,-readparam(bDex);
+ - Id: 1921
+ AegisName: Guh_Moon_Gom
+ Name: Gun Moon Gom
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1922
+ AegisName: Oriental_Lute_
+ Name: Oriental Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ - Id: 1923
+ AegisName: BF_Instrument1
+ Name: Valorous Battlefield Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1924
+ AegisName: BF_Instrument2
+ Name: Brave Battlefield Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20;
+ bonus bUnbreakableWeapon;
+ - Id: 1925
+ AegisName: Cello
+ Name: Cello
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,3;
+ bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2;
+ bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;
+ - Id: 1926
+ AegisName: Harp_Of_Nepenthes
+ Name: Harp of Nepenthes
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ if (getrefine()>9 ) {
+ bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000;
+ }
+ else {
+ bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000;
+ }
+ - Id: 1927
+ AegisName: Krieger_Instrument1
+ Name: Glorious Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;
+ - Id: 1928
+ AegisName: Berserk_Guitar_I
+ Name: Spirited Guitar
+ Type: Weapon
+ SubType: Musical
+ Attack: 40
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,100;
+ bonus bHPrecovRate,-100;
+ bonus2 bHPLossRate,50,5000;
+ bonus bDex,-readparam(bDex);
+ - Id: 1929
+ AegisName: Guitar_C
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Attack: 177
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1950
+ AegisName: Rope
+ Name: Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 2500
+ Weight: 400
+ Attack: 45
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1951
+ AegisName: Rope_
+ Name: Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 2500
+ Weight: 400
+ Attack: 45
+ Range: 2
+ Slots: 4
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1952
+ AegisName: Line
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 12000
+ Weight: 300
+ Attack: 80
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1953
+ AegisName: Line_
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 12000
+ Weight: 300
+ Attack: 80
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1954
+ AegisName: Wire
+ Name: Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 17500
+ Weight: 1000
+ Attack: 95
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1955
+ AegisName: Wire_
+ Name: Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 17500
+ Weight: 1000
+ Attack: 95
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1956
+ AegisName: Rante
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 32000
+ Weight: 900
+ Attack: 135
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1957
+ AegisName: Rante_
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 32000
+ Weight: 900
+ Attack: 135
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1958
+ AegisName: Tail
+ Name: Tail Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 41000
+ Weight: 700
+ Attack: 105
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ - Id: 1959
+ AegisName: Tail_
+ Name: Tail Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 41000
+ Weight: 700
+ Attack: 105
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ - Id: 1960
+ AegisName: Whip
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 38000
+ Weight: 700
+ Attack: 120
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1961
+ AegisName: Whip_
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 38000
+ Weight: 700
+ Attack: 120
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1962
+ AegisName: Lariat
+ Name: Lariat Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 400
+ Attack: 100
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bDex,5;
+ bonus bAgi,1;
+ - Id: 1963
+ AegisName: Rapture_Rose
+ Name: Rapture Rose
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 300
+ Attack: 115
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,5000;
+ - Id: 1964
+ AegisName: Chemeti
+ Name: Chemeti Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 135
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bCritical,5;
+ bonus bFlee,10;
+ bonus bFlee2,2;
+ - Id: 1965
+ AegisName: Whip_Of_Red_Flame
+ Name: Red Flame Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1966
+ AegisName: Whip_Of_Ice_Piece
+ Name: Icicle Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1967
+ AegisName: Whip_Of_Earth
+ Name: Gaia Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1968
+ AegisName: Jump_Rope
+ Name: Skipping Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 400
+ Attack: 120
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bCritical,20;
+ - Id: 1969
+ AegisName: Bladed_Whip
+ Name: Blade Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,300;
+ - Id: 1970
+ AegisName: Queen's_Whip
+ Name: Queen's Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1100
+ Attack: 150
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 1971
+ AegisName: Electric_Wire
+ Name: Electric Wire
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1972
+ AegisName: Electric_Eel
+ Name: Electric Eel
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 2000
+ Attack: 100
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,2;
+ bonus bAgi,2;
+ bonus3 bAutoSpell,"WZ_JUPITEL",3,20;
+ if (getrefine()>0)
+ bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50;
+ - Id: 1973
+ AegisName: Sea_Witch_Foot
+ Name: Sea Witch's Foot
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1500
+ Attack: 110
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSPGainValue,5;
+ bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1;
+ bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;
+ - Id: 1974
+ AegisName: Carrot_Whip
+ Name: Carrot Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1300
+ Attack: 185
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ if (getrefine()>0)
+ bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10;
+ - Id: 1975
+ AegisName: Queen_Is_Whip
+ Name: Queen Is Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 120
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1976
+ AegisName: Queen's_Whip_
+ Name: Queen's Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1100
+ Attack: 150
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 1977
+ AegisName: BF_Whip1
+ Name: Valorous Battle Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1978
+ AegisName: BF_Whip2
+ Name: Brave Battle Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20;
+ bonus bUnbreakableWeapon;
+ - Id: 1979
+ AegisName: Stem_Of_Nepenthes
+ Name: Stem of Nepenthes
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ if (getrefine()>=9 ) {
+ bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000;
+ }
+ else {
+ bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000;
+ }
+ - Id: 1980
+ AegisName: Whip_Of_Balance
+ Name: Whip of Balance
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Classes:
+ Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,3;
+ bonus2 bAddSkillBlow,"DC_THROWARROW",2;
+ bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;
+ - Id: 1981
+ AegisName: Krieger_Whip1
+ Name: Glorious Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;
+ - Id: 1982
+ AegisName: Phenomena_Whip
+ Name: Phenomena Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 160
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bSkillAtk,"DC_THROWARROW",25;
+ - Id: 1983
+ AegisName: Rante_C
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Attack: 170
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 2000
+ AegisName: Destruction_Rod
+ Name: Staff of Destruction
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bMatkRate,25+getrefine()/2;
+ bonus bInt,3;
+ bonus bAgi,10;
+ bonus bUseSPrate,(getrefine()*2);
+ bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20);
+ bonus2 bCastrate,"HW_MAGICPOWER",-50;
+ - Id: 2001
+ AegisName: Divine_Cross
+ Name: Divine Cross
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15;
+ bonus bDex,4;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubRace,RC_Undead,15;
+ - Id: 2002
+ AegisName: Krieger_Twohand_Staff1
+ Name: Glorious Destruction Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Attack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,getrefine();
+ bonus2 bMagicAddRace,RC_DemiHuman,15;
+ bonus2 bMagicAddRace,RC_Player_Human,15;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2;
+ bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2;
+ }
+ if (getrefine()>8) {
+ bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1;
+ bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1;
+ bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1;
+ }
+ - Id: 2003
+ AegisName: Destruction_Rod_M
+ Name: Staff of Destruction
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,25+getrefine()/2;
+ bonus bInt,3;
+ bonus bAgi,10;
+ bonus bUseSPrate,(getrefine()*2);
+ bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20);
+ bonus2 bCastrate,"HW_MAGICPOWER",-50;
+ - Id: 2004
+ AegisName: Kronos
+ Name: Kronos
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 30
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMatkRate,20;
+ bonus bInt,3+(getrefine()/2);
+ bonus bMaxHP,300+(50*getrefine()/2);
+ autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2005
+ AegisName: Dea_Staff
+ Name: Dea Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 30
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,15+getrefine()/2;
+ bonus bInt,6;
+ bonus bVit,2;
+ autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }";
+ - Id: 2006
+ AegisName: G_Staff_Of_Light
+ Name: Staff Of Light
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1900
+ Attack: 80
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ /* bonus bMatk,150;
+ */ bonus bAtkEle,Ele_Holy;
+ bonus bInt,6;
+ - Id: 2101
+ AegisName: Guard
+ Name: Guard
+ Type: Armor
+ Buy: 500
+ Weight: 300
+ Defense: 3
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 1
+ - Id: 2102
+ AegisName: Guard_
+ Name: Guard
+ Type: Armor
+ Buy: 500
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 1
+ - Id: 2103
+ AegisName: Buckler
+ Name: Buckler
+ Type: Armor
+ Buy: 14000
+ Weight: 600
+ Defense: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 2
+ - Id: 2104
+ AegisName: Buckler_
+ Name: Buckler
+ Type: Armor
+ Buy: 14000
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 2
+ - Id: 2105
+ AegisName: Shield
+ Name: Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 1300
+ Defense: 6
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ - Id: 2106
+ AegisName: Shield_
+ Name: Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 1300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ - Id: 2107
+ AegisName: Mirror_Shield
+ Name: Mirror Shield
+ Type: Armor
+ Buy: 60000
+ Weight: 1000
+ Defense: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ - Id: 2108
+ AegisName: Mirror_Shield_
+ Name: Mirror Shield
+ Type: Armor
+ Buy: 60000
+ Weight: 1000
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ - Id: 2109
+ AegisName: Memorize_Book
+ Name: Memory Book
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 2110
+ AegisName: Holy_Guard
+ Name: Holy Guard
+ Type: Armor
+ Buy: 85000
+ Weight: 1400
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 68
+ View: 4
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,2;
+ - Id: 2111
+ AegisName: Herald_Of_GOD
+ Name: Sacred Mission
+ Type: Armor
+ Buy: 128000
+ Weight: 1600
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 83
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bVit,3;
+ bonus bInt,2;
+ bonus bMdef,3;
+ bonus bUnbreakableShield;
+ - Id: 2112
+ AegisName: Novice_Guard
+ Name: Novice Guard
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 3
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ View: 1
+ - Id: 2113
+ AegisName: Novice_Shield
+ Name: Novice Shield
+ Type: Armor
+ Buy: 5000
+ Weight: 1000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bSubEle,Ele_Poison,20;
+ bonus2 bSubEle,Ele_Ghost,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ - Id: 2114
+ AegisName: Stone_Buckler
+ Name: Stone Buckler
+ Type: Armor
+ Buy: 30000
+ Weight: 1500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 2
+ Script: |
+ bonus2 bSubSize,Size_Large,5;
+ - Id: 2115
+ AegisName: Valkyrja's_Shield
+ Name: Valkyrja's Shield
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 4
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ bonus bMdef,5;
+ - Id: 2116
+ AegisName: Angel's_Safeguard
+ Name: Angelic Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 2117
+ AegisName: Arm_Guard
+ Name: Arm Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 150
+ Defense: 5
+ Jobs:
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ - Id: 2118
+ AegisName: Arm_Guard_
+ Name: Arm Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 150
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ - Id: 2119
+ AegisName: Improved_Arm_Guard
+ Name: Advanced Arm Guard
+ Type: Armor
+ Buy: 40000
+ Weight: 150
+ Defense: 4
+ Jobs:
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2120
+ AegisName: Improved_Arm_Guard_
+ Name: Advanced Arm Guard
+ Type: Armor
+ Buy: 40000
+ Weight: 150
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2121
+ AegisName: Memorize_Book_
+ Name: Memory Book
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 2122
+ AegisName: Platinum_Shield
+ Name: Platinum Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 68
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubSize,Size_Medium,15;
+ bonus2 bSubSize,Size_Large,15;
+ bonus2 bSubRace,RC_Undead,10;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;
+ - Id: 2123
+ AegisName: Orleans_Server
+ Name: Orleans's Server
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,2;
+ bonus bMagicDamageReturn,5;
+ - Id: 2124
+ AegisName: Thorny_Buckler
+ Name: Thorny Buckler
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 2
+ Script: |
+ bonus bMdef,2;
+ - Id: 2125
+ AegisName: Strong_Shield
+ Name: Strong Shield
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bNoKnockback;
+ bonus2 bSubEle,Ele_Neutral,-20;
+ bonus2 bSubEle,Ele_Fire,-20;
+ bonus2 bSubEle,Ele_Water,-20;
+ bonus2 bSubEle,Ele_Wind,-20;
+ bonus2 bSubEle,Ele_Earth,-20;
+ bonus2 bSubEle,Ele_Dark,-20;
+ bonus2 bSubEle,Ele_Holy,-20;
+ bonus2 bSubEle,Ele_Ghost,-20;
+ - Id: 2126
+ AegisName: Guyak_Shield
+ Name: Guyak Shield
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 2
+ Script: |
+ bonus bMdef,3;
+ - Id: 2127
+ AegisName: Secular_Mission
+ Name: Secular Mission
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Left_Hand: true
+ View: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubClass,Class_All,25;
+ - Id: 2128
+ AegisName: Herald_Of_GOD_
+ Name: Sacred Mission
+ Type: Armor
+ Buy: 128000
+ Weight: 1600
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 83
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bVit,3;
+ bonus bInt,2;
+ bonus bMdef,3;
+ bonus bUnbreakableShield;
+ - Id: 2129
+ AegisName: Exorcism_Bible
+ Name: Exorcism Bible
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bHPrecovRate,3;
+ bonus bSPrecovRate,3;
+ bonus bInt,1;
+ - Id: 2130
+ AegisName: Cross_Shield
+ Name: Cross Shield
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bStr,1;
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",30;
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30;
+ bonus bUseSPrate,10;
+ - Id: 2131
+ AegisName: Magic_Study_Vol1
+ Name: Magic Bible Vol1
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus2 bAddEffWhenHit,Eff_Stun,1000;
+ - Id: 2132
+ AegisName: Shelter_Resistance
+ Name: Shell Of Resistance
+ Type: Armor
+ Buy: 20
+ Defense: 9
+ Locations:
+ Left_Hand: true
+ View: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_All,20;
+ bonus bShortWeaponDamageReturn,1;
+ if (vip_status(VIP_STATUS_ACTIVE)) {
+ bonus bAllStats,1;
+ }
+ - Id: 2133
+ AegisName: Tournament_Shield
+ Name: Tournament Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 4
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ if (Class == Job_Lord_Knight)
+ bonus bAspdRate,-5;
+ - Id: 2134
+ AegisName: Shield_Of_Naga
+ Name: Shield of Naga
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 2
+ Script: |
+ bonus bMdef,3;
+ autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }";
+ - Id: 2135
+ AegisName: Shadow_Guard
+ Name: Shadow Guard
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 2
+ - Id: 2136
+ AegisName: Cracked_Buckler
+ Name: Cracked Buckler
+ Type: Armor
+ Defense: 5
+ Locations:
+ Left_Hand: true
+ View: 2
+ Script: |
+ bonus bAgi,2;
+ bonus2 bAddEle,Ele_Neutral,-10;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50;
+ bonus bMdef,1;
+ - Id: 2137
+ AegisName: Valkyrja's_Shield_C
+ Name: Neo Valkyrja's Shield
+ Type: Armor
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 95
+ View: 4
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ bonus bMdef,5;
+ - Id: 2138
+ AegisName: Bradium_Shield
+ Name: Bradium Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1800
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60;
+ bonus bAgi,-1;
+ bonus bMaxHP,500;
+ - Id: 2139
+ AegisName: Flame_Thrower
+ Name: Flame Thrower
+ Type: Armor
+ Buy: 20000
+ Weight: 2000
+ Defense: 60
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ View: 1
+ - Id: 2199
+ AegisName: Ahura_Mazda
+ Name: Ahura Mazdah
+ Type: Armor
+ Buy: 1
+ Weight: 10
+ Defense: 100
+ Locations:
+ Left_Hand: true
+ 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;
+ - Id: 2201
+ AegisName: Sunglasses
+ Name: Sunglasses
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 12
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 2202
+ AegisName: Sunglasses_
+ Name: Sunglasses
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 12
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 2203
+ AegisName: Glasses
+ Name: Glasses
+ Type: Armor
+ Buy: 4000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 3
+ - Id: 2204
+ AegisName: Glasses_
+ Name: Glasses
+ Type: Armor
+ Buy: 4000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 3
+ - Id: 2205
+ AegisName: Diver's_Goggles
+ Name: Diver Goggles
+ Type: Armor
+ Buy: 3500
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 10
+ - Id: 2206
+ AegisName: Wedding_Veil
+ Name: Wedding Veil
+ Type: Armor
+ Buy: 23000
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 44
+ Script: |
+ bonus bMdef,5;
+ - Id: 2207
+ AegisName: Fancy_Flower
+ Name: Fancy Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 4
+ Script: |
+ bonus2 bSubRace,RC_Plant,10;
+ - Id: 2208
+ AegisName: Ribbon
+ Name: Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 17
+ Script: |
+ bonus bMdef,3;
+ - Id: 2209
+ AegisName: Ribbon_
+ Name: Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 17
+ Script: |
+ bonus bMdef,3;
+ - Id: 2210
+ AegisName: Hair_Band
+ Name: Hair Band
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 9
+ - Id: 2211
+ AegisName: Bandana
+ Name: Bandana
+ Type: Armor
+ Buy: 400
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 6
+ - Id: 2212
+ AegisName: Eye_Bandage
+ Name: Eye Patch
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 13
+ - Id: 2213
+ AegisName: Cat_Hairband
+ Name: Kitty Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 2
+ - Id: 2214
+ AegisName: Bunny_Band
+ Name: Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bLuk,2;
+ - Id: 2215
+ AegisName: Flower_Hairband
+ Name: Flower Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 5
+ - Id: 2216
+ AegisName: Biretta
+ Name: Biretta
+ Type: Armor
+ Buy: 9000
+ Weight: 100
+ Defense: 4
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 11
+ - Id: 2217
+ AegisName: Biretta_
+ Name: Biretta
+ Type: Armor
+ Buy: 9000
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 11
+ - Id: 2218
+ AegisName: Flu_Mask
+ Name: Flu Mask
+ Type: Armor
+ Buy: 300
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Script: |
+ bonus2 bResEff,Eff_Silence,1000;
+ - Id: 2219
+ AegisName: Flu_Mask_
+ Name: Flu Mask
+ Type: Armor
+ Buy: 300
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Script: |
+ bonus2 bResEff,Eff_Silence,1000;
+ - Id: 2220
+ AegisName: Hat
+ Name: Hat
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ - Id: 2221
+ AegisName: Hat_
+ Name: Hat
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ - Id: 2222
+ AegisName: Turban
+ Name: Turban
+ Type: Armor
+ Buy: 4500
+ Weight: 300
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 7
+ - Id: 2223
+ AegisName: Turban_
+ Name: Turban
+ Type: Armor
+ Buy: 4500
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 7
+ - Id: 2224
+ AegisName: Goggle
+ Name: Goggles
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 1
+ - Id: 2225
+ AegisName: Goggle_
+ Name: Goggles
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 1
+ - Id: 2226
+ AegisName: Cap
+ Name: Cap
+ Type: Armor
+ Buy: 12000
+ Weight: 400
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 14
+ - Id: 2227
+ AegisName: Cap_
+ Name: Cap
+ Type: Armor
+ Buy: 12000
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 14
+ - Id: 2228
+ AegisName: Helm
+ Name: Helm
+ Type: Armor
+ Buy: 44000
+ Weight: 600
+ Defense: 6
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 40
+ - Id: 2229
+ AegisName: Helm_
+ Name: Helm
+ Type: Armor
+ Buy: 44000
+ Weight: 600
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 40
+ - Id: 2230
+ AegisName: Gemmed_Sallet
+ Name: Gemmed Sallet
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2231
+ AegisName: Gemmed_Sallet_
+ Name: Gemmed Sallet
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2232
+ AegisName: Circlet
+ Name: Circlet
+ Type: Armor
+ Buy: 7500
+ Weight: 300
+ Defense: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 18
+ Script: |
+ bonus bMdef,3;
+ - Id: 2233
+ AegisName: Circlet_
+ Name: Circlet
+ Type: Armor
+ Buy: 7500
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 18
+ Script: |
+ bonus bMdef,3;
+ - Id: 2234
+ AegisName: Tiara
+ Name: Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 19
+ Script: |
+ bonus bInt,2;
+ - Id: 2235
+ AegisName: Crown
+ Name: Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 45
+ Script: |
+ bonus bInt,2;
+ - Id: 2236
+ AegisName: Santa's_Hat
+ Name: Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 20
+ Script: |
+ bonus bMdef,1;
+ bonus bLuk,1;
+ - Id: 2237
+ AegisName: Weird_Goatee
+ Name: Bandit Beard
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 21
+ - Id: 2239
+ AegisName: One_Eyed_Glass
+ Name: Monocle
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 23
+ - Id: 2240
+ AegisName: Beard
+ Name: Beard
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 24
+ - Id: 2241
+ AegisName: Granpa_Beard
+ Name: Grampa Beard
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 25
+ - Id: 2242
+ AegisName: Luxury_Sunglasses
+ Name: Purple Glasses
+ Type: Armor
+ Buy: 24000
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 26
+ Script: |
+ bonus2 bResEff,Eff_Blind,1000;
+ - Id: 2243
+ AegisName: Spinning_Eyes
+ Name: Geek Glasses
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 27
+ Script: |
+ bonus2 bResEff,Eff_Blind,1500;
+ - Id: 2244
+ AegisName: Big_Sis'_Ribbon
+ Name: Big Ribbon
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 28
+ Script: |
+ bonus bMdef,3;
+ - Id: 2245
+ AegisName: Sweet_Gents
+ Name: Sweet Gent
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 29
+ - Id: 2246
+ AegisName: Golden_Gear
+ Name: Golden Gear
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 30
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 2247
+ AegisName: Oldman's_Romance
+ Name: Romantic Gent
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 31
+ - Id: 2248
+ AegisName: Western_Grace
+ Name: Western Grace
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 32
+ - Id: 2249
+ AegisName: Coronet
+ Name: Coronet
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 33
+ Script: |
+ bonus bInt,1;
+ - Id: 2250
+ AegisName: Fillet
+ Name: Cute Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 34
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 2251
+ AegisName: Holy_Bonnet
+ Name: Monk Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 35
+ Script: |
+ bonus bMdef,3;
+ - Id: 2252
+ AegisName: Star_Sparkling
+ Name: Wizard Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 36
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 2253
+ AegisName: Sunflower
+ Name: Sunflower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 37
+ Script: |
+ bonus2 bSubRace,RC_Insect,10;
+ - Id: 2254
+ AegisName: Angelic_Chain
+ Name: Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 2255
+ AegisName: Satanic_Chain
+ Name: Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Script: |
+ bonus bMdef,2;
+ bonus bStr,1;
+ bonus2 bSubRace,RC_Angel,3;
+ - Id: 2256
+ AegisName: Magestic_Goat
+ Name: Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 2257
+ AegisName: Snowy_Horn
+ Name: Unicorn Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 42
+ - Id: 2258
+ AegisName: Sharp_Gear
+ Name: Spiky Band
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 6
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 43
+ - Id: 2259
+ AegisName: Mini_Propeller
+ Name: Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 46
+ - Id: 2260
+ AegisName: Mini_Glasses
+ Name: Mini Glasses
+ Type: Armor
+ Buy: 28000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 47
+ - Id: 2261
+ AegisName: Prontera_Army_Cap
+ Name: Army Cap
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 48
+ - Id: 2262
+ AegisName: Pierrot_Nose
+ Name: Clown Nose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 49
+ - Id: 2263
+ AegisName: Gangster_Patch
+ Name: Zorro Masque
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 50
+ - Id: 2264
+ AegisName: Munak_Turban
+ Name: Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 51
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 2265
+ AegisName: Ganster_Mask
+ Name: Gangster Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 52
+ Script: |
+ bonus2 bResEff,Eff_Silence,1500;
+ - Id: 2266
+ AegisName: Iron_Cane
+ Name: Iron Cain
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 53
+ - Id: 2267
+ AegisName: Cigar
+ Name: Cigarette
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 54
+ Script: |
+ bonus2 bSubRace,RC_Insect,3;
+ - Id: 2268
+ AegisName: Smoking_Pipe
+ Name: Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 55
+ Script: |
+ bonus2 bSubRace,RC_Insect,3;
+ - Id: 2269
+ AegisName: Centimental_Flower
+ Name: Romantic Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 56
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 2270
+ AegisName: Centimental_Leaf
+ Name: Romantic Leaf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 57
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 2271
+ AegisName: Jack_A_Dandy
+ Name: Jack be Dandy
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 58
+ - Id: 2272
+ AegisName: Stop_Post
+ Name: Stop Post
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 59
+ - Id: 2273
+ AegisName: Doctor_Cap
+ Name: Doctor Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 60
+ Script: |
+ bonus bInt,1;
+ - Id: 2274
+ AegisName: Ghost_Bandana
+ Name: Ghost Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 61
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubEle,Ele_Ghost,10;
+ - Id: 2275
+ AegisName: Red_Bandana
+ Name: Red Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 62
+ - Id: 2276
+ AegisName: Eagle_Eyes
+ Name: Angled Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 63
+ - Id: 2277
+ AegisName: Nurse_Cap
+ Name: Nurse Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 64
+ Script: |
+ bonus bInt,1;
+ - Id: 2278
+ AegisName: Mr_Smile
+ Name: Mr. Smile
+ Type: Armor
+ Buy: 60
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 65
+ - Id: 2279
+ AegisName: Bomb_Wick
+ Name: Bomb Wick
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 66
+ - Id: 2280
+ AegisName: Sahkkat
+ Name: Sakkat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 67
+ Script: |
+ bonus bAgi,1;
+ - Id: 2281
+ AegisName: Phantom_Of_Opera
+ Name: Opera Masque
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 68
+ - Id: 2282
+ AegisName: Spirit_Chain
+ Name: Halo
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 69
+ Script: |
+ bonus2 bSubEle,Ele_Holy,15;
+ - Id: 2283
+ AegisName: Ear_Mufs
+ Name: Ear Muffs
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 70
+ Script: |
+ bonus2 bResEff,Eff_Curse,1000;
+ - Id: 2284
+ AegisName: Antler
+ Name: Antlers
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 71
+ - Id: 2285
+ AegisName: Apple_Of_Archer
+ Name: Apple of Archer
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 72
+ Script: |
+ bonus bDex,3;
+ - Id: 2286
+ AegisName: Elven_Ears
+ Name: Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 73
+ - Id: 2287
+ AegisName: Pirate_Bandana
+ Name: Pirate Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 74
+ Script: |
+ bonus bStr,1;
+ - Id: 2288
+ AegisName: Mr_Scream
+ Name: Mr. Scream
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 75
+ - Id: 2289
+ AegisName: Poo_Poo_Hat
+ Name: Poo Poo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Locations:
+ Head_Top: true
+ View: 76
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 2290
+ AegisName: Funeral_Costume
+ Name: Funeral Hat
+ Type: Armor
+ Buy: 3000
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 77
+ - Id: 2291
+ AegisName: Masquerade
+ Name: Masquerade
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 78
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 2292
+ AegisName: Welding_Mask
+ Name: Welding Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 79
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2293
+ AegisName: Pretend_Murdered
+ Name: Pretend Murdered
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 80
+ - Id: 2294
+ AegisName: Star_Dust
+ Name: Stellar
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 81
+ - Id: 2295
+ AegisName: Blinker
+ Name: Blinker
+ Type: Armor
+ Buy: 1500
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 82
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 2296
+ AegisName: Binoculars
+ Name: Binoculars
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 83
+ Script: |
+ bonus bDex,1;
+ - Id: 2297
+ AegisName: Goblini_Mask
+ Name: Goblin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 84
+ - Id: 2298
+ AegisName: Green_Feeler
+ Name: Green Feeler
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 85
+ - Id: 2299
+ AegisName: Viking_Helm
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 86
+ - Id: 2301
+ AegisName: Cotton_Shirt
+ Name: Cotton Shirt
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2302
+ AegisName: Cotton_Shirt_
+ Name: Cotton Shirt
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2303
+ AegisName: Leather_Jacket
+ Name: Jacket
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Defense: 2
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2304
+ AegisName: Leather_Jacket_
+ Name: Jacket
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2305
+ AegisName: Adventure_Suit
+ Name: Adventurer's Suit
+ Type: Armor
+ Buy: 1000
+ Weight: 300
+ Defense: 3
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2306
+ AegisName: Adventurere's_Suit_
+ Name: Adventurer's Suit
+ Type: Armor
+ Buy: 1000
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2307
+ AegisName: Mantle
+ Name: Mantle
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2308
+ AegisName: Mantle_
+ Name: Mantle
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2309
+ AegisName: Coat
+ Name: Coat
+ Type: Armor
+ Buy: 22000
+ Weight: 1200
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2310
+ AegisName: Coat_
+ Name: Coat
+ Type: Armor
+ Buy: 22000
+ Weight: 1200
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2311
+ AegisName: Mink_Coat
+ Name: Mink Coat
+ Type: Armor
+ Buy: 20
+ Weight: 2300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 2312
+ AegisName: Padded_Armor
+ Name: Padded Armor
+ Type: Armor
+ Buy: 48000
+ Weight: 2800
+ Defense: 7
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2313
+ AegisName: Padded_Armor_
+ Name: Padded Armor
+ Type: Armor
+ Buy: 48000
+ Weight: 2800
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2314
+ AegisName: Chain_Mail
+ Name: Chain Mail
+ Type: Armor
+ Buy: 65000
+ Weight: 3300
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2315
+ AegisName: Chain_Mail_
+ Name: Chain Mail
+ Type: Armor
+ Buy: 65000
+ Weight: 3300
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2316
+ AegisName: Plate_Armor
+ Name: Full Plate
+ Type: Armor
+ Buy: 80000
+ Weight: 4500
+ Defense: 10
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ - Id: 2317
+ AegisName: Plate_Armor_
+ Name: Full Plate
+ Type: Armor
+ Buy: 80000
+ Weight: 4500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ - Id: 2318
+ AegisName: Clothes_Of_The_Lord
+ Name: Lord's Clothes
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2319
+ AegisName: Glittering_Clothes
+ Name: Glittering Jacket
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bAddEff,Eff_Blind,300;
+ - Id: 2320
+ AegisName: Formal_Suit
+ Name: Formal Suit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2321
+ AegisName: Silk_Robe
+ Name: Silk Robe
+ Type: Armor
+ Buy: 8000
+ Weight: 400
+ Defense: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2322
+ AegisName: Silk_Robe_
+ Name: Silk Robe
+ Type: Armor
+ Buy: 8000
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2323
+ AegisName: Scapulare
+ Name: Scapulare
+ Type: Armor
+ Buy: 6500
+ Weight: 400
+ Defense: 4
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2324
+ AegisName: Scapulare_
+ Name: Scapulare
+ Type: Armor
+ Buy: 6500
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2325
+ AegisName: Saint_Robe
+ Name: Saint's Robe
+ Type: Armor
+ Buy: 54000
+ Weight: 600
+ Defense: 6
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2326
+ AegisName: Saint_Robe_
+ Name: Saint's Robe
+ Type: Armor
+ Buy: 54000
+ Weight: 600
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2327
+ AegisName: Holy_Robe
+ Name: Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 7
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubEle,Ele_Dark,10;
+ - Id: 2328
+ AegisName: Wooden_Mail
+ Name: Wooden Mail
+ Type: Armor
+ Buy: 5500
+ Weight: 1000
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2329
+ AegisName: Wooden_Mail_
+ Name: Wooden Mail
+ Type: Armor
+ Buy: 5500
+ Weight: 1000
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2330
+ AegisName: Tights
+ Name: Tights
+ Type: Armor
+ Buy: 71000
+ Weight: 500
+ Defense: 6
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 2331
+ AegisName: Tights_
+ Name: Tights
+ Type: Armor
+ Buy: 71000
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 2332
+ AegisName: Silver_Robe
+ Name: Silver Robe
+ Type: Armor
+ Buy: 7000
+ Weight: 700
+ Defense: 4
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2333
+ AegisName: Silver_Robe_
+ Name: Silver Robe
+ Type: Armor
+ Buy: 7000
+ Weight: 700
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2334
+ AegisName: Mage_Coat
+ Name: Mage Coat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2335
+ AegisName: Thief_Clothes
+ Name: Thief Clothes
+ Type: Armor
+ Buy: 74000
+ Weight: 100
+ Defense: 6
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2336
+ AegisName: Thief_Clothes_
+ Name: Thief Clothes
+ Type: Armor
+ Buy: 74000
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2337
+ AegisName: Ninja_Suit
+ Name: Ninja Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 7
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,3;
+ - Id: 2338
+ AegisName: Wedding_Dress
+ Name: Wedding Dress
+ Type: Armor
+ Buy: 43000
+ Weight: 500
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,15;
+ - Id: 2339
+ AegisName: G_Strings
+ Name: Pantie
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Defense: 4
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2340
+ AegisName: Novice_Breast
+ Name: Novice Breastplate
+ Type: Armor
+ Buy: 89000
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 10
+ Refineable: true
+ - Id: 2341
+ AegisName: Full_Plate_Armor
+ Name: Legion Plate Armor
+ Type: Armor
+ Buy: 94000
+ Weight: 5500
+ Defense: 11
+ Jobs:
+ Crusader: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 2342
+ AegisName: Full_Plate_Armor_
+ Name: Legion Plate Armor
+ Type: Armor
+ Buy: 102500
+ Weight: 5500
+ Defense: 11
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 2343
+ AegisName: Robe_Of_Casting
+ Name: Robe of Cast
+ Type: Armor
+ Buy: 124800
+ Weight: 1100
+ Defense: 5
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bCastrate,-3;
+ bonus bMdef,4;
+ - Id: 2344
+ AegisName: Flame_Sprits_Armor
+ Name: Lucius's Fierce Armor of Volcano
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 2345
+ AegisName: Flame_Sprits_Armor_
+ Name: Lucius's Fierce Armor of Volcano
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 2346
+ AegisName: Water_Sprits_Armor
+ Name: Saphien's Armor of Ocean
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 2347
+ AegisName: Water_Sprits_Armor_
+ Name: Saphien's Armor of Ocean
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 2348
+ AegisName: Wind_Sprits_Armor
+ Name: Aebecee's Raging Typhoon Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 2349
+ AegisName: Wind_Sprits_Armor_
+ Name: Aebecee's Raging Typhoon Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 2350
+ AegisName: Earth_Sprits_Armor
+ Name: Claytos Cracking Earth Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 2351
+ AegisName: Earth_Sprits_Armor_
+ Name: Claytos Cracking Earth Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 2352
+ AegisName: Novice_Plate
+ Name: Tattered Novice Ninja Suit
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 4
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ - Id: 2353
+ AegisName: Odin's_Blessing
+ Name: Odin's Blessing
+ Type: Armor
+ Buy: 30000
+ Weight: 2500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2354
+ AegisName: Goibne's_Armor
+ Name: Goibne's Armor
+ Type: Armor
+ Buy: 50000
+ Weight: 3500
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ bonus bMaxHPrate,10;
+ - Id: 2355
+ AegisName: Angel's_Protection
+ Name: Angelic Protection
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMdef,20;
+ - Id: 2356
+ AegisName: Vestment_Of_Grace
+ Name: Blessed Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bResEff,Eff_Blind,8000;
+ - Id: 2357
+ AegisName: Valkyrie_Armor
+ Name: Valkyrian Armor
+ Type: Armor
+ Weight: 2800
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bUnbreakableArmor;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus2 bResEff,Eff_Silence,5000;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus2 bResEff,Eff_Stun,5000;
+ - Id: 2358
+ AegisName: Dress_Of_Angel
+ Name: Angel's Dress
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,4;
+ - Id: 2359
+ AegisName: Ninja_Suit_
+ Name: Ninja Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,3;
+ - Id: 2360
+ AegisName: Robe_Of_Casting_
+ Name: Robe of Cast
+ Type: Armor
+ Buy: 124800
+ Weight: 1100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bCastrate,-3;
+ bonus bMdef,4;
+ - Id: 2364
+ AegisName: Meteo_Plate_Armor
+ Name: Meteo Plate Armor
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bResEff,Eff_Stun,3000;
+ bonus2 bResEff,Eff_Freeze,3000;
+ - Id: 2365
+ AegisName: Orleans_Gown
+ Name: Orleans's Gown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCastrate,15;
+ bonus bNoCastCancel;
+ - Id: 2366
+ AegisName: Divine_Cloth
+ Name: Divine Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,500;
+ bonus2 bResEff,Eff_Silence,500;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Stone,500;
+ bonus2 bResEff,Eff_Sleep,500;
+ - Id: 2367
+ AegisName: Sniping_Suit
+ Name: Sniping Suit
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,6+(readparam(bLuk)/10);
+ bonus bDelayRate,-23;
+ - Id: 2368
+ AegisName: Golden_Armor
+ Name: Golden Armor
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 4
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2369
+ AegisName: Freyja_Overcoat
+ Name: Freyja Overcoat
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 2370
+ AegisName: Used_Mage_Coat
+ Name: Used Mage Coat
+ Type: Armor
+ Defense: 15
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,30;
+ bonus bBaseAtk,10;
+ bonus bAGI,1;
+ - Id: 2371
+ AegisName: G_Strings_
+ Name: Pantie
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2372
+ AegisName: Mage_Coat_
+ Name: Mage Coat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2373
+ AegisName: Holy_Robe_
+ Name: Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubEle,Ele_Dark,10;
+ - Id: 2374
+ AegisName: Diabolus_Robe
+ Name: Diabolus Robe
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bMaxSP,150;
+ bonus bMdef,5;
+ bonus bHealPower,6;
+ bonus bDelayRate,-10;
+ - Id: 2375
+ AegisName: Diabolus_Armor
+ Name: Diabolus Armor
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus bMaxHP,150;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Stone,500;
+ - Id: 2376
+ AegisName: Assaulter_Plate
+ Name: Assaulter Plate
+ Type: Armor
+ Buy: 10
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2377
+ AegisName: Elite_Engineer_Armor
+ Name: Elite Engineer Armor
+ Type: Armor
+ Buy: 10
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2378
+ AegisName: Assassin_Robe
+ Name: Assassin Robe
+ Type: Armor
+ Buy: 10
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2379
+ AegisName: Warlock_Battle_Robe
+ Name: Warlock's Battle Robe
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2380
+ AegisName: Medic_Robe
+ Name: Medic's Robe
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2381
+ AegisName: Elite_Archer_Suit
+ Name: Elite Archer Suit
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2382
+ AegisName: Elite_Shooter_Suit
+ Name: Elite Shooter Suit
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2383
+ AegisName: Brynhild
+ Name: Brynhild
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 10
+ Locations:
+ Armor: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHP,20*BaseLevel;
+ bonus bMaxSP,5*BaseLevel;
+ bonus2 bAddClass,Class_All,10;
+ bonus bMatkRate,10;
+ bonus bUnbreakableArmor;
+ bonus bNoKnockback;
+ - Id: 2384
+ AegisName: Spritual_Tunic
+ Name: Spiritual Tunic
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,800;
+ bonus2 bResEff,Eff_Freeze,10000;
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bSubEle,Ele_Poison,20;
+ bonus2 bSubEle,Ele_Holy,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Ghost,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ - Id: 2385
+ AegisName: Recuperative_Armor
+ Name: Recuperative Armor
+ Type: Armor
+ Buy: 20
+ Defense: 12
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bNoRegen,1;
+ bonus bNoRegen,2;
+ bonus bHPGainValue,60;
+ bonus bSPGainValue,6;
+ bonus bMagicHPGainValue,60;
+ bonus bMagicSPGainValue,6;
+ UnEquipScript: |
+ heal 0,-100;
+ - Id: 2386
+ AegisName: Chameleon_Armor
+ Name: Chameleon Armor
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMaxHP,(BaseLevel*7);
+ bonus bMaxSP,(BaseLevel/2);
+ autobonus2 "{ bonus bNoMagicDamage,100; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }";
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte )
+ bonus bMdef,5;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief )
+ bonus bDef,3;
+ - Id: 2387
+ AegisName: Sprint_Mail
+ Name: Sprint Mail
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ bonus bHPrecovRate,5;
+ bonus bAddItemHealRate,3;
+ bonus2 bSkillHeal,"AL_HEAL",3;
+ - Id: 2388
+ AegisName: Kandura
+ Name: Kandura
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,5;
+ bonus bAspdRate,2;
+ - Id: 2389
+ AegisName: Armor_Of_Naga
+ Name: Armor of Naga
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2390
+ AegisName: Improved_Tights
+ Name: Improved Tights
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bFlee2,3;
+ - Id: 2391
+ AegisName: Life_Link
+ Name: Life Link
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 82
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,5;
+ bonus bHPrecovRate,50;
+ - Id: 2392
+ AegisName: Old_Pant
+ Name: Old Green Pantie
+ Type: Armor
+ Defense: 10
+ Locations:
+ Armor: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,2;
+ bonus bMaxHP,200;
+ bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20;
+ bonus bMdef,1;
+ - Id: 2393
+ AegisName: N_Adventurer's_Suit
+ Name: Novice Adventurer's Suit
+ Type: Armor
+ Defense: 8
+ Slots: 1
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2394
+ AegisName: Krieger_Suit1
+ Name: Glorious Suit
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,20;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ - Id: 2395
+ AegisName: Krieger_Suit2
+ Name: Glorious Popularized Suit
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 61
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,600;
+ bonus bSPrecovRate,10;
+ - Id: 2396
+ AegisName: Krieger_Suit3
+ Name: Glorious Mass-Production Suit
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,500;
+ - Id: 2397
+ AegisName: Incredible_Coat
+ Name: Incredible Event Resignation Coat
+ Type: Armor
+ Buy: 10
+ Weight: 900
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2398
+ AegisName: Sniping_Suit_M
+ Name: Sniping Suit
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,6+(readparam(bLuk)/10);
+ bonus bDelayRate,-23;
+ - Id: 2399
+ AegisName: Dragon_Vest
+ Name: Dragon Vest
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2401
+ AegisName: Sandals
+ Name: Sandals
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Defense: 1
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2402
+ AegisName: Sandals_
+ Name: Sandals
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2403
+ AegisName: Shoes
+ Name: Shoes
+ Type: Armor
+ Buy: 3500
+ Weight: 400
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2404
+ AegisName: Shoes_
+ Name: Shoes
+ Type: Armor
+ Buy: 3500
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2405
+ AegisName: Boots
+ Name: Boots
+ Type: Armor
+ Buy: 18000
+ Weight: 600
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2406
+ AegisName: Boots_
+ Name: Boots
+ Type: Armor
+ Buy: 18000
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2407
+ AegisName: Chrystal_Pumps
+ Name: Crystal Pumps
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bLuk,5;
+ - Id: 2408
+ AegisName: Cuffs
+ Name: Shackles
+ Type: Armor
+ Buy: 5000
+ Weight: 3000
+ Defense: 3
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2409
+ AegisName: Spiky_Heel
+ Name: High Heels
+ Type: Armor
+ Buy: 8500
+ Weight: 600
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2410
+ AegisName: Sleipnir
+ Name: Sleipnir
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,20;
+ bonus bSPrecovRate,15;
+ bonus bSpeedRate,25;
+ - Id: 2411
+ AegisName: Grave
+ Name: Greaves
+ Type: Armor
+ Buy: 48000
+ Weight: 750
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2412
+ AegisName: Grave_
+ Name: Greaves
+ Type: Armor
+ Buy: 54000
+ Weight: 750
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2413
+ AegisName: Safty_Boots
+ Name: Safety Boots
+ Type: Armor
+ Buy: 34000
+ Weight: 350
+ Defense: 6
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ - Id: 2414
+ AegisName: Novice_Boots
+ Name: Novice Slippers
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ - Id: 2415
+ AegisName: Slipper
+ Name: Bunny Slipper
+ Type: Armor
+ Buy: 34000
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,3;
+ - Id: 2416
+ AegisName: Novice_Shoes
+ Name: Novice Shoes
+ Type: Armor
+ Buy: 35000
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 2417
+ AegisName: Fricco_Shoes
+ Name: Fricco's Shoes
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus2 bAddItemGroupHealRate,IG_Potion,20;
+ - Id: 2418
+ AegisName: Vidar's_Boots
+ Name: Vidar's Boots
+ Type: Armor
+ Buy: 30000
+ Weight: 650
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,9;
+ bonus bMaxSPrate,9;
+ - Id: 2419
+ AegisName: Goibne's_Combat_Boots
+ Name: Goibne's Greaves
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 2420
+ AegisName: Angel's_Arrival
+ Name: Angel's Reincarnation
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 25
+ Refineable: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 2421
+ AegisName: Valkyrie_Shoes
+ Name: Valkyrian Shoes
+ Type: Armor
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableShoes;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bMaxHP,(BaseLevel*5);
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bMaxSP,(JobLevel*2);
+ - Id: 2422
+ AegisName: High_Fashion_Sandals
+ Name: High Fashion Sandals
+ Type: Armor
+ Buy: 24000
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2423
+ AegisName: Variant_Shoes
+ Name: Variant Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus bMaxHPRate,20-getrefine();
+ bonus bMaxSPRate,20-getrefine();
+ bonus bDef,getrefine()/2;
+ - Id: 2424
+ AegisName: Tidal_Shoes
+ Name: Tidal Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 2425
+ AegisName: Black_Leather_Boots
+ Name: Black Leather Boots
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ if (getrefine()>=9)
+ bonus bAgi,2;
+ - Id: 2426
+ AegisName: Shadow_Walk
+ Name: Shadow Walk
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ if (getskilllv("AS_CLOAKING")<2) {
+ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0;
+ } else
+ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0;
+ - Id: 2427
+ AegisName: Golden_Shoes
+ Name: Golden Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2428
+ AegisName: Freyja_Boots
+ Name: Freyja Boots
+ Type: Armor
+ Weight: 300
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 2429
+ AegisName: Iron_Boots01
+ Name: Iron Boots
+ Type: Armor
+ Weight: 1500
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2430
+ AegisName: Iron_Boots02
+ Name: Iron Boots
+ Type: Armor
+ Weight: 800
+ Defense: 5
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2431
+ AegisName: Valley_Shoes
+ Name: Valley Shoes
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,7;
+ bonus bMaxSPRate,7;
+ - Id: 2432
+ AegisName: Spiky_Heel_
+ Name: High Heels
+ Type: Armor
+ Buy: 8500
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2433
+ AegisName: Diabolus_Boots
+ Name: Diabolus Boots
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMaxHP,(BaseLevel*10);
+ - Id: 2434
+ AegisName: Black_Leather_Boots_
+ Name: Black Leather Boots
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ if (getrefine()>=9)
+ bonus bAgi,2;
+ - Id: 2435
+ AegisName: Battle_Greave
+ Name: Battle Greaves
+ Type: Armor
+ Buy: 10
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2436
+ AegisName: Combat_Boots
+ Name: Combat Boots
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2437
+ AegisName: Battle_Boots
+ Name: Battle Boots
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2438
+ AegisName: Paw_Of_Cat
+ Name: Paw Of Cat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,5;
+ bonus bAgi,1;
+ - Id: 2439
+ AegisName: Refresh_Shoes
+ Name: Refresh Shoes
+ Type: Armor
+ Buy: 20
+ Defense: 9
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,17;
+ bonus bMaxSPRate,8;
+ bonus2 bHPRegenRate,20,10000;
+ bonus2 bSPRegenRate,3,10000;
+ - Id: 2440
+ AegisName: Sprint_Shoes
+ Name: Sprint Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bSPrecovRate,5;
+ - Id: 2441
+ AegisName: Beach_Sandal
+ Name: Beach Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2442
+ AegisName: Boots_Perforated
+ Name: Red Stocking Boots
+ Type: Armor
+ Defense: 7
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bLuk,2;
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,10;
+ bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20;
+ bonus bMdef,1;
+ - Id: 2443
+ AegisName: Fish_Shoes
+ Name: Fisher's Boots
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Locations:
+ Shoes: true
+ - Id: 2444
+ AegisName: Krieger_Shoes1
+ Name: Glorious Shoes
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,10;
+ bonus2 bSubRace,RC_DemiHuman,4;
+ bonus2 bSubRace,RC_Player_Human,4;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;
+ - Id: 2445
+ AegisName: Krieger_Shoes2
+ Name: Glorious Popularized Shoes
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 61
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,5;
+ bonus bMaxSPRate,5;
+ - Id: 2446
+ AegisName: Krieger_Shoes3
+ Name: Glorious Mass-Production Shoes
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,5;
+ - Id: 2447
+ AegisName: Military_Boots
+ Name: Army Boots
+ Type: Armor
+ Weight: 1000
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2448
+ AegisName: Air_Boss
+ Name: Air Boss
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2449
+ AegisName: Variant_Shoes_M
+ Name: Variant Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,20-getrefine();
+ bonus bMaxSPRate,20-getrefine();
+ bonus bDef,getrefine()/2;
+ - Id: 2450
+ AegisName: Vital_Tree_Shoes
+ Name: Vital Tree Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus2 bHPRegenRate,30,10000;
+ bonus bHealpower2,5;
+ bonus bAddItemHealRate,5;
+ bonus bMdef,3;
+ bonus bVit,2;
+ - Id: 2501
+ AegisName: Hood
+ Name: Hood
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2502
+ AegisName: Hood_
+ Name: Hood
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2503
+ AegisName: Muffler
+ Name: Muffler
+ Type: Armor
+ Buy: 5000
+ Weight: 400
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2504
+ AegisName: Muffler_
+ Name: Muffler
+ Type: Armor
+ Buy: 5000
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2505
+ AegisName: Manteau
+ Name: Manteau
+ Type: Armor
+ Buy: 32000
+ Weight: 600
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2506
+ AegisName: Manteau_
+ Name: Manteau
+ Type: Armor
+ Buy: 32000
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2507
+ AegisName: Cape_Of_Ancient_Lord
+ Name: Ancient Cape
+ Type: Armor
+ Buy: 82000
+ Weight: 600
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2508
+ AegisName: Ragamuffin_Cape
+ Name: Ragamuffin Manteau
+ Type: Armor
+ Buy: 56000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ bonus bMdef,10;
+ - Id: 2509
+ AegisName: Clack_Of_Servival
+ Name: Survivor's Manteau
+ Type: Armor
+ Buy: 20000
+ Weight: 550
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bVit,10;
+ - Id: 2510
+ AegisName: Novice_Hood
+ Name: Somber Novice Hood
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ - Id: 2511
+ AegisName: Skeleton's_Cape
+ Name: Skeleton Manteau
+ Type: Armor
+ Buy: 5000
+ Weight: 700
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,-3;
+ bonus bDex,2;
+ bonus bVit,-3;
+ bonus bLuk,2;
+ bonus bAgi,-4;
+ - Id: 2512
+ AegisName: Novice_Manteau
+ Name: Novice Manteau
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2513
+ AegisName: Celestial_Robe
+ Name: Heavenly Maiden Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ - Id: 2514
+ AegisName: Pauldron
+ Name: Pauldron
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ - Id: 2515
+ AegisName: Wing_Of_Eagle
+ Name: Eagle Wing
+ Type: Armor
+ Buy: 20000
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 85
+ Refineable: true
+ - Id: 2516
+ AegisName: Falcon_Robe
+ Name: Falcon Muffler
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bFlee,15;
+ bonus bFlee2,5;
+ - Id: 2517
+ AegisName: Vali's_Manteau
+ Name: Vali's Manteau
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2518
+ AegisName: Morpheus's_Shawl
+ Name: Morpheus's Shawl
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bMdef,3;
+ - Id: 2519
+ AegisName: Morrigane's_Manteau
+ Name: Morrigane's Manteau
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 61
+ Refineable: true
+ Script: |
+ bonus bLuk,2;
+ bonus bFlee2,8;
+ - Id: 2520
+ AegisName: Goibne's_Shoulder_Arms
+ Name: Goibne's Spaulders
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,10;
+ bonus bMdef,2;
+ bonus bVit,1;
+ - Id: 2521
+ AegisName: Angel's_Warmth
+ Name: Angelic Cardigan
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Refineable: true
+ Script: |
+ bonus bHPrecovRate,5;
+ - Id: 2522
+ AegisName: Undershirt
+ Name: Undershirt
+ Type: Armor
+ Buy: 20000
+ Weight: 150
+ Defense: 2
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2523
+ AegisName: Undershirt_
+ Name: Undershirt
+ Type: Armor
+ Buy: 20000
+ Weight: 150
+ Defense: 2
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2524
+ AegisName: Valkyrie_Manteau
+ Name: Valkyrian Manteau
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2);
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2);
+ - Id: 2525
+ AegisName: Cape_Of_Ancient_Lord_
+ Name: Ancient Cape
+ Type: Armor
+ Buy: 82000
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2526
+ AegisName: Dragon_Scale_Coat
+ Name: Coat of Dragon Scale
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 4
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 2527
+ AegisName: Dragon_Breath
+ Name: Dragon Breath
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,15;
+ - Id: 2528
+ AegisName: Wool_Scarf
+ Name: Wool Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2529
+ AegisName: Rider_Insignia
+ Name: Rider Insignia
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2530
+ AegisName: Rider_Insignia_
+ Name: Rider Insignia
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2531
+ AegisName: Ulfhedinn
+ Name: Ulfhedinn
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;
+ - Id: 2532
+ AegisName: Mithril_Magic_Cape
+ Name: Mithril Magic Cape
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;
+ - Id: 2533
+ AegisName: Freyja_Cape
+ Name: Freyja Cape
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,15;
+ bonus2 bSubRace,RC_Player_Human,15;
+ - Id: 2534
+ AegisName: Ruffler
+ Name: Ruffler
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,17;
+ bonus bFlee,17;
+ - Id: 2535
+ AegisName: Cloak_Of_Survival_C
+ Name: Cloak Of Survival
+ Type: Armor
+ Buy: 1
+ Defense: 5
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ Script: |
+ bonus bVit,10;
+ bonus bMdef,10;
+ - Id: 2536
+ AegisName: Skin_Of_Ventus
+ Name: Skin of Ventus
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,200;
+ bonus bFlee,10;
+ - Id: 2537
+ AegisName: Diabolus_Manteau
+ Name: Diabolus Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus bMaxHP,100;
+ bonus2 bAddDamageClass,1916,10;
+ bonus2 bAddDamageClass,1917,10;
+ - Id: 2538
+ AegisName: Commander_Manteau
+ Name: Captain's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2539
+ AegisName: Commander_Manteau_
+ Name: Commander's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2540
+ AegisName: Sheriff_Manteau
+ Name: Sheriff's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2541
+ AegisName: Asprika
+ Name: Asprika
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Garment: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,5;
+ bonus3 bSubEle,Ele_Neutral,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Water,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Earth,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Fire,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Wind,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Poison,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Holy,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Dark,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Ghost,30,BF_SHORT;
+ bonus3 bSubEle,Ele_Undead,30,BF_SHORT;
+ bonus bFlee,30;
+ skill "AL_TELEPORT",1;
+ bonus bUnbreakableGarment;
+ - Id: 2542
+ AegisName: Flame_Manteau
+ Name: Flame Manteau of Naght Sieger
+ Type: Armor
+ Buy: 20
+ Weight: 70
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMaxHPRate,5;
+ bonus bMdef,2;
+ bonus bMatkRate,1;
+ bonus2 bAddEle,Ele_Fire,2;
+ - Id: 2543
+ AegisName: Sylphid_Manteau
+ Name: Sylphid Manteau
+ Type: Armor
+ Buy: 20
+ Defense: 9
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,13;
+ bonus2 bSubEle,Ele_Neutral,13;
+ bonus bFlee2,1;
+ - Id: 2544
+ AegisName: Leather_Of_Tendrilion
+ Name: Leather of Tendrilion
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus2 bSubRace,RC_Plant,5;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 2545
+ AegisName: Musika
+ Name: Musika
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;
+ - Id: 2546
+ AegisName: Beach_Manteau
+ Name: Beach Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2547
+ AegisName: Cheap_Running_Shirts
+ Name: Cheap Undershirt
+ Type: Armor
+ Defense: 8
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bMdef,1;
+ - Id: 2548
+ AegisName: Muffler_C
+ Name: Neo Muffler
+ Type: Armor
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 95
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus bMaxHPrate,10;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Holy,5;
+ bonus2 bSubEle,Ele_Dark,5;
+ - Id: 2549
+ AegisName: Krieger_Muffler1
+ Name: Glorious Muffler
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPRate,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 2550
+ AegisName: Fisher's_Muffler
+ Name: Fisher's Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2551
+ AegisName: Rider_Insignia_M
+ Name: Crest of the Rider
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2552
+ AegisName: Mithril_Magic_Cape_M
+ Name: Mithril Magic Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;
+ - Id: 2553
+ AegisName: Dragon_Manteau
+ Name: Dragon Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,5;
+ - Id: 2554
+ AegisName: Piece_Of_Angent_Skin
+ Name: Nydhorgg's Shadow Garb
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,7;
+ bonus2 bSubEle,Ele_Water,7;
+ bonus2 bSubEle,Ele_Earth,7;
+ bonus2 bSubEle,Ele_Fire,7;
+ bonus2 bSubEle,Ele_Wind,7;
+ bonus2 bSubEle,Ele_Poison,7;
+ bonus2 bSubEle,Ele_Holy,7;
+ bonus2 bSubEle,Ele_Dark,7;
+ bonus2 bSubEle,Ele_Ghost,7;
+ bonus2 bSubEle,Ele_Undead,7;
+ bonus bMaxSP,(BaseLevel/3)+(getrefine()*10);
+ bonus2 bSPDrainRate,10,1;
+ bonus bMdef,3;
+ - Id: 2601
+ AegisName: Ring
+ Name: Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bStr,2;
+ - Id: 2602
+ AegisName: Earring
+ Name: Earring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bInt,2;
+ - Id: 2603
+ AegisName: Necklace
+ Name: Necklace
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bVit,2;
+ - Id: 2604
+ AegisName: Glove
+ Name: Glove
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bDex,2;
+ - Id: 2605
+ AegisName: Brooch
+ Name: Brooch
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAgi,2;
+ - Id: 2607
+ AegisName: Clip
+ Name: Clip
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxSP,10;
+ - Id: 2608
+ AegisName: Rosary
+ Name: Rosary
+ Type: Armor
+ Buy: 15000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMdef,5;
+ bonus bLuk,2;
+ - Id: 2609
+ AegisName: Skul_Ring
+ Name: Skull Ring
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2610
+ AegisName: Gold_Ring
+ Name: Gold Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2611
+ AegisName: Silver_Ring
+ Name: Silver Ring
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2612
+ AegisName: Flower_Ring
+ Name: Flower Ring
+ Type: Armor
+ Buy: 1500
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2613
+ AegisName: Diamond_Ring
+ Name: Diamond Ring
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2614
+ AegisName: An_Eye_Of_Dullahan
+ Name: Eye of Dullahan
+ Type: Armor
+ Buy: 90000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus2 bResEff,Eff_Poison,10000;
+ bonus2 bSubRace,RC_Undead,4;
+ bonus2 bSubRace,RC_Demon,4;
+ - Id: 2615
+ AegisName: Safety_Ring
+ Name: Safety Ring
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bMdef,3;
+ - Id: 2616
+ AegisName: Critical_Ring
+ Name: Critical Ring
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bCritical,5;
+ - Id: 2617
+ AegisName: Mitten_Of_Presbyter
+ Name: Celebrant's Mitten
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 35
+ Script: |
+ bonus bInt,1;
+ - Id: 2618
+ AegisName: Matyr's_Flea_Guard
+ Name: Matyr's Leash
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 35
+ Script: |
+ bonus bAgi,1;
+ - Id: 2619
+ AegisName: Thimble_Of_Archer
+ Name: Bow Thimble
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 2620
+ AegisName: Ring_Of_Rogue
+ Name: Rogue's Treasure
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ if (readparam(bStr)>=90) {
+ bonus bHit,10;
+ bonus bFlee,10;
+ }
+ if (readparam(bAgi)>=90) {
+ bonus bBaseAtk,10;
+ bonus bCritical,10;
+ }
+ - Id: 2621
+ AegisName: Ring_
+ Name: Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bStr,1;
+ - Id: 2622
+ AegisName: Earring_
+ Name: Earring
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bInt,1;
+ - Id: 2623
+ AegisName: Necklace_
+ Name: Necklace
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bVit,1;
+ - Id: 2624
+ AegisName: Glove_
+ Name: Glove
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bDex,1;
+ - Id: 2625
+ AegisName: Brooch_
+ Name: Brooch
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bAgi,1;
+ - Id: 2626
+ AegisName: Rosary_
+ Name: Rosary
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus bLuk,1;
+ - Id: 2627
+ AegisName: Belt
+ Name: Belt
+ Type: Armor
+ Buy: 20000
+ Weight: 1200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 25
+ - Id: 2628
+ AegisName: Novice_Armlet
+ Name: Novice Armlet
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2629
+ AegisName: Magingiorde
+ Name: Megingjard
+ Type: Armor
+ Buy: 20
+ Weight: 8000
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bStr,40;
+ bonus bMdef,7;
+ - Id: 2630
+ AegisName: Brysinggamen
+ Name: Brisingamen
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bStr,6;
+ bonus bAgi,6;
+ bonus bVit,6;
+ bonus bInt,6;
+ bonus bLuk,10;
+ bonus bMdef,5;
+ - Id: 2631
+ AegisName: First_Age_Ring
+ Name: Celebration Ring
+ Type: Armor
+ Buy: 1
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2634
+ AegisName: Bridegroom_Ring
+ Name: Wedding Ring
+ Type: Armor
+ Gender: Male
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "WE_MALE",1;
+ skill "WE_FEMALE",1;
+ skill "WE_CALLPARTNER",1;
+ - Id: 2635
+ AegisName: Bride_Ring
+ Name: Wedding Ring
+ Type: Armor
+ Gender: Female
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "WE_MALE",1;
+ skill "WE_FEMALE",1;
+ skill "WE_CALLPARTNER",1;
+ - Id: 2636
+ AegisName: Gold_Ring_
+ Name: Gold Christmas Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 2637
+ AegisName: Silver_Ring_
+ Name: Silver Christmas Ring
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 2638
+ AegisName: Exorcize_Sachet
+ Name: Sacred Incense
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bLuk,1;
+ - Id: 2639
+ AegisName: Purification_Sachet
+ Name: Occult Incense
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 2640
+ AegisName: Kafra_Ring
+ Name: Kafra Ring
+ Type: Armor
+ Buy: 40000
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,1;
+ - Id: 2641
+ AegisName: Fashionable_Sack
+ Name: Fashion Hip Sack
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bStr,2;
+ - Id: 2642
+ AegisName: Serin's_Gold_Ring
+ Name: Serin's Gold Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2643
+ AegisName: Serin's_Gold_Ring_
+ Name: Serin's Gold Ring
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2644
+ AegisName: The_Sign_
+ Name: The Sign
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ - Id: 2645
+ AegisName: Moonlight_Ring
+ Name: Moonlight Ring
+ Type: Armor
+ Buy: 40000
+ Weight: 200
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bMdef,2;
+ - Id: 2646
+ AegisName: Bunch_Of_Carnation
+ Name: Bunch of Carnations
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2647
+ AegisName: Nile_Rose
+ Name: Nile Rose
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,10;
+ - Id: 2648
+ AegisName: Morpheus's_Ring
+ Name: Morpheus's Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSPrate,5;
+ - Id: 2649
+ AegisName: Morpheus's_Armlet
+ Name: Morpheus's Bracelet
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSPrate,5;
+ - Id: 2650
+ AegisName: Morrigane's_Belt
+ Name: Morrigane's Belt
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bCritical,3;
+ - Id: 2651
+ AegisName: Morrigane's_Pendant
+ Name: Morrigane's Pendant
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Script: |
+ bonus bStr,2;
+ bonus bCritical,3;
+ - Id: 2652
+ AegisName: Cursed_Lucky_Brooch
+ Name: Goddess of Fortune's Cursed Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bCritical,6;
+ bonus2 bAddEff2,Eff_Curse,50;
+ - Id: 2653
+ AegisName: Sacrifice_Ring
+ Name: Sacrifice Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ - Id: 2654
+ AegisName: Shinobi's_Sash
+ Name: Shinobi Sash
+ Type: Armor
+ Buy: 20000
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bMdef,1;
+ - Id: 2655
+ AegisName: Bloody_Iron_Ball
+ Name: Bloodied Shackle Ball
+ Type: Armor
+ Buy: 50000
+ Weight: 4000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2656
+ AegisName: Hyper_Changer
+ Name: Armor Charm
+ Type: Armor
+ Buy: 20000
+ Weight: 1000
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxHP,50;
+ - Id: 2657
+ AegisName: Lab_Passport
+ Name: Laboratory Permit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2658
+ AegisName: Nile_Rose_
+ Name: Nile Rose
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,10;
+ - Id: 2659
+ AegisName: Vesper_Core01
+ Name: Vesper Core 01
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 2660
+ AegisName: Vesper_Core02
+ Name: Vesper Core 02
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,3;
+ bonus bBaseAtk,10;
+ - Id: 2661
+ AegisName: Vesper_Core03
+ Name: Vesper Core 03
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,3;
+ bonus bFlee,5;
+ - Id: 2662
+ AegisName: Vesper_Core04
+ Name: Vesper Core 04
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,3;
+ bonus bHit,10;
+ - Id: 2663
+ AegisName: Gauntlet_Of_Accuracy
+ Name: Gauntlet of Hit
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bHit,15;
+ bonus bStr,1;
+ - Id: 2664
+ AegisName: Scarf_Belt
+ Name: Belcarf
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bDex,2;
+ bonus bInt,1;
+ - Id: 2665
+ AegisName: Ring_Of_Exorcism
+ Name: Exorcising Ring
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bMdef,1;
+ bonus2 bExpAddRace,RC_Undead,5;
+ bonus2 bExpAddRace,RC_Demon,5;
+ - Id: 2666
+ AegisName: Lamp_Of_Hope
+ Name: Lantern of Hope
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,2;
+ bonus2 bResEff,Eff_Blind,1000;
+ - Id: 2667
+ AegisName: Glove_Of_Archer
+ Name: Renown Archer's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bHit,5;
+ bonus bCritical,5;
+ bonus bDex,1;
+ - Id: 2668
+ AegisName: Women's_Glory
+ Name: Woman Glory
+ Type: Armor
+ Weight: 500
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2669
+ AegisName: Golden_Necklace_
+ Name: RJC Necklace
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxSP,10;
+ - Id: 2670
+ AegisName: Ring_Of_Longing
+ Name: Ring of Longing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,5;
+ - Id: 2671
+ AegisName: Thimble_Of_Archer_
+ Name: Bow Thimble
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 2672
+ AegisName: Anniversary_Ring
+ Name: 3rd Anniversary Celebration Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ - Id: 2673
+ AegisName: Shining_Ring
+ Name: Warrior's Shining Ring
+ Type: Armor
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 48
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bSPrecovRate,3;
+ - Id: 2674
+ AegisName: Honor_Ring
+ Name: Ring of Honor
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2675
+ AegisName: Lord_Ring
+ Name: Lord Ring
+ Type: Armor
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2676
+ AegisName: Hunter_Earring
+ Name: Hunter's Earring
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,7618,100;
+ - Id: 2677
+ AegisName: Spiritual_Ring
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 2678
+ AegisName: Ring_Of_Flame_Lord
+ Name: Ring Of Flame Lord
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bBaseAtk,15;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30;
+ bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10;
+ bonus3 bAutoSpell,"PA_PRESSURE",2,30;
+ bonus3 bAutoSpell,"MG_FIREBALL",1,150;
+ bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20;
+ - Id: 2679
+ AegisName: Ring_Of_Resonance
+ Name: Ring Of Resonance
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,2;
+ bonus bVit,1;
+ bonus bMdef,2;
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0;
+ bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20;
+ bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20;
+ - Id: 2680
+ AegisName: Lesser_Elemental_Ring
+ Name: Lesser Elemental Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ bonus3 bAutoSpell,"WZ_ESTIMATION",1,80;
+ bonus3 bAutoSpell,"MC_IDENTIFY",1,50;
+ bonus3 bAutoSpell,"TF_PICKSTONE",1,100;
+ bonus3 bAutoSpell,"BS_GREED",1,10;
+ bonus3 bAutoSpellWhenHit,"TK_RUN",5,20;
+ bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30;
+ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100;
+ bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;
+ - Id: 2681
+ AegisName: Republic_Ring
+ Name: Republic Anniversary Ring
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2682
+ AegisName: Ring_Of_Water
+ Name: Ring of Water
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 2683
+ AegisName: Ring_Of_Fire
+ Name: Ring of Fire
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubEle,Ele_Fire,5;
+ - Id: 2684
+ AegisName: Ring_Of_Wind
+ Name: Ring of Wind
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubEle,Ele_Wind,5;
+ - Id: 2685
+ AegisName: Ring_Of_Earth
+ Name: Ring of Earth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubEle,Ele_Earth,5;
+ - Id: 2686
+ AegisName: Elven_Ears_C
+ Name: Elven Ears
+ Type: Armor
+ Buy: 1
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 73
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ - Id: 2687
+ AegisName: Steel_Flower_C
+ Name: Steel Flower
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 56
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 2688
+ AegisName: Critical_Ring_C
+ Name: Critical Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,10;
+ - Id: 2689
+ AegisName: Earring_C
+ Name: Earring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ - Id: 2690
+ AegisName: Ring_C
+ Name: Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,4;
+ - Id: 2691
+ AegisName: Necklace_C
+ Name: Necklace
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,4;
+ - Id: 2692
+ AegisName: Glove_C
+ Name: Glove
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ - Id: 2693
+ AegisName: Brooch_C
+ Name: Brooch
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,4;
+ - Id: 2694
+ AegisName: Rosary_C
+ Name: Rosary
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bLuk,4;
+ - Id: 2695
+ AegisName: Safety_Ring_C
+ Name: Safety Ring
+ Type: Armor
+ Buy: 1
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2696
+ AegisName: Vesper_Core01_C
+ Name: Vesper Core 01
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 2697
+ AegisName: Vesper_Core02_C
+ Name: Vesper Core 02
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,3;
+ bonus bBaseAtk,10;
+ - Id: 2698
+ AegisName: Vesper_Core03_C
+ Name: Vesper Core 03
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,3;
+ bonus bFlee,5;
+ - Id: 2699
+ AegisName: Vesper_Core04_C
+ Name: Vesper Core 04
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,3;
+ bonus bHit,10;
+ - Id: 2700
+ AegisName: Red_Silk_Seal
+ Name: Red Silk Seal
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ - Id: 2701
+ AegisName: Orleans_Glove
+ Name: Orleans's Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,3;
+ - Id: 2702
+ AegisName: Bison_Horn
+ Name: Bison Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bAgi,2;
+ - Id: 2703
+ AegisName: Expert_Ring
+ Name: Expert Ring
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bDelayRate,-5;
+ bonus bUseSPrate,5;
+ - Id: 2704
+ AegisName: Golden_Accessory
+ Name: Golden Accessories
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2705
+ AegisName: Golden_Accessory2
+ Name: Golden Accessories
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12018,500;
+ - Id: 2706
+ AegisName: Handcuff
+ Name: Arrest Handcuffs
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ - Id: 2707
+ AegisName: Gusli
+ Name: GUSLI
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2708
+ AegisName: Chinese_Handicraft
+ Name: Chinese Handicraft
+ Type: Armor
+ Weight: 50
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,300;
+ - Id: 2709
+ AegisName: 5_Anniversary_Coin
+ Name: 5th Anniversary Coin
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAtkRate,5;
+ bonus bMatkRate,5;
+ - Id: 2710
+ AegisName: Bloody_Iron_Ball_C
+ Name: Bloody Iron Ball
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bBaseAtk,30;
+ - Id: 2711
+ AegisName: Spiritual_Ring_C
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ - Id: 2712
+ AegisName: Ragnarok_Limited_Ed
+ Name: Ragnarok Limited Edition
+ Type: Armor
+ Weight: 300
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Script: |
+ bonus bVit,3;
+ bonus bAgi,3;
+ bonus bLuk,3;
+ - Id: 2713
+ AegisName: Certificate_TW
+ Name: Certificate
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2714
+ AegisName: Marvelous_Pandent
+ Name: Marvelous Pendant
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ - Id: 2715
+ AegisName: Skul_Ring_
+ Name: Skull Ring
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus2 bSubRace,RC_Undead,1;
+ - Id: 2716
+ AegisName: Librarian_Glove
+ Name: Librarian Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 2717
+ AegisName: Pocket_Watch_
+ Name: Pocket Watch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ - Id: 2718
+ AegisName: Lunatic_Brooch
+ Name: Lunatic Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ - Id: 2719
+ AegisName: Iron_Wrist
+ Name: Iron Wrist
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus2 bSkillAtk,"SM_BASH",6;
+ bonus2 bSkillAtk,"MC_MAMMONITE",6;
+ - Id: 2720
+ AegisName: Medal_Swordman
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bHit,10;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;
+ - Id: 2721
+ AegisName: Medal_Thief
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bFlee,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;
+ - Id: 2722
+ AegisName: Medal_Acolyte
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bMdef,6;
+ bonus bMaxHP,600;
+ bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;
+ - Id: 2723
+ AegisName: Medal_Mage
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bMdef,6;
+ bonus bMaxHP,600;
+ bonus2 bAddEffWhenHit,Eff_Stone,100;
+ - Id: 2724
+ AegisName: Medal_Archer
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bCritical,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Blind,100,ATF_LONG;
+ - Id: 2725
+ AegisName: Medal_Merchant
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bAspdRate,10;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;
+ - Id: 2726
+ AegisName: Icarus_Wing
+ Name: Icarus Wings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMaxSP,50;
+ bonus bDex,3;
+ - Id: 2727
+ AegisName: Bowman_Scarf
+ Name: Bowman Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMaxSP,50;
+ bonus bDex,3;
+ - Id: 2728
+ AegisName: Cursed_Hand
+ Name: Cursed Hand
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ bonus bHit,10;
+ bonus bHPrecovRate,20;
+ - Id: 2729
+ AegisName: Diabolus_Ring
+ Name: Diabolus Ring
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,100;
+ bonus bHealPower,5;
+ bonus2 bAddDamageClass,1916,10;
+ bonus2 bAddDamageClass,1917,10;
+ - Id: 2730
+ AegisName: Morroc_Seal
+ Name: Seal of Continental Guard
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bAspdRate,3;
+ - Id: 2731
+ AegisName: Morroc_Charm_Stone
+ Name: Rune Spellstone
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,50;
+ bonus bCastRate,-1;
+ - Id: 2732
+ AegisName: Morroc_Ring
+ Name: Death Loop
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,5;
+ - Id: 2733
+ AegisName: Medal_Gunner
+ Name: Sheriff Badge
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bCritical,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Blind,100,ATF_LONG;
+ - Id: 2734
+ AegisName: Directive_A
+ Name: Directive
+ Type: Armor
+ Defense: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2735
+ AegisName: Directive_B
+ Name: Directive
+ Type: Armor
+ Defense: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2736
+ AegisName: Navel_Ring
+ Name: Navel Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bDex,3;
+ bonus bLuk,3;
+ bonus bMdef,2;
+ - Id: 2737
+ AegisName: Foot_Ring
+ Name: Foot Ring
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bVit,3;
+ bonus bMaxHPRate,10;
+ - Id: 2738
+ AegisName: Shiny_Coin
+ Name: Shiny Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,6;
+ bonus bMatkRate,6;
+ - Id: 2739
+ AegisName: Ordinary_Coin
+ Name: Ordinary Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ - Id: 2740
+ AegisName: Rusty_Coin
+ Name: Rusty Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ - Id: 2741
+ AegisName: All_In_One_Ring
+ Name: All In One Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bNoCastCancel;
+ bonus bCastRate,10;
+ skill "AL_HEAL",1;
+ skill "AL_TELEPORT",1;
+ - Id: 2743
+ AegisName: Angelic_Ring
+ Name: Angelic Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ bonus bMdef,2;
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }";
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";
+ - Id: 2744
+ AegisName: Sprint_Ring
+ Name: Sprint Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bCastrate,-10;
+ bonus bDelayRate,-5;
+ - Id: 2745
+ AegisName: Pinguicula_Corsage
+ Name: Pinguicula Corsage
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxSP,25;
+ - Id: 2746
+ AegisName: Cold_Heart
+ Name: Cold Heart
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bAgi,3;
+ - Id: 2747
+ AegisName: Black_Cat
+ Name: Black Cat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bDex,3;
+ - Id: 2748
+ AegisName: Cursed_Star
+ Name: Cursed Star
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 84
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,2;
+ bonus bLuk,-1;
+ bonus2 bHPLossRate,50,10000;
+ bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;
+ UnEquipScript: |
+ heal -300,0;
+ - Id: 2749
+ AegisName: Linen_Glove
+ Name: Linen Glove
+ Type: Armor
+ Buy: 20
+ Weight: 120
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,2;
+ bonus bAgi,2;
+ bonus bDex,1;
+ - Id: 2751
+ AegisName: Academy_Badge
+ Name: Academy Of Badge
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseLevel<80) {
+ bonus bMaxHP,400;
+ bonus bMaxSP,200;
+ }
+ - Id: 2752
+ AegisName: Praxinus_C
+ Name: Praccsinos
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkrate,5;
+ - Id: 2753
+ AegisName: Beholder_Ring
+ Name: Beholder Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Formless,15;
+ - Id: 2754
+ AegisName: Hallow_Ring
+ Name: Hallow Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_undead,15;
+ - Id: 2755
+ AegisName: Clamorous_Ring
+ Name: Clamorous Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Brute,15;
+ - Id: 2756
+ AegisName: Chemical_Ring
+ Name: Chemical Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Plant,15;
+ - Id: 2757
+ AegisName: Insecticide_Ring
+ Name: Insecticide Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Insect,15;
+ - Id: 2758
+ AegisName: Fisher_Ring
+ Name: Fischer Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Fish,15;
+ - Id: 2759
+ AegisName: Decussate_Ring
+ Name: Decussate Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Demon,15;
+ - Id: 2760
+ AegisName: Bloody_Ring
+ Name: Bloody Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_DemiHuman,15;
+ - Id: 2761
+ AegisName: Satanic_Ring
+ Name: Satanic Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Angel,15;
+ - Id: 2762
+ AegisName: Dragoon_Ring
+ Name: Dragon Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Dragon,15;
+ - Id: 2763
+ AegisName: Skul_Ring_C
+ Name: Neo Skull Ring
+ Type: Armor
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 95
+ Script: |
+ bonus bAtkRate,5;
+ bonus bMatkrate,5;
+ bonus bMaxHPrate,5;
+ bonus2 bSkillHeal,"AL_HEAL",5;
+ skill "MG_SIGHT",1;
+ - Id: 2764
+ AegisName: Small_Fishing_Rod
+ Name: Small Fishing Rod
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Locations:
+ Both_Accessory: true
+ - Id: 2765
+ AegisName: Novice_Figure
+ Name: Novice Figure
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,70;
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus bMaxHP,30;
+ - Id: 2766
+ AegisName: Swordman_Figure
+ Name: Swordman Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bVit,1;
+ if (Class == Job_Swordman)
+ bonus bDef,2;
+ - Id: 2767
+ AegisName: Acolyte_Figure
+ Name: Acolyte Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ if (Class == Job_Acolyte)
+ bonus bMaxSP,50;
+ - Id: 2768
+ AegisName: Mage_Figure
+ Name: Mage Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ if (Class == Job_Mage)
+ bonus bSPrecovRate,5;
+ - Id: 2769
+ AegisName: Archer_Figure
+ Name: Archer Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bDex,1;
+ if (Class == Job_Archer)
+ bonus bBaseAtk,10;
+ - Id: 2770
+ AegisName: Thief_Figure
+ Name: Thief Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,1;
+ if (Class == Job_Thief)
+ bonus bAspdRate,3;
+ - Id: 2771
+ AegisName: Merchant_Figure
+ Name: Merchant Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ if (Class == Job_Merchant)
+ bonus bCritical,5;
+ - Id: 2772
+ AegisName: Krieger_Ring1
+ Name: Glorious Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 81
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus bAspdRate,5;
+ bonus bCastrate,-3;
+ bonus bHealPower,5;
+ - Id: 2773
+ AegisName: Krieger_Ring2
+ Name: Glorious Mass-Production Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ - Id: 2774
+ AegisName: Krieger_Ring3
+ Name: Glorious Popularized Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2775
+ AegisName: Lure
+ Name: Lure
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2776
+ AegisName: Cool_Towel
+ Name: Adventurer's Trusty Towel
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipScript: |
+ sc_start SC_SUMMER,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_SUMMER;
+ - Id: 2777
+ AegisName: Shaman_Ring
+ Name: Shaman Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bUseSPrate,-5;
+ - Id: 2778
+ AegisName: Shaman_Earing
+ Name: Shaman Earrings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,2;
+ - Id: 2779
+ AegisName: Dark_Knight_Belt
+ Name: Dark Knight Belt
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus bAgi,1;
+ - Id: 2780
+ AegisName: Dark_Knight_Glove
+ Name: Dark Knight Glove
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 2781
+ AegisName: Aumdura's_Grace
+ Name: Aumdura's Benefit
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,1;
+ - Id: 2782
+ AegisName: Ring_Of_Wise_King
+ Name: Ring of the Ancient Wise King
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMaxSP,20;
+ - Id: 2783
+ AegisName: Eyes_Stone_Ring
+ Name: Eye Stone Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bCritical,2;
+ bonus bMaxSP,25;
+ - Id: 2784
+ AegisName: Oh_Holy_Night
+ Name: Christmas Musicbox
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ skill "ALL_WEWISH",1;
+ - Id: 2785
+ AegisName: Orleans_Glove_M
+ Name: Orlean's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,3;
+ - Id: 2786
+ AegisName: Spiritual_Ring_M
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 2787
+ AegisName: Waterdrop_Brooch
+ Name: Waterdrop Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ bonus bMaxHP,80;
+ bonus bMdef,2;
+ - Id: 2788
+ AegisName: Bradium_Earing
+ Name: Bradium Earring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bMatkRate,2;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 2789
+ AegisName: Bradium_Ring
+ Name: Bradium Ring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ bonus bStr,1;
+ bonus bVit,1;
+ - Id: 2790
+ AegisName: Bradium_Brooch
+ Name: Bradium Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bFlee,4;
+ bonus bAspdRate,2;
+ bonus bAgi,1;
+ - Id: 2791
+ AegisName: Just_Got_Fish
+ Name: Fresh Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bHit,3;
+ - Id: 2794
+ AegisName: Magic_Stone_Ring
+ Name: Magic Stone Ring
+ Type: Armor
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 2795
+ AegisName: Green_Apple_Ring
+ Name: Green Apple Ring
+ Type: Armor
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,6;
+ if (JobLevel <30) {
+ bonus bAllStats,(JobLevel/5);
+ }
+ - Id: 2796
+ AegisName: Magical_Stone
+ Name: Rocks
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,2047,10;
+ bonus2 bAddDefMonster,2048,-10;
+ bonus3 bAddMonsterIdDropItem,6152,2047,70;
+ - Id: 2797
+ AegisName: Magical_Stone_
+ Name: Rocks
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,2049,10;
+ bonus2 bAddDefMonster,2050,-10;
+ bonus3 bAddMonsterIdDropItem,6151,2049,70;
+ - Id: 2798
+ AegisName: Will_Of_Exhausted_Angel
+ Name: Will Of Exhausted Angel
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_arch02") {
+ bonus2 bAddDefMonster,1761,50;
+ bonus2 bAddDefMonster,1762,50;
+ }
+ - Id: 2799
+ AegisName: Kuirpenring
+ Name: Kuirpenring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2800
+ AegisName: Accelerator
+ Name: Accelerator
+ Type: Armor
+ Buy: 100000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,2;
+ - Id: 2801
+ AegisName: Hovering_Booster
+ Name: Hovering Booster
+ Type: Armor
+ Buy: 100000
+ Weight: 2000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,1;
+ - Id: 2802
+ AegisName: Suicidal_Device
+ Name: Suicidal Device
+ Type: Armor
+ Buy: 500000
+ Weight: 1000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ - Id: 2803
+ AegisName: Shape_Shifter
+ Name: Shape Shifter
+ Type: Armor
+ Buy: 100000
+ Weight: 500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bInt,3;
+ - Id: 2804
+ AegisName: Cooling_Device
+ Name: Cooling Device
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2805
+ AegisName: Mag_Field_Generator
+ Name: Magnetic Field Generator
+ Type: Armor
+ Buy: 100000
+ Weight: 6000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2806
+ AegisName: Barrier_Builder
+ Name: Barrier Builder
+ Type: Armor
+ Buy: 150000
+ Weight: 8000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2807
+ AegisName: Repair_Kit
+ Name: Repair Kit
+ Type: Armor
+ Buy: 200000
+ Weight: 400
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ - Id: 2808
+ AegisName: Camouflage_Generator
+ Name: Camouflague Generator
+ Type: Armor
+ Buy: 250000
+ Weight: 1000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,3;
+ - Id: 2809
+ AegisName: High_Quality_Cooler
+ Name: High Quality Cooler
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2810
+ AegisName: Special_Cooler
+ Name: Special Cooler
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2819
+ AegisName: Swordman_Manual
+ Name: Swordsman Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "SM_BASH",1;
+ skill "SM_PROVOKE",1;
+ skill "SM_MAGNUM",1;
+ - Id: 2820
+ AegisName: Thief_Manual
+ Name: Thief Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "TF_DOUBLE",3;
+ bonus bDoubleRate,15;
+ skill "TF_STEAL",1;
+ skill "TF_HIDING",1;
+ skill "TF_POISON",1;
+ - Id: 2821
+ AegisName: Acolyte_Manual
+ Name: Acolyte Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "AL_HEAL",1;
+ skill "AL_INCAGI",1;
+ skill "AL_BLESSING",1;
+ - Id: 2822
+ AegisName: Archer_Manual
+ Name: Archer Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "AC_OWL",1;
+ skill "AC_CONCENTRATION",1;
+ - Id: 2823
+ AegisName: Merchant_Manual
+ Name: Merchant Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "MC_DISCOUNT",1;
+ skill "MC_OVERCHARGE",10;
+ skill "MC_IDENTIFY",1;
+ skill "MC_MAMMONITE",1;
+ - Id: 2824
+ AegisName: Mage_Manual
+ Name: Mage Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "MG_SRECOVERY",1;
+ skill "MG_COLDBOLT",1;
+ skill "MG_FIREWALL",1;
+ skill "MG_FIREBOLT",1;
+ - Id: 5001
+ AegisName: Headset
+ Name: Headset
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 87
+ Script: |
+ bonus2 bResEff,Eff_Curse,1000;
+ - Id: 5002
+ AegisName: Gemmed_Crown
+ Name: Jewel Crown
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 88
+ Script: |
+ bonus bInt,2;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ - Id: 5003
+ AegisName: Joker_Jester
+ Name: Joker Jester
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 89
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,5;
+ - Id: 5004
+ AegisName: Oxygen_Mask
+ Name: Oxygen Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 90
+ Script: |
+ bonus2 bResEff,Eff_Poison,2000;
+ - Id: 5005
+ AegisName: Gas_Mask
+ Name: Gas Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 91
+ Script: |
+ bonus2 bResEff,Eff_Poison,3000;
+ - Id: 5006
+ AegisName: Machoman_Glasses
+ Name: Machoman's Glasses
+ Type: Armor
+ Buy: 36000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 92
+ - Id: 5007
+ AegisName: Loard_Circlet
+ Name: Grand Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 93
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bLuk,1;
+ bonus bMdef,4;
+ - Id: 5008
+ AegisName: Puppy_Love
+ Name: Puppy Love
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 94
+ - Id: 5009
+ AegisName: Safety_Helmet
+ Name: Safety Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 95
+ Script: |
+ bonus bMdef,3;
+ bonus bUnbreakableHelm;
+ - Id: 5010
+ AegisName: Indian_Hair_Piece
+ Name: Indian Fillet
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 96
+ - Id: 5011
+ AegisName: Antenna
+ Name: Aerial
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 97
+ - Id: 5012
+ AegisName: Ph.D_Hat
+ Name: Ph.D Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ - Id: 5013
+ AegisName: Horn_Of_Lord_Kaho
+ Name: Lord Kaho's Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 99
+ Script: |
+ bonus bMdef,10;
+ bonus bStr,5;
+ bonus bAgi,10;
+ bonus bVit,10;
+ bonus bInt,5;
+ bonus bLuk,20;
+ - Id: 5014
+ AegisName: Fin_Helm
+ Name: Fin Helm
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 65
+ View: 100
+ - Id: 5015
+ AegisName: Egg_Shell
+ Name: Egg Shell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 101
+ - Id: 5016
+ AegisName: Boy's_Cap
+ Name: Boy's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 102
+ - Id: 5017
+ AegisName: Bone_Helm
+ Name: Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 7
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 103
+ Script: |
+ bonus2 bSubEle,Ele_Dark,-15;
+ - Id: 5018
+ AegisName: Feather_Bonnet
+ Name: Feather Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 104
+ Script: |
+ bonus bAgi,1;
+ - Id: 5019
+ AegisName: Corsair
+ Name: Corsair
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ - Id: 5020
+ AegisName: Kafra_Band
+ Name: Kafra Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 106
+ Script: |
+ bonus bMdef,3;
+ - Id: 5021
+ AegisName: Bankruptcy_Of_Heart
+ Name: Grief for Greed
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 107
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5022
+ AegisName: Helm_Of_Sun
+ Name: Hat of the Sun God
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 138
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ - Id: 5023
+ AegisName: Hat_Of_Bundle
+ Name: Parcel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 108
+ - Id: 5024
+ AegisName: Hat_Of_Cake
+ Name: Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 109
+ - Id: 5025
+ AegisName: Helm_Of_Angel
+ Name: Helm of Angel
+ Type: Armor
+ Buy: 20
+ Weight: 1600
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 74
+ Refineable: true
+ View: 110
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ - Id: 5026
+ AegisName: Hat_Of_Cook
+ Name: Chef Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 111
+ Script: |
+ bonus bDex,1;
+ - Id: 5027
+ AegisName: Wizardry_Hat
+ Name: Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 112
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5028
+ AegisName: Candle
+ Name: Candle
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 113
+ - Id: 5029
+ AegisName: Spore_Hat
+ Name: Spore Hat
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 114
+ - Id: 5030
+ AegisName: Panda_Cap
+ Name: Panda Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 115
+ - Id: 5031
+ AegisName: Mine_Helm
+ Name: Mine Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 116
+ Script: |
+ bonus bDex,2;
+ - Id: 5032
+ AegisName: Picnic_Hat
+ Name: Sunday Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 117
+ - Id: 5033
+ AegisName: Smokie_Hat
+ Name: Raccoon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 118
+ - Id: 5034
+ AegisName: Light_Bulb_Band
+ Name: Bulb Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 119
+ - Id: 5035
+ AegisName: Poring_Hat
+ Name: Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 120
+ - Id: 5036
+ AegisName: Cross_Band
+ Name: Cross Hat
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 121
+ - Id: 5037
+ AegisName: Fruit_Shell
+ Name: Nut Shell
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 5
+ View: 122
+ - Id: 5038
+ AegisName: Deviruchi_Cap
+ Name: Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 123
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5039
+ AegisName: Mottled_Egg_Shell
+ Name: Rainbow Eggshell
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 19
+ View: 124
+ - Id: 5040
+ AegisName: Blush
+ Name: Blush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 125
+ - Id: 5041
+ AegisName: Heart_Hair_Pin
+ Name: Heart Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 126
+ - Id: 5042
+ AegisName: Hair_Protector
+ Name: Bao Bao
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 14
+ Refineable: true
+ View: 127
+ - Id: 5043
+ AegisName: Opera_Ghost_Mask
+ Name: Opera Phantom Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 128
+ - Id: 5044
+ AegisName: Devil's_Wing
+ Name: Evil Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 129
+ Script: |
+ bonus bVit,1;
+ - Id: 5045
+ AegisName: Magician_Hat
+ Name: Magician Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 130
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMaxSP,50;
+ - Id: 5046
+ AegisName: Bongun_Hat
+ Name: Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 139
+ - Id: 5047
+ AegisName: Fashion_Sunglass
+ Name: Fashionable Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 131
+ - Id: 5048
+ AegisName: First_Moon_Hair_Pin
+ Name: Cresent Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 132
+ - Id: 5049
+ AegisName: Stripe_Band
+ Name: Striped Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 133
+ - Id: 5050
+ AegisName: Mystery_Fruit_Shell
+ Name: Wonder Nutshell
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 134
+ - Id: 5051
+ AegisName: Kitty_Bell
+ Name: Pussy Cat Bell
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 135
+ - Id: 5052
+ AegisName: Blue_Hair_Band
+ Name: Blue Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 136
+ - Id: 5053
+ AegisName: Spinx_Helm
+ Name: Sphinx Hat
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 137
+ Script: |
+ bonus bStr,2;
+ - Id: 5054
+ AegisName: Assassin_Mask
+ Name: Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 180
+ - Id: 5055
+ AegisName: Novice_Egg_Cap
+ Name: Novice False Eggshell
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 3
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ View: 101
+ - Id: 5056
+ AegisName: Love_Berry
+ Name: Fruit of Love
+ Type: Armor
+ Buy: 1
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 140
+ - Id: 5057
+ AegisName: Ear_Of_Black_Cat
+ Name: Black Cat Ears
+ Type: Armor
+ Buy: 16000
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 141
+ - Id: 5058
+ AegisName: Drooping_Kitty
+ Name: Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 142
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,3000;
+ - Id: 5059
+ AegisName: Brown_Bear_Cap
+ Name: Teddybear Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 143
+ - Id: 5060
+ AegisName: Party_Hat
+ Name: Party Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ Script: |
+ bonus bLuk,1;
+ - Id: 5061
+ AegisName: Flower_Hairpin
+ Name: Flower Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 145
+ - Id: 5062
+ AegisName: Straw_Hat
+ Name: Straw Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 146
+ Script: |
+ bonus bAgi,1;
+ - Id: 5063
+ AegisName: Plaster
+ Name: Giant Band Aid
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 147
+ - Id: 5064
+ AegisName: Leaf_Headgear
+ Name: Smokie Leaf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 148
+ - Id: 5065
+ AegisName: Fish_On_Head
+ Name: Blue Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Script: |
+ bonus2 bAddRace,RC_Fish,10;
+ - Id: 5066
+ AegisName: Horn_Of_Succubus
+ Name: Succubus Horn
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 150
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,10;
+ - Id: 5067
+ AegisName: Sombrero
+ Name: Sombrero
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 151
+ Script: |
+ bonus bAgi,1;
+ - Id: 5068
+ AegisName: Ear_Of_Devil's_Wing
+ Name: Evil Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 152
+ Script: |
+ bonus bStr,1;
+ - Id: 5069
+ AegisName: Mask_Of_Fox
+ Name: Kitsune Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 153
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ - Id: 5070
+ AegisName: Headband_Of_Power
+ Name: Hot-blooded Headband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 154
+ Script: |
+ bonus bStr,2;
+ - Id: 5071
+ AegisName: Indian_Headband
+ Name: Indian Headband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 155
+ Script: |
+ bonus bDex,1;
+ - Id: 5072
+ AegisName: Inccubus_Horn
+ Name: Incubus Horn
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 156
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,10;
+ - Id: 5073
+ AegisName: Cap_Of_Concentration
+ Name: Model Training Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 157
+ Script: |
+ bonus bDex,2;
+ - Id: 5074
+ AegisName: Ear_Of_Angel's_Wing
+ Name: Angel Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 158
+ Script: |
+ bonus bStr,1;
+ - Id: 5075
+ AegisName: Cowboy_Hat
+ Name: Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 159
+ - Id: 5076
+ AegisName: Fur_Hat
+ Name: Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 160
+ Script: |
+ bonus bLuk,1;
+ - Id: 5077
+ AegisName: Tulip_Hairpin
+ Name: Tulip Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 161
+ - Id: 5078
+ AegisName: Sea_Otter_Cap
+ Name: Sea-Otter Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 162
+ Script: |
+ bonus bVit,1;
+ - Id: 5079
+ AegisName: Crossed_Hair_Band
+ Name: X Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 163
+ - Id: 5080
+ AegisName: Headgear_Of_Queen
+ Name: Crown of Ancient Queen
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 164
+ - Id: 5081
+ AegisName: Mistress_Crown
+ Name: Crown of Mistress
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 165
+ Script: |
+ bonus bMaxSP,100;
+ bonus bInt,2;
+ bonus bUnbreakableHelm;
+ - Id: 5082
+ AegisName: Mushroom_Band
+ Name: Decorative Mushroom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 166
+ - Id: 5083
+ AegisName: Red_Tailed_Ribbon
+ Name: Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 167
+ Script: |
+ bonus bMdef,10;
+ - Id: 5084
+ AegisName: Lazy_Raccoon
+ Name: Lazy Smokie
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 168
+ Script: |
+ bonus2 bResEff,Eff_Sleep,2000;
+ - Id: 5085
+ AegisName: Pair_Of_Red_Ribbon
+ Name: Small Ribbons
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ - Id: 5086
+ AegisName: Alarm_Mask
+ Name: Alarm Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 170
+ Script: |
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 5087
+ AegisName: Goblin_Mask_01
+ Name: Poker Face
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 171
+ - Id: 5088
+ AegisName: Goblin_Mask_02
+ Name: Surprised Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 172
+ - Id: 5089
+ AegisName: Goblin_Mask_03
+ Name: Annoyed Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 173
+ - Id: 5090
+ AegisName: Goblin_Mask_04
+ Name: Goblin Leader Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 174
+ - Id: 5091
+ AegisName: Big_Golden_Bell
+ Name: Decorative Golden Bell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 35
+ Refineable: true
+ View: 175
+ - Id: 5092
+ AegisName: Blue_Coif
+ Name: Coif
+ Type: Armor
+ Buy: 150000
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 176
+ - Id: 5093
+ AegisName: Blue_Coif_
+ Name: Coif
+ Type: Armor
+ Buy: 150000
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 177
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 5094
+ AegisName: Orc_Hero_Helm
+ Name: Helmet of Orc Hero
+ Type: Armor
+ Buy: 500000
+ Weight: 900
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 178
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ - Id: 5096
+ AegisName: Assassin_Mask_
+ Name: Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 180
+ - Id: 5097
+ AegisName: Cone_Hat_
+ Name: Holiday Hat
+ Type: Armor
+ Weight: 400
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ - Id: 5098
+ AegisName: Tiger_Mask
+ Name: Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 181
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,3;
+ bonus bMaxHP,100;
+ - Id: 5099
+ AegisName: Cat_Hat
+ Name: Neko Mimi
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 182
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5100
+ AegisName: Sales_Signboard
+ Name: Sales Banner
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 183
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ - Id: 5101
+ AegisName: Takius_Blindfold
+ Name: Takius's Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 184
+ - Id: 5102
+ AegisName: Round_Eyes
+ Name: Blank Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 185
+ - Id: 5103
+ AegisName: Sunflower_Hairpin
+ Name: Sunflower Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 186
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ bonus bCritical,5;
+ - Id: 5104
+ AegisName: Dark_Blindfold
+ Name: Dark Blinder
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 187
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,200;
+ - Id: 5105
+ AegisName: Hat_Of_Cake_
+ Name: 2nd Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 24
+ Refineable: true
+ View: 109
+ Script: |
+ bonus bDex,1;
+ bonus bMaxSP,80;
+ bonus3 bAddMonsterDropItem,7864,7,50;
+ - Id: 5106
+ AegisName: Cone_Hat_INA
+ Name: 2nd Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 144
+ Script: |
+ bonus bLuk,1;
+ - Id: 5107
+ AegisName: Well_Baked_Toast
+ Name: Crunch Toast
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 188
+ - Id: 5108
+ AegisName: Detective_Hat
+ Name: Renown Detective's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 189
+ - Id: 5109
+ AegisName: Red_Bonnet
+ Name: Red Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 190
+ - Id: 5110
+ AegisName: Baby_Pacifier
+ Name: Baby Pacifier
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 191
+ - Id: 5111
+ AegisName: Galapago_Cap
+ Name: Galapago Cap
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 192
+ Script: |
+ bonus2 bAddMonsterDropItem,605,100;
+ - Id: 5112
+ AegisName: Super_Novice_Hat
+ Name: Super Novice Hat
+ Type: Armor
+ Buy: 8500
+ Weight: 400
+ Defense: 4
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 193
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5113
+ AegisName: Angry_Mouth
+ Name: Angry Snarl
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 194
+ - Id: 5114
+ AegisName: Fedora
+ Name: Bucket Hat
+ Type: Armor
+ Buy: 6000
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 195
+ - Id: 5115
+ AegisName: Winter_Hat
+ Name: Winter Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 196
+ Script: |
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5116
+ AegisName: Banana_Hat
+ Name: Banana Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 197
+ Script: |
+ bonus3 bAutoSpell,"SM_PROVOKE",3,30;
+ - Id: 5117
+ AegisName: Mistic_Rose
+ Name: Mystic Rose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 198
+ Script: |
+ bonus2 bSubRace,RC_Plant,2;
+ - Id: 5118
+ AegisName: Ear_Of_Puppy
+ Name: Puppy Headband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 199
+ - Id: 5119
+ AegisName: Super_Novice_Hat_
+ Name: Super Novice Hat
+ Type: Armor
+ Buy: 8500
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 193
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5120
+ AegisName: Fedora_
+ Name: Bucket Hat
+ Type: Armor
+ Buy: 6000
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 195
+ - Id: 5121
+ AegisName: Zherlthsh_Mask
+ Name: Zealotus Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 200
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5122
+ AegisName: Magni_Cap
+ Name: Magni's Cap
+ Type: Armor
+ Buy: 30000
+ Weight: 1000
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 250
+ Script: |
+ bonus bStr,2;
+ - Id: 5123
+ AegisName: Ulle_Cap
+ Name: Ulle's Cap
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 254
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,1;
+ - Id: 5124
+ AegisName: Fricca_Circlet
+ Name: Fricca's Circlet
+ Type: Armor
+ Buy: 30000
+ Weight: 300
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 251
+ Script: |
+ bonus bMdef,10;
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ - Id: 5125
+ AegisName: Kiss_Of_Angel
+ Name: Angel's Kiss
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 255
+ Script: |
+ bonus bSPrecovRate,5;
+ - Id: 5126
+ AegisName: Morpheus's_Hood
+ Name: Morpheus's Hood
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 33
+ Refineable: true
+ View: 256
+ Script: |
+ bonus bInt,2;
+ - Id: 5127
+ AegisName: Morrigane's_Helm
+ Name: Morrigane's Helm
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 61
+ Refineable: true
+ View: 257
+ Script: |
+ bonus bLuk,2;
+ bonus bBaseAtk,3;
+ - Id: 5128
+ AegisName: Goibne's_Helmet
+ Name: Goibne's Helm
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 54
+ Refineable: true
+ View: 258
+ Script: |
+ bonus bVit,3;
+ bonus bMdef,3;
+ - Id: 5129
+ AegisName: Bird_Nest
+ Name: Bird Nest
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 201
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubRace,RC_Brute,10;
+ bonus2 bSubRace,RC_Player_Doram,10;
+ - Id: 5130
+ AegisName: Lion_Mask
+ Name: Lion Mask
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 202
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,500;
+ bonus bMdef,1;
+ - Id: 5131
+ AegisName: Close_Helmet
+ Name: Close Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 8
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 203
+ Script: |
+ bonus bVit,3;
+ bonus bMaxHPrate,3;
+ - Id: 5132
+ AegisName: Angeling_Hat
+ Name: Angeling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 204
+ Trade:
+ Override: 100
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5133
+ AegisName: Sheep_Hat
+ Name: Sheep Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ View: 205
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bShortWeaponDamageReturn,5;
+ - Id: 5134
+ AegisName: Pumpkin_Hat
+ Name: Pumpkin-Head
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5135
+ AegisName: Cyclops_Visor
+ Name: Cyclop's Eye
+ Type: Armor
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 75
+ View: 207
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 5136
+ AegisName: Santa's_Hat_
+ Name: Antonio's Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 20
+ - Id: 5137
+ AegisName: Alice_Doll
+ Name: Alice Doll
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 208
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddEff2,Eff_Sleep,10;
+ - Id: 5138
+ AegisName: Magic_Eyes
+ Name: Magic Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 209
+ Script: |
+ bonus bMdef,5;
+ bonus bCastrate,-10;
+ bonus bUseSPrate,20;
+ - Id: 5139
+ AegisName: Hibiscus
+ Name: Hibiscus
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 210
+ Script: |
+ bonus bDex,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ - Id: 5140
+ AegisName: Charming_Ribbon
+ Name: Charming Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 211
+ Script: |
+ bonus2 bSubRace,RC_Undead,5;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5141
+ AegisName: Marionette_Doll
+ Name: Marionette Doll
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 212
+ Script: |
+ bonus bStr,1;
+ - Id: 5142
+ AegisName: Crescent_Helm
+ Name: Crescent Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 213
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5143
+ AegisName: Kabuki_Mask
+ Name: Kabuki Mask
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 214
+ Script: |
+ bonus2 bResEff,Eff_Silence,3000;
+ - Id: 5144
+ AegisName: Gambler_Hat
+ Name: Gambler Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ Script: |
+ bonus bLuk,5;
+ - Id: 5145
+ AegisName: Carnival_Joker_Jester
+ Name: Carnival Joker Jester
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 89
+ - Id: 5146
+ AegisName: Elephant_Hat
+ Name: Elephant Hat
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Brute,7;
+ skill "WZ_WATERBALL",1;
+ - Id: 5147
+ AegisName: Baseball_Cap
+ Name: Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5148
+ AegisName: Phrygian_Cap
+ Name: Phrygian Cap
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bInt,2;
+ - Id: 5149
+ AegisName: Silver_Tiara
+ Name: Silver Tiara
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 218
+ Script: |
+ bonus bInt,2;
+ - Id: 5150
+ AegisName: Joker_Jester_
+ Name: Joker Jester
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 219
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 5151
+ AegisName: Headset_OST
+ Name: Note Headphones
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 220
+ Script: |
+ bonus bMdef,3;
+ bonus2 bResEff,Eff_Stun,1000;
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5152
+ AegisName: Chinese_Crown
+ Name: Chinese Crown
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 221
+ Script: |
+ bonus2 bResEff,Eff_Stun,1000;
+ bonus bInt,1;
+ - Id: 5153
+ AegisName: Angeling_Hairpin
+ Name: Angeling Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 222
+ Script: |
+ bonus bFlee,5;
+ - Id: 5154
+ AegisName: Sunglasses_F
+ Name: Father's Sunglasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ View: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5155
+ AegisName: Granpa_Beard_F
+ Name: Father's White Moustache
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 25
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 5156
+ AegisName: Flu_Mask_F
+ Name: Father's Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 5157
+ AegisName: Viking_Helm_
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 86
+ - Id: 5158
+ AegisName: Holy_Bonnet_
+ Name: Monk Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 35
+ Script: |
+ bonus bMdef,3;
+ - Id: 5159
+ AegisName: Golden_Gear_
+ Name: Golden Gear
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 30
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5160
+ AegisName: Magestic_Goat_
+ Name: Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 5161
+ AegisName: Sharp_Gear_
+ Name: Spiky Band
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 43
+ - Id: 5162
+ AegisName: Bone_Helm_
+ Name: Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 103
+ Script: |
+ bonus2 bSubEle,Ele_Dark,-15;
+ - Id: 5163
+ AegisName: Corsair_
+ Name: Corsair
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ - Id: 5164
+ AegisName: Tiara_
+ Name: Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 19
+ Script: |
+ bonus bInt,1;
+ - Id: 5165
+ AegisName: Crown_
+ Name: Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 45
+ Script: |
+ bonus bInt,1;
+ - Id: 5166
+ AegisName: Spinx_Helm_
+ Name: Sphinx Hat
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 137
+ Script: |
+ bonus bStr,2;
+ - Id: 5167
+ AegisName: Munak_Turban_
+ Name: Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 51
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 5168
+ AegisName: Bongun_Hat_
+ Name: Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 139
+ - Id: 5169
+ AegisName: Bride_Mask
+ Name: Bride Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 223
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bLuk,2;
+ bonus bCritical,5;
+ }
+ - Id: 5170
+ AegisName: Feather_Beret
+ Name: Feather Beret
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 224
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5171
+ AegisName: Valkyrie_Helm
+ Name: Valkyrie Helm
+ Type: Armor
+ Buy: 100000
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ Upper: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 225
+ Script: |
+ bonus bMdef,5;
+ - Id: 5172
+ AegisName: Beret
+ Name: Beret
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Locations:
+ Head_Top: true
+ View: 226
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5173
+ AegisName: Satto_Hat
+ Name: Magistrate Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 227
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bAgi,1;
+ bonus bHPrecovRate,3;
+ }
+ - Id: 5174
+ AegisName: Ayam
+ Name: Ayam
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 228
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bInt,1;
+ bonus bSPrecovRate,3;
+ }
+ - Id: 5175
+ AegisName: Censor_Bar
+ Name: Censor Bar
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 229
+ Script: |
+ bonus2 bResEff,Eff_Curse,500;
+ bonus bMdef,1;
+ bonus bHit,-5;
+ - Id: 5176
+ AegisName: Hahoe_Mask
+ Name: Hahoe Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 230
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bLuk,1;
+ bonus bFlee2,2;
+ }
+ - Id: 5177
+ AegisName: Guardian_Lion_Mask
+ Name: Mythical Lion Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 231
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bDex,2;
+ bonus bBaseAtk,2*getrefine();
+ bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT;
+ }
+ - Id: 5178
+ AegisName: Candle_
+ Name: Candle
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 113
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5179
+ AegisName: Gold_Tiara
+ Name: Golden Tiara
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 232
+ Script: |
+ bonus bInt,2;
+ - Id: 5180
+ AegisName: Phrygian_Cap_
+ Name: France Holiday Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bVit,1;
+ - Id: 5181
+ AegisName: Helm_Of_Darkness
+ Name: Helm of Darkness
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 233
+ Script: |
+ bonus bStr,2;
+ - Id: 5182
+ AegisName: Puppy_Hat
+ Name: Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 234
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);
+ - Id: 5183
+ AegisName: Bird_Nest_Hat
+ Name: Bird Nest Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 235
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus2 bResEff,Eff_Stun,1000;
+ - Id: 5184
+ AegisName: Captain_Hat
+ Name: Captain's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 236
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 5185
+ AegisName: Laurel_Wreath
+ Name: Laurel Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 237
+ Script: |
+ bonus bLuk,3;
+ bonus2 bResEff,Eff_Blind,500;
+ bonus2 bResEff,Eff_Curse,500;
+ - Id: 5186
+ AegisName: Geographer_Band
+ Name: Geographer Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 238
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;
+ - Id: 5187
+ AegisName: Twin_Ribbon
+ Name: Twin Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 239
+ Script: |
+ bonus bMaxSP,30;
+ bonus bMdef,3;
+ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10;
+ bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;
+ - Id: 5188
+ AegisName: Minstrel_Hat
+ Name: Wandering Minstrel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 240
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5189
+ AegisName: Fallen_Leaves
+ Name: Autumn Leaves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 241
+ Script: |
+ bonus bMaxHP,40;
+ bonus bMaxSP,40;
+ - Id: 5190
+ AegisName: Baseball_Cap_
+ Name: Independence Memorial Hat
+ Type: Armor
+ Buy: 20
+ Weight: 20
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5191
+ AegisName: Ribbon_Black
+ Name: Black Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 242
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,3;
+ - Id: 5192
+ AegisName: Ribbon_Yellow
+ Name: Yellow Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 243
+ Script: |
+ bonus bMdef,3;
+ - Id: 5193
+ AegisName: Ribbon_Green
+ Name: Green Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 244
+ Script: |
+ bonus bMdef,3;
+ - Id: 5194
+ AegisName: Ribbon_Pink
+ Name: Pink Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 245
+ Script: |
+ bonus bMdef,3;
+ - Id: 5195
+ AegisName: Ribbon_Red
+ Name: Red Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 246
+ Script: |
+ bonus bMdef,3;
+ - Id: 5196
+ AegisName: Ribbon_Orange
+ Name: Orange Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 247
+ Script: |
+ bonus bMdef,3;
+ - Id: 5197
+ AegisName: Ribbon_White
+ Name: White Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 248
+ Script: |
+ bonus bMdef,3;
+ - Id: 5198
+ AegisName: Drooping_Bunny
+ Name: Drooping Bunny
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5199
+ AegisName: Baseball_Cap_I
+ Name: Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5200
+ AegisName: Coppola
+ Name: Coppola
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 252
+ - Id: 5201
+ AegisName: Party_Hat_B
+ Name: Party Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5202
+ AegisName: Pumpkin_Hat_
+ Name: Fantastic Pumpkin-Head
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5203
+ AegisName: Tongue_Mask
+ Name: Smiling Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 253
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 5204
+ AegisName: Event_Pierrot_Nose
+ Name: Rudolph's Nose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 49
+ Script: |
+ bonus2 bResEff,Eff_Blind,3000;
+ bonus2 bAddMonsterDropItem,12130,30;
+ - Id: 5205
+ AegisName: Wreath
+ Name: Emperor's Laurel Crown
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 261
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,3;
+ - Id: 5206
+ AegisName: Romantic_White_Flower
+ Name: Romantic White Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 259
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 5207
+ AegisName: Gold_Spirit_Chain
+ Name: Angel Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 260
+ Script: |
+ bonus bLuk,1;
+ bonus2 bSubEle,Ele_Holy,5;
+ - Id: 5208
+ AegisName: Rideword_Hat
+ Name: Rideword Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 262
+ Script: |
+ bonus2 bHPDrainRate,50,8;
+ bonus2 bSPDrainRate,10,4;
+ bonus2 bHPLossRate,10,5000;
+ - Id: 5209
+ AegisName: Yellow_Baseball_Cap
+ Name: Love Dad Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 263
+ - Id: 5210
+ AegisName: Flying_Angel
+ Name: Flapping Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bCastrate,-3;
+ bonus bAspdRate,3;
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 5211
+ AegisName: Dress_Hat
+ Name: Dress Hat
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 265
+ Script: |
+ bonus bMdef,7;
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMAtkRate,2;
+ bonus bHealPower,5;
+ if (getrefine()>=7) {
+ bonus2 bAddClass,Class_All,1;
+ bonus bMAtkRate,1;
+ bonus bHealPower,1;
+ }
+ - Id: 5212
+ AegisName: Satellite_Hairband
+ Name: Satellite Hairband
+ Type: Armor
+ Weight: 1000
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 266
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMaxSP,10;
+ skill "AL_RUWACH",1;
+ UnEquipScript: |
+ sc_end SC_RUWACH;
+ - Id: 5213
+ AegisName: Black_Bunny_Band
+ Name: Sheila Hairnet
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 267
+ Script: |
+ bonus bAgi,2;
+ bonus bMdef,3;
+ - Id: 5214
+ AegisName: Moonlight_Flower_Hat
+ Name: Moonlight Flower Hat
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 268
+ Script: |
+ bonus bDex,2;
+ bonus3 bAutoSpell,"AL_INCAGI",1,50;
+ - Id: 5215
+ AegisName: Angelic_Chain_
+ Name: Evolved Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,1;
+ bonus bInt,1;
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 5216
+ AegisName: Satanic_Chain_
+ Name: Evolved Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bFlee,3;
+ bonus2 bSubRace,RC_Angel,3;
+ - Id: 5217
+ AegisName: Magestic_Goat_TW
+ Name: Evolved Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ - Id: 5218
+ AegisName: Bunny_Band_
+ Name: Evolved Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,2;
+ - Id: 5219
+ AegisName: Drooping_Kitty_
+ Name: Evolved Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 142
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,18;
+ bonus bFlee,3;
+ - Id: 5220
+ AegisName: Smoking_Pipe_
+ Name: Evolved Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 55
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5221
+ AegisName: Pair_Of_Red_Ribbon_
+ Name: Evolved Pair of Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bFlee,5;
+ - Id: 5222
+ AegisName: Fish_On_Head_
+ Name: Evolved Blue Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,1;
+ - Id: 5223
+ AegisName: Big_Golden_Bell_
+ Name: Evolved Big Golden Bell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 35
+ Refineable: true
+ View: 175
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 5224
+ AegisName: Orc_Hero_Helm_TW
+ Name: Evolved Orc Hero Helm
+ Type: Armor
+ Buy: 500000
+ Weight: 900
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 178
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bMaxHPrate,10;
+ - Id: 5225
+ AegisName: Marcher_Hat
+ Name: Parade Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 269
+ Script: |
+ bonus bMdef,2;
+ bonus bStr,2;
+ bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0;
+ bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0;
+ bonus2 bResEff,Eff_Stun,1000;
+ if (BaseClass == Job_Acolyte)
+ bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;
+ - Id: 5226
+ AegisName: Mini_Propeller_
+ Name: Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 270
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,1;
+ bonus bFlee,10;
+ bonus bCastrate,-getrefine();
+ - Id: 5227
+ AegisName: Red_Deviruchi_Cap
+ Name: Red Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 271
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5228
+ AegisName: White_Deviruchi_Cap
+ Name: Gray Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 272
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5229
+ AegisName: Gray_Deviruchi_Cap
+ Name: Brown Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 273
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5230
+ AegisName: White_Drooping_Kitty
+ Name: Gray Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 274
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5231
+ AegisName: Gray_Drooping_Kitty
+ Name: Brown Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 275
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5232
+ AegisName: Pink_Drooping_Kitty
+ Name: Pink Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 276
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5233
+ AegisName: Blue_Drooping_Kitty
+ Name: Blue Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 277
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5234
+ AegisName: Yellow_Drooping_Kitty
+ Name: Yellow Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 278
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5235
+ AegisName: Gray_Fur_Hat
+ Name: Brown Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 279
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 5236
+ AegisName: Blue_Fur_Hat
+ Name: Blue Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 280
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 5237
+ AegisName: Pink_Fur_Hat
+ Name: Pink Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 281
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 5238
+ AegisName: Red_Wizardry_Hat
+ Name: Red Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 282
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5239
+ AegisName: White_Wizardry_Hat
+ Name: Gray Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 283
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5240
+ AegisName: Gray_Wizardry_Hat
+ Name: Brown Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 284
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5241
+ AegisName: Blue_Wizardry_Hat
+ Name: Blue Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 285
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5242
+ AegisName: Yellow_Wizardry_Hat
+ Name: Yellow Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 286
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5243
+ AegisName: Chullos
+ Name: Shafka
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 287
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5244
+ AegisName: Elven_Blindfold
+ Name: Elven Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 288
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5245
+ AegisName: Elven_Sunglasses
+ Name: Elven Sunglasses
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 289
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 5246
+ AegisName: Angelic_Helm
+ Name: Angelic Helm
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 290
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5247
+ AegisName: Satanic_Helm
+ Name: Satanic Helm
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 291
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5248
+ AegisName: Robotic_Blindfold
+ Name: Robotic Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 292
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5249
+ AegisName: Human_Blindfold
+ Name: Human Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 293
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5250
+ AegisName: Robotic_Ears
+ Name: Robotic Ears
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ View: 294
+ - Id: 5251
+ AegisName: Round_Ears
+ Name: Round Ears
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ View: 295
+ - Id: 5252
+ AegisName: Drooping_Nine_Tail
+ Name: Drooping Ninetail
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 296
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,1;
+ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;
+ - Id: 5253
+ AegisName: Lif_Doll_Hat
+ Name: Lif Doll Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 297
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,getrefine();
+ bonus bDef,getrefine()*-1;
+ - Id: 5254
+ AegisName: Deviling_Hat
+ Name: Deviling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 298
+ Script: |
+ bonus bStr,1;
+ bonus bCritical,3;
+ bonus2 bSubRace,RC_Angel,-20;
+ if (getrefine()>=6) {
+ bonus bCritical,getrefine()-5;
+ }
+ - Id: 5255
+ AegisName: Triple_Poring_Hat
+ Name: Triple Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 299
+ Script: |
+ bonus bLuk,3;
+ bonus3 bAutoSpell,"BS_GREED",1,50;
+ - Id: 5256
+ AegisName: Valkyrie_Feather_Band
+ Name: Valkyrie Feather Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 300
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;
+ - Id: 5257
+ AegisName: Soulless_Wing
+ Name: Soul Ring
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 301
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,2;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10;
+ - Id: 5258
+ AegisName: Afro_Wig
+ Name: Afro Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 302
+ Script: |
+ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300;
+ bonus2 bSubEle,Ele_Neutral,1;
+ - Id: 5259
+ AegisName: Elephant_Hat_
+ Name: Elephant Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ Script: |
+ bonus bVit,1;
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,10;
+ skill "AL_HOLYWATER",1;
+ - Id: 5260
+ AegisName: Cookie_Hat
+ Name: Cookie Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee2,5;
+ bonus bCritAtkRate,5;
+ - Id: 5261
+ AegisName: Silver_Tiara_
+ Name: Silver Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 218
+ Script: |
+ bonus bInt,2;
+ if (BaseClass == Job_Mage)
+ bonus bMatkRate,(JobLevel/20);
+ if (BaseClass == Job_Acolyte)
+ bonus bUseSPrate,-(JobLevel/10);
+ if (BaseClass == Job_Archer)
+ bonus bMaxSP,(JobLevel*2);
+ - Id: 5262
+ AegisName: Gold_Tiara_
+ Name: Golden Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 232
+ Script: |
+ bonus bStr,2;
+ bonus bUnbreakableHelm;
+ if (readparam(bDex)<56 && (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief))
+ bonus bDex,JobLevel/7;
+ - Id: 5263
+ AegisName: Ati_Atihan_Hat
+ Name: Pagdayaw
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 303
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,1;
+ bonus2 bSubEle,Ele_Earth,1;
+ bonus2 bSubEle,Ele_Fire,1;
+ bonus2 bSubEle,Ele_Wind,1;
+ bonus2 bAddEff,Eff_Curse,300;
+ - Id: 5264
+ AegisName: Aussie_Flag_Hat
+ Name: Australian Flag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 304
+ Script: |
+ bonus bAllStats,2;
+ - Id: 5265
+ AegisName: Apple_Of_Archer_C
+ Name: Apple of Archer
+ Type: Armor
+ Buy: 1
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 72
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ - Id: 5266
+ AegisName: Bunny_Band_C
+ Name: Bunny Band
+ Type: Armor
+ Buy: 1
+ Defense: 9
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 15
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5267
+ AegisName: Sahkkat_C
+ Name: Sakkat
+ Type: Armor
+ Buy: 1
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 67
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,3;
+ - Id: 5268
+ AegisName: Lord_Circlet_C
+ Name: Grand Circlet
+ Type: Armor
+ Buy: 1
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 93
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,3;
+ bonus bMdef,4;
+ - Id: 5269
+ AegisName: Flying_Angel_
+ Name: Flapping Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus bAspdRate,3;
+ bonus bSpeedRate,25;
+ - Id: 5270
+ AegisName: Fallen_Leaves_
+ Name: Autumn Leaves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 241
+ Script: |
+ bonus bFlee2,5;
+ - Id: 5271
+ AegisName: Chinese_Crown_
+ Name: Phoenix Crown
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 221
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubClass,Class_Boss,getrefine();
+ - Id: 5272
+ AegisName: Tongue_Mask_
+ Name: Tongue Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 253
+ Script: |
+ bonus3 bAutoSpell,"SM_PROVOKE",5,50;
+ - Id: 5273
+ AegisName: Happy_Wig
+ Name: Happy Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 305
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5274
+ AegisName: Shiny_Wig
+ Name: Shiny Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 306
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5275
+ AegisName: Marvelous_Wig
+ Name: Marvelous Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 307
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5276
+ AegisName: Fantastic_Wig
+ Name: Fantastic Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 308
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5277
+ AegisName: Yellow_Bandana
+ Name: Yellow Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 309
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,2;
+ bonus bVit,2;
+ bonus bLongAtkDef,10;
+ - Id: 5278
+ AegisName: Yellow_Ribbon
+ Name: Yellow Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 310
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,2;
+ bonus bVit,2;
+ bonus bLongAtkDef,10;
+ - Id: 5279
+ AegisName: Drooping_Kitty_C
+ Name: Refined Drooping Cat
+ Type: Armor
+ Buy: 2
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 142
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,3000;
+ - Id: 5280
+ AegisName: Magestic_Goat_C
+ Name: Baphomet Horns
+ Type: Armor
+ Buy: 2
+ Defense: 5
+ Locations:
+ Head_Top: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 5281
+ AegisName: Deviruchi_Cap_C
+ Name: Refined Deviruchi Hat
+ Type: Armor
+ Buy: 2
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 123
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5282
+ AegisName: euRO_Baseball_Cap
+ Name: Europe Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5283
+ AegisName: Chick_Hat
+ Name: Chick Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 311
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,2;
+ bonus bMaxHP,50;
+ bonus bMaxSP,50;
+ skill "TF_DOUBLE",2;
+ bonus bDoubleRate,10;
+ bonus2 bSubRace,RC_DemiHuman,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ - Id: 5284
+ AegisName: Water_Lily_Crown
+ Name: Water Lily Crown
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 312
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bHPrecovRate,5;
+ bonus bSPrecovRate,3;
+ - Id: 5285
+ AegisName: Vane_Hairpin
+ Name: Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 313
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 5286
+ AegisName: Pecopeco_Hairband
+ Name: Pecopeco Hairband
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 314
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bAspdRate,-10;
+ bonus bCastrate,25;
+ - Id: 5287
+ AegisName: Vacation_Hat
+ Name: Vacation Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 315
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,1;
+ - Id: 5288
+ AegisName: Red_Glasses
+ Name: Red Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 316
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ - Id: 5289
+ AegisName: Vanilmirth_Hat
+ Name: Vanilmirth Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 317
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus3 bAutoSpell,"MG_FIREBOLT",1,10;
+ bonus3 bAutoSpell,"MG_COLDBOLT",1,10;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10;
+ bonus bMdef,5;
+ - Id: 5290
+ AegisName: Drooping_Bunny_
+ Name: Drooping Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5291
+ AegisName: Kettle_Hat
+ Name: Kettle Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 318
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus4 bAutoSpell,"SA_DELUGE",2,10,0;
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,10;
+ - Id: 5292
+ AegisName: Dragon_Skull
+ Name: Dragon Skull
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 319
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,5;
+ - Id: 5293
+ AegisName: Ramen_Hat
+ Name: Ramen Hat
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 320
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,4;
+ bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;
+ - Id: 5294
+ AegisName: Whisper_Mask
+ Name: Whisper Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 321
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,3;
+ bonus2 bSubEle,Ele_Ghost,-10;
+ - Id: 5295
+ AegisName: Golden_Bandana
+ Name: Golden Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 138
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 5296
+ AegisName: Drooping_Nine_Tail_
+ Name: Drooping Nine Tail
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 296
+ Script: |
+ bonus bAgi,1;
+ bonus bCritical,1;
+ - Id: 5297
+ AegisName: Soulless_Wing_
+ Name: Soul Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 301
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bSPRegenRate,2,10000;
+ - Id: 5298
+ AegisName: Marvelous_Wig_
+ Name: Dokebi's Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 307
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubEle,Ele_Fire,-5;
+ bonus2 bSubEle,Ele_Water,-5;
+ - Id: 5299
+ AegisName: Ati_Atihan_Hat_
+ Name: Pagdayaw
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 303
+ Script: |
+ bonus3 bAutoSpell,"DC_SCREAM",1,50;
+ - Id: 5300
+ AegisName: Bullock_Helm
+ Name: Bullock Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 322
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 5301
+ AegisName: Russian_Ribbon
+ Name: Victory Hairband
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 323
+ - Id: 5302
+ AegisName: Lotus_Flower_Hat
+ Name: Flower Lily
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 324
+ - Id: 5303
+ AegisName: Flower_Coronet
+ Name: Flower Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 325
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxHP,50;
+ - Id: 5304
+ AegisName: Cap_Of_Blindness
+ Name: Cap Of Blindness
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 326
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,700;
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5305
+ AegisName: Pirate_Dagger
+ Name: Pirate Dagger
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 327
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,5;
+ - Id: 5306
+ AegisName: Freyja_Crown
+ Name: Freya's Crown
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 328
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5307
+ AegisName: Carmen_Miranda's_Hat
+ Name: Carmen Miranda's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 329
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,3;
+ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50;
+ - Id: 5308
+ AegisName: Brazilian_Flag_Hat
+ Name: Brazil National Flag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 330
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bSpeedAddRate,25;
+ - Id: 5309
+ AegisName: Mahican
+ Name: Wool Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 331
+ Script: |
+ skill "RG_GRAFFITI",1;
+ - Id: 5310
+ AegisName: Bulb_Hairband
+ Name: Shining Electric Bulb Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 332
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubEle,Ele_Dark,10;
+ skill "MG_SIGHT",1;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 5311
+ AegisName: Large_Hibiscus
+ Name: Large Hisbiscus
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 333
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,15;
+ - Id: 5312
+ AegisName: Ayothaya_Hat
+ Name: Ayothaya King's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 334
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5313
+ AegisName: Diadem
+ Name: Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 335
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatkRate,3;
+ bonus bCastrate,-3;
+ - Id: 5314
+ AegisName: Hockey_Mask
+ Name: Hockey Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 336
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5315
+ AegisName: Observer
+ Name: Observer
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 35
+ View: 337
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ skill "WZ_ESTIMATION",1;
+ - Id: 5316
+ AegisName: Umbrella_Hat
+ Name: Umbrella Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 338
+ Script: |
+ bonus2 bSubEle,Ele_Water,3;
+ - Id: 5317
+ AegisName: Fisherman_Hat
+ Name: Fisherman's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 339
+ Script: |
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,50;
+ - Id: 5318
+ AegisName: Poring_Party_Hat
+ Name: Poring Party Hat
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 340
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5319
+ AegisName: Hellomother_Hat
+ Name: Hello Mother Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 341
+ Script: |
+ bonus bLuk,3;
+ - Id: 5320
+ AegisName: Champion_Wreath
+ Name: Champion Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 261
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;
+ - Id: 5321
+ AegisName: Indonesian_Bandana
+ Name: Bandana Merah Putih
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 342
+ - Id: 5322
+ AegisName: Scarf
+ Name: Kerchief
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 24
+ Refineable: true
+ View: 343
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,2;
+ bonus bFlee,5;
+ - Id: 5323
+ AegisName: Misstrance_Crown
+ Name: Misstrance Crown
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 165
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ - Id: 5324
+ AegisName: Little_Angel_Doll
+ Name: Little Angel Doll
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 344
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,3;
+ bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;
+ - Id: 5325
+ AegisName: Robo_Eye
+ Name: Robo Eye
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 345
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ bonus bDex,1;
+ - Id: 5326
+ AegisName: Masquerade_C
+ Name: Masquerade C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 78
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,7;
+ bonus2 bAddRace,RC_Player_Human,7;
+ - Id: 5327
+ AegisName: Orc_Hero_Helm_C
+ Name: Refined Helmet of Orc Hero
+ Type: Armor
+ Buy: 1
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 178
+ Script: |
+ bonus bStr,5;
+ bonus bVit,3;
+ - Id: 5328
+ AegisName: Evil_Wing_Ears_C
+ Name: Evil Wing Ears C
+ Type: Armor
+ Buy: 1
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ View: 152
+ Script: |
+ bonus bStr,1;
+ - Id: 5329
+ AegisName: Dark_Blindfold_C
+ Name: Dark Blindfold C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 187
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,500;
+ - Id: 5330
+ AegisName: kRO_Drooping_Kitty_C
+ Name: kRO Drooping Kitty C
+ Type: Armor
+ Buy: 1
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 142
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,4000;
+ bonus2 bResEff,Eff_Curse,1000;
+ - Id: 5331
+ AegisName: Corsair_C
+ Name: Corsair C
+ Type: Armor
+ Buy: 1
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 105
+ Script: |
+ bonus bVit,3;
+ bonus bInt,3;
+ - Id: 5332
+ AegisName: Loki_Mask
+ Name: Loki Mask
+ Type: Armor
+ Weight: 200
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 346
+ Script: |
+ bonus bFlee2,3;
+ - Id: 5333
+ AegisName: Radio_Antenna
+ Name: Radio Antenna
+ Type: Armor
+ Weight: 1500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 347
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ skill "MG_LIGHTNINGBOLT",1;
+ bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;
+ - Id: 5334
+ AegisName: Angeling_Wanna_Fly
+ Name: Flapping Angeling
+ Type: Armor
+ Weight: 700
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ View: 348
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,2;
+ - Id: 5335
+ AegisName: Jumping_Poring
+ Name: Jumping Poring
+ Type: Armor
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 349
+ Script: |
+ bonus bLuk,1;
+ bonus bUnbreakableHelm;
+ - Id: 5336
+ AegisName: Guildsman_Recruiter
+ Name: Guildsman Recruiter Hat
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 350
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 5337
+ AegisName: Party_Recruiter_Hat
+ Name: Party Recruiter Hat
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 351
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 5338
+ AegisName: Bf_Recruiter_Hat
+ Name: Bf Recruiter Hat
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 352
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5339
+ AegisName: Friend_Recruiter_Hat
+ Name: Friend Recruiter Hat
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 353
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5340
+ AegisName: Deprotai_Doll_Hat
+ Name: Defolty Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 354
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bStr,2;
+ bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20;
+ - Id: 5341
+ AegisName: Claris_Doll_Hat
+ Name: Glaris Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 355
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bInt,2;
+ bonus bMagicHPGainValue,50;
+ - Id: 5342
+ AegisName: Sorin_Doll_Hat
+ Name: Sorin Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 356
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bDex,2;
+ autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 5343
+ AegisName: Tayelin_Doll_Hat
+ Name: Telling Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 357
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bAgi,2;
+ bonus2 bAddItemHealRate,504,10;
+ bonus2 bAddItemHealRate,547,10;
+ - Id: 5344
+ AegisName: Binit_Doll_Hat
+ Name: Bennit Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 358
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bVit,2;
+ autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";
+ - Id: 5345
+ AegisName: Debril_Doll_Hat
+ Name: W Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 359
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bLuk,2;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bMagicAddRace,RC_Undead,5;
+ bonus2 bSubRace,RC_Undead,5;
+ - Id: 5346
+ AegisName: Gf_Recruiter_Hat
+ Name: Gf Recruiter Hat
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 360
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5347
+ AegisName: Ph.D_Hat_
+ Name: Ph.D Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ - Id: 5348
+ AegisName: Big_Sis'_Ribbon_
+ Name: Big Ribbon
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 28
+ Script: |
+ bonus bMdef,3;
+ - Id: 5349
+ AegisName: Boy's_Cap_
+ Name: Boy's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 102
+ - Id: 5350
+ AegisName: Pirate_Bandana_
+ Name: Pirate Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 74
+ Script: |
+ bonus bStr,1;
+ - Id: 5351
+ AegisName: Sunflower_
+ Name: Sunflower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 37
+ Script: |
+ bonus2 bSubRace,RC_Insect,10;
+ - Id: 5352
+ AegisName: Poporing_Cap
+ Name: Poporing Cap
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 361
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 5353
+ AegisName: Helm_Of_Sun_
+ Name: Hat of the Sun God
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 138
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ - Id: 5354
+ AegisName: Muslim_Hat_M
+ Name: Muslim Hat M
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 362
+ Script: |
+ bonus bCastrate,-5;
+ - Id: 5355
+ AegisName: Muslim_Hat_F
+ Name: Selendang
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 363
+ Script: |
+ bonus bCastrate,-5;
+ - Id: 5356
+ AegisName: Pumpkin_Hat_H
+ Name: Festival Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ Trade:
+ Override: 100
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bAddRace,RC_Demon,5;
+ - Id: 5357
+ AegisName: Wings_Of_Victory
+ Name: Wings Of Victory
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 10
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 365
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,10;
+ bonus bUnbreakableHelm;
+ - Id: 5358
+ AegisName: Pecopeco_Wing_Ears
+ Name: Peco Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 366
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,2;
+ bonus bUnbreakableHelm;
+ - Id: 5359
+ AegisName: J_Captain_Hat
+ Name: Ship Captain Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 367
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,1;
+ bonus bLongAtkRate,7;
+ bonus bMaxHP,100;
+ - Id: 5360
+ AegisName: Whikebain_Ears
+ Name: Hyuke's Black Cat Ears
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 368
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bFlee,10;
+ bonus bCritical,3;
+ bonus bCritAtkRate,10;
+ bonus bDefRate,-50;
+ bonus bDef2Rate,-50;
+ - Id: 5361
+ AegisName: Gang_Scarf
+ Name: Gangster Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 60
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bBaseAtk,5;
+ if (BaseJob == Job_Rogue)
+ skill "RG_GANGSTER",1;
+ - Id: 5362
+ AegisName: Ninja_Scroll
+ Name: Ninja Scroll
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 60
+ View: 370
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 5363
+ AegisName: Helm_Of_Abyss
+ Name: Helm Of Abyss
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 371
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus2 bSubClass,Class_Boss,10;
+ - Id: 5364
+ AegisName: Dark_Snake_Lord_Hat
+ Name: Evil Snake Lord Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 372
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,2;
+ - Id: 5365
+ AegisName: Fried_Egg
+ Name: Magnolia Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 373
+ Script: |
+ bonus2 bResEff,Eff_Stun,500;
+ skill "HT_FLASHER",1;
+ - Id: 5366
+ AegisName: Hat_0f_King
+ Name: Love Dad Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 374
+ Script: |
+ bonus bAllStats,5;
+ - Id: 5367
+ AegisName: Hyegun_Hat
+ Name: Hyegun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 375
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,10;
+ - Id: 5368
+ AegisName: White_Wing
+ Name: White Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12280,300;
+ - Id: 5369
+ AegisName: Dark_Wing
+ Name: Dark Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12279,300;
+ - Id: 5370
+ AegisName: Orchid_Hairband
+ Name: Orchid Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 376
+ Script: |
+ bonus bInt,1;
+ - Id: 5371
+ AegisName: Hat_Of_Judge
+ Name: Judge Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 377
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,1;
+ bonus bMaxSP,30;
+ - Id: 5372
+ AegisName: Drooping_White_Kitty
+ Name: Koneko Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 378
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ bonus bDelayRate,-3;
+ bonus bMatkRate,3;
+ bonus bMaxSPrate,3;
+ bonus bMdef,3;
+ - Id: 5373
+ AegisName: Darkness_Helm
+ Name: Dark Randgris Helm
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 379
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,3;
+ bonus bMdef,1;
+ - Id: 5374
+ AegisName: L_Magestic_Goat
+ Name: Gigantic Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 380
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,12;
+ bonus2 bAddRace,RC_Player_Human,12;
+ bonus bBaseAtk,(JobLevel*2)/7;
+ - Id: 5375
+ AegisName: L_Orc_Hero_Helm
+ Name: Orc Hero Headdress
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 381
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;
+ - Id: 5376
+ AegisName: Satanic_Chain_P
+ Name: Flying Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 382
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMaxSP,120;
+ bonus2 bAddEff2,Eff_Curse,300;
+ - Id: 5377
+ AegisName: Antique_Pipe
+ Name: Gentleman's Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 383
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 5378
+ AegisName: Rabbit_Ear_Hat
+ Name: Bunny Top Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 384
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,3;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;
+ - Id: 5379
+ AegisName: Balloon_Hat
+ Name: Tam
+ Type: Armor
+ Weight: 800
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 385
+ Script: |
+ bonus bMdef,2;
+ bonus bMatkRate,2+(getrefine()/2);
+ - Id: 5380
+ AegisName: Fish_Head_Hat
+ Name: Fish Head Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 386
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;
+ - Id: 5381
+ AegisName: Santa_Poring_Hat
+ Name: Santa Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 387
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,2;
+ bonus2 bAddEle,Ele_Dark,3;
+ bonus2 bSubEle,Ele_Dark,3;
+ - Id: 5382
+ AegisName: Bell_Ribbon
+ Name: Bell Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 388
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,1;
+ skill "AL_ANGELUS",1;
+ UnEquipScript: |
+ sc_end SC_ANGELUS;
+ - Id: 5383
+ AegisName: Hunting_Cap
+ Name: Hunter's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 389
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5384
+ AegisName: Santa_Hat_1
+ Name: Twin Pompom By JB
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 390
+ Script: |
+ bonus bLuk,3;
+ skill "WZ_ESTIMATION",1;
+ bonus3 bAutoSpell,"AL_INCAGI",1,500;
+ - Id: 5385
+ AegisName: Yoyo_Hat
+ Name: Yoyo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 391
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "TF_HIDING", 1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5386
+ AegisName: Ayam_
+ Name: Ayam
+ Type: Armor
+ Weight: 70
+ Defense: 7
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 228
+ Trade:
+ Override: 100
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,7;
+ bonus bFlee,7;
+ bonus2 bAddMonsterDropItem,12198,200;
+ - Id: 5387
+ AegisName: Neko_Mimi_Kafra
+ Name: Neko Mimi Kafra
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 392
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 5388
+ AegisName: Snake_Head
+ Name: Snake Head Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 393
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ - Id: 5389
+ AegisName: Angel_Spirit
+ Name: Angel Spirit
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 394
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus bHit,15;
+ - Id: 5390
+ AegisName: Santa_Hat_2
+ Name: Frozen Twin Pompom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 395
+ Script: |
+ bonus2 bResEff, Eff_Freeze, 3000;
+ - Id: 5391
+ AegisName: Toast_C
+ Name: Toast
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ View: 188
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bAddMonsterDropItem,617,10;
+ - Id: 5392
+ AegisName: Louyang_Cap
+ Name: Luoyang NewYear Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 396
+ Script: |
+ bonus bLuk,2;
+ - Id: 5393
+ AegisName: Valentine_Hat
+ Name: Love Valentine's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 397
+ Script: |
+ bonus bMaxSPrate, 7;
+ bonus bMaxHPrate, 7;
+ - Id: 5394
+ AegisName: Bubblegum_Lower
+ Name: Bubblegum
+ Type: Armor
+ Locations:
+ Head_Low: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5395
+ AegisName: Tiraya_Bonnet
+ Name: Striped Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 398
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMaxHP,100+(getrefine()*20);
+ bonus bLuk,3;
+ - Id: 5396
+ AegisName: Jasper_Crest
+ Name: Jasper Crest
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 399
+ Script: |
+ bonus bDex,3;
+ bonus bVit,1;
+ - Id: 5397
+ AegisName: Scuba_Mask
+ Name: Scuba Gear
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 400
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubEle,Ele_Water, 10;
+ bonus bUnbreakableHelm, 0;
+ - Id: 5398
+ AegisName: Bone_Head
+ Name: Bone Head
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 85
+ Refineable: true
+ View: 401
+ Script: |
+ bonus bStr,2;
+ bonus bMdef,5;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Bleeding,500;
+ - Id: 5399
+ AegisName: Mandragora_Cap
+ Name: Mandragora Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 85
+ View: 402
+ Script: |
+ bonus bVit,3;
+ bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;
+ - Id: 5400
+ AegisName: Fox_Hat
+ Name: Fox Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 403
+ Script: |
+ bonus bLuk,1;
+ - Id: 5401
+ AegisName: Black_Glasses
+ Name: Black Frame Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 404
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ bonus bUnbreakableHelm, 0;
+ - Id: 5402
+ AegisName: Mischievous_Fairy
+ Name: Mischievous Fairy
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 405
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bUnbreakableHelm, 0;
+ bonus bFlee2, 3;
+ - Id: 5403
+ AegisName: Fish_In_Mouth
+ Name: Fish In Mouth
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 406
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bAddMonsterDropItem,579,500;
+ bonus2 bAddItemHealRate,579,25;
+ - Id: 5404
+ AegisName: Blue_Ribbon
+ Name: Blue Ribbon
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 407
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;
+ - Id: 5405
+ AegisName: Filir_Hat
+ Name: Filir Hat
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ View: 408
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bShortWeaponDamageReturn, 1;
+ - Id: 5406
+ AegisName: Academy_Freshman_Hat
+ Name: Academy Freshman Hat
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 409
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,80;
+ bonus bMaxSP,10;
+ - Id: 5407
+ AegisName: Academy_Graduating_Cap
+ Name: Academy Completion Hat
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 410
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,30;
+ - Id: 5408
+ AegisName: Old_Bandanna
+ Name: Old Bandana
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_Top: true
+ View: 6
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ bonus bCastrate,10;
+ - Id: 5409
+ AegisName: New_Cowboy_Hat
+ Name: Purple Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 411
+ Script: |
+ bonus bInt,2;
+ bonus bVit,2;
+ bonus bMaxSP,50;
+ - Id: 5410
+ AegisName: Bread_Bag2
+ Name: Brown Paperbag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 412
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bResEff, Eff_Stun, 400;
+ bonus2 bSubRace,RC_DemiHuman,4;
+ bonus2 bSubRace,RC_Player_Human,4;
+ - Id: 5411
+ AegisName: White_Snake_Hat
+ Name: White Snake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 413
+ Script: |
+ bonus bDex,2;
+ - Id: 5412
+ AegisName: Sweet_Candy
+ Name: Sweet Candy
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ View: 414
+ Script: |
+ bonus bUnbreakableHelm, 0;
+ - Id: 5413
+ AegisName: Popcorn_Hat
+ Name: Pop Corn Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 415
+ Script: |
+ bonus2 bSubEle,Ele_Wind, 10;
+ - Id: 5414
+ AegisName: Campfire_Hat
+ Name: Camp Fire Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 416
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;
+ - Id: 5415
+ AegisName: Poring_Cake_Cap
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 417
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ bonus bFlee2,5;
+ bonus bAspdRate,5;
+ bonus bCastrate,-5;
+ bonus bDelayRate,-5;
+ - Id: 5416
+ AegisName: Beer_Cap
+ Name: Beer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 18
+ Refineable: true
+ View: 418
+ Script: |
+ bonus bFlee2,5;
+ skill "SM_RECOVERY",3;
+ skill "MG_SRECOVERY",3;
+ - Id: 5417
+ AegisName: Crown_Parrot
+ Name: Crown Parrots
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 419
+ Script: |
+ bonus bInt,1;
+ bonus2 bResEff,Eff_Silence,10000;
+ bonus3 bAutoSpell,"DC_SCREAM",1,50;
+ - Id: 5418
+ AegisName: Soldier_Hat
+ Name: Legionnaire Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 420
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddClass,Class_All,3;
+ bonus bUseSPrate,10;
+ - Id: 5419
+ AegisName: Evolved_Leaf
+ Name: Leaves Of Grass
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 57
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Plant,5;
+ - Id: 5420
+ AegisName: Mask_Of_Ifrit
+ Name: Mask Of Ifrit
+ Type: Armor
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 421
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus2 bSubEle,Ele_Water,-10;
+ skill "MG_SIGHT",1;
+ bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50;
+ bonus3 bAutoSpell,"MG_FIREBOLT",3,50;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 5421
+ AegisName: Ifrit's_Ear
+ Name: Ears Of Ifrit
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 422
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bMdef,3;
+ bonus2 bSkillAtk,"MG_FIREBOLT",2;
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",2;
+ bonus2 bSkillAtk,"WZ_METEOR",2;
+ bonus2 bSkillAtk,"SM_BASH",2;
+ bonus2 bSkillAtk,"SM_MAGNUM",2;
+ bonus2 bSkillAtk,"KN_PIERCE",2;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Water,-5;
+ - Id: 5422
+ AegisName: Linguistic_Book_Cap
+ Name: Linguistic Book Hat
+ Type: Armor
+ Buy: 20
+ Weight: 70
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 423
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 5423
+ AegisName: Lovecap_China
+ Name: I Love China
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 5
+ Locations:
+ Head_Top: true
+ View: 424
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5424
+ AegisName: Fanta_Orange_Can
+ Name: Fanta Orange Can Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 425
+ - Id: 5425
+ AegisName: Fanta_Grape_Can
+ Name: Fanta Grape Can Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 426
+ - Id: 5426
+ AegisName: Karada_Meguri_Tea_Hat
+ Name: Karada Meguricha Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 427
+ Script: |
+ bonus bLuk,1;
+ - Id: 5427
+ AegisName: Royal_Milk_Tea_Hat
+ Name: Black Tea Kochakaden Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 428
+ Script: |
+ bonus bAgi,1;
+ - Id: 5428
+ AegisName: Bread_Bag1
+ Name: RWC Anniversary Bread Envelope
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 429
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,12;
+ bonus2 bSubRace,RC_Player_Human,12;
+ - Id: 5429
+ AegisName: Bogy_Cap
+ Name: Bogy Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 430
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bHPrecovRate, 5;
+ bonus bSPrecovRate, 5;
+ - Id: 5430
+ AegisName: Sacred_Torch_Coronet
+ Name: Torch Cap
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 431
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,20;
+ skill "MG_FIREBOLT",5;
+ - Id: 5431
+ AegisName: Chicken_Hat
+ Name: Chicken Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 432
+ Script: |
+ bonus3 bAutoSpell,"MC_LOUD",1,30;
+ bonus bAspdRate,5;
+ - Id: 5432
+ AegisName: Brazil_Baseball_Cap
+ Name: bRO 4th Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 433
+ Script: |
+ if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24)
+ bonus bAllStats, 4;
+ - Id: 5433
+ AegisName: Golden_Wreath
+ Name: Golden Laurel
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 434
+ - Id: 5435
+ AegisName: Coke_Hat
+ Name: Red Minstrel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 436
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,80;
+ bonus bMdef,3;
+ if (getrefine()>5) {
+ bonus bMdef,getrefine()-5;
+ bonus bMaxSP,(getrefine()-5)*10;
+ }
+ - Id: 5436
+ AegisName: Bride's_Corolla
+ Name: Bride's Corolla
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 437
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,2;
+ - Id: 5437
+ AegisName: Flower_Of_Fairy
+ Name: Fairy Flower
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 438
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_Insect,5;
+ - Id: 5438
+ AegisName: Fillet_Green
+ Name: Cute Green Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 439
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5439
+ AegisName: Fillet_Red
+ Name: Cute Red Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 440
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5440
+ AegisName: Fillet_Blue
+ Name: Cute Blue Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 441
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5441
+ AegisName: Fillet_White
+ Name: Cute White Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 442
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5442
+ AegisName: Necktie
+ Name: Necktie
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 443
+ Script: |
+ bonus bVit,1;
+ bonus bHit,-5;
+ bonus bUseSPrate,5;
+ - Id: 5443
+ AegisName: Status_Of_Baby_Angel
+ Name: Statue Of Baby Angel
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 444
+ Script: |
+ bonus bMdef,2;
+ bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;
+ - Id: 5444
+ AegisName: Hair_Brush
+ Name: Hair Brush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 445
+ Script: |
+ bonus bCritical,6;
+ - Id: 5445
+ AegisName: Candy_Cane_In_The_Mouth
+ Name: Candy Cane In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 446
+ Script: |
+ bonus bMaxSP,5;
+ - Id: 5446
+ AegisName: Cat_Foot_Hairpin
+ Name: Catfoot Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 447
+ Script: |
+ bonus bFlee,5;
+ bonus bFlee2,3;
+ - Id: 5447
+ AegisName: Frog_Cap
+ Name: Frog Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 448
+ Script: |
+ bonus bMdef,1;
+ bonus2 bAddRace,RC_Insect,12;
+ bonus2 bMagicAddRace,RC_Insect,12;
+ - Id: 5448
+ AegisName: Solo_Play_Box1
+ Name: Soloplay Box1
+ Type: Armor
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 449
+ - Id: 5449
+ AegisName: Solo_Play_Box2
+ Name: Soloplay Box2
+ Type: Armor
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 450
+ - Id: 5450
+ AegisName: Sun_Cap
+ Name: Solar Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 451
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5451
+ AegisName: Dragonhelm_Gold
+ Name: RWC 2008 Dragon Helm Gold
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 452
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus bAllStats,3;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5452
+ AegisName: Dragonhelm_Silver
+ Name: RWC 2008 Dragon Helm Silver
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 453
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,7;
+ bonus bAllStats,2;
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 5453
+ AegisName: Dragonhelm_Copper
+ Name: RWC 2008 Dragon Helm Copper
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 454
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bAllStats,2;
+ bonus2 bAddRace,RC_DemiHuman,1;
+ bonus2 bAddRace,RC_Player_Human,1;
+ - Id: 5454
+ AegisName: Dog_Cap_
+ Name: Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 234
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";
+ - Id: 5455
+ AegisName: Geographer_Band_
+ Name: Decorative Geographer
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 238
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpell,"AL_HEAL",5,50;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;
+ - Id: 5456
+ AegisName: Vacation_Hat_
+ Name: Summer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 315
+ Script: |
+ bonus bVit,5;
+ bonus bHPrecovRate,20;
+ bonus bSPrecovRate,15;
+ - Id: 5457
+ AegisName: Spring_Rabbit_Hat
+ Name: Moon Rabbit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 455
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,3;
+ bonus bBaseAtk,5;
+ bonus bMatkRate,5;
+ if (getrefine()>4) {
+ bonus bBaseAtk,getrefine()-4;
+ bonus bMatkRate,getrefine()-4;
+ }
+ - Id: 5458
+ AegisName: Pinwheel_Cap
+ Name: Pinwheel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 456
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 5459
+ AegisName: Drooping_Bunny_Chusuk
+ Name: Drooping Bunny
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5460
+ AegisName: Adv_Dragon_Skull
+ Name: Evolved Dragon Skull Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 7
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 457
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 2;
+ bonus bMaxHPrate, 3;
+ - Id: 5461
+ AegisName: Adv_Whisper_Mask
+ Name: Evolved Whisper Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 458
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubEle,Ele_Ghost, 20;
+ - Id: 5462
+ AegisName: Spiked_Scarf
+ Name: Spiked Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 459
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,1;
+ bonus2 bAddRace,RC_DemiHuman,1;
+ bonus2 bAddRace,RC_Player_Human,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 5463
+ AegisName: Rainbow_Scarf
+ Name: Rainbow Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 460
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ bonus bMatkRate,1;
+ - Id: 5464
+ AegisName: Zaha_Doll_Hat
+ Name: Zaha Doll Hat
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 461
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ skill "PR_MAGNIFICAT", 3;
+ - Id: 5476
+ AegisName: Hairband_Of_Grandpeco
+ Name: Grand Peco Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 473
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus bMaxHPrate,-10;
+ bonus2 bAddRace2,RC2_Orc,15;
+ - Id: 5477
+ AegisName: Bro_Flag
+ Name: Brazilian Flag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 474
+ Script: |
+ skill "SM_BASH", 1;
+ - Id: 5478
+ AegisName: Classic_Hat
+ Name: Classic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 475
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bMaxHP,300;
+ - Id: 5479
+ AegisName: Shaman's_Hair_Ornament
+ Name: Shaman's Hair Decoration
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 476
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxHP,50;
+ bonus2 bSubEle,Ele_Neutral,5;
+ - Id: 5480
+ AegisName: Bizofnil_Wing_Deco
+ Name: Bijofnil Wings
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 477
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAllStats,2;
+ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;
+ - Id: 5481
+ AegisName: Hermose_Cap
+ Name: Hermode Cap
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 478
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus bBaseAtk,-20;
+ bonus bMatkRate,-10;
+ - Id: 5482
+ AegisName: Dark_Knight_Mask
+ Name: Dark Knight Mask
+ Type: Armor
+ Weight: 3000
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 479
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,3;
+ - Id: 5483
+ AegisName: Odin_Mask
+ Name: Odin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 480
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bHit,-10;
+ bonus2 bAddRace,RC_DemiHuman,6;
+ bonus2 bAddRace,RC_Player_Human,6;
+ - Id: 5485
+ AegisName: Tiger_Face
+ Name: Tiger Face
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 483
+ Script: |
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bAddRace,RC_Brute,5;
+ bonus2 bMagicAddRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ - Id: 5486
+ AegisName: J_Anniversary_Hat
+ Name: Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 395
+ Script: |
+ bonus bAllStats, 2;
+ - Id: 5487
+ AegisName: J_Poringcake_Hat
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 417
+ Script: |
+ bonus bLuk,2;
+ - Id: 5488
+ AegisName: J_Twin_Santahat
+ Name: Twin Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 390
+ Script: |
+ bonus bLuk,1;
+ bonus bMdef,1;
+ - Id: 5489
+ AegisName: Love_Daddy
+ Name: Love Daddy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 484
+ Script: |
+ bonus bDex,2;
+ - Id: 5490
+ AegisName: Anubis_Helm
+ Name: Anubis Helm
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 485
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubClass,Class_Boss,10;
+ bonus bHealpower2,10;
+ bonus bAddItemHealRate,10;
+ - Id: 5491
+ AegisName: Hat_Of_Outlaw
+ Name: Bandit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 486
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bSubEle,Ele_Fire, 10;
+ - Id: 5492
+ AegisName: Boy's_Cap_I
+ Name: Student Cap
+ Type: Armor
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 102
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5493
+ AegisName: Ulle_Cap_I
+ Name: Ulle's Cap
+ Type: Armor
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 254
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,1;
+ - Id: 5494
+ AegisName: Spinx_Helm_I
+ Name: Sphinx Hat
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ View: 137
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,5;
+ - Id: 5495
+ AegisName: Power_Of_Thor
+ Name: Power Of Thor
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 493
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,3;
+ bonus bFlee,5;
+ - Id: 5496
+ AegisName: Dice_Hat
+ Name: Dice Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 494
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,4;
+ - Id: 5497
+ AegisName: King_Tiger_Doll_Hat
+ Name: King Tiger Doll Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 495
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 5498
+ AegisName: Wondering_Wolf_Helm
+ Name: Wandering Wolf Helm
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 490
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,5;
+ bonus bFlee,10;
+ - Id: 5499
+ AegisName: Pizza_Hat
+ Name: Pizza Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Locations:
+ Head_Top: true
+ View: 487
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ skill "SM_PROVOKE", 1;
+ - Id: 5500
+ AegisName: Icecream_Hat
+ Name: Icecream Hat
+ Type: Armor
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 488
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,3;
+ skill "MG_FROSTDIVER",3;
+ - Id: 5501
+ AegisName: Pirate's_Pride
+ Name: Pirate's Pride
+ Type: Armor
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 496
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace2,RC2_Ninja,5;
+ bonus2 bSubRace2,RC2_Ninja,5;
+ - Id: 5502
+ AegisName: Necromencer's_Hood
+ Name: Necromancer's Hood
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 491
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1;
+ - Id: 5503
+ AegisName: Rabbit_Magic_Hat
+ Name: Magic Rabit Hat
+ Type: Armor
+ Weight: 800
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 497
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,2;
+ bonus bMdef,1;
+ bonus bMaxSP,50;
+ bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20;
+ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20;
+ bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20;
+ - Id: 5504
+ AegisName: China_Wedding_Veil
+ Name: Wedding Weil
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 489
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 5505
+ AegisName: Asara_Fairy_Hat
+ Name: Asara Fairy Hat
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 492
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ skill "DC_DONTFORGETME",1;
+ bonus bDex,2;
+ bonus bLuk,2;
+ - Id: 5506
+ AegisName: Blue_Pajamas_Hat
+ Name: Blue Night Cap
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 501
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatkRate,5;
+ - Id: 5507
+ AegisName: Pink_Pajamas_Hat
+ Name: Pink Night Cap
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 502
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatkRate,5;
+ - Id: 5508
+ AegisName: Shark_Hat
+ Name: Shark Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 503
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,2;
+ bonus bMdef,1;
+ bonus2 bAddEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Water,10;
+ - Id: 5509
+ AegisName: Sting_Hat
+ Name: Sting hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 504
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bMdef,3;
+ bonus2 bAddEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;
+ - Id: 5510
+ AegisName: Shower_Cap
+ Name: Shower Cap
+ Type: Armor
+ Buy: 20
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 507
+ Script: |
+ bonus bMdef,3;
+ bonus bFlee,3;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bSubRace,RC_Fish,10;
+ - Id: 5511
+ AegisName: Samambaia
+ Name: Samambaia
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 508
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bSPrecovRate,8;
+ - Id: 5512
+ AegisName: Aquarius_Diadem
+ Name: Aquarius Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 509
+ Script: |
+ bonus bStr,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Wind, 5;
+ if (getrefine()>6) {
+ bonus bDef, 1;
+ bonus bBaseAtk,15;
+ }
+ - Id: 5513
+ AegisName: Aquarius_Crown
+ Name: Aquarius Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 510
+ Script: |
+ bonus bStr,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Wind, 5;
+ if (getrefine()>6) {
+ bonus bDef, 1;
+ bonus bBaseAtk,15;
+ }
+ - Id: 5514
+ AegisName: Pisces_Diadem
+ Name: Pisces Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 511
+ Script: |
+ bonus bInt,2;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Water, 5;
+ if (getrefine()>6) {
+ bonus bDef, 1;
+ bonus bMatkRate,2;
+ }
+ - Id: 5515
+ AegisName: Pisces_Crown
+ Name: Pisces Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 512
+ Script: |
+ bonus bInt,2;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Water, 5;
+ if (getrefine()>6) {
+ bonus bDef, 1;
+ bonus bMatkRate,2;
+ }
+ - Id: 5516
+ AegisName: Hawk_Eyes01
+ Name: hawk Eyes
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Classes:
+ Upper: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 60
+ View: 23
+ Script: |
+ bonus bDex,1;
+ - Id: 5517
+ AegisName: Hawk_Eyes02
+ Name: Hawk Eyes
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 60
+ View: 23
+ Script: |
+ bonus bDex,1;
+ - Id: 5518
+ AegisName: L_Magestic_Goat2
+ Name: Gigantic Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 513
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,12;
+ bonus2 bSubRace,RC_Player_Human,12;
+ bonus bBaseAtk,(JobLevel*2)/7;
+ - Id: 5519
+ AegisName: Peacock_Feather
+ Name: Peacock Feather
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 514
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,2;
+ - Id: 5520
+ AegisName: Rabbit_Earplug
+ Name: Rabbit Earplugs
+ Type: Armor
+ Weight: 400
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 515
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ bonus bMatkRate,4;
+ - Id: 5521
+ AegisName: Angry_Mouth_C
+ Name: Angry Mouth
+ Type: Armor
+ Locations:
+ Head_Low: true
+ View: 194
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDelayRate,-3;
+ - Id: 5522
+ AegisName: Fanta_Zero_Lemon_Hat
+ Name: Fanta Zero Lemon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 516
+ - Id: 5523
+ AegisName: Sakura_Mist_Hat
+ Name: Sakura Mist Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 517
+ Script: |
+ bonus bDex,1;
+ - Id: 5524
+ AegisName: Sakura_Milk_Tea_Hat
+ Name: Sakura Milk Tea Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 518
+ Script: |
+ bonus bVit,1;
+ - Id: 5525
+ AegisName: First_Leaf_Tea_Hat
+ Name: Flower Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 519
+ Script: |
+ bonus bMaxHP,80;
+ bonus bMaxSP,20;
+ - Id: 5526
+ AegisName: Lady_Tanee_Doll
+ Name: Tanigumi Girl Doll
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 520
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ bonus bFlee,3;
+ bonus2 bSubEle,Ele_Wind, 5;
+ bonus2 bAddMonsterDropItem, 513, 200;
+ - Id: 5527
+ AegisName: Lunatic_Hat
+ Name: Lunatic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 521
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,5;
+ bonus bMdef,2;
+ bonus bFlee2,5;
+ bonus2 bAddMonsterDropItem,622,50;
+ - Id: 5528
+ AegisName: King_Frog_Hat
+ Name: Frog King Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 522
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 5529
+ AegisName: Evil's_Bone_Hat
+ Name: Satanic Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 523
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubEle,Ele_Neutral,5;
+ skill "WZ_FROSTNOVA",1;
+ - Id: 5530
+ AegisName: Raven_Cap
+ Name: Raven Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 524
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 5531
+ AegisName: B_Dragon_Hat
+ Name: Baby Dragon Hat
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 525
+ Script: |
+ bonus bDex,2;
+ .@bonus = max(getskilllv("TF_DOUBLE"), 5);
+ skill "TF_DOUBLE",.@bonus;
+ bonus bDoubleRate,.@bonus * 5;
+ - Id: 5532
+ AegisName: Pirate_Dagger_J
+ Name: Pirate Dagger
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ Refineable: true
+ View: 327
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bShortWeaponDamageReturn,1;
+ - Id: 5533
+ AegisName: Emperor_Wreath_J
+ Name: Emperor Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 261
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5535
+ AegisName: Side_Cap
+ Name: Side Cap
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 529
+ Script: |
+ bonus bVit,1;
+ bonus bDex,1;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 5536
+ AegisName: Spare_Card
+ Name: Spare Card
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 526
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,6187,1000;
+ - Id: 5537
+ AegisName: Quati_Hat
+ Name: Kwati Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 527
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,3;
+ - Id: 5538
+ AegisName: Tucan_Hat
+ Name: Tucan Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 528
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,3;
+ - Id: 5539
+ AegisName: Jaguar_Hat
+ Name: Jaguar Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 25
+ Refineable: true
+ View: 530
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bMdef,2;
+ skill "MC_LOUD", 1;
+ - Id: 5540
+ AegisName: Freyja_SCirclet7
+ Name: Freyja SCirclet7
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5541
+ AegisName: Freyja_SCirclet30
+ Name: Freyja SCirclet30
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5542
+ AegisName: Freyja_SCirclet60
+ Name: Freyja SCirclet60
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5543
+ AegisName: Freyja_SCirclet90
+ Name: Freyja SCirclet90
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5544
+ AegisName: Time_Keeper_Hat
+ Name: Time Keeper Hat
+ Type: Armor
+ Buy: 30000
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 240
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ - Id: 5545
+ AegisName: Aries_Diadem
+ Name: Aries Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 531
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,2;
+ bonus2 bSubEle,Ele_fire,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bVit,1;
+ }
+ - Id: 5546
+ AegisName: Aries_Crown
+ Name: Aries Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 532
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bVit,2;
+ bonus2 bSubEle,Ele_fire,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bVit,1;
+ }
+ - Id: 5547
+ AegisName: RJC_Katusa
+ Name: RJC Katusa Flower
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 533
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R);
+ bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R);
+ bonus2 bCastrate, "WZ_HEAVENDRIVE", -25;
+ bonus2 bCastrate, "WZ_EARTHSPIKE", -25;
+ ;
+ - Id: 5548
+ AegisName: Scarlet_Rose
+ Name: Scarlet Rose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 534
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 5549
+ AegisName: Taurus_Diadem
+ Name: Taurus Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 535
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,2;
+ bonus bDelayRate,-2;
+ bonus2 bSubEle,Ele_earth,5;
+ if (getrefine()>6) {
+ bonus bDex,1;
+ bonus bMatkRate,1;
+ }
+ - Id: 5550
+ AegisName: Taurus_Crown
+ Name: Taurus Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 536
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bDex,2;
+ bonus bDelayRate,-2;
+ bonus2 bSubEle,Ele_earth,5;
+ if (getrefine()>6) {
+ bonus bDex,1;
+ bonus bMatkRate,1;
+ }
+ - Id: 5552
+ AegisName: Fest_Lord_Circlet
+ Name: Festival Grand Circlet
+ Type: Armor
+ Defense: 8
+ Locations:
+ Head_Top: true
+ View: 93
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bMdef,3;
+ - Id: 5553
+ AegisName: Fest_Bunny_Band
+ Name: Festival Bunny Band
+ Type: Armor
+ Defense: 7
+ Locations:
+ Head_Top: true
+ View: 15
+ Script: |
+ bonus bMdef,4;
+ bonus2 bSubRace,RC_DemiHuman,9;
+ bonus2 bSubRace,RC_Player_Human,9;
+ - Id: 5554
+ AegisName: Octopus_Hat
+ Name: Octopus Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 538
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus3 bAutoSpell,"SM_PROVOKE",5,10;
+ bonus bUnbreakableHelm;
+ - Id: 5555
+ AegisName: Leaf_Cat_Hat
+ Name: Leaf Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 539
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10;
+ - Id: 5556
+ AegisName: Fur_Seal_Hat
+ Name: Seal Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 540
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30;
+ - Id: 5557
+ AegisName: Wild_Rose_Hat
+ Name: Wild Rose Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 541
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,3;
+ - Id: 5558
+ AegisName: Saci_Hat
+ Name: Luxury Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 542
+ Script: |
+ bonus3 bAddMonsterDropItem,510,RC_Plant,500;
+ - Id: 5559
+ AegisName: Piece_Of_White_Cloth_E
+ Name: Piece Of White Cloth
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 543
+ - Id: 5560
+ AegisName: Bullock_Helm_J
+ Name: Bullock Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 322
+ Script: |
+ bonus bMaxHP,100;
+ bonus bNoKnockback;
+ bonus2 bSubEle,Ele_Neutral,-20;
+ bonus2 bSubEle,Ele_Fire,-20;
+ bonus2 bSubEle,Ele_Water,-20;
+ bonus2 bSubEle,Ele_Wind,-20;
+ bonus2 bSubEle,Ele_Earth,-20;
+ bonus2 bSubEle,Ele_Dark,-20;
+ bonus2 bSubEle,Ele_Holy,-20;
+ bonus2 bSubEle,Ele_Ghost,-20;
+ - Id: 5561
+ AegisName: Rabbit_Magic_Hat_J
+ Name: Magic Rabbit Hat
+ Type: Armor
+ Weight: 800
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 497
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,50;
+ bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3;
+ bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3;
+ bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;
+ - Id: 5562
+ AegisName: Good_Wedding_Veil_J
+ Name: Luxurious Wedding Veil
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 489
+ Script: |
+ bonus bMdef,10;
+ bonus bCastRate,-3;
+ bonus bUseSPrate,-5;
+ - Id: 5564
+ AegisName: Crown_Of_Deceit
+ Name: Crown of Deceit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 85
+ Refineable: true
+ View: 544
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,4;
+ bonus bCastRate,-10;
+ - Id: 5565
+ AegisName: Dragon_Arhat_Mask
+ Name: Dragon Arhat Mask
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 545
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ - Id: 5566
+ AegisName: Tiger_Arhat_Mask
+ Name: Tiger Arhat Mask
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 546
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ - Id: 5567
+ AegisName: Bright_Fury
+ Name: Bright Fury
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 548
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bAspdRate,2;
+ - Id: 5568
+ AegisName: Rabbit_Bonnet
+ Name: Rabbit Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 549
+ Script: |
+ bonus bInt,2;
+ - Id: 5569
+ AegisName: Gemini_Diadem
+ Name: Gemini Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 550
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ bonus bMatkRate,2;
+ if (getrefine()>6) {
+ bonus bMdef,7;
+ bonus bMAtkRate,8;
+ bonus2 bSubEle,Ele_Wind,5;
+ }
+ - Id: 5570
+ AegisName: Gemini_Crown
+ Name: Gemini Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 551
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ bonus bBaseAtk,2;
+ bonus bMdef,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bMatk,15;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Wind,5;
+ }
+ - Id: 5572
+ AegisName: Savage_Baby_Hat
+ Name: Savage Babe Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 553
+ Script: |
+ bonus bVit,2;
+ - Id: 5573
+ AegisName: Bogy_Horn
+ Name: Dokebi Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 554
+ - Id: 5574
+ AegisName: Pencil_In_Mouth
+ Name: Well-Chewed Pencil
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 555
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bdex,2;
+ bonus bHitRate,3;
+ - Id: 5575
+ AegisName: Onigiri_Hat
+ Name: Rice Ball Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 556
+ - Id: 5577
+ AegisName: Dark_Knight_MaskB
+ Name: Dark Knight Mask
+ Type: Armor
+ Weight: 3000
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 479
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,3;
+ - Id: 5578
+ AegisName: Voyage_Hat
+ Name: Voyage_Hat
+ Type: Armor
+ Buy: 200
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 236
+ Script: |
+ bonus bAgi,2;
+ - Id: 5579
+ AegisName: Wanderer's_Sakkat
+ Name: Wanderer's Sakkat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 558
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 5581
+ AegisName: Cancer_Diadem
+ Name: Cancer Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 560
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bInt,2;
+ bonus2 bSubEle,Ele_water, 5;
+ if (getrefine()>6) {
+ bonus bMdef,1;
+ bonus bHealPower, 3;
+ bonus bMatkRate,2;
+ }
+ - Id: 5582
+ AegisName: Cancer_Crown
+ Name: Cancer Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 561
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bSubEle,Ele_water, 5;
+ if (getrefine()>6) {
+ bonus bDef, 1;
+ bonus bBaseAtk,15;
+ bonus bFlee,10;
+ }
+ - Id: 5583
+ AegisName: Para_Team_Hat
+ Name: Eden Team Hat
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 12
+ Refineable: true
+ View: 465
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5584
+ AegisName: Majestic_Evil_Horn
+ Name: Majestic Evil Horns
+ Type: Armor
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 562
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus2 bSubRace,RC_Demon,3;
+ bonus2 bHPDrainRate,3,15;
+ bonus2 bSPDrainRate,1,7;
+ - Id: 5585
+ AegisName: Rune_Hairband
+ Name: Rune Cloth Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 564
+ - Id: 5586
+ AegisName: Mosquito_Coil
+ Name: Mosquito Coil
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 563
+ - Id: 5587
+ AegisName: Mosquito_Coil_1Use
+ Name: Mosquito Coil
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 563
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5590
+ AegisName: K_Poring_Cake_Cap
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 417
+ - Id: 5592
+ AegisName: Sigrun's_Wing
+ Name: Sigrun's Wings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 80
+ View: 568
+ Script: |
+ if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker))
+ bonus bStr,1;
+ else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || class == Job_Ninja || class == Job_Soul_Linker)
+ bonus bInt,1;
+ else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger)
+ bonus bDex,1;
+ else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) {
+ bonus bMaxHP,80;
+ bonus bMaxSP,30;
+ }
+ - Id: 5593
+ AegisName: K_Rabbit_Bonnet
+ Name: Rabbit Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 549
+ - Id: 5594
+ AegisName: Donut_In_Mouth
+ Name: Donut In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 569
+ - Id: 5596
+ AegisName: 4Leaf_Clover_In_Mouth
+ Name: 4Leaf Clover In Mouth
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 571
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,2;
+ - Id: 5597
+ AegisName: Bubble_Gum_In_Mouth
+ Name: Bubble Gum In Mouth
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 572
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,2;
+ - Id: 5600
+ AegisName: Br_Twin_Ribbon
+ Name: Brazil Twin Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 575
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,1;
+ - Id: 5603
+ AegisName: RTC_Winner_Only
+ Name: RTC First Place
+ Type: Armor
+ Weight: 250
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 577
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 3;
+ - Id: 5604
+ AegisName: RTC_Second_Best
+ Name: RTC Second Place
+ Type: Armor
+ Weight: 250
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 578
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 2;
+ - Id: 5605
+ AegisName: RTC_Third_Best
+ Name: RTC Third Place
+ Type: Armor
+ Weight: 250
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 579
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 1;
+ - Id: 5653
+ AegisName: Darkness_Helm_J
+ Name: Darkness Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 586
+ - Id: 5654
+ AegisName: Holy_Marching_Hat_J
+ Name: Holy Marching Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 587
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,2;
+ bonus3 bAutoSpell,"PR_ASPERSIO",2,30;
+ - Id: 5658
+ AegisName: Imp_Hat
+ Name: Imp Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 589
+ Script: |
+ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;
+ - Id: 5659
+ AegisName: Sleepr_Hat
+ Name: Sleeper Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 590
+ Script: |
+ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;
+ - Id: 5660
+ AegisName: Gryphon_Hat
+ Name: Gryphon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 591
+ Script: |
+ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5;
+ - Id: 5664
+ AegisName: Filir_Wing
+ Name: Filir's Pinions
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 595
+ Script: |
+ bonus bAspdRate,2;
+ bonus bCastRate,-2;
+ - Id: 5665
+ AegisName: Shaman_Hat
+ Name: Shaman Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 596
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,3;
+ bonus2 bSubEle,Ele_Water,3;
+ bonus2 bSubEle,Ele_Earth,3;
+ bonus2 bSubEle,Ele_Fire,3;
+ bonus2 bSubEle,Ele_Wind,3;
+ bonus2 bSubEle,Ele_Poison,3;
+ bonus2 bSubEle,Ele_Holy,3;
+ bonus2 bSubEle,Ele_Dark,3;
+ bonus2 bSubEle,Ele_Ghost,3;
+ bonus2 bSubEle,Ele_Undead,3;
+ - Id: 5666
+ AegisName: Golden_Crown
+ Name: Golden Crown
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 597
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ - Id: 5667
+ AegisName: Skull_Hood
+ Name: Skull Hood
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 598
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 5668
+ AegisName: Weird_Pumpkin_Hat
+ Name: Weird Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 206
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 5671
+ AegisName: Drooping_Morocc_Minion
+ Name: Drooping Morocc Minion
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 600
+ - Id: 5681
+ AegisName: F_Ribbon_Green
+ Name: Green Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 244
+ Script: |
+ bonus bMdef,3;
+ - Id: 5682
+ AegisName: Triangle_Rune_Cap
+ Name: Triangle Rune Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 610
+ Script: |
+ bonus bHealPower,2;
+ if (getrefine() > 6) {
+ bonus bMatk,10;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,150,BF_MAGIC,0;
+ }
+ else {
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;
+ }
+ - Id: 5683
+ AegisName: Majestic_Goat_Repl
+ Name: Baphomet Horns
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 41
+ - Id: 5684
+ AegisName: Jewel_Crown_Repl
+ Name: Ornate Crown
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 88
+ - Id: 5685
+ AegisName: Prontera_Army_Cap_Repl
+ Name: Army Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 48
+ - Id: 5686
+ AegisName: Feather_Bonnet_Repl
+ Name: Nice Hat Feather
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 104
+ - Id: 5687
+ AegisName: Viking_Helm_Repl
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 86
+ - Id: 5690
+ AegisName: Red_Wing_Hat
+ Name: Red Wing Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 613
+ Script: |
+ if (getrefine()>6) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ }
+ if (getrefine()>8) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ }
+ - Id: 5691
+ AegisName: Catain_Bandanna
+ Name: Sailor's Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 542
+ Script: |
+ bonus bDex,1;
+ bonus2 bSubEle,Ele_Poison,20;
+ - Id: 5692
+ AegisName: Sea_Cat_Hat
+ Name: Sea Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 539
+ Script: |
+ bonus bDex,1;
+ - Id: 5738
+ AegisName: Snowman_Hat
+ Name: Snowman Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 616
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Water,7;
+ bonus2 bAddMonsterDropItem,530,100;
+ bonus2 bAddMonsterDropItem,12354,300;
+ if (getrefine()>7) {
+ bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0;
+ }
+ else {
+ bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0;
+ }
+ - Id: 5741
+ AegisName: Im_Egg_Shell_Hat
+ Name: Eternal Egg Shell
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 101
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5742
+ AegisName: Rudolf_Santa_Hat
+ Name: Rudolph Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 619
+ Script: |
+ bonus bLuk,1;
+ - Id: 5770
+ AegisName: Splash_Hat
+ Name: Splash Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 349
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }";
+ - Id: 5771
+ AegisName: Family_Hat
+ Name: Family Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 109
+ Script: |
+ bonus bDex,1;
+ bonus bMdef,1;
+ - Id: 5775
+ AegisName: Choco_Donut_In_Mouth
+ Name: Choco Donut In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 653
+ - Id: 5781
+ AegisName: Persika
+ Name: Persika
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 659
+ - Id: 5786
+ AegisName: Ancient_Elven_Ear
+ Name: Ancient Elven Ear
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 665
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 5788
+ AegisName: 3D_Glasses
+ Name: 3D Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ - Id: 5792
+ AegisName: Fish_Pin
+ Name: Fish Pin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 669
+ - Id: 5793
+ AegisName: Ribbon_Of_Life
+ Name: Ribbon Of Life
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 575
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 5794
+ AegisName: 3D_Glasses_
+ Name: 3D Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ - Id: 5796
+ AegisName: Cheer_Scarf
+ Name: Cheer Scarf
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5797
+ AegisName: Cheer_Scarf2
+ Name: Cheer Scarf2
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5798
+ AegisName: Cheer_Scarf3
+ Name: Cheer Scarf3
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5799
+ AegisName: Cheer_Scarf4
+ Name: Cheer Scarf4
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5800
+ AegisName: Blush_Of_Groom
+ Name: Blush of Groom
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Mid: true
+ View: 125
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ - Id: 5801
+ AegisName: Ribbon_Of_Bride
+ Name: Red Tailed Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 167
+ Script: |
+ bonus bAllStats,2;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ if (getskilllv("AL_HEAL") == 10) {
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20;
+ }
+ else {
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20;
+ }
+ - Id: 5802
+ AegisName: Upgrade_Elephant_Hat
+ Name: Upgraded Elephant Hat
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ - Id: 5803
+ AegisName: Flower_Love_Hat
+ Name: Love Flower Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus2 bAddMonsterDropItem,608,100;
+ - Id: 5804
+ AegisName: Pirate_Eyepatch
+ Name: Pirate Eye Bandage
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 13
+ - Id: 5805
+ AegisName: Victorious_Coronet
+ Name: Victorious Coronet
+ Type: Armor
+ Weight: 150
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 43
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,15;
+ bonus bSPrecovRate,5;
+ - Id: 5806
+ AegisName: Poem_Natalia_Hat
+ Name: Poet Natalie's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Top: true
+ View: 67
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5807
+ AegisName: October_Fest_Cap
+ Name: October Fest Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 104
+ - Id: 5808
+ AegisName: Diabolus_Helmet
+ Name: Dark Bacilium
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 364
+ Script: |
+ bonus2 bResEff,Eff_Stone,2000+(getrefine()*200);
+ bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200);
+ bonus2 bResEff,Eff_Stun,2000+(getrefine()*200);
+ - Id: 5809
+ AegisName: Boom_Boom_Hat
+ Name: Boom Boom Hat
+ Type: Armor
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ View: 216
+ Script: |
+ bonus bAllStats,5;
+ - Id: 5810
+ AegisName: Ph.D_Hat_V
+ Name: Ph.D Hat V
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ Script: |
+ bonus bInt,5;
+ bonus bVit,3;
+ bonus bDex,3;
+ - Id: 5811
+ AegisName: Santa_Beard
+ Name: Santa's Beard
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Low: true
+ View: 25
+ - Id: 5812
+ AegisName: Hat_Of_Expert
+ Name: Hat Of Expert
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5815
+ AegisName: Classic_Hat_J
+ Name: Classic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 475
+ Script: |
+ bonus bStr,1;
+ bonus2 bSubSize, 0, 5;
+ bonus2 bSubSize, 1, 5;
+ bonus2 bSubSize, 2, 5;
+ - Id: 5816
+ AegisName: Cowboy_Hat_J
+ Name: Purple Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 411
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bFlee,-5;
+ - Id: 5817
+ AegisName: Valentine_Pledge
+ Name: Valentine Pledge
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMdef,3;
+ - Id: 5818
+ AegisName: Carnival_Hat
+ Name: Carnival Hat
+ Type: Armor
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 505
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 3;
+ - Id: 5819
+ AegisName: Carnival_Circlet
+ Name: Carnival Circlet
+ Type: Armor
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 506
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats, 3;
+ - Id: 5821
+ AegisName: Gold_Tulip_Hairpin
+ Name: Gold Tulip Hairpin
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 499
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,5;
+ - Id: 5822
+ AegisName: Love_Chick_Hat
+ Name: Love Chick Hat
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 500
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,4;
+ bonus bMaxHP,100;
+ bonus bMaxSP,100;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ bonus2 bSubRace,RC_Undead,7;
+ - Id: 5824
+ AegisName: Fools_Day_Hat
+ Name: Fools Day Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 265
+ - Id: 5826
+ AegisName: Valkyrie_Helmet
+ Name: Valkyrie Helmet
+ Type: Armor
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 225
+ Script: |
+ bonus bStr,2;
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus bAgi,2;
+ bonus bMdef,5;
+ - Id: 5827
+ AegisName: Book_File_Hat
+ Name: Book File Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 423
+ - Id: 5828
+ AegisName: Honor_Gold_Ring
+ Name: Honor Gold Ring
+ Type: Armor
+ Weight: 50
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ - Id: 5844
+ AegisName: Loyal_Ring3
+ Name: Loyal Ring3
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5846
+ AegisName: Buzzy_Ball_Gum
+ Name: Buzzy Ball Gum
+ Type: Armor
+ Buy: 50
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 572
+ Script: |
+ bonus bMdef,5;
+ - Id: 5851
+ AegisName: Summer_Knight
+ Name: Summer Knight
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 138
+ - Id: 5856
+ AegisName: Passion_FB_Hat
+ Name: Passion FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 671
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,2;
+ - Id: 5857
+ AegisName: Cool_FB_Hat
+ Name: Cool FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 672
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bVit,2;
+ - Id: 5858
+ AegisName: Victory_FB_Hat
+ Name: Victory FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 673
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ - Id: 5859
+ AegisName: Glory_FB_Hat
+ Name: Glory FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 674
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 9001
+ AegisName: Poring_Egg
+ Name: Poring Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9002
+ AegisName: Drops_Egg
+ Name: Drops Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9003
+ AegisName: Poporing_Egg
+ Name: Poporing Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9004
+ AegisName: Lunatic_Egg
+ Name: Lunatic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9005
+ AegisName: Picky_Egg
+ Name: Picky Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9006
+ AegisName: Chonchon_Egg
+ Name: Chonchon Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9007
+ AegisName: Steel_Chonchon_Egg
+ Name: Steel Chonchon Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9008
+ AegisName: Hunter_Fly_Egg
+ Name: Hunter Fly Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9009
+ AegisName: Savage_Bebe_Egg
+ Name: Savage Babe Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9010
+ AegisName: Baby_Desert_Wolf_Egg
+ Name: Baby Desert Wolf Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9011
+ AegisName: Rocker_Egg
+ Name: Rocker Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9012
+ AegisName: Spore_Egg
+ Name: Spore Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9013
+ AegisName: Poison_Spore_Egg
+ Name: Poison Spore Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9014
+ AegisName: PecoPeco_Egg
+ Name: Peco Peco Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9015
+ AegisName: Smokie_Egg
+ Name: Smokie Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9016
+ AegisName: Yoyo_Egg
+ Name: Yoyo Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9017
+ AegisName: Orc_Warrior_Egg
+ Name: Orc Warrior Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9018
+ AegisName: Munak_Egg
+ Name: Munak Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9019
+ AegisName: Dokkaebi_Egg
+ Name: Dokebi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9020
+ AegisName: Sohee_Egg
+ Name: Sohee Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9021
+ AegisName: Isis_Egg
+ Name: Isis Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9022
+ AegisName: Green_Petite_Egg
+ Name: Green Petite Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9023
+ AegisName: Deviruchi_Egg
+ Name: Deviruchi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9024
+ AegisName: Bapho_Jr._Egg
+ Name: Bapho Jr. Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9025
+ AegisName: Bongun_Egg
+ Name: Bongun Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9026
+ AegisName: Zherlthsh_Egg
+ Name: Zealotus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9027
+ AegisName: Alice_Egg
+ Name: Alice Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9028
+ AegisName: Rice_Cake_Egg
+ Name: Hard Rice Cake
+ Type: Petegg
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 9029
+ AegisName: Santa_Goblin_Egg
+ Name: Christmas Goblin's Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9030
+ AegisName: Chung_E_Egg
+ Name: Green Maiden Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9031
+ AegisName: Spring_Rabbit_Egg
+ Name: Spring Rabbit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9032
+ AegisName: Knife_Goblin_Egg
+ Name: Knife Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9033
+ AegisName: Flail_Goblin_Egg
+ Name: Flail Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9034
+ AegisName: Hammer_Goblin_Egg
+ Name: Hammer Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9035
+ AegisName: Red_Deleter_Egg
+ Name: Red Deleter Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9036
+ AegisName: Diabolic_Egg
+ Name: Diabolic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9037
+ AegisName: Wanderer_Egg
+ Name: Wanderer Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9038
+ AegisName: New_Year_Doll_Egg
+ Name: New Year Doll Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9039
+ AegisName: Bacsojin_Egg
+ Name: Bacsojin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9040
+ AegisName: Civil_Servant_Egg
+ Name: Civil Servant Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9041
+ AegisName: Leaf_Cat_Egg
+ Name: Leaf Cat Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9042
+ AegisName: Loli_Ruri_Egg
+ Name: Loli Ruri Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9043
+ AegisName: Marionette_Egg
+ Name: Marionette Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9044
+ AegisName: Shinobi_Egg
+ Name: Shinobi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9045
+ AegisName: Whisper_Egg
+ Name: Whisper Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9046
+ AegisName: Goblin_Leader_Egg
+ Name: Goblin Leader Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9047
+ AegisName: Wicked_Nymph_Egg
+ Name: Wicked Nymph Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9048
+ AegisName: Miyabi_Ningyo_Egg
+ Name: Miyabi Ningyo Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9049
+ AegisName: Dullahan_Egg
+ Name: Dullahan Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9050
+ AegisName: Medusa_Egg
+ Name: Medusa Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9051
+ AegisName: Stone_Shooter_Egg
+ Name: Stone Shooter Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9052
+ AegisName: Incubus_Egg
+ Name: Incubus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9053
+ AegisName: Golem_Egg
+ Name: Golem Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9054
+ AegisName: Nightmare_Terror_Egg
+ Name: Nightmare Terror Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9055
+ AegisName: Succubus_Egg
+ Name: Succubus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9056
+ AegisName: Imp_Egg
+ Name: Imp Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 10001
+ AegisName: Skull_Helm
+ Name: Skull Helm
+ Type: Petarmor
+ Buy: 20
+ - Id: 10002
+ AegisName: Monster_Oxygen_Mask
+ Name: Monster Oxygen Mask
+ Type: Petarmor
+ Buy: 20
+ - Id: 10003
+ AegisName: Transparent_Headgear
+ Name: Transparent Head Protector
+ Type: Petarmor
+ Buy: 20
+ - Id: 10004
+ AegisName: Pacifier
+ Name: Pacifier
+ Type: Petarmor
+ Buy: 20
+ - Id: 10005
+ AegisName: Wig
+ Name: Wig
+ Type: Petarmor
+ Buy: 20
+ - Id: 10006
+ AegisName: Queen's_Hair_Ornament
+ Name: Queen's Hair Ornament
+ Type: Petarmor
+ Buy: 20
+ - Id: 10007
+ AegisName: Silk_Ribbon
+ Name: Silk Ribbon
+ Type: Petarmor
+ Buy: 20
+ - Id: 10008
+ AegisName: Punisher
+ Name: Punisher
+ Type: Petarmor
+ Buy: 20
+ - Id: 10009
+ AegisName: Wild_Flower
+ Name: Wild Flower
+ Type: Petarmor
+ Buy: 20
+ - Id: 10010
+ AegisName: Battered_Pot
+ Name: Battered Pot
+ Type: Petarmor
+ Buy: 20
+ - Id: 10011
+ AegisName: Stellar_Hairpin
+ Name: Stellar Hairpin
+ Type: Petarmor
+ Buy: 20
+ - Id: 10012
+ AegisName: Tiny_Egg_Shell
+ Name: Tiny Egg Shell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10013
+ AegisName: Backpack
+ Name: Backpack
+ Type: Petarmor
+ Buy: 1500
+ - Id: 10014
+ AegisName: Rocker_Glasses
+ Name: Rocker Glasses
+ Type: Petarmor
+ Buy: 2000
+ - Id: 10015
+ AegisName: Green_Lace
+ Name: Green Lace
+ Type: Petarmor
+ Buy: 20
+ - Id: 10016
+ AegisName: Golden_Bell
+ Name: Golden Bell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10017
+ AegisName: Bark_Shorts
+ Name: Bark Shorts
+ Type: Petarmor
+ Buy: 20
+ - Id: 10018
+ AegisName: Monkey_Circlet
+ Name: Monkey Circlet
+ Type: Petarmor
+ Buy: 20
+ - Id: 10019
+ AegisName: Red_Muffler
+ Name: Red Scarf
+ Type: Petarmor
+ Buy: 20
+ - Id: 10020
+ AegisName: Sword_Of_Grave_Keeper
+ Name: Grave Keeper's Sword
+ Type: Petarmor
+ Buy: 20
+ - Id: 10021
+ AegisName: Round_Hair_Ornament
+ Name: Circular Headgear
+ Type: Petarmor
+ Buy: 20
+ - Id: 10022
+ AegisName: Golden_Earing
+ Name: Gold Earring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10023
+ AegisName: Green_Lucky_Bag
+ Name: Green Jewel Bag
+ Type: Petarmor
+ Buy: 20
+ - Id: 10024
+ AegisName: Fashionable_Glasses
+ Name: Fashion Glasses
+ Type: Petarmor
+ Buy: 20
+ - Id: 10025
+ AegisName: Star_Hairband
+ Name: Hairband Of Stars
+ Type: Petarmor
+ Buy: 20
+ - Id: 10026
+ AegisName: Wine_On_Sleeve
+ Name: Tassel for Durumagi
+ Type: Petarmor
+ Buy: 20
+ - Id: 10027
+ AegisName: Spirit_Chain_
+ Name: Pet Soul Ring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10028
+ AegisName: Nice_Badge
+ Name: Beautiful Badges
+ Type: Petarmor
+ Buy: 20
+ - Id: 10029
+ AegisName: Jade_Trinket
+ Name: Jade Trinket
+ Type: Petarmor
+ Buy: 20
+ - Id: 10030
+ AegisName: Summer_Fan
+ Name: Summer Fan
+ Type: Petarmor
+ Buy: 20
+ - Id: 10031
+ AegisName: Death_Coil
+ Name: Ring Of Death
+ Type: Petarmor
+ Buy: 20
+ - Id: 10032
+ AegisName: Queen's_Coronet
+ Name: Queen's Coronet
+ Type: Petarmor
+ Buy: 20
+ - Id: 10033
+ AegisName: Apro_Hair
+ Name: Afro
+ Type: Petarmor
+ Buy: 20
+ - Id: 10034
+ AegisName: Ball_Mask
+ Name: Masked Ball
+ Type: Petarmor
+ Buy: 20
+ - Id: 10035
+ AegisName: Windup_Spring
+ Name: Spring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10036
+ AegisName: Hell_Horn
+ Name: Horn Of Hell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10037
+ AegisName: Black_Butterfly_Mask
+ Name: Black Butterfly Mask
+ Type: Petarmor
+ Buy: 20
+ - Id: 10038
+ AegisName: Horn_Protector
+ Name: Horn Barrier
+ Type: Petarmor
+ Buy: 20
+ - Id: 13000
+ AegisName: Jujube_Dagger
+ Name: Jujube Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13001
+ AegisName: Dragon_Killer
+ Name: Dragon Killer
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 13002
+ AegisName: Ginnungagap
+ Name: Ginnungagap
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 148
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus2 bAddEff2,Eff_Blind,50;
+ - Id: 13003
+ AegisName: Coward
+ Name: Cowardice Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 52000
+ Weight: 700
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ - Id: 13004
+ AegisName: Coward_
+ Name: Cowardice Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 52000
+ Weight: 700
+ Attack: 80
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ - Id: 13005
+ AegisName: Angelwing_Short_Sword
+ Name: Angelic Wing Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 13006
+ AegisName: Khukri
+ Name: Khukri
+ Type: Weapon
+ SubType: Dagger
+ Buy: 240000
+ Weight: 600
+ Attack: 150
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 13007
+ AegisName: Jitte
+ Name: Jitte
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20000
+ Weight: 400
+ Attack: 70
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,200;
+ - Id: 13008
+ AegisName: Jitte_
+ Name: Jitte
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20000
+ Weight: 400
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,200;
+ - Id: 13009
+ AegisName: Kamaitachi
+ Name: Kamaitachi
+ Type: Weapon
+ SubType: Dagger
+ Buy: 48000
+ Weight: 900
+ Attack: 125
+ Range: 2
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bCritical,3;
+ bonus bAspdRate,3;
+ - Id: 13010
+ AegisName: Asura
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 3000
+ Weight: 600
+ Attack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bMatkRate,10;
+ - Id: 13011
+ AegisName: Asura_
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 3000
+ Weight: 600
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bMatkRate,10;
+ - Id: 13012
+ AegisName: Murasame
+ Name: Murasame
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 13013
+ AegisName: Murasame_
+ Name: Murasame
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 95
+ Range: 1
+ Slots: 2
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 13014
+ AegisName: Hakujin
+ Name: Hakujin
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAutoSpell,"AL_HEAL",1,10;
+ - Id: 13015
+ AegisName: Hakujin_
+ Name: Hakujin
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAutoSpell,"AL_HEAL",1,10;
+ - Id: 13016
+ AegisName: Poison_Knife_
+ Name: Poison Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 64
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,3000;
+ - Id: 13017
+ AegisName: House_Auger_
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ - Id: 13018
+ AegisName: Sucsamad_
+ Name: Sucsamad
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bUnbreakableWeapon;
+ - Id: 13019
+ AegisName: Ginnungagap_
+ Name: Ginnungagap
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 148
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus2 bAddEff2,Eff_Blind,50;
+ - Id: 13020
+ AegisName: Warrior_Balmung_
+ Name: Warrior's Balmung
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 13021
+ AegisName: Combat_Knife_C
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 129
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Demon,-10;
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ - Id: 13022
+ AegisName: Counter_Dagger_C
+ Name: Dagger of Counter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 209
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,90;
+ - Id: 13023
+ AegisName: Asura_C
+ Name: Ashura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 120
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 13024
+ AegisName: Sword_Breaker_C
+ Name: Refined Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 13025
+ AegisName: Mail_Breaker_C
+ Name: Refined Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 13026
+ AegisName: Moonlight_Sword_C
+ Name: Moonlight Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ - Id: 13027
+ AegisName: Scalpel
+ Name: Scalpel
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,500;
+ - Id: 13028
+ AegisName: Tooth_Blade
+ Name: Tooth Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ if (getrefine()>=9) {
+ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70;
+ } else
+ bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;
+ - Id: 13029
+ AegisName: Prinsence_Knife
+ Name: Prinsense Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 13030
+ AegisName: Dragon_Killer_
+ Name: Dragon Killer
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 13031
+ AegisName: Sword_Breaker_
+ Name: Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 13032
+ AegisName: Mail_Breaker_
+ Name: Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 13033
+ AegisName: Assasin_Dagger_
+ Name: Assassin Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,15;
+ bonus bAspdRate,2;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 13034
+ AegisName: Twilight_Desert
+ Name: Desert Twilight
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 13035
+ AegisName: Sandstorm
+ Name: Sandstorm
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ Assassin: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 13036
+ AegisName: BF_Dagger1
+ Name: Brave Assassin's Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)
+ bonus bMatkRate,15;
+ - Id: 13037
+ AegisName: BF_Dagger2
+ Name: Valorous Assassin's Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)
+ bonus bMatkRate,15;
+ - Id: 13038
+ AegisName: Dagger_Of_Hunter
+ Name: Dagger of Hunter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Rogue: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,2;
+ bonus bDex,1;
+ bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100;
+ bonus2 bSkillAtk,"RG_BACKSTAP",20;
+ - Id: 13039
+ AegisName: Ivory_Knife
+ Name: Ivory Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bAspdRate,3;
+ bonus2 bAddEff,Eff_Bleeding,300;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ - Id: 13040
+ AegisName: N_Cutter
+ Name: Novice Cutter
+ Type: Weapon
+ SubType: Dagger
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13041
+ AegisName: N_Main_Gauche
+ Name: Novice Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Attack: 63
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13042
+ AegisName: Krieger_Dagger1
+ Name: Glorious Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus3 bAutoSpell,"PR_LEXDIVINA",1,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8)
+ bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;
+ - Id: 13043
+ AegisName: Fortune_Sword_I
+ Name: Fortune Sword
+ Type: Weapon
+ SubType: Dagger
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,5;
+ - Id: 13044
+ AegisName: House_Auger_I
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13045
+ AegisName: Kamaitachi_I
+ Name: Kamaitachi
+ Type: Weapon
+ SubType: Dagger
+ Attack: 155
+ Range: 2
+ Jobs:
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13046
+ AegisName: Krieg
+ Name: Krierg
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Rogue: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000;
+ bonus2 bSkillAtk,"RG_BACKSTAP",15;
+ - Id: 13047
+ AegisName: Weihna
+ Name: Weihna
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Rogue: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000;
+ autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 13048
+ AegisName: Damascus_C
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Attack: 153
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 13100
+ AegisName: Six_Shooter
+ Name: Six Shooter
+ Type: Weapon
+ SubType: Revolver
+ Buy: 4500
+ Weight: 400
+ Attack: 30
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13101
+ AegisName: Six_Shooter_
+ Name: Six Shooter
+ Type: Weapon
+ SubType: Revolver
+ Buy: 4500
+ Weight: 400
+ Attack: 30
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13102
+ AegisName: Crimson_Bolt
+ Name: Crimson Bolt
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20000
+ Weight: 450
+ Attack: 45
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13103
+ AegisName: Crimson_Bolt_
+ Name: Crimson Bolt
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20000
+ Weight: 450
+ Attack: 45
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13104
+ AegisName: The_Garrison
+ Name: Garrison
+ Type: Weapon
+ SubType: Revolver
+ Buy: 48000
+ Weight: 500
+ Attack: 70
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13105
+ AegisName: The_Garrison_
+ Name: Garrison
+ Type: Weapon
+ SubType: Revolver
+ Buy: 48000
+ Weight: 500
+ Attack: 70
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13106
+ AegisName: Gold_Lux
+ Name: Gold Lux
+ Type: Weapon
+ SubType: Revolver
+ Buy: 100000
+ Weight: 500
+ Attack: 20
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ if (getskilllv("GS_GLITTERING")>0)
+ bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;
+ - Id: 13107
+ AegisName: Wasteland_Outlaw
+ Name: Wasteland's Outlaw
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 580
+ Attack: 68
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,readparam(bAgi)/10;
+ bonus bAspdRate,readparam(bAgi)/14;
+ - Id: 13108
+ AegisName: BF_Pistol1
+ Name: Soldier Revolver
+ Type: Weapon
+ SubType: Revolver
+ Attack: 70
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,-10;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13109
+ AegisName: Wasteland_Outlaw_C
+ Name: Wasteland Outlaw
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Attack: 100
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ Script: |
+ bonus bHit,readparam(bAgi)/10;
+ bonus bAspdRate,readparam(bAgi)/14;
+ bonus2 bAddClass,Class_All,10;
+ bonus bMatkRate,10;
+ - Id: 13110
+ AegisName: Krieger_Pistol1
+ Name: Glorious Pistol
+ Type: Weapon
+ SubType: Revolver
+ Attack: 80
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000;
+ bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2;
+ }
+ - Id: 13112
+ AegisName: P_Revolver1
+ Name: Eden Revlover I
+ Type: Weapon
+ SubType: Revolver
+ Attack: 4
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-5;
+ - Id: 13113
+ AegisName: P_Revolver2
+ Name: Eden Revlover II
+ Type: Weapon
+ SubType: Revolver
+ Attack: 60
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-5;
+ - Id: 13150
+ AegisName: Branch
+ Name: Branch
+ Type: Weapon
+ SubType: Rifle
+ Buy: 3000
+ Weight: 500
+ Attack: 50
+ Range: 9
+ Slots: 3
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 13151
+ AegisName: The_Cyclone
+ Name: Cyclone
+ Type: Weapon
+ SubType: Rifle
+ Buy: 17500
+ Weight: 700
+ Attack: 120
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13152
+ AegisName: The_Cyclone_
+ Name: Cyclone
+ Type: Weapon
+ SubType: Rifle
+ Buy: 17500
+ Weight: 700
+ Attack: 120
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13153
+ AegisName: Dusk
+ Name: Dusk
+ Type: Weapon
+ SubType: Rifle
+ Buy: 23500
+ Weight: 750
+ Attack: 150
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 56
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13154
+ AegisName: Rolling_Stone
+ Name: Rolling Stone
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 12000
+ Weight: 900
+ Attack: 135
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 14
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ - Id: 13155
+ AegisName: Black_Rose
+ Name: Black Rose
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 32000
+ Weight: 900
+ Attack: 180
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ - Id: 13156
+ AegisName: Gate_Keeper
+ Name: Gate Keeper
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 56000
+ Weight: 1000
+ Attack: 210
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;
+ - Id: 13157
+ AegisName: Drifter
+ Name: Drifter
+ Type: Weapon
+ SubType: Gatling
+ Buy: 80000
+ Weight: 2300
+ Attack: 50
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 13158
+ AegisName: Butcher
+ Name: Butcher
+ Type: Weapon
+ SubType: Gatling
+ Buy: 130000
+ Weight: 2500
+ Attack: 75
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bCriticalAddRace,RC_Brute,10;
+ bonus2 bCriticalAddRace,RC_Player_Doram,10;
+ - Id: 13159
+ AegisName: Butcher_
+ Name: Butcher
+ Type: Weapon
+ SubType: Gatling
+ Buy: 130000
+ Weight: 2500
+ Attack: 75
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bCriticalAddRace,RC_Brute,10;
+ bonus2 bCriticalAddRace,RC_Player_Doram,10;
+ - Id: 13160
+ AegisName: Destroyer
+ Name: Destroyer
+ Type: Weapon
+ SubType: Grenade
+ Buy: 110000
+ Weight: 1200
+ Attack: 220
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 52
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,200;
+ - Id: 13161
+ AegisName: Destroyer_
+ Name: Destroyer
+ Type: Weapon
+ SubType: Grenade
+ Buy: 110000
+ Weight: 1200
+ Attack: 220
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 52
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,200;
+ - Id: 13162
+ AegisName: Inferno
+ Name: Inferno
+ Type: Weapon
+ SubType: Grenade
+ Buy: 230000
+ Weight: 1250
+ Attack: 280
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 13163
+ AegisName: Long_Barrel
+ Name: Long Barrel
+ Type: Weapon
+ SubType: Rifle
+ Buy: 40000
+ Weight: 1000
+ Attack: 150
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,20;
+ bonus bAspdRate,-3;
+ bonus3 bAutoSpell,"GS_TRACKING",5,20;
+ - Id: 13164
+ AegisName: Long_Barrel_
+ Name: Long Barrel
+ Type: Weapon
+ SubType: Rifle
+ Buy: 40000
+ Weight: 1000
+ Attack: 150
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,20;
+ bonus bAspdRate,-3;
+ bonus3 bAutoSpell,"GS_TRACKING",5,20;
+ - Id: 13165
+ AegisName: Jungle_Carbine
+ Name: Jungle Carbine
+ Type: Weapon
+ SubType: Rifle
+ Buy: 56000
+ Weight: 700
+ Attack: 170
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,4;
+ bonus bAspdRate,10;
+ bonus bHit,-readparam(bDex)/3;
+ - Id: 13166
+ AegisName: Jungle_Carbine_
+ Name: Jungle Carbine
+ Type: Weapon
+ SubType: Rifle
+ Buy: 56000
+ Weight: 700
+ Attack: 170
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,4;
+ bonus bAspdRate,10;
+ bonus bHit,-readparam(bDex)/3;
+ - Id: 13167
+ AegisName: Gate_KeeperDD
+ Name: Gate Keeper-DD
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 72000
+ Weight: 1300
+ Attack: 200
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;
+ bonus bDef,getrefine();
+ bonus bDex,1;
+ - Id: 13168
+ AegisName: Thunder_P
+ Name: Thunder P
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 76000
+ Weight: 700
+ Attack: 80
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-5;
+ bonus bAspdRate,20;
+ - Id: 13169
+ AegisName: Thunder_P_
+ Name: Thunder P
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 76000
+ Weight: 700
+ Attack: 80
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-5;
+ bonus bAspdRate,20;
+ - Id: 13170
+ AegisName: Lever_Action_Rifle
+ Name: Lever Action Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 770
+ Attack: 138
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,20;
+ bonus bCritical,50;
+ bonus bAspdRate,-5;
+ - Id: 13171
+ AegisName: BF_Rifle1
+ Name: Soldier Rifle
+ Type: Weapon
+ SubType: Rifle
+ Attack: 50
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,10;
+ bonus bCritical,10;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bCastrate,"GS_TRACKING",-25;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13172
+ AegisName: BF_Gatling_Gun1
+ Name: Soldier Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Attack: 80
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13173
+ AegisName: BF_Shotgun1
+ Name: Soldier Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 100
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bSplashRange,1;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13174
+ AegisName: BF_Launcher1
+ Name: Soldier Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Attack: 300
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13175
+ AegisName: Lever_Action_Rifle_C
+ Name: Lever Action Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Attack: 170
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,20;
+ bonus bCritical,50;
+ bonus bAspdRate,-5;
+ - Id: 13176
+ AegisName: Krieger_Rifle1
+ Name: Glorious Rifle
+ Type: Weapon
+ SubType: Rifle
+ Attack: 90
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bCastrate,"GS_TRACKING",25;
+ bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3;
+ }
+ - Id: 13177
+ AegisName: Krieger_Gatling1
+ Name: Glorious Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Attack: 90
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bAddClass,Class_All,getrefine();
+ }
+ - Id: 13178
+ AegisName: Krieger_Shotgun1
+ Name: Glorious Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 110
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bSplashRange,1;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2;
+ bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;
+ }
+ - Id: 13179
+ AegisName: Krieger_Launcher1
+ Name: Glorious Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Attack: 330
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2;
+ bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;
+ autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ }
+ - Id: 13300
+ AegisName: Huuma_Bird_Wing
+ Name: Huuma Wing Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 90000
+ Weight: 3000
+ Attack: 150
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Wind;
+ bonus bDex,-2;
+ bonus bAgi,-1;
+ - Id: 13301
+ AegisName: Huuma_Giant_Wheel
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 40000
+ Weight: 2500
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13302
+ AegisName: Huuma_Giant_Wheel_
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 40000
+ Weight: 2500
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13303
+ AegisName: Huuma_Blaze
+ Name: Huuma Blaze Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 78000
+ Weight: 1500
+ Attack: 185
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Fire;
+ bonus bDex,-2;
+ bonus3 bAutoSpell,"MG_FIREBALL",5,30;
+ - Id: 13304
+ AegisName: Huuma_Calm_Mind
+ Name: Huuma Calm Mind
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1550
+ Attack: 112
+ Range: 1
+ Slots: 2
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"NJ_HUUMA",30;
+ bonus bNoCastCancel;
+ - Id: 13305
+ AegisName: BF_Huuma_Shuriken1
+ Name: Brave Huuma Front Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13306
+ AegisName: BF_Huuma_Shuriken2
+ Name: Valorous Huuma Front Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13307
+ AegisName: Krieger_Huuma_Shuriken1
+ Name: Glorious Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bMatkRate,15;
+ autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>8) {
+ bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1;
+ bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 13308
+ AegisName: Huuma_Blaze_I
+ Name: Huuma Blaze Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Attack: 230
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Fire;
+ bonus bDex,2;
+ - Id: 13309
+ AegisName: Huuma_Giant_Wheel_C
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Attack: 99
+ Range: 1
+ Jobs:
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,80;
+ - Id: 13400
+ AegisName: Cutlas_
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13401
+ AegisName: Excalibur_C
+ Name: Excalibur
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 199
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,10;
+ bonus bLuk,10;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13402
+ AegisName: Cutlas_C
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13403
+ AegisName: Solar_Sword_C
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bHPDrainRate,1;
+ bonus2 bSPLossRate,15,10000;
+ - Id: 13404
+ AegisName: Platinum_Shotel
+ Name: Platinum Shotel
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,50;
+ - Id: 13405
+ AegisName: Curved_Sword
+ Name: Curved Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus2 bAddEff,Eff_Curse,300;
+ - Id: 13406
+ AegisName: Edger
+ Name: Edger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 13407
+ AegisName: Nagan_C
+ Name: Refined Nagan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 148
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ bonus2 bAddRace,RC_DemiHuman,40;
+ bonus2 bAddRace,RC_Player_Human,40;
+ - Id: 13408
+ AegisName: Fire_Brand_C
+ Name: Refined Fireblend
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,2;
+ skill "MG_FIREBOLT",5;
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,100;
+ - Id: 13409
+ AegisName: Immaterial_Sword_C
+ Name: Refined Immaterial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 160
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ bonus2 bSPVanishRate,45,30;
+ bonus bSPDrainValue,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 13410
+ AegisName: BF_Sword1
+ Name: Valorous Gladiator Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13411
+ AegisName: BF_Sword2
+ Name: Brave Gladiator Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bMatkRate,10;
+ bonus bUnbreakableWeapon;
+ - Id: 13412
+ AegisName: Twin_Edge_B
+ Name: Twin Edge of Naght Sieger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ skill "MG_FROSTDIVER",5;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;
+ - Id: 13413
+ AegisName: Twin_Edge_R
+ Name: Twin Edge of Naght Sieger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 160
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ skill "WZ_METEOR",3;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;
+ - Id: 13414
+ AegisName: Elemental_Sword
+ Name: Elemental Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,4;
+ bonus bDex,1;
+ bonus bMatkRate,5;
+ bonus2 bAddEle,Ele_Neutral,10;
+ bonus3 bAutoSpell,"MG_COLDBOLT",3,50;
+ bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000;
+ bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000;
+ bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;
+ - Id: 13415
+ AegisName: N_Falchion
+ Name: Novice Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 59
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13416
+ AegisName: Krieger_Onehand_Sword1
+ Name: Glorious Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
+ bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (getrefine()>6)
+ bonus bAspdRate,5;
+ if (getrefine()>8) {
+ bonus bAspdRate,5;
+ bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 13417
+ AegisName: Krieger_Onehand_Sword2
+ Name: Glorious Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,getrefine()-5;
+ bonus bMatkRate,10;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5)
+ bonus bUseSPrate,-10;
+ if (getrefine()>8)
+ bonus bInt,5;
+ - Id: 13418
+ AegisName: Krieger_Onehand_Sword3
+ Name: Glorious Holy Avenger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,getrefine()-5;
+ bonus bMatkRate,10;
+ bonus bUnbreakableWeapon;
+ if (getrefine()>5)
+ bonus bUseSPrate,-10;
+ if (getrefine()>8)
+ bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000;
+ if (getrefine()>9)
+ bonus bInt,5;
+ - Id: 13419
+ AegisName: Holy_Saber
+ Name: Holy saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 160
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13420
+ AegisName: Honglyun's_Sword
+ Name: Honglyun's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bStr,2;
+ bonus bInt,2;
+ - Id: 13421
+ AegisName: Ruber
+ Name: Ruber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 13422
+ AegisName: Flamberge_C
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 185
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddSize,Size_All,40;
+ - Id: 15000
+ AegisName: Bone_Plate
+ Name: Bone Plate
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bMdef,3;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus2 bIgnoreDefRaceRate,RC_Brute,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10;
+ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;
+ - Id: 15001
+ AegisName: Odin's_Blessing_I
+ Name: Odin's Blessing
+ Type: Armor
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16000
+ AegisName: Erde
+ Name: Erde
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 500
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AM_ACIDTERROR",20;
+ bonus2 bSkillAtk,"AM_DEMONSTRATION",20;
+ bonus bMaxSP,50;
+ bonus bHealPower,10;
+ - Id: 16001
+ AegisName: Red_Square_Bag
+ Name: Red Square Bag
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 500
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Classes:
+ Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMaxHP,200;
+ bonus2 bSkillAtk,"AM_ACIDTERROR",20;
+ bonus2 bSkillAtk,"AM_DEMONSTRATION",20;
+ bonus2 bAddMonsterDropItem,501,50;
+ bonus2 bAddMonsterDropItem,502,20;
+ bonus2 bAddMonsterDropItem,503,20;
+ bonus2 bAddMonsterDropItem,504,20;
+ bonus2 bAddMonsterDropItem,505,10;
+ if (readparam(bStr)>=95)
+ bonus2 bAddEff,Eff_Stun,500;
+ - Id: 16002
+ AegisName: Stunner_C
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Attack: 175
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ bonus2 bAddSize,Size_All,40;
+ - Id: 16030
+ AegisName: Pilebuncker_S
+ Name: Pile Bunker S
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3000
+ Attack: 400
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAspdRate,getrefine()/2;
+ - Id: 16031
+ AegisName: Pilebuncker_P
+ Name: Pile Bunker P
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 4000
+ Attack: 450
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,getrefine()*5;
+ - Id: 16032
+ AegisName: Pilebuncker_T
+ Name: Pile Bunker T
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3500
+ Attack: 400
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bUseSPrate,getrefine()*-1;
+ - Id: 18100
+ AegisName: Shooting_Star_C
+ Name: Shooting Star
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 190
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,20;
+ - Id: 18101
+ AegisName: F_Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 18102
+ AegisName: E_Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 18500
+ AegisName: Cheer_Scarf6
+ Name: Cheer Scarf6
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 18501
+ AegisName: Cheer_Scarf8
+ Name: Cheer Scarf8
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 18502
+ AegisName: Cheer_Scarf10
+ Name: Cheer Scarf10
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 18503
+ AegisName: Small_Horn_Of_Devil
+ Name: Small Devil Horns
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 562
+ Script: |
+ bonus bAtkRate,5;
+ bonus bMatkRate,5;
+ bonus bMaxHPRate,10;
+ bonus bMaxSPRate,10;
+ - Id: 18505
+ AegisName: Umbala_Spirit
+ Name: Umbala Spirit
+ Type: Armor
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 675
+ Script: |
+ bonus bVit,1;
+ - Id: 18506
+ AegisName: Hattah_Black
+ Name: Hattah Black
+ Type: Armor
+ Buy: 12000
+ Weight: 4000
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 676
+ - Id: 18507
+ AegisName: Elven_Ears_
+ Name: Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 73
+ - Id: 18539
+ AegisName: Skull_Cap
+ Name: Skull Cap
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 713
+ Script: |
+ bonus bMatkRate,2;
+ if (getrefine() >= 5) {
+ bonus bMatkRate,3;
+ }
+ if (getrefine() >= 7) {
+ bonus bMatkRate,3;
+ }
+ - Id: 18595
+ AegisName: Horn_Of_Ancient
+ Name: Horn of Ancient
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 757
+ Script: |
+ autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 18596
+ AegisName: Sprout_Hat
+ Name: Sprout Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 758
+ Script: |
+ skill "WZ_HEAVENDRIVE",3;
+ - Id: 18597
+ AegisName: Mercury_Helm
+ Name: Mercury Riser
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 759
+ Script: |
+ bonus bAspdRate,3;
+ bonus bCritical,3;
+ if (getrefine() >= 7) {
+ bonus bAspdRate,2;
+ bonus bCritical,2;
+ }
+ if (getrefine() >= 9) {
+ bonus bAspdRate,2;
+ bonus bCritical,2;
+ }
+ - Id: 18600
+ AegisName: Cat_Ears_Beret
+ Name: Cat Ear Beret
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 761
+ Script: |
+ bonus bAtkRate,5;
+ if (getrefine() > 5 && getrefine() <= 12) {
+ bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5);
+ bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5);
+ bonus2 bAddRace,RC_Player_Human,(getrefine() - 5);
+ bonus2 bSubRace,RC_Player_Human,(getrefine() - 5);
+ }
+ if (getrefine() > 12) {
+ bonus2 bAddRace,RC_DemiHuman,7;
+ bonus2 bAddRace,RC_Player_Human,7;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ }
+ - Id: 18612
+ AegisName: White_Musang_Hat
+ Name: White Musang Hat
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 770
+ Script: |
+ bonus bStr,2;
+ bonus bVit,2;
+ bonus bLuk,1;
+ bonus bUnbreakableHelm;
+ - Id: 18613
+ AegisName: Black_Musang_Hat
+ Name: Black Musang Hat
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 771
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus bAgi,1;
+ bonus bUnbreakableHelm;
+ - Id: 18620
+ AegisName: Heart_Eyepatch
+ Name: Heart Eyepatch
+ Type: Armor
+ Buy: 5
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 779
+ - Id: 18656
+ AegisName: Wit_Pumpkin_Hat
+ Name: Witch's Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 717
+ Script: |
+ bonus bMdef,10;
+ bonus bStr,2;
+ bonus bInt,2;
+ bonus2 bMagicAddRace,RC_Undead,15;
+ bonus2 bMagicAddRace,RC_Demon,15;
+ - Id: 19500
+ AegisName: T_Mr_Smile
+ Name: T Mr Smile
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 65
+ Script: |
+ bonus bStr,2;
+ - Id: 19501
+ AegisName: T_Spinx_Helm
+ Name: T Spinx Helm
+ Type: Armor
+ Slots: 1
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Low: true
+ View: 137
+ - Id: 19504
+ AegisName: T_Sunglasses
+ Name: T Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 12
+ - Id: 19505
+ AegisName: T_Cigarette
+ Name: T Cigarette
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 54
+ - Id: 19506
+ AegisName: T_Valkyrie_Feather_Band
+ Name: T Valkyrie Feather Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Refineable: true
+ View: 300
+ - Id: 19507
+ AegisName: Fine_Sun
+ Name: Clear Sun
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 654
diff --git a/db/pre-re/item_db_etc.yml b/db/pre-re/item_db_etc.yml
new file mode 100644
index 0000000000..5419b7bdc6
--- /dev/null
+++ b/db/pre-re/item_db_etc.yml
@@ -0,0 +1,21420 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 670
+ AegisName: Gold_Coin_Moneybag
+ Name: Bag of Gold Coins
+ Type: Etc
+ Buy: 100000
+ Weight: 400
+ - Id: 671
+ AegisName: Gold_Coin
+ Name: Gold Coin
+ Type: Etc
+ Buy: 10000
+ Weight: 40
+ - Id: 672
+ AegisName: Copper_Coin_Moneybag
+ Name: Bag of Bronze Coins
+ Type: Etc
+ Buy: 1000
+ Weight: 400
+ - Id: 673
+ AegisName: Copper_Coin
+ Name: Bronze Coin
+ Type: Etc
+ Buy: 100
+ Weight: 40
+ - Id: 674
+ AegisName: Mithril_Coin
+ Name: Mithril Coin
+ Type: Etc
+ Buy: 5000
+ Weight: 40
+ - Id: 675
+ AegisName: Silver_Coin
+ Name: Silver Coin
+ Type: Etc
+ Buy: 5000
+ Weight: 40
+ - Id: 676
+ AegisName: Silver_Coin_Moneybag
+ Name: Bag of Silver Coins
+ Type: Etc
+ Buy: 50000
+ Weight: 400
+ - Id: 677
+ AegisName: White_Gold_Coin
+ Name: Platinum Coin
+ Type: Etc
+ Buy: 2000
+ Weight: 40
+ - Id: 701
+ AegisName: Ora_Ora
+ Name: Ora Ora
+ Type: Etc
+ Buy: 55000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 702
+ AegisName: Animal_Blood
+ Name: Animal Gore
+ Type: Etc
+ Buy: 450
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 703
+ AegisName: Hinalle
+ Name: Hinalle
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 704
+ AegisName: Aloe
+ Name: Aloe
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 705
+ AegisName: Clover
+ Name: Clover
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 706
+ AegisName: Four_Leaf_Clover
+ Name: Four Leaf Clover
+ Type: Etc
+ Buy: 80000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 707
+ AegisName: Singing_Plant
+ Name: Singing Plant
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 708
+ AegisName: Ment
+ Name: Ment
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 709
+ AegisName: Izidor
+ Name: Izidor
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 710
+ AegisName: Illusion_Flower
+ Name: Illusion Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 711
+ AegisName: Shoot
+ Name: Shoot
+ Type: Etc
+ Buy: 16
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 712
+ AegisName: Flower
+ Name: Flower
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 713
+ AegisName: Empty_Bottle
+ Name: Empty Bottle
+ Type: Etc
+ Buy: 6
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 714
+ AegisName: Emperium
+ Name: Emperium
+ Type: Etc
+ Buy: 2
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 715
+ AegisName: Yellow_Gemstone
+ Name: Yellow Gemstone
+ Type: Etc
+ Buy: 600
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 716
+ AegisName: Red_Gemstone
+ Name: Red Gemstone
+ Type: Etc
+ Buy: 600
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 717
+ AegisName: Blue_Gemstone
+ Name: Blue Gemstone
+ Type: Etc
+ Buy: 600
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 718
+ AegisName: Dark_Red_Jewel
+ Name: Garnet
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 719
+ AegisName: Violet_Jewel
+ Name: Amethyst
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 720
+ AegisName: Skyblue_Jewel
+ Name: Aquamarine
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 721
+ AegisName: Azure_Jewel
+ Name: Emerald
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 722
+ AegisName: Scarlet_Jewel
+ Name: Pearl
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 723
+ AegisName: Cardinal_Jewel
+ Name: Ruby
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 724
+ AegisName: Cardinal_Jewel_
+ Name: Cursed Ruby
+ Type: Etc
+ Buy: 600
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 725
+ AegisName: Red_Jewel
+ Name: Sardonyx
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 726
+ AegisName: Blue_Jewel
+ Name: Sapphire
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 727
+ AegisName: White_Jewel
+ Name: Opal
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 728
+ AegisName: Golden_Jewel
+ Name: Topaz
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 729
+ AegisName: Bluish_Green_Jewel
+ Name: Zircon
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 730
+ AegisName: Crystal_Jewel
+ Name: 1carat Diamond
+ Type: Etc
+ Buy: 10000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 731
+ AegisName: Crystal_Jewel_
+ Name: 2carat Diamond
+ Type: Etc
+ Buy: 25000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 732
+ AegisName: Crystal_Jewel__
+ Name: 3carat Diamond
+ Type: Etc
+ Buy: 55000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 733
+ AegisName: Crystal_Jewel___
+ Name: Cracked Diamond
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 734
+ AegisName: Red_Frame
+ Name: Red Frame
+ Type: Etc
+ Buy: 3000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 735
+ AegisName: Blue_Porcelain
+ Name: Chung Jah
+ Type: Etc
+ Buy: 5000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 736
+ AegisName: White_Platter
+ Name: China
+ Type: Etc
+ Buy: 1000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 737
+ AegisName: Black_Ladle
+ Name: Black Ladle
+ Type: Etc
+ Buy: 400
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 738
+ AegisName: Pencil_Case
+ Name: Pencil Case
+ Type: Etc
+ Buy: 400
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 739
+ AegisName: Rouge
+ Name: Rouge
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 740
+ AegisName: Stuffed_Doll
+ Name: Puppet
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 741
+ AegisName: Poring_Doll
+ Name: Poring Doll
+ Type: Etc
+ Buy: 1800
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 742
+ AegisName: Chonchon_Doll
+ Name: Chonchon Doll
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 743
+ AegisName: Spore_Doll
+ Name: Spore Doll
+ Type: Etc
+ Buy: 5500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 744
+ AegisName: Bunch_Of_Flowers
+ Name: Bouquet
+ Type: Etc
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 745
+ AegisName: Wedding_Bouquet
+ Name: Wedding Bouquet
+ Type: Etc
+ Buy: 12000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 746
+ AegisName: Glass_Bead
+ Name: Glass Bead
+ Type: Etc
+ Buy: 1400
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 747
+ AegisName: Crystal_Mirror
+ Name: Crystal Mirror
+ Type: Etc
+ Buy: 15000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 748
+ AegisName: Witherless_Rose
+ Name: Witherless Rose
+ Type: Etc
+ Buy: 55000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 749
+ AegisName: Frozen_Rose
+ Name: Frozen Rose
+ Type: Etc
+ Buy: 35000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 750
+ AegisName: Baphomet_Doll
+ Name: Baphomet Doll
+ Type: Etc
+ Buy: 18000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 751
+ AegisName: Osiris_Doll
+ Name: Osiris Doll
+ Type: Etc
+ Buy: 14000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 752
+ AegisName: Grasshopper_Doll
+ Name: Rocker Doll
+ Type: Etc
+ Buy: 4000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 753
+ AegisName: Monkey_Doll
+ Name: Yoyo Doll
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 754
+ AegisName: Raccoondog_Doll
+ Name: Raccoon Doll
+ Type: Etc
+ Buy: 5000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 756
+ AegisName: Oridecon_Stone
+ Name: Rough Oridecon
+ Type: Etc
+ Buy: 550
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 757
+ AegisName: Elunium_Stone
+ Name: Rough Elunium
+ Type: Etc
+ Buy: 650
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 901
+ AegisName: Danggie
+ Name: Daenggie
+ Type: Etc
+ Buy: 260
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 902
+ AegisName: Tree_Root
+ Name: Tree Root
+ Type: Etc
+ Buy: 12
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 903
+ AegisName: Reptile_Tongue
+ Name: Reptile Tongue
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 904
+ AegisName: Scorpion's_Tail
+ Name: Scorpion Tail
+ Type: Etc
+ Buy: 124
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 905
+ AegisName: Stem
+ Name: Stem
+ Type: Etc
+ Buy: 46
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 906
+ AegisName: Pointed_Scale
+ Name: Pointed Scale
+ Type: Etc
+ Buy: 68
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 907
+ AegisName: Resin
+ Name: Resin
+ Type: Etc
+ Buy: 120
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 908
+ AegisName: Spawn
+ Name: Spawn
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 909
+ AegisName: Jellopy
+ Name: Jellopy
+ Type: Etc
+ Buy: 6
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 910
+ AegisName: Garlet
+ Name: Garlet
+ Type: Etc
+ Buy: 40
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 911
+ AegisName: Scell
+ Name: Scell
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 912
+ AegisName: Zargon
+ Name: Zargon
+ Type: Etc
+ Buy: 480
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 913
+ AegisName: Tooth_Of_Bat
+ Name: Tooth of Bat
+ Type: Etc
+ Buy: 34
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 914
+ AegisName: Fluff
+ Name: Fluff
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 915
+ AegisName: Chrysalis
+ Name: Chrysalis
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 916
+ AegisName: Feather_Of_Birds
+ Name: Feather of Birds
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 917
+ AegisName: Talon
+ Name: Talon
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 918
+ AegisName: Sticky_Webfoot
+ Name: Sticky Webfoot
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 919
+ AegisName: Animal's_Skin
+ Name: Animal Skin
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 920
+ AegisName: Claw_Of_Wolves
+ Name: Wolf Claw
+ Type: Etc
+ Buy: 58
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 921
+ AegisName: Mushroom_Spore
+ Name: Mushroom Spore
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 922
+ AegisName: Orcish_Cuspid
+ Name: Orc's Fang
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 923
+ AegisName: Evil_Horn
+ Name: Evil Horn
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 924
+ AegisName: Powder_Of_Butterfly
+ Name: Powder of Butterfly
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 925
+ AegisName: Bill_Of_Birds
+ Name: Bill of Birds
+ Type: Etc
+ Buy: 64
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 926
+ AegisName: Scale_Of_Snakes
+ Name: Snake Scale
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 928
+ AegisName: Insect_Feeler
+ Name: Insect Feeler
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 929
+ AegisName: Immortal_Heart
+ Name: Immortal Heart
+ Type: Etc
+ Buy: 374
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 930
+ AegisName: Rotten_Bandage
+ Name: Rotten Bandage
+ Type: Etc
+ Buy: 350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 931
+ AegisName: Orcish_Voucher
+ Name: Orcish Voucher
+ Type: Etc
+ Buy: 142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 932
+ AegisName: Skel_Bone
+ Name: Skel-Bone
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 934
+ AegisName: Mementos
+ Name: Memento
+ Type: Etc
+ Buy: 600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 935
+ AegisName: Shell
+ Name: Shell
+ Type: Etc
+ Buy: 14
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 936
+ AegisName: Scales_Shell
+ Name: Scale Shell
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 937
+ AegisName: Posionous_Canine
+ Name: Venom Canine
+ Type: Etc
+ Buy: 148
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 938
+ AegisName: Sticky_Mucus
+ Name: Sticky Mucus
+ Type: Etc
+ Buy: 70
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 939
+ AegisName: Bee_Sting
+ Name: Bee Sting
+ Type: Etc
+ Buy: 32
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 940
+ AegisName: Grasshopper's_Leg
+ Name: Grasshopper's Leg
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 941
+ AegisName: Nose_Ring
+ Name: Nose Ring
+ Type: Etc
+ Buy: 568
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 942
+ AegisName: Yoyo_Tail
+ Name: Yoyo Tail
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 943
+ AegisName: Solid_Shell
+ Name: Solid Shell
+ Type: Etc
+ Buy: 448
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 944
+ AegisName: Horseshoe
+ Name: Horseshoe
+ Type: Etc
+ Buy: 588
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 945
+ AegisName: Raccoon_Leaf
+ Name: Raccoon Leaf
+ Type: Etc
+ Buy: 106
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 946
+ AegisName: Snail's_Shell
+ Name: Snail's Shell
+ Type: Etc
+ Buy: 64
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 947
+ AegisName: Horn
+ Name: Horn
+ Type: Etc
+ Buy: 116
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 948
+ AegisName: Bear's_Foot
+ Name: Bear's Footskin
+ Type: Etc
+ Buy: 174
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 949
+ AegisName: Feather
+ Name: Feather
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 950
+ AegisName: Heart_Of_Mermaid
+ Name: Heart of Mermaid
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 951
+ AegisName: Fin
+ Name: Fin
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 952
+ AegisName: Cactus_Needle
+ Name: Cactus Needle
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 953
+ AegisName: Stone_Heart
+ Name: Stone Heart
+ Type: Etc
+ Buy: 184
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 954
+ AegisName: Shining_Scales
+ Name: Shining Scale
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 955
+ AegisName: Worm_Peelings
+ Name: Worm Peeling
+ Type: Etc
+ Buy: 52
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 956
+ AegisName: Gill
+ Name: Gill
+ Type: Etc
+ Buy: 342
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 957
+ AegisName: Decayed_Nail
+ Name: Decayed Nail
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 958
+ AegisName: Horrendous_Mouth
+ Name: Horrendous Mouth
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 959
+ AegisName: Rotten_Scale
+ Name: Stinky Scale
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 960
+ AegisName: Nipper
+ Name: Nipper
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 961
+ AegisName: Conch
+ Name: Conch
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 962
+ AegisName: Tentacle
+ Name: Tentacle
+ Type: Etc
+ Buy: 70
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 963
+ AegisName: Sharp_Scale
+ Name: Sharp Scale
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 964
+ AegisName: Crap_Shell
+ Name: Crab Shell
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 965
+ AegisName: Clam_Shell
+ Name: Clam Shell
+ Type: Etc
+ Buy: 56
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 966
+ AegisName: Flesh_Of_Clam
+ Name: Clam Flesh
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 967
+ AegisName: Turtle_Shell
+ Name: Turtle Shell
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 968
+ AegisName: Voucher_Of_Orcish_Hero
+ Name: Heroic Emblem
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 969
+ AegisName: Gold
+ Name: Gold
+ Type: Etc
+ Buy: 200000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 970
+ AegisName: Alchol
+ Name: Alcohol
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 971
+ AegisName: Detrimindexta
+ Name: Detrimindexta
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 972
+ AegisName: Karvodailnirol
+ Name: Karvodailnirol
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 973
+ AegisName: Counteragent
+ Name: Counteragent
+ Type: Etc
+ Buy: 800
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ - Id: 974
+ AegisName: Mixture
+ Name: Mixture
+ Type: Etc
+ Buy: 800
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ - Id: 975
+ AegisName: Scarlet_Dyestuffs
+ Name: Scarlet Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 976
+ AegisName: Lemon_Dyestuffs
+ Name: Lemon Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 978
+ AegisName: Cobaltblue_Dyestuffs
+ Name: Cobaltblue Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 979
+ AegisName: Darkgreen_Dyestuffs
+ Name: Darkgreen Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 980
+ AegisName: Orange_Dyestuffs
+ Name: Orange Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 981
+ AegisName: Violet_Dyestuffs
+ Name: Violet Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 982
+ AegisName: White_Dyestuffs
+ Name: White Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 983
+ AegisName: Black_Dyestuffs
+ Name: Black Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 984
+ AegisName: Oridecon
+ Name: Oridecon
+ Type: Etc
+ Buy: 1100
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 985
+ AegisName: Elunium
+ Name: Elunium
+ Type: Etc
+ Buy: 1100
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 986
+ AegisName: Anvil
+ Name: Anvil
+ Type: Etc
+ Buy: 30000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 987
+ AegisName: Oridecon_Anvil
+ Name: Oridecon Anvil
+ Type: Etc
+ Buy: 120000
+ Weight: 700
+ Flags:
+ BuyingStore: true
+ - Id: 988
+ AegisName: Golden_Anvil
+ Name: Golden Anvil
+ Type: Etc
+ Buy: 300000
+ Weight: 900
+ Flags:
+ BuyingStore: true
+ - Id: 989
+ AegisName: Emperium_Anvil
+ Name: Emperium Anvil
+ Type: Etc
+ Buy: 600000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 990
+ AegisName: Boody_Red
+ Name: Red Blood
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 991
+ AegisName: Crystal_Blue
+ Name: Crystal Blue
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 992
+ AegisName: Wind_Of_Verdure
+ Name: Wind of Verdure
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 993
+ AegisName: Yellow_Live
+ Name: Green Live
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 994
+ AegisName: Flame_Heart
+ Name: Flame Heart
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 995
+ AegisName: Mistic_Frozen
+ Name: Mystic Frozen
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 996
+ AegisName: Rough_Wind
+ Name: Rough Wind
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 997
+ AegisName: Great_Nature
+ Name: Great Nature
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 998
+ AegisName: Iron
+ Name: Iron
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 999
+ AegisName: Steel
+ Name: Steel
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1000
+ AegisName: Star_Crumb
+ Name: Star Crumb
+ Type: Etc
+ Buy: 4500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1001
+ AegisName: Sparkling_Dust
+ Name: Star Dust
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1002
+ AegisName: Iron_Ore
+ Name: Iron Ore
+ Type: Etc
+ Buy: 50
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 1003
+ AegisName: Coal
+ Name: Coal
+ Type: Etc
+ Buy: 500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 1004
+ AegisName: Patriotism_Marks
+ Name: Chivalry Emblem
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1005
+ AegisName: Hammer_Of_Blacksmith
+ Name: Hammer of Blacksmith
+ Type: Etc
+ Buy: 2
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ - Id: 1006
+ AegisName: Old_Magic_Book
+ Name: Old Magicbook
+ Type: Etc
+ Buy: 2
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 1007
+ AegisName: Penetration
+ Name: Necklace of Wisdom
+ Type: Etc
+ Buy: 2
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 1008
+ AegisName: Frozen_Heart
+ Name: Necklace of Oblivion
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1009
+ AegisName: Sacred_Marks
+ Name: Hand of God
+ Type: Etc
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 1010
+ AegisName: Phracon
+ Name: Phracon
+ Type: Etc
+ Buy: 200
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 1011
+ AegisName: Emveretarcon
+ Name: Emveretarcon
+ Type: Etc
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 1012
+ AegisName: Lizard_Scruff
+ Name: Frill
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1013
+ AegisName: Colorful_Shell
+ Name: Rainbow Shell
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1014
+ AegisName: Jaws_Of_Ant
+ Name: Ant Jaw
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1015
+ AegisName: Thin_N'_Long_Tongue
+ Name: Tongue
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1016
+ AegisName: Rat_Tail
+ Name: Rat Tail
+ Type: Etc
+ Buy: 52
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1017
+ AegisName: Moustache_Of_Mole
+ Name: Mole Whiskers
+ Type: Etc
+ Buy: 106
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1018
+ AegisName: Nail_Of_Mole
+ Name: Mole Claw
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1019
+ AegisName: Wooden_Block
+ Name: Trunk
+ Type: Etc
+ Buy: 60
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1020
+ AegisName: Long_Hair
+ Name: Black Hair
+ Type: Etc
+ Buy: 292
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1021
+ AegisName: Dokkaebi_Horn
+ Name: Dokebi Horn
+ Type: Etc
+ Buy: 292
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1022
+ AegisName: Fox_Tail
+ Name: Nine Tails
+ Type: Etc
+ Buy: 650
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1023
+ AegisName: Fish_Tail
+ Name: Fish Tail
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1024
+ AegisName: Chinese_Ink
+ Name: Squid Ink
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1025
+ AegisName: Spiderweb
+ Name: Cobweb
+ Type: Etc
+ Buy: 184
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1026
+ AegisName: Acorn
+ Name: Acorn
+ Type: Etc
+ Buy: 98
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1027
+ AegisName: Porcupine_Spike
+ Name: Porcupine Quill
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1028
+ AegisName: Wild_Boar's_Mane
+ Name: Mane
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1029
+ AegisName: Tiger's_Skin
+ Name: Tiger Skin
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1030
+ AegisName: Tiger_Footskin
+ Name: Tiger's Footskin
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1031
+ AegisName: Limb_Of_Mantis
+ Name: Mantis Scythe
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1032
+ AegisName: Blossom_Of_Maneater
+ Name: Maneater Blossom
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1033
+ AegisName: Root_Of_Maneater
+ Name: Maneater Root
+ Type: Etc
+ Buy: 208
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1034
+ AegisName: Cobold_Hair
+ Name: Blue Hair
+ Type: Etc
+ Buy: 342
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1035
+ AegisName: Dragon_Canine
+ Name: Dragon Canine
+ Type: Etc
+ Buy: 484
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1036
+ AegisName: Dragon_Scale
+ Name: Dragon Scale
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1037
+ AegisName: Dragon_Train
+ Name: Dragon Tail
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1038
+ AegisName: Petite_DiablOfs_Horn
+ Name: Little Evil Horn
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1039
+ AegisName: Petite_DiablOfs_Wing
+ Name: Little Evil Wing
+ Type: Etc
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1040
+ AegisName: Elder_Pixie's_Beard
+ Name: Elder Pixie's Moustache
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1041
+ AegisName: Lantern
+ Name: Lantern
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1042
+ AegisName: Short_Leg
+ Name: Bug Leg
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1043
+ AegisName: Nail_Of_Orc
+ Name: Orc Claw
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1044
+ AegisName: Tooth_Of_
+ Name: Zenorc's Fang
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1045
+ AegisName: Sacred_Masque
+ Name: Cultish Masque
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1046
+ AegisName: Tweezer
+ Name: Scorpion Nipper
+ Type: Etc
+ Buy: 614
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1047
+ AegisName: Head_Of_Medusa
+ Name: Dead Medusa
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1048
+ AegisName: Slender_Snake
+ Name: Horrendous Hair
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1049
+ AegisName: Skirt_Of_Virgin
+ Name: Skirt of Virgin
+ Type: Etc
+ Buy: 1700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1050
+ AegisName: Tendon
+ Name: Tendon
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1051
+ AegisName: Detonator
+ Name: Detonator
+ Type: Etc
+ Buy: 450
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1052
+ AegisName: Single_Cell
+ Name: Single Cell
+ Type: Etc
+ Buy: 46
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1053
+ AegisName: Tooth_Of_Ancient_Fish
+ Name: Ancient Tooth
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1054
+ AegisName: Lip_Of_Ancient_Fish
+ Name: Ancient Lips
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1055
+ AegisName: Earthworm_Peeling
+ Name: Earthworm Peeling
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1056
+ AegisName: Grit
+ Name: Grit
+ Type: Etc
+ Buy: 306
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1057
+ AegisName: Moth_Dust
+ Name: Moth Dust
+ Type: Etc
+ Buy: 138
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1058
+ AegisName: Wing_Of_Moth
+ Name: Moth Wings
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1059
+ AegisName: Transparent_Cloth
+ Name: Fabric
+ Type: Etc
+ Buy: 306
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1060
+ AegisName: Golden_Hair
+ Name: Golden Hair
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1061
+ AegisName: Starsand_Of_Witch
+ Name: Witched Starsand
+ Type: Etc
+ Buy: 484
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1062
+ AegisName: Pumpkin_Head
+ Name: Jack o' Pumpkin
+ Type: Etc
+ Buy: 374
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1063
+ AegisName: Sharpened_Cuspid
+ Name: Fang
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1064
+ AegisName: Reins
+ Name: Reins
+ Type: Etc
+ Buy: 802
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1065
+ AegisName: Booby_Trap
+ Name: Trap
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1066
+ AegisName: Tree_Of_Archer_1
+ Name: Fine-grained Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1067
+ AegisName: Tree_Of_Archer_2
+ Name: Solid Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1068
+ AegisName: Tree_Of_Archer_3
+ Name: Barren Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1069
+ AegisName: Mushroom_Of_Thief_1
+ Name: Orange Net Mushroom
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 1070
+ AegisName: Mushroom_Of_Thief_2
+ Name: Orange Gooey Mushroom
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 1071
+ AegisName: Mage_Test_1
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 10
+ - Id: 1072
+ AegisName: Delivery_Message
+ Name: Delivery Message
+ Type: Etc
+ Weight: 10
+ - Id: 1073
+ AegisName: Merchant_Voucher_1
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1074
+ AegisName: Merchant_Voucher_2
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1075
+ AegisName: Merchant_Voucher_3
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1076
+ AegisName: Merchant_Voucher_4
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1077
+ AegisName: Merchant_Voucher_5
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1078
+ AegisName: Merchant_Voucher_6
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1079
+ AegisName: Merchant_Voucher_7
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1080
+ AegisName: Merchant_Voucher_8
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1081
+ AegisName: Merchant_Box_1
+ Name: Delivery Box
+ Type: Etc
+ Weight: 10
+ - Id: 1082
+ AegisName: Merchant_Box_2
+ Name: Delivery Box
+ Type: Etc
+ Weight: 10
+ - Id: 1083
+ AegisName: Merchant_Box_3
+ Name: Delivery Box
+ Type: Etc
+ Weight: 10
+ - Id: 1084
+ AegisName: Kapra's_Pass
+ Name: Kafra Pass
+ Type: Etc
+ Weight: 10
+ - Id: 1085
+ AegisName: Mage_Test_2
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 10
+ - Id: 1086
+ AegisName: Mage_Test_3
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 10
+ - Id: 1087
+ AegisName: Mage_Test_4
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 10
+ - Id: 1088
+ AegisName: Morocc_Potion
+ Name: Morocc Solution
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1089
+ AegisName: Payon_Potion
+ Name: Payon Solution
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1090
+ AegisName: Mage_Test_Etc
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 10
+ - Id: 1091
+ AegisName: Merchant_Box_Etc
+ Name: Delivery Box
+ Type: Etc
+ Weight: 10
+ - Id: 1092
+ AegisName: Empty_Cylinder
+ Name: Empty Test Tube
+ Type: Etc
+ Buy: 3
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1093
+ AegisName: Empty_Potion
+ Name: Empty Potion Bottle
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1094
+ AegisName: Short_Daenggie
+ Name: Short Daenggie
+ Type: Etc
+ Buy: 278
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1095
+ AegisName: Needle_Of_Alarm
+ Name: Needle of Alarm
+ Type: Etc
+ Buy: 546
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1096
+ AegisName: Round_Shell
+ Name: Round Shell
+ Type: Etc
+ Buy: 780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1097
+ AegisName: Worn_Out_Page
+ Name: Worn Out Page
+ Type: Etc
+ Buy: 948
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1098
+ AegisName: Manacles
+ Name: Manacles
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1099
+ AegisName: Worn_Out_Prison_Uniform
+ Name: Worn-out Prison Uniform
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1750
+ AegisName: Arrow
+ Name: Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 1
+ Weight: 1
+ Attack: 25
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1751
+ AegisName: Silver_Arrow
+ Name: Silver Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1752
+ AegisName: Fire_Arrow
+ Name: Fire Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1753
+ AegisName: Steel_Arrow
+ Name: Steel Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 4
+ Weight: 2
+ Attack: 40
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1754
+ AegisName: Crystal_Arrow
+ Name: Crystal Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1755
+ AegisName: Arrow_Of_Wind
+ Name: Arrow of Wind
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1756
+ AegisName: Stone_Arrow
+ Name: Stone Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1757
+ AegisName: Immatrial_Arrow
+ Name: Immaterial Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 1758
+ AegisName: Stun_Arrow
+ Name: Stun Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1759
+ AegisName: Freezing_Arrow
+ Name: Frozen Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ 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
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Blind,1000;
+ - Id: 1761
+ AegisName: Curse_Arrow
+ Name: Cursed Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 1762
+ AegisName: Rusty_Arrow
+ Name: Rusty Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ - Id: 1763
+ AegisName: Poison_Arrow
+ Name: Poison Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ 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
+ Attack: 10
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bCriticalLong,20;
+ - Id: 1765
+ AegisName: Oridecon_Arrow
+ Name: Oridecon Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 30
+ Weight: 3
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1766
+ AegisName: Arrow_Of_Counter_Evil
+ Name: Arrow of Counter Evil
+ Type: Ammo
+ SubType: Arrow
+ Buy: 40
+ Weight: 3
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1767
+ AegisName: Arrow_Of_Shadow
+ Name: Arrow of Shadow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1768
+ AegisName: Sleep_Arrow
+ Name: Sleep Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Sleep,2000;
+ - Id: 1769
+ AegisName: Silence_Arrow
+ Name: Mute Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 3
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Silence,1000;
+ - Id: 1770
+ AegisName: Iron_Arrow
+ Name: Iron Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 2
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1771
+ AegisName: Venom_Knife
+ Name: Venom Knife
+ Type: Ammo
+ SubType: Dagger
+ Buy: 50
+ Weight: 5
+ Attack: 30
+ Jobs:
+ Assassin: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1772
+ AegisName: Holy_Arrow
+ Name: Holy Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 2
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddRace,RC_Demon,5;
+ - Id: 4001
+ AegisName: Poring_Card
+ Name: Poring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,2;
+ bonus bFlee2,1;
+ - Id: 4002
+ AegisName: Fabre_Card
+ Name: Fabre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,100;
+ - Id: 4003
+ AegisName: Pupa_Card
+ Name: Pupa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 4004
+ AegisName: Drops_Card
+ Name: Drops Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,1;
+ bonus bHit,3;
+ - Id: 4005
+ AegisName: Poring__Card
+ Name: Santa Poring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Dark,20;
+ - Id: 4006
+ AegisName: Lunatic_Card
+ Name: Lunatic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,1;
+ bonus bCritical,1;
+ bonus bFlee2,1;
+ - Id: 4007
+ AegisName: Pecopeco_Egg_Card
+ Name: Peco Peco Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Formless,20;
+ - Id: 4008
+ AegisName: Picky_Card
+ Name: Picky Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ bonus bBaseAtk,10;
+ - Id: 4009
+ AegisName: Chonchon_Card
+ Name: Chonchon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,2;
+ - Id: 4010
+ AegisName: Wilow_Card
+ Name: Willow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxSP,80;
+ - Id: 4011
+ AegisName: Picky__Card
+ Name: Picky Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,100;
+ - Id: 4012
+ AegisName: Thief_Bug_Egg_Card
+ Name: Thief Bug Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,400;
+ - Id: 4013
+ AegisName: Andre_Egg_Card
+ Name: Andre Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 4014
+ AegisName: Roda_Frog_Card
+ Name: Roda Frog Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,400;
+ bonus bMaxSP,50;
+ - Id: 4015
+ AegisName: Condor_Card
+ Name: Condor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,10;
+ - Id: 4016
+ AegisName: Thief_Bug_Card
+ Name: Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 4017
+ AegisName: Savage_Babe_Card
+ Name: Savage Babe Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ - Id: 4018
+ AegisName: Andre_Larva_Card
+ Name: Andre Larva Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,10;
+ - Id: 4019
+ AegisName: Hornet_Card
+ Name: Hornet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ bonus bBaseAtk,3;
+ - Id: 4020
+ AegisName: Farmiliar_Card
+ Name: Familiar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus bBaseAtk,5;
+ - Id: 4021
+ AegisName: Rocker_Card
+ Name: Rocker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,1;
+ bonus bBaseAtk,5;
+ - Id: 4022
+ AegisName: Spore_Card
+ Name: Spore Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,2;
+ - Id: 4023
+ AegisName: Desert_Wolf_Babe_Card
+ Name: Baby Desert Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ - Id: 4024
+ AegisName: Plankton_Card
+ Name: Plankton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Sleep,500;
+ bonus bBaseAtk,5;
+ - Id: 4025
+ AegisName: Skeleton_Card
+ Name: Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus2 bAddEff,Eff_Stun,200;
+ - Id: 4026
+ AegisName: Thief_Bug_Female_Card
+ Name: Female Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,1;
+ - Id: 4027
+ AegisName: Kukre_Card
+ Name: Kukre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 4028
+ AegisName: Tarou_Card
+ Name: Tarou Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,2;
+ - Id: 4029
+ AegisName: Wolf_Card
+ Name: Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bCritical,1;
+ - Id: 4030
+ AegisName: Mandragora_Card
+ Name: Mandragora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Wind,20;
+ - Id: 4031
+ AegisName: Pecopeco_Card
+ Name: Peco Peco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,10;
+ - Id: 4032
+ AegisName: Ambernite_Card
+ Name: Ambernite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,2;
+ - Id: 4033
+ AegisName: Poporing_Card
+ Name: Poporing Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_DETOXIFY",1;
+ - Id: 4034
+ AegisName: Worm_Tail_Card
+ Name: Wormtail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,2;
+ - Id: 4035
+ AegisName: Hydra_Card
+ Name: Hydra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ - Id: 4036
+ AegisName: Muka_Card
+ Name: Muka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHPrecovRate,10;
+ - Id: 4037
+ AegisName: Snake_Card
+ Name: Snake Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Poison,500;
+ bonus bBaseAtk,5;
+ - Id: 4038
+ AegisName: Zombie_Card
+ Name: Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHPrecovRate,20;
+ - Id: 4039
+ AegisName: Stainer_Card
+ Name: Stainer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Silence,2000;
+ bonus bDef,1;
+ - Id: 4040
+ AegisName: Creamy_Card
+ Name: Creamy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ - Id: 4041
+ AegisName: Coco_Card
+ Name: Coco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Sleep,2000;
+ bonus bDef,1;
+ - Id: 4042
+ AegisName: Steel_Chonchon_Card
+ Name: Steel Chonchon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus bDef,2;
+ - Id: 4043
+ AegisName: Andre_Card
+ Name: Andre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 4044
+ AegisName: Smokie_Card
+ Name: Smokie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 4045
+ AegisName: Horn_Card
+ Name: Horn Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLongAtkDef,35;
+ - Id: 4046
+ AegisName: Martin_Card
+ Name: Martin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Blind,2000;
+ bonus bDef,1;
+ - Id: 4047
+ AegisName: Ghostring_Card
+ Name: Ghostring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Ghost;
+ bonus bHPrecovRate,-25;
+ - Id: 4048
+ AegisName: Poison_Spore_Card
+ Name: Poison Spore Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_POISON",3;
+ - Id: 4049
+ AegisName: Vadon_Card
+ Name: Vadon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Fire,20;
+ - Id: 4050
+ AegisName: Thief_Bug_Male_Card
+ Name: Male Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 4051
+ AegisName: Yoyo_Card
+ Name: Yoyo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee2,5;
+ bonus bAgi,1;
+ - Id: 4052
+ AegisName: Elder_Wilow_Card
+ Name: Elder Willow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,2;
+ - Id: 4053
+ AegisName: Vitata_Card
+ Name: Vitata Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus bUseSPrate,25;
+ - Id: 4054
+ AegisName: Angeling_Card
+ Name: Angeling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Holy;
+ - Id: 4055
+ AegisName: Marina_Card
+ Name: Marina Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Freeze,500;
+ bonus bBaseAtk,5;
+ - Id: 4056
+ AegisName: Dustiness_Card
+ Name: Dustiness Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,30;
+ bonus bFlee,5;
+ - Id: 4057
+ AegisName: Metaller_Card
+ Name: Metaller Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Silence,500;
+ bonus bBaseAtk,5;
+ - Id: 4058
+ AegisName: Thara_Frog_Card
+ Name: Thara Frog Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,30;
+ bonus2 bSubRace,RC_Player_Human,30;
+ - Id: 4059
+ AegisName: Soldier_Andre_Card
+ Name: Soldier Andre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,30;
+ - Id: 4060
+ AegisName: Goblin_Card
+ Name: Goblin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Brute,20;
+ bonus2 bAddRace,RC_Player_Doram,20;
+ - Id: 4061
+ AegisName: Cornutus_Card
+ Name: Cornutus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus bDef,1;
+ - Id: 4062
+ AegisName: Anacondaq_Card
+ Name: Anacondaq Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Poison,20;
+ - Id: 4063
+ AegisName: Caramel_Card
+ Name: Caramel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Insect,20;
+ - Id: 4064
+ AegisName: Zerom_Card
+ Name: Zerom Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,3;
+ - Id: 4065
+ AegisName: Kaho_Card
+ Name: Kaho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Earth,20;
+ - Id: 4066
+ AegisName: Orc_Warrior_Card
+ Name: Orc Warrior Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Brute,30;
+ bonus2 bSubRace,RC_Player_Doram,30;
+ - Id: 4067
+ AegisName: Megalodon_Card
+ Name: Megalodon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Freeze,2000;
+ bonus bDef,1;
+ - Id: 4068
+ AegisName: Scorpion_Card
+ Name: Scorpion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Plant,20;
+ - Id: 4069
+ AegisName: Drainliar_Card
+ Name: Drainliar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Water,20;
+ - Id: 4070
+ AegisName: Eggyra_Card
+ Name: Eggyra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bSPrecovRate,15;
+ - Id: 4071
+ AegisName: Orc_Zombie_Card
+ Name: Orc Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Undead,30;
+ bonus bFlee,5;
+ - Id: 4072
+ AegisName: Golem_Card
+ Name: Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,5;
+ - Id: 4073
+ AegisName: Pirate_Skel_Card
+ Name: Pirate Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "MC_DISCOUNT",5;
+ - Id: 4074
+ AegisName: BigFoot_Card
+ Name: Bigfoot Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Insect,30;
+ - Id: 4075
+ AegisName: Argos_Card
+ Name: Argos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Stone,2000;
+ bonus bDef,1;
+ - Id: 4076
+ AegisName: Magnolia_Card
+ Name: Magnolia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,500;
+ bonus bBaseAtk,5;
+ - Id: 4077
+ AegisName: Phen_Card
+ Name: Phen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bNoCastCancel;
+ bonus bCastrate,25;
+ - Id: 4078
+ AegisName: Savage_Card
+ Name: Savage Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,3;
+ - Id: 4079
+ AegisName: Mantis_Card
+ Name: Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,3;
+ - Id: 4080
+ AegisName: Flora_Card
+ Name: Flora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Fish,20;
+ - Id: 4081
+ AegisName: Hode_Card
+ Name: Hode Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Earth,30;
+ bonus bFlee,5;
+ - Id: 4082
+ AegisName: Desert_Wolf_Card
+ Name: Desert Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddSize,Size_Small,15;
+ bonus bBaseAtk,5;
+ - Id: 4083
+ AegisName: Rafflesia_Card
+ Name: Rafflesia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Fish,30;
+ - Id: 4084
+ AegisName: Marine_Sphere_Card
+ Name: Marine Sphere Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "SM_MAGNUM",3;
+ - Id: 4085
+ AegisName: Orc_Skeleton_Card
+ Name: Orc Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Holy,20;
+ - Id: 4086
+ AegisName: Soldier_Skeleton_Card
+ Name: Soldier Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritical,9;
+ - Id: 4087
+ AegisName: Giearth_Card
+ Name: Giearth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Confusion,10000;
+ bonus2 bSubEle,Ele_Earth,15;
+ - Id: 4088
+ AegisName: Frilldora_Card
+ Name: Frilldora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 4089
+ AegisName: Sword_Fish_Card
+ Name: Swordfish Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ bonus bDef,1;
+ - Id: 4090
+ AegisName: Munak_Card
+ Name: Munak Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Stone,1500;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus bDef,1;
+ - Id: 4091
+ AegisName: Kobold_Card
+ Name: Kobold Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ bonus bCritical,4;
+ - Id: 4092
+ AegisName: Skel_Worker_Card
+ Name: Skeleton Worker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddSize,Size_Medium,15;
+ bonus bBaseAtk,5;
+ - Id: 4093
+ AegisName: Obeaune_Card
+ Name: Obeaune Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "AL_CURE",1;
+ - Id: 4094
+ AegisName: Archer_Skeleton_Card
+ Name: Archer Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 4095
+ AegisName: Marse_Card
+ Name: Marse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,30;
+ bonus bFlee,5;
+ - Id: 4096
+ AegisName: Zenorc_Card
+ Name: Zenorc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Poison,400;
+ bonus bBaseAtk,10;
+ - Id: 4097
+ AegisName: Matyr_Card
+ Name: Matyr Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bAgi,1;
+ - Id: 4098
+ AegisName: Dokebi_Card
+ Name: Dokebi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ bonus bDef,1;
+ - Id: 4099
+ AegisName: Pasana_Card
+ Name: Pasana Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ bonus bDef,1;
+ - Id: 4100
+ AegisName: Sohee_Card
+ Name: Sohee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxSPrate,15;
+ bonus bSPrecovRate,3;
+ - Id: 4101
+ AegisName: Sand_Man_Card
+ Name: Sandman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ bonus bDef,1;
+ - Id: 4102
+ AegisName: Whisper_Card
+ Name: Whisper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,20;
+ bonus2 bSubEle,Ele_Ghost,-50;
+ - Id: 4103
+ AegisName: Horong_Card
+ Name: Horong Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "MG_SIGHT",1;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 4104
+ AegisName: Requiem_Card
+ Name: Requiem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEff,Eff_Confusion,500;
+ - Id: 4105
+ AegisName: Marc_Card
+ Name: Marc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bResEff,Eff_Freeze,10000;
+ - Id: 4106
+ AegisName: Mummy_Card
+ Name: Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHit,20;
+ - Id: 4107
+ AegisName: Verit_Card
+ Name: Verit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 4108
+ AegisName: Myst_Card
+ Name: Myst Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Poison,30;
+ bonus bFlee,5;
+ - Id: 4109
+ AegisName: Jakk_Card
+ Name: Jakk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,30;
+ bonus bFlee,5;
+ - Id: 4110
+ AegisName: Ghoul_Card
+ Name: Ghoul Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Poison,2000;
+ bonus bDef,1;
+ - Id: 4111
+ AegisName: Strouf_Card
+ Name: Strouf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Demon,20;
+ - Id: 4112
+ AegisName: Marduk_Card
+ Name: Marduk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Silence,10000;
+ - Id: 4113
+ AegisName: Marionette_Card
+ Name: Marionette Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Ghost,30;
+ bonus bFlee,5;
+ - Id: 4114
+ AegisName: Argiope_Card
+ Name: Argiope Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Poison;
+ bonus bDef,1;
+ - Id: 4115
+ AegisName: Hunter_Fly_Card
+ Name: Hunter Fly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bHPDrainRate,30,15;
+ - Id: 4116
+ AegisName: Isis_Card
+ Name: Isis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Dark,30;
+ bonus bFlee,5;
+ - Id: 4117
+ AegisName: Side_Winder_Card
+ Name: Sidewinder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_DOUBLE",1;
+ bonus bDoubleRate,5;
+ - Id: 4118
+ AegisName: Petit_Card
+ Name: Earth Petite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace,RC_Dragon,20;
+ - Id: 4119
+ AegisName: Bathory_Card
+ Name: Bathory Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Dark;
+ - Id: 4120
+ AegisName: Petit__Card
+ Name: Sky Petite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,30;
+ - Id: 4121
+ AegisName: Phreeoni_Card
+ Name: Phreeoni Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHit,100;
+ - Id: 4122
+ AegisName: Deviruchi_Card
+ Name: Deviruchi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 4123
+ AegisName: Eddga_Card
+ Name: Eddga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,-25;
+ bonus bNoWalkDelay;
+ - Id: 4124
+ AegisName: Medusa_Card
+ Name: Medusa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bResEff,Eff_Stone,10000;
+ - Id: 4125
+ AegisName: Deviace_Card
+ Name: Deviace Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ 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;
+ - Id: 4126
+ AegisName: Minorous_Card
+ Name: Minorous Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddSize,Size_Large,15;
+ bonus bBaseAtk,5;
+ - Id: 4127
+ AegisName: Nightmare_Card
+ Name: Nightmare Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bResEff,Eff_Sleep,10000;
+ bonus bAgi,1;
+ - Id: 4128
+ AegisName: Golden_Bug_Card
+ Name: Golden Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bNoMagicDamage,100;
+ bonus bUseSPrate,100;
+ - Id: 4129
+ AegisName: Baphomet__Card
+ Name: Bapho Jr. Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,3;
+ bonus bCritical,1;
+ - Id: 4130
+ AegisName: Scorpion_King_Card
+ Name: Scorpion King Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Undead,20;
+ - Id: 4131
+ AegisName: Moonlight_Flower_Card
+ Name: Moonlight Flower Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 4132
+ AegisName: Mistress_Card
+ Name: Mistress Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bNoGemStone;
+ bonus bUseSPrate,25;
+ - Id: 4133
+ AegisName: Daydric_Card
+ Name: Raydric Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ - Id: 4134
+ AegisName: Dracula_Card
+ Name: Dracula Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPDrainRate,100,5;
+ - Id: 4135
+ AegisName: Orc_Load_Card
+ Name: Orc Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bShortWeaponDamageReturn,30;
+ - Id: 4136
+ AegisName: Khalitzburg_Card
+ Name: Khalitzburg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Demon,30;
+ - Id: 4137
+ AegisName: Drake_Card
+ Name: Drake Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bNoSizeFix;
+ - Id: 4138
+ AegisName: Anubis_Card
+ Name: Anubis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Angel,30;
+ - Id: 4139
+ AegisName: Joker_Card
+ Name: Joker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_STEAL",1;
+ - Id: 4140
+ AegisName: Knight_Of_Abyss_Card
+ Name: Abysmal Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddClass,Class_Boss,25;
+ - Id: 4141
+ AegisName: Evil_Druid_Card
+ Name: Evil Druid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefEle,Ele_Undead;
+ bonus bInt,1;
+ bonus bDef,1;
+ - Id: 4142
+ AegisName: Doppelganger_Card
+ Name: Doppelganger Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 4143
+ AegisName: Orc_Hero_Card
+ Name: Orc Hero Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,3;
+ bonus2 bResEff,Eff_Stun,10000;
+ - Id: 4144
+ AegisName: Osiris_Card
+ Name: Osiris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bRestartFullRecover;
+ - Id: 4145
+ AegisName: Berzebub_Card
+ Name: Berzebub Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCastrate,-30;
+ - Id: 4146
+ AegisName: Maya_Card
+ Name: Maya Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMagicDamageReturn,50;
+ - Id: 4147
+ AegisName: Baphomet_Card
+ Name: Baphomet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHit,-10;
+ bonus bSplashRange,1;
+ - Id: 4148
+ AegisName: Pharaoh_Card
+ Name: Pharaoh Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bUseSPrate,-30;
+ - Id: 4149
+ AegisName: Gargoyle_Card
+ Name: Gargoyle Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12028,RC_Insect,100;
+ - Id: 4150
+ AegisName: Goat_Card
+ Name: Goat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<6) {
+ bonus bDef,2;
+ bonus bMdef,5;
+ }
+ - Id: 4151
+ AegisName: Gajomart_Card
+ Name: Gajomart Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,-20;
+ bonus2 bExpAddRace,RC_Plant,10;
+ - Id: 4152
+ AegisName: Galapago_Card
+ Name: Galapago Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ 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;
+ - Id: 4153
+ AegisName: Crab_Card
+ Name: Crab Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1266,30;
+ - Id: 4154
+ AegisName: Rice_Cake_Boy_Card
+ Name: Dumpling Child Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace2,RC2_Goblin,30;
+ - Id: 4156
+ AegisName: Steam_Goblin_Card
+ Name: Goblin Steamrider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Formless,7;
+ - Id: 4157
+ AegisName: Goblin_Archer_Card
+ Name: Goblin Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Undead,7;
+ - Id: 4158
+ AegisName: Flying_Deleter_Card
+ Name: Sky Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHPrecovRate,-100;
+ bonus bHPGainValue,100;
+ - Id: 4159
+ AegisName: Nine_Tail_Card
+ Name: Nine Tail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,2;
+ if (getrefine()>8)
+ bonus bFlee,20;
+ - Id: 4160
+ AegisName: Antique_Firelock_Card
+ Name: Firelock Soldier Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,2;
+ if (getrefine()>8) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ }
+ - Id: 4161
+ AegisName: Grand_Peco_Card
+ Name: Grand Peco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;
+ - Id: 4162
+ AegisName: Grizzly_Card
+ Name: Grizzly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Blind,300;
+ - Id: 4163
+ AegisName: Gryphon_Card
+ Name: Gryphon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,2;
+ bonus bCritical,7;
+ if (BaseClass == Job_Swordman)
+ bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10;
+ - Id: 4164
+ AegisName: Gullinbursti_Card
+ Name: Gullinbursti Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Fish,-20;
+ bonus2 bExpAddRace,RC_Fish,10;
+ - Id: 4165
+ AegisName: Gig_Card
+ Name: Gig Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Insect,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4166
+ AegisName: Nightmare_Terror_Card
+ Name: Nightmare Terror Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Curse,300;
+ - Id: 4167
+ AegisName: Neraid_Card
+ Name: Nereid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Brute,5;
+ bonus2 bSPGainRace,RC_Player_Doram,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4168
+ AegisName: Dark_Lord_Card
+ Name: Dark Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;
+ - Id: 4169
+ AegisName: Dark_Illusion_Card
+ Name: Dark Illusion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,-10;
+ bonus bMaxSPrate,-10;
+ bonus bCastrate,-10;
+ - Id: 4170
+ AegisName: Dark_Frame_Card
+ Name: Dark Frame Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stone,600;
+ - Id: 4171
+ AegisName: Dark_Priest_Card
+ Name: Dark Priest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPVanishRate,50,10;
+ if (BaseJob == Job_Sage)
+ bonus bSPDrainValue,1;
+ - Id: 4172
+ AegisName: The_Paper_Card
+ Name: The Paper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,20;
+ bonus bSPDrainValue,-1;
+ - Id: 4173
+ AegisName: Demon_Pungus_Card
+ Name: Demon Pungus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Sleep,600;
+ - Id: 4174
+ AegisName: Deviling_Card
+ Name: Deviling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ 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;
+ - Id: 4175
+ AegisName: Poison_Toad_Card
+ Name: Poisonous Toad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"TF_POISON",1,20;
+ bonus2 bAddSkillBlow,52,5;
+ - Id: 4176
+ AegisName: Dullahan_Card
+ Name: Dullahan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Dragon,7;
+ - Id: 4177
+ AegisName: Dryad_Card
+ Name: Dryad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,993,RC_Plant,100;
+ bonus2 bSubEle,Ele_Earth,10;
+ - Id: 4178
+ AegisName: Dragon_Tail_Card
+ Name: Dragon Tail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 4180
+ AegisName: Driller_Card
+ Name: Driller Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Dragon,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4181
+ AegisName: Disguise_Card
+ Name: Disguise Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);
+ - Id: 4182
+ AegisName: Diabolic_Card
+ Name: Diabolic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Demon,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4183
+ AegisName: Vagabond_Wolf_Card
+ Name: Vagabond Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ - Id: 4184
+ AegisName: Lava_Golem_Card
+ Name: Lava Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace2,RC2_Golem,30;
+ - Id: 4185
+ AegisName: Rideword_Card
+ Name: Rideword Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ if (BaseClass == Job_Acolyte) {
+ bonus bInt,1;
+ bonus bMdef,1;
+ }
+ - Id: 4186
+ AegisName: Raggler_Card
+ Name: Raggler Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,1;
+ bonus bVit,1;
+ - Id: 4187
+ AegisName: Raydric_Archer_Card
+ Name: Raydric Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12030,RC_Demon,100;
+ - Id: 4188
+ AegisName: Leib_Olmai_Card
+ Name: Leib Olmai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAddMonsterDropItem,990,RC_Brute,100;
+ - Id: 4189
+ AegisName: Wraith_Dead_Card
+ Name: Wraith Dead Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Curse,600;
+ - Id: 4190
+ AegisName: Wraith_Card
+ Name: Wraith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12027,RC_Undead,100;
+ - Id: 4191
+ AegisName: Loli_Ruri_Card
+ Name: Loli Ruri Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;
+ - Id: 4192
+ AegisName: Rotar_Zairo_Card
+ Name: Rotar Zairo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Fish,7;
+ - Id: 4193
+ AegisName: Lude_Card
+ Name: Lude Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;
+ - Id: 4194
+ AegisName: Rybio_Card
+ Name: Rybio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);
+ - Id: 4195
+ AegisName: Leaf_Cat_Card
+ Name: Leaf Cat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,10;
+ bonus3 bAddMonsterDropItem,991,RC_Fish,100;
+ - Id: 4196
+ AegisName: Marin_Card
+ Name: Marin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,909,2000;
+ bonus2 bAddMonsterDropItem,7126,10;
+ - Id: 4197
+ AegisName: Mastering_Card
+ Name: Mastering Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 4198
+ AegisName: Maya_Puple_Card
+ Name: Maya Purple Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bIntravision;
+ - Id: 4199
+ AegisName: Merman_Card
+ Name: Merman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,10;
+ - Id: 4200
+ AegisName: Megalith_Card
+ Name: Megalith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,7;
+ - Id: 4201
+ AegisName: Majoruros_Card
+ Name: Majoruros Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stun,600;
+ - Id: 4202
+ AegisName: Civil_Servant_Card
+ Name: Mao Guai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Ghost,20;
+ - Id: 4203
+ AegisName: Mutant_Dragon_Card
+ Name: Mutant Dragonoid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,15;
+ bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL") == 10),50;
+ - Id: 4204
+ AegisName: Mini_Demon_Card
+ Name: Mini Demon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Brute,-20;
+ bonus2 bSubRace,RC_Player_Doram,-20;
+ bonus2 bExpAddRace,RC_Brute,10;
+ - Id: 4205
+ AegisName: Mimic_Card
+ Name: Mimic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,603,10;
+ - Id: 4206
+ AegisName: Mystcase_Card
+ Name: Myst Case Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,644,30;
+ - Id: 4207
+ AegisName: Mysteltainn_Card
+ Name: Mysteltainn Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubSize,Size_Small,25;
+ bonus bDef,1;
+ - Id: 4208
+ AegisName: Miyabi_Ningyo_Card
+ Name: Miyabi Doll Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"MG_FROSTDIVER",5;
+ - Id: 4209
+ AegisName: Violy_Card
+ Name: Violy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER") == 5),20;
+ - Id: 4210
+ AegisName: Wander_Man_Card
+ Name: Wanderer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 4212
+ AegisName: Bon_Gun_Card
+ Name: Bongun Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"SM_BASH",1,20;
+ bonus2 bAddSkillBlow,"SM_BASH",5;
+ bonus2 bAddDefMonster,1026,-100;
+ - Id: 4213
+ AegisName: Brilight_Card
+ Name: Brilight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,600;
+ - Id: 4214
+ AegisName: Bloody_Murderer_Card
+ Name: Bloody Murderer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Insect,7;
+ - Id: 4215
+ AegisName: Blazzer_Card
+ Name: Blazer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Food,600;
+ - Id: 4216
+ AegisName: Sasquatch_Card
+ Name: Sasquatch Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Freeze,600;
+ - Id: 4217
+ AegisName: Live_Peach_Tree_Card
+ Name: Enchanted Peach Tree Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL") == 10),20;
+ - Id: 4218
+ AegisName: Succubus_Card
+ Name: Succubus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,-3;
+ bonus bHPrecovRate,-20;
+ bonus bMaxHP,1000;
+ - Id: 4219
+ AegisName: Sageworm_Card
+ Name: Sage Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,715,30;
+ bonus2 bAddMonsterDropItem,716,30;
+ bonus2 bAddMonsterDropItem,717,30;
+ - Id: 4220
+ AegisName: Solider_Card
+ Name: Solider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,2;
+ bonus bMdef,2;
+ - Id: 4221
+ AegisName: Skeleton_General_Card
+ Name: Skeleton General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Insect,-20;
+ bonus2 bExpAddRace,RC_Insect,10;
+ - Id: 4222
+ AegisName: Skel_Prisoner_Card
+ Name: Skeleton Prisoner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Sleep,300;
+ - Id: 4223
+ AegisName: Stalactic_Golem_Card
+ Name: Stalactic Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,2000;
+ - Id: 4224
+ AegisName: Stem_Worm_Card
+ Name: Stem Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12032,RC_Brute,100;
+ - Id: 4225
+ AegisName: Stone_Shooter_Card
+ Name: Stone Shooter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bHit,10;
+ - Id: 4226
+ AegisName: Sting_Card
+ Name: Sting Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,2;
+ if (getrefine()>8)
+ bonus bMdef,5;
+ - Id: 4227
+ AegisName: Spring_Rabbit_Card
+ Name: Spring Rabbit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12031,RC_Fish,100;
+ - Id: 4229
+ AegisName: C_Tower_Manager_Card
+ Name: Tower Keeper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus bCastrate,-5;
+ - Id: 4230
+ AegisName: Shinobi_Card
+ Name: Shinobi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;
+ - Id: 4231
+ AegisName: Increase_Soil_Card
+ Name: Mi Gao Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ 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;
+ - Id: 4233
+ AegisName: Baby_Leopard_Card
+ Name: Baby Leopard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,3;
+ if (BaseClass == Job_Merchant)
+ bonus bUnbreakableArmor;
+ - Id: 4234
+ AegisName: Anolian_Card
+ Name: Anolian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION") == 10),30;
+ - Id: 4235
+ AegisName: Cookie_XMAS_Card
+ Name: Christmas Cookie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Angel,-20;
+ bonus2 bExpAddRace,RC_Angel,10;
+ - Id: 4236
+ AegisName: Amon_Ra_Card
+ Name: Amon Ra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAllStats,1;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));
+ - Id: 4237
+ AegisName: Owl_Duke_Card
+ Name: Owl Duke Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;
+ - Id: 4238
+ AegisName: Owl_Baron_Card
+ Name: Owl Baron Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;
+ - Id: 4239
+ AegisName: Iron_Fist_Card
+ Name: Iron Fist Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Formless,-20;
+ bonus2 bExpAddRace,RC_Formless,10;
+ - Id: 4240
+ AegisName: Arclouse_Card
+ Name: Arclouze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<6) {
+ bonus bDef,2;
+ bonus bMdef,3;
+ }
+ - Id: 4241
+ AegisName: Archangeling_Card
+ Name: Arc Angeling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,300;
+ if (readparam(bLuk)>=77) {
+ bonus bHPrecovRate,100;
+ bonus bSPrecovRate,100;
+ }
+ - Id: 4242
+ AegisName: Apocalips_Card
+ Name: Apocalipse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,2;
+ if (getrefine()>8)
+ bonus bMaxHP,800;
+ - Id: 4243
+ AegisName: Antonio_Card
+ Name: Antonio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;
+ - Id: 4244
+ AegisName: Alarm_Card
+ Name: Alarm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200;
+ bonus bMaxHP,300;
+ bonus bVit,1;
+ - Id: 4245
+ AegisName: Am_Mut_Card
+ Name: Am Mut Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,-20;
+ bonus2 bSubRace,RC_Player_Human,-20;
+ bonus2 bExpAddRace,RC_DemiHuman,10;
+ - Id: 4246
+ AegisName: Assulter_Card
+ Name: Assaulter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_DemiHuman,7;
+ bonus2 bCriticalAddRace,RC_Player_Human,7;
+ - Id: 4247
+ AegisName: Aster_Card
+ Name: Aster Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1074,30;
+ - Id: 4248
+ AegisName: Ancient_Mummy_Card
+ Name: Ancient Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;
+ - Id: 4249
+ AegisName: Ancient_Worm_Card
+ Name: Ancient Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Demon,-20;
+ bonus2 bExpAddRace,RC_Demon,10;
+ - Id: 4250
+ AegisName: Executioner_Card
+ Name: Executioner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubSize,Size_Large,25;
+ bonus bDef,1;
+ - Id: 4251
+ AegisName: Elder_Card
+ Name: Elder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLongAtkDef,5;
+ - Id: 4253
+ AegisName: Alice_Card
+ Name: Alice Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubClass,Class_Boss,40;
+ bonus2 bSubClass,Class_Normal,-40;
+ - Id: 4254
+ AegisName: Tirfing_Card
+ Name: Ogretooth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ bonus bDef,1;
+ - Id: 4255
+ AegisName: Orc_Lady_Card
+ Name: Orc Lady Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace2,3,30;
+ - Id: 4256
+ AegisName: Orc_Archer_Card
+ Name: Orc Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;
+ - Id: 4257
+ AegisName: Wild_Rose_Card
+ Name: Wild Rose Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ if (BaseClass == Job_Thief)
+ bonus bFlee2,5;
+ - Id: 4258
+ AegisName: Wicked_Nymph_Card
+ Name: Evil Nymph Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,50;
+ - Id: 4259
+ AegisName: Wooden_Golem_Card
+ Name: Wooden Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus bHPrecovRate,30;
+ - Id: 4260
+ AegisName: Wootan_Shooter_Card
+ Name: Wootan Shooter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Confusion,2000;
+ - Id: 4261
+ AegisName: Wootan_Fighter_Card
+ Name: Wootan Fighter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Bleeding,2000;
+ - Id: 4262
+ AegisName: Evil_Cloud_Hermit_Card
+ Name: Cloud Hermit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12029,RC_Plant,100;
+ - Id: 4263
+ AegisName: Incant_Samurai_Card
+ Name: Samurai Spector Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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;
+ }
+ - Id: 4264
+ AegisName: Wind_Ghost_Card
+ Name: Wind Ghost Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL") == 10),20;
+ - Id: 4265
+ AegisName: Li_Me_Mang_Ryang_Card
+ Name: Jing Guai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12033,RC_Angel,100;
+ - Id: 4266
+ AegisName: Eclipse_Card
+ Name: Eclipse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,1;
+ - Id: 4267
+ AegisName: Explosion_Card
+ Name: Explosion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,-20;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 4268
+ AegisName: Injustice_Card
+ Name: Injustice Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"AS_SONICBLOW",1,50;
+ - Id: 4269
+ AegisName: Incubus_Card
+ Name: Incubus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,-3;
+ bonus bSPrecovRate,-20;
+ bonus bMaxSP,150;
+ - Id: 4270
+ AegisName: Giant_Spider_Card
+ Name: Giant Spider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Poison,600;
+ - Id: 4271
+ AegisName: Giant_Honet_Card
+ Name: Giant Hornet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus3 bAddMonsterDropItem,992,RC_Insect,100;
+ - Id: 4272
+ AegisName: Dancing_Dragon_Card
+ Name: Zhu Po Long Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ bonus bCritical,3;
+ - Id: 4273
+ AegisName: Shellfish_Card
+ Name: Shell Fish Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1073,30;
+ - Id: 4274
+ AegisName: Zombie_Master_Card
+ Name: Zombie Master Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Undead,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4275
+ AegisName: Zombie_Prisoner_Card
+ Name: Zombie Prisoner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Undead,-20;
+ bonus2 bExpAddRace,RC_Undead,10;
+ - Id: 4276
+ AegisName: Lord_Of_Death_Card
+ Name: Lord of The Dead Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ 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;
+ - Id: 4277
+ AegisName: Zherlthsh_Card
+ Name: Zealotus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,2;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 4278
+ AegisName: Gibbet_Card
+ Name: Gibbet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,5;
+ - Id: 4279
+ AegisName: Deleter_Card
+ Name: Earth Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bSPrecovRate,-100;
+ bonus bSPGainValue,10;
+ UnEquipScript: |
+ heal 0,-100;
+ - Id: 4280
+ AegisName: Geographer_Card
+ Name: Geographer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING") == 10),30;
+ - Id: 4281
+ AegisName: Zipper_Bear_Card
+ Name: Zipper Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bSPDrainValue,-1;
+ if (BaseClass == Job_Merchant)
+ bonus bUnbreakableWeapon;
+ - Id: 4282
+ AegisName: Tengu_Card
+ Name: Tengu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;
+ - Id: 4283
+ AegisName: Greatest_General_Card
+ Name: Greatest General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass == Job_Acolyte);
+ - Id: 4284
+ AegisName: Chepet_Card
+ Name: Chepet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus4 bAutoSpell,"AL_HEAL",5,50,1;
+ - Id: 4285
+ AegisName: Choco_Card
+ Name: Choco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee2,5;
+ bonus bFlee,10;
+ - Id: 4286
+ AegisName: Karakasa_Card
+ Name: Karakasa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);
+ - Id: 4287
+ AegisName: Kapha_Card
+ Name: Kapha Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,8;
+ - Id: 4288
+ AegisName: Carat_Card
+ Name: Carat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,2;
+ if (getrefine()>8)
+ bonus bMaxSP,150;
+ - Id: 4289
+ AegisName: Caterpillar_Card
+ Name: Caterpillar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Plant,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4290
+ AegisName: Cat_O_Nine_Tail_Card
+ Name: Cat O' Nine Tails Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMdef,3;
+ bonus bMagicDamageReturn,5;
+ - Id: 4291
+ AegisName: Kobold_Leader_Card
+ Name: Kobold Leader Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddRace2,RC2_Kobold,30;
+ - Id: 4292
+ AegisName: Kobold_Archer_Card
+ Name: Kobold Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Plant,7;
+ - Id: 4293
+ AegisName: Cookie_Card
+ Name: Cookie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,2;
+ bonus2 bSkillAtk,"AL_HOLYLIGHT",10;
+ - Id: 4294
+ AegisName: Quve_Card
+ Name: Quve Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;
+ - Id: 4295
+ AegisName: Kraben_Card
+ Name: Kraben Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Blind,600;
+ - Id: 4296
+ AegisName: Cramp_Card
+ Name: Cramp Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bGetZenyNum,500,1;
+ - Id: 4297
+ AegisName: Cruiser_Card
+ Name: Cruiser Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Brute,7;
+ bonus2 bCriticalAddRace,RC_Player_Doram,7;
+ - Id: 4298
+ AegisName: Cremy_Fear_Card
+ Name: Creamy Fear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Confusion,600;
+ - Id: 4299
+ AegisName: Clock_Card
+ Name: Clock Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD") == 10),30;
+ UnEquipScript: |
+ sc_end SC_AUTOGUARD;
+ - Id: 4300
+ AegisName: Chimera_Card
+ Name: Chimera Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob == Job_Assassin);
+ - Id: 4301
+ AegisName: Killer_Mantis_Card
+ Name: Killer Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Bleeding,600;
+ - Id: 4302
+ AegisName: Tao_Gunka_Card
+ Name: Tao Gunka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,100;
+ bonus bDef,-50;
+ bonus bMdef,-50;
+ - Id: 4303
+ AegisName: Whisper_Boss_Card
+ Name: Giant Whisper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ 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;
+ - Id: 4304
+ AegisName: Tamruan_Card
+ Name: Tamruan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,2;
+ bonus2 bSkillAtk,"CR_SHIELDCHARGE",10;
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;
+ - Id: 4305
+ AegisName: Turtle_General_Card
+ Name: Turtle General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddClass,Class_All,20;
+ bonus3 bAutoSpell,"SM_MAGNUM",10,30;
+ - Id: 4306
+ AegisName: Toad_Card
+ Name: Toad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee2,1;
+ - Id: 4307
+ AegisName: Kind_Of_Beetle_Card
+ Name: Beetle King Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Fish,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4308
+ AegisName: Tri_Joint_Card
+ Name: Tri Joint Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Formless,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4309
+ AegisName: Parasite_Card
+ Name: Parasite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bSubRace,RC_Formless,5;
+ - Id: 4310
+ AegisName: Panzer_Goblin_Card
+ Name: Panzer Goblin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Demon,7;
+ - Id: 4311
+ AegisName: Permeter_Card
+ Name: Permeter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Dark,15;
+ bonus2 bSubEle,Ele_Undead,15;
+ - Id: 4312
+ AegisName: Fur_Seal_Card
+ Name: Seal Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE") == 5),50,0;
+ - Id: 4314
+ AegisName: Penomena_Card
+ Name: Penomena Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Formless,30;
+ - Id: 4315
+ AegisName: Pest_Card
+ Name: Pest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);
+ - Id: 4316
+ AegisName: Fake_Angel_Card
+ Name: False Angel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_Angel,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4317
+ AegisName: Mobster_Card
+ Name: Mobster Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritAtkRate,15;
+ if (BaseClass == Job_Thief)
+ bonus bCritical,4;
+ - Id: 4318
+ AegisName: Knight_Windstorm_Card
+ Name: Stormy Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"WZ_STORMGUST",2,20;
+ bonus2 bAddEff,Eff_Freeze,2000;
+ - Id: 4319
+ AegisName: Freezer_Card
+ Name: Freezer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,300;
+ if (getrefine()>=9)
+ bonus2 bSkillAtk,"SM_BASH",10;
+ - Id: 4320
+ AegisName: Bloody_Knight_Card
+ Name: Bloody Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"WZ_METEOR",1,20;
+ - Id: 4321
+ AegisName: Hylozoist_Card
+ Name: Hylozoist Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bClassChange,100;
+ - Id: 4322
+ AegisName: High_Orc_Card
+ Name: High Orc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDef,1;
+ bonus bShortWeaponDamageReturn,5;
+ - Id: 4323
+ AegisName: Garm_Baby_Card
+ Name: Hatii Babe Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;
+ - Id: 4324
+ AegisName: Garm_Card
+ Name: Hatii Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Freeze,5000;
+ - Id: 4325
+ AegisName: Harpy_Card
+ Name: Harpy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bSkillAtk,"MG_NAPALMBEAT",5;
+ - Id: 4326
+ AegisName: See_Otter_Card
+ Name: Sea-Otter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCastrate,30;
+ bonus bNoCastCancel;
+ bonus2 bSkillAtk,"MG_FIREWALL",5;
+ - Id: 4328
+ AegisName: Hyegun_Card
+ Name: Yao Jun Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,15;
+ bonus bCritical,1;
+ - Id: 4329
+ AegisName: Phendark_Card
+ Name: Phendark Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSPGainRace,RC_DemiHuman,5;
+ bonus2 bSPGainRace,RC_Player_Human,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4330
+ AegisName: Dark_Snake_Lord_Card
+ Name: Evil Snake Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,3;
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Curse,10000;
+ - Id: 4331
+ AegisName: Heater_Card
+ Name: Heater Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCritical,3;
+ if (BaseClass == Job_Swordman)
+ bonus bFlee2,3;
+ - Id: 4332
+ AegisName: Waste_Stove_Card
+ Name: Waste Stove Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bInt,1;
+ - Id: 4333
+ AegisName: Venomous_Card
+ Name: Venomous Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4334
+ AegisName: Noxious_Card
+ Name: Noxious Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLongAtkDef,10;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 4335
+ AegisName: Pitman_Card
+ Name: Pitman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4336
+ AegisName: Ungoliant_Card
+ Name: Ungoliant Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHPrecovRate,10;
+ bonus2 bResEff,Eff_Bleeding,10000;
+ - Id: 4337
+ AegisName: Porcellio_Card
+ Name: Porcellio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,25;
+ bonus bDef,-5;
+ - Id: 4338
+ AegisName: Obsidian_Card
+ Name: Obsidian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,readparam(bDex)/18;
+ - Id: 4339
+ AegisName: Mineral_Card
+ Name: Mineral Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,-25;
+ bonus bDef,3;
+ - Id: 4340
+ AegisName: Teddy_Bear_Card
+ Name: Teddy Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubRace,RC_Undead,30;
+ - Id: 4341
+ AegisName: Metaling_Card
+ Name: Metaling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;
+ - Id: 4342
+ AegisName: Rsx_0806_Card
+ Name: RSX-0806 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,3;
+ bonus bUnbreakableArmor;
+ bonus bNoKnockback;
+ - Id: 4343
+ AegisName: Mole_Card
+ Name: Holden Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,2;
+ - Id: 4344
+ AegisName: Anopheles_Card
+ Name: Anopheles Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12058,RC_Insect,50;
+ - Id: 4345
+ AegisName: Hill_Wind_Card
+ Name: Hill Wind Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"MG_THUNDERSTORM",5;
+ bonus2 bSkillAtk,"WZ_JUPITEL",5;
+ bonus2 bSkillAtk,"WZ_VERMILION",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4346
+ AegisName: Ygnizem_Card
+ Name: Egnigem Cenia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,readparam(bInt)/18;
+ - Id: 4347
+ AegisName: Armaia_Card
+ Name: Armeyer Dinze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12053,RC_Fish,50;
+ - Id: 4348
+ AegisName: Whikebain_Card
+ Name: Wickebine Tres Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;
+ - Id: 4349
+ AegisName: Erend_Card
+ Name: Errende Ebecee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;
+ - Id: 4350
+ AegisName: Rawrel_Card
+ Name: Laurell Weinder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"WZ_FROSTNOVA",3;
+ bonus2 bSkillAtk,"WZ_STORMGUST",3;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4351
+ AegisName: Kavac_Card
+ Name: Kavach Icarus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<=4) {
+ bonus bFlee,20;
+ bonus bFlee2,1;
+ }
+ else {
+ bonus bFlee,10;
+ }
+ - Id: 4352
+ AegisName: B_Ygnizem_Card
+ Name: General Egnigem Cenia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bHPRegenRate,50,10000;
+ bonus2 bSPRegenRate,10,10000;
+ - Id: 4353
+ AegisName: Removal_Card
+ Name: Remover Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,800-40*getrefine();
+ bonus bHPrecovRate,10;
+ - Id: 4354
+ AegisName: Gemini_Card
+ Name: Gemini-S58 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ 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;
+ }
+ - Id: 4355
+ AegisName: Gremlin_Card
+ Name: Gremlin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12043,RC_Brute,50;
+ - Id: 4356
+ AegisName: Beholder_Card
+ Name: Beholder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "SA_CASTCANCEL",1;
+ - Id: 4357
+ AegisName: B_Seyren_Card
+ Name: Lord Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "LK_BERSERK",1;
+ bonus bMaxHPrate,-50;
+ - Id: 4358
+ AegisName: Seyren_Card
+ Name: Seyren Windsor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,getrefine()-6;
+ - Id: 4359
+ AegisName: B_Eremes_Card
+ Name: Assassin Cross Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "AS_CLOAKING",3;
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 4360
+ AegisName: Eremes_Card
+ Name: Eremes Guile Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 4361
+ AegisName: B_Harword_Card
+ Name: MasterSmith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBreakWeaponRate,1000;
+ bonus bBreakArmorRate,700;
+ - Id: 4362
+ AegisName: Harword_Card
+ Name: Howard Alt-Eisen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAspdRate,-5;
+ bonus bHit,30;
+ - Id: 4363
+ AegisName: B_Magaleta_Card
+ Name: High Priest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0;
+ - Id: 4364
+ AegisName: Magaleta_Card
+ Name: Margaretha Sorin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;
+ - Id: 4365
+ AegisName: B_Katrinn_Card
+ Name: High Wizard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,100;
+ bonus bCastrate,100;
+ bonus bSPrecovRate,-100;
+ UnEquipScript: |
+ heal 0,-2000;
+ - Id: 4366
+ AegisName: Katrinn_Card
+ Name: Kathryne Keyron Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCastrate,getrefine()*-1;
+ if (getrefine()>=9) {
+ bonus bMatkRate,2;
+ }
+ - Id: 4367
+ AegisName: B_Shecil_Card
+ Name: Sniper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bHPDrainRate,50,20;
+ bonus bHPrecovRate,-10;
+ - Id: 4368
+ AegisName: Shecil_Card
+ Name: Cecil Damon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bHit,-30;
+ - Id: 4369
+ AegisName: Venatu_Card
+ Name: Venatu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,readparam(bAgi)/18;
+ - Id: 4370
+ AegisName: Dimik_Card
+ Name: Dimik Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,getrefine()-5;
+ - Id: 4371
+ AegisName: Archdam_Card
+ Name: Archdam Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bCastrate,20;
+ - Id: 4372
+ AegisName: Bacsojin_Card
+ Name: White Lady Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHealPower,30;
+ bonus bUseSPrate,15;
+ - Id: 4373
+ AegisName: Chung_E_Card
+ Name: Green Maiden Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bLuk,getrefine()-5;
+ bonus bCritical,getrefine();
+ - Id: 4374
+ AegisName: Apocalips_H_Card
+ Name: Vesper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,30;
+ - Id: 4375
+ AegisName: Orc_Baby_Card
+ Name: Orc Baby Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHPrate,-40;
+ bonus bMaxSPrate,50;
+ bonus2 bAddMonsterDropItem,513,200;
+ bonus2 bAddItemHealRate,513,100;
+ - Id: 4377
+ AegisName: Green_Iguana_Card
+ Name: Grove Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12063,RC_Formless,50;
+ - Id: 4378
+ AegisName: Acidus_Card
+ Name: Gold Acidus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ 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;
+ }
+ - Id: 4379
+ AegisName: Acidus__Card
+ Name: Blue Acidus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getrefine()<=4) {
+ bonus bSPrecovRate,5;
+ bonus bMaxSP,80;
+ }
+ else {
+ bonus bMaxSP,40;
+ }
+ - Id: 4380
+ AegisName: Ferus_Card
+ Name: Red Ferus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",5;
+ bonus2 bSkillAtk,"WZ_METEOR",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4381
+ AegisName: Ferus__Card
+ Name: Green Ferus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHPrate,10;
+ - Id: 4382
+ AegisName: Novus__Card
+ Name: Yellow Novus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bHPrecovRate,10;
+ - Id: 4383
+ AegisName: Novus_Card
+ Name: Red Novus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4384
+ AegisName: Hydro_Card
+ Name: Hydrolancer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;
+ - Id: 4385
+ AegisName: Dragon_Egg_Card
+ Name: Dragon Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;
+ - Id: 4386
+ AegisName: Detale_Card
+ Name: Detardeurus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,readparam(bLuk)/18;
+ - Id: 4388
+ AegisName: Deathword_Card
+ Name: Death Word Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"MG_NAPALMBEAT",5;
+ bonus2 bSkillAtk,"MG_SOULSTRIKE",5;
+ bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4389
+ AegisName: Plasma_Card
+ Name: Plasma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12118,50;
+ bonus2 bAddMonsterDropItem,12119,50;
+ bonus2 bAddMonsterDropItem,12120,50;
+ bonus2 bAddMonsterDropItem,12121,50;
+ - Id: 4390
+ AegisName: Breeze_Card
+ Name: Breeze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ - Id: 4391
+ AegisName: Retribution_Card
+ Name: Baroness of Retribution Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddMonsterDropItem,12068,RC_Angel,50;
+ - Id: 4392
+ AegisName: Observation_Card
+ Name: Dame of Sentinel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDex,readparam(bVit)/18;
+ - Id: 4393
+ AegisName: Shelter_Card
+ Name: Mistress of Shelter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,readparam(bStr)/18;
+ - Id: 4394
+ AegisName: Solace_Card
+ Name: Lady Solace Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (BaseJob == Job_Priest)
+ bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;
+ - Id: 4395
+ AegisName: Tha_Maero_Card
+ Name: Maero of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus3 bAutoSpell,"AL_DECAGI",3,50;
+ - Id: 4396
+ AegisName: Tha_Odium_Card
+ Name: Odium of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,getrefine()-5;
+ - Id: 4397
+ AegisName: Tha_Despero_Card
+ Name: Despero of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,getrefine()-6;
+ - Id: 4398
+ AegisName: Tha_Dolor_Card
+ Name: Dolor of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,10;
+ - Id: 4399
+ AegisName: Thanatos_Card
+ Name: Memory of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ bonus bSPDrainValue,-1;
+ bonus bDef,-30;
+ bonus bFlee,-30;
+ - Id: 4400
+ AegisName: Aliza_Card
+ Name: Aliza Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob == Job_Dancer);
+ - Id: 4401
+ AegisName: Alicel_Card
+ Name: Alicel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,10;
+ bonus bDef,-5;
+ - Id: 4402
+ AegisName: Aliot_Card
+ Name: Aliot Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 4403
+ AegisName: Kiel_Card
+ Name: Kiel-D-01 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bDelayRate,-30;
+ - Id: 4404
+ AegisName: Skogul_Card
+ Name: Skogul Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4405
+ AegisName: Frus_Card
+ Name: Frus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMagicDamageReturn,getrefine()*2;
+ if (BaseClass == Job_Mage)
+ bonus bMdef,3;
+ - Id: 4406
+ AegisName: Skeggiold_Card
+ Name: Skeggiold Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,2;
+ - Id: 4407
+ AegisName: Randgris_Card
+ Name: Randgris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMatkRate,5;
+ bonus bDef,-10;
+ if (BaseClass == Job_Mage)
+ bonus bMaxSP,100;
+ - Id: 4410
+ AegisName: Echio_Card
+ Name: Echio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,15;
+ if (BaseClass == Job_Swordman)
+ bonus bMaxHP,500;
+ - Id: 4411
+ AegisName: Vanberk_Card
+ Name: Vanberk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bStr,2;
+ autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 4412
+ AegisName: Isilla_Card
+ Name: Isilla Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "MG_STONECURSE",1;
+ bonus2 bResEff,Eff_Stone,3000;
+ bonus bMdef,10;
+ - Id: 4415
+ AegisName: Snowier_Card
+ Name: Snowier Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddMonsterDropItem,536,2000;
+ bonus2 bAddItemHealRate,536,100;
+ - Id: 4416
+ AegisName: Siroma_Card
+ Name: Siroma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"MG_COLDBOLT",25;
+ bonus2 bCastrate,"MG_COLDBOLT",-25;
+ - Id: 4417
+ AegisName: Ice_Titan_Card
+ Name: Ice Titan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bVit,2;
+ autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";
+ - Id: 4418
+ AegisName: Gazeti_Card
+ Name: Gazeti Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_COLDBOLT",2,100;
+ - Id: 4419
+ AegisName: Ktullanux_Card
+ Name: Ktullanux Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bAddEle,Ele_Fire,50;
+ bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;
+ - Id: 4420
+ AegisName: Muscipular_Card
+ Name: Muscipular Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;
+ - Id: 4421
+ AegisName: Drosera_Card
+ Name: Drosera Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bCriticalLong,15;
+ - Id: 4422
+ AegisName: Roween_Card
+ Name: Roween Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bFlee,5;
+ bonus bFlee2,3;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bCriticalAddRace,RC_Fish,15;
+ - Id: 4423
+ AegisName: Galion_Card
+ Name: Galion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHit,5;
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 4424
+ AegisName: Stapo_Card
+ Name: Stapo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ skill "TF_PICKSTONE",1;
+ skill "TF_THROWSTONE",1;
+ - Id: 4425
+ AegisName: Atroce_Card
+ Name: Atroce Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,25;
+ autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 4426
+ AegisName: Byorgue_Card
+ Name: Byorgue Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (BaseJob == Job_Rogue) {
+ bonus bMatkRate,10;
+ bonus2 bAddClass,Class_All,10;
+ }
+ - Id: 4427
+ AegisName: Sword_Guardian_Card
+ Name: Sword Guardian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",40;
+ bonus2 bSkillAtk,"WZ_METEOR",40;
+ - Id: 4430
+ AegisName: Ifrit_Card
+ Name: Ifrit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_FIREBALL",5,20;
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,20;
+ - Id: 4432
+ AegisName: Magmaring_Card
+ Name: Magmaring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ 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;
+ - Id: 4433
+ AegisName: Imp_Card
+ Name: Imp Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSkillAtk,"MG_FIREBOLT",25;
+ bonus2 bCastrate,"MG_FIREBOLT",-25;
+ - Id: 4434
+ AegisName: Knocker_Card
+ Name: Knocker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ 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;
+ - Id: 4436
+ AegisName: Ragged_Zombie_Card
+ Name: Ragged Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ 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;
+ - Id: 4437
+ AegisName: Hell_Poodle_Card
+ Name: Hell Poodle Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bHit,1;
+ bonus2 bAddItemHealRate,517,100;
+ bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;
+ - Id: 4438
+ AegisName: Banshee_Card
+ Name: Banshee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ 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;
+ }
+ - Id: 4439
+ AegisName: Flame_Skull_Card
+ Name: Flame Skull Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ 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;
+ - Id: 4440
+ AegisName: Necromancer_Card
+ Name: Necromancer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ 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;
+ - Id: 4442
+ AegisName: Tatacho_Card
+ Name: Tatacho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ bonus2 bAddEle,Ele_Neutral,5;
+ - Id: 4443
+ AegisName: Aqua_Elemental_Card
+ Name: Aqua Elemental Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 4444
+ AegisName: Draco_Card
+ Name: Draco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bAddEle,Ele_Earth,5;
+ - Id: 4445
+ AegisName: Luciola_Vespa_Card
+ Name: Luciola Vespa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bAddEle,Ele_Wind,5;
+ - Id: 4447
+ AegisName: Centipede_Card
+ Name: Centipede Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Poison,20;
+ bonus2 bAddEle,Ele_Poison,5;
+ - Id: 4448
+ AegisName: Cornus_Card
+ Name: Cornus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Holy,20;
+ bonus2 bAddEle,Ele_Holy,5;
+ - Id: 4449
+ AegisName: Dark_Shadow_Card
+ Name: Dark Shadow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bAddEle,Ele_Dark,5;
+ - Id: 4450
+ AegisName: Banshee_Master_Card
+ Name: Banshee Master Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatk,10;
+ - Id: 4451
+ AegisName: Ant_Buyanne_Card
+ Name: Entweihen Crothen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bMatk,100;
+ - Id: 4452
+ AegisName: Centipede_Larva_Card
+ Name: Centipede Larva Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatk,3;
+ - Id: 4453
+ AegisName: Hilsrion_Card
+ Name: Hillsrion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bBaseAtk,25;
+ - Id: 4700
+ AegisName: Strength1
+ Name: STR+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,1;
+ - Id: 4701
+ AegisName: Strength2
+ Name: STR+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,2;
+ - Id: 4702
+ AegisName: Strength3
+ Name: STR+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,3;
+ - Id: 4703
+ AegisName: Strength4
+ Name: STR+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,4;
+ - Id: 4704
+ AegisName: Strength5
+ Name: STR+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,5;
+ - Id: 4705
+ AegisName: Strength6
+ Name: STR+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,6;
+ - Id: 4706
+ AegisName: Strength7
+ Name: STR+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,7;
+ - Id: 4707
+ AegisName: Strength8
+ Name: STR+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,8;
+ - Id: 4708
+ AegisName: Strength9
+ Name: STR+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,9;
+ - Id: 4709
+ AegisName: Strength10
+ Name: STR+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,10;
+ - Id: 4710
+ AegisName: Inteligence1
+ Name: INT+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,1;
+ - Id: 4711
+ AegisName: Inteligence2
+ Name: INT+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,2;
+ - Id: 4712
+ AegisName: Inteligence3
+ Name: INT+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,3;
+ - Id: 4713
+ AegisName: Inteligence4
+ Name: INT+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,4;
+ - Id: 4714
+ AegisName: Inteligence5
+ Name: INT+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,5;
+ - Id: 4715
+ AegisName: Inteligence6
+ Name: INT+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,6;
+ - Id: 4716
+ AegisName: Inteligence7
+ Name: INT+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,7;
+ - Id: 4717
+ AegisName: Inteligence8
+ Name: INT+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,8;
+ - Id: 4718
+ AegisName: Inteligence9
+ Name: INT+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,9;
+ - Id: 4719
+ AegisName: Inteligence10
+ Name: INT+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,10;
+ - Id: 4720
+ AegisName: Dexterity1
+ Name: DEX+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,1;
+ - Id: 4721
+ AegisName: Dexterity2
+ Name: DEX+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,2;
+ - Id: 4722
+ AegisName: Dexterity3
+ Name: DEX+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,3;
+ - Id: 4723
+ AegisName: Dexterity4
+ Name: DEX+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,4;
+ - Id: 4724
+ AegisName: Dexterity5
+ Name: DEX+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,5;
+ - Id: 4725
+ AegisName: Dexterity6
+ Name: DEX+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,6;
+ - Id: 4726
+ AegisName: Dexterity7
+ Name: DEX+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,7;
+ - Id: 4727
+ AegisName: Dexterity8
+ Name: DEX+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,8;
+ - Id: 4728
+ AegisName: Dexterity9
+ Name: DEX+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,9;
+ - Id: 4729
+ AegisName: Dexterity10
+ Name: DEX+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,10;
+ - Id: 4730
+ AegisName: Agility1
+ Name: AGI+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,1;
+ - Id: 4731
+ AegisName: Agility2
+ Name: AGI+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,2;
+ - Id: 4732
+ AegisName: Agility3
+ Name: AGI+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,3;
+ - Id: 4733
+ AegisName: Agility4
+ Name: AGI+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,4;
+ - Id: 4734
+ AegisName: Agility5
+ Name: AGI+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,5;
+ - Id: 4735
+ AegisName: Agility6
+ Name: AGI+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,6;
+ - Id: 4736
+ AegisName: Agility7
+ Name: AGI+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,7;
+ - Id: 4737
+ AegisName: Agility8
+ Name: AGI+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,8;
+ - Id: 4738
+ AegisName: Agility9
+ Name: AGI+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,9;
+ - Id: 4739
+ AegisName: Agility10
+ Name: AGI+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,10;
+ - Id: 4740
+ AegisName: Vitality1
+ Name: VIT+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,1;
+ - Id: 4741
+ AegisName: Vitality2
+ Name: VIT+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,2;
+ - Id: 4742
+ AegisName: Vitality3
+ Name: VIT+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,3;
+ - Id: 4743
+ AegisName: Vitality4
+ Name: VIT+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,4;
+ - Id: 4744
+ AegisName: Vitality5
+ Name: VIT+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,5;
+ - Id: 4745
+ AegisName: Vitality6
+ Name: VIT+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,6;
+ - Id: 4746
+ AegisName: Vitality7
+ Name: VIT+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,7;
+ - Id: 4747
+ AegisName: Vitality8
+ Name: VIT+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,8;
+ - Id: 4748
+ AegisName: Vitality9
+ Name: VIT+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,9;
+ - Id: 4749
+ AegisName: Vitality10
+ Name: VIT+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,10;
+ - Id: 4750
+ AegisName: Luck1
+ Name: LUK+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,1;
+ - Id: 4751
+ AegisName: Luck2
+ Name: LUK+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,2;
+ - Id: 4752
+ AegisName: Luck3
+ Name: LUK+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,3;
+ - Id: 4753
+ AegisName: Luck4
+ Name: LUK+4
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,4;
+ - Id: 4754
+ AegisName: Luck5
+ Name: LUK+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,5;
+ - Id: 4755
+ AegisName: Luck6
+ Name: LUK+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,6;
+ - Id: 4756
+ AegisName: Luck7
+ Name: LUK+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,7;
+ - Id: 4757
+ AegisName: Luck8
+ Name: LUK+8
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,8;
+ - Id: 4758
+ AegisName: Luck9
+ Name: LUK+9
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,9;
+ - Id: 4759
+ AegisName: Luck10
+ Name: LUK+10
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,10;
+ - Id: 4760
+ AegisName: Matk1
+ Name: MATK+1%
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 4761
+ AegisName: Matk2
+ Name: MATK+2%
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bMatkRate,2;
+ - Id: 4762
+ AegisName: Evasion6
+ Name: FLEE+6
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bFlee,6;
+ - Id: 4763
+ AegisName: Evasion12
+ Name: FLEE+12
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bFlee,12;
+ - Id: 4764
+ AegisName: Critical5
+ Name: CRI+5
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bCritical,5;
+ - Id: 4765
+ AegisName: Critical7
+ Name: CRI+7
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bCritical,7;
+ - Id: 4766
+ AegisName: Atk2
+ Name: ATK+2%
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ - Id: 4767
+ AegisName: Atk3
+ Name: ATK+3%
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ - Id: 4768
+ AegisName: Str1_J
+ Name: STR+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4769
+ AegisName: Str2_J
+ Name: STR+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4770
+ AegisName: Str3_J
+ Name: STR+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4771
+ AegisName: Int1_J
+ Name: INT+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4772
+ AegisName: Int2_J
+ Name: INT+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4773
+ AegisName: Int3_J
+ Name: INT+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4774
+ AegisName: Vit1_J
+ Name: VIT+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4775
+ AegisName: Vit2_J
+ Name: VIT+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4776
+ AegisName: Vit3_J
+ Name: VIT+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4777
+ AegisName: Agi1_J
+ Name: AGI+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4778
+ AegisName: Agi2_J
+ Name: AGI+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4779
+ AegisName: Agi3_J
+ Name: AGI+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4780
+ AegisName: Dex1_J
+ Name: DEX+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4781
+ AegisName: Dex2_J
+ Name: DEX+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4782
+ AegisName: Dex3_J
+ Name: DEX+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4783
+ AegisName: Luk1_J
+ Name: LUK+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4784
+ AegisName: Luk2_J
+ Name: LUK+2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4785
+ AegisName: Luk3_J
+ Name: LUK+3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 6000
+ AegisName: Dark_Ashes
+ Name: Ashes of Darkness
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6001
+ AegisName: Essence_Of_Fire
+ Name: Essence of Fire
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6002
+ AegisName: Token_Of_Apostle
+ Name: Token of Apostle
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6003
+ AegisName: Soul_Pendant
+ Name: Pendant of Spirit
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6004
+ AegisName: Bapho_Doll
+ Name: Cursed Baphomet Doll
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6005
+ AegisName: New_Year_Rice_Cake
+ Name: New Year Rice Cake
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6006
+ AegisName: Rice_Cake_Delivery_Box
+ Name: Rice Cake Delivery Box
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6007
+ AegisName: New_Year_Rice_Cake_Soup
+ Name: New Year Rice Cake Soup
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6008
+ AegisName: Wood
+ Name: Wood
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6009
+ AegisName: Large_Magical_Fan
+ Name: Big Fan Of Magic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6010
+ AegisName: Pickaxe
+ Name: Hoe
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6011
+ AegisName: Blue_Card_B
+ Name: Blue B Card
+ Type: Etc
+ Weight: 10
+ - Id: 6012
+ AegisName: Blue_Card_C
+ Name: Blue C Card
+ Type: Etc
+ Weight: 10
+ - Id: 6013
+ AegisName: Blue_Card_J
+ Name: Blue J Card
+ Type: Etc
+ Weight: 10
+ - Id: 6015
+ AegisName: Blue_Card_M
+ Name: Blue M Card
+ Type: Etc
+ Weight: 10
+ - Id: 6016
+ AegisName: Blue_Card_Q
+ Name: Blue Q Card
+ Type: Etc
+ Weight: 10
+ - Id: 6017
+ AegisName: Blue_Card_T
+ Name: Blue T Card
+ Type: Etc
+ Weight: 10
+ - Id: 6018
+ AegisName: Blue_Card_V
+ Name: Blue V Card
+ Type: Etc
+ Weight: 10
+ - Id: 6019
+ AegisName: Blue_Card_Z
+ Name: Blue Z Card
+ Type: Etc
+ Weight: 10
+ - Id: 6020
+ AegisName: Fur
+ Name: Fur
+ Type: Etc
+ Buy: 704
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6021
+ AegisName: Peaked_Hat
+ Name: Peaked Hat
+ Type: Etc
+ Buy: 433
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6022
+ AegisName: Hard_Skin
+ Name: Hard Skin
+ Type: Etc
+ Buy: 884
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6023
+ AegisName: Mystic_Horn
+ Name: Mystic Horn
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6024
+ AegisName: 17Carat_Dia
+ Name: 17Carat Diamond
+ Type: Etc
+ Weight: 10
+ - Id: 6025
+ AegisName: Towel_Of_Memory
+ Name: Towel of Memory
+ Type: Etc
+ - Id: 6026
+ AegisName: Marriage_Covenant
+ Name: Written Oath Of Marriage
+ Type: Etc
+ Weight: 10
+ - Id: 6027
+ AegisName: Crystal_Of_Feardoom
+ Name: Crystal Of Feardom
+ Type: Etc
+ - Id: 6028
+ AegisName: Seal_Scroll
+ Name: Sealed Scroll
+ Type: Etc
+ - Id: 6029
+ AegisName: Morocc_Tracing_Log
+ Name: Morocc Tracing Log
+ Type: Etc
+ - Id: 6030
+ AegisName: Glitering_PaperA
+ Name: Glittering Paper
+ Type: Etc
+ Weight: 10
+ - Id: 6031
+ AegisName: Glitering_PaperB
+ Name: Glittering Paper
+ Type: Etc
+ Weight: 10
+ - Id: 6032
+ AegisName: Horn_Of_Hilsrion
+ Name: Horn of Hillslion
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6033
+ AegisName: Horn_Of_Tendrilion
+ Name: Horn of Tendrilion
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6034
+ AegisName: Weird_Part
+ Name: Weird Part
+ Type: Etc
+ - Id: 6035
+ AegisName: Decaying_Stem
+ Name: Decaying Stem
+ Type: Etc
+ - Id: 6036
+ AegisName: Invite_To_Meeting
+ Name: Meeting Invitation
+ Type: Etc
+ Weight: 10
+ - Id: 6037
+ AegisName: Rough_File
+ Name: Messy File
+ Type: Etc
+ - Id: 6038
+ AegisName: Neat_Report
+ Name: Neat Report
+ Type: Etc
+ Weight: 10
+ - Id: 6039
+ AegisName: Piece_Of_Fish
+ Name: Piece of Fish
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6040
+ AegisName: Some_Of_Report
+ Name: Part of a Report
+ Type: Etc
+ - Id: 6041
+ AegisName: Strong_Bine
+ Name: Strong Vine
+ Type: Etc
+ Buy: 30
+ Weight: 50
+ - Id: 6042
+ AegisName: Ordinary_Branch
+ Name: Ordinary Branch
+ Type: Etc
+ Weight: 10
+ - Id: 6043
+ AegisName: Letter_From_Lugen
+ Name: Letter from Lugen
+ Type: Etc
+ Weight: 10
+ - Id: 6044
+ AegisName: Letter_From_Otto
+ Name: Letter from Otto
+ Type: Etc
+ Weight: 10
+ - Id: 6045
+ AegisName: Supply_Box
+ Name: Supply Box
+ Type: Etc
+ - Id: 6048
+ AegisName: Unidentified_Mineral
+ Name: Unidentified Mineral
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6049
+ AegisName: Marlin
+ Name: Marlin
+ Type: Etc
+ Weight: 10
+ - Id: 6050
+ AegisName: Mercenary_Contract
+ Name: Mercenary Contract
+ Type: Etc
+ Weight: 10
+ - Id: 6051
+ AegisName: Gray_Hollow
+ Name: Gray Hollow
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6052
+ AegisName: Ornamental_Hairpin
+ Name: Ornament Hairpin
+ Type: Etc
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6053
+ AegisName: Yuanbao
+ Name: Circle Step
+ Type: Etc
+ Buy: 100
+ Weight: 100
+ - Id: 6054
+ AegisName: Blue_Card_6
+ Name: Number 6 Card
+ Type: Etc
+ Weight: 10
+ - Id: 6055
+ AegisName: Blue_Card_Annyver
+ Name: Character Week Card
+ Type: Etc
+ Weight: 10
+ - Id: 6056
+ AegisName: Blue_Card_Sary
+ Name: Character Year Card
+ Type: Etc
+ Weight: 10
+ - Id: 6057
+ AegisName: Blue_Card_E
+ Name: Character Lee Card
+ Type: Etc
+ Weight: 10
+ - Id: 6058
+ AegisName: Blue_Card_Ven
+ Name: Character Ben Card
+ Type: Etc
+ Weight: 10
+ - Id: 6059
+ AegisName: Blue_Card_Nt
+ Name: Character Project Card
+ Type: Etc
+ Weight: 10
+ - Id: 6060
+ AegisName: Moon_Admin_Ticket
+ Name: Month Viewing Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6061
+ AegisName: Plantain
+ Name: Blood Beginner
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ - Id: 6062
+ AegisName: Moon_Cake15
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6063
+ AegisName: Moon_Cake16
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6064
+ AegisName: Moon_Cake17
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6065
+ AegisName: Moon_Cake18
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6066
+ AegisName: Moon_Cake19
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6067
+ AegisName: Moon_Cake20
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6068
+ AegisName: Rabbit_Skin
+ Name: Leather Rabbit
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6069
+ AegisName: ABUNDANCE
+ Name: Abundance
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6070
+ AegisName: Shaman's_Old_Paper
+ Name: Shaman's Document
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6071
+ AegisName: Broken_Sword
+ Name: Broken Sword
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6072
+ AegisName: Wing_Of_Bizofnil
+ Name: Bijofnil Feather
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6073
+ AegisName: Dragon's_Mane
+ Name: Dragon's Mane
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6074
+ AegisName: Bazett's_Order
+ Name: Bazett's Order
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6075
+ AegisName: Crystalized_Teardrop
+ Name: Crystalized Teardrop
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6076
+ AegisName: Portable_Toolbox
+ Name: Portable Toolbox
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6077
+ AegisName: Rough_Mineral
+ Name: Rough Mineral
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6078
+ AegisName: Stone_Fragments
+ Name: Stone Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6079
+ AegisName: Flower_Of_Alfheim
+ Name: Flower Of Alfheim
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6080
+ AegisName: Manuk_Coin
+ Name: Manuk Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6081
+ AegisName: Splendide_Coin
+ Name: Splendide Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6082
+ AegisName: Spirit_Of_Alfheim
+ Name: Spirit Of Alfheim
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6083
+ AegisName: Dolly_Capsule
+ Name: Capsule Dolls
+ Type: Etc
+ Weight: 10
+ - Id: 6084
+ AegisName: Bradium_Fragments
+ Name: Bradium Fragments
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6085
+ AegisName: Shaggy_Muffler
+ Name: Shaggy Muffler
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6086
+ AegisName: Withered_Flower
+ Name: Withered Flower
+ Type: Etc
+ Buy: 890
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6087
+ AegisName: Crystal_Of_Soul_01
+ Name: Spiritual Crystal
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6088
+ AegisName: Crystal_Of_Soul_02
+ Name: Spiritual Crystal
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6089
+ AegisName: Piece_Of_Darkness
+ Name: Dark Piece
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6090
+ AegisName: Purified_Bradium
+ Name: Refined Bradium
+ Type: Etc
+ Buy: 1100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 6091
+ AegisName: Dark_Red_Scale
+ Name: Dark Red Scale
+ Type: Etc
+ Buy: 200000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6092
+ AegisName: Singing_Crystal_Piece
+ Name: Piece Of Singing Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 6093
+ AegisName: Egg_Of_Draco
+ Name: Draco's Egg
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6094
+ AegisName: Traditional_Cookie
+ Name: Traditional Sweets
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6095
+ AegisName: Flavored_Alcohol
+ Name: Flavored Alcohol
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6096
+ AegisName: Fish_With_Blue_Back
+ Name: Fish With Blue Back
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6097
+ AegisName: Pumpkin_Pie_
+ Name: Pumpkin Pie
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6098
+ AegisName: Small_Snow_Flower
+ Name: Small Snow Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6099
+ AegisName: Grilled_Rice_Cake
+ Name: Grilled Rice Cake
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6100
+ AegisName: Damp_Darkness
+ Name: Damp Darkness
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6101
+ AegisName: Attendance_Card
+ Name: Attendance Card
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6102
+ AegisName: Report_On_Splendide
+ Name: Report On Splendide
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6103
+ AegisName: Report_On_Manuk
+ Name: Report On Manuk
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6104
+ AegisName: Big_Cell
+ Name: Big Cell
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6105
+ AegisName: Morning_Dew
+ Name: Morning Dew
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6106
+ AegisName: Well_Ripened_Berry
+ Name: Well Ripened Berry
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6107
+ AegisName: Sunset_On_The_Rock
+ Name: Sunset On The Rock
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6108
+ AegisName: Apple_Pudding
+ Name: Apple Pudding
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6109
+ AegisName: Plant_Neutrient
+ Name: Plant Neutrient
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6110
+ AegisName: Vital_Flower
+ Name: Vital Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6111
+ AegisName: Mystic_Stone
+ Name: Mystic Stone
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6112
+ AegisName: Fresh_Plant
+ Name: Fresh Plant
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6113
+ AegisName: Vital_Flower_
+ Name: Vital Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6114
+ AegisName: Flame_Gemstone
+ Name: Flame Gemstone
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6115
+ AegisName: Bun_
+ Name: Bun
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6116
+ AegisName: Succu_Pet_Coupon
+ Name: Succubus Pet Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6117
+ AegisName: Imp_Pet_Coupon
+ Name: Imp Pet Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6118
+ AegisName: Chung_E_Pet_Coupon
+ Name: Chung E Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6119
+ AegisName: Natural_Leather
+ Name: Cow Leather
+ Type: Etc
+ - Id: 6120
+ AegisName: Face_Paint
+ Name: Face Paint
+ Type: Etc
+ Buy: 120
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 6121
+ AegisName: Makeover_Brush
+ Name: Makeover Brush
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6122
+ AegisName: Paint_Brush
+ Name: Paint Brush
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6123
+ AegisName: Surface_Paint
+ Name: Surface Paint
+ Type: Etc
+ Buy: 200
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 6124
+ AegisName: Wolf's_Flute
+ Name: Wolf Flute
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6125
+ AegisName: Lucky_Box
+ Name: Spring Time Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6126
+ AegisName: Happy_Box
+ Name: Summer Happy Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6127
+ AegisName: Purification_Stone
+ Name: Purification Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6128
+ AegisName: Guillotine_Antidote
+ Name: Antidote
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6129
+ AegisName: Ticket_Nightmare
+ Name: Nightmare Terror Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6130
+ AegisName: Ticket_Loli_Ruri
+ Name: Loli Ruri Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6131
+ AegisName: Ticket_Goblin_Leader
+ Name: Goblin Leader Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6132
+ AegisName: Ticket_Incubus
+ Name: Incubus Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6133
+ AegisName: Ticket_Miyabi_Ningyo
+ Name: Miyabi Ningyo Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6134
+ AegisName: Ticket_Whisper
+ Name: Giant Whisper Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6135
+ AegisName: Ticket_Wicked_Nymph
+ Name: Evil Nymph Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6136
+ AegisName: Ticket_Medusa
+ Name: Medusa Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6137
+ AegisName: Ticket_Stoneshooter
+ Name: Stone Shooter Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6138
+ AegisName: Ticket_Marionette
+ Name: Marionette Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6139
+ AegisName: Ticket_Leafcat
+ Name: Leaf Cat Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6140
+ AegisName: Ticket_Dullahan
+ Name: Dullahan Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6141
+ AegisName: Ticket_Shinobi
+ Name: Shinobi Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6142
+ AegisName: Ticket_Golem
+ Name: Golem Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6143
+ AegisName: Ticket_Civil_Servant
+ Name: Civil Servant Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6144
+ AegisName: Heartbroken_Tears
+ Name: Regrettable Tears
+ Type: Etc
+ Buy: 1000
+ Weight: 2
+ Flags:
+ BuyingStore: true
+ - Id: 6145
+ AegisName: Vulcan_Bullet
+ Name: Vulcan Bullet
+ Type: Etc
+ Buy: 10
+ Weight: 2
+ Flags:
+ BuyingStore: true
+ - Id: 6146
+ AegisName: Magic_Gear_Fuel
+ Name: Magic Gear Fuel
+ Type: Etc
+ Buy: 300
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 6147
+ AegisName: Liquid_Condensed_Bullet
+ Name: Liquid Condensed Bullet
+ Type: Etc
+ Buy: 100
+ Weight: 3
+ Flags:
+ BuyingStore: true
+ - Id: 6148
+ AegisName: Chocolate_Of_Eternity
+ Name: Eternity Of Chocolate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6149
+ AegisName: Plain_Chocolate
+ Name: Simple Chocolate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6150
+ AegisName: Key_Of_The_Mansion
+ Name: Key of The Mansion
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6151
+ AegisName: Peice_Of_Great_Bradium
+ Name: Giant Bradium Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6152
+ AegisName: Glittering_Crystal
+ Name: Glittering Crystal
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6153
+ AegisName: Special_Exchange_Coupon
+ Name: Special Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6154
+ AegisName: Broken_Horn_Pipe
+ Name: Broken Horn Pipe
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6155
+ AegisName: Coke_Membership_Card
+ Name: Member Card
+ Type: Etc
+ - Id: 6156
+ AegisName: Approval_Report
+ Name: Approval Report
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6157
+ AegisName: Poring_Ticket
+ Name: Poring Exchange Ticket
+ Type: Etc
+ - Id: 6158
+ AegisName: Drops_Ticket
+ Name: Drops Exchange Ticket
+ Type: Etc
+ - Id: 6159
+ AegisName: Poporing_Ticket
+ Name: Poporing Exchange Ticket
+ Type: Etc
+ - Id: 6160
+ AegisName: Lunatic_Ticket
+ Name: Lunatic Exchange Ticket
+ Type: Etc
+ - Id: 6161
+ AegisName: Picky_Ticket
+ Name: Picky Exchange Ticket
+ Type: Etc
+ - Id: 6162
+ AegisName: Pecopeco_Ticket
+ Name: Peco Peco Exchange Ticket
+ Type: Etc
+ - Id: 6163
+ AegisName: Savage_Baby_Ticket
+ Name: Savage Babe Exchange Ticket
+ Type: Etc
+ - Id: 6164
+ AegisName: Spore_Ticket
+ Name: Spore Exchange Ticket
+ Type: Etc
+ - Id: 6165
+ AegisName: Poison_Spore_Ticket
+ Name: Poison Spore Exchange Ticket
+ Type: Etc
+ - Id: 6166
+ AegisName: Chonchon_Ticket
+ Name: Chonchon Exchange Ticket
+ Type: Etc
+ - Id: 6167
+ AegisName: Steel_Chonchon_Ticket
+ Name: Steel Chonchon Exchange Ticket
+ Type: Etc
+ - Id: 6168
+ AegisName: Petit_Ticket
+ Name: Sky Petite Exchange Ticket
+ Type: Etc
+ - Id: 6169
+ AegisName: Deviruchi_Ticket
+ Name: Deviruchi Exchange Ticket
+ Type: Etc
+ - Id: 6170
+ AegisName: Isis_Ticket
+ Name: Isis Exchange Ticket
+ Type: Etc
+ - Id: 6171
+ AegisName: Smokie_Ticket
+ Name: Smokie Exchange Ticket
+ Type: Etc
+ - Id: 6172
+ AegisName: Dokebi_Ticket
+ Name: Dokebi Exchange Ticket
+ Type: Etc
+ - Id: 6173
+ AegisName: Desert_Wolf_B_Ticket
+ Name: Baby Desert Wolf Exchange Ticket
+ Type: Etc
+ - Id: 6174
+ AegisName: Yoyo_Ticket
+ Name: Yoyo Exchange Ticket
+ Type: Etc
+ - Id: 6175
+ AegisName: Sohee_Ticket
+ Name: Sohee Exchange Ticket
+ Type: Etc
+ - Id: 6176
+ AegisName: Rocker_Ticket
+ Name: Rocker Exchange Ticket
+ Type: Etc
+ - Id: 6177
+ AegisName: Hunter_Fly_Ticket
+ Name: Hunter Fly Exchange Ticket
+ Type: Etc
+ - Id: 6178
+ AegisName: Orc_Warrior_Ticket
+ Name: Orc Warrior Exchange Ticket
+ Type: Etc
+ - Id: 6179
+ AegisName: Bapho_Jr_Ticket
+ Name: Bapho Jr. Exchange Ticket
+ Type: Etc
+ - Id: 6180
+ AegisName: Munak_Ticket
+ Name: Munak Exchange Ticket
+ Type: Etc
+ - Id: 6181
+ AegisName: Bongun_Ticket
+ Name: Bongun Exchange Ticket
+ Type: Etc
+ - Id: 6182
+ AegisName: Goblin_Ticket
+ Name: Christmas Goblin Exchange Ticket
+ Type: Etc
+ - Id: 6183
+ AegisName: Hardtack_Ticket
+ Name: Rice Cake Exchange Ticket
+ Type: Etc
+ - Id: 6184
+ AegisName: Zherlthsh_Ticket
+ Name: Zherlthsh Exchange Ticket
+ Type: Etc
+ - Id: 6185
+ AegisName: Alice_Ticket
+ Name: Alice Exchange Ticket
+ Type: Etc
+ - Id: 6186
+ AegisName: Monkey_Wrench
+ Name: Monkey Wrench
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6187
+ AegisName: Blank_Card
+ Name: Blank Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6188
+ AegisName: Slot_Coupon
+ Name: Slotting Advertisement
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6189
+ AegisName: Magic_Book_FB
+ Name: Spell Book (Fire Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6190
+ AegisName: Magic_Book_CB
+ Name: Spell Book (Cold Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6191
+ AegisName: Magic_Book_LB
+ Name: Spell Book (Lightening Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6192
+ AegisName: Magic_Book_SG
+ Name: Spell Book (Storm Gust)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6193
+ AegisName: Magic_Book_LOV
+ Name: Spell Book (Lord Of Vermilion)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6194
+ AegisName: Magic_Book_MS
+ Name: Spell Book (Meteor Storm)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6195
+ AegisName: Magic_Book_CM
+ Name: Spell Book (Comet)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6196
+ AegisName: Magic_Book_TV
+ Name: Spell Book (Tetra Vortex)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6197
+ AegisName: Magic_Book_TS
+ Name: Spell Book (Thunder Storm)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6198
+ AegisName: Magic_Book_JT
+ Name: Spell Book (Jupitel Thunder)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6199
+ AegisName: Magic_Book_WB
+ Name: Spell Book (Water Ball)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6200
+ AegisName: Magic_Book_HD
+ Name: Spell Book (Heaven's Drive)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6201
+ AegisName: Magic_Book_ES
+ Name: Spell Book (Earth Spike)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6202
+ AegisName: Magic_Book_ES_
+ Name: Spell Book (Earth Strain)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6203
+ AegisName: Magic_Book_CL
+ Name: Spell Book (Chain Lightning)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6204
+ AegisName: Magic_Book_CR
+ Name: Spell Book (Crimson Rock)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6205
+ AegisName: Magic_Book_DL
+ Name: Spell Book (Drain Life)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6206
+ AegisName: I_Love_You
+ Name: I Love You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6207
+ AegisName: Thank_You
+ Name: Thank You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6208
+ AegisName: I_Respect_You
+ Name: I Respect You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6209
+ AegisName: Glory_Of_Knights
+ Name: Knight's Honor
+ Type: Etc
+ - Id: 6210
+ AegisName: Seed_Of_Horny_Plant
+ Name: Seed Of Thorny Plant
+ Type: Etc
+ Buy: 600
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6211
+ AegisName: Bloodsuck_Plant_Seed
+ Name: Bloodsuck Plant Seed
+ Type: Etc
+ Buy: 800
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6212
+ AegisName: Bomb_Mushroom_Spore
+ Name: Bomb Mushroom Spore
+ Type: Etc
+ Buy: 1000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6213
+ AegisName: Explosive_Powder
+ Name: Explosive Powder
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6214
+ AegisName: Smoke_Powder
+ Name: Smoke Powder
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6215
+ AegisName: Tear_Gas
+ Name: Tear Gas
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6216
+ AegisName: Oil_Bottle
+ Name: Oil Bottle
+ Type: Etc
+ Buy: 1000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6217
+ AegisName: Mandragora_Flowerpot
+ Name: Mandragora Flowerpot
+ Type: Etc
+ Buy: 2000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6218
+ AegisName: Disin_Delivery_Box
+ Name: Delivery_Daishin_Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6219
+ AegisName: Para_Team_Mark
+ Name: Eden Group Mark
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6220
+ AegisName: Mysterious_Dyestuff
+ Name: Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6221
+ AegisName: Mystic_Leaf_Cat_Ball
+ Name: Mystic Leaf Cat Ball
+ Type: Etc
+ - Id: 6222
+ AegisName: Shining_Beads
+ Name: Shining Beads
+ Type: Etc
+ Buy: 20
+ - Id: 6223
+ AegisName: Carnium
+ Name: Carnium
+ Type: Etc
+ Buy: 2000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 6224
+ AegisName: Bradium
+ Name: Bradium
+ Type: Etc
+ Buy: 2000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 6225
+ AegisName: HD_Carnium
+ Name: HD Carnium
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6226
+ AegisName: HD_Bradium
+ Name: HD Bradium
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6228
+ AegisName: Guarantee_Weapon_9Up
+ Name: +9 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6229
+ AegisName: Guarantee_Weapon_8Up
+ Name: +8 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6230
+ AegisName: Guarantee_Weapon_7Up
+ Name: +7 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6231
+ AegisName: Guarantee_Weapon_6Up
+ Name: +6 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6232
+ AegisName: Guarantee_Armor_9Up
+ Name: +9 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6233
+ AegisName: Guarantee_Armor_8Up
+ Name: +8 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6234
+ AegisName: Guarantee_Armor_7Up
+ Name: +7 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6235
+ AegisName: Guarantee_Armor_6Up
+ Name: +6 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6236
+ AegisName: Blue_Card_7
+ Name: Blue Card 7
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6237
+ AegisName: Guarana_Fruit
+ Name: Guarana Fruit
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6238
+ AegisName: Guarantee_Weapon_11Up
+ Name: +11 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6239
+ AegisName: Guarantee_Armor_11Up
+ Name: +11 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6240
+ AegisName: HD_Oridecon
+ Name: HD Oridecon
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6241
+ AegisName: HD_Elunium
+ Name: HD Elunium
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6242
+ AegisName: Midgard_Coin
+ Name: Midgard Coin
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6243
+ AegisName: Exchange_Coupon
+ Name: Exchange Coupon
+ Type: Etc
+ - Id: 6244
+ AegisName: Gun_Powder
+ Name: Gun Powder
+ Type: Etc
+ Buy: 10
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6245
+ AegisName: Black_Powder
+ Name: Black Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6246
+ AegisName: Yellow_Powder
+ Name: Yellow Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6247
+ AegisName: White_Powder
+ Name: White Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6248
+ AegisName: Melange_Pot
+ Name: Melange Pot
+ Type: Etc
+ Buy: 600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6249
+ AegisName: Savage_Meat
+ Name: Savage Meat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6250
+ AegisName: Cooking_Skewer
+ Name: Cooking Skewer
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6251
+ AegisName: Black_Charcoal
+ Name: Black Charcoal
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6252
+ AegisName: Wolf_Blood
+ Name: Blood Of Wolf
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6253
+ AegisName: Cold_Ice
+ Name: Cold Ice
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6254
+ AegisName: Beef_Head_Meat
+ Name: Beef Head
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6255
+ AegisName: Large_Cookpot
+ Name: Large Cookpot
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6256
+ AegisName: Ice_Fragment
+ Name: Ice Piece
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6257
+ AegisName: Ice_Crystal
+ Name: Ice Crystal
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6258
+ AegisName: Comodo_Tropic_Fruit
+ Name: Comodo Tropical Fruit
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6259
+ AegisName: Drocera_Tentacle
+ Name: Drosera Tentacle
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6260
+ AegisName: Petti_Tail
+ Name: Petite's Tail
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6261
+ AegisName: Fine_Noodle
+ Name: Fine Noodles
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6262
+ AegisName: Cool_Gravy
+ Name: Cool Gravy
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6263
+ AegisName: Coconut_Fruit
+ Name: Coconut Fruit
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6264
+ AegisName: Melon
+ Name: Melon
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6265
+ AegisName: Pineapple
+ Name: Pineapple
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6266
+ AegisName: Cheat_Key
+ Name: Key Of Deception
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6267
+ AegisName: Virtual_Key
+ Name: Key Of Illusion
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6268
+ AegisName: Mirth_Key
+ Name: Key Of Gaiety
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6269
+ AegisName: Master_Brush
+ Name: A Master's Blush
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6270
+ AegisName: Mins_Picture
+ Name: A Picture Of Minstrel Song
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6271
+ AegisName: Mins_Receipt
+ Name: Receipt
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6272
+ AegisName: Experiment_Seed
+ Name: Experiment Seed
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6273
+ AegisName: Altered_Seed
+ Name: Seed For Experiment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6274
+ AegisName: Saint_Cloth_Piece
+ Name: A Piece Of Cloth Of A Saint
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6275
+ AegisName: King_Shield
+ Name: Shield Of King
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6276
+ AegisName: Clear_Reagent
+ Name: Clear Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6277
+ AegisName: Red_Reagent
+ Name: Red Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6278
+ AegisName: Black_Reagent
+ Name: Black Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6279
+ AegisName: Apple_Bomb_CB
+ Name: Apple Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6280
+ AegisName: Pinepple_Bomb_CB
+ Name: Pineapple Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6281
+ AegisName: Coconut_Bomb_CB
+ Name: Coconut Fruit Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6282
+ AegisName: Melon_Bomb_CB
+ Name: Melon Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6283
+ AegisName: Banana_Bomb_CB
+ Name: Banana Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6284
+ AegisName: Plant_Genetic_Grow
+ Name: How To Grow Plant Genes
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6285
+ AegisName: Quality_Potion_Book
+ Name: "Manual: How To Make High Quality Potion"
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6286
+ AegisName: F_Max_Weight_Up_Scroll
+ Name: F Max Weight Up Scroll
+ Type: Etc
+ Weight: 10
+ - Id: 6287
+ AegisName: F_Clothing_Dye_Coupon
+ Name: F Clothing Dye Coupon
+ Type: Etc
+ - Id: 6288
+ AegisName: F_Happy_Box
+ Name: F Happy Box
+ Type: Etc
+ Buy: 10
+ - Id: 6289
+ AegisName: F_Mysterious_Dyestuff
+ Name: F Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6290
+ AegisName: F_New_Style_Coupon
+ Name: F New Style Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 6291
+ AegisName: F_Enriched_Elunium
+ Name: F Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6292
+ AegisName: F_Enriched_Oridecon
+ Name: F Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6293
+ AegisName: F_Token_Of_Siegfried
+ Name: F Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6294
+ AegisName: F_Marriage_Covenant
+ Name: F Marriage Covenant
+ Type: Etc
+ Weight: 10
+ - Id: 6295
+ AegisName: F_Clothing_Dye_Coupon2
+ Name: F Clothing Dye Coupon2
+ Type: Etc
+ - Id: 6296
+ AegisName: RF_Taining_Notice
+ Name: Training Notice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6297
+ AegisName: Bottle_To_Throw
+ Name: Throwing Bottle
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6298
+ AegisName: Pumpkin_Head_Crushed
+ Name: Pumpkin Head Crushed
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6299
+ AegisName: Worn_Cloth_Piece
+ Name: Worn Cloth Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6300
+ AegisName: J_7Draw
+ Name: event
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6301
+ AegisName: J_Semi_Draw
+ Name: event
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6302
+ AegisName: GM_Handwriting
+ Name: GM Handwriting
+ Type: Etc
+ Buy: 20004
+ - Id: 6303
+ AegisName: Changed_Hydra_Ball
+ Name: Changed Hydra Ball
+ Type: Etc
+ - Id: 6304
+ AegisName: Sapa_Feat_Cert
+ Name: Proof Of Sapha's Honor
+ Type: Etc
+ - Id: 6305
+ AegisName: Frozen_Skin_Piece
+ Name: Frozen Piece Of Skin
+ Type: Etc
+ - Id: 6306
+ AegisName: Solid_Bloodstain
+ Name: Hard Bloodstain
+ Type: Etc
+ - Id: 6307
+ AegisName: Suspicious_Magic_Stone
+ Name: Cursed Magical Stone
+ Type: Etc
+ - Id: 6308
+ AegisName: Unidentified_Relic
+ Name: Unidentified Relic
+ Type: Etc
+ - Id: 6309
+ AegisName: E_Max_Weight_Up_Scroll
+ Name: E Max Weight Up Scroll
+ Type: Etc
+ Weight: 10
+ - Id: 6310
+ AegisName: E_Cloth_Dye_Coupon
+ Name: E Cloth Dye Coupon
+ Type: Etc
+ - Id: 6311
+ AegisName: E_Happy_Box
+ Name: E Happy Box
+ Type: Etc
+ Buy: 10
+ - Id: 6312
+ AegisName: E_Mysterious_Dyestuff
+ Name: E Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6313
+ AegisName: E_New_Style_Coupon
+ Name: E New Style Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 6314
+ AegisName: E_Enriched_Elunium
+ Name: E Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6315
+ AegisName: E_Enriched_Oridecon
+ Name: E Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6316
+ AegisName: E_Token_Of_Siegfried
+ Name: E Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6317
+ AegisName: E_Marriage_Covenant
+ Name: E Marriage Covenant
+ Type: Etc
+ Weight: 10
+ - Id: 6318
+ AegisName: E_Cloth_Dye_Coupon2
+ Name: E Cloth Dye Coupon2
+ Type: Etc
+ - Id: 6319
+ AegisName: Small_Bradium
+ Name: Small Bradium
+ Type: Etc
+ Buy: 324
+ Weight: 10
+ - Id: 6320
+ AegisName: Premium_Reset_Stone
+ Name: Premium Reset Stone
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6321
+ AegisName: Rakehorn_Helm
+ Name: Rakehorn Helm
+ Type: Etc
+ Buy: 822
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6322
+ AegisName: Antler_Helm
+ Name: Antler Helmet
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6323
+ AegisName: Twinhorn_Helm
+ Name: Two-Horned Helmet
+ Type: Etc
+ Buy: 728
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6324
+ AegisName: Singlehorn_Helm
+ Name: Single Horned Helmet
+ Type: Etc
+ Buy: 702
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6325
+ AegisName: White_Spider_Limb
+ Name: White Spider Limb
+ Type: Etc
+ Buy: 1004
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6326
+ AegisName: Queen_Wing_Piece
+ Name: Queen Wing Piece
+ Type: Etc
+ Buy: 1630
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6328
+ AegisName: Calender_January
+ Name: Calender January
+ Type: Etc
+ Buy: 20
+ - Id: 6329
+ AegisName: Calender_February
+ Name: Calender February
+ Type: Etc
+ Buy: 20
+ - Id: 6330
+ AegisName: Calender_March
+ Name: Calender March
+ Type: Etc
+ Buy: 20
+ - Id: 6331
+ AegisName: Calender_April
+ Name: Calender April
+ Type: Etc
+ Buy: 20
+ - Id: 6332
+ AegisName: Calender_May
+ Name: Calender May
+ Type: Etc
+ Buy: 20
+ - Id: 6333
+ AegisName: Calender_June
+ Name: Calender June
+ Type: Etc
+ Buy: 20
+ - Id: 6334
+ AegisName: Calender_July
+ Name: Calender July
+ Type: Etc
+ Buy: 20
+ - Id: 6335
+ AegisName: Calender_August
+ Name: Calender August
+ Type: Etc
+ Buy: 20
+ - Id: 6336
+ AegisName: Calender_September
+ Name: Calender September
+ Type: Etc
+ Buy: 20
+ - Id: 6337
+ AegisName: Calender_October
+ Name: Calender October
+ Type: Etc
+ Buy: 20
+ - Id: 6338
+ AegisName: Calender_November
+ Name: Calender November
+ Type: Etc
+ Buy: 20
+ - Id: 6339
+ AegisName: Calender_December
+ Name: Calender December
+ Type: Etc
+ Buy: 20
+ - Id: 6340
+ AegisName: Fade_Notation_Green
+ Name: Fade Notation Green
+ Type: Etc
+ Weight: 10
+ - Id: 6341
+ AegisName: Fade_Notation_Red
+ Name: Fade Notation Red
+ Type: Etc
+ Weight: 10
+ - Id: 6342
+ AegisName: Fade_Notation_Purple
+ Name: Fade Notation Purple
+ Type: Etc
+ Weight: 10
+ - Id: 6343
+ AegisName: Fade_Notation_Blue
+ Name: Fade Notation Blue
+ Type: Etc
+ Weight: 10
+ - Id: 6344
+ AegisName: Muscle_Story
+ Name: Muscle Story
+ Type: Etc
+ - Id: 6345
+ AegisName: Love_Ball
+ Name: Love Ball
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6346
+ AegisName: Seagate_Mark
+ Name: Seagate Mark
+ Type: Etc
+ - Id: 6347
+ AegisName: Bless_Word_Paper1
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6348
+ AegisName: Bless_Word_Paper2
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6349
+ AegisName: Bless_Word_Paper3
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6350
+ AegisName: Bless_Word_Paper4
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6351
+ AegisName: Bless_Word_Paper5
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6352
+ AegisName: Bless_Word_Paper6
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6353
+ AegisName: Bless_Word_Paper7
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6354
+ AegisName: Bless_Word_Paper8
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6355
+ AegisName: Bless_Word_Paper9
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6356
+ AegisName: Bless_Word_Paper10
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6357
+ AegisName: Fortune_Cookie_Fail
+ Name: Fortune Cookie Fail
+ Type: Etc
+ Buy: 4020
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6358
+ AegisName: Free_Cash_Coupon
+ Name: Free Cash Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6359
+ AegisName: Guidebook_Exchange
+ Name: Guidebook Exchange
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6360
+ AegisName: Scarlet_Pts
+ Name: Scarlet Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6361
+ AegisName: Indigo_Pts
+ Name: Indigo Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6362
+ AegisName: Yellow_Wish_Pts
+ Name: Yellow Wish Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6363
+ AegisName: Lime_Green_Pts
+ Name: Lime Green Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6369
+ AegisName: Amatsu_Bead_A
+ Name: Amatsu Bead A
+ Type: Etc
+ - Id: 6370
+ AegisName: Amatsu_Bead_Ma
+ Name: Amatsu Bead Ma
+ Type: Etc
+ - Id: 6371
+ AegisName: Amatsu_Bead_Tsu
+ Name: Amatsu Bead Tsu
+ Type: Etc
+ - Id: 6372
+ AegisName: Amatsu_Bead_Jam
+ Name: Amatsu Bead Jam
+ Type: Etc
+ - Id: 6373
+ AegisName: Amatsu_Bead_Bo
+ Name: Amatsu Bead Bo
+ Type: Etc
+ - Id: 6374
+ AegisName: Amatsu_Bead_Ree
+ Name: Amatsu Bead Ree
+ Type: Etc
+ - Id: 6375
+ AegisName: Amatsu_Bead_!
+ Name: Amatsu Bead !
+ Type: Etc
+ - Id: 6376
+ AegisName: KVM_Badge
+ Name: KVM Badge
+ Type: Etc
+ - Id: 6377
+ AegisName: Buy_Market_Permit
+ Name: Buy Market Permit
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6378
+ AegisName: Winning_Mark
+ Name: Winning Mark
+ Type: Etc
+ - Id: 6379
+ AegisName: 7Star_Board
+ Name: 7Star Board
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6380
+ AegisName: Mora_Coin
+ Name: Mora Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6381
+ AegisName: Field_Shovel
+ Name: Field Shovel
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6382
+ AegisName: Urn
+ Name: Urn
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6383
+ AegisName: Clue_Of_Lope
+ Name: Lope's Clue
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6384
+ AegisName: Ring_Of_Lope
+ Name: Lope's Ring
+ Type: Etc
+ - Id: 6385
+ AegisName: Research_Tool_Bag
+ Name: Research Tool Bag
+ Type: Etc
+ - Id: 6386
+ AegisName: Bathtub_R_Sample
+ Name: Bath Water Sample
+ Type: Etc
+ Buy: 20
+ - Id: 6387
+ AegisName: Teeth_Sample
+ Name: Teeth Sample
+ Type: Etc
+ Buy: 20
+ - Id: 6388
+ AegisName: Scale_Sample
+ Name: Scale Sample
+ Type: Etc
+ Buy: 20
+ - Id: 6389
+ AegisName: Puddle_R_Sample
+ Name: Sample Of Puddle Research
+ Type: Etc
+ Buy: 20
+ - Id: 6390
+ AegisName: Small_Pocket
+ Name: Small Pocket
+ Type: Etc
+ Buy: 20
+ - Id: 6391
+ AegisName: Splendid_Supply_Kit
+ Name: Splendid Supply Kit
+ Type: Etc
+ Buy: 20
+ Weight: 2000
+ - Id: 6392
+ AegisName: Bradium_Box
+ Name: Bradium Box
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6393
+ AegisName: Round_Feather
+ Name: Round Feather
+ Type: Etc
+ Buy: 700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6394
+ AegisName: Golden_Feather
+ Name: Golden Feather
+ Type: Etc
+ Buy: 650
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6395
+ AegisName: Angel_Magic_Power
+ Name: Angel Magic Power
+ Type: Etc
+ Buy: 820
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6396
+ AegisName: Auger_Of_Spirit
+ Name: Auger Of Spirit
+ Type: Etc
+ Weight: 10
+ - Id: 6456
+ AegisName: Guarantee_Weapon_5Up
+ Name: +5 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6457
+ AegisName: Guarantee_Armor_5Up
+ Name: +5 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6493
+ AegisName: Makibishi
+ Name: Makibishi
+ Type: Etc
+ Buy: 30
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6499
+ AegisName: Ancient_Grudge
+ Name: Ancient Grudge
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6512
+ AegisName: Charm_Fire
+ Name: Fire Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6513
+ AegisName: Charm_Ice
+ Name: Ice Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6514
+ AegisName: Charm_Wind
+ Name: Wind Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6515
+ AegisName: Charm_Earth
+ Name: Earth Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7001
+ AegisName: Mould_Powder
+ Name: Mould Powder
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7002
+ AegisName: Ogre_Tooth
+ Name: Ogre Tooth
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7003
+ AegisName: Anolian_Skin
+ Name: Anolian Skin
+ Type: Etc
+ Buy: 968
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7004
+ AegisName: Mud_Lump
+ Name: Mud Lump
+ Type: Etc
+ Buy: 876
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7005
+ AegisName: Skull
+ Name: Skull
+ Type: Etc
+ Buy: 1044
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7006
+ AegisName: Wing_Of_Red_Bat
+ Name: Wing of Red Bat
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7007
+ AegisName: Claw_Of_Rat
+ Name: Claw of Rat
+ Type: Etc
+ Buy: 748
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7008
+ AegisName: Stiff_Horn
+ Name: Stiff Horn
+ Type: Etc
+ Buy: 636
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7009
+ AegisName: Glitter_Shell
+ Name: Glitter Shell
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7010
+ AegisName: Tail_Of_Steel_Scorpion
+ Name: Tail of Steel Scorpion
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7011
+ AegisName: Claw_Of_Monkey
+ Name: Claw of Monkey
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7012
+ AegisName: Tough_Scalelike_Stem
+ Name: Tough Scalelike Stem
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7013
+ AegisName: Coral_Reef
+ Name: Coral Reef
+ Type: Etc
+ Buy: 772
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7014
+ AegisName: Old_Portrait
+ Name: Old Portrait
+ Type: Etc
+ Buy: 1500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7015
+ AegisName: Bookclip_In_Memory
+ Name: Bookclip in Memory
+ Type: Etc
+ Buy: 3000
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7016
+ AegisName: Spoon_Stub
+ Name: Spoon Stub
+ Type: Etc
+ Buy: 2500
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7017
+ AegisName: Executioner's_Mitten
+ Name: Executioner's Mitten
+ Type: Etc
+ Buy: 4500
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7018
+ AegisName: Young_Twig
+ Name: Young Twig
+ Type: Etc
+ Buy: 50
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7019
+ AegisName: Loki's_Whispers
+ Name: Loki's Whispers
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7020
+ AegisName: Mother's_Nightmare
+ Name: Mother's Nightmare
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7021
+ AegisName: Foolishness_Of_Blind
+ Name: Foolishness of the Blind
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7022
+ AegisName: Old_Hilt
+ Name: Old Hilt
+ Type: Etc
+ Buy: 150
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7023
+ AegisName: Blade_Lost_In_Darkness
+ Name: Blade Lost in Darkness
+ Type: Etc
+ Buy: 12000
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 7024
+ AegisName: Bloody_Edge
+ Name: Bloody Edge
+ Type: Etc
+ Buy: 10000
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 7025
+ AegisName: Lucifer's_Lament
+ Name: Lucifer's Lament
+ Type: Etc
+ Buy: 30000
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7026
+ AegisName: Key_Of_Clock_Tower
+ Name: Key of Clock Tower
+ Type: Etc
+ Buy: 100
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7027
+ AegisName: Underground_Key
+ Name: Key of Underground
+ Type: Etc
+ Buy: 100
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7028
+ AegisName: Invite_For_Duel
+ Name: Invite for Duel
+ Type: Etc
+ - Id: 7029
+ AegisName: Admission_For_Duel
+ Name: Admission for Duel
+ Type: Etc
+ - Id: 7030
+ AegisName: Claw_Of_Desert_Wolf
+ Name: Claw of Desert Wolf
+ Type: Etc
+ Buy: 208
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7031
+ AegisName: Old_Frying_Pan
+ Name: Old Frying Pan
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7032
+ AegisName: Piece_Of_Egg_Shell
+ Name: Piece of Egg Shell
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7033
+ AegisName: Poison_Spore
+ Name: Poison Spore
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7034
+ AegisName: Red_Socks_With_Holes
+ Name: Red Stocking
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7035
+ AegisName: Matchstick
+ Name: Matchstick
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7036
+ AegisName: Fang_Of_Garm
+ Name: Fang of Hatii
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7037
+ AegisName: Trade_Coupon
+ Name: Coupon
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7038
+ AegisName: Yarn
+ Name: Yarn
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7039
+ AegisName: Novice_Nametag
+ Name: Newbie Tag
+ Type: Etc
+ Weight: 10
+ - Id: 7040
+ AegisName: Megaphone
+ Name: Megaphone
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7041
+ AegisName: Fine_Grit
+ Name: Fine Grit
+ Type: Etc
+ Buy: 120
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7042
+ AegisName: Leather_Bag_Of_Infinity
+ Name: Leather Bag of Infinity
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7043
+ AegisName: Fine_Sand
+ Name: Fine Sand
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7044
+ AegisName: Vigorgra
+ Name: Vigorgra
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7045
+ AegisName: Magic_Paint
+ Name: Magic Paint
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7046
+ AegisName: Cart_Parts
+ Name: Cart Parts
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7047
+ AegisName: Alice's_Apron
+ Name: Alice's Apron
+ Type: Etc
+ Buy: 2424
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7048
+ AegisName: Talon_Of_Griffin
+ Name: Talon of Griffon
+ Type: Etc
+ Buy: 5418
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7049
+ AegisName: Stone
+ Name: Stone
+ Type: Etc
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7050
+ AegisName: Cotton_Mat
+ Name: Cotton Mat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7051
+ AegisName: Silk_Mat
+ Name: Silk Mat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7052
+ AegisName: Old_Magazine
+ Name: Old Papers
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7053
+ AegisName: Cyfar
+ Name: Cyfar
+ Type: Etc
+ Buy: 772
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7054
+ AegisName: Brigan
+ Name: Brigan
+ Type: Etc
+ Buy: 746
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7055
+ AegisName: Animal_Pooopoo
+ Name: Animal Poop
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7056
+ AegisName: Payroll_Of_Kafra
+ Name: Payment Statement for Kafra Employee
+ Type: Etc
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7057
+ AegisName: Gallar_Horn
+ Name: Gjallar
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7058
+ AegisName: Gullraifnir
+ Name: Gleipnir
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7059
+ AegisName: Cargo_Free_Ticket
+ Name: Free Ticket for Kafra Storage
+ Type: Etc
+ Buy: 1
+ - Id: 7060
+ AegisName: Warp_Free_Ticket
+ Name: Free Ticket for Kafra Transportation
+ Type: Etc
+ Buy: 1
+ - Id: 7061
+ AegisName: Cart_Free_Ticket
+ Name: Free Ticket for the Cart Service
+ Type: Etc
+ Buy: 1
+ - Id: 7062
+ AegisName: Broken_Turtle_Shell
+ Name: Broken Turtle Shell
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ - Id: 7063
+ AegisName: Soft_Feather
+ Name: Soft Feather
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7064
+ AegisName: Dragon_Fly_Wing
+ Name: Wing of Dragonfly
+ Type: Etc
+ Buy: 520
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7065
+ AegisName: Sea_Otter_Leather
+ Name: Sea-Otter Fur
+ Type: Etc
+ Buy: 820
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7066
+ AegisName: Ice_Piece
+ Name: Ice Cubic
+ Type: Etc
+ Buy: 660
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7067
+ AegisName: Stone_Piece
+ Name: Stone Fragment
+ Type: Etc
+ Buy: 640
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7068
+ AegisName: Burn_Tree
+ Name: Burnt Tree
+ Type: Etc
+ Buy: 722
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7069
+ AegisName: Broken_Armor_Piece
+ Name: Destroyed Armor
+ Type: Etc
+ Buy: 1042
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7070
+ AegisName: Broken_Shell
+ Name: Broken Shell
+ Type: Etc
+ Buy: 900
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7071
+ AegisName: Tatters_Clothes
+ Name: Tattered Clothes
+ Type: Etc
+ Buy: 1280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7072
+ AegisName: Rust_Suriken
+ Name: Old Shuriken
+ Type: Etc
+ Buy: 1780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7073
+ AegisName: Jewel_Of_Prayer
+ Name: Freya's Jewel
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7074
+ AegisName: Iron_Glove
+ Name: Thor's Gauntlets
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7075
+ AegisName: Iron_Maiden
+ Name: Iron Maiden
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7076
+ AegisName: Mystery_Wheel
+ Name: Wheel of the Unknown
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7077
+ AegisName: Silver_Fancy
+ Name: Silver Ornament
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7078
+ AegisName: Anger_Of_Valkurye
+ Name: Wrath of Valkyrie
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7079
+ AegisName: Feather_Of_Angel
+ Name: Feather of Angel Wing
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7080
+ AegisName: Foot_Step_Of_Cat
+ Name: Cat Tread
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7081
+ AegisName: Beard_Of_Women
+ Name: Woman's Moustache
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7082
+ AegisName: Root_Of_Stone
+ Name: Root of Stone
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7083
+ AegisName: Soul_Of_Fish
+ Name: Spirit of Fish
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7084
+ AegisName: Saliva_Of_Bird
+ Name: Sputum of Bird
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7085
+ AegisName: Tendon_Of_Bear
+ Name: Sinew of Bear
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7086
+ AegisName: Symbol_Of_Sun
+ Name: Emblem of the Sun God
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7087
+ AegisName: Breath_Of_Soul
+ Name: Breath of Spirit
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7088
+ AegisName: Crystal_Of_Snow
+ Name: Snow Crystal
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7089
+ AegisName: Indication_Of_Tempest
+ Name: Omen of Tempest
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7090
+ AegisName: Slilince_Wave
+ Name: Ripple
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7091
+ AegisName: Rough_Billows
+ Name: Billow
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7092
+ AegisName: Air_Stream
+ Name: Drifting Air
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7093
+ AegisName: Wheel
+ Name: Cogwheel
+ Type: Etc
+ Buy: 1512
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7094
+ AegisName: Mystery_Piece
+ Name: Fragment
+ Type: Etc
+ Buy: 1344
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7095
+ AegisName: Broken_Steel_Piece
+ Name: Metal Fragment
+ Type: Etc
+ Buy: 1075
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7096
+ AegisName: Cold_Magma
+ Name: Lava
+ Type: Etc
+ Buy: 1109
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7097
+ AegisName: Burning_Heart
+ Name: Burning Heart
+ Type: Etc
+ Buy: 924
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7098
+ AegisName: Live_Coal
+ Name: Live Coal
+ Type: Etc
+ Buy: 638
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7099
+ AegisName: Old_Magic_Circle
+ Name: Worn-out Magic Scroll
+ Type: Etc
+ Buy: 773
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7100
+ AegisName: Sharp_Leaf
+ Name: Sharp Leaf
+ Type: Etc
+ Buy: 806
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7101
+ AegisName: Peco_Wing_Feather
+ Name: Peco Peco Feather
+ Type: Etc
+ Buy: 454
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7102
+ AegisName: Hideous_Dream
+ Name: Nightmare
+ Type: Etc
+ Buy: 1075
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7103
+ AegisName: Unknown_Liquid_Bottle
+ Name: Unknown Liquid Bottle
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7104
+ AegisName: Fake_Angel_Wing
+ Name: False Angel Wing
+ Type: Etc
+ Buy: 756
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7105
+ AegisName: Fake_Angel_Loop
+ Name: False Heaven Ring
+ Type: Etc
+ Buy: 924
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7106
+ AegisName: Goat's_Horn
+ Name: Antelope Horn
+ Type: Etc
+ Buy: 672
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7107
+ AegisName: Gaoat's_Skin
+ Name: Antelope Skin
+ Type: Etc
+ Buy: 756
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7108
+ AegisName: Boroken_Shiled_Piece
+ Name: Piece of Shield
+ Type: Etc
+ Buy: 1680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7109
+ AegisName: Shine_Spear_Blade
+ Name: Shining Spear Blade
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7110
+ AegisName: Vroken_Sword
+ Name: Broken Sword
+ Type: Etc
+ Buy: 588
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7111
+ AegisName: Smooth_Paper
+ Name: Slick Paper
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7112
+ AegisName: Fright_Paper_Blade
+ Name: Sharp Paper
+ Type: Etc
+ Buy: 907
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7113
+ AegisName: Broken_Pharaoh_Symbol
+ Name: Broken Pharaoh Emblem
+ Type: Etc
+ Buy: 2016
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7114
+ AegisName: Tutankhamen's_Mask
+ Name: Masque of Tutankhamen
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7115
+ AegisName: Harpy's_Feather
+ Name: Harpy Feather
+ Type: Etc
+ Buy: 1142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7116
+ AegisName: Harpy's_Claw
+ Name: Harpy Talon
+ Type: Etc
+ Buy: 1210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7117
+ AegisName: Rent_Spell_Book
+ Name: Torn Magic Book
+ Type: Etc
+ Buy: 1142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7118
+ AegisName: Rent_Scroll
+ Name: Torn Scroll
+ Type: Etc
+ Buy: 1361
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7119
+ AegisName: Spawns
+ Name: Bacillus
+ Type: Etc
+ Buy: 1025
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7120
+ AegisName: Burning_Horse_Shoe
+ Name: Burning Horseshoe
+ Type: Etc
+ Buy: 823
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7121
+ AegisName: Honey_Jar
+ Name: Honey Pot
+ Type: Etc
+ Buy: 622
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7122
+ AegisName: Hot_Hair
+ Name: Burning Hair
+ Type: Etc
+ Buy: 974
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7123
+ AegisName: Dragon's_Skin
+ Name: Dragon Skin
+ Type: Etc
+ Buy: 1025
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7124
+ AegisName: Sand_Lump
+ Name: Sand Clump
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7125
+ AegisName: Scropion's_Nipper
+ Name: Scorpion Claw
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7126
+ AegisName: Large_Jellopy
+ Name: Large Jellopy
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7127
+ AegisName: Alcol_Create_Book
+ Name: Alcohol Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7128
+ AegisName: FireBottle_Create_Book
+ Name: Bottle Grenade Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7129
+ AegisName: Acid_Create_Book
+ Name: Acid Bottle Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7130
+ AegisName: Plant_Create_Book
+ Name: Plant Bottle Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7131
+ AegisName: Mine_Create_Book
+ Name: Marine Sphere Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7132
+ AegisName: Coating_Create_Book
+ Name: Glistening Coat Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7133
+ AegisName: Slim_Potion_Create_Book
+ Name: Condensed Potion Creation Guide
+ Type: Etc
+ Buy: 240000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7134
+ AegisName: Medicine_Bowl
+ Name: Medicine Bowl
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7135
+ AegisName: Fire_Bottle
+ Name: Bottle Grenade
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7136
+ AegisName: Acid_Bottle
+ Name: Acid Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7137
+ AegisName: MenEater_Plant_Bottle
+ Name: Plant Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7138
+ AegisName: Mini_Bottle
+ Name: Marine Sphere Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7139
+ AegisName: Coating_Bottle
+ Name: Glistening Coat
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7140
+ AegisName: Seed_Of_Life
+ Name: Seed of Life
+ Type: Etc
+ Buy: 60000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7141
+ AegisName: Yggdrasilberry_Dew
+ Name: Morning Dew of Yggdrasil
+ Type: Etc
+ Buy: 20000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7142
+ AegisName: Germination_Breed
+ Name: Embryo
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7143
+ AegisName: Life_Force_Pot
+ Name: Glass Tube
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7144
+ AegisName: Normal_Potion_Book
+ Name: Potion Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7145
+ AegisName: Rag_T_Shirts
+ Name: Ragnarok T-shirt
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7146
+ AegisName: Vacance_Ticket
+ Name: Vacation Ticket
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7147
+ AegisName: Jasmin
+ Name: Jasmine
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7148
+ AegisName: Mother_Letter
+ Name: Mother's Letter
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7149
+ AegisName: Yellow_Plate
+ Name: Yellow Plate
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7150
+ AegisName: Bamboo_Cut
+ Name: Piece of Bamboo
+ Type: Etc
+ Buy: 310
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7151
+ AegisName: Oil_Paper
+ Name: Oil Paper
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7152
+ AegisName: Glossy_Hair
+ Name: Glossy Hair
+ Type: Etc
+ Buy: 340
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7153
+ AegisName: Old_Japaness_Clothes
+ Name: Worn-out Kimono
+ Type: Etc
+ Buy: 590
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7154
+ AegisName: Poison_Powder
+ Name: Poisonous Powder
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7155
+ AegisName: Poison_Toad's_Skin
+ Name: Poisonous Toad Skin
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7156
+ AegisName: Broken_Shuriken
+ Name: Broken Shuriken
+ Type: Etc
+ Buy: 470
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7157
+ AegisName: Black_Mask
+ Name: Dark Mask
+ Type: Etc
+ Buy: 315
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7158
+ AegisName: Broken_Wine_Vessel
+ Name: Broken Liquor Jar
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7159
+ AegisName: Tengu's_Nose
+ Name: Tengu Nose
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7160
+ AegisName: Lord's_Passable_Ticket
+ Name: Feudal Lord Permit
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7161
+ AegisName: Black_Bear's_Skin
+ Name: Black Bear Skin
+ Type: Etc
+ Buy: 384
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7162
+ AegisName: Cloud_Piece
+ Name: Cloud Crumb
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7163
+ AegisName: Sharp_Feeler
+ Name: Hard Feeler
+ Type: Etc
+ Buy: 570
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7164
+ AegisName: Hard_Peach
+ Name: Solid Peach
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7165
+ AegisName: Limpid_Celestial_Robe
+ Name: Transparent Celestial Robe
+ Type: Etc
+ Buy: 650
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7166
+ AegisName: Soft_Silk_Cloth
+ Name: Soft Silk
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7167
+ AegisName: Mystery_Iron_Bit
+ Name: Strange Steel Piece
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7168
+ AegisName: Great_Wing
+ Name: Giant Butterfly Wing
+ Type: Etc
+ Buy: 614
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7169
+ AegisName: Taegeuk_Plate
+ Name: Ba Gua
+ Type: Etc
+ Buy: 2800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7170
+ AegisName: Tuxedo
+ Name: Tuxedo
+ Type: Etc
+ Buy: 43000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7171
+ AegisName: Leopard_Skin
+ Name: Leopard Skin
+ Type: Etc
+ Buy: 282
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7172
+ AegisName: Leopard_Talon
+ Name: Leopard Claw
+ Type: Etc
+ Buy: 290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7173
+ AegisName: BurnBuster_Bag
+ Name: iROGM02's Backpack
+ Type: Etc
+ Weight: 10
+ - Id: 7174
+ AegisName: Packing_Ribbon
+ Name: Wrapping Lace
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7175
+ AegisName: Packing_Paper
+ Name: Wrapping Paper
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7176
+ AegisName: XMAS_Coupon
+ Name: Royal Certificate
+ Type: Etc
+ Weight: 10
+ - Id: 7177
+ AegisName: Part_Of_Star's_Sob
+ Name: Crumb of Sobbing Starlight
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7178
+ AegisName: Star's_Sob
+ Name: Sobbing Starlight
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7179
+ AegisName: Donation_Card
+ Name: Proof of Donation
+ Type: Etc
+ Weight: 10
+ - Id: 7180
+ AegisName: Introduction_Of_Mr.Han
+ Name: Hahn Sukbong's Recommendation
+ Type: Etc
+ Weight: 10
+ - Id: 7181
+ AegisName: Receipt_01
+ Name: Receipt
+ Type: Etc
+ Weight: 10
+ - Id: 7182
+ AegisName: Cacao
+ Name: Cacao
+ Type: Etc
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7183
+ AegisName: Sister_Letter
+ Name: Letter from Sister
+ Type: Etc
+ Weight: 10
+ - Id: 7184
+ AegisName: Piano_Keyboard
+ Name: Piano Key
+ Type: Etc
+ Weight: 10
+ - Id: 7185
+ AegisName: Quiz_Ticket
+ Name: Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7186
+ AegisName: Thin_Stem
+ Name: Thin Trunk
+ Type: Etc
+ Buy: 380
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7187
+ AegisName: Festival_Mask
+ Name: Festival Mask
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7188
+ AegisName: Browny_Root
+ Name: Brown Root
+ Type: Etc
+ Buy: 560
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7189
+ AegisName: Heart_Of_Tree
+ Name: Wooden Heart
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7190
+ AegisName: Solid_Peeling
+ Name: Solid Husk
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7191
+ AegisName: Lamplight
+ Name: Lamp
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7192
+ AegisName: Blade_Of_Pinwheel
+ Name: Vane
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7193
+ AegisName: Germinating_Sprout
+ Name: Sprout
+ Type: Etc
+ Buy: 230
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7194
+ AegisName: Soft_Leaf
+ Name: Soft Blade of Grass
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7195
+ AegisName: Air_Rifle
+ Name: Slingshot
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7196
+ AegisName: Shoulder_Protection
+ Name: Shoulder Protector
+ Type: Etc
+ Buy: 230
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7197
+ AegisName: Tough_Vines
+ Name: Tough Vines
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7198
+ AegisName: Great_Leaf
+ Name: Huge Leaf
+ Type: Etc
+ Buy: 610
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7199
+ AegisName: Coupon
+ Name: Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 7200
+ AegisName: Flexible_String
+ Name: Elastic Band
+ Type: Etc
+ Buy: 380
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7201
+ AegisName: Log
+ Name: Log
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7202
+ AegisName: Beetle_Nipper
+ Name: Pincher of Beetle
+ Type: Etc
+ Buy: 290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7203
+ AegisName: Solid_Twig
+ Name: Strong Branch
+ Type: Etc
+ Buy: 190
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7204
+ AegisName: Gunpowder
+ Name: Gunpowder
+ Type: Etc
+ Buy: 320
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7205
+ AegisName: Piece_Of_Black_Cloth
+ Name: Piece of Black Cloth
+ Type: Etc
+ Buy: 526
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7206
+ AegisName: Black_Kitty_Doll
+ Name: Black Cat Doll
+ Type: Etc
+ Buy: 1440
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7207
+ AegisName: Old_Manteau
+ Name: Old Manteau
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7208
+ AegisName: Rusty_Cleaver
+ Name: Rusty Kitchen Knife
+ Type: Etc
+ Buy: 1780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7209
+ AegisName: Dullahan's_Helm
+ Name: Helm of Dullahan
+ Type: Etc
+ Buy: 1350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7210
+ AegisName: Dullahan_Armor
+ Name: Armor Piece of Dullahan
+ Type: Etc
+ Buy: 790
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7211
+ AegisName: Rojerta_Piece
+ Name: Fragment of Rossata Stone
+ Type: Etc
+ Buy: 2600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7212
+ AegisName: Hanging_Doll
+ Name: Hung Doll
+ Type: Etc
+ Buy: 1020
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7213
+ AegisName: Needle_Pouch
+ Name: Needle Packet
+ Type: Etc
+ Buy: 832
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7214
+ AegisName: Bat_Cage
+ Name: Bat Cage
+ Type: Etc
+ Buy: 880
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7215
+ AegisName: Broken_Needle
+ Name: Broken Needle
+ Type: Etc
+ Buy: 690
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7216
+ AegisName: Red_Scarf
+ Name: Red Muffler
+ Type: Etc
+ Buy: 660
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7217
+ AegisName: Spool
+ Name: Spool
+ Type: Etc
+ Buy: 424
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7218
+ AegisName: Rotten_Rope
+ Name: Decomposed Rope
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7219
+ AegisName: Striped_Socks
+ Name: Striped Sock
+ Type: Etc
+ Buy: 920
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7220
+ AegisName: Ectoplasm
+ Name: Ectoplasm
+ Type: Etc
+ Buy: 322
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7221
+ AegisName: Tangled_Chain
+ Name: Tangled Chains
+ Type: Etc
+ Buy: 740
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7222
+ AegisName: Tree_Knot
+ Name: Wooden Gnarl
+ Type: Etc
+ Buy: 468
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7223
+ AegisName: Distorted_Portrait
+ Name: Contorted Self-Portrait
+ Type: Etc
+ Buy: 2032
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7224
+ AegisName: Stone_Of_Intelligence
+ Name: Stone of Sage
+ Type: Etc
+ Weight: 10
+ - Id: 7225
+ AegisName: Pumpkin_Bucket
+ Name: Pumpkin Lantern
+ Type: Etc
+ Buy: 486
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7226
+ AegisName: Pill
+ Name: Pellet
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7227
+ AegisName: TCG_Card
+ Name: TCG Card
+ Type: Etc
+ Weight: 10
+ - Id: 7228
+ AegisName: Gold_Bullion
+ Name: Gold Bullion
+ Type: Etc
+ Buy: 100000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7229
+ AegisName: Silver_Bullion
+ Name: Silver Bullion
+ Type: Etc
+ Buy: 50000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7230
+ AegisName: White_Gold_Bullion
+ Name: Platinum Bullion
+ Type: Etc
+ Buy: 200000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7231
+ AegisName: Gold_Ore
+ Name: Gold Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7232
+ AegisName: Silver_Ore
+ Name: Silver Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7233
+ AegisName: Mithril_Ore
+ Name: Mithril Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7234
+ AegisName: Soul_Of_Guild
+ Name: Spirit of Guild
+ Type: Etc
+ Weight: 10
+ - Id: 7235
+ AegisName: Soul_Of_Courage
+ Name: Spirit of Charge
+ Type: Etc
+ Weight: 10
+ - Id: 7236
+ AegisName: Soul_Of_Guard
+ Name: Spirit of Protection
+ Type: Etc
+ Weight: 10
+ - Id: 7237
+ AegisName: Soul_Of_Partnership
+ Name: Spirit of Association
+ Type: Etc
+ Weight: 10
+ - Id: 7238
+ AegisName: Soul_Of_Correspondence
+ Name: Spirit of Coordination
+ Type: Etc
+ Weight: 10
+ - Id: 7239
+ AegisName: Soul_Of_Proceeding
+ Name: Spirit of Advance
+ Type: Etc
+ Weight: 10
+ - Id: 7240
+ AegisName: Soul_Of_Confidence
+ Name: Spirit of Trust
+ Type: Etc
+ Weight: 10
+ - Id: 7241
+ AegisName: Soul_Of_Agreement
+ Name: Spirit of Union
+ Type: Etc
+ Weight: 10
+ - Id: 7242
+ AegisName: Soul_Of_Harmony
+ Name: Spirit of Combination
+ Type: Etc
+ Weight: 10
+ - Id: 7243
+ AegisName: Soul_Of_Cooperate
+ Name: Spirit of Cooperation
+ Type: Etc
+ Weight: 10
+ - Id: 7244
+ AegisName: Soul_Of_Unity
+ Name: Spirit of Solidarity
+ Type: Etc
+ Weight: 10
+ - Id: 7245
+ AegisName: Soul_Of_Friendship
+ Name: Spirit of Friendship
+ Type: Etc
+ Weight: 10
+ - Id: 7246
+ AegisName: Soul_Of_Peace
+ Name: Spirit of Peace
+ Type: Etc
+ Weight: 10
+ - Id: 7247
+ AegisName: Soul_Of_Spirit
+ Name: Spirit of Determination
+ Type: Etc
+ Weight: 10
+ - Id: 7248
+ AegisName: Soul_Of_Honor
+ Name: Spirit of Honor
+ Type: Etc
+ Weight: 10
+ - Id: 7249
+ AegisName: Soul_Of_Service
+ Name: Spirit of Service
+ Type: Etc
+ Weight: 10
+ - Id: 7250
+ AegisName: Soul_Of_Glory
+ Name: Spirit of Glory
+ Type: Etc
+ Weight: 10
+ - Id: 7251
+ AegisName: Soul_Of_Victory
+ Name: Spirit of Victory
+ Type: Etc
+ Weight: 10
+ - Id: 7252
+ AegisName: Herb_Medicine
+ Name: Herbal Medicine
+ Type: Etc
+ Weight: 10
+ - Id: 7253
+ AegisName: Taeguk_Flag
+ Name: Golden Korean Flag
+ Type: Etc
+ Weight: 10
+ - Id: 7254
+ AegisName: Digital_Print_Ticket
+ Name: Digital Picture Printing Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 7255
+ AegisName: China_Marble01
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7256
+ AegisName: China_Marble02
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7257
+ AegisName: China_Marble03
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7258
+ AegisName: China_Marble04
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7259
+ AegisName: China_Marble05
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7260
+ AegisName: China_Marble06
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7261
+ AegisName: China_Marble07
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7262
+ AegisName: Fan
+ Name: Folding Fan of Cat Ghost
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7263
+ AegisName: Cat_Eyed_Stone
+ Name: Cat's Eye
+ Type: Etc
+ Buy: 954
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7264
+ AegisName: Dried_Sand
+ Name: Dry Sand
+ Type: Etc
+ Buy: 322
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7265
+ AegisName: Dragon_Horn
+ Name: Dragon Horn
+ Type: Etc
+ Buy: 544
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7266
+ AegisName: Dragon_Fang
+ Name: Denture from Dragon Mask
+ Type: Etc
+ Buy: 436
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7267
+ AegisName: Tiger_Skin_Panties
+ Name: Tiger Panty
+ Type: Etc
+ Buy: 298
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7268
+ AegisName: Little_Blacky_Ghost
+ Name: Little Ghost Doll
+ Type: Etc
+ Buy: 1210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7269
+ AegisName: Bib
+ Name: Pinafore
+ Type: Etc
+ Buy: 960
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7270
+ AegisName: Milk_Bottle
+ Name: Nursing Bottle
+ Type: Etc
+ Buy: 1100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7271
+ AegisName: Figure
+ Name: Novice Figure
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ - Id: 7272
+ AegisName: Meat_Dumpling_Doll
+ Name: Rice Ball Doll
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7273
+ AegisName: Golden_Necklace
+ Name: RWC Necklace
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7274
+ AegisName: Ancient_Translator
+ Name: Translated Ancient Language
+ Type: Etc
+ Weight: 10
+ - Id: 7275
+ AegisName: Ancient_Document
+ Name: Record of Ancient Language
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7276
+ AegisName: Picture_Letter
+ Name: Doodled Message
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7277
+ AegisName: Munak_Doll
+ Name: Munak Doll
+ Type: Etc
+ Buy: 8900
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7278
+ AegisName: Wellbeing_Letter
+ Name: Letter to Wife
+ Type: Etc
+ Weight: 10
+ - Id: 7279
+ AegisName: Vita500_Lid
+ Name: Vita500 Lid
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7280
+ AegisName: Quiz_Ticket01
+ Name: 1st Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7281
+ AegisName: Quiz_Ticket02
+ Name: 2nd Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7282
+ AegisName: Quiz_Ticket03
+ Name: 3rd Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7283
+ AegisName: Quiz_Ticket04
+ Name: 4th Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7284
+ AegisName: Quiz_Ticket05
+ Name: 5th Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7285
+ AegisName: Thread_Skein
+ Name: Holy Threads
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7286
+ AegisName: Chilli
+ Name: Red Chile
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7287
+ AegisName: Thread_Skein_
+ Name: Holier Threads
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7288
+ AegisName: Thai_Ring
+ Name: Engagement Ring
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7289
+ AegisName: Olivine
+ Name: Peridot
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7290
+ AegisName: Phlogopite
+ Name: Phlogopite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7291
+ AegisName: Agate
+ Name: Agate
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7292
+ AegisName: Muscovite
+ Name: Muscovite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7293
+ AegisName: Rose_Quartz
+ Name: Rose Quartz
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7294
+ AegisName: Turquoise
+ Name: Turquoise
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7295
+ AegisName: Citrine
+ Name: Citrin
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7296
+ AegisName: Pyroxene
+ Name: Pyroxene
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7297
+ AegisName: Biotite
+ Name: Biotite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7298
+ AegisName: Leaf_Clothes
+ Name: Fig Leaf
+ Type: Etc
+ Buy: 538
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7299
+ AegisName: Bamboo_Basket
+ Name: Straw Basket
+ Type: Etc
+ Buy: 632
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7300
+ AegisName: Gemstone
+ Name: Gemstone
+ Type: Etc
+ Buy: 1420
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7301
+ AegisName: Sword_Accessory
+ Name: Tassel
+ Type: Etc
+ Buy: 798
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7302
+ AegisName: KRATHONG
+ Name: Krathong
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7303
+ AegisName: Bag_Of_Rice
+ Name: Straw Rice Bag
+ Type: Etc
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ - Id: 7304
+ AegisName: Witch's_Spell_Book
+ Name: Witch's Spell Scroll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7305
+ AegisName: Authority_Of_Nine_World
+ Name: Symbol of the Nine Realms
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7306
+ AegisName: Fragment_Of_Soul
+ Name: Piece of Spirit
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7307
+ AegisName: Whisper_Of_Soul
+ Name: Spiritual Whispers
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7308
+ AegisName: Witch's_Potion
+ Name: Witch's Tonic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7309
+ AegisName: Wing_Of_Crow
+ Name: Crow Wing
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7310
+ AegisName: Free_Peco_Ticket
+ Name: Free Ticket for Peco Ride
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7311
+ AegisName: Free_Flying_Ship_Ticket
+ Name: Free Ticket for Flyship
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7312
+ AegisName: Jubilee
+ Name: Jubilee
+ Type: Etc
+ Buy: 32
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7313
+ AegisName: Seal_Of_Witch
+ Name: Witch's Medal
+ Type: Etc
+ Buy: 2
+ - Id: 7314
+ AegisName: The_Sign
+ Name: The Sign
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7315
+ AegisName: Dark_Crystal_Fragment
+ Name: Dark Crystal Fragment
+ Type: Etc
+ Buy: 422
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7316
+ AegisName: Long_Limb
+ Name: Insect Leg
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7317
+ AegisName: Screw
+ Name: Rusty Screw
+ Type: Etc
+ Buy: 534
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7318
+ AegisName: Old_Pick
+ Name: Old Pick
+ Type: Etc
+ Buy: 512
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7319
+ AegisName: Old_Steel_Plate
+ Name: Used Iron Plate
+ Type: Etc
+ Buy: 1024
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7320
+ AegisName: Air_Pollutant
+ Name: Dust Pollutant
+ Type: Etc
+ Buy: 256
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7321
+ AegisName: Fragment_Of_Crystal
+ Name: Crystal Fragment
+ Type: Etc
+ Buy: 552
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7322
+ AegisName: Poisonous_Gas
+ Name: Toxic Gas
+ Type: Etc
+ Buy: 666
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7323
+ AegisName: Battered_Kettle
+ Name: Battered Kettle
+ Type: Etc
+ Buy: 256
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7325
+ AegisName: Tube
+ Name: Flexible Tube
+ Type: Etc
+ Buy: 102
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7326
+ AegisName: Fluorescent_Liquid
+ Name: Fluorescent Liquid
+ Type: Etc
+ Buy: 712
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7327
+ AegisName: Headlamp
+ Name: Flashlight
+ Type: Etc
+ Buy: 1024
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7328
+ AegisName: Legendary_Scroll
+ Name: Legend of Songkran
+ Type: Etc
+ Weight: 10
+ - Id: 7329
+ AegisName: Old_Copper_Key
+ Name: Old Bronze Key
+ Type: Etc
+ Weight: 10
+ - Id: 7330
+ AegisName: 2anny
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7331
+ AegisName: Flower_Of_Heaven
+ Name: Heaven Flower
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7332
+ AegisName: Slate
+ Name: Complete Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7333
+ AegisName: Piece_Of_Slate_1
+ Name: Prontera Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7334
+ AegisName: Piece_Of_Slate_2
+ Name: Payon Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7335
+ AegisName: Piece_Of_Slate_3
+ Name: Morocc Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7336
+ AegisName: Piece_Of_Slate_4
+ Name: Geffen Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7337
+ AegisName: Eye_Of_Hellion
+ Name: Eye of Hellion
+ Type: Etc
+ - Id: 7338
+ AegisName: RO_Transportation_Card
+ Name: One-way Ticket
+ Type: Etc
+ - Id: 7339
+ AegisName: RO_Transportation_Card_
+ Name: Commemorative Travel Card
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7340
+ AegisName: Will_Of_Darkness
+ Name: Will of the Darkness
+ Type: Etc
+ Buy: 734
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7341
+ AegisName: Worn_Out_Pendant
+ Name: Old Pendant
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7342
+ AegisName: File01
+ Name: File Folder
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7343
+ AegisName: File02
+ Name: Sealed File Folder
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7344
+ AegisName: File03
+ Name: Shinokas Case File
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7345
+ AegisName: Armlet_Of_Prisoner
+ Name: Handcuffs
+ Type: Etc
+ Buy: 724
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7346
+ AegisName: Pile_Of_Ymir_Heart
+ Name: Ymir's Heart Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7347
+ AegisName: Lab_Staff_Record
+ Name: Research Chart
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7348
+ AegisName: Indication_Of_Member01
+ Name: Membership Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7349
+ AegisName: Indication_Of_Member02
+ Name: Archive Permit
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7350
+ AegisName: Pass
+ Name: Pass
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7351
+ AegisName: Friend's_Diary
+ Name: Friend's Diary
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7352
+ AegisName: Transparent_Plate01
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7353
+ AegisName: Transparent_Plate02
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7354
+ AegisName: Transparent_Plate03
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7355
+ AegisName: Transparent_Plate04
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7356
+ AegisName: Piece_Of_Crest1
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7357
+ AegisName: Piece_Of_Crest2
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7358
+ AegisName: Piece_Of_Crest3
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7359
+ AegisName: Piece_Of_Crest4
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7360
+ AegisName: RO_Festival_Ticket
+ Name: RO Festival Invitation
+ Type: Etc
+ Weight: 10
+ - Id: 7361
+ AegisName: Lotto01
+ Name: Lotto Ball 01
+ Type: Etc
+ Weight: 10
+ - Id: 7362
+ AegisName: Lotto02
+ Name: Lotto Ball 02
+ Type: Etc
+ Weight: 10
+ - Id: 7363
+ AegisName: Lotto03
+ Name: Lotto Ball 03
+ Type: Etc
+ Weight: 10
+ - Id: 7364
+ AegisName: Lotto04
+ Name: Lotto Ball 04
+ Type: Etc
+ Weight: 10
+ - Id: 7365
+ AegisName: Lotto05
+ Name: Lotto Ball 05
+ Type: Etc
+ Weight: 10
+ - Id: 7366
+ AegisName: Lotto06
+ Name: Lotto Ball 06
+ Type: Etc
+ Weight: 10
+ - Id: 7367
+ AegisName: Lotto07
+ Name: Lotto Ball 07
+ Type: Etc
+ Weight: 10
+ - Id: 7368
+ AegisName: Lotto08
+ Name: Lotto Ball 08
+ Type: Etc
+ Weight: 10
+ - Id: 7369
+ AegisName: Lotto09
+ Name: Lotto Ball 09
+ Type: Etc
+ Weight: 10
+ - Id: 7370
+ AegisName: Lotto10
+ Name: Lotto Ball 10
+ Type: Etc
+ Weight: 10
+ - Id: 7371
+ AegisName: Lotto11
+ Name: Lotto Ball 11
+ Type: Etc
+ Weight: 10
+ - Id: 7372
+ AegisName: Lotto12
+ Name: Lotto Ball 12
+ Type: Etc
+ Weight: 10
+ - Id: 7373
+ AegisName: Lotto13
+ Name: Lotto Ball 13
+ Type: Etc
+ Weight: 10
+ - Id: 7374
+ AegisName: Lotto14
+ Name: Lotto Ball 14
+ Type: Etc
+ Weight: 10
+ - Id: 7375
+ AegisName: Lotto15
+ Name: Lotto Ball 15
+ Type: Etc
+ Weight: 10
+ - Id: 7376
+ AegisName: Lotto16
+ Name: Lotto Ball 16
+ Type: Etc
+ Weight: 10
+ - Id: 7377
+ AegisName: Lotto17
+ Name: Lotto Ball 17
+ Type: Etc
+ Weight: 10
+ - Id: 7378
+ AegisName: Lotto18
+ Name: Lotto Ball 18
+ Type: Etc
+ Weight: 10
+ - Id: 7379
+ AegisName: Lotto19
+ Name: Lotto Ball 19
+ Type: Etc
+ Weight: 10
+ - Id: 7380
+ AegisName: Lotto20
+ Name: Lotto Ball 20
+ Type: Etc
+ Weight: 10
+ - Id: 7381
+ AegisName: Lotto21
+ Name: Lotto Ball 21
+ Type: Etc
+ Weight: 10
+ - Id: 7382
+ AegisName: Lotto22
+ Name: Lotto Ball 22
+ Type: Etc
+ Weight: 10
+ - Id: 7383
+ AegisName: Lotto23
+ Name: Lotto Ball 23
+ Type: Etc
+ Weight: 10
+ - Id: 7384
+ AegisName: Lotto24
+ Name: Lotto Ball 24
+ Type: Etc
+ Weight: 10
+ - Id: 7385
+ AegisName: Lotto25
+ Name: Lotto Ball 25
+ Type: Etc
+ Weight: 10
+ - Id: 7386
+ AegisName: Lotto26
+ Name: Lotto Ball 26
+ Type: Etc
+ Weight: 10
+ - Id: 7387
+ AegisName: Lotto27
+ Name: Lotto Ball 27
+ Type: Etc
+ Weight: 10
+ - Id: 7388
+ AegisName: Lotto28
+ Name: Lotto Ball 28
+ Type: Etc
+ Weight: 10
+ - Id: 7389
+ AegisName: Lotto29
+ Name: Lotto Ball 29
+ Type: Etc
+ Weight: 10
+ - Id: 7390
+ AegisName: Lotto30
+ Name: Lotto Ball 30
+ Type: Etc
+ Weight: 10
+ - Id: 7391
+ AegisName: Lotto31
+ Name: Lotto Ball 31
+ Type: Etc
+ Weight: 10
+ - Id: 7392
+ AegisName: Lotto32
+ Name: Lotto Ball 32
+ Type: Etc
+ Weight: 10
+ - Id: 7393
+ AegisName: Lotto33
+ Name: Lotto Ball 33
+ Type: Etc
+ Weight: 10
+ - Id: 7394
+ AegisName: Lotto34
+ Name: Lotto Ball 34
+ Type: Etc
+ Weight: 10
+ - Id: 7395
+ AegisName: Lotto35
+ Name: Lotto Ball 35
+ Type: Etc
+ Weight: 10
+ - Id: 7396
+ AegisName: Lotto36
+ Name: Lotto Ball 36
+ Type: Etc
+ Weight: 10
+ - Id: 7397
+ AegisName: Lotto37
+ Name: Lotto Ball 37
+ Type: Etc
+ Weight: 10
+ - Id: 7398
+ AegisName: Lotto38
+ Name: Lotto Ball 38
+ Type: Etc
+ Weight: 10
+ - Id: 7399
+ AegisName: Word_Card01
+ Name: Selamat
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7400
+ AegisName: Word_Card02
+ Name: Hari
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7401
+ AegisName: Word_Card03
+ Name: Kemerdekaan
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7402
+ AegisName: Word_Card04
+ Name: Republik
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7403
+ AegisName: Word_Card05
+ Name: Indonesia
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7404
+ AegisName: Word_Card06
+ Name: Ke-60
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7405
+ AegisName: Crushed_Can
+ Name: Crushed Can
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7406
+ AegisName: Moon_Cake1
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7407
+ AegisName: Moon_Cake2
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7408
+ AegisName: Moon_Cake3
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7409
+ AegisName: Moon_Cake4
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7410
+ AegisName: Moon_Cake5
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7411
+ AegisName: Moon_Cake6
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7412
+ AegisName: Moon_Cake7
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7413
+ AegisName: Moon_Cake8
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7414
+ AegisName: Moon_Cake9
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7415
+ AegisName: Stone_Of_Summons
+ Name: Summoning Stone
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7416
+ AegisName: Letter_Of_Recommend
+ Name: Letter of Recommendation
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7417
+ AegisName: Mission_ScrollA
+ Name: Written Request(A)
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7418
+ AegisName: Mission_ScrollB
+ Name: Written Request(B)
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7419
+ AegisName: Embryo_HandBook
+ Name: Embryo Creation Guide
+ Type: Etc
+ Buy: 48000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7420
+ AegisName: Skull_
+ Name: Skull
+ Type: Etc
+ Trade:
+ Override: 100
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7421
+ AegisName: Key_Red
+ Name: Red Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7422
+ AegisName: Key_Yellow
+ Name: Yellow Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7423
+ AegisName: Key_Blue
+ Name: Blue Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7424
+ AegisName: Key_Green
+ Name: Green Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7425
+ AegisName: Key_Black
+ Name: Black Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7426
+ AegisName: Magic_Gem_Red
+ Name: Red Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7427
+ AegisName: Magic_Gem_Yellow
+ Name: Yellow Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7428
+ AegisName: Magic_Gem_Blue
+ Name: Blue Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7429
+ AegisName: Magic_Gem_Green
+ Name: Green Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7430
+ AegisName: Magic_Gem_Black
+ Name: Black Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7431
+ AegisName: Several_Books
+ Name: Pile of Books
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7432
+ AegisName: Leather_Pouch
+ Name: Leather Pouch
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7433
+ AegisName: Scroll
+ Name: Blank Scroll
+ Type: Etc
+ Buy: 4000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7434
+ AegisName: Elemental_Potion_Book
+ Name: Elemental Potion Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7435
+ AegisName: Golden_Bracelet
+ Name: Golden Ornament
+ Type: Etc
+ Buy: 1907
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7436
+ AegisName: Piece_Of_Memory_Green
+ Name: Fragment of Agony
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7437
+ AegisName: Piece_Of_Memory_Purple
+ Name: Fragment of Misery
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7438
+ AegisName: Piece_Of_Memory_Blue
+ Name: Fragment of Hatred
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7439
+ AegisName: Piece_Of_Memory_Red
+ Name: Fragment of Despair
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7440
+ AegisName: Red_Feather
+ Name: Red Feather
+ Type: Etc
+ Buy: 1335
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7441
+ AegisName: Blue_Feather
+ Name: Blue Feather
+ Type: Etc
+ Buy: 1408
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7442
+ AegisName: Cursed_Seal
+ Name: Cursed Seal
+ Type: Etc
+ Buy: 1332
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7443
+ AegisName: Tri_Headed_Dragon_Head
+ Name: Three-Headed Dragon's Head
+ Type: Etc
+ Buy: 956
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7444
+ AegisName: Treasure_Box
+ Name: Treasure Box
+ Type: Etc
+ Buy: 300000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7445
+ AegisName: Dragonball_Green
+ Name: Green Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7446
+ AegisName: Dragonball_Blue
+ Name: Blue Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7447
+ AegisName: Dragonball_Red
+ Name: Red Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7448
+ AegisName: Dragonball_Yellow
+ Name: Yellow Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7449
+ AegisName: Bloody_Page
+ Name: Bloody Page
+ Type: Etc
+ Buy: 681
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7450
+ AegisName: Piece_Of_Bone_Armor
+ Name: Skeletal Armor Piece
+ Type: Etc
+ Buy: 2050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7451
+ AegisName: Scale_Of_Red_Dragon
+ Name: Fire Dragon Scale
+ Type: Etc
+ Buy: 1852
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7452
+ AegisName: Yellow_Spice
+ Name: Yellow Spice
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7453
+ AegisName: Sweet_Sauce
+ Name: Sweet Sauce
+ Type: Etc
+ Buy: 700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7454
+ AegisName: Plain_Sauce
+ Name: Savory Sauce
+ Type: Etc
+ Buy: 700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7455
+ AegisName: Hot_Sauce
+ Name: Spicy Sauce
+ Type: Etc
+ Buy: 700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7456
+ AegisName: Red_Spice
+ Name: Red Spice
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7457
+ AegisName: Cooking_Oil
+ Name: Cooking Oil
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7458
+ AegisName: Baphomet's_Horn
+ Name: Fortune Horn
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7459
+ AegisName: RAMADAN_
+ Name: Idul Fitri Card
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7460
+ AegisName: Niflheim_Ticket
+ Name: Niflheim Express Ticket
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7461
+ AegisName: BlueCard_A
+ Name: Blue A Card
+ Type: Etc
+ Weight: 10
+ - Id: 7462
+ AegisName: BlueCard_E
+ Name: Blue E Card
+ Type: Etc
+ Weight: 10
+ - Id: 7463
+ AegisName: BlueCard_F
+ Name: Blue F Card
+ Type: Etc
+ Weight: 10
+ - Id: 7464
+ AegisName: BlueCard_H
+ Name: Blue H Card
+ Type: Etc
+ Weight: 10
+ - Id: 7465
+ AegisName: BlueCard_L
+ Name: Blue L Card
+ Type: Etc
+ Weight: 10
+ - Id: 7466
+ AegisName: BlueCard_N
+ Name: Blue N Card
+ Type: Etc
+ Weight: 10
+ - Id: 7467
+ AegisName: BlueCard_O
+ Name: Blue O Card
+ Type: Etc
+ Weight: 10
+ - Id: 7468
+ AegisName: BlueCard_P
+ Name: Blue P Card
+ Type: Etc
+ Weight: 10
+ - Id: 7469
+ AegisName: BlueCard_U
+ Name: Blue U Card
+ Type: Etc
+ Weight: 10
+ - Id: 7470
+ AegisName: BlueCard_W
+ Name: Blue W Card
+ Type: Etc
+ Weight: 10
+ - Id: 7471
+ AegisName: BlueCard_Y
+ Name: Blue Y Card
+ Type: Etc
+ Weight: 10
+ - Id: 7472
+ AegisName: Cookbook01
+ Name: Level 1 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7473
+ AegisName: Cookbook02
+ Name: Level 2 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7474
+ AegisName: Cookbook03
+ Name: Level 3 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7475
+ AegisName: Cookbook04
+ Name: Level 4 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7476
+ AegisName: Cookbook05
+ Name: Level 5 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7477
+ AegisName: Cookbook06
+ Name: Level 6 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7478
+ AegisName: Cookbook07
+ Name: Level 7 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7479
+ AegisName: Cookbook08
+ Name: Level 8 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7480
+ AegisName: Cookbook09
+ Name: Level 9 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7481
+ AegisName: Cookbook10
+ Name: Level 10 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7482
+ AegisName: Pot
+ Name: Pot
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7483
+ AegisName: Key_Of_Seal
+ Name: Key of the Seal
+ Type: Etc
+ - Id: 7484
+ AegisName: Warrior_Symbol
+ Name: Symbol of a Brave Warrior
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7485
+ AegisName: 2nd_Floor_Pass
+ Name: Cloud General
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7486
+ AegisName: 3rd_Floor_Pass
+ Name: Wind General
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7487
+ AegisName: Tavern_Wine
+ Name: Culinary Wine
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7488
+ AegisName: Delivery_Box
+ Name: Delivery Package
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7489
+ AegisName: Villa_Spare_Key
+ Name: Cottage Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7490
+ AegisName: Kyll_Hire_Letter
+ Name: Letter to Elly
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7491
+ AegisName: Iron_Box
+ Name: Steel Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7492
+ AegisName: Yellow_Key_Card
+ Name: Yellow Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7493
+ AegisName: Golden_Key
+ Name: Golden Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7494
+ AegisName: Kiel_Button
+ Name: Luxurious Button
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7495
+ AegisName: Blue_Key_Card
+ Name: Blue Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7496
+ AegisName: Red_Key_Card
+ Name: Red Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7497
+ AegisName: Steel_Piece
+ Name: Metal Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7498
+ AegisName: Rosimier_Key
+ Name: Rosimier Mansion Keys
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7499
+ AegisName: Family_Portrait
+ Name: Family Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7500
+ AegisName: Elysia_Portrait
+ Name: Woman's Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7501
+ AegisName: Kyll_Hire_Letter2
+ Name: K.H's Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7502
+ AegisName: Piece_Memo_Of_James
+ Name: James's Note
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7503
+ AegisName: Man_Portrait
+ Name: Man's Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7504
+ AegisName: Toy_Motor
+ Name: Power Device
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7505
+ AegisName: Toy_Key
+ Name: Toy Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7506
+ AegisName: Black_Key_Card
+ Name: Black Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7507
+ AegisName: Sturdy_Iron_Piece
+ Name: Solid Iron Piece
+ Type: Etc
+ Buy: 842
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7508
+ AegisName: Elysia_Ring
+ Name: Allysia's Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7509
+ AegisName: Fancy_Key_Card
+ Name: Luxurious Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7510
+ AegisName: Valhalla_Flower
+ Name: Valhalla's Flower
+ Type: Etc
+ Buy: 200000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7511
+ AegisName: Rune_Of_Darkness
+ Name: Rune of Darkness
+ Type: Etc
+ Buy: 2526
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7512
+ AegisName: Burnt_Parts
+ Name: Burnt Part
+ Type: Etc
+ Buy: 1600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7513
+ AegisName: Pocket_Watch
+ Name: Pocket Watch
+ Type: Etc
+ Buy: 3420
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7514
+ AegisName: Monster_Ticket
+ Name: Monster Ticket
+ Type: Etc
+ Buy: 2
+ - Id: 7515
+ AegisName: Marvelous_Medal
+ Name: Prize Medal
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7516
+ AegisName: Green_Key_Card
+ Name: Green Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7517
+ AegisName: Gold_Coin_
+ Name: Gold Coin
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ - Id: 7518
+ AegisName: Women's_Medal
+ Name: Women's Medal
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7519
+ AegisName: Money_Envelope
+ Name: Handsel
+ Type: Etc
+ Weight: 10
+ - Id: 7520
+ AegisName: Chinese_Scroll
+ Name: Please Be Rich
+ Type: Etc
+ Weight: 10
+ - Id: 7521
+ AegisName: Flame_Stone
+ Name: Flame Stone
+ Type: Etc
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7522
+ AegisName: Ice_Stone
+ Name: Ice Stone
+ Type: Etc
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7523
+ AegisName: Wind_Stone
+ Name: Wind Stone
+ Type: Etc
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7524
+ AegisName: Shadow_Orb
+ Name: Shadow Orb
+ Type: Etc
+ Buy: 300
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7525
+ AegisName: Summer_Feast_Ticket
+ Name: Summer Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7526
+ AegisName: Manuscript_Paper
+ Name: Manuscript Paper
+ Type: Etc
+ Buy: 2
+ - Id: 7527
+ AegisName: Life_Book
+ Name: Book About True Life
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7528
+ AegisName: Id_Lottery_Ticket
+ Name: Lottery Ticket
+ Type: Etc
+ - Id: 7529
+ AegisName: Stolen_Sandals
+ Name: Stolen Sandal
+ Type: Etc
+ - Id: 7530
+ AegisName: Travel_Brochure_01
+ Name: Travel Brochure [Amatsu]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7531
+ AegisName: Travel_Brochure_02
+ Name: Travel Brochure [Kunlun]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7532
+ AegisName: Travel_Brochure_03
+ Name: Travel Brochure [Luoyang]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7533
+ AegisName: Travel_Brochure_04
+ Name: Travel Brochure [Ayothaya]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7534
+ AegisName: Photo_Album_01
+ Name: Amatsu Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7535
+ AegisName: Photo_Album_02
+ Name: Kunlun Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7536
+ AegisName: Photo_Album_03
+ Name: Luoyang Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7537
+ AegisName: Photo_Album_04
+ Name: Ayothaya Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7538
+ AegisName: Sifted_Sand
+ Name: Sand for Work
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7539
+ AegisName: Poring_Coin
+ Name: Poring Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7540
+ AegisName: Lotto39
+ Name: Lotto Ball 39
+ Type: Etc
+ Weight: 10
+ - Id: 7541
+ AegisName: Lotto40
+ Name: Lotto Ball 40
+ Type: Etc
+ Weight: 10
+ - Id: 7542
+ AegisName: Lotto41
+ Name: Lotto Ball 41
+ Type: Etc
+ Weight: 10
+ - Id: 7543
+ AegisName: Lotto42
+ Name: Lotto Ball 42
+ Type: Etc
+ Weight: 10
+ - Id: 7544
+ AegisName: Lotto43
+ Name: Lotto Ball 43
+ Type: Etc
+ Weight: 10
+ - Id: 7545
+ AegisName: Lotto44
+ Name: Lotto Ball 44
+ Type: Etc
+ Weight: 10
+ - Id: 7546
+ AegisName: Lotto45
+ Name: Lotto Ball 45
+ Type: Etc
+ Weight: 10
+ - Id: 7547
+ AegisName: Soccer_Ball
+ Name: Soccer Ball
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7548
+ AegisName: Soccer_Shoes
+ Name: Soccer Shoes
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7549
+ AegisName: Brazilian_Flag
+ Name: Brazilian Flag
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7550
+ AegisName: Ticket01
+ Name: 6.13 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7551
+ AegisName: Ticket02
+ Name: 6.18 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7552
+ AegisName: Ticket03
+ Name: 6.22 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7553
+ AegisName: Lotus_Flower
+ Name: Lotus Flower
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7554
+ AegisName: Striped_Candle
+ Name: Striped Candle
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7555
+ AegisName: Green_Incense
+ Name: Green Incense
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7556
+ AegisName: Longing_Heart
+ Name: Longing Heart
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7557
+ AegisName: Invitation_Letter
+ Name: Invitation Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7558
+ AegisName: Invitation_Ticket
+ Name: Invitation Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7559
+ AegisName: Key_Of_Flower_Garden
+ Name: Key to the Secret Garden
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7560
+ AegisName: Longing_Heart2
+ Name: Longing Heart
+ Type: Etc
+ - Id: 7561
+ AegisName: Ice_Heart
+ Name: Glacial Heart
+ Type: Etc
+ Buy: 606
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7562
+ AegisName: Ice_Scale
+ Name: Ice Scale
+ Type: Etc
+ Buy: 3020
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7563
+ AegisName: Bloody_Rune
+ Name: Bloody Rune
+ Type: Etc
+ Buy: 2016
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7564
+ AegisName: Rotten_Meat
+ Name: Rotten Meat
+ Type: Etc
+ Buy: 102
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7565
+ AegisName: Sticky_Poison
+ Name: Sticky Poison
+ Type: Etc
+ Buy: 350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7566
+ AegisName: Will_Of_Darkness_
+ Name: Will of Red Darkness
+ Type: Etc
+ Buy: 1530
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7567
+ AegisName: Suspicious_Hat
+ Name: Suspicious Hat
+ Type: Etc
+ Buy: 1290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7568
+ AegisName: White_Mask
+ Name: White Mask
+ Type: Etc
+ Buy: 1060
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7569
+ AegisName: Hammer_Of_Wind
+ Name: Wind Hammer
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7570
+ AegisName: Temple_Lottery_Ticket
+ Name: Temple Lottery Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7571
+ AegisName: Diary_Of_Blue
+ Name: Bruspetti's Diary
+ Type: Etc
+ - Id: 7572
+ AegisName: Magic_Necklace
+ Name: Ashy Necklace
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7573
+ AegisName: Magic_Necklace_
+ Name: Sparkling Necklace
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7574
+ AegisName: Ice_Particle
+ Name: Freezing Snow Powder
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 7575
+ AegisName: Red_Jewel_
+ Name: Red Jewel
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7576
+ AegisName: Blue_Jewel_
+ Name: Blue Jewel
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7577
+ AegisName: Golden_Jewel_
+ Name: Yellow Jewel
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7578
+ AegisName: Anti_Spell_Bead
+ Name: Countermagic Crystal
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7579
+ AegisName: Silk_Handkerchief
+ Name: Silk Handkerchief of Zhi Nu
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7580
+ AegisName: Black_Bead
+ Name: Black Marble
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7581
+ AegisName: Anniversary_Ticket
+ Name: Celebration Document
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7582
+ AegisName: Gem_Of_Ruin
+ Name: Jewel of Destruction
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7583
+ AegisName: Evil_Mind
+ Name: Evil Mind
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7584
+ AegisName: Proof_Of_Guard1
+ Name: Guard's First Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7585
+ AegisName: Proof_Of_Guard2
+ Name: Guard's Second Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7586
+ AegisName: Proof_Of_Guard3
+ Name: Guard's Third Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7587
+ AegisName: Proof_Of_Guard4
+ Name: Guard's Fourth Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7588
+ AegisName: IPOD_Ticker
+ Name: IPOD Coupon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7589
+ AegisName: Moon_Cake10
+ Name: Lettered Moon Snack 01
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7590
+ AegisName: Moon_Cake11
+ Name: Lettered Moon Snack 02
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7591
+ AegisName: Moon_Cake12
+ Name: Lettered Moon Snack 03
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7592
+ AegisName: Moon_Cake13
+ Name: Lettered Moon Snack 04
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7593
+ AegisName: Moon_Cake14
+ Name: Lettered Moon Snack 05
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7594
+ AegisName: Sonia's_Letter
+ Name: Sonia's Letter
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7595
+ AegisName: Unique_Sword
+ Name: Special Sword
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7596
+ AegisName: Unique_Shield
+ Name: Special Shield
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7597
+ AegisName: Magic_Stone
+ Name: Magic Stone
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7603
+ AegisName: RO_Party_Ticket
+ Name: RO Party Invitation Ticket
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7604
+ AegisName: Flour
+ Name: Flour
+ Type: Etc
+ Weight: 10
+ - Id: 7605
+ AegisName: Chicken_Egg
+ Name: Chicken Egg
+ Type: Etc
+ Weight: 10
+ - Id: 7606
+ AegisName: Coin
+ Name: Token of the Ox
+ Type: Etc
+ Weight: 10
+ - Id: 7607
+ AegisName: Evil_Dragon_Head
+ Name: Neck of Demon Dragon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7608
+ AegisName: Premium_Ticket
+ Name: Premium Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7609
+ AegisName: Pumpkin_Mojo
+ Name: Pumpkin Mojo
+ Type: Etc
+ Weight: 10
+ - Id: 7610
+ AegisName: Food_Ticket
+ Name: Food Exchange Ticket
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 7611
+ AegisName: Fox_Symbol
+ Name: Symbol of Fox
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7612
+ AegisName: Heart_Of_Fox_Queen
+ Name: Heart of Queen Fox
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7613
+ AegisName: Small_Rice_Dough
+ Name: Small Rice Cake Dough
+ Type: Etc
+ - Id: 7614
+ AegisName: Special_Packing_Paper
+ Name: Wrapping Paper
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7615
+ AegisName: MVP_Ticket
+ Name: MVP Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7616
+ AegisName: Mini_Boss_Ticket
+ Name: Miniboss Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7617
+ AegisName: Monster_Ticket_
+ Name: Monster Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7618
+ AegisName: Monster_Crystal
+ Name: Monster Crystal
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7619
+ AegisName: Enriched_Elunium
+ Name: Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7620
+ AegisName: Enriched_Oridecon
+ Name: Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7621
+ AegisName: Token_Of_Siegfried
+ Name: Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7622
+ AegisName: New_Style_Coupon
+ Name: Hairstyle Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 7623
+ AegisName: Name_Change_Coupon
+ Name: Ticket Of Identification
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7624
+ AegisName: Spring_Stanza23
+ Name: Spring Stanza23
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7625
+ AegisName: Registration_Ticket
+ Name: Registration Ticket
+ Type: Etc
+ - Id: 7626
+ AegisName: Bubble_Gum_Token
+ Name: Bubble Gum Token
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7627
+ AegisName: Sage_Key
+ Name: Sage Key
+ Type: Etc
+ - Id: 7628
+ AegisName: Idiot_Key
+ Name: Idiot Key
+ Type: Etc
+ - Id: 7629
+ AegisName: Pink_Gift_Box
+ Name: Pink Gift Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7630
+ AegisName: Clean_Beach_Brush
+ Name: Clean Beach Brush
+ Type: Etc
+ - Id: 7631
+ AegisName: Trash_Debris
+ Name: Trash Debris
+ Type: Etc
+ - Id: 7635
+ AegisName: Sachet
+ Name: Sachet
+ Type: Etc
+ Buy: 100
+ - Id: 7701
+ AegisName: Dragon_Spirit
+ Name: Soul
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7702
+ AegisName: Special_Cogwheel
+ Name: Special Cogwheel
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7703
+ AegisName: Piece_Of_Cogwheel
+ Name: Piece of Cogwheel
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7704
+ AegisName: Broken_Thermometer
+ Name: Broken Thermometer
+ Type: Etc
+ Buy: 2
+ - Id: 7705
+ AegisName: Note_Of_Geologist
+ Name: Note of Geologist
+ Type: Etc
+ Buy: 2
+ - Id: 7706
+ AegisName: Spoiled_Carrot_Juice
+ Name: Broken Carrot Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7707
+ AegisName: Spoiled_Banana_Juice
+ Name: Broken Banana Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7708
+ AegisName: Spoiled_Apple_Juice
+ Name: Broken Apple Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7709
+ AegisName: Spoiled_Grape_Juice
+ Name: Broken Grape Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7710
+ AegisName: Black_Gemstone
+ Name: Black Gemstone
+ Type: Etc
+ Buy: 600
+ Weight: 30
+ - Id: 7711
+ AegisName: Update_Ticket
+ Name: Event Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7712
+ AegisName: Nokia5500
+ Name: Nokia 5500
+ Type: Etc
+ Weight: 10
+ - Id: 7713
+ AegisName: BlueCard_A_
+ Name: Blue A(2) Card
+ Type: Etc
+ Weight: 10
+ - Id: 7714
+ AegisName: BlueCard_R_
+ Name: Blue R(2) Card
+ Type: Etc
+ Weight: 10
+ - Id: 7715
+ AegisName: Handmade_Choco_Recipe
+ Name: Handmade Chocolate Recipe
+ Type: Etc
+ - Id: 7716
+ AegisName: Strawberry_Choco_Recipe
+ Name: Chocolate Strawberry Recipe
+ Type: Etc
+ - Id: 7717
+ AegisName: Choco_Tart_Recipe
+ Name: Chocolate Tart Recipe
+ Type: Etc
+ - Id: 7718
+ AegisName: Cacao_Bean
+ Name: Cacao Bean
+ Type: Etc
+ Weight: 10
+ - Id: 7719
+ AegisName: BlueCard_G
+ Name: Blue G Card
+ Type: Etc
+ Weight: 10
+ - Id: 7720
+ AegisName: Gold_Coin_US
+ Name: Gold Coin
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7721
+ AegisName: Treasure_Box_
+ Name: Treasure Box
+ Type: Etc
+ Buy: 100
+ Weight: 500
+ - Id: 7722
+ AegisName: Debt_Note
+ Name: Debt Note
+ Type: Etc
+ Buy: 20
+ - Id: 7723
+ AegisName: Diamond_Of_Ruin
+ Name: Diamond of Ruin
+ Type: Etc
+ Buy: 20
+ - Id: 7724
+ AegisName: Forbidden_Secret_Art
+ Name: Forbidden Secret Art
+ Type: Etc
+ Buy: 20
+ - Id: 7725
+ AegisName: Unlucky_Emerald
+ Name: Unlucky Emerald
+ Type: Etc
+ Buy: 20
+ - Id: 7726
+ AegisName: Token_Of_King
+ Name: Token of King
+ Type: Etc
+ Buy: 20
+ - Id: 7727
+ AegisName: HP_Doctor_Ticket
+ Name: HP Doctor Ticket
+ Type: Etc
+ - Id: 7728
+ AegisName: SP_Doctor_Ticket
+ Name: SP Doctor Ticket
+ Type: Etc
+ - Id: 7729
+ AegisName: Rok_Star_Badge
+ Name: Rok Star Badge
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7730
+ AegisName: Mission_Certificate1
+ Name: Mission Ticket 1
+ Type: Etc
+ Weight: 10
+ - Id: 7731
+ AegisName: Mission_Certificate2
+ Name: Mission Ticket 2
+ Type: Etc
+ Weight: 10
+ - Id: 7732
+ AegisName: Mission_Certificate3
+ Name: Mission Ticket 3
+ Type: Etc
+ Weight: 10
+ - Id: 7733
+ AegisName: Mission_Certificate4
+ Name: Mission Ticket 4
+ Type: Etc
+ Weight: 10
+ - Id: 7734
+ AegisName: Mission_Certificate5
+ Name: Mission Ticket 5
+ Type: Etc
+ Weight: 10
+ - Id: 7735
+ AegisName: Mission_Certificate6
+ Name: Mission Ticket 6
+ Type: Etc
+ Weight: 10
+ - Id: 7736
+ AegisName: Mission_Certificate7
+ Name: Mission Ticket 7
+ Type: Etc
+ Weight: 10
+ - Id: 7737
+ AegisName: Mission_Certificate8
+ Name: Mission Ticket 8
+ Type: Etc
+ Weight: 10
+ - Id: 7738
+ AegisName: Mission_Certificate9
+ Name: Mission Ticket 9
+ Type: Etc
+ Weight: 10
+ - Id: 7739
+ AegisName: Mission_Certificate10
+ Name: Mission Ticket 10
+ Type: Etc
+ Weight: 10
+ - Id: 7740
+ AegisName: Mission_Certificate11
+ Name: Mission Ticket 11
+ Type: Etc
+ Weight: 10
+ - Id: 7741
+ AegisName: Mission_Certificate12
+ Name: Mission Ticket 12
+ Type: Etc
+ Weight: 10
+ - Id: 7742
+ AegisName: Kaong
+ Name: Kaong
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7743
+ AegisName: Gulaman
+ Name: Gulaman
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7744
+ AegisName: Leche_Flan
+ Name: Leche Flan
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7745
+ AegisName: Ube_Jam
+ Name: Ube Jam
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7746
+ AegisName: Sago
+ Name: Sago
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7747
+ AegisName: Langka
+ Name: Langka
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7748
+ AegisName: Sweet_Bean
+ Name: Sweet Beans
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7749
+ AegisName: Sweet_Banana
+ Name: Sweet Bananas
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7750
+ AegisName: Macapuno
+ Name: Macapuno
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7751
+ AegisName: Old_White_Cloth
+ Name: Old White Cloth
+ Type: Etc
+ Buy: 550
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7752
+ AegisName: Clattering_Skull
+ Name: Clattering Skull
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7753
+ AegisName: Broken_Farming_Utensil
+ Name: Broken Farming Utensil
+ Type: Etc
+ Buy: 330
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7754
+ AegisName: Broken_Crown
+ Name: Broken Crown
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7755
+ AegisName: Research_Note
+ Name: Research Note
+ Type: Etc
+ Buy: 20
+ - Id: 7756
+ AegisName: Sealed_Book
+ Name: Sealed Book
+ Type: Etc
+ Buy: 2000
+ Weight: 10
+ - Id: 7757
+ AegisName: Mithril
+ Name: Mithril
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7758
+ AegisName: Star_Crystal
+ Name: Star Crystal
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7759
+ AegisName: Geology_Report
+ Name: Geologist's Report
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7760
+ AegisName: Yaga_Magic_Book
+ Name: Yaga's Magic Book
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7761
+ AegisName: Magic_Gourd_Bottle
+ Name: Magic Gourd Bottle
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7762
+ AegisName: Yaga_Pestle
+ Name: Yaga's Pestle
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7763
+ AegisName: Sticky_Herb
+ Name: Sticky Herb
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7764
+ AegisName: High_Strength_Adhesive
+ Name: High Strength Adhesive
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7765
+ AegisName: Yaga_Secret_Medicine
+ Name: Baba Yaga's Secret Medicine
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7766
+ AegisName: Bok_Choy
+ Name: Bok Choy
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7767
+ AegisName: Chung_E_Cake
+ Name: Green Maiden's Cake
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7768
+ AegisName: Squid
+ Name: Squid
+ Type: Etc
+ Weight: 10
+ - Id: 7769
+ AegisName: Egg_Yolk
+ Name: Egg Yolk
+ Type: Etc
+ Weight: 10
+ - Id: 7770
+ AegisName: Sweet_Rice
+ Name: Sweet Rice
+ Type: Etc
+ Weight: 10
+ - Id: 7771
+ AegisName: Lotus_Leaf
+ Name: Lotus Leaf
+ Type: Etc
+ Weight: 10
+ - Id: 7772
+ AegisName: String
+ Name: String
+ Type: Etc
+ Weight: 10
+ - Id: 7773
+ AegisName: War_Badge
+ Name: Wat Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7774
+ AegisName: Chung_E_Ticket
+ Name: Green Maiden Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7775
+ AegisName: Spring_Rabbit_Ticket
+ Name: Spring Rabbit Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7776
+ AegisName: Max_Weight_Up_Scroll
+ Name: Gym Pass
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7777
+ AegisName: Gold_Box
+ Name: Sealed Golden Box
+ Type: Etc
+ Weight: 10
+ - Id: 7778
+ AegisName: Silver_Box
+ Name: Sealed Silver Box
+ Type: Etc
+ Weight: 10
+ - Id: 7779
+ AegisName: Gold_Key_TW
+ Name: Golden Key
+ Type: Etc
+ Weight: 10
+ - Id: 7780
+ AegisName: Silver_Key
+ Name: Silver Key
+ Type: Etc
+ Weight: 10
+ - Id: 7781
+ AegisName: Heart_Box
+ Name: Engrave Treasure Box
+ Type: Etc
+ Weight: 10
+ - Id: 7782
+ AegisName: Gold_Key77
+ Name: Episode 13.1 Poporing Key
+ Type: Etc
+ Weight: 10
+ - Id: 7783
+ AegisName: Silver_Key77
+ Name: Episode 13.2 Poring Key
+ Type: Etc
+ Weight: 10
+ - Id: 7784
+ AegisName: Fawner_Coupon1
+ Name: Free Coupon 1
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7785
+ AegisName: Fawner_Coupon2
+ Name: Free Coupon 2
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7786
+ AegisName: Fawner_Coupon3
+ Name: Free Coupon 3
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7787
+ AegisName: Fawner_Coupon4
+ Name: Free Coupon 4
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7788
+ AegisName: Fawner_Coupon5
+ Name: Free Coupon 5
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7789
+ AegisName: Fawner_Coupon6
+ Name: Free Coupon 6
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7790
+ AegisName: Fawner_Coupon7
+ Name: Free Coupon 7
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7791
+ AegisName: Fawner_Coupon8
+ Name: Free Coupon 8
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7792
+ AegisName: Guyak
+ Name: Guyak
+ Type: Etc
+ Weight: 10
+ - Id: 7793
+ AegisName: Golden_Apple
+ Name: Golden Apple
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7794
+ AegisName: Fate_Of_Crow
+ Name: The Crow of Destiny
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7795
+ AegisName: Mami_Photo_Album
+ Name: Mammi's Photo Album
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7796
+ AegisName: Author_Autograph
+ Name: Author's Autograph
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7797
+ AegisName: Author_Memo
+ Name: Author's Memo
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7798
+ AegisName: Dark_Debris
+ Name: Fragment of Darkness
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7799
+ AegisName: Dark_Crystal
+ Name: Crystal of Darkness
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7800
+ AegisName: Golden_Apple_
+ Name: Golden Charm Apple
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7801
+ AegisName: Girl_Fan_Letter
+ Name: Girl's Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7802
+ AegisName: Autograph_Book
+ Name: Signature Notebook
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7803
+ AegisName: Battle_Manual_TW
+ Name: Beginner's Field Manual
+ Type: Etc
+ Weight: 10
+ - Id: 7805
+ AegisName: Brown_Ring
+ Name: Brown Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7806
+ AegisName: Black_Anvil
+ Name: God Anvil
+ Type: Etc
+ Weight: 10
+ - Id: 7807
+ AegisName: Ore
+ Name: God Mineral
+ Type: Etc
+ Weight: 10
+ - Id: 7808
+ AegisName: Gold_Hammer
+ Name: God Hammer
+ Type: Etc
+ Weight: 10
+ - Id: 7809
+ AegisName: Gold_Furnace
+ Name: God Furnace
+ Type: Etc
+ Weight: 10
+ - Id: 7810
+ AegisName: Yellow_Cat_Eyed_Stone
+ Name: Symbol of Richness
+ Type: Etc
+ Weight: 10
+ - Id: 7811
+ AegisName: Gold_Anvil
+ Name: Anvil
+ Type: Etc
+ Weight: 10
+ - Id: 7812
+ AegisName: Red_Cat_Eyed_Stone
+ Name: Symbol of Bravery
+ Type: Etc
+ Weight: 10
+ - Id: 7813
+ AegisName: Th_Red_Ring
+ Name: Red Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7814
+ AegisName: Green_Ring
+ Name: Green Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7815
+ AegisName: Blue_Ring
+ Name: Blue Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7816
+ AegisName: Blue_Cat_Eyed_Stone
+ Name: Symbol of Faith
+ Type: Etc
+ Weight: 10
+ - Id: 7817
+ AegisName: White_Cat_Eyed_Stone
+ Name: Symbol of Peace
+ Type: Etc
+ Weight: 10
+ - Id: 7818
+ AegisName: RJC_Golden_Necklace
+ Name: Jessur's Necklace
+ Type: Etc
+ Weight: 10
+ - Id: 7819
+ AegisName: Nokia5300
+ Name: Nokia 5300
+ Type: Etc
+ Weight: 10
+ - Id: 7820
+ AegisName: Morroc_Skin
+ Name: Piece of Morocc Skin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7821
+ AegisName: Green_Apple
+ Name: Green Apple
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7822
+ AegisName: Whole_Barbecue
+ Name: Whole Barbecue
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7823
+ AegisName: Meat_Veg_Skewer
+ Name: Meat Veg Skewer
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7824
+ AegisName: Spirit_Liquor
+ Name: Spirit Liquor
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7825
+ AegisName: Heroic_Stone
+ Name: Heroic Stone
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7826
+ AegisName: Continental_Guard_Paper
+ Name: Continental Guard Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7827
+ AegisName: Mineral_Report
+ Name: Mineral Evals
+ Type: Etc
+ - Id: 7828
+ AegisName: BF_Badge1
+ Name: Bravery Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7829
+ AegisName: BF_Badge2
+ Name: Valor Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7830
+ AegisName: Goddess_Tear
+ Name: Goddess Tear
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7831
+ AegisName: Valkyrie_Token
+ Name: Valkyrie's Token
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7832
+ AegisName: Brynhild_Armor_Piece
+ Name: Brynhild Armor Piece
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7833
+ AegisName: Hero_Remains
+ Name: Hero's Remains
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7834
+ AegisName: Andvari_Ring
+ Name: Andvari's Ring
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7835
+ AegisName: Dusk_Glow
+ Name: Dusk Glow
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7836
+ AegisName: Dawn_Essence
+ Name: Dawn Essence
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7837
+ AegisName: Cold_Moonlight
+ Name: Cold Moonlight
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7838
+ AegisName: Hazy_Starlight
+ Name: Hazy Starlight
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7839
+ AegisName: Crystal_Key
+ Name: Crystal Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7840
+ AegisName: Valkyrie_Gift
+ Name: Valkyrie's Gift
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7841
+ AegisName: Spotted_Paper
+ Name: Stained Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7842
+ AegisName: Torn_Paper
+ Name: Torn Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7843
+ AegisName: Old_Paper
+ Name: Old Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7844
+ AegisName: Burnt_Paper
+ Name: Burnt Pieces Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7845
+ AegisName: Copy_Of_Spotted_Paper
+ Name: Copy Of Spotted Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7846
+ AegisName: Copy_Of_Torn_Paper
+ Name: Copy Of Torn Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7847
+ AegisName: Copy_Of_Old_Paper
+ Name: Copy Of Old Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7848
+ AegisName: Copy_Of_Burnt_Paper
+ Name: Copy Of Burnt Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7849
+ AegisName: Soul_Crystal
+ Name: Soul Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 7850
+ AegisName: Wooden_Block_
+ Name: Wooden Block
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7851
+ AegisName: Pass_F1
+ Name: Wii Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7852
+ AegisName: Pass_F2
+ Name: Divx Player Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7853
+ AegisName: Pass_F3
+ Name: iPod nano Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7854
+ AegisName: Pass_CF
+ Name: Comodo Festival Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7855
+ AegisName: Heart
+ Name: Heart
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7856
+ AegisName: Girl_Bunch_Of_Flower_
+ Name: Girl's Bouquet
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ - Id: 7857
+ AegisName: Handmade_Kitty_Doll
+ Name: Hand-made Kitty Doll
+ Type: Etc
+ Buy: 20
+ Weight: 30
+ - Id: 7858
+ AegisName: Dragonball_Yellow_
+ Name: Dragonball Yellow
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7859
+ AegisName: Game_Ticket
+ Name: Game Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7860
+ AegisName: Peeps
+ Name: Peeps
+ Type: Etc
+ Weight: 50
+ - Id: 7861
+ AegisName: Jelly_Bean
+ Name: Jelly Bean
+ Type: Etc
+ Weight: 50
+ - Id: 7862
+ AegisName: Marshmallow
+ Name: Marshmallow
+ Type: Etc
+ Weight: 50
+ - Id: 7863
+ AegisName: GOLD_ID4
+ Name: Special Gold
+ Type: Etc
+ Buy: 20
+ Weight: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7864
+ AegisName: Love_Flower
+ Name: Love Flower
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7865
+ AegisName: Gold_Pouch
+ Name: Gold Pouch
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7866
+ AegisName: Certificate
+ Name: Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7867
+ AegisName: SesamePouch
+ Name: Sesame Bag
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7868
+ AegisName: Water
+ Name: Fresh Water
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7869
+ AegisName: RicePouch
+ Name: Rice Pouch
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7870
+ AegisName: Corn
+ Name: Corn
+ Type: Etc
+ Buy: 5
+ Weight: 20
+ - Id: 7871
+ AegisName: BeanPouch
+ Name: Bean Bag
+ Type: Etc
+ Buy: 10
+ Weight: 20
+ - Id: 7872
+ AegisName: Grass
+ Name: Herb
+ Type: Etc
+ Buy: 10
+ Weight: 30
+ - Id: 7873
+ AegisName: MVP_Monster_Scroll
+ Name: MVP Monster Scroll
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7874
+ AegisName: Monster_Scroll
+ Name: Create Monster Scroll
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7875
+ AegisName: Pirate_Box
+ Name: Pirate Treasure
+ Type: Etc
+ Buy: 300000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7876
+ AegisName: Gold_Key
+ Name: Golden Key
+ Type: Etc
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7877
+ AegisName: Red_Ring
+ Name: Red Ring
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7878
+ AegisName: Lusalka_Hair
+ Name: Lusalka's Hair
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7879
+ AegisName: Golden_Thread
+ Name: Golden Thread
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7880
+ AegisName: Babayaga_Silver_Spoon
+ Name: Baba Yaga's Silver Spoon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7881
+ AegisName: Book_Of_Magic
+ Name: Mystery Magic Book
+ Type: Etc
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7882
+ AegisName: Pointed_Branch
+ Name: Sharp Branch
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7883
+ AegisName: Pointed_Wooden_Flute
+ Name: Wooden Flute
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7884
+ AegisName: Jade_Plate
+ Name: Jade Plate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7885
+ AegisName: Sacred_Arrow
+ Name: Sacred Arrow
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7886
+ AegisName: Bean_Paste
+ Name: Bean Paste
+ Type: Etc
+ Weight: 10
+ - Id: 7887
+ AegisName: Dried_Fruit_Box
+ Name: Dried Fruit Box
+ Type: Etc
+ Weight: 30
+ - Id: 7888
+ AegisName: Bag_Of_Nuts
+ Name: Bag of Nuts
+ Type: Etc
+ Weight: 30
+ - Id: 7889
+ AegisName: Chicken_Feed
+ Name: Chicken Feed
+ Type: Etc
+ Weight: 20
+ - Id: 7891
+ AegisName: Mug
+ Name: Mug
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ - Id: 7892
+ AegisName: Charcoal
+ Name: Charcoal
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7893
+ AegisName: Sulfur
+ Name: Sulphur
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7894
+ AegisName: Nitrate
+ Name: Nitrogen Acid
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7895
+ AegisName: TRO_Memory_Book01
+ Name: Rama5 Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7896
+ AegisName: TRO_Memory_Book02
+ Name: Loykrathong Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7897
+ AegisName: TRO_Memory_Book03
+ Name: Constitution Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7898
+ AegisName: VVS_Balmung
+ Name: VV Strong Balmung
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7899
+ AegisName: Spiritualist_Dagger
+ Name: Dagger Of Psychic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7900
+ AegisName: Jenoss_Ring1
+ Name: Jonathan Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7901
+ AegisName: Jenoss_Ring2
+ Name: Jillberriel Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7902
+ AegisName: Jenoss_Ring3
+ Name: Jessur Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7903
+ AegisName: Jenoss_Ring4
+ Name: Jenoss Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7904
+ AegisName: Piano_Key
+ Name: Piano Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7905
+ AegisName: Rok_Star_Badge_
+ Name: Rok Star Badge
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7906
+ AegisName: Poppy_Wreath
+ Name: Poppy Wreath
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7907
+ AegisName: Bobbin_Of_Goddess
+ Name: Bobbin Of Goddess
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7908
+ AegisName: Louis_Hair_Coupon
+ Name: Louise's Beauty Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 7909
+ AegisName: Stolen_Cookie
+ Name: Stolen Cookie
+ Type: Etc
+ Weight: 10
+ - Id: 7910
+ AegisName: Stolen_Candy
+ Name: Stolen Candy
+ Type: Etc
+ Weight: 10
+ - Id: 7911
+ AegisName: Yulia_Hat
+ Name: Yulia's Hat
+ Type: Etc
+ Weight: 10
+ - Id: 7912
+ AegisName: Portable_Snowman
+ Name: Portable Snowman Machine
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7913
+ AegisName: Test_Certificate
+ Name: Battle Test Certificate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7914
+ AegisName: Ancient_Document_TW
+ Name: Ancient Language Document
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7915
+ AegisName: Copper_Coin_
+ Name: Bronze Coin
+ Type: Etc
+ - Id: 7916
+ AegisName: Silver_Coin_
+ Name: Silver Coin
+ Type: Etc
+ - Id: 7917
+ AegisName: Magic_Potion
+ Name: Magic Potion
+ Type: Etc
+ - Id: 7918
+ AegisName: Particle_Of_Memory
+ Name: Fragment Of Memory
+ Type: Etc
+ Buy: 2000
+ Weight: 100
+ - Id: 7919
+ AegisName: Festival_Ticket
+ Name: Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7920
+ AegisName: Hero's_Arsenal
+ Name: He's Arsenal
+ Type: Etc
+ - Id: 7921
+ AegisName: Essence_Of_Dragon
+ Name: Essence Of Dragon
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 7922
+ AegisName: RWC_Ticket
+ Name: RWC Voucher Items
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7923
+ AegisName: KRATHONG_
+ Name: Krathong
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7928
+ AegisName: Brazilian_Flag_
+ Name: Brazil National Flag
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7929
+ AegisName: Golden_Coin_
+ Name: Gold Coin
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7930
+ AegisName: Cowking's_Nose_Ring
+ Name: Devil's Cattle Ring
+ Type: Etc
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7931
+ AegisName: Poison_Kit
+ Name: Poison Kit
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7932
+ AegisName: Poison_Herb_Nerium
+ Name: Poison Herb Nerium
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7933
+ AegisName: Poison_Herb_Rantana
+ Name: Poison Herb Rantana
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7934
+ AegisName: Poison_Herb_Makulata
+ Name: Poison Herb Makulata
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7935
+ AegisName: Poison_Herb_Seratum
+ Name: Poison Herb Seratum
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7936
+ AegisName: Poison_Herb_Scopolia
+ Name: Poison Herb Scoporia
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7937
+ AegisName: Poison_Herb_Amoena
+ Name: Poison Herb Amoena
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7938
+ AegisName: Light_Granule
+ Name: Light Granule
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7939
+ AegisName: Elder_Branch
+ Name: Elder Branch
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7940
+ AegisName: Special_Alloy_Trap
+ Name: Special Alloy Trap
+ Type: Etc
+ Buy: 200
+ Weight: 2
+ Flags:
+ BuyingStore: true
+ - Id: 7941
+ AegisName: Halloween_Ticket
+ Name: Halloween Ticket
+ Type: Etc
+ Buy: 10
+ - Id: 7942
+ AegisName: Letter_From_Chico
+ Name: Chico Cesar Letter
+ Type: Etc
+ - Id: 7943
+ AegisName: Caskinya
+ Name: Caskinya
+ Type: Etc
+ - Id: 7944
+ AegisName: Sealed_Box
+ Name: Sealed Box
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 7945
+ AegisName: Almighty_Charm
+ Name: Universal Amulet
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 7946
+ AegisName: Valentine_Gold_Ring
+ Name: Gold Ring Of Valentine
+ Type: Etc
+ Buy: 10
+ - Id: 7947
+ AegisName: Valentine_Silver_Ring
+ Name: Silver Ring Of Valentine
+ Type: Etc
+ Buy: 10
+ - Id: 7948
+ AegisName: Box
+ Name: Box
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7949
+ AegisName: Woven_Wool
+ Name: Woven Wool
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7950
+ AegisName: Ayothaya_Ticket
+ Name: Ayothaya Fest Ticket
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7951
+ AegisName: Gold_Tulip
+ Name: Golden Tulip Flower
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7952
+ AegisName: Gift_From_Romiros
+ Name: Gift Of Lomi Ross
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7953
+ AegisName: Gift_From_Juliedge
+ Name: Gift Of Juliet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7954
+ AegisName: Festival_Ticket_
+ Name: Summer Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7955
+ AegisName: Lost_Card1
+ Name: Lost Card1
+ Type: Etc
+ Buy: 10
+ - Id: 7956
+ AegisName: Lost_Card2
+ Name: Lost Card2
+ Type: Etc
+ Buy: 10
+ - Id: 7957
+ AegisName: Lost_Card3
+ Name: Lost Card3
+ Type: Etc
+ Buy: 10
+ - Id: 7958
+ AegisName: Lost_Card4
+ Name: Lost Card4
+ Type: Etc
+ Buy: 10
+ - Id: 7959
+ AegisName: Ancient_Gold_Coin
+ Name: Ancient Gold Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ - Id: 7960
+ AegisName: Ancient_Silver_Coin
+ Name: Ancient Silver Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoGuildStorage: true
+ - Id: 7961
+ AegisName: Weapon_Exchange
+ Name: Weapon Exchange
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7962
+ AegisName: Treasure_Map1
+ Name: Treasure Map1
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7963
+ AegisName: Treasure_Map2
+ Name: Treasure Map2
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7964
+ AegisName: Treasure_Map3
+ Name: Treasure Map3
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7965
+ AegisName: Treasure_Map4
+ Name: Treasure Map4
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7966
+ AegisName: Weird_Parchment1
+ Name: Weird Parchment1
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7967
+ AegisName: Weird_Parchment2
+ Name: Weird Parchment2
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7968
+ AegisName: Weird_Parchment3
+ Name: Weird Parchment3
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7969
+ AegisName: Weird_Parchment4
+ Name: Weird Parchment4
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7970
+ AegisName: Unwritten_Letter1
+ Name: Unwritten Letter1
+ Type: Etc
+ - Id: 7971
+ AegisName: Unwritten_Letter2
+ Name: Unwritten Letter2
+ Type: Etc
+ - Id: 7972
+ AegisName: Oath_Day_Letter
+ Name: Oath Day Letter
+ Type: Etc
+ - Id: 7973
+ AegisName: Immortality_Egg
+ Name: Immortality Egg
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7974
+ AegisName: Illusion_Piece
+ Name: Illusion Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7975
+ AegisName: Cupid_Choco
+ Name: Cupid Choco
+ Type: Etc
+ - Id: 7976
+ AegisName: Gf_Magic_Coin
+ Name: Gf Magic Coin
+ Type: Etc
+ Buy: 20
+ - Id: 7977
+ AegisName: Hunting_Medal_Badge
+ Name: Hunting Medal Badge
+ Type: Etc
+ - Id: 7978
+ AegisName: Spring_Stanza1
+ Name: Spring Stanza1
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7979
+ AegisName: Spring_Stanza2
+ Name: Spring Stanza2
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7980
+ AegisName: Spring_Stanza3
+ Name: Spring Stanza3
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7981
+ AegisName: Spring_Stanza4
+ Name: Spring Stanza4
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7982
+ AegisName: Spring_Stanza5
+ Name: Spring Stanza5
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7983
+ AegisName: Spring_Stanza6
+ Name: Spring Stanza6
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7984
+ AegisName: Spring_Stanza7
+ Name: Spring Stanza7
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7985
+ AegisName: Spring_Stanza8
+ Name: Spring Stanza8
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7986
+ AegisName: Spring_Stanza9
+ Name: Spring Stanza9
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7987
+ AegisName: Spring_Stanza10
+ Name: Spring Stanza10
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7988
+ AegisName: Spring_Stanza11
+ Name: Spring Stanza11
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7989
+ AegisName: Spring_Stanza12
+ Name: Spring Stanza12
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7990
+ AegisName: Spring_Stanza13
+ Name: Spring Stanza13
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7991
+ AegisName: Spring_Stanza14
+ Name: Spring Stanza14
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7992
+ AegisName: Spring_Stanza15
+ Name: Spring Stanza15
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7993
+ AegisName: Spring_Stanza16
+ Name: Spring Stanza16
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7994
+ AegisName: Spring_Stanza17
+ Name: Spring Stanza17
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7995
+ AegisName: Spring_Stanza18
+ Name: Spring Stanza18
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7996
+ AegisName: Spring_Stanza19
+ Name: Spring Stanza19
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7997
+ AegisName: Spring_Stanza20
+ Name: Spring Stanza20
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7998
+ AegisName: Spring_Stanza21
+ Name: Spring Stanza21
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7999
+ AegisName: Spring_Stanza22
+ Name: Spring Stanza22
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11000
+ AegisName: Prontera_Book_01
+ Name: History book of Prontera
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11001
+ AegisName: Adventure_Story01
+ Name: Adventure Story Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11002
+ AegisName: Great_Chef_Orleans01
+ Name: Chef King Orleans Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11003
+ AegisName: Legend_Of_Kafra01
+ Name: Kafra Legend Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11004
+ AegisName: Mercenary_Rebellion
+ Name: Old Book
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11005
+ AegisName: Tyrant_Schmidt
+ Name: Rune Royal Family Book
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11006
+ AegisName: Blood_Flower01
+ Name: Blood Flower Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11007
+ AegisName: Blood_Flower02
+ Name: Blood Flower Vol.2
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11008
+ AegisName: Barmund
+ Name: Biographical Dictionary Copy Edition
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11009
+ AegisName: Adventure_Story02
+ Name: Adventure Story Vol.2
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11010
+ AegisName: Reward_List_Book
+ Name: Battlegrounds Catalog
+ Type: Etc
+ Weight: 10
+ - Id: 11011
+ AegisName: Barmund_Note
+ Name: Varmunt's Note
+ Type: Etc
+ - Id: 11012
+ AegisName: Expedition_Report
+ Name: Expedition Report
+ Type: Etc
+ - Id: 11013
+ AegisName: Expedition_Report_Vol1
+ Name: Expedition Report Vol1
+ Type: Etc
+ - Id: 11014
+ AegisName: Expedition_Report_Vol2
+ Name: Expedition Report Vol2
+ Type: Etc
+ - Id: 11015
+ AegisName: Expedition_Report_Vol3
+ Name: Expedition Report Vol3
+ Type: Etc
+ - Id: 11016
+ AegisName: Expedition_Report_Vol4
+ Name: Expedition Report Vol4
+ Type: Etc
+ - Id: 11017
+ AegisName: Reward_List_Book2
+ Name: KVM Reward Items Catalog
+ Type: Etc
+ Weight: 10
+ - Id: 11018
+ AegisName: Splendide_Selling_Item
+ Name: Splendide Selling Item
+ Type: Etc
+ Weight: 10
+ - Id: 11019
+ AegisName: Manuk_Selling_Item
+ Name: Manuk Selling Item
+ Type: Etc
+ Weight: 10
+ - Id: 11020
+ AegisName: Japan_Book1
+ Name: Japan Book1
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11021
+ AegisName: Japan_Book2
+ Name: Japan Book2
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11022
+ AegisName: Mix_Cook_Book
+ Name: Mix Cook Book
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11023
+ AegisName: Increase_Stamina_Study
+ Name: Increase Stamina Study
+ Type: Etc
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 11024
+ AegisName: Vital_Drink_CB
+ Name: Vital Drink CB
+ Type: Etc
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 11025
+ AegisName: Swordman_Book_Basic
+ Name: Swordman Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11026
+ AegisName: Swordman_Book_Practice
+ Name: Swordman Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11027
+ AegisName: Swrodman_Book_Misc
+ Name: Swrodman Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11028
+ AegisName: Thief_Book_Basic
+ Name: Thief Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11029
+ AegisName: Thief_Book_Practice
+ Name: Thief Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11030
+ AegisName: Thief_Book_Misc
+ Name: Thief Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11031
+ AegisName: Archer_Book_Basic
+ Name: Archer Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11032
+ AegisName: Archer_Book_Practice
+ Name: Archer Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11033
+ AegisName: Archer_Book_Misc
+ Name: Archer Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11034
+ AegisName: Acol_Book_Basic
+ Name: Acol Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11035
+ AegisName: Acol_Book_Practice
+ Name: Acol Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11036
+ AegisName: Acol_Book_Misc
+ Name: Acol Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11037
+ AegisName: Mage_Book_Basic
+ Name: Mage Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11038
+ AegisName: Mage_Book_Practice
+ Name: Mage Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11039
+ AegisName: Mage_Book_Misc
+ Name: Mage Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11040
+ AegisName: Mer_Book_Basic
+ Name: Mer Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11041
+ AegisName: Mer_Book_Practice
+ Name: Mer Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11042
+ AegisName: Mer_Book_Misc
+ Name: Mer Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11043
+ AegisName: TK_Book_Basic
+ Name: TK Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11044
+ AegisName: TK_Book_Practice
+ Name: TK Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11045
+ AegisName: TK_Book_Misc
+ Name: TK Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11046
+ AegisName: Ninja_Book_Basic
+ Name: Ninja Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11047
+ AegisName: Ninja_Book_Practice
+ Name: Ninja Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11048
+ AegisName: Ninja_Book_Misc
+ Name: Ninja Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11049
+ AegisName: Gun_Book_Basic
+ Name: Gun Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11050
+ AegisName: Gun_Book_Practice
+ Name: Gun Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11051
+ AegisName: Gun_Book_Misc
+ Name: Gun Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11052
+ AegisName: SN_Book_Basic
+ Name: SN Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11053
+ AegisName: SN_Book_Practice
+ Name: SN Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11054
+ AegisName: SN_Book_Misc
+ Name: SN Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11055
+ AegisName: Basic_Adventure
+ Name: Basic Adventure
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11056
+ AegisName: Elemental_Spirit_Guide
+ Name: Elemental Spirit Guide
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 13200
+ AegisName: Bullet
+ Name: Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 1
+ Weight: 2
+ Attack: 10
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 13201
+ AegisName: Silver_Bullet
+ Name: Silver Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 15
+ Weight: 2
+ Attack: 15
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13202
+ AegisName: Shell_Of_Blood
+ Name: Bloody Shell
+ Type: Ammo
+ SubType: Bullet
+ Buy: 30
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13203
+ AegisName: Flare_Sphere
+ Name: Flare Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13204
+ AegisName: Lighting_Sphere
+ Name: Lightning Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13205
+ AegisName: Poison_Sphere
+ Name: Poison Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,500;
+ - Id: 13206
+ AegisName: Blind_Sphere
+ Name: Blind Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 13207
+ AegisName: Freezing_Sphere
+ Name: Freezing Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13250
+ AegisName: Shuriken
+ Name: Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 4
+ Weight: 5
+ Attack: 10
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 13251
+ AegisName: Nimbus_Shuriken
+ Name: Nimbus Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 10
+ Weight: 5
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 20
+ - Id: 13252
+ AegisName: Flash_Shuriken
+ Name: Flash Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 20
+ Weight: 5
+ Attack: 45
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 40
+ - Id: 13253
+ AegisName: Sharp_Leaf_Shuriken
+ Name: Sharp Leaf Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 40
+ Weight: 5
+ Attack: 70
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 60
+ - Id: 13254
+ AegisName: Thorn_Needle_Shuriken
+ Name: Thorn Needle Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 100
+ Weight: 5
+ Attack: 100
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 80
+ - Id: 13255
+ AegisName: Kunai_Of_Icicle
+ Name: Icicle Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13256
+ AegisName: Kunai_Of_Black_Soil
+ Name: Black Earth Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 13257
+ AegisName: Kunai_Of_Furious_Wind
+ Name: High Wind Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13258
+ AegisName: Kunai_Of_Fierce_Flame
+ Name: Heat Wave Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13259
+ AegisName: Kunai_Of_Deadly_Poison
+ Name: Fell Poison Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 30
+ Jobs:
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,500;
+ - Id: 13260
+ AegisName: Apple_Bomb
+ Name: Apple Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13261
+ AegisName: Coconut_Bomb
+ Name: Coconut Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13262
+ AegisName: Melon_Bomb
+ Name: Melon Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13263
+ AegisName: Pineapple_Bomb
+ Name: Pineapple Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13264
+ AegisName: Banana_Bomb
+ Name: Banana Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13265
+ AegisName: Black_Lump
+ Name: Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13266
+ AegisName: Black_Hard_Lump
+ Name: Hard Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13267
+ AegisName: Very_Hard_Lump
+ Name: Extremely Hard Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13268
+ AegisName: Mysterious_Powder
+ Name: Mysterious Powder
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MYSTERIOUS_POWDER,10000,2;
+ - Id: 13269
+ AegisName: Boost500_To_Throw
+ Name: Throwing Boost 500
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_BOOST500,500000,10;
+ - Id: 13270
+ AegisName: Full_SwingK_To_Throw
+ Name: Throwing Full Swing K
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_FULL_SWING_K,500000,50;
+ - Id: 13271
+ AegisName: Mana_Plus_To_Throw
+ Name: Throwing Mana Plus
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MANA_PLUS,500000,50;
+ - Id: 13272
+ AegisName: Cure_Free_To_Throw
+ Name: Throwing Cure Free
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ 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;
+ - Id: 13273
+ AegisName: Stamina_Up_M_To_Throw
+ Name: Throwing Muramura M
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MUSTLE_M,500000,5;
+ - Id: 13274
+ AegisName: Digestive_F_To_Throw
+ Name: Throwing Falmons F
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_LIFE_FORCE_F,500000,5;
+ - Id: 13275
+ AegisName: HP_Inc_PotS_To_Throw
+ Name: Throwing Increase HP Potion (Small)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13276
+ AegisName: HP_Inc_PotM_To_Throw
+ Name: Throwing Increase HP Potion (Medium)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 40
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13277
+ AegisName: HP_Inc_PotL_To_Throw
+ Name: Throwing Increase HP Potion (Large)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 80
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13278
+ AegisName: SP_Inc_PotS_To_Throw
+ Name: Throwing Increase SP Potion (Small)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13279
+ AegisName: SP_Inc_PotM_To_Throw
+ Name: Throwing Increase SP Potion (Medium)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 40
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13280
+ AegisName: SP_Inc_PotL_To_Throw
+ Name: Throwing Increase SP Potion (Large)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 80
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13281
+ AegisName: En_White_PotZ_To_Throw
+ Name: Throwing Concentrated White Potion Z
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 70
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20;
+ itemheal 1000,0;
+ - Id: 13282
+ AegisName: Vitata500_To_Throw
+ Name: Throwing Vitata 500
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start2 SC_VITATA_500,500000,20,5;
+ itemheal 0,200;
+ - Id: 13283
+ AegisName: En_Cel_Juice_To_Throw
+ Name: Throwing Ceromain Soup
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;
+ - Id: 13284
+ AegisName: Savage_BBQ_To_Throw
+ Name: Throwing Savage Full Roast
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_SAVAGE_STEAK,300000,20;
+ - Id: 13285
+ AegisName: Wug_Cocktail_To_Throw
+ Name: Throwing Cocktail Warg Blood
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;
+ - Id: 13286
+ AegisName: M_Brisket_To_Throw
+ Name: Throwing Minor Stew
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MINOR_BBQ,300000,20;
+ - Id: 13287
+ AegisName: Siroma_Icetea_To_Throw
+ Name: Throwing Siroma Iced Tea
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_SIROMA_ICE_TEA,300000,20;
+ - Id: 13288
+ AegisName: Drocera_Stew_To_Throw
+ Name: Throwing Drosera Herb Salad
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_DROCERA_HERB_STEAMED,300000,20;
+ - Id: 13289
+ AegisName: Petti_Noodle_To_Throw
+ Name: Throwing Petite Tail Soup
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_PUTTI_TAILS_NOODLES,300000,20;
+ - Id: 13290
+ AegisName: Black_Thing_To_Throw
+ Name: Throwing Black Mass
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_STOMACHACHE,60000,rand(5,10);
+ - Id: 13294
+ AegisName: Explosive_Kunai
+ Name: Explosive Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 100
+ Weight: 30
+ Attack: 50
+ Jobs:
+ Ninja: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ - Id: 18000
+ AegisName: Cannon_Ball
+ Name: Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 100
+ Weight: 10
+ Attack: 100
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 18001
+ AegisName: Holy_Cannon_Ball
+ Name: Holy Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 10
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 18002
+ AegisName: Dark_Cannon_Ball
+ Name: Dark Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 10
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 18003
+ AegisName: Soul_Cannon_Ball
+ Name: Soul Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 10
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 18004
+ AegisName: Iron_Cannon_Ball
+ Name: Iron Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 500
+ Weight: 10
+ Attack: 250
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
diff --git a/db/pre-re/item_db_usable.yml b/db/pre-re/item_db_usable.yml
new file mode 100644
index 0000000000..9d433e4175
--- /dev/null
+++ b/db/pre-re/item_db_usable.yml
@@ -0,0 +1,23012 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 501
+ AegisName: Red_Potion
+ Name: Red Potion
+ Type: Healing
+ Buy: 50
+ Weight: 70
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 502
+ AegisName: Orange_Potion
+ Name: Orange Potion
+ Type: Healing
+ Buy: 200
+ Weight: 100
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 503
+ AegisName: Yellow_Potion
+ Name: Yellow Potion
+ Type: Healing
+ Buy: 550
+ Weight: 130
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 504
+ AegisName: White_Potion
+ Name: White Potion
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 505
+ AegisName: Blue_Potion
+ Name: Blue Potion
+ Type: Healing
+ Buy: 5000
+ Weight: 150
+ Script: |
+ itemheal 0,rand(40,60);
+ - Id: 506
+ AegisName: Green_Potion
+ Name: Green Potion
+ Type: Healing
+ Buy: 40
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_end SC_Poison;
+ sc_end SC_Silence;
+ sc_end SC_Blind;
+ sc_end SC_Confusion;
+ - Id: 507
+ AegisName: Red_Herb
+ Name: Red Herb
+ Type: Healing
+ Buy: 18
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(18,28),0;
+ - Id: 508
+ AegisName: Yellow_Herb
+ Name: Yellow Herb
+ Type: Healing
+ Buy: 40
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(38,58),0;
+ - Id: 509
+ AegisName: White_Herb
+ Name: White Herb
+ Type: Healing
+ Buy: 120
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(75,115),0;
+ - Id: 510
+ AegisName: Blue_Herb
+ Name: Blue Herb
+ Type: Healing
+ Buy: 60
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(15,30);
+ - Id: 511
+ AegisName: Green_Herb
+ Name: Green Herb
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_end SC_Poison;
+ - Id: 512
+ AegisName: Apple
+ Name: Apple
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(16,22),0;
+ - Id: 513
+ AegisName: Banana
+ Name: Banana
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(17,21),0;
+ - Id: 514
+ AegisName: Grape
+ Name: Grape
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,15);
+ - Id: 515
+ AegisName: Carrot
+ Name: Carrot
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(18,20),0;
+ - Id: 516
+ AegisName: Sweet_Potato
+ Name: Potato
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(15,23),0;
+ - Id: 517
+ AegisName: Meat
+ Name: Meat
+ Type: Healing
+ Buy: 50
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(70,100),0;
+ - Id: 518
+ AegisName: Honey
+ Name: Honey
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(70,100),rand(20,40);
+ - Id: 519
+ AegisName: Milk
+ Name: Milk
+ Type: Healing
+ Buy: 25
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(27,37),0;
+ - Id: 520
+ AegisName: Leaflet_Of_Hinal
+ Name: Hinalle Leaflet
+ Type: Healing
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 521
+ AegisName: Leaflet_Of_Aloe
+ Name: Aloe Leaflet
+ Type: Healing
+ Buy: 360
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 522
+ AegisName: Fruit_Of_Mastela
+ Name: Mastela Fruit
+ Type: Healing
+ Buy: 8500
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,600),0;
+ - Id: 523
+ AegisName: Holy_Water
+ Name: Holy Water
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_end SC_Curse;
+ - Id: 525
+ AegisName: Panacea
+ Name: Panacea
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ 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;
+ - Id: 526
+ AegisName: Royal_Jelly
+ Name: Royal Jelly
+ Type: Healing
+ Buy: 7000
+ Weight: 150
+ 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;
+ - Id: 528
+ AegisName: Monster's_Feed
+ Name: Monster's Feed
+ Type: Healing
+ Buy: 60
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(72,108),0;
+ - Id: 529
+ AegisName: Candy
+ Name: Candy
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 530
+ AegisName: Candy_Striper
+ Name: Candy Cane
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 531
+ AegisName: Apple_Juice
+ Name: Apple Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(25,35),0;
+ - Id: 532
+ AegisName: Banana_Juice
+ Name: Banana Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(26,34),0;
+ - Id: 533
+ AegisName: Grape_Juice
+ Name: Grape Juice
+ Type: Healing
+ Buy: 250
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(15,25);
+ - Id: 534
+ AegisName: Carrot_Juice
+ Name: Carrot Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(27,33),0;
+ - Id: 535
+ AegisName: Pumpkin
+ Name: Pumpkin
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 19,0;
+ - Id: 536
+ AegisName: Ice_Cream
+ Name: Ice Cream
+ Type: Healing
+ Buy: 150
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ sc_start SC_Freeze,10000,0,2500,0;
+ - Id: 537
+ AegisName: Pet_Food
+ Name: Pet Food
+ Type: Healing
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 538
+ AegisName: Well_Baked_Cookie
+ Name: Well-baked Cookie
+ Type: Healing
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(160,200),0;
+ - Id: 539
+ AegisName: Piece_Of_Cake
+ Name: Piece of Cake
+ Type: Healing
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(270,330),0;
+ - Id: 540
+ AegisName: Falcon's_Feed
+ Name: Falcon Food
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Script: |
+ itemheal rand(185,225),0;
+ - Id: 541
+ AegisName: Pecopeco's_Feed
+ Name: PecoPeco Food
+ Type: Healing
+ Buy: 3000
+ Weight: 50
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 544
+ AegisName: Fish_Slice
+ Name: Raw Fish
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(25,60),0;
+ - Id: 545
+ AegisName: Red_Slim_Potion
+ Name: Condensed Red Potion
+ Type: Healing
+ Buy: 150
+ Weight: 10
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 546
+ AegisName: Yellow_Slim_Potion
+ Name: Condensed Yellow Potion
+ Type: Healing
+ Buy: 600
+ Weight: 20
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 547
+ AegisName: White_Slim_Potion
+ Name: Condensed White Potion
+ Type: Healing
+ Buy: 1650
+ Weight: 20
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 548
+ AegisName: Cheese
+ Name: Cheese
+ Type: Healing
+ Buy: 2800
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,15);
+ - Id: 549
+ AegisName: Nice_Sweet_Potato
+ Name: Yam
+ Type: Healing
+ Buy: 180
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,100),0;
+ sc_start SC_Stun,3000,0,1500,0;
+ - Id: 550
+ AegisName: Popped_Rice
+ Name: Rice Cake
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(10,15),0;
+ - Id: 551
+ AegisName: Shusi
+ Name: Sushi
+ Type: Healing
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,60),0;
+ - Id: 552
+ AegisName: KETUPAT
+ Name: Ketupat
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Script: |
+ itemheal rand(70,90),rand(20,30);
+ - Id: 553
+ AegisName: Bun
+ Name: Bao
+ Type: Healing
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(35,70),0;
+ - Id: 554
+ AegisName: Mojji
+ Name: Mochi
+ Type: Healing
+ Buy: 400
+ Weight: 80
+ Script: |
+ 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
+ Type: Healing
+ Buy: 100
+ Weight: 20
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 556
+ AegisName: Long_Rice_Cake
+ Name: Rice Cake Stick
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(20,25),0;
+ - Id: 557
+ AegisName: Hash_Rice_Cake
+ Name: Neatly Sliced Rice Cake
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(25,30),0;
+ - Id: 558
+ AegisName: Chocolate
+ Name: Chocolate
+ Type: Healing
+ Buy: 1
+ Weight: 20
+ Script: |
+ itemheal 1,1;
+ - Id: 559
+ AegisName: HandMade_Chocolate
+ Name: Hand-made Chocolate
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 560
+ AegisName: HandMade_Chocolate_
+ Name: Handmade White Chocolate
+ Type: Healing
+ Buy: 5000
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 561
+ AegisName: White_Chocolate
+ Name: White Chocolate
+ Type: Healing
+ Buy: 5000
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 562
+ AegisName: Pizza
+ Name: Doublecrust Swiss Fondue
+ Type: Healing
+ Buy: 100
+ Weight: 150
+ Script: |
+ itemheal rand(70,100),0;
+ - Id: 563
+ AegisName: Pizza_01
+ Name: Doublecrust Swiss Fondue
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(375,445),0;
+ - Id: 564
+ AegisName: Rice_Ball
+ Name: Rice Ball
+ Type: Healing
+ Buy: 1
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 200,0;
+ - Id: 565
+ AegisName: Vita500_Bottle
+ Name: Vita500
+ Type: Healing
+ Buy: 580
+ Weight: 100
+ Script: |
+ itemheal rand(142,274),0;
+ - Id: 566
+ AegisName: Tomyumkung
+ Name: Tom Yum Goong
+ Type: Healing
+ Buy: 10000
+ Weight: 150
+ 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;
+ - Id: 567
+ AegisName: Prawn
+ Name: Shrimp
+ Type: Healing
+ Buy: 500
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(117,192),0;
+ - Id: 568
+ AegisName: Lemon
+ Name: Lemon
+ Type: Healing
+ Buy: 60
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,20);
+ - Id: 569
+ AegisName: Novice_Potion
+ Name: Novice Potion
+ Type: Healing
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(22,33),0;
+ - Id: 570
+ AegisName: Lucky_Candy
+ Name: Lucky Candy
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 571
+ AegisName: Lucky_Candy_Cane
+ Name: Lucky Candy Cane
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 572
+ AegisName: Lucky_Cookie
+ Name: Lucky Cookie
+ Type: Healing
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(160,200),0;
+ - Id: 573
+ AegisName: Chocolate_Drink
+ Name: Chocolate Drink
+ Type: Healing
+ 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;
+ - Id: 574
+ AegisName: Egg
+ Name: Egg
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(33,42),0;
+ - Id: 575
+ AegisName: Piece_Of_Cake_
+ Name: 2nd Anniversary Cake
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal rand(270,330),0;
+ - Id: 576
+ AegisName: Prickly_Fruit
+ Name: Prickly Fruit
+ Type: Healing
+ Buy: 540
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(150,300),rand(20,30);
+ - Id: 577
+ AegisName: Grain
+ Name: Bag of Grain
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(60,70),0;
+ - Id: 578
+ AegisName: Strawberry
+ Name: Strawberry
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(16,28);
+ - Id: 579
+ AegisName: Delicious_Fish
+ Name: Fresh Fish
+ Type: Healing
+ Buy: 250
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(100,150),0;
+ - Id: 580
+ AegisName: Bread
+ Name: Bread
+ Type: Healing
+ Buy: 150
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 581
+ AegisName: Mushroom
+ Name: Edible Mushroom
+ Type: Healing
+ Buy: 40
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(20,30),0;
+ - Id: 582
+ AegisName: Orange
+ Name: Orange
+ Type: Healing
+ Buy: 300
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(10,20),rand(10,20);
+ - Id: 583
+ AegisName: KETUPAT_
+ Name: Ketupat Sayur
+ Type: Healing
+ 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;
+ - Id: 584
+ AegisName: Fish_Ball_Soup
+ Name: Fish Cake Soup
+ Type: Healing
+ Buy: 100
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(40,70),0;
+ - Id: 585
+ AegisName: Wurst
+ Name: Brusti
+ Type: Delayconsume
+ Buy: 2
+ Weight: 40
+ Script: |
+ itemheal rand(15,20),0;
+ itemskill "PR_MAGNIFICAT",3;
+ - Id: 586
+ AegisName: Mother's_Cake
+ Name: Mother's Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 587
+ AegisName: Prickly_Fruit_
+ Name: Red Prickly Fruit
+ Type: Healing
+ Buy: 880
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(270,330),rand(20,30);
+ - Id: 588
+ AegisName: Spaghetti
+ Name: Spaghetti
+ Type: Healing
+ Buy: 100
+ Weight: 100
+ Script: |
+ itemheal rand(40,70),0;
+ - Id: 589
+ AegisName: Pizza_02
+ Name: Pizza
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(375,445),0;
+ - Id: 590
+ AegisName: Brezel_
+ Name: Pretzel
+ Type: Healing
+ Buy: 2
+ Weight: 20
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 591
+ AegisName: Caviar_Pancake
+ Name: Caviar Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 592
+ AegisName: Jam_Pancake
+ Name: Jam Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 593
+ AegisName: Honey_Pancake
+ Name: Honey Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 594
+ AegisName: Sour_Cream_Pancake
+ Name: Sour-Cream Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 595
+ AegisName: Mushroom_Pancake
+ Name: Mushroom Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 596
+ AegisName: Cute_Strawberry_Choco
+ Name: Cute Strawberry-Choco
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal 0,rand(1,100);
+ - Id: 597
+ AegisName: Lovely_Choco_Tart
+ Name: Lovely Choco-Tart
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(10,400),0;
+ - Id: 598
+ AegisName: Light_Red_Pot
+ Name: Light Red Potion
+ Type: Healing
+ Buy: 50
+ Weight: 10
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 599
+ AegisName: Light_Orange_Pot
+ Name: Light Orange Potion
+ Type: Healing
+ Buy: 200
+ Weight: 10
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 601
+ AegisName: Wing_Of_Fly
+ Name: Fly Wing
+ Type: Delayconsume
+ Buy: 60
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 602
+ AegisName: Wing_Of_Butterfly
+ Name: Butterfly Wing
+ Type: Delayconsume
+ Buy: 300
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",3;
+ - Id: 603
+ AegisName: Old_Blue_Box
+ Name: Old Blue Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_BlueBox),1;
+ - Id: 604
+ AegisName: Branch_Of_Dead_Tree
+ Name: Dead Branch
+ Type: Usable
+ Buy: 50
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-1,1,"";
+ - Id: 605
+ AegisName: Anodyne
+ Name: Anodyne
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "SM_ENDURE",1;
+ - Id: 606
+ AegisName: Aloebera
+ Name: Aloevera
+ Type: Delayconsume
+ Buy: 1500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "SM_SELFPROVOKE",1;
+ - Id: 607
+ AegisName: Yggdrasilberry
+ Name: Yggdrasil Berry
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_F
+ Script: |
+ percentheal 100,100;
+ - Id: 608
+ AegisName: Seed_Of_Yggdrasil
+ Name: Yggdrasil Seed
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_G
+ Script: |
+ percentheal 50,50;
+ - Id: 609
+ AegisName: Amulet
+ Name: Amulet
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 610
+ AegisName: Leaf_Of_Yggdrasil
+ Name: Yggdrasil Leaf
+ Type: Delayconsume
+ Buy: 4000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ALL_RESURRECTION",1;
+ - Id: 611
+ AegisName: Spectacles
+ Name: Magnifier
+ Type: Delayconsume
+ Buy: 40
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "MC_IDENTIFY",1;
+ - Id: 612
+ AegisName: Portable_Furnace
+ Name: Mini Furnace
+ Type: Usable
+ Buy: 150
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 21;
+ - Id: 613
+ AegisName: Iron_Hammer
+ Name: Iron Hammer
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 1;
+ - Id: 614
+ AegisName: Golden_Hammer
+ Name: Golden Hammer
+ Type: Usable
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 2;
+ - Id: 615
+ AegisName: Oridecon_Hammer
+ Name: Oridecon Hammer
+ Type: Usable
+ Buy: 5000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 3;
+ - Id: 616
+ AegisName: Old_Card_Album
+ Name: Old Card Album
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum),1;
+ - Id: 617
+ AegisName: Old_Violet_Box
+ Name: Old Purple Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_VioletBox),1;
+ - Id: 618
+ AegisName: Worn_Out_Scroll
+ Name: Worn Out Scroll
+ Type: Usable
+ Buy: 50
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Container: true
+ - Id: 619
+ AegisName: Unripe_Apple
+ Name: Unripe Apple
+ Type: Usable
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1002;
+ - Id: 620
+ AegisName: Orange_Juice
+ Name: Orange Juice
+ Type: Usable
+ Buy: 1500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1113;
+ - Id: 621
+ AegisName: Bitter_Herb
+ Name: Bitter Herb
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1031;
+ - Id: 622
+ AegisName: Rainbow_Carrot
+ Name: Rainbow Carrot
+ Type: Usable
+ Buy: 2500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1063;
+ - Id: 623
+ AegisName: Earthworm_The_Dude
+ Name: Earthworm the Dude
+ Type: Usable
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1049;
+ - Id: 624
+ AegisName: Rotten_Fish
+ Name: Rotten Fish
+ Type: Usable
+ Buy: 2500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1011;
+ - Id: 625
+ AegisName: Lusty_Iron
+ Name: Rusty Iron
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1042;
+ - Id: 626
+ AegisName: Monster_Juice
+ Name: Monster Juice
+ Type: Usable
+ Buy: 1500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1035;
+ - Id: 627
+ AegisName: Sweet_Milk
+ Name: Sweet Milk
+ Type: Usable
+ Buy: 7000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1167;
+ - Id: 628
+ AegisName: Well_Dried_Bone
+ Name: Well-Dried Bone
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1107;
+ - Id: 629
+ AegisName: Singing_Flower
+ Name: Singing Flower
+ Type: Usable
+ Buy: 300
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1052;
+ - Id: 630
+ AegisName: Dew_Laden_Moss
+ Name: Dew Laden Moss
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1014;
+ - Id: 631
+ AegisName: Deadly_Noxious_Herb
+ Name: Deadly Noxious Herb
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1077;
+ - Id: 632
+ AegisName: Fatty_Chubby_Earthworm
+ Name: Fatty Chubby Earthworm
+ Type: Usable
+ Buy: 5000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1019;
+ - Id: 633
+ AegisName: Baked_Yam
+ Name: Sweet Potato
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1056;
+ - Id: 634
+ AegisName: Tropical_Banana
+ Name: Tropical Banana
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1057;
+ - Id: 635
+ AegisName: Horror_Of_Tribe
+ Name: Orc Trophy
+ Type: Usable
+ Buy: 300
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1023;
+ - Id: 636
+ AegisName: No_Recipient
+ Name: No Recipient
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1026;
+ - Id: 637
+ AegisName: Old_Broom
+ Name: Old Broom
+ Type: Usable
+ Buy: 350
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1110;
+ - Id: 638
+ AegisName: Silver_Knife_Of_Chaste
+ Name: Silver Knife of Chastity
+ Type: Usable
+ Buy: 12000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1170;
+ - Id: 639
+ AegisName: Armlet_Of_Obedience
+ Name: Armlet of Obedience
+ Type: Usable
+ Buy: 18000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1029;
+ - Id: 640
+ AegisName: Shining_Stone
+ Name: Shining Stone
+ Type: Usable
+ Buy: 3000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1155;
+ - Id: 641
+ AegisName: Contracts_In_Shadow
+ Name: Contract in Shadow
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1109;
+ - Id: 642
+ AegisName: Book_Of_Devil
+ Name: Book of the Devil
+ Type: Usable
+ Buy: 1800
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1101;
+ - Id: 643
+ AegisName: Pet_Incubator
+ Name: Pet Incubator
+ Type: Usable
+ Buy: 3000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ bpet;
+ - Id: 644
+ AegisName: Gift_Box
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox),1;
+ - Id: 645
+ AegisName: Center_Potion
+ Name: Concentration Potion
+ Type: Usable
+ Buy: 800
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,0;
+ - Id: 656
+ AegisName: Awakening_Potion
+ Name: Awakening Potion
+ Type: Usable
+ Buy: 1500
+ Weight: 150
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ SuperNovice: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Wizard: true
+ EquipLevelMin: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,0;
+ - Id: 657
+ AegisName: Berserk_Potion
+ Name: Berserk Potion
+ Type: Usable
+ Buy: 3000
+ Weight: 200
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ SoulLinker: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Wizard: true
+ EquipLevelMin: 85
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,0;
+ - Id: 658
+ AegisName: Union_Of_Tribe
+ Name: Union of Tribe
+ Type: Usable
+ Buy: 2
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ guildgetexp rand(600000,1200000);
+ - Id: 659
+ AegisName: Heart_Of_Her
+ Name: Her Heart
+ Type: Usable
+ Buy: 500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1188;
+ - Id: 660
+ AegisName: Prohibition_Red_Candle
+ Name: Forbidden Red Candle
+ Type: Usable
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1200;
+ - Id: 661
+ AegisName: Sway_Apron
+ Name: Soft Apron
+ Type: Usable
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1275;
+ - Id: 662
+ AegisName: Inspector_Certificate
+ Name: Authoritative Badge
+ Type: Usable
+ Buy: 1450
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SPEEDUP0,180000,25;
+ - Id: 663
+ AegisName: Korea_Rice_Cake
+ Name: Korean Rice Cake
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,0;
+ - Id: 664
+ AegisName: Gift_Box_1
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_1),1;
+ - Id: 665
+ AegisName: Gift_Box_2
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_2),1;
+ - Id: 666
+ AegisName: Gift_Box_3
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_3),1;
+ - Id: 667
+ AegisName: Gift_Box_4
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_4),1;
+ - Id: 668
+ AegisName: Handsei
+ Name: Red Envelope
+ Type: Usable
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ set Zeny,Zeny+rand(1000,10000);
+ - Id: 669
+ AegisName: Rice_Cake_Soup
+ Name: Tempting Rice-Cake Soup
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal -100,-100;
+ - Id: 678
+ AegisName: Poison_Bottle
+ Name: Poison Bottle
+ Type: Usable
+ Buy: 5000
+ Weight: 100
+ 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;
+ - Id: 679
+ AegisName: Gold_Pill
+ Name: Pilule
+ Type: Usable
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DPoison,10000,0,1000,0;
+ sc_start SC_Poison,50000,0;
+ - Id: 680
+ AegisName: Magical_Carnation
+ Name: Magic Carnation
+ Type: Healing
+ Weight: 1000
+ Script: |
+ percentheal 0,20;
+ - Id: 681
+ AegisName: Memory_Of_Wedding
+ Name: Sweet Memory of Marriage
+ Type: Usable
+ Buy: 50000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getpartnerid())
+ sc_start SC_WEDDING,600000,0;
+ - Id: 682
+ AegisName: Realgar_Wine
+ Name: Distilled Fighting Spirit
+ Type: Usable
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,30;
+ - Id: 683
+ AegisName: Exorcize_Herb
+ Name: Herb of Incantation
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MATKPOTION,60000,30;
+ - Id: 684
+ AegisName: Durian
+ Name: Durian
+ Type: Usable
+ Buy: 15000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,10;
+ sc_start SC_MATKPOTION,60000,10;
+ - Id: 685
+ AegisName: RAMADAN
+ Name: Ramadan
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Script: |
+ percentheal 100,50;
+ - Id: 686
+ AegisName: Earth_Scroll_1_3
+ Name: Level 3 Earth Spike
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "WZ_EARTHSPIKE",3;
+ - Id: 687
+ AegisName: Earth_Scroll_1_5
+ Name: Level 5 Earth Spike
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "WZ_EARTHSPIKE",5;
+ - Id: 688
+ AegisName: Cold_Scroll_1_3
+ Name: Level 3 Cold Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_COLDBOLT",3;
+ - Id: 689
+ AegisName: Cold_Scroll_1_5
+ Name: Level 5 Cold Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_COLDBOLT",5;
+ - Id: 690
+ AegisName: Fire_Scroll_1_3
+ Name: Level 3 Fire Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBOLT",3;
+ - Id: 691
+ AegisName: Fire_Scroll_1_5
+ Name: Level 5 Fire Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBOLT",5;
+ - Id: 692
+ AegisName: Wind_Scroll_1_3
+ Name: Level 3 Lightening Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_LIGHTNINGBOLT",3;
+ - Id: 693
+ AegisName: Wind_Scroll_1_5
+ Name: Level 5 Lightening Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_LIGHTNINGBOLT",5;
+ - Id: 694
+ AegisName: Ghost_Scroll_1_3
+ Name: Level 3 Soul Strike
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_SOULSTRIKE",3;
+ - Id: 695
+ AegisName: Ghost_Scroll_1_5
+ Name: Level 5 Soul Strike
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_SOULSTRIKE",5;
+ - Id: 696
+ AegisName: Fire_Scroll_2_1
+ Name: Level 1 Fire Ball
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBALL",1;
+ - Id: 697
+ AegisName: Fire_Scroll_2_5
+ Name: Level 5 Fire Ball
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBALL",5;
+ - Id: 698
+ AegisName: Fire_Scroll_3_1
+ Name: Level 1 Fire Wall
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREWALL",1;
+ - Id: 699
+ AegisName: Fire_Scroll_3_5
+ Name: Level 5 Fire Wall
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREWALL",5;
+ - Id: 700
+ AegisName: Cold_Scroll_2_1
+ Name: Level 1 Frost Diver
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FROSTDIVER",1;
+ - Id: 6046
+ AegisName: Clothing_Dye_Coupon
+ Name: Clothing Dye Coupon
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6047
+ AegisName: Clothing_Dye_Coupon_II
+ Name: Clothing Dye Coupon II
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11500
+ AegisName: Light_Yellow_Pot
+ Name: Light Yellow Potion
+ Type: Healing
+ Buy: 550
+ Weight: 10
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 11501
+ AegisName: Light_White_Pot
+ Name: Light White Potion
+ Type: Healing
+ Buy: 1200
+ Weight: 10
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 11502
+ AegisName: Light_Blue_Pot
+ Name: Light Blue Potion
+ Type: Healing
+ Buy: 5000
+ Weight: 10
+ Script: |
+ itemheal 0,rand(40,60);
+ - Id: 11503
+ AegisName: Siege_White_Potion
+ Name: WoE White Potion
+ Type: Healing
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(400,500),0;
+ - Id: 11504
+ AegisName: Siege_Blue_Potion
+ Name: WoE Blue Potion
+ Type: Healing
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,rand(50,70);
+ - Id: 11505
+ AegisName: Iris
+ Name: Iris
+ Type: Healing
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,150;
+ - Id: 11506
+ AegisName: Fanta_Orange
+ Name: Fanta Orange
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11507
+ AegisName: Fanta_Grape
+ Name: Fanta Grape
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11508
+ AegisName: Karada_Meguri_Tea
+ Name: Karada Meguricha
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11509
+ AegisName: Royal_Milk_Tea
+ Name: Black Tea Kochakaden
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11510
+ AegisName: Coke_Zero
+ Name: Coca Cola Zero
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11511
+ AegisName: Coke_No_Cal
+ Name: Diet Coca Cola
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11512
+ AegisName: Coca_Cola
+ Name: Coca Cola
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11513
+ AegisName: Protect_Neck_Candy
+ Name: Protect Neck Candy
+ Type: Healing
+ Buy: 200
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(5,25),0;
+ - Id: 11514
+ AegisName: Enriched_Slim_Pot
+ Name: Enriched Slim Pot
+ Type: Healing
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(335,415),0;
+ - Id: 11515
+ AegisName: Coconut
+ Name: Coconut
+ Type: Healing
+ Buy: 1500
+ Weight: 120
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(300,400),0;
+ - Id: 11516
+ AegisName: Asai_Fruit
+ Name: Asai Fruit
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(16,22),0;
+ - Id: 11517
+ AegisName: Puri_Potion
+ Name: Puri Potion
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,600),0;
+ - Id: 11518
+ AegisName: N_Blue_Potion
+ Name: Blue Potion
+ Type: Healing
+ Weight: 50
+ Script: |
+ itemheal 0,5;
+ - Id: 11519
+ AegisName: Beef_Toast
+ Name: Beef Toast
+ Type: Healing
+ Buy: 650
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(170,250),0;
+ - Id: 11520
+ AegisName: Mora_Mandarin
+ Name: Mora Mandar
+ Type: Healing
+ Buy: 500
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(50,80);
+ - Id: 11521
+ AegisName: Pingui_Berry_Juice
+ Name: Pingui Berry Juice
+ Type: Healing
+ Buy: 500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,800),rand(50,80);
+ - Id: 11522
+ AegisName: Red_Raffle_Sap
+ Name: Red Raffle Sap
+ Type: Healing
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 1000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(400,800),0;
+ - Id: 11523
+ AegisName: Yellow_Raffle_Sap
+ Name: Yellow Raffle Sap
+ Type: Healing
+ Buy: 2400
+ Weight: 120
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 2000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(600,1000),0;
+ - Id: 11524
+ AegisName: White_Raffle_Sap
+ Name: White Raffle Sap
+ Type: Healing
+ Buy: 2800
+ Weight: 140
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(800,1200),0;
+ - Id: 11525
+ AegisName: Mora_Hip_Tea
+ Name: Mora HIp Tea
+ Type: Healing
+ Buy: 20
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_H
+ Script: |
+ itemheal rand(1500,2000),0;
+ - Id: 11526
+ AegisName: Rafflecino
+ Name: Rafflecino
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(120,160);
+ - Id: 11527
+ AegisName: Baklava
+ Name: Baklava
+ Type: Healing
+ Buy: 3500
+ Weight: 600
+ Script: |
+ itemheal 1200,440;
+ - Id: 11528
+ AegisName: Kanafeh
+ Name: Kanafeh
+ Type: Healing
+ Buy: 1500
+ Weight: 200
+ Script: |
+ itemheal 300,240;
+ - Id: 11529
+ AegisName: MAAMOUL_
+ Name: Maamoul
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Script: |
+ itemheal 120,60;
+ - Id: 11530
+ AegisName: Jujube
+ Name: Jujube
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal 30,0;
+ - Id: 11531
+ AegisName: Coffee
+ Name: Coffee
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal 0,10;
+ - Id: 11701
+ AegisName: Girl_Bunch_Of_Flower
+ Name: Girl's Bouquet
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 11702
+ AegisName: Moon_Cookie
+ Name: Moon Cookie
+ Type: Healing
+ Weight: 300
+ NoUse:
+ Override: 100
+ Sitting: true
+ - Id: 11703
+ AegisName: Mysterious_Blood
+ Name: Mystery Blood
+ Type: Healing
+ Weight: 30
+ Script: |
+ itemheal 0,rand(25,35);
+ - Id: 11704
+ AegisName: KETUPAT_F
+ Name: Ketupat
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemheal rand(70,90),0;
+ - Id: 11705
+ AegisName: Special_White_Potion
+ Name: Children's Potion
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Script: |
+ itemheal rand(425,425),0;
+ - Id: 11706
+ AegisName: Steak
+ Name: Steak
+ Type: Healing
+ Buy: 1
+ Weight: 200
+ Script: |
+ itemheal rand(700,1000),0;
+ - Id: 11707
+ AegisName: Roasted_Beef
+ Name: Roast Beef
+ Type: Healing
+ Buy: 1
+ Weight: 200
+ Script: |
+ itemheal 0,rand(100,200);
+ - Id: 11708
+ AegisName: Fore_Flank_Sirloin
+ Name: Fore Flank Sirloin
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(30,50),rand(1,5);
+ - Id: 11709
+ AegisName: Fanta_Zero_Lemon
+ Name: Fanta Zero Lemon
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11710
+ AegisName: Sakura_Mist
+ Name: Sakura Mist
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11711
+ AegisName: Sakura_Milk_Tea
+ Name: Sakura Milk Tea
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11712
+ AegisName: First_Leaf_Tea
+ Name: Flower
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 12000
+ AegisName: Cold_Scroll_2_5
+ Name: Level 5 Frost Diver
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FROSTDIVER",5;
+ - Id: 12001
+ AegisName: Holy_Scroll_1_3
+ Name: Level 3 Heal
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AL_HEAL",3;
+ - Id: 12002
+ AegisName: Holy_Scroll_1_5
+ Name: Level 5 Heal
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AL_HEAL",5;
+ - Id: 12003
+ AegisName: Holy_Scroll_2_1
+ Name: Level 1 Teleport
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 12004
+ AegisName: Arrow_Container
+ Name: Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1750,500;
+ - Id: 12005
+ AegisName: Iron_Arrow_Container
+ Name: Iron Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1770,500;
+ - Id: 12006
+ AegisName: Steel_Arrow_Container
+ Name: Steel Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1753,500;
+ - Id: 12007
+ AegisName: Ori_Arrow_Container
+ Name: Oridecon Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1765,500;
+ - Id: 12008
+ AegisName: Fire_Arrow_Container
+ Name: Fire Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1752,500;
+ - Id: 12009
+ AegisName: Silver_Arrow_Container
+ Name: Silver Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1751,500;
+ - Id: 12010
+ AegisName: Wind_Arrow_Container
+ Name: Wind Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1755,500;
+ - Id: 12011
+ AegisName: Stone_Arrow_Container
+ Name: Stone Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1756,500;
+ - Id: 12012
+ AegisName: Crystal_Arrow_Container
+ Name: Crystal Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1754,500;
+ - Id: 12013
+ AegisName: Shadow_Arrow_Container
+ Name: Shadow Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1767,500;
+ - Id: 12014
+ AegisName: Imma_Arrow_Container
+ Name: Immaterial Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1757,500;
+ - Id: 12015
+ AegisName: Rusty_Arrow_Container
+ Name: Rusty Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1762,500;
+ - Id: 12016
+ AegisName: Speed_Up_Potion
+ Name: Speed Potion
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SPEEDUP1,5000,50;
+ - Id: 12017
+ AegisName: Slow_Down_Potion
+ Name: Slow Potion
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SlowDown,5000,0;
+ - Id: 12018
+ AegisName: Fire_Cracker
+ Name: Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12019
+ AegisName: Holy_Egg
+ Name: Holy Egg
+ Type: Delayconsume
+ Buy: 2
+ Weight: 150
+ Script: |
+ itemskill "ALL_RESURRECTION",2;
+ - Id: 12020
+ AegisName: Water_Of_Darkness
+ Name: Cursed Water
+ Type: Delayconsume
+ Buy: 2
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",8;
+ - Id: 12021
+ AegisName: Pork_Belly
+ Name: Pork
+ Type: Healing
+ Weight: 10
+ Script: |
+ itemheal rand(70,99),0;
+ - Id: 12022
+ AegisName: Spareribs
+ Name: Galbi
+ Type: Healing
+ Weight: 10
+ Script: |
+ itemheal rand(70,99),0;
+ - Id: 12023
+ AegisName: Giftbox_China
+ Name: Wrapped Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBoxChina),1;
+ - Id: 12024
+ AegisName: Red_Pouch_Of_Surprise
+ Name: Red Pouch
+ Type: Usable
+ Buy: 50
+ Weight: 50
+ Flags:
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-4,1,"";
+ - Id: 12025
+ AegisName: Egg_Boy
+ Name: Dano Festival Egg
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_EggBoy),1;
+ - Id: 12026
+ AegisName: Egg_Girl
+ Name: Dano Festival Egg
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_EggGirl),1;
+ - Id: 12027
+ AegisName: Giggling_Box
+ Name: Giggling Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 9,0;
+ sc_start SC_Curse,30000,0,3000,0;
+ - Id: 12028
+ AegisName: Box_Of_Thunder
+ Name: Box of Thunder
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_SPEEDUP0,20000,25;
+ - Id: 12029
+ AegisName: Gloomy_Box
+ Name: Box of Gloom
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AC_CONCENTRATION",1;
+ - Id: 12030
+ AegisName: Box_Of_Grudge
+ Name: Box of Resentment
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,20;
+ - Id: 12031
+ AegisName: Sleepy_Box
+ Name: Box of Drowsiness
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_MATKPOTION,60000,20;
+ - Id: 12032
+ AegisName: Box_Of_Storm
+ Name: Box of Storms
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",2;
+ - Id: 12033
+ AegisName: Box_Of_Sunlight
+ Name: Box of Sunlight
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_Intravision,30000,0;
+ - Id: 12034
+ AegisName: Painting_Box
+ Name: Box of Panting
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,9;
+ sc_start SC_Silence,30000,0,3000,0;
+ - Id: 12035
+ AegisName: Lotto_Box01
+ Name: Lotto Box 01
+ Type: Usable
+ Weight: 20
+ Script: |
+ getitem rand(7361,7370),1;
+ - Id: 12036
+ AegisName: Lotto_Box02
+ Name: Lotto Box 02
+ Type: Usable
+ Weight: 20
+ Script: |
+ getitem rand(7371,7380),1;
+ - Id: 12037
+ AegisName: Lotto_Box03
+ Name: Lotto Box 03
+ Type: Usable
+ Weight: 20
+ Script: |
+ getitem rand(7381,7390),1;
+ - Id: 12038
+ AegisName: Lotto_Box04
+ Name: Lotto Box 04
+ Type: Usable
+ Weight: 20
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_LottoBox),1;
+ - Id: 12039
+ AegisName: Lotto_Box05
+ Name: Lotto Box 05
+ Type: Usable
+ Weight: 20
+ Script: |
+ getitem rand(7542,7546),1;
+ - Id: 12040
+ AegisName: Stone_Of_Intelligence_
+ Name: Stone of Sage
+ Type: Usable
+ Buy: 100000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ homevolution;
+ - Id: 12041
+ AegisName: Str_Dish01
+ Name: Fried Grasshopper Legs
+ Type: Healing
+ Buy: 2000
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 12042
+ AegisName: Str_Dish02
+ Name: Seasoned Sticky Webfoot
+ Type: Healing
+ Buy: 4000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 12043
+ AegisName: Str_Dish03
+ Name: Bomber Steak
+ Type: Healing
+ Buy: 6000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 12044
+ AegisName: Str_Dish04
+ Name: Herb Marinade Beef
+ Type: Healing
+ Buy: 8000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,4;
+ percentheal 5,0;
+ - Id: 12045
+ AegisName: Str_Dish05
+ Name: Lutie Lady's Pancake
+ Type: Healing
+ Buy: 10000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 12046
+ AegisName: Int_Dish01
+ Name: Grape Juice Herbal Tea
+ Type: Healing
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,1;
+ percentheal 0,5;
+ - Id: 12047
+ AegisName: Int_Dish02
+ Name: Autumn Red Tea
+ Type: Healing
+ Buy: 4000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,2;
+ percentheal 0,5;
+ - Id: 12048
+ AegisName: Int_Dish03
+ Name: Honey Herbal Tea
+ Type: Healing
+ Buy: 6000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,3;
+ percentheal 0,5;
+ - Id: 12049
+ AegisName: Int_Dish04
+ Name: Morocc Fruit Wine
+ Type: Healing
+ Buy: 8000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,4;
+ percentheal 0,5;
+ - Id: 12050
+ AegisName: Int_Dish05
+ Name: Mastela Fruit Wine
+ Type: Healing
+ Buy: 10000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,5;
+ percentheal 0,10;
+ - Id: 12051
+ AegisName: Vit_Dish01
+ Name: Steamed Crab Nippers
+ Type: Healing
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 12052
+ AegisName: Vit_Dish02
+ Name: Assorted Seafood
+ Type: Healing
+ Buy: 4000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 12053
+ AegisName: Vit_Dish03
+ Name: Clam Soup
+ Type: Healing
+ Buy: 6000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 12054
+ AegisName: Vit_Dish04
+ Name: Seasoned Jellyfish
+ Type: Healing
+ Buy: 8000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,4;
+ percentheal 5,0;
+ - Id: 12055
+ AegisName: Vit_Dish05
+ Name: Spicy Fried Bao
+ Type: Healing
+ Buy: 10000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 12056
+ AegisName: Agi_Dish01
+ Name: Frog Egg Squid Ink Soup
+ Type: Healing
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,1;
+ percentheal 3,1;
+ - Id: 12057
+ AegisName: Agi_Dish02
+ Name: Smooth Noodle
+ Type: Healing
+ Buy: 4000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,2;
+ percentheal 3,1;
+ - Id: 12058
+ AegisName: Agi_Dish03
+ Name: Tentacle Cheese Gratin
+ Type: Healing
+ Buy: 6000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,3;
+ percentheal 3,1;
+ - Id: 12059
+ AegisName: Agi_Dish04
+ Name: Lutie Cold Noodle
+ Type: Healing
+ Buy: 8000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,4;
+ percentheal 3,1;
+ - Id: 12060
+ AegisName: Agi_Dish05
+ Name: Steamed Bat Wing in Pumpkin
+ Type: Healing
+ Buy: 10000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,5;
+ percentheal 6,2;
+ - Id: 12061
+ AegisName: Dex_Dish01
+ Name: Honey Grape Juice
+ Type: Healing
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,1;
+ percentheal 2,2;
+ - Id: 12062
+ AegisName: Dex_Dish02
+ Name: Chocolate Mousse Cake
+ Type: Healing
+ Buy: 4000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,2;
+ percentheal 2,2;
+ - Id: 12063
+ AegisName: Dex_Dish03
+ Name: Fruit Mix
+ Type: Healing
+ Buy: 6000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,3;
+ percentheal 2,2;
+ - Id: 12064
+ AegisName: Dex_Dish04
+ Name: Cream Sandwich
+ Type: Healing
+ Buy: 8000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,4;
+ percentheal 2,2;
+ - Id: 12065
+ AegisName: Dex_Dish05
+ Name: Green Salad
+ Type: Healing
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,5;
+ percentheal 5,5;
+ - Id: 12066
+ AegisName: Luk_Dish01
+ Name: Fried Monkey Tails
+ Type: Healing
+ Buy: 2000
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,1;
+ percentheal 3,2;
+ - Id: 12067
+ AegisName: Luk_Dish02
+ Name: Mixed Juice
+ Type: Healing
+ Buy: 4000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,2;
+ percentheal 3,2;
+ - Id: 12068
+ AegisName: Luk_Dish03
+ Name: Fried Sweet Potato
+ Type: Healing
+ Buy: 6000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,3;
+ percentheal 4,2;
+ - Id: 12069
+ AegisName: Luk_Dish04
+ Name: Steamed Ancient Lips
+ Type: Healing
+ Buy: 8000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,4;
+ percentheal 4,2;
+ - Id: 12070
+ AegisName: Luk_Dish05
+ Name: Fried Scorpion Tails
+ Type: Healing
+ Buy: 10000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,5;
+ percentheal 5,2;
+ - Id: 12071
+ AegisName: Str_Dish06
+ Name: Shiny Marinade Beef
+ Type: Healing
+ Buy: 20000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,6;
+ percentheal 10,2;
+ - Id: 12072
+ AegisName: Str_Dish07
+ Name: Whole Roast
+ Type: Healing
+ Buy: 40000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,7;
+ percentheal 10,4;
+ - Id: 12073
+ AegisName: Str_Dish08
+ Name: Bearfoot Special
+ Type: Healing
+ Buy: 60000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,8;
+ percentheal 15,6;
+ - Id: 12074
+ AegisName: Str_Dish09
+ Name: Tendon Satay
+ Type: Healing
+ Buy: 80000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,9;
+ percentheal 15,8;
+ - Id: 12075
+ AegisName: Str_Dish10
+ Name: Steamed Tongue
+ Type: Healing
+ Buy: 100000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,10;
+ percentheal 20,20;
+ - Id: 12076
+ AegisName: Int_Dish06
+ Name: Red Mushroom Wine
+ Type: Healing
+ Buy: 20000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,6;
+ percentheal 2,10;
+ - Id: 12077
+ AegisName: Int_Dish07
+ Name: Special Royal Jelly Herbal Tea
+ Type: Healing
+ Buy: 40000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,7;
+ percentheal 4,10;
+ - Id: 12078
+ AegisName: Int_Dish08
+ Name: Royal Family Tea
+ Type: Healing
+ Buy: 60000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,8;
+ percentheal 6,10;
+ - Id: 12079
+ AegisName: Int_Dish09
+ Name: Tristan XII
+ Type: Healing
+ Buy: 80000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,9;
+ percentheal 8,15;
+ - Id: 12080
+ AegisName: Int_Dish10
+ Name: Dragon Breath Cocktail
+ Type: Healing
+ Buy: 100000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,10;
+ percentheal 10,20;
+ - Id: 12081
+ AegisName: Vit_Dish06
+ Name: Awfully Bitter Bracer
+ Type: Healing
+ Buy: 20000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,6;
+ percentheal 13,0;
+ - Id: 12082
+ AegisName: Vit_Dish07
+ Name: Sumptuous Feast
+ Type: Healing
+ Buy: 40000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,7;
+ percentheal 16,0;
+ - Id: 12083
+ AegisName: Vit_Dish08
+ Name: Giant Burito
+ Type: Healing
+ Buy: 60000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,8;
+ percentheal 19,0;
+ - Id: 12084
+ AegisName: Vit_Dish09
+ Name: Ascending Dragon Soup
+ Type: Healing
+ Buy: 80000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,9;
+ percentheal 22,0;
+ - Id: 12085
+ AegisName: Vit_Dish10
+ Name: Immortal Stew
+ Type: Healing
+ Buy: 100000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,10;
+ percentheal 25,0;
+ - Id: 12086
+ AegisName: Agi_Dish06
+ Name: Chile Shrimp Gratin
+ Type: Healing
+ Buy: 20000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,6;
+ percentheal 7,2;
+ - Id: 12087
+ AegisName: Agi_Dish07
+ Name: Steamed Alligator with Vegetable
+ Type: Healing
+ Buy: 40000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,7;
+ percentheal 8,2;
+ - Id: 12088
+ AegisName: Agi_Dish08
+ Name: Incredibly Spicy Curry
+ Type: Healing
+ Buy: 60000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,8;
+ percentheal 9,2;
+ - Id: 12089
+ AegisName: Agi_Dish09
+ Name: Special Meat Stew
+ Type: Healing
+ Buy: 80000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,9;
+ percentheal 10,2;
+ - Id: 12090
+ AegisName: Agi_Dish10
+ Name: Steamed Desert Scorpions
+ Type: Healing
+ Buy: 100000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,10;
+ percentheal 15,5;
+ - Id: 12091
+ AegisName: Dex_Dish06
+ Name: Peach Cake
+ Type: Healing
+ Buy: 20000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,6;
+ percentheal 5,6;
+ - Id: 12092
+ AegisName: Dex_Dish07
+ Name: Soul Haunted Bread
+ Type: Healing
+ Buy: 40000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,7;
+ percentheal 5,7;
+ - Id: 12093
+ AegisName: Dex_Dish08
+ Name: Special Toast
+ Type: Healing
+ Buy: 60000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,8;
+ percentheal 5,8;
+ - Id: 12094
+ AegisName: Dex_Dish09
+ Name: Heavenly Fruit Juice
+ Type: Healing
+ Buy: 80000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,9;
+ percentheal 5,9;
+ - Id: 12095
+ AegisName: Dex_Dish10
+ Name: Hwergelmir's Tonic
+ Type: Healing
+ Buy: 100000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,10;
+ percentheal 10,10;
+ - Id: 12096
+ AegisName: Luk_Dish06
+ Name: Lucky Soup
+ Type: Healing
+ Buy: 20000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,6;
+ percentheal 6,3;
+ - Id: 12097
+ AegisName: Luk_Dish07
+ Name: Assorted Shish Kebob
+ Type: Healing
+ Buy: 40000
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,7;
+ percentheal 7,3;
+ - Id: 12098
+ AegisName: Luk_Dish08
+ Name: Strawberry Flavored Rice Ball
+ Type: Healing
+ Buy: 60000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,8;
+ percentheal 9,3;
+ - Id: 12099
+ AegisName: Luk_Dish09
+ Name: Blood Flavored Soda
+ Type: Healing
+ Buy: 80000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,9;
+ percentheal 10,4;
+ - Id: 12100
+ AegisName: Luk_Dish10
+ Name: Cooked Nine Tail's Tails
+ Type: Healing
+ Buy: 100000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,10;
+ percentheal 14,8;
+ - Id: 12101
+ AegisName: Citron
+ Name: Citron
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 12102
+ AegisName: Meat_Skewer
+ Name: Grilled Skewer
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 12103
+ AegisName: Bloody_Dead_Branch
+ Name: Bloody Branch
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-3,1,"";
+ - Id: 12104
+ AegisName: Random_Quiver
+ Name: Random Quiver
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Quiver),1;
+ - Id: 12105
+ AegisName: Set_Of_Taiming_Item
+ Name: Taming Gift Set
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Taming),1;
+ getrandgroupitem(IG_Taming),1;
+ getrandgroupitem(IG_Taming),1;
+ - Id: 12106
+ AegisName: Accessory_Box
+ Name: Jewelry Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Accesory),1;
+ - Id: 12107
+ AegisName: Wrapped_Mask
+ Name: Wrapped Mask
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Mask),1;
+ - Id: 12108
+ AegisName: Bundle_Of_Magic_Scroll
+ Name: Scroll Package
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ 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;
+ - Id: 12109
+ AegisName: Poring_Box
+ Name: Poring Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-2,1,"";
+ - Id: 12110
+ AegisName: First_Aid_Kit
+ Name: First Aid Kit
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ 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;
+ - Id: 12111
+ AegisName: Food_Package
+ Name: Bundle of Food
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_FoodBag),1;
+ getrandgroupitem(IG_FoodBag),1;
+ getrandgroupitem(IG_FoodBag),1;
+ - Id: 12112
+ AegisName: Tropical_Sograt
+ Name: Tropical Sograt
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_Curse,10000,1;
+ - Id: 12113
+ AegisName: Vermilion_The_Beach
+ Name: Vermilion on the Beach
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_Stun,10000,1;
+ - Id: 12114
+ AegisName: Elemental_Fire
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",4;
+ - Id: 12115
+ AegisName: Elemental_Water
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",2;
+ - Id: 12116
+ AegisName: Elemental_Earth
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",3;
+ - Id: 12117
+ AegisName: Elemental_Wind
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",5;
+ - Id: 12118
+ AegisName: Resist_Fire
+ Name: Fireproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;
+ - Id: 12119
+ AegisName: Resist_Water
+ Name: Coldproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;
+ - Id: 12120
+ AegisName: Resist_Earth
+ Name: Earthproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;
+ - Id: 12121
+ AegisName: Resist_Wind
+ Name: Thunderproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;
+ - Id: 12122
+ AegisName: Sesame_Pastry
+ Name: Sesame Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_HITFOOD,1800000,30;
+ - Id: 12123
+ AegisName: Honey_Pastry
+ Name: Honey Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_FLEEFOOD,1800000,30;
+ - Id: 12124
+ AegisName: Rainbow_Cake
+ Name: Rainbow Cake
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_BATKFOOD,60000,10;
+ sc_start SC_MATKFOOD,60000,10;
+ - Id: 12125
+ AegisName: Outdoor_Cooking_Kits
+ Name: Outdoor Cooking Kit
+ Type: Usable
+ Buy: 500
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 11;
+ - Id: 12126
+ AegisName: Indoor_Cooking_Kits
+ Name: Home Cooking Kit
+ Type: Usable
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 12;
+ - Id: 12127
+ AegisName: High_end_Cooking_Kits
+ Name: Professional Cooking Kit
+ Type: Usable
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 13;
+ - Id: 12128
+ AegisName: Imperial_Cooking_Kits
+ Name: Royal Cooking Kit
+ Type: Usable
+ Buy: 5000
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 14;
+ - Id: 12129
+ AegisName: Fantastic_Cooking_Kits
+ Name: Fantastic Cooking Kit
+ Type: Usable
+ Buy: 10000
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 15;
+ - Id: 12130
+ AegisName: Cookie_Bag
+ Name: Cookie Bag
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CookieBag),1;
+ getrandgroupitem(IG_CookieBag),1;
+ getrandgroupitem(IG_CookieBag),1;
+ - Id: 12131
+ AegisName: Lucky_Potion
+ Name: Lucky Potion
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ - Id: 12132
+ AegisName: Red_Bag
+ Name: Santa's Bag
+ Type: Usable
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_Xmas,600000,0;
+ - Id: 12133
+ AegisName: Ice_Cream_
+ Name: McDonald's Ice Cone
+ Type: Healing
+ Weight: 80
+ Script: |
+ if (gettime(DT_DAYOFMONTH) != MDiceCone) {
+ set MDiceCone,gettime(DT_DAYOFMONTH);
+ percentheal 50,50;
+ }
+ - Id: 12134
+ AegisName: Red_Envelope
+ Name: Red Envelope
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Script: |
+ set Zeny,Zeny+rand(1000,10000);
+ - Id: 12135
+ AegisName: Green_Ale
+ Name: Green Ale
+ Type: Usable
+ Buy: 20
+ Weight: 30
+ Script: |
+ percentheal 50,50;
+ sc_start SC_Confusion,10000,0,1000,0;
+ - Id: 12136
+ AegisName: Women's_Bundle
+ Name: Women's Bundle
+ Type: Usable
+ Weight: 100
+ Script: |
+ getitem callfunc("F_Rand",558,529,2668,7518),1;
+ - Id: 12137
+ AegisName: 1st_Stage_Prize
+ Name: First Stage Prize
+ Type: Usable
+ - Id: 12138
+ AegisName: 2nd_Stage_Prize
+ Name: Second Stage Prize
+ Type: Usable
+ - Id: 12139
+ AegisName: 3rd_Stage_Prize
+ Name: Third Stage Prize
+ Type: Usable
+ - Id: 12140
+ AegisName: 4th_Stage_Prize
+ Name: Fourth Stage Prize
+ Type: Usable
+ - Id: 12141
+ AegisName: 5th_Stage_Prize
+ Name: Fifth Stage Prize
+ Type: Usable
+ - Id: 12142
+ AegisName: Magic_Book
+ Name: Book of Magic
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1800000,10;
+ - Id: 12143
+ AegisName: Red_Can
+ Name: Red Can
+ Type: Usable
+ Buy: 50000
+ Weight: 300
+ - Id: 12144
+ AegisName: Sphere_Case_Wind
+ Name: Lightning Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13204,500;
+ - Id: 12145
+ AegisName: Sphere_Case_Darkness
+ Name: Blind Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13206,500;
+ - Id: 12146
+ AegisName: Sphere_Case_Poison
+ Name: Poison Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13205,500;
+ - Id: 12147
+ AegisName: Sphere_Case_Water
+ Name: Freezing Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13207,500;
+ - Id: 12148
+ AegisName: Sphere_Case_Fire
+ Name: Flare Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13203,500;
+ - Id: 12149
+ AegisName: Bullet_Case
+ Name: Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13200,500;
+ - Id: 12150
+ AegisName: Bullet_Case_Blood
+ Name: Blood Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13202,500;
+ - Id: 12151
+ AegisName: Bullet_Case_Silver
+ Name: Silver Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13201,500;
+ - Id: 12152
+ AegisName: Special_Box
+ Name: Special Present
+ Type: Usable
+ Weight: 100
+ - Id: 12153
+ AegisName: Bow_Mercenary_Scroll1
+ Name: Bowman Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6017,1800000;
+ - Id: 12154
+ AegisName: Bow_Mercenary_Scroll2
+ Name: Bowman Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6018,1800000;
+ - Id: 12155
+ AegisName: Bow_Mercenary_Scroll3
+ Name: Bowman Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6019,1800000;
+ - Id: 12156
+ AegisName: Bow_Mercenary_Scroll4
+ Name: Bowman Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6020,1800000;
+ - Id: 12157
+ AegisName: Bow_Mercenary_Scroll5
+ Name: Bowman Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6021,1800000;
+ - Id: 12158
+ AegisName: Bow_Mercenary_Scroll6
+ Name: Bowman Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6022,1800000;
+ - Id: 12159
+ AegisName: Bow_Mercenary_Scroll7
+ Name: Bowman Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6023,1800000;
+ - Id: 12160
+ AegisName: Bow_Mercenary_Scroll8
+ Name: Bowman Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6024,1800000;
+ - Id: 12161
+ AegisName: Bow_Mercenary_Scroll9
+ Name: Bowman Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6025,1800000;
+ - Id: 12162
+ AegisName: Bow_Mercenary_Scroll10
+ Name: Bowman Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6026,1800000;
+ - Id: 12163
+ AegisName: SwordMercenary_Scroll1
+ Name: Fencer Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6037,1800000;
+ - Id: 12164
+ AegisName: SwordMercenary_Scroll2
+ Name: Fencer Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6038,1800000;
+ - Id: 12165
+ AegisName: SwordMercenary_Scroll3
+ Name: Fencer Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6039,1800000;
+ - Id: 12166
+ AegisName: SwordMercenary_Scroll4
+ Name: Fencer Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6040,1800000;
+ - Id: 12167
+ AegisName: SwordMercenary_Scroll5
+ Name: Fencer Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6041,1800000;
+ - Id: 12168
+ AegisName: SwordMercenary_Scroll6
+ Name: Fencer Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6042,1800000;
+ - Id: 12169
+ AegisName: SwordMercenary_Scroll7
+ Name: Fencer Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6043,1800000;
+ - Id: 12170
+ AegisName: SwordMercenary_Scroll8
+ Name: Fencer Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6044,1800000;
+ - Id: 12171
+ AegisName: SwordMercenary_Scroll9
+ Name: Fencer Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6045,1800000;
+ - Id: 12172
+ AegisName: SwordMercenary_Scroll10
+ Name: Fencer Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6046,1800000;
+ - Id: 12173
+ AegisName: SpearMercenary_Scroll1
+ Name: Spearman Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6027,1800000;
+ - Id: 12174
+ AegisName: SpearMercenary_Scroll2
+ Name: Spearman Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6028,1800000;
+ - Id: 12175
+ AegisName: SpearMercenary_Scroll3
+ Name: Spearman Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6029,1800000;
+ - Id: 12176
+ AegisName: SpearMercenary_Scroll4
+ Name: Spearman Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6030,1800000;
+ - Id: 12177
+ AegisName: SpearMercenary_Scroll5
+ Name: Spearman Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6031,1800000;
+ - Id: 12178
+ AegisName: SpearMercenary_Scroll6
+ Name: Spearman Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6032,1800000;
+ - Id: 12179
+ AegisName: SpearMercenary_Scroll7
+ Name: Spearman Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6033,1800000;
+ - Id: 12180
+ AegisName: SpearMercenary_Scroll8
+ Name: Spearman Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6034,1800000;
+ - Id: 12181
+ AegisName: SpearMercenary_Scroll9
+ Name: Spearman Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6035,1800000;
+ - Id: 12182
+ AegisName: SpearMercenary_Scroll10
+ Name: Spearman Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6036,1800000;
+ - Id: 12183
+ AegisName: Holy_Arrow_Quiver
+ Name: Holy Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1772,500;
+ - Id: 12184
+ AegisName: Mercenary_Red_Potion
+ Name: Mercenary Red Potion
+ Type: Usable
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_heal 1000,0;
+ - Id: 12185
+ AegisName: Mercenary_Blue_Potion
+ Name: Mercenary Blue Potion
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_heal 0,100;
+ - Id: 12186
+ AegisName: Red_Box
+ Name: Old Red Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_RedBox),1;
+ - Id: 12187
+ AegisName: Green_Box
+ Name: Old Green Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GreenBox),1;
+ - Id: 12188
+ AegisName: Magical_Moon_Cake
+ Name: Grace Moon Cake
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Script: |
+ percentheal 50,50;
+ - Id: 12189
+ AegisName: Red_Box_
+ Name: Old Red Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_RedBox_2),1;
+ - Id: 12190
+ AegisName: Moon_Cake
+ Name: Moon Cake
+ Type: Usable
+ Buy: 2
+ Weight: 300
+ - Id: 12191
+ AegisName: Special_Moon_Cake
+ Name: Special Moon Cake
+ Type: Usable
+ Buy: 2
+ Weight: 500
+ - Id: 12192
+ AegisName: Pumpkin_Pie
+ Name: Pumpkin Pie
+ Type: Healing
+ Buy: 20
+ Weight: 10
+ Script: |
+ percentheal 5,5;
+ - Id: 12193
+ AegisName: Brezel
+ Name: Pretzel
+ Type: Usable
+ Buy: 20
+ Weight: 20
+ - Id: 12194
+ AegisName: Hometown_Gift
+ Name: Hometown Gift
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_HometownGift),1;
+ getrandgroupitem(IG_HometownGift),1;
+ getrandgroupitem(IG_HometownGift),1;
+ - Id: 12195
+ AegisName: Plain_Rice_Cake
+ Name: Plain Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 0,20;
+ - Id: 12196
+ AegisName: Hearty_Rice_Cake
+ Name: Hearty Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 50,0;
+ - Id: 12197
+ AegisName: Salty_Rice_Cake
+ Name: Salty Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,10;
+ - Id: 12198
+ AegisName: Lucky_Rice_Cake
+ Name: Lucky Rice Cake
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INCLUK,1200000,21;
+ - Id: 12199
+ AegisName: Rice_Scroll
+ Name: Scroll of Magic
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12200
+ AegisName: Event_Cake
+ Name: X-mas Cake
+ Type: Delayconsume
+ Buy: 20
+ Weight: 50
+ Script: |
+ itemskill "PR_MAGNIFICAT",3;
+ - Id: 12201
+ AegisName: Red_Box_C
+ Name: Commonplace Red Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ - Id: 12202
+ AegisName: Str_Dish10_
+ Name: Steamed Tongue
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_STR_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12203
+ AegisName: Agi_Dish10_
+ Name: Steamed Scorpion
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_AGI_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12204
+ AegisName: Int_Dish10_
+ Name: Dragon Breath Cocktail
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_INT_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12205
+ AegisName: Dex_Dish10_
+ Name: Hwergelmir's Tonic
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_DEX_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12206
+ AegisName: Luk_Dish10_
+ Name: Cooked Nine Tail's Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_LUK_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12207
+ AegisName: Vit_Dish10_
+ Name: Stew Of Immortality
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_VIT_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12208
+ AegisName: Battle_Manual
+ Name: Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 60000
+ Status: Reuse_Limit_C
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,50;
+ - Id: 12209
+ AegisName: Insurance
+ Name: Life Insurance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LIFEINSURANCE,1800000,0;
+ - Id: 12210
+ AegisName: Bubble_Gum
+ Name: Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 60000
+ Status: Reuse_Limit_D
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ITEMBOOST,1800000,200;
+ - Id: 12211
+ AegisName: Kafra_Card
+ Name: Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashStore";
+ - Id: 12212
+ AegisName: Giant_Fly_Wing
+ Name: Giant Fly Wing
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashPartyCall";
+ - Id: 12213
+ AegisName: Neuralizer
+ Name: Neuralizer
+ Type: Delayconsume
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashReset";
+ - Id: 12214
+ AegisName: Convex_Mirror
+ Name: Convex Mirror
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_BOSSMAPINFO,600000,0;
+ - Id: 12215
+ AegisName: Blessing_10_Scroll
+ Name: LV10 Blessing Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,240000,10;
+ - Id: 12216
+ AegisName: Inc_Agi_10_Scroll
+ Name: LV10 Agil Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASSUMPTIO,100000,5;
+ skilleffect "HP_ASSUMPTIO",0;
+ - Id: 12219
+ AegisName: Wind_Walk_10_Scroll
+ Name: LV10 Wind Walker Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skilleffect "SN_WINDWALK",0;
+ sc_start SC_WINDWALK,250000,5;
+ - Id: 12220
+ AegisName: Adrenaline_Scroll
+ Name: LV5 Adrenaline Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ input @megaphone$;
+ announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000;
+ - Id: 12225
+ AegisName: Sweet_Candy_Striper
+ Name: Sweet Candy Cane
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1245;
+ - Id: 12226
+ AegisName: Examination1
+ Name: Examination 1
+ Type: Healing
+ 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;
+ - Id: 12227
+ AegisName: Examination2
+ Name: Examination 2
+ Type: Healing
+ 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;
+ - Id: 12228
+ AegisName: Examination3
+ Name: Examination 3
+ Type: Healing
+ 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;
+ - Id: 12229
+ AegisName: Examination4
+ Name: Examination 4
+ Type: Healing
+ 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;
+ - Id: 12230
+ AegisName: Examination5
+ Name: Examination 5
+ Type: Healing
+ 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;
+ - Id: 12231
+ AegisName: Examination6
+ Name: Examination 6
+ Type: Healing
+ 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;
+ - Id: 12232
+ AegisName: Gingerbread
+ Name: Ginger Bread
+ Type: Usable
+ Buy: 20
+ Weight: 150
+ Script: |
+ sc_start SC_ASPDPOTION1,900000,0;
+ sc_start SC_SPEEDUP0,900000,25;
+ - Id: 12233
+ AegisName: Kvass
+ Name: Kvass
+ Type: Healing
+ Buy: 20
+ Weight: 200
+ Script: |
+ percentheal 100,100;
+ - Id: 12234
+ AegisName: Cacao99
+ Name: Fierce Cacao 99%
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ percentheal 25,0;
+ - Id: 12235
+ AegisName: Strawberry_Choco
+ Name: Chocolate Strawberry
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,5;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,240000,10;
+ - Id: 12236
+ AegisName: Choco_Tart
+ Name: Chocolate Tart
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ itemskill "AL_ANGELUS",5;
+ - Id: 12237
+ AegisName: Choco_Lump
+ Name: Junky Chocolate
+ Type: Usable
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Script: |
+ sc_start SC_DPoison,10000,0,1000,0;
+ sc_start SC_Poison,50000,0;
+ - Id: 12240
+ AegisName: Old_Yellow_Box
+ Name: Old Yellow Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_YellowBox),1;
+ - Id: 12241
+ AegisName: M_Center_Potion
+ Name: Mercenary Concentration Potion
+ Type: Usable
+ Buy: 800
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION0,1800000,0;
+ - Id: 12242
+ AegisName: M_Awakening_Potion
+ Name: Mercenary Awakening Potion
+ Type: Usable
+ Buy: 1500
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION1,1800000,0;
+ - Id: 12243
+ AegisName: M_Berserk_Potion
+ Name: Mercenary Berserk Potion
+ Type: Usable
+ Buy: 3000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION2,1800000,0;
+ - Id: 12244
+ AegisName: Old_Gift_Box
+ Name: Old Gift Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_OldGiftBox),1;
+ - Id: 12245
+ AegisName: Green_Ale_US
+ Name: Green Ale
+ Type: Healing
+ Buy: 5000
+ Weight: 500
+ Script: |
+ percentheal 100,0;
+ - Id: 12246
+ AegisName: Magic_Card_Album
+ Name: Mystical Card Album
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_MagicCardAlbum),1;
+ - Id: 12247
+ AegisName: Halohalo
+ Name: Halo-Halo
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ EquipLevelMin: 20
+ Script: |
+ sc_start SC_INCALLSTATUS,600000,3;
+ - Id: 12248
+ AegisName: Masquerade_Ball_Box
+ Name: Fancy Ball Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Masquerade),1;
+ - Id: 12249
+ AegisName: Payroll_Of_Kafra_
+ Name: Payment Statement for Kafra Employee
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12250
+ AegisName: Str_Dish10_M
+ Name: Steamed Tongue
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12252
+ AegisName: Int_Dish10_M
+ Name: Dragon Breath Cocktail
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12254
+ AegisName: Luk_Dish10_M
+ Name: Cooked Nine Tail
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12256
+ AegisName: PRO_Gift_Box
+ Name: PRO Gift Box
+ Type: Usable
+ Weight: 10
+ - Id: 12257
+ AegisName: Cold_Medicine
+ Name: Cold Medicine
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ EquipLevelMin: 50
+ Script: |
+ percentheal 25,25;
+ - Id: 12258
+ AegisName: Bombring_Box
+ Name: Bomb Poring Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rang02") {
+ monster "this",-1,-1,"--ja--",1904,1,"";
+ }
+ - Id: 12259
+ AegisName: Miracle_Medicine
+ Name: Miracle Tonic
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getexp2(3000000,1500000);
+ - Id: 12260
+ AegisName: Cool_Summer_Outfit
+ Name: Cool Summer Outfit
+ Type: Usable
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_Summer,600000,0;
+ - Id: 12261
+ AegisName: Secret_Medicine
+ Name: Leap of Fantasy
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getexp2(2000000,1000000);
+ - Id: 12262
+ AegisName: Inspector_Certificate_
+ Name: Authoritative Badge
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SPEEDUP0,540000,25;
+ - Id: 12263
+ AegisName: Comp_Battle_Manual
+ Name: Field Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,50;
+ - Id: 12264
+ AegisName: Comp_Bubble_Gum
+ Name: Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ITEMBOOST,1800000,200;
+ - Id: 12265
+ AegisName: Comp_Insurance
+ Name: Life Insurrance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LIFEINSURANCE,1800000,0;
+ - Id: 12266
+ AegisName: Sesame_Pastry_
+ Name: Sesame Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,180000,30;
+ - Id: 12267
+ AegisName: Honey_Pastry_
+ Name: Honey Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,180000,30;
+ - Id: 12268
+ AegisName: Rainbow_Cake_
+ Name: Rainbow Cake
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,10;
+ sc_start SC_MATKFOOD,60000,10;
+ - Id: 12269
+ AegisName: Tasty_Colonel
+ Name: Tasty Pink Ration
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATKPOTION,600000,15;
+ - Id: 12270
+ AegisName: Tasty_Major
+ Name: Tasty White Ration
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_MATKPOTION,600000,15;
+ - Id: 12271
+ AegisName: Mre_A
+ Name: Military Ration A
+ Type: Healing
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 5,0;
+ - Id: 12272
+ AegisName: Mre_B
+ Name: Military Ration B
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,600000,33;
+ - Id: 12273
+ AegisName: Mre_C
+ Name: Military Ration C
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,600000,33;
+ - Id: 12274
+ AegisName: Gold_Pill_1
+ Name: Daehwandan
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_INCREASE_MAXHP,3600000,5,10;
+ percentheal 10,0;
+ - Id: 12275
+ AegisName: Gold_Pill_2
+ Name: Taecheongdan
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_INCREASE_MAXSP,3600000,5,10;
+ percentheal 0,10;
+ - Id: 12276
+ AegisName: Mimic_Scroll
+ Name: Mimic Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ mercenary_create 2058,1800000;
+ - Id: 12277
+ AegisName: Disguise_Scroll
+ Name: Disguise Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ mercenary_create 2059,1800000;
+ - Id: 12278
+ AegisName: Alice_Scroll
+ Name: Alice Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ mercenary_create 2060,1800000;
+ - Id: 12279
+ AegisName: Undead_Element_Scroll
+ Name: Undead Elemental Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;
+ - Id: 12280
+ AegisName: Holy_Element_Scroll
+ Name: Holy Elemental Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ specialeffect2 EF_BENEDICTIO;
+ sc_start SC_BENEDICTIO,300000,1;
+ - Id: 12281
+ AegisName: Tresure_Box_WoE
+ Name: Event Treasure Box
+ Type: Usable
+ Buy: 20
+ Weight: 150
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Tresure_Box_WoE),1;
+ - Id: 12282
+ AegisName: Internet_Cafe1
+ Name: Internet Cafe1
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - Id: 12286
+ AegisName: Masquerade_Ball_Box2
+ Name: Masquerade Ball Box2
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Masquerade_2),1;
+ - Id: 12287
+ AegisName: Love_Angel
+ Name: Love Angel Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 1;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12288
+ AegisName: Squirrel
+ Name: Squirrel Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 2;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12289
+ AegisName: Gogo
+ Name: Gogo Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 3;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12290
+ AegisName: Mysterious_Can
+ Name: Mysterious Can Magic Powder
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,120000,5;
+ - Id: 12291
+ AegisName: Mysterious_PET_Bottle
+ Name: Mysterious PET Bottle
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ skilleffect "AL_INCAGI",0;
+ sc_start SC_INCREASEAGI,120000,5;
+ - Id: 12292
+ AegisName: Unripe_Fruit
+ Name: Unripe Fruit
+ Type: Healing
+ Buy: 500
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 20,0;
+ - Id: 12293
+ AegisName: Dried_Yggdrasilberry
+ Name: Dried Yggdrasilberry
+ Type: Healing
+ Buy: 500
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 0,20;
+ - Id: 12294
+ AegisName: PC_Bang_Coin_Box1
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2740,1;
+ - Id: 12295
+ AegisName: PC_Bang_Coin_Box2
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2739,1;
+ - Id: 12296
+ AegisName: PC_Bang_Coin_Box3
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2738,1;
+ - Id: 12297
+ AegisName: PC_Bang_Coin_Box4
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2738,2;
+ - Id: 12298
+ AegisName: SP_Potion
+ Name: SP Consumption Reduction Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SPCOST_RATE,3600000,15;
+ - Id: 12299
+ AegisName: Mega_Resist_Potion
+ Name: Mega Resist Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_COMMONSC_RESIST,3600000,10;
+ - Id: 12300
+ AegisName: Wild_Rose_Scroll
+ Name: Wild Rose Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1965,1800000;
+ - Id: 12301
+ AegisName: Doppelganger_Scroll
+ Name: Doppelganger Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1966,1800000;
+ - Id: 12302
+ AegisName: Ygnizem_Scroll
+ Name: Egnigem Cenia Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1967,1800000;
+ - Id: 12303
+ AegisName: Water_Of_Blessing
+ Name: Blessing Of Water
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12304
+ AegisName: Picture_Diary
+ Name: Diary Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 4;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12305
+ AegisName: Mini_Heart
+ Name: Mini Heart Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 5;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12306
+ AegisName: Newcomer
+ Name: Freshman Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 6;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12307
+ AegisName: Kid
+ Name: Kid Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 7;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12308
+ AegisName: Magic_Castle
+ Name: Magic Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 8;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12309
+ AegisName: Bulging_Head
+ Name: JJangu Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 9;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12310
+ AegisName: Spray_Of_Flowers
+ Name: Spray Of Flowers
+ Type: Usable
+ Weight: 50
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,300000,10;
+ - Id: 12311
+ AegisName: Large_Spray_Of_Flowers
+ Name: Huge Spray Of Flowers
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "ALL_PARTYFLEE",1;
+ - Id: 12312
+ AegisName: Thick_Manual50
+ Name: Thick Battle Manual
+ Type: Usable
+ Script: |
+ sc_start SC_EXPBOOST,3600000,50;
+ - Id: 12313
+ AegisName: Protection_Of_Angel
+ Name: Guardian Angel
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* itemskill "ALL_ANGEL_PROTECT",1; */
+ - Id: 12314
+ AegisName: Noive_Box
+ Name: Noive Box
+ Type: Usable
+ Weight: 10
+ - Id: 12315
+ AegisName: Goddess_Bless
+ Name: Goddess Of Blessing
+ Type: Usable
+ Weight: 10
+ - Id: 12316
+ AegisName: Angel_Bless
+ Name: Angel Of Blessing
+ Type: Usable
+ Weight: 10
+ - Id: 12317
+ AegisName: Powder_Snow
+ Name: Snow Powder
+ Type: Usable
+ Weight: 10
+ - Id: 12318
+ AegisName: Little_Heart
+ Name: Small Hearts
+ Type: Usable
+ Weight: 10
+ - Id: 12319
+ AegisName: Strawberry_Cake
+ Name: Rune Strawberry Cake
+ Type: Usable
+ Weight: 300
+ Script: |
+ 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;
+ - Id: 12321
+ AegisName: Spicy_Sandwich
+ Name: Arunafeltz Desert Sandwich
+ Type: Usable
+ Weight: 300
+ Script: |
+ sc_start SC_INCCRI,600000,7;
+ - Id: 12322
+ AegisName: Chocolate_Pie
+ Name: Chocolate Pie
+ Type: Healing
+ Weight: 50
+ Script: |
+ percentheal 5,5;
+ - Id: 12323
+ AegisName: N_Fly_Wing
+ Name: Novice Fly Wing
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 12324
+ AegisName: N_Butterfly_Wing
+ Name: Novice Butterfly Wing
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",3;
+ - Id: 12325
+ AegisName: N_Magnifier
+ Name: Novice Magnifier
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "MC_IDENTIFY",1;
+ - Id: 12326
+ AegisName: J_Firecracker
+ Name: Large Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 12327
+ AegisName: Charm_Of_Luck
+ Name: Charm Of Luck
+ Type: Usable
+ Buy: 1000
+ Weight: 50
+ - Id: 12328
+ AegisName: Charm_Of_Happiness
+ Name: Charm Of Happiness
+ Type: Usable
+ Buy: 1800
+ Weight: 100
+ Script: |
+ sc_start SC_INCLUK,3600000,20;
+ - Id: 12329
+ AegisName: Recall_MaleGM
+ Name: Summon Male GameMaster Scroll
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_create 2000,1800000;
+ - Id: 12330
+ AegisName: Recall_FemaleGM
+ Name: Summon Female GameMaster Scroll
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_create 2001,1800000;
+ - Id: 12331
+ AegisName: Ginseng
+ Name: Ginseng
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 6,0;
+ - Id: 12332
+ AegisName: Fruit_Juice
+ Name: Fruit Juice
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 0,6;
+ - Id: 12333
+ AegisName: Ansila
+ Name: Ancilla
+ Type: Usable
+ Weight: 10
+ Stack:
+ Amount: 3
+ Inventory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 0,15;
+ - Id: 12334
+ AegisName: Cherish_Box
+ Name: Treasure Edition Helm Box
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Cherish_Box),1;
+ - Id: 12335
+ AegisName: Yummy_Skewered_Dish
+ Name: Grilled Delicious Skewer
+ Type: Healing
+ Buy: 1000
+ Weight: 350
+ Script: |
+ percentheal 60,60;
+ - Id: 12336
+ AegisName: Baked_Mushroom
+ Name: Grilled Mushroom
+ Type: Healing
+ Buy: 500
+ Weight: 300
+ Script: |
+ percentheal 30,30;
+ - Id: 12337
+ AegisName: Grilled_Sausage
+ Name: Grilled Sausages
+ Type: Healing
+ Buy: 300
+ Weight: 200
+ Script: |
+ percentheal 20,20;
+ - Id: 12338
+ AegisName: Grilled_Corn
+ Name: Grilled Corn
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Cherish_Box_Ori),1;
+ - Id: 12340
+ AegisName: Mysterious_Rice_Powder
+ Name: Chewy Rice Powder
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1815;
+ - Id: 12341
+ AegisName: Special_Alloy_Trap_Box
+ Name: Special Alloy Trap Box
+ Type: Usable
+ Buy: 30000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 7940,100;
+ - Id: 12342
+ AegisName: Manuk's_Opportunity
+ Name: Manuk's Opportunity
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_MANU_ATK,600000,10;
+ - Id: 12343
+ AegisName: Manuk's_Courage
+ Name: Manuk's Courage
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_MANU_DEF,600000,10;
+ - Id: 12344
+ AegisName: Pinguicula's_fruit_Jam
+ Name: Pinguicula's Fruit Jam
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_SPL_ATK,600000,10;
+ - Id: 12345
+ AegisName: Luciola's_Honey_Jam
+ Name: Luciola's Honey Jam
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_SPL_DEF,600000,10;
+ - Id: 12346
+ AegisName: Unripe_Acorn
+ Name: Unripe Acorn
+ Type: Usable
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ heal -100,0;
+ - Id: 12347
+ AegisName: Acorn_Jelly
+ Name: Acorn Jelly
+ Type: Delayconsume
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "ALL_REVERSEORCISH",1;
+ - Id: 12348
+ AegisName: Manuk's_Faith
+ Name: Manuk's Faith
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_MANU_MATK,600000,10;
+ - Id: 12349
+ AegisName: Cornus'_Tears
+ Name: Cornus' Tears
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_SPL_MATK,600000,10;
+ - Id: 12350
+ AegisName: Angeling_Potion
+ Name: Angeling Potion
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,120000,5;
+ itemskill "AL_ANGELUS",5;
+ - Id: 12351
+ AegisName: Shout_Megaphone
+ Name: Scream Megaphone
+ Type: Delayconsume
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "MC_LOUD",1;
+ - Id: 12352
+ AegisName: Dun_Tele_Scroll3
+ Name: Dungeon Teleport Scroll 3
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashDungeon",3;
+ - Id: 12353
+ AegisName: Tiny_Waterbottle
+ Name: Small Bottle
+ Type: Usable
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_WATERWEAPON,90000,1;
+ - Id: 12354
+ AegisName: Buche_De_Noel
+ Name: Buche De Noel
+ Type: Usable
+ Buy: 2
+ Weight: 50
+ 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;
+ - Id: 12355
+ AegisName: Xmas_Gift
+ Name: Xmas Gift
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Xmas_Gift),1;
+ - Id: 12356
+ AegisName: Louise_Costume_Box
+ Name: Louise Costume Box
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Louise_Costume_Box),1;
+ - Id: 12357
+ AegisName: Shiny_Wing_Gown
+ Name: Shiny Wing Gown
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Script: |
+ pet 1630;
+ - Id: 12358
+ AegisName: Fan_Of_Wind
+ Name: Fan Of Wind
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1513;
+ - Id: 12359
+ AegisName: Very_Soft_Plant
+ Name: Very Soft Plant
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1586;
+ - Id: 12360
+ AegisName: Very_Red_Juice
+ Name: Very Red Juice
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1505;
+ - Id: 12361
+ AegisName: Delicious_Shaved_Ice
+ Name: Delicious Shaved Ice
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1143;
+ - Id: 12362
+ AegisName: Kuloren
+ Name: Kuloren
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1401;
+ - Id: 12363
+ AegisName: Fit_Pipe
+ Name: Fit Pipe
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1179;
+ - Id: 12364
+ AegisName: Staff_Of_Leader
+ Name: Staff Of Leader
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1299;
+ - Id: 12365
+ AegisName: Charming_Lotus
+ Name: Charming Lotus
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1416;
+ - Id: 12366
+ AegisName: Gril_Doll
+ Name: Girl's Doll
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1404;
+ - Id: 12367
+ AegisName: Luxury_Whisky_Bottle
+ Name: Luxury Whisky Bottle
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1504;
+ - Id: 12368
+ AegisName: Splendid_Mirror
+ Name: Splendid Mirror
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1148;
+ - Id: 12369
+ AegisName: Oilpalm_Coconut
+ Name: Oilpalm Coconut
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1495;
+ - Id: 12370
+ AegisName: Gril's_Naivety
+ Name: Girl's Naivety
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1374;
+ - Id: 12371
+ AegisName: Magical_Lithography
+ Name: Magical Lithography
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1040;
+ - Id: 12372
+ AegisName: Hell_Contract
+ Name: Hell Contract
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1379;
+ - Id: 12373
+ AegisName: Boy's_Naivety
+ Name: Boy's Pure Heart
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1370;
+ - Id: 12374
+ AegisName: Flaming_Ice
+ Name: Ice Fireworks
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1837;
+ - Id: 12375
+ AegisName: Acaraje
+ Name: Akaraje
+ Type: Usable
+ Weight: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 3,0;
+ itemskill "PR_GLORIA",2;
+ - Id: 12377
+ AegisName: Mysterious_PET_Bottle2
+ Name: Mysterious PET Bottle2
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,3;
+ itemskill "PR_MAGNIFICAT",1;
+ - Id: 12378
+ AegisName: 2009_Rice_Cake_Soup
+ Name: Rice Cake Soup
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Script: |
+ /* percentheal 50,50; */
+ - Id: 12379
+ AegisName: Pope's_Cookie
+ Name: Pope Cookie
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 12380
+ AegisName: Desert_Wolf_Babe_Scroll
+ Name: Job Change Flute
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ mercenary_create 2034,1800000;
+ - Id: 12381
+ AegisName: ValkyrieA_Scroll
+ Name: Ancient Languages Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ if (strcharinfo(3) == "job3_arch02") {
+ mercenary_create 2037,1800000;
+ }
+ - Id: 12382
+ AegisName: ValkyrieB_Scroll
+ Name: Ancient Languages Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ if (strcharinfo(3) == "job3_arch02") {
+ mercenary_create 2038,1800000;
+ }
+ - Id: 12383
+ AegisName: Vulcan_Bullet_Magazine
+ Name: Vulcan Bullet Magazine
+ Type: Usable
+ Buy: 11000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 6145,1000;
+ - Id: 12384
+ AegisName: Rainbow_Ruby_Water
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_FROSTMISTY",5; } */
+ - Id: 12385
+ AegisName: Rainbow_Ruby_Fire
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_CRIMSONROCK",5; } */
+ - Id: 12386
+ AegisName: Rainbow_Ruby_Wind
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */
+ - Id: 12387
+ AegisName: Rainbow_Ruby_Earth
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */
+ - Id: 12388
+ AegisName: Runstone_Crush
+ Name: Rhydo Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */
+ - Id: 12389
+ AegisName: Runstone_Storm
+ Name: Pertz Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_STORMBLAST",1; } */
+ - Id: 12390
+ AegisName: Runstone_Millennium
+ Name: Verkana Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */
+ - Id: 12391
+ AegisName: Lucky_Egg_C
+ Name: Lucky Egg
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12392
+ AegisName: RepairA
+ Name: Repair A
+ Type: Usable
+ Buy: 220
+ Weight: 100
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear() ) {
+ itemheal rand(200,300),0;
+ }
+ - Id: 12393
+ AegisName: RepairB
+ Name: Repair B
+ Type: Usable
+ Buy: 500
+ Weight: 140
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear() ) {
+ itemheal rand(300,400),0;
+ }
+ - Id: 12394
+ AegisName: RepairC
+ Name: Repair C
+ Type: Usable
+ Buy: 1100
+ Weight: 180
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear() ) {
+ itemheal rand(400,500),0;
+ }
+ - Id: 12395
+ AegisName: Tantanmen
+ Name: Tantan Noodle
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ pet 1519;
+ - Id: 12396
+ AegisName: Fools_Day_Box
+ Name: Gift Box?
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ 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;
+ - Id: 12397
+ AegisName: Fools_Day_Box2
+ Name: Gift Box?
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ 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;
+ - Id: 12398
+ AegisName: PCBang_Gift_Box
+ Name: PCBang Gift Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12399
+ AegisName: Castle_Treasure_Box
+ Name: Castle Treasure Box
+ Type: Usable
+ Buy: 20
+ Weight: 1000
+ Script: |
+ Zeny += 1000000;
+ - Id: 12400
+ AegisName: Water_Of_Blessing_
+ Name: Water Of Blessing
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12401
+ AegisName: Rune_Kn_Test_Int
+ Name: Rune Kn Test Int
+ Type: Usable
+ Script: |
+ sc_start SC_INCINT,300000,40;
+ - Id: 12402
+ AegisName: 29Fruit
+ Name: 29Fruit
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 5,5;
+ - Id: 12403
+ AegisName: Lucky_Egg_C2
+ Name: Lucky Egg2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12404
+ AegisName: Acti_Potion
+ Name: Acti Potion
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12405
+ AegisName: Underripe_Yggseed
+ Name: Underripe Yggseed
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 30,30;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,140000,5;
+ - Id: 12406
+ AegisName: Psychic_ArmorS
+ Name: Psychic ArmorS
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12407
+ AegisName: PCBang_Coupon_Box
+ Name: PCBang Coupon Box
+ Type: Usable
+ Weight: 10
+ - Id: 12408
+ AegisName: Leaf_Cat_Ball
+ Name: Leaf Cat Ball
+ Type: Usable
+ Script: |
+ pet 2081;
+ - Id: 12409
+ AegisName: Pork_Belly_H
+ Name: 1st Class Pork Belly
+ Type: Usable
+ - Id: 12410
+ AegisName: Spareribs_H
+ Name: Thick Pork Belly H
+ Type: Usable
+ - Id: 12411
+ AegisName: HE_Battle_Manual
+ Name: HE Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_EXPBOOST,900000,200;
+ - Id: 12412
+ AegisName: HE_Bubble_Gum
+ Name: HE Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_ITEMBOOST,900000,300;
+ - Id: 12413
+ AegisName: PCBang_Coupon_Box2
+ Name: PCBang Coupon Box2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12414
+ AegisName: Guarana_Candy
+ Name: Guarana Candy
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ - Id: 12416
+ AegisName: Lucky_Egg_C3
+ Name: Lucky Egg C3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12417
+ AegisName: Boost500
+ Name: Boost500
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Script: |
+ sc_start SC_BOOST500,500000,10;
+ - Id: 12418
+ AegisName: Full_SwingK
+ Name: Full SwingK
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_FULL_SWING_K,500000,50;
+ - Id: 12419
+ AegisName: Mana_Plus
+ Name: Mana Plus
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MANA_PLUS,500000,50;
+ - Id: 12420
+ AegisName: Stamina_Up_M
+ Name: Stamina Up M
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Script: |
+ sc_start SC_MUSTLE_M,500000,5;
+ - Id: 12421
+ AegisName: Digestive_F
+ Name: Falmons F
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ sc_start SC_LIFE_FORCE_F,500000,5;
+ - Id: 12422
+ AegisName: HP_Increase_PotionS
+ Name: HP Increase Potion (Small)
+ Type: Usable
+ Buy: 100
+ Weight: 20
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1;
+ percentheal 1,0;
+ - Id: 12423
+ AegisName: HP_Increase_PotionM
+ Name: HP Increase Potion (Medium)
+ Type: Usable
+ Buy: 100
+ Weight: 40
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2;
+ percentheal 2,0;
+ - Id: 12424
+ AegisName: HP_Increase_PotionL
+ Name: HP Increase Potion (Large)
+ Type: Usable
+ Buy: 100
+ Weight: 80
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3;
+ percentheal 5,0;
+ - Id: 12425
+ AegisName: SP_Increase_PotionS
+ Name: SP Increase Potion (Small)
+ Type: Usable
+ Buy: 100
+ Weight: 20
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1;
+ percentheal 0,2;
+ - Id: 12426
+ AegisName: SP_Increase_PotionM
+ Name: SP Increase Potion (Medium)
+ Type: Usable
+ Buy: 100
+ Weight: 40
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2;
+ percentheal 0,4;
+ - Id: 12427
+ AegisName: SP_Increase_PotionL
+ Name: SP Increase Potion (Large)
+ Type: Usable
+ Buy: 100
+ Weight: 80
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20;
+ heal 1000,0;
+ - Id: 12429
+ AegisName: Savage_BBQ
+ Name: Savage Full Roast
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SAVAGE_STEAK,300000,20;
+ - Id: 12430
+ AegisName: Wug_Blood_Cocktail
+ Name: Cocktail Warg Blood
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;
+ - Id: 12431
+ AegisName: Minor_Brisket
+ Name: Minor Stew
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MINOR_BBQ,300000,20;
+ - Id: 12432
+ AegisName: Siroma_Icetea
+ Name: Siroma Iced Tea
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SIROMA_ICE_TEA,300000,20;
+ - Id: 12433
+ AegisName: Drocera_Herb_Stew
+ Name: Drosera Herb Salad
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DROCERA_HERB_STEAMED,300000,20;
+ - Id: 12434
+ AegisName: Petti_Tail_Noodle
+ Name: Petite Tail Noodles
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_PUTTI_TAILS_NOODLES,300000,20;
+ - Id: 12435
+ AegisName: Black_Thing
+ Name: Black Mass
+ Type: Usable
+ Weight: 50
+ Script: |
+ sc_start SC_STOMACHACHE,60000,rand(5,10);
+ - Id: 12436
+ AegisName: Vitata500
+ Name: Vitata 500
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITATA_500,500000,0;
+ itemheal 0,200;
+ - Id: 12437
+ AegisName: Enrich_Celermine_Juice
+ Name: Concentrated Ceromain Soup
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;
+ - Id: 12438
+ AegisName: F_Giant_Fly_Wing
+ Name: F Giant Fly Wing
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12439
+ AegisName: F_Battle_Manual
+ Name: F Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12440
+ AegisName: F_Insurance
+ Name: F Insurance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12441
+ AegisName: F_Bubble_Gum
+ Name: F Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12442
+ AegisName: F_Kafra_Card
+ Name: F Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12443
+ AegisName: F_Neuralizer
+ Name: F Neuralizer
+ Type: Usable
+ Buy: 2
+ - Id: 12444
+ AegisName: F_Dun_Tele_Scroll1
+ Name: F Dun Tele Scroll1
+ Type: Usable
+ Weight: 10
+ - Id: 12445
+ AegisName: F_Str_Dish10_
+ Name: F Str Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12446
+ AegisName: F_Agi_Dish10_
+ Name: F Agi Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12447
+ AegisName: F_Int_Dish10_
+ Name: F Int Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12448
+ AegisName: F_Dex_Dish10_
+ Name: F Dex Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12449
+ AegisName: F_Luk_Dish10_
+ Name: F Luk Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12450
+ AegisName: F_Vit_Dish10_
+ Name: F Vit Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12451
+ AegisName: F_WOB_Rune
+ Name: F WOB Rune
+ Type: Usable
+ Weight: 10
+ - Id: 12452
+ AegisName: F_WOB_Schwaltz
+ Name: F WOB Schwarz
+ Type: Usable
+ Weight: 10
+ - Id: 12453
+ AegisName: F_WOB_Rachel
+ Name: F WOB Rachel
+ Type: Usable
+ Weight: 10
+ - Id: 12454
+ AegisName: F_WOB_Local
+ Name: F WOB Local
+ Type: Usable
+ Weight: 10
+ - Id: 12456
+ AegisName: F_Greed_Scroll
+ Name: F Greed Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12457
+ AegisName: F_Glass_Of_Illusion
+ Name: F Glass Of Illusion
+ Type: Usable
+ Weight: 10
+ - Id: 12458
+ AegisName: F_Abrasive
+ Name: F Abrasive
+ Type: Usable
+ Weight: 10
+ - Id: 12459
+ AegisName: F_Med_Life_Potion
+ Name: F Med Life Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12460
+ AegisName: F_Small_Life_Potion
+ Name: F Small Life Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12461
+ AegisName: F_Regeneration_Potion
+ Name: F Regeneration Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12462
+ AegisName: F_B_Mdef_Potion
+ Name: F B Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12463
+ AegisName: F_S_Mdef_Potion
+ Name: F S Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12464
+ AegisName: F_B_Def_Potion
+ Name: F B Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12465
+ AegisName: F_S_Def_Potion
+ Name: F S Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12466
+ AegisName: F_Blessing_10_Scroll
+ Name: F Blessing 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12467
+ AegisName: F_Inc_Agi_10_Scroll
+ Name: F Inc Agi 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12468
+ AegisName: F_Aspersio_5_Scroll
+ Name: F Aspersio 5 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12470
+ AegisName: F_Wind_Walk_10_Scroll
+ Name: F Wind Walk 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12471
+ AegisName: F_Adrenaline_Scroll
+ Name: F Adrenaline Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12472
+ AegisName: F_Convex_Mirror
+ Name: F Convex Mirror
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12473
+ AegisName: RWC_Parti_Box
+ Name: RWC Parti Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12474
+ AegisName: RWC_Final_Comp_Box
+ Name: RWC Final Comp Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12475
+ AegisName: Cure_Free
+ Name: Cure Free
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ 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;
+ - Id: 12476
+ AegisName: PCBang_Coupon_Box3
+ Name: PCBang Coupon Box3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12477
+ AegisName: Gift_Bundle
+ Name: Gift Bundle
+ Type: Usable
+ - Id: 12478
+ AegisName: Chance_Box
+ Name: Chance Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12479
+ AegisName: Caracas_Ring_Box
+ Name: Caracas Ring Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12480
+ AegisName: Attend_3Day_Box
+ Name: Attend 3Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12481
+ AegisName: Attend_7Day_Box
+ Name: Attend 7Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12482
+ AegisName: Attend_10Day_Box
+ Name: Attend 10Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12483
+ AegisName: Attend_15Day_Box
+ Name: Attend 15Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12484
+ AegisName: Attend_20Day_Box
+ Name: Attend 20Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12485
+ AegisName: Attend_25Day_Box
+ Name: Attend 25Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12486
+ AegisName: GoldPC_First_Box
+ Name: GoldPC First Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12487
+ AegisName: PC_4Leaf_Clover_Box
+ Name: PC 4Leaf Clover Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12488
+ AegisName: Ticket_Gift_Box
+ Name: Ticket Gift Box
+ Type: Usable
+ Weight: 10
+ - Id: 12489
+ AegisName: Ticket_Gift_Box2
+ Name: Ticket Gift Box2
+ Type: Usable
+ Weight: 10
+ - Id: 12490
+ AegisName: Vivid_Notation
+ Name: Vivid Notation
+ Type: Usable
+ Buy: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12491
+ AegisName: Curious_Snowball
+ Name: Curious Snowball
+ Type: Usable
+ Buy: 20
+ Script: |
+ callfunc "F_Snowball";
+ - Id: 12492
+ AegisName: Crumpled_Paper
+ Name: Crumpled Paper
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12493
+ AegisName: Lucky_Egg_C4
+ Name: Lucky Egg C4
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12494
+ AegisName: E_Giant_Fly_Wing
+ Name: E Giant Fly Wing
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12495
+ AegisName: E_Battle_Manual
+ Name: E Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12496
+ AegisName: E_Insurance
+ Name: E Insurance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12497
+ AegisName: E_Bubble_Gum
+ Name: E Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12498
+ AegisName: E_Kafra_Card
+ Name: E Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12499
+ AegisName: E_Neuralizer
+ Name: E Neuralizer
+ Type: Usable
+ Buy: 2
+ - Id: 12500
+ AegisName: E_Dun_Tele_Scroll1
+ Name: E Dun Tele Scroll1
+ Type: Usable
+ Weight: 10
+ - Id: 12501
+ AegisName: E_Str_Dish10_
+ Name: E Str Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12502
+ AegisName: E_Agi_Dish10_
+ Name: E Agi Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12503
+ AegisName: E_Int_Dish10_
+ Name: E Int Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12504
+ AegisName: E_Dex_Dish10_
+ Name: E Dex Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12505
+ AegisName: E_Luk_Dish10_
+ Name: E Luk Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12506
+ AegisName: E_Vit_Dish10_
+ Name: E Vit Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12507
+ AegisName: E_WOB_Rune
+ Name: Yellow Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",1;
+ - Id: 12508
+ AegisName: E_WOB_Schwaltz
+ Name: Green Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",2;
+ - Id: 12509
+ AegisName: E_WOB_Rachel
+ Name: Red Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",3;
+ - Id: 12510
+ AegisName: E_WOB_Local
+ Name: Blue Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",5;
+ - Id: 12511
+ AegisName: E_Siege_Teleport_Scroll
+ Name: E Siege Teleport Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12512
+ AegisName: E_Greed_Scroll
+ Name: E Greed Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12513
+ AegisName: E_Glass_Of_Illusion
+ Name: E Glass Of Illusion
+ Type: Usable
+ Weight: 10
+ - Id: 12514
+ AegisName: E_Abrasive
+ Name: E Abrasive
+ Type: Usable
+ Weight: 10
+ - Id: 12515
+ AegisName: E_Med_Life_Potion
+ Name: E Med Life Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12516
+ AegisName: E_Small_Life_Potion
+ Name: E Small Life Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12517
+ AegisName: E_Regeneration_Potion
+ Name: E Regeneration Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12518
+ AegisName: E_B_Mdef_Potion
+ Name: E B Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12519
+ AegisName: E_S_Mdef_Potion
+ Name: E S Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12520
+ AegisName: E_B_Def_Potion
+ Name: E B Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12521
+ AegisName: E_S_Def_Potion
+ Name: E S Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12522
+ AegisName: E_Blessing_10_Scroll
+ Name: E Blessing 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12523
+ AegisName: E_Inc_Agi_10_Scroll
+ Name: E Inc Agi 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12524
+ AegisName: E_Aspersio_5_Scroll
+ Name: E Aspersio 5 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12525
+ AegisName: E_Assumptio_5_Scroll
+ Name: E Assumptio 5 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12526
+ AegisName: E_Wind_Walk_10_Scroll
+ Name: E Wind Walk 10 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12527
+ AegisName: E_Adrenaline_Scroll
+ Name: E Adrenaline Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12528
+ AegisName: E_Convex_Mirror
+ Name: E Convex Mirror
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12529
+ AegisName: White_Slim_Potion_Box
+ Name: White Slim Potion Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12530
+ AegisName: Mastela_Fruit_Box
+ Name: Mastela Fruit Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12531
+ AegisName: White_Potion_Box
+ Name: White Potion Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12532
+ AegisName: Royal_Jelly_Box2
+ Name: Royal Jelly Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12533
+ AegisName: Blue_Herb_Box2
+ Name: Blue Herb Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12534
+ AegisName: Yggdrasil_Seed_Box
+ Name: Yggdrasil Seed Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12535
+ AegisName: Iggdrasilberry_Box
+ Name: Iggdrasilberry Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12536
+ AegisName: NY_Rice_Cake_Soup
+ Name: NY Rice Cake Soup
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 12537
+ AegisName: Solo_Gift_Basket
+ Name: Solo Gift Basket
+ Type: Usable
+ Buy: 1000
+ Weight: 10
+ - Id: 12538
+ AegisName: Couple_Event_Basket
+ Name: Couple Event Basket
+ Type: Usable
+ Buy: 2000
+ Weight: 10
+ - Id: 12539
+ AegisName: Splendid_Box
+ Name: Splendid Box
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 12540
+ AegisName: GM_Warp_Box
+ Name: GM Warp Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12541
+ AegisName: Fortune_Cookie1
+ Name: Fortune Cookie1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12542
+ AegisName: Fortune_Cookie2
+ Name: Fortune Cookie2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12543
+ AegisName: Fortune_Cookie3
+ Name: Fortune Cookie3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12544
+ AegisName: Mystic_Tree_Branch
+ Name: Mystic Tree Branch
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12545
+ AegisName: Lucky_Egg_C5
+ Name: Lucky Egg C5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12546
+ AegisName: Suspicious_Dish
+ Name: Suspicious Dish
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ - Id: 12547
+ AegisName: Chalcenodny_Box
+ Name: Chalcenodny Box
+ Type: Usable
+ Weight: 200
+ - Id: 12548
+ AegisName: Buy_Market_Permit2
+ Name: Shabby Purchase Street Stall License
+ Type: Usable
+ Buy: 500
+ Weight: 10
+ Script: |
+ buyingstore 2;
+ - Id: 12549
+ AegisName: White_Slim_Pot_Box2
+ Name: White Slim Pot Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12550
+ AegisName: Poison_Bottle_Box2
+ Name: Poison Bottle Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12551
+ AegisName: MVP_Tele_Scroll
+ Name: MVP Tele Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12552
+ AegisName: Quest_Tele_Scroll
+ Name: Quest Tele Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12553
+ AegisName: Brysinggamen_Piece_Box
+ Name: Brysinggamen Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12554
+ AegisName: Asprika_Piece_Box
+ Name: Asprika Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12555
+ AegisName: Brynhild_Piece_Box
+ Name: Brynhild Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12556
+ AegisName: Sleipnir_Piece_Box
+ Name: Sleipnir Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12557
+ AegisName: Mjolnir_Piece_Box
+ Name: Mjolnir Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12558
+ AegisName: Magingiorde_Piece_Box
+ Name: Magingiorde Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12559
+ AegisName: Tenkaippin_Strong
+ Name: Tenkaippin Strong
+ Type: Usable
+ Buy: 650
+ Weight: 200
+ - Id: 12560
+ AegisName: Tenkaippin_Clean
+ Name: Tenkaippin Clean
+ Type: Usable
+ Buy: 650
+ Weight: 200
+ - Id: 12561
+ AegisName: Mysterious_Seed
+ Name: Mysterious Seed
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 12562
+ AegisName: Bubble_Gum_Plus
+ Name: Bubble Gum Plus
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12563
+ AegisName: BM75
+ Name: BM75
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12564
+ AegisName: 3D_Glasses_Box
+ Name: 3D Glasses Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12565
+ AegisName: Cheer_Scarf_Box
+ Name: Cheer Scarf Box
+ Type: Usable
+ Weight: 10
+ - Id: 12566
+ AegisName: Cheer_Scarf2_Box
+ Name: Cheer Scarf2 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12567
+ AegisName: Cheer_Scarf3_Box
+ Name: Cheer Scarf3 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12568
+ AegisName: Cheer_Scarf4_Box
+ Name: Cheer Scarf4 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12569
+ AegisName: Cheer_Scarf6_Box
+ Name: Cheer Scarf6 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12570
+ AegisName: Cheer_Scarf8_Box
+ Name: Cheer Scarf8 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12571
+ AegisName: Cheer_Scarf10_Box
+ Name: Cheer Scarf10 Box
+ Type: Usable
+ Weight: 10
+ - Id: 12572
+ AegisName: Cheer_Scarf10_Box2
+ Name: Cheer Scarf10 Box2
+ Type: Usable
+ Weight: 10
+ - Id: 12573
+ AegisName: Fruit_Basket
+ Name: Fruit Basket
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ - Id: 12574
+ AegisName: Mora_Berry
+ Name: Mora Berry
+ Type: Usable
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12575
+ AegisName: Arrow_Of_Elf_Cntr
+ Name: Arrow Of Elf Cntr
+ Type: Usable
+ Buy: 500
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ - Id: 12576
+ AegisName: Hunting_Arrow_Cntr
+ Name: Hunting Arrow Cntr
+ Type: Usable
+ Buy: 500
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ - Id: 12577
+ AegisName: Lucky_Egg_C6
+ Name: Lucky Egg C6
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12578
+ AegisName: Rapid_Life_Water
+ Name: Rapid Life Water
+ Type: Usable
+ Weight: 10
+ - Id: 12579
+ AegisName: Ring_Of_Valkyrie_Box
+ Name: Ring Of Valkyrie Box
+ Type: Usable
+ Buy: 20
+ - Id: 12580
+ AegisName: Vending_Search_Scroll
+ Name: Universal Catalog Silver
+ Type: Usable
+ Weight: 10
+ Script: |
+ searchstores 10,0;
+ - Id: 12581
+ AegisName: Vending_Search_Scroll2
+ Name: Universal Catalog Gold
+ Type: Usable
+ Weight: 10
+ Script: |
+ searchstores 10,1;
+ - Id: 12591
+ AegisName: Uni_Catalog_Bz
+ Name: Universal Catalog Bronze
+ Type: Usable
+ Weight: 10
+ Script: |
+ searchstores 10,1;
+ - Id: 12609
+ AegisName: Old_Ore_Box
+ Name: Old Ore Box
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ - Id: 12701
+ AegisName: Old_Blue_Box_F
+ Name: Old Blue Box
+ Type: Usable
+ Weight: 10
+ - Id: 12702
+ AegisName: Old_Bleu_Box
+ Name: Old Navy Box
+ Type: Usable
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_BleuBox),1;
+ getrandgroupitem(IG_BleuBox),1;
+ - Id: 12703
+ AegisName: Holy_Egg_2
+ Name: Holy Egg
+ Type: Delayconsume
+ Weight: 50
+ - Id: 12704
+ AegisName: Elixir_Of_Life
+ Name: Elixir of Life
+ Type: Healing
+ Weight: 10
+ EquipLevelMin: 85
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 100,0;
+ - Id: 12705
+ AegisName: Noble_Nameplate
+ Name: Noble Nameplate
+ Type: Usable
+ Weight: 100
+ EquipLevelMin: 90
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,100;
+ - Id: 12706
+ AegisName: Lucky_Cookie01
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_GLORIA",5;
+ - Id: 12707
+ AegisName: Lucky_Cookie02
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_MAGNIFICAT",1;
+ - Id: 12708
+ AegisName: Lucky_Cookie03
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_IMPOSITIO",3;
+ - Id: 12709
+ AegisName: Guyak_Candy
+ Name: Guyak Candy
+ Type: Healing
+ Weight: 150
+ Script: |
+ percentheal 30,30;
+ - Id: 12710
+ AegisName: Guyak_Pudding
+ Name: Guyak Pudding
+ Type: Usable
+ Weight: 200
+ Script: |
+ sc_start SC_SPEEDUP1,300000,50;
+ - Id: 12711
+ AegisName: Pretzel
+ Name: Pretzel
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 12712
+ AegisName: Green_Beer
+ Name: Green Beer
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Script: |
+ percentheal 0,50;
+ - Id: 12713
+ AegisName: Monster_Extract
+ Name: Monster Extract
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12714
+ AegisName: Easter_Scroll
+ Name: Easter Scroll
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_Easter_Scroll),1;
+ - Id: 12715
+ AegisName: Black_Treasure_Box
+ Name: Black Treasure Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12716
+ AegisName: Indian_Rice_Cake
+ Name: Indian Rice Cake
+ Type: Usable
+ Weight: 10
+ - Id: 12717
+ AegisName: Poison_Paralysis
+ Name: Paralyze
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_PARALYSE,300000,0,10,0;
+ - Id: 12718
+ AegisName: Poison_Leech
+ Name: Leech End
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LEECHESEND,300000,0,10,0;
+ - Id: 12719
+ AegisName: Poison_Oblivion
+ Name: Oblivion Curse
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_OBLIVIONCURSE,300000,0,10,0;
+ - Id: 12720
+ AegisName: Poison_Contamination
+ Name: Disheart
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEATHHURT,300000,0,10,0;
+ - Id: 12721
+ AegisName: Poison_Numb
+ Name: Toxin
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_TOXIN,300000,0,10,0;
+ - Id: 12722
+ AegisName: Poison_Fever
+ Name: Pyrexia
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_PYREXIA,300000,0,10,0;
+ - Id: 12723
+ AegisName: Poison_Laughing
+ Name: Magic Mushroom
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MAGICMUSHROOM,300000,0,10,0;
+ - Id: 12724
+ AegisName: Poison_Fatigue
+ Name: Venom Bleed
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VENOMBLEED,15000,0,10,0;
+ - Id: 12725
+ AegisName: Runstone_Nosiege
+ Name: Nauthiz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_REFRESH",1;
+ - Id: 12726
+ AegisName: Runstone_Rhydo
+ Name: Raido Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;
+ - Id: 12727
+ AegisName: Runstone_Verkana
+ Name: Berkana Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;
+ - Id: 12728
+ AegisName: Runstone_Isia
+ Name: Isa Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;
+ - Id: 12729
+ AegisName: Runstone_Asir
+ Name: Othila Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;
+ - Id: 12730
+ AegisName: Runstone_Urj
+ Name: Uruz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_ABUNDANCE",1;
+ - Id: 12731
+ AegisName: Runstone_Turisus
+ Name: Thurisaz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;
+ - Id: 12732
+ AegisName: Runstone_Pertz
+ Name: Wyrd Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_STORMBLAST",1;
+ - Id: 12733
+ AegisName: Runstone_Hagalas
+ Name: Hagalaz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Classes:
+ Third: true
+ Stack:
+ Amount: 60
+ Inventory: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;
+ - Id: 12734
+ AegisName: Runstone_Quality
+ Name: Luxurious Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 5;
+ - Id: 12735
+ AegisName: Runstone_Ancient
+ Name: Ancient Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 11;
+ - Id: 12736
+ AegisName: Runstone_Mystic
+ Name: Mystic Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 14;
+ - Id: 12737
+ AegisName: Runstone_Ordinary
+ Name: General Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 2;
+ - Id: 12738
+ AegisName: Runstone_Rare
+ Name: Rare Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 8;
+ - Id: 12739
+ AegisName: Snow_Flower
+ Name: Snow Flowers
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 12740
+ AegisName: Inc_Str_Scroll
+ Name: Amplification Scroll
+ Type: Usable
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 12741
+ AegisName: Inc_Int_Scroll
+ Name: Intellect Amplification Scroll
+ Type: Usable
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 12742
+ AegisName: Valentine_Gift_Box1
+ Name: Valentine Gift Box
+ Type: Usable
+ - Id: 12743
+ AegisName: Valentine_Gift_Box2
+ Name: Valentine Gift Box
+ Type: Usable
+ - Id: 12744
+ AegisName: Chocotate_Box
+ Name: Chocolate Box
+ Type: Usable
+ - Id: 12745
+ AegisName: Skull_Scroll
+ Name: Skull Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12746
+ AegisName: Destruction_Scroll
+ Name: Destruction Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12747
+ AegisName: Royal_Scroll
+ Name: Royal Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12748
+ AegisName: Immune_Scroll
+ Name: Immune Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12749
+ AegisName: Mystic_Scroll
+ Name: Mystic Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12750
+ AegisName: Battle_Scroll
+ Name: Battle Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12751
+ AegisName: Armor_Scroll
+ Name: Armor Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12752
+ AegisName: Prayer_Scroll
+ Name: Prayer Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12753
+ AegisName: Soul_Scroll
+ Name: Soul Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12754
+ AegisName: New_Year_Bun
+ Name: Chinese Pastel
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12755
+ AegisName: Traditional_Firecrack
+ Name: Chinese Fireworks
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_POK_JAP;
+ /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */
+ - Id: 12756
+ AegisName: New_Gift_Envelope
+ Name: Chinese New Year Envelope
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12757
+ AegisName: Loyal_Ring1_Box
+ Name: Loyal Ring1 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12758
+ AegisName: Loyal_Ring2_Box
+ Name: Loyal Ring2 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12759
+ AegisName: Loyal_Ring3_Box
+ Name: Loyal Ring3 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12760
+ AegisName: Bubble_Gum_Green
+ Name: Bubble Gum Green
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12761
+ AegisName: Bubble_Gum_Yellow
+ Name: Bubble Gum Yellow
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12762
+ AegisName: Bubble_Gum_Orange
+ Name: Bubble Gum Orange
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12763
+ AegisName: Bubble_Gum_Red
+ Name: Bubble Gum Red
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12764
+ AegisName: Fools_Day_Box_Tw
+ Name: Fools Day Box Tw
+ Type: Usable
+ - Id: 12765
+ AegisName: Summer_Knight_Box
+ Name: Summer Knight Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12766
+ AegisName: Reward_Job_BM25
+ Name: Reward Job BM25
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12767
+ AegisName: Passion_FB_Hat_Box
+ Name: Passion FB Hat Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12768
+ AegisName: Cool_FB_Hat_Box
+ Name: Cool FB Hat Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12769
+ AegisName: Victory_FB_Hat_Box
+ Name: Victory FB Hat Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12770
+ AegisName: Glory_FB_Hat_Box
+ Name: Glory FB Hat Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12771
+ AegisName: Passion_Hat_Box2
+ Name: Passion Hat Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12772
+ AegisName: Cool_Hat_Box2
+ Name: Cool Hat Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12773
+ AegisName: Victory_Hat_Box2
+ Name: Victory Hat Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12831
+ AegisName: Potion_Box
+ Name: Potion Box
+ Type: Usable
+ Weight: 50
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ - Id: 12848
+ AegisName: Falcon_Flute
+ Name: Falcon Flute
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ if (getskilllv("HT_FALCON")) {
+ if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider))
+ setfalcon (!checkfalcon());
+ }
+ - Id: 12900
+ AegisName: Battle_Manual_Box
+ Name: Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,10;
+ - Id: 12901
+ AegisName: Insurance_Package
+ Name: Insurance Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,10;
+ - Id: 12902
+ AegisName: Bubble_Gum_Box
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,10;
+ - Id: 12903
+ AegisName: Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,10;
+ - Id: 12904
+ AegisName: Agi_Dish_Box
+ Name: Steamed Scorpion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,10;
+ - Id: 12905
+ AegisName: Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,10;
+ - Id: 12906
+ AegisName: Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,10;
+ - Id: 12907
+ AegisName: Luk_Dish_Box
+ Name: Nine Tail Dish Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,10;
+ - Id: 12908
+ AegisName: Vit_Dish_Box
+ Name: Stew Of Immortality Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,10;
+ - Id: 12909
+ AegisName: Kafra_Card_Box
+ Name: Kafra Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,10;
+ - Id: 12910
+ AegisName: Giant_Fly_Wing_Box
+ Name: Giant Fly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,10;
+ - Id: 12911
+ AegisName: Neuralizer_Box
+ Name: Neuralizer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12213,1;
+ - Id: 12912
+ AegisName: Convex_Mirror_Box
+ Name: Convex Mirror Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,10;
+ - Id: 12913
+ AegisName: Blessing_10_Scroll_Box
+ Name: Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,10;
+ - Id: 12914
+ AegisName: Inc_Agi_10_Scroll_Box
+ Name: Increase AGI 10 scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,10;
+ - Id: 12915
+ AegisName: Aspersio_5_Scroll_Box
+ Name: Aspersio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,10;
+ - Id: 12916
+ AegisName: Assumptio_5_Scroll_Box
+ Name: Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,10;
+ - Id: 12917
+ AegisName: Wind_Walk_10_Scroll_Box
+ Name: Wind Walk 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,10;
+ - Id: 12918
+ AegisName: Adrenaline_Scroll_Box
+ Name: Adrenaline 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,10;
+ - Id: 12919
+ AegisName: Megaphone_Box
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,10;
+ - Id: 12920
+ AegisName: Enriched_Elunium_Box
+ Name: Enriched Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,10;
+ - Id: 12921
+ AegisName: Enriched_Oridecon_Box
+ Name: Enriched Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,10;
+ - Id: 12922
+ AegisName: Token_Of_Siegfried_Box
+ Name: Token of Siegfried Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,10;
+ - Id: 12923
+ AegisName: Pet_Egg_Scroll_Box1
+ Name: December Lucky Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12925,1;
+ - Id: 12924
+ AegisName: Pet_Egg_Scroll_Box2
+ Name: Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12926,1;
+ - Id: 12925
+ AegisName: Pet_Egg_Scroll1
+ Name: Kafra Item Mall Prize Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12926
+ AegisName: Pet_Egg_Scroll2
+ Name: December Lucky Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12927
+ AegisName: J_Aspersio_5_Scroll_Box
+ Name: Aspersio Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12928,10;
+ - Id: 12928
+ AegisName: J_Aspersio_5_Scroll
+ Name: Sacred Scroll
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "PR_ASPERSIO",5;
+ - Id: 12929
+ AegisName: Pet_Egg_Scroll_Box3
+ Name: Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12932,1;
+ - Id: 12930
+ AegisName: Pet_Egg_Scroll_Box4
+ Name: Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12933,1;
+ - Id: 12931
+ AegisName: Pet_Egg_Scroll_Box5
+ Name: Pet Egg Box 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12934,1;
+ - Id: 12932
+ AegisName: Pet_Egg_Scroll3
+ Name: Episode 13.2 Key Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12933
+ AegisName: Pet_Egg_Scroll4
+ Name: Summer Hat Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12934
+ AegisName: Pet_Egg_Scroll5
+ Name: Pet Egg Scroll5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12935
+ AegisName: Infiltrator_Box
+ Name: Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1267,604800;
+ - Id: 12936
+ AegisName: Muramasa_Box
+ Name: Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1173,604800;
+ - Id: 12937
+ AegisName: Excalibur_Box
+ Name: Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13401,604800;
+ - Id: 12938
+ AegisName: Combat_Knife_Box
+ Name: Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13021,604800;
+ - Id: 12939
+ AegisName: Counter_Dagger_Box
+ Name: Dagger of Counter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13022,604800;
+ - Id: 12940
+ AegisName: Kaiser_Knuckle_Box
+ Name: Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1817,604800;
+ - Id: 12941
+ AegisName: Pole_Axe_Box
+ Name: Poll Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1419,604800;
+ - Id: 12942
+ AegisName: Mighty_Staff_Box
+ Name: Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1623,604800;
+ - Id: 12943
+ AegisName: Right_Epsilon_Box
+ Name: Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1372,604800;
+ - Id: 12944
+ AegisName: Balistar_Box
+ Name: Ballista Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1728,604800;
+ - Id: 12945
+ AegisName: Diary_Of_Great_Sage_Box
+ Name: Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1563,604800;
+ - Id: 12946
+ AegisName: Asura_Box
+ Name: Asura Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13023,604800;
+ - Id: 12947
+ AegisName: Apple_Of_Archer_Box
+ Name: Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5265,1209600;
+ - Id: 12948
+ AegisName: Bunny_Band_Box
+ Name: Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5266,1209600;
+ - Id: 12949
+ AegisName: Sahkkat_Box
+ Name: Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5267,1209600;
+ - Id: 12950
+ AegisName: Lord_Circlet_Box
+ Name: Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5268,1209600;
+ - Id: 12951
+ AegisName: Elven_Ears_Box
+ Name: Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2686,604800;
+ - Id: 12952
+ AegisName: Steel_Flower_Box
+ Name: Steel Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2687,1209600;
+ - Id: 12953
+ AegisName: Critical_Ring_Box
+ Name: Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2688,604800;
+ - Id: 12954
+ AegisName: Earring_Box
+ Name: Earring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2689,604800;
+ - Id: 12955
+ AegisName: Ring_Box
+ Name: Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2690,604800;
+ - Id: 12956
+ AegisName: Necklace_Box
+ Name: Necklace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2691,604800;
+ - Id: 12957
+ AegisName: Glove_Box
+ Name: Glove Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2692,604800;
+ - Id: 12958
+ AegisName: Brooch_Box
+ Name: Brooch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2693,604800;
+ - Id: 12959
+ AegisName: Rosary_Box
+ Name: Rosary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2694,604800;
+ - Id: 12960
+ AegisName: Safety_Ring_Box
+ Name: Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2695,604800;
+ - Id: 12961
+ AegisName: Vesper_Core01_Box
+ Name: Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2696,604800;
+ - Id: 12962
+ AegisName: Vesper_Core02_Box
+ Name: Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2697,604800;
+ - Id: 12963
+ AegisName: Vesper_Core03_Box
+ Name: Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2698,604800;
+ - Id: 12964
+ AegisName: Vesper_Core04_Box
+ Name: Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2699,604800;
+ - Id: 12965
+ AegisName: Emergency_Box1
+ Name: Emergency Level 1 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12968,1;
+ - Id: 12966
+ AegisName: Emergency_Box2
+ Name: Emergency Level 2 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12969,1;
+ - Id: 12967
+ AegisName: Emergency_Box3
+ Name: Emergency Level 3 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12970,1;
+ - Id: 12968
+ AegisName: Emergency_Scroll1
+ Name: Emergency Level 1 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;
+ - Id: 12969
+ AegisName: Emergency_Scroll2
+ Name: Emergency Level 2 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;
+ - Id: 12970
+ AegisName: Emergency_Scroll3
+ Name: Emergency Level 3 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;
+ - Id: 12971
+ AegisName: Teleport_Box1
+ Name: Teleport Scroll Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12977,10;
+ - Id: 12972
+ AegisName: Teleport_Box2
+ Name: Teleport Scroll Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12978,10;
+ - Id: 12973
+ AegisName: Teleport_Box3
+ Name: Teleport Scroll Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12979,10;
+ - Id: 12974
+ AegisName: Teleport_Box4
+ Name: Teleport Scroll Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12980,10;
+ - Id: 12975
+ AegisName: Teleport_Box5
+ Name: Teleport Scroll Box 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12981,10;
+ - Id: 12976
+ AegisName: Teleport_Box6
+ Name: Teleport Scroll Box 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12982,10;
+ - Id: 12977
+ AegisName: Teleport_Scroll1
+ Name: Teleport Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",1;
+ - Id: 12978
+ AegisName: Teleport_Scroll2
+ Name: Teleport Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",2;
+ - Id: 12979
+ AegisName: Teleport_Scroll3
+ Name: Teleport Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",3;
+ - Id: 12980
+ AegisName: Teleport_Scroll4
+ Name: Teleport Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",4;
+ - Id: 12981
+ AegisName: Teleport_Scroll5
+ Name: Teleport Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",5;
+ - Id: 12982
+ AegisName: Teleport_Scroll6
+ Name: Teleport Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ callfunc "F_CashTele",6;
+ - Id: 12983
+ AegisName: Pet_Egg_Scroll_Box6
+ Name: Pet Egg Scroll Box 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12989,1;
+ - Id: 12984
+ AegisName: Pet_Egg_Scroll_Box7
+ Name: Pet Egg Scroll Box 7
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12990,1;
+ - Id: 12985
+ AegisName: Pet_Egg_Scroll_Box8
+ Name: Pet Egg Scroll Box 8
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12991,1;
+ - Id: 12986
+ AegisName: Pet_Egg_Scroll_Box9
+ Name: Adventurer Pack Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12992,1;
+ - Id: 12987
+ AegisName: Pet_Egg_Scroll_Box10
+ Name: Pet Egg Scroll Box 10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12993,1;
+ - Id: 12988
+ AegisName: Pet_Egg_Scroll_Box11
+ Name: Pet Egg Scroll Box 11
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12994,1;
+ - Id: 12989
+ AegisName: Pet_Egg_Scroll6
+ Name: Pet Egg Scroll 6
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12990
+ AegisName: Pet_Egg_Scroll7
+ Name: Pet Egg Scroll 7
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12991
+ AegisName: Pet_Egg_Scroll8
+ Name: Party Hard Pack
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12992
+ AegisName: Pet_Egg_Scroll9
+ Name: Adventurer Pack
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12993
+ AegisName: Pet_Egg_Scroll10
+ Name: Pet Egg Scroll 10
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12994
+ AegisName: Pet_Egg_Scroll11
+ Name: Pet Egg Scroll 11
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12995
+ AegisName: White_Herb_Box
+ Name: White Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 509,15;
+ - Id: 12996
+ AegisName: Blue_Herb_Box
+ Name: Blue Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 510,15;
+ - Id: 12997
+ AegisName: Elunium_Box
+ Name: Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 985,5;
+ - Id: 12998
+ AegisName: Oridecon_Box
+ Name: Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 984,5;
+ - Id: 12999
+ AegisName: Branch_Of_Dead_Tree_Box
+ Name: Dead Branch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 604,3;
+ - Id: 13500
+ AegisName: Insurance60_Package
+ Name: Life Insurrance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14500,10;
+ - Id: 13501
+ AegisName: Assorted_Scroll_Box
+ Name: Experience Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13502
+ AegisName: Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5279,604800;
+ - Id: 13503
+ AegisName: Magestic_Goat_Box
+ Name: Baphomet Horns Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5280,604800;
+ - Id: 13504
+ AegisName: Deviruchi_Cap_Box
+ Name: Refined Deviruchi Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5281,604800;
+ - Id: 13505
+ AegisName: Executioner_Box
+ Name: Executioner Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1174,604800;
+ - Id: 13506
+ AegisName: Brood_Axe_Box
+ Name: Refined Bloody Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1373,604800;
+ - Id: 13507
+ AegisName: Tomahawk_Box
+ Name: Tomahawk Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1374,604800;
+ - Id: 13508
+ AegisName: Bow_Of_Rudra_Box
+ Name: Rudra Bow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1729,604800;
+ - Id: 13509
+ AegisName: Cutlas_Box
+ Name: Cutlus Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13402,604800;
+ - Id: 13510
+ AegisName: Solar_Sword_Box
+ Name: Solar Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13403,604800;
+ - Id: 13511
+ AegisName: Sword_Breaker_Box
+ Name: Refined Swordbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13024,604800;
+ - Id: 13512
+ AegisName: Mail_Breaker_Box
+ Name: Refined Mailbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13025,604800;
+ - Id: 13513
+ AegisName: Moonlight_Sword_Box
+ Name: Moonlight Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13026,604800;
+ - Id: 13514
+ AegisName: Spanner_Box
+ Name: Wrench Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1534,604800;
+ - Id: 13515
+ AegisName: Grape_Box
+ Name: Grape Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 514,10;
+ - Id: 13516
+ AegisName: Royal_Jelly_Box
+ Name: Royal Jelly Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 526,5;
+ - Id: 13517
+ AegisName: Yggdrasilberry_Box
+ Name: Yggdrasil Berry Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 607,3;
+ - Id: 13518
+ AegisName: Weapon_Card_Scroll_Box
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13558,1;
+ - Id: 13519
+ AegisName: Armor_Card_Scroll_Box
+ Name: Armor Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13559,1;
+ - Id: 13520
+ AegisName: Helmet_Card_Scroll_Box
+ Name: Helmet Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13560,1;
+ - Id: 13521
+ AegisName: Hood_Card_Scroll_Box
+ Name: Garment Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13561,1;
+ - Id: 13522
+ AegisName: Hood_Card_Scroll_Box2
+ Name: Shield Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13562,1;
+ - Id: 13523
+ AegisName: Shoes_Card_Scroll_Box
+ Name: Shoes Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13563,1;
+ - Id: 13524
+ AegisName: Accy_Card_Scroll_Box
+ Name: Accessory Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13564,1;
+ - Id: 13525
+ AegisName: Zeny_Scroll_Box
+ Name: Zeny Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14508,1;
+ - Id: 13526
+ AegisName: Pet_Egg_Scroll_Box1_
+ Name: Pet Egg Scroll Box 12
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12925,30;
+ - Id: 13527
+ AegisName: Pet_Egg_Scroll_Box2_
+ Name: Pet Egg Scroll Box 13
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12926,30;
+ - Id: 13528
+ AegisName: Pet_Egg_Scroll_Box3_
+ Name: Pet Egg Scroll Box 14
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12932,30;
+ - Id: 13529
+ AegisName: Pet_Egg_Scroll_Box4_
+ Name: Pet Egg Scroll Box 15
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12933,30;
+ - Id: 13530
+ AegisName: Pet_Egg_Scroll_Box5_
+ Name: Pet Egg Scroll Box 16
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12934,30;
+ - Id: 13531
+ AegisName: Light_Red_Pot_Box
+ Name: Light Red Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 598,50;
+ - Id: 13532
+ AegisName: Light_Orange_Pot_Box
+ Name: Light Orange Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 599,50;
+ - Id: 13533
+ AegisName: Light_Yellow_Pot_Box
+ Name: Light Yellow Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 11500,50;
+ - Id: 13534
+ AegisName: Light_White_Pot_Box
+ Name: Light White Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 11501,50;
+ - Id: 13535
+ AegisName: Light_Center_Pot_Box
+ Name: Light Concentration Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14509,20;
+ - Id: 13536
+ AegisName: Light_Awakening_Pot_Box
+ Name: Light Awakening Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14510,20;
+ - Id: 13537
+ AegisName: Light_Berserk_Pot_Box
+ Name: Light Berserk Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14511,20;
+ - Id: 13538
+ AegisName: Meteor_10_Scroll_Box
+ Name: Meteor Storm Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14512,10;
+ - Id: 13539
+ AegisName: Storm_10_Scroll_Box
+ Name: Storm Gust Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14513,10;
+ - Id: 13540
+ AegisName: Vermilion_10_Scroll_Box
+ Name: Lord of Vermilion Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14514,10;
+ - Id: 13541
+ AegisName: Lex_Aeterna_Scroll_Box
+ Name: Lex Aeterna Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14515,10;
+ - Id: 13542
+ AegisName: Magnificat_5_Scroll_Box
+ Name: Magnificat Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14516,10;
+ - Id: 13543
+ AegisName: CP_Helm_Scroll_Box
+ Name: Chemical Protection Helm Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14517,10;
+ getitem 7139,10;
+ - Id: 13544
+ AegisName: CP_Shield_Scroll_Box
+ Name: Chemical Protection Shield Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14518,10;
+ getitem 7139,10;
+ - Id: 13545
+ AegisName: CP_Armor_Scroll_Box
+ Name: Chemical Protection Armor Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14519,10;
+ getitem 7139,10;
+ - Id: 13546
+ AegisName: CP_Weapon_Scroll_Box
+ Name: Chemical Protection Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14520,10;
+ getitem 7139,10;
+ - Id: 13547
+ AegisName: Repair_Scroll_Box
+ Name: Repair Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14522,10;
+ - Id: 13549
+ AegisName: Pill__Box
+ Name: Pill Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14523,10;
+ - Id: 13550
+ AegisName: Superb_Fish_Slice_Box
+ Name: Fish Slice Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14524,10;
+ - Id: 13551
+ AegisName: Chewy_Ricecake_Box
+ Name: Chewy Ricecake Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14525,10;
+ - Id: 13552
+ AegisName: Oriental_Pastry_Box
+ Name: Pastry Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14526,10;
+ - Id: 13553
+ AegisName: Dun_Tele_Scroll1_Box
+ Name: Dungeon Teleport Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14527,5;
+ - Id: 13554
+ AegisName: Weapon_Card_Scroll_Box2
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13565,1;
+ - Id: 13555
+ AegisName: Weapon_Card_Scroll_Box3
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13566,1;
+ - Id: 13556
+ AegisName: Armor_Card_Scroll_Box2
+ Name: Armor Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13567,1;
+ - Id: 13557
+ AegisName: Accy_Card_Scroll_Box2
+ Name: Accessory Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13568,1;
+ - Id: 13558
+ AegisName: Weapon_Card_Scroll
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13559
+ AegisName: Armor_Card_Scroll
+ Name: Armor Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13560
+ AegisName: Helmet_Card_Scroll
+ Name: Helmet Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13561
+ AegisName: Hood_Card_Scroll
+ Name: Garment Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13562
+ AegisName: Hood_Card_Scroll2
+ Name: Shield Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13563
+ AegisName: Shoes_Card_Scroll
+ Name: Shoes Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13564
+ AegisName: Accy_Card_Scroll
+ Name: Accessory Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13565
+ AegisName: Weapon_Card_Scroll2
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13566
+ AegisName: Weapon_Card_Scroll3
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13567
+ AegisName: Armor_Card_Scroll2
+ Name: Armor Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13568
+ AegisName: Accy_Card_Scroll2
+ Name: Accessory Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13569
+ AegisName: PVP_Tele_Scroll_Box
+ Name: PVP Teleport Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14528,10;
+ - Id: 13570
+ AegisName: Giant_Fly_Wing_Box50
+ Name: Giant Fly Wing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12212,50;
+ - Id: 13571
+ AegisName: Giant_Fly_Wing_Box100
+ Name: Giant Fly Wing 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12212,100;
+ - Id: 13572
+ AegisName: Dex_Dish_Box30
+ Name: Hwergelmir's Tonic 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12205,30;
+ - Id: 13573
+ AegisName: Dex_Dish_Box50
+ Name: Hwergelmir's Tonic 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12205,50;
+ - Id: 13574
+ AegisName: Luk_Dish_Box30
+ Name: Nine Tail Dish 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12206,30;
+ - Id: 13575
+ AegisName: Luk_Dish_Box50
+ Name: Nine Tail Dish 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12206,50;
+ - Id: 13576
+ AegisName: Inc_Agi_10_Box30
+ Name: Increase Agility Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12216,30;
+ - Id: 13577
+ AegisName: Inc_Agi_10_Box50
+ Name: Increase Agility Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12216,50;
+ - Id: 13578
+ AegisName: Vit_Dish_Box30
+ Name: Stew of Immortality 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12207,30;
+ - Id: 13579
+ AegisName: Vit_Dish_Box50
+ Name: Stew of Immortality 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12207,50;
+ - Id: 13580
+ AegisName: Insurance_Package30
+ Name: Life Insurrance 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12209,30;
+ - Id: 13581
+ AegisName: Insurance_Package50
+ Name: Life Insurrance 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12209,50;
+ - Id: 13582
+ AegisName: Convex_Mirror_Box5
+ Name: Convex Mirror 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12214,5;
+ - Id: 13583
+ AegisName: Convex_Mirror_Box30
+ Name: Convex Mirror 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12214,30;
+ - Id: 13584
+ AegisName: Blessing10_Box30
+ Name: Blessing Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12215,30;
+ - Id: 13585
+ AegisName: Blessing10_Box50
+ Name: Blessing Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12215,50;
+ - Id: 13586
+ AegisName: Adrenaline10_Box30
+ Name: Adrenaline Rush Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12220,30;
+ - Id: 13587
+ AegisName: Adrenaline10_Box50
+ Name: Adrenaline Rush Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12220,50;
+ - Id: 13588
+ AegisName: Assumptio_5_Box30
+ Name: Assumptio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12218,30;
+ - Id: 13589
+ AegisName: Assumptio_5_Box50
+ Name: Assumptio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12218,50;
+ - Id: 13590
+ AegisName: Aspersio_5_Box30
+ Name: Aspersio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12217,30;
+ - Id: 13591
+ AegisName: Aspersio_5_Box50
+ Name: Aspersio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12217,50;
+ - Id: 13592
+ AegisName: Agi_Dish_Box30
+ Name: Steamed Scorpion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12203,30;
+ - Id: 13593
+ AegisName: Agi_Dish_Box50
+ Name: Steamed Scorpion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12203,50;
+ - Id: 13594
+ AegisName: Wind_Walk10_Box30
+ Name: Wind Walk Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12219,30;
+ - Id: 13595
+ AegisName: Wind_Walk10_Box50
+ Name: Wind Walk Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12219,50;
+ - Id: 13596
+ AegisName: Int_Dish_Box30
+ Name: Dragon Breath Cocktail 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12204,30;
+ - Id: 13597
+ AegisName: Int_Dish_Box50
+ Name: Dragon Breath Cocktail 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12204,50;
+ - Id: 13598
+ AegisName: Battle_Manual_Box1
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12208,1;
+ - Id: 13599
+ AegisName: Battle_Manual_Box5
+ Name: Field Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12208,5;
+ - Id: 13600
+ AegisName: Siegfried_Box5
+ Name: Token of Siegfried 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7621,5;
+ - Id: 13601
+ AegisName: Siegfried_Box20
+ Name: Token of Siegfried 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7621,20;
+ - Id: 13602
+ AegisName: Kafra_Card_Box30
+ Name: Kafra Card 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12211,30;
+ - Id: 13603
+ AegisName: Kafra_Card_Box50
+ Name: Kafra Card 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12211,50;
+ - Id: 13604
+ AegisName: Str_Dish_Box30
+ Name: Steamed Tongue 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12202,30;
+ - Id: 13605
+ AegisName: Str_Dish_Box50
+ Name: Steamed Tongue 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12202,50;
+ - Id: 13606
+ AegisName: Bubble_Gum_Box1
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12210,1;
+ - Id: 13607
+ AegisName: Bubble_Gum_Box5
+ Name: Bubble Gum 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12210,5;
+ - Id: 13608
+ AegisName: Megaphone_Box1
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12221,1;
+ - Id: 13609
+ AegisName: Megaphone_Box5
+ Name: Megaphone 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12221,5;
+ - Id: 13610
+ AegisName: Enriched_Elunium_Box5
+ Name: Enriched Elunium 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7619,5;
+ - Id: 13611
+ AegisName: Enriched_Oridecon_Box5
+ Name: Enriched Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7620,5;
+ - Id: 13612
+ AegisName: Handcuff_Box
+ Name: Arrest Handcuffs Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 2706,1;
+ - Id: 13613
+ AegisName: Super_Pet_Egg_Box1
+ Name: Super Pet Egg Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13617,1;
+ - Id: 13614
+ AegisName: Super_Pet_Egg_Box2
+ Name: Super Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13618,1;
+ - Id: 13615
+ AegisName: Super_Pet_Egg_Box3
+ Name: Super Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13619,1;
+ - Id: 13616
+ AegisName: Super_Pet_Egg_Box4
+ Name: Super Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13620,1;
+ - Id: 13617
+ AegisName: Super_Pet_Egg1
+ Name: Super Pet Egg 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13618
+ AegisName: Super_Pet_Egg2
+ Name: Super Pet Egg 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13619
+ AegisName: Super_Pet_Egg3
+ Name: Super Pet Egg 3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13620
+ AegisName: Super_Pet_Egg4
+ Name: Super Pet Egg 4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13621
+ AegisName: Greed_Box30
+ Name: Greed Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14529,30;
+ - Id: 13622
+ AegisName: Greed_Box50
+ Name: Greed Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14529,50;
+ - Id: 13623
+ AegisName: Greed_Box100
+ Name: Greed Scroll 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14529,100;
+ - Id: 13624
+ AegisName: Flee_30_Scroll_Box
+ Name: Evasion Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14530,1;
+ - Id: 13625
+ AegisName: Accuracy_30_Scroll_Box
+ Name: Concentration Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14531,1;
+ - Id: 13626
+ AegisName: Super_Card_Pet_Egg_Box1
+ Name: Super Card Pet Egg Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13630,1;
+ - Id: 13627
+ AegisName: Super_Card_Pet_Egg_Box2
+ Name: Super Card Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13631,1;
+ - Id: 13628
+ AegisName: Super_Card_Pet_Egg_Box3
+ Name: Super Card Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13632,1;
+ - Id: 13629
+ AegisName: Super_Card_Pet_Egg_Box4
+ Name: Super Card Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 13633,1;
+ - Id: 13630
+ AegisName: Super_Card_Pet_Egg1
+ Name: Super Card Pet Egg 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13631
+ AegisName: Super_Card_Pet_Egg2
+ Name: Super Card Pet Egg 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13632
+ AegisName: Super_Card_Pet_Egg3
+ Name: Super Card Pet Egg 3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13633
+ AegisName: Super_Card_Pet_Egg4
+ Name: Super Card Pet Egg 4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13634
+ AegisName: Vigorgra_Package1
+ Name: 1 Hour Package Vol. 1
+ Type: Cash
+ 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;
+ - Id: 13635
+ AegisName: Vigorgra_Package2
+ Name: 1 Hour Package Vol. 2
+ Type: Cash
+ 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;
+ - Id: 13636
+ AegisName: Vigorgra_Package3
+ Name: 1 Hour Package Vol. 3
+ Type: Cash
+ 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;
+ - Id: 13637
+ AegisName: Vigorgra_Package4
+ Name: 1 Hour Package Vol. 4
+ Type: Cash
+ 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;
+ - Id: 13638
+ AegisName: Vigorgra_Package5
+ Name: 1 Hour Package Vol. 5
+ Type: Cash
+ 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;
+ - Id: 13639
+ AegisName: Vigorgra_Package6
+ Name: 1 Hour Package Vol. 6
+ Type: Cash
+ 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;
+ - Id: 13640
+ AegisName: Vigorgra_Package7
+ Name: 2 Hour Package Vol. 1
+ Type: Cash
+ 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;
+ - Id: 13641
+ AegisName: Vigorgra_Package8
+ Name: 2 Hour Package Vol. 2
+ Type: Cash
+ 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;
+ - Id: 13642
+ AegisName: Vigorgra_Package9
+ Name: 2 Hour Package Vol. 3
+ Type: Cash
+ 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;
+ - Id: 13643
+ AegisName: Vigorgra_Package10
+ Name: 2 Hour Package Vol. 4
+ Type: Cash
+ 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;
+ - Id: 13644
+ AegisName: Vigorgra_Package11
+ Name: 2 Hour Package Vol. 5
+ Type: Cash
+ 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;
+ - Id: 13645
+ AegisName: Vigorgra_Package12
+ Name: 2 Hour Package Vol. 6
+ Type: Cash
+ 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;
+ - Id: 13646
+ AegisName: Infiltrator_Box1
+ Name: Refined Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1267,604800;
+ - Id: 13647
+ AegisName: Muramasa_Box1
+ Name: Refined Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1173,604800;
+ - Id: 13648
+ AegisName: Excalibur_Box1
+ Name: Refined Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13401,604800;
+ - Id: 13649
+ AegisName: Combat_Knife_Box1
+ Name: Refined Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13021,604800;
+ - Id: 13650
+ AegisName: Counter_Dagger_Box1
+ Name: Refined Dagger of Counter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13022,604800;
+ - Id: 13651
+ AegisName: Kaiser_Knuckle_Box1
+ Name: Refined Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1817,604800;
+ - Id: 13652
+ AegisName: Pole_Axe_Box1
+ Name: Refined Pole Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1419,604800;
+ - Id: 13653
+ AegisName: Mighty_Staff_Box1
+ Name: Refined Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1623,604800;
+ - Id: 13654
+ AegisName: Right_Epsilon_Box1
+ Name: Refined Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1372,604800;
+ - Id: 13655
+ AegisName: Balistar_Box1
+ Name: Refined Ballista Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1728,604800;
+ - Id: 13656
+ AegisName: Diary_Of_Sage_Box1
+ Name: Refined Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1563,604800;
+ - Id: 13657
+ AegisName: Asura_Box1
+ Name: Refined Ashura Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13023,604800;
+ - Id: 13658
+ AegisName: Apple_Of_Archer_Box1
+ Name: Refined Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5265,1209600;
+ - Id: 13659
+ AegisName: Bunny_Band_Box1
+ Name: Refined Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5266,1209600;
+ - Id: 13660
+ AegisName: Sahkkat_Box1
+ Name: Refined Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5267,1209600;
+ - Id: 13661
+ AegisName: Lord_Circlet_Box1
+ Name: Refined Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5268,1209600;
+ - Id: 13662
+ AegisName: Elven_Ears_Box1
+ Name: Refined Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2686,1209600;
+ - Id: 13663
+ AegisName: Steel_Flower_Box1
+ Name: Refined Romantic Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2687,1209600;
+ - Id: 13664
+ AegisName: Critical_Ring_Box1
+ Name: Refined Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2688,604800;
+ - Id: 13665
+ AegisName: Earring_Box1
+ Name: Refined Earring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2689,604800;
+ - Id: 13666
+ AegisName: Ring_Box1
+ Name: Refined Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2690,604800;
+ - Id: 13667
+ AegisName: Necklace_Box1
+ Name: Refined Necklace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2691,604800;
+ - Id: 13668
+ AegisName: Glove_Box1
+ Name: Refined Glove Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2692,604800;
+ - Id: 13669
+ AegisName: Brooch_Box1
+ Name: Refined Brooch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2693,604800;
+ - Id: 13670
+ AegisName: Rosary_Box1
+ Name: Refined Rosary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2694,604800;
+ - Id: 13671
+ AegisName: Safety_Ring_Box1
+ Name: Refined Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2695,604800;
+ - Id: 13672
+ AegisName: Vesper_Core01_Box1
+ Name: Refined Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2696,604800;
+ - Id: 13673
+ AegisName: Vesper_Core02_Box1
+ Name: Refined Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2697,604800;
+ - Id: 13674
+ AegisName: Vesper_Core03_Box1
+ Name: Refined Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2698,604800;
+ - Id: 13675
+ AegisName: Vesper_Core04_Box1
+ Name: Refined Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2699,604800;
+ - Id: 13676
+ AegisName: Drooping_Kitty_Box1
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5279,1209600;
+ - Id: 13677
+ AegisName: Magestic_Goat_Box1
+ Name: Refined Majestic Goat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5280,1209600;
+ - Id: 13678
+ AegisName: Deviruchi_Cap_Box1
+ Name: Refined Deviruchi Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5281,1209600;
+ - Id: 13679
+ AegisName: Executioner_Box1
+ Name: Refined Executioner Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1174,604800;
+ - Id: 13680
+ AegisName: Brood_Axe_Box1
+ Name: Refined Bloody Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1373,604800;
+ - Id: 13681
+ AegisName: Tomahawk_Box1
+ Name: Refined Tomahawk Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1374,604800;
+ - Id: 13682
+ AegisName: Bow_Of_Rudra_Box1
+ Name: Refined Rudra Bow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1729,604800;
+ - Id: 13683
+ AegisName: Cutlas_Box1
+ Name: Refined Cutlus Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13402,604800;
+ - Id: 13684
+ AegisName: Solar_Sword_Box1
+ Name: Refined Solar Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13403,604800;
+ - Id: 13685
+ AegisName: Sword_Breaker_Box1
+ Name: Refined Swordbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13024,604800;
+ - Id: 13686
+ AegisName: Mail_Breaker_Box1
+ Name: Refined Mailbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13025,604800;
+ - Id: 13687
+ AegisName: Moonlight_Sword_Box1
+ Name: Refined Moonlight Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13026,604800;
+ - Id: 13688
+ AegisName: Spanner_Box1
+ Name: Refined Wrench Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1534,604800;
+ - Id: 13689
+ AegisName: Bok_Choy_Box
+ Name: Bok Choy Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7766,100;
+ - Id: 13690
+ AegisName: Chung_E_Cake_Box
+ Name: Green Maiden Cake Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7767,100;
+ - Id: 13691
+ AegisName: Freyja_Overcoat_Box
+ Name: Freya's Clothes Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ rentitem 2369,604800;
+ - Id: 13692
+ AegisName: Freyja_Boots_Box
+ Name: Freya's Boots Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ rentitem 2428,604800;
+ - Id: 13693
+ AegisName: Freyja_Cape_Box
+ Name: Freya's Manteau Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ rentitem 2533,604800;
+ - Id: 13694
+ AegisName: Freyja_Crown_Box
+ Name: Freya's Crown Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ rentitem 5306,604800;
+ - Id: 13695
+ AegisName: Battle_Manual25_Box
+ Name: Field Manual 25% Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 14532,10;
+ - Id: 13696
+ AegisName: Battle_Manual100_Box
+ Name: Field Manual 100% Box
+ Type: Cash
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14533,10;
+ - Id: 13697
+ AegisName: J_Blessing10_Box
+ Name: Blessing Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 12215,10;
+ - Id: 13698
+ AegisName: J_Inc_Agi10_Box
+ Name: Increase Agility Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 12216,10;
+ - Id: 13699
+ AegisName: J_Wind_Walk10_Box
+ Name: Wind Walk Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 12219,10;
+ - Id: 13700
+ AegisName: J_Adrenaline10_Box
+ Name: Adrenaline Rush Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 12220,10;
+ - Id: 13701
+ AegisName: Pet_Egg_Scroll12
+ Name: Pet Egg Scroll 12
+ Type: Usable
+ Weight: 10
+ - Id: 13702
+ AegisName: Pet_Egg_Scroll13
+ Name: Pet Egg Scroll 13
+ Type: Usable
+ Weight: 10
+ - Id: 13703
+ AegisName: Pet_Egg_Scroll14
+ Name: Pet Egg Scroll 14
+ Type: Usable
+ Weight: 10
+ - Id: 13704
+ AegisName: Super_Pet_Egg5
+ Name: Super Pet Egg 5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 13705
+ AegisName: Super_Pet_Egg6
+ Name: Super Pet Egg 6
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 13706
+ AegisName: Super_Pet_Egg7
+ Name: Super Pet Egg 7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 13707
+ AegisName: Super_Pet_Egg8
+ Name: Super Pet Egg 8
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 13708
+ AegisName: Pet_Egg_Scroll_E
+ Name: Pet Egg Scroll E
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13709
+ AegisName: BRO_Package_1
+ Name: BRO Package Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13710
+ AegisName: Max_Weight_Up_Box
+ Name: Gym Pass Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7776,10;
+ - Id: 13711
+ AegisName: Small_Life_Potion_Box
+ Name: Small Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14534,10;
+ - Id: 13712
+ AegisName: Small_Life_Potion_Box30
+ Name: Small Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14534,30;
+ - Id: 13713
+ AegisName: Small_Life_Potion_Box50
+ Name: Small Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14534,50;
+ - Id: 13714
+ AegisName: Med_Life_Potion_Box
+ Name: Medium Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14535,10;
+ - Id: 13715
+ AegisName: Med_Life_Potion_Box30
+ Name: Medium Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14535,30;
+ - Id: 13716
+ AegisName: Med_Life_Potion_Box50
+ Name: Medium Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14535,50;
+ - Id: 13717
+ AegisName: Abrasive_Box5
+ Name: Abrasive 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14536,5;
+ - Id: 13718
+ AegisName: Abrasive_Box10
+ Name: Abrasive 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14536,10;
+ - Id: 13719
+ AegisName: Regeneration_Box5
+ Name: Regeneration Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14537,5;
+ - Id: 13720
+ AegisName: Regeneration_Box10
+ Name: Regeneration 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14537,10;
+ - Id: 13721
+ AegisName: Dun_Tele_Scroll_Box10
+ Name: Dungeon Teleport Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14527,10;
+ - Id: 13722
+ AegisName: Pecopeco_Hairband_Box
+ Name: Peco Peco Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5286,1;
+ - Id: 13723
+ AegisName: Red_Glasses_Box
+ Name: Red Glasses Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5288,1;
+ - Id: 13724
+ AegisName: Whisper_Mask_Box
+ Name: Whisper Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5294,1;
+ - Id: 13725
+ AegisName: Ramen_Hat_Box
+ Name: Ramen Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5293,1;
+ - Id: 13726
+ AegisName: Gold_Box_
+ Name: Golden Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7777,1;
+ - Id: 13727
+ AegisName: Silver_Box_
+ Name: Silver Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7778,1;
+ - Id: 13728
+ AegisName: Gold_Key1_Box
+ Name: Golden Key 1 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 7779,1;
+ - Id: 13729
+ AegisName: Gold_Key5_Box
+ Name: Golden Key 5 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 7779,5;
+ - Id: 13730
+ AegisName: Silver_Key1_Box
+ Name: Silver Key 1 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 7780,1;
+ - Id: 13731
+ AegisName: Silver_Key5_Box
+ Name: Silver Key 5 Box
+ Type: Cash
+ Weight: 10
+ Script: |
+ getitem 7780,5;
+ - Id: 13734
+ AegisName: Pecopeco_Hairband_Box1
+ Name: Peco Peco Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5286,1;
+ - Id: 13735
+ AegisName: Red_Glasses_Box1
+ Name: Red Glasses Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5288,1;
+ - Id: 13736
+ AegisName: Whisper_Mask_Box1
+ Name: Whisper Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5294,1;
+ - Id: 13737
+ AegisName: Ramen_Hat_Box1
+ Name: Ramen Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5293,1;
+ - Id: 13738
+ AegisName: Glass_Of_Illusion_Box5
+ Name: Glass of Illusion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14538,5;
+ - Id: 13739
+ AegisName: Glass_Of_Illusion_Box10
+ Name: Glass of Illusion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14538,10;
+ - Id: 13740
+ AegisName: Shadow_Armor_S_Box5
+ Name: Shadow Armor Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14539,5;
+ - Id: 13741
+ AegisName: Shadow_Armor_S_Box10
+ Name: Shadow Armor Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14539,10;
+ - Id: 13742
+ AegisName: Shadow_Armor_S_Box30
+ Name: Shadow Armor Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14539,30;
+ - Id: 13743
+ AegisName: Holy_Armor_S_Box5
+ Name: Holy Armor Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14540,5;
+ - Id: 13744
+ AegisName: Holy_Armor_S_Box10
+ Name: Holy Armor Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14540,10;
+ - Id: 13745
+ AegisName: Holy_Armor_S_Box30
+ Name: Holy Armor Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14540,30;
+ - Id: 13746
+ AegisName: S_Def_Potion_Box10
+ Name: Small Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14541,10;
+ - Id: 13747
+ AegisName: S_Def_Potion_Box30
+ Name: Small Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14541,30;
+ - Id: 13748
+ AegisName: S_Def_Potion_Box50
+ Name: Small Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14541,50;
+ - Id: 13749
+ AegisName: B_Def_Potion_Box10
+ Name: Big Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14542,10;
+ - Id: 13750
+ AegisName: B_Def_Potion_Box30
+ Name: Big Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14542,30;
+ - Id: 13751
+ AegisName: B_Def_Potion_Box50
+ Name: Big Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14542,50;
+ - Id: 13752
+ AegisName: S_Mdef_Potion_Box10
+ Name: Small Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14543,10;
+ - Id: 13753
+ AegisName: S_Mdef_Potion_Box30
+ Name: Small Magic Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14543,30;
+ - Id: 13754
+ AegisName: S_Mdef_Potion_Box50
+ Name: Small Magic Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14543,50;
+ - Id: 13755
+ AegisName: B_Mdef_Potion_Box10
+ Name: Big Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14544,10;
+ - Id: 13756
+ AegisName: B_Mdef_Potion_Box30
+ Name: Big Magic Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14544,30;
+ - Id: 13757
+ AegisName: B_Mdef_Potion_Box50
+ Name: Big Magic Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14544,50;
+ - Id: 13758
+ AegisName: Battle_Manual_X3_Box
+ Name: Field Manual 300% Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14545,20;
+ - Id: 13759
+ AegisName: In_Blue_Herb_Box
+ Name: Blue Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 510,50;
+ - Id: 13760
+ AegisName: Honey_Box
+ Name: Honey Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 518,100;
+ - Id: 13761
+ AegisName: Empty_Bottle_Box
+ Name: Empty Bottle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 713,500;
+ - Id: 13762
+ AegisName: In_Royal_Jelly_Box
+ Name: Royal Jelly Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 526,70;
+ - Id: 13763
+ AegisName: 5_Anniversary_Coin_Box
+ Name: Coin Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 2709,1;
+ - Id: 13764
+ AegisName: Battle_Manual_Box_TW
+ Name: Beginner's Field Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7803,5;
+ - Id: 13765
+ AegisName: Certificate_TW_Box
+ Name: Certificate Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7804,1;
+ - Id: 13766
+ AegisName: Nagan_Box
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13407,604800;
+ - Id: 13767
+ AegisName: Skewer_Box
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1424,604800;
+ - Id: 13768
+ AegisName: Survival_Rod_Box
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1628,604800;
+ - Id: 13769
+ AegisName: Quadrille_Box
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1537,604800;
+ - Id: 13770
+ AegisName: Great_Axe_Box
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1378,604800;
+ - Id: 13771
+ AegisName: Bloody_Roar_Box
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1273,604800;
+ - Id: 13772
+ AegisName: Hardback_Box
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1567,604800;
+ - Id: 13773
+ AegisName: Fire_Brand_Box
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13408,604800;
+ - Id: 13774
+ AegisName: Immaterial_Sword_Box
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13409,604800;
+ - Id: 13775
+ AegisName: Unholy_Touch_Box
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1274,604800;
+ - Id: 13776
+ AegisName: Cloak_Of_Survival_Box
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2535,1209600;
+ - Id: 13777
+ AegisName: Masquerade_Box
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5326,1209600;
+ - Id: 13778
+ AegisName: Orc_Hero_Helm_Box
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5327,1209600;
+ - Id: 13779
+ AegisName: Evil_Wing_Ears_Box
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5328,1209600;
+ - Id: 13780
+ AegisName: Dark_Blindfold_Box
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5329,1209600;
+ - Id: 13781
+ AegisName: kRO_Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5330,1209600;
+ - Id: 13782
+ AegisName: Corsair_Box
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5331,1209600;
+ - Id: 13783
+ AegisName: Bloody_Iron_Ball_Box
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2710,604800;
+ - Id: 13784
+ AegisName: Spiritual_Ring_Box
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2711,604800;
+ - Id: 13785
+ AegisName: Nagan_Box1
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13407,86400;
+ - Id: 13786
+ AegisName: Skewer_Box1
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1424,86400;
+ - Id: 13787
+ AegisName: Survival_Rod_Box1
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1628,86400;
+ - Id: 13788
+ AegisName: Quadrille_Box1
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1537,86400;
+ - Id: 13789
+ AegisName: Great_Axe_Box1
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1378,86400;
+ - Id: 13790
+ AegisName: Bloody_Roar_Box1
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1273,86400;
+ - Id: 13791
+ AegisName: Hardback_Box1
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1567,86400;
+ - Id: 13792
+ AegisName: Fire_Brand_Box1
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13408,86400;
+ - Id: 13793
+ AegisName: Immaterial_Sword_Box1
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13409,86400;
+ - Id: 13794
+ AegisName: Unholy_Touch_Box1
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1274,86400;
+ - Id: 13795
+ AegisName: Cloak_Of_Survival_Box1
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2535,86400;
+ - Id: 13796
+ AegisName: Masquerade_Box1
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5326,86400;
+ - Id: 13797
+ AegisName: Orc_Hero_Helm_Box1
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5327,86400;
+ - Id: 13798
+ AegisName: Evil_Wing_Ears_Box1
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5328,86400;
+ - Id: 13799
+ AegisName: Dark_Blindfold_Box1
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5329,86400;
+ - Id: 13800
+ AegisName: kRO_Drooping_Kitty_Box1
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5330,86400;
+ - Id: 13801
+ AegisName: Corsair_Box1
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5331,86400;
+ - Id: 13802
+ AegisName: Bloody_Iron_Ball_Box1
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2710,86400;
+ - Id: 13803
+ AegisName: Spiritual_Ring_Box1
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2711,86400;
+ - Id: 13804
+ AegisName: Fire_Cracker_Love_Box
+ Name: I Love You Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14546,10;
+ - Id: 13805
+ AegisName: Fire_Cracker_Wday_Box
+ Name: Whiteday Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14547,10;
+ - Id: 13806
+ AegisName: Fire_Cracker_Vday_Box
+ Name: Valentine's Day Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14548,10;
+ - Id: 13807
+ AegisName: Fire_Cracker_Bday_Box
+ Name: Birthday Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14549,10;
+ - Id: 13808
+ AegisName: Fire_Cracker_Xmas_Box
+ Name: Xmas Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14550,10;
+ - Id: 13809
+ AegisName: Blue_Gemstone_Box
+ Name: Blue Gemstone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 717,100;
+ - Id: 13810
+ AegisName: Blue_Potion_Box
+ Name: Blue Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 11502,25;
+ - Id: 13811
+ AegisName: Food_Box_Lv1
+ Name: Food Box Vol 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13815
+ AegisName: Knife_Goblin_Box
+ Name: Knife Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14569,10;
+ - Id: 13816
+ AegisName: Flail_Goblin_Box
+ Name: Flail Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14570,10;
+ - Id: 13817
+ AegisName: Hammer_Goblin_Box
+ Name: Hammer Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14571,10;
+ - Id: 13818
+ AegisName: Red_Deleter_Box
+ Name: Red Deleter Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14572,10;
+ - Id: 13819
+ AegisName: Diabolic_Box
+ Name: Diabolic Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14573,10;
+ - Id: 13820
+ AegisName: Wanderer_Box
+ Name: Wanderer Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14574,10;
+ - Id: 13821
+ AegisName: Green_Apple_Box
+ Name: Green Apple Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7821,10;
+ - Id: 13822
+ AegisName: Whole_Barbecue_Box
+ Name: Barbeque Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7822,10;
+ - Id: 13823
+ AegisName: Meat_Veg_Skewer_Box
+ Name: Meat Skewer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7823,10;
+ - Id: 13824
+ AegisName: Spirit_Liquor_Box
+ Name: Spirit Liquor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7824,10;
+ - Id: 13825
+ AegisName: Green_Box_
+ Name: Old Green Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 13826
+ AegisName: Power_Box1
+ Name: Power Box 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 682,1;
+ getitem 12123,1;
+ getitem 12122,1;
+ - Id: 13827
+ AegisName: Power_Box2
+ Name: Power Box 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 683,1;
+ getitem 12123,1;
+ getitem 12122,1;
+ - Id: 13828
+ AegisName: Resist_Box1
+ Name: Resist Box 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12118,1;
+ getitem 12119,1;
+ - Id: 13829
+ AegisName: Resist_Box2
+ Name: Resist Box 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12120,1;
+ getitem 12121,1;
+ - Id: 13830
+ AegisName: Stat_Boost1
+ Name: Stat Boost 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14581,5;
+ - Id: 13835
+ AegisName: Dun_Tele_Scroll2_Box10
+ Name: Dungeon Teleport Scroll II 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14581,10;
+ - Id: 13836
+ AegisName: Mbl_Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12250,1;
+ - Id: 13837
+ AegisName: Mbl_Agi_Dish_Box
+ Name: Steamed Desert Scorpions Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12251,1;
+ - Id: 13838
+ AegisName: Mbl_Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12252,1;
+ - Id: 13839
+ AegisName: Mbl_Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12253,1;
+ - Id: 13840
+ AegisName: Mbl_Luk_Dish_Box
+ Name: Cooked Nine Tail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12254,1;
+ - Id: 13841
+ AegisName: Mbl_Vit_Dish_Box
+ Name: Immortal Stew Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12255,1;
+ - Id: 13842
+ AegisName: Mbl_Kafra_Card_Box
+ Name: Payment Statement for Kafra Employee Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12249,1;
+ - Id: 13843
+ AegisName: Mbl_Battle_Manual_Box
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14532,1;
+ - Id: 13844
+ AegisName: Heroic_Stone_Box
+ Name: Heroic Stone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 7825,1;
+ - Id: 13845
+ AegisName: Mysterious_Travel_Sack1
+ Name: Mystery Travel Sack A
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13846
+ AegisName: Mysterious_Travel_Sack2
+ Name: Mystery Travel Sack B
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13847
+ AegisName: Mysterious_Travel_Sack3
+ Name: Mystery Travel Sack C
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13848
+ AegisName: Mysterious_Travel_Sack4
+ Name: Mystery Travel Sack D
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 13849
+ AegisName: WOB_Box_Rune5
+ Name: Yellow Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14582,5;
+ - Id: 13850
+ AegisName: WOB_Box_Rune10
+ Name: Yellow Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14582,10;
+ - Id: 13851
+ AegisName: WOB_Box_Schawaltz5
+ Name: Green Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14583,5;
+ - Id: 13852
+ AegisName: WOB_Box_Schawaltz10
+ Name: Green Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14583,10;
+ - Id: 13853
+ AegisName: WOB_Box_Rachel5
+ Name: Red Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14584,5;
+ - Id: 13854
+ AegisName: WOB_Box_Rachel10
+ Name: Red Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14584,10;
+ - Id: 13855
+ AegisName: WOB_Box_Local5
+ Name: Blue Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14585,5;
+ - Id: 13856
+ AegisName: WOB_Box_Local10
+ Name: Blue Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14585,10;
+ - Id: 13857
+ AegisName: Spark_Candy_Box5
+ Name: Candy 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14586,5;
+ - Id: 13858
+ AegisName: Spark_Candy_Box10
+ Name: Candy 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14586,10;
+ - Id: 13859
+ AegisName: Directive_A_Envelope
+ Name: Directive Envelope A
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2734,1;
+ - Id: 13860
+ AegisName: Directive_B_Envelope
+ Name: Directive Envelope B
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2735,1;
+ - Id: 13861
+ AegisName: Mini_Battle_Manual_Box
+ Name: Small Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12208,4;
+ - Id: 13862
+ AegisName: Trial_Box
+ Name: Trial Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12208,2;
+ getitem 12215,15;
+ getitem 12216,15;
+ - Id: 13863
+ AegisName: Repair_Scroll_Box10
+ Name: Repair Weapon Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5210,1;
+ - Id: 13867
+ AegisName: Neko_Mimi_Box
+ Name: Neko Mimi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 13868
+ AegisName: MFH_Box
+ Name: Moonlight Flower Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5214,1;
+ - Id: 13869
+ AegisName: Chick_Hat_Box
+ Name: Baby Chick Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5283,1;
+ - Id: 13870
+ AegisName: New_Style_Box
+ Name: Beauty Gift Certificate Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7622,1;
+ - Id: 13871
+ AegisName: Magician_Card_Box
+ Name: Mage Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4244,1;
+ getitem 4299,1;
+ getitem 4313,1;
+ getitem 4229,1;
+ - Id: 13878
+ AegisName: Geffenia_Card_Box
+ Name: Geffenia Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4218,1;
+ getitem 4269,1;
+ - Id: 13879
+ AegisName: Owl_Card_Box
+ Name: Owl Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4237,1;
+ getitem 4238,1;
+ - Id: 13880
+ AegisName: Ghost_Card_Box
+ Name: Ghost Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4193,1;
+ getitem 4294,1;
+ - Id: 13881
+ AegisName: Nightmare_Card_Box
+ Name: Nightmare Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4127,1;
+ getitem 4166,1;
+ - Id: 13882
+ AegisName: Curse_Card_Box
+ Name: Curse Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4076,4;
+ - Id: 13883
+ AegisName: Sleep_Card_Box
+ Name: Sleep Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4024,4;
+ - Id: 13884
+ AegisName: Freeze_Card_Box
+ Name: Freeze Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4055,4;
+ - Id: 13885
+ AegisName: Stun_Card_Box
+ Name: Stun Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4017,4;
+ - Id: 13886
+ AegisName: Silence_Card_Box
+ Name: Silence Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4057,4;
+ - Id: 13887
+ AegisName: Blind_Card_Box
+ Name: Blind Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4020,4;
+ - Id: 13888
+ AegisName: Chaos_Card_Box
+ Name: Chaos Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4104,4;
+ - Id: 13889
+ AegisName: Elunium_Box_
+ Name: Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 985,10;
+ - Id: 13890
+ AegisName: Oridecon_Box_
+ Name: Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 984,10;
+ - Id: 13891
+ AegisName: Fire_Converter_Box
+ Name: Fire Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12114,10;
+ - Id: 13892
+ AegisName: Water_Converter_Box
+ Name: Water Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12115,10;
+ - Id: 13893
+ AegisName: Wind_Converter_Box
+ Name: Wind Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12117,10;
+ - Id: 13894
+ AegisName: Earth_Converter_Box
+ Name: Earth Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12116,10;
+ - Id: 13895
+ AegisName: Starter_Pack
+ Name: Starter Pack
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13896
+ AegisName: Mimic_Summon_Box5
+ Name: Mimic Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12276,5;
+ - Id: 13897
+ AegisName: Disguise_Summon_Box5
+ Name: Disguise Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12277,5;
+ - Id: 13898
+ AegisName: Alice_Summon_Box5
+ Name: Alice Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12278,5;
+ - Id: 13899
+ AegisName: Mimic_Summon_Box10
+ Name: Mimic Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12276,10;
+ - Id: 13900
+ AegisName: Disguise_Summon_Box10
+ Name: Disguise Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12277,10;
+ - Id: 13901
+ AegisName: Alice_Summon_Box10
+ Name: Alice Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 12278,10;
+ - Id: 13902
+ AegisName: Fish_Head_Hat_Box
+ Name: Fish Head Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5380,1;
+ - Id: 13903
+ AegisName: Santa_Poring_Hat_Box
+ Name: Santa Poring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5381,1;
+ - Id: 13904
+ AegisName: Bell_Ribbon_Box
+ Name: Bell Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5382,1;
+ - Id: 13905
+ AegisName: Hard_Core_Set_Box
+ Name: XM Hardcore Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,10;
+ getitem 12209,10;
+ getitem 12210,10;
+ - Id: 13906
+ AegisName: Kitty_Set_Box
+ Name: XM Kitty Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,5;
+ getitem 12209,5;
+ getitem 12210,5;
+ - Id: 13908
+ AegisName: Deviruchi_Set_Box
+ Name: XM Deviruchi Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5227,1;
+ getitem 5228,1;
+ getitem 5229,1;
+ - Id: 13909
+ AegisName: MVP_Hunt_Box
+ Name: MVP Hunting Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,1;
+ getitem 12210,1;
+ getitem 12221,1;
+ getitem 12214,3;
+ - Id: 13910
+ AegisName: Brewing_Box
+ Name: XM Brewing Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,10;
+ getitem 12205,10;
+ getitem 12206,10;
+ - Id: 13911
+ AegisName: Xmas_Pet_Scroll
+ Name: Christmas Pet Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13912
+ AegisName: Party_Blessing_Box
+ Name: Party Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14588,10;
+ - Id: 13913
+ AegisName: Party_Inc_Agi_Box
+ Name: Party Increase Agi 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14589,10;
+ - Id: 13914
+ AegisName: Party_Assumptio_Box
+ Name: Party Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14590,10;
+ - Id: 13915
+ AegisName: Love_Angel_Box
+ Name: Love Angel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12287,604800;
+ - Id: 13916
+ AegisName: Squirrel_Box
+ Name: Squirrel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12288,604800;
+ - Id: 13917
+ AegisName: Gogo_Box
+ Name: Gogo Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12289,604800;
+ - Id: 13926
+ AegisName: Crusader_Card_Box
+ Name: Crusader Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4371,1;
+ getitem 4311,1;
+ getitem 4319,1;
+ getitem 4331,1;
+ - Id: 13927
+ AegisName: Alchemist_Card_Box
+ Name: Alchemist Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4312,1;
+ getitem 4332,1;
+ getitem 4185,1;
+ getitem 4293,1;
+ - Id: 13932
+ AegisName: Sylph_Box
+ Name: Sylph Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4345,4;
+ - Id: 13933
+ AegisName: Undine_Box
+ Name: Undine Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4350,4;
+ - Id: 13934
+ AegisName: Salamander_Box
+ Name: Salamander Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4380,4;
+ - Id: 13935
+ AegisName: Soul_Box
+ Name: Soul Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4388,4;
+ - Id: 13936
+ AegisName: Noum_Bpx
+ Name: Gnome Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4335,4;
+ - Id: 13937
+ AegisName: Robo_Eye_Box
+ Name: Robo Eye Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5325,1;
+ - Id: 13938
+ AegisName: Twin_Ribbon_Box
+ Name: Maiden's Twin Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5187,1;
+ - Id: 13940
+ AegisName: Siege_Tele_Scroll_Box
+ Name: WoE Teleport Scroll 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,100;
+ - Id: 13941
+ AegisName: Valentine_Scroll_TW
+ Name: Taiwan Valentine Scroll
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13942
+ AegisName: Love_Angel_Box_1m
+ Name: Love Angel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14009,1;
+ - Id: 13943
+ AegisName: Squirrel_Box_1m
+ Name: Squirrel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14010,1;
+ - Id: 13944
+ AegisName: Gogo_Box_1m
+ Name: Gogo Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14011,1;
+ - Id: 13945
+ AegisName: Br_SwordPackage
+ Name: Brazil Swordsman Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13946
+ AegisName: Br_MagePackage
+ Name: Brazil Magician Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13947
+ AegisName: Br_AcolPackage
+ Name: Brazil Acolyte Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13948
+ AegisName: Br_ArcherPackage
+ Name: Brazil Archer package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13949
+ AegisName: Br_MerPackage
+ Name: Brazil Merchant Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13950
+ AegisName: Br_ThiefPackage
+ Name: Brazil Thief Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13951
+ AegisName: Wasteland_Outlaw_Box
+ Name: Western Outlaw Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13109,604800;
+ - Id: 13952
+ AegisName: Lever_Action_Rifle_Box
+ Name: Lever Action Rifle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13170,604800;
+ - Id: 13953
+ AegisName: All_In_One_Ring_Box
+ Name: All In One Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2741,604800;
+ - Id: 13954
+ AegisName: Spiritual_Tunic_Box
+ Name: Spiritual Tunic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2384,604800;
+ - Id: 13955
+ AegisName: Recuperative_Armor_Box
+ Name: Recuvative Armor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2385,604800;
+ - Id: 13956
+ AegisName: Shelter_Resistance_Box
+ Name: Shell Of Resistance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2132,604800;
+ - Id: 13957
+ AegisName: Sylphid_Manteau_Box
+ Name: Silf Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2543,604800;
+ - Id: 13958
+ AegisName: Refresh_Shoes_Box
+ Name: Refresh Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2439,604800;
+ - Id: 13959
+ AegisName: Toast_Box
+ Name: Crunch Toast Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5391,604800;
+ - Id: 13960
+ AegisName: Name_Change_Coupon_Box
+ Name: Identification Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7623,1;
+ - Id: 13961
+ AegisName: Mojji_Box
+ Name: Mochi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 554,5;
+ - Id: 13962
+ AegisName: Deprotai_Doll_Hat_Box
+ Name: Defolty Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5340,1;
+ - Id: 13963
+ AegisName: Claris_Doll_Hat_Box
+ Name: Glaris Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5341,1;
+ - Id: 13964
+ AegisName: Sorin_Doll_Hat_Box
+ Name: Sorin Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5342,1;
+ - Id: 13965
+ AegisName: Tayelin_Doll_Hat_Box
+ Name: Tailring Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5343,1;
+ - Id: 13966
+ AegisName: Binit_Doll_Hat_Box
+ Name: Vinit Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5344,1;
+ - Id: 13967
+ AegisName: Debril_Doll_Hat_Box
+ Name: W Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5345,1;
+ - Id: 13970
+ AegisName: Iron_10_Box
+ Name: Iron Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 998,10;
+ - Id: 13971
+ AegisName: Steel_10_Box
+ Name: Steel Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 999,10;
+ - Id: 13972
+ AegisName: Coal_10_Box
+ Name: Coal Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1003,10;
+ - Id: 13973
+ AegisName: Poison_Bottle_30_Box
+ Name: Poison Bottle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,30;
+ - Id: 13974
+ AegisName: TW_Scroll01
+ Name: Fisherman Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13975
+ AegisName: Picture_Diary_Box
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12304,604800;
+ - Id: 13976
+ AegisName: Mini_Heart_Box
+ Name: Mini Heart Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12305,604800;
+ - Id: 13977
+ AegisName: Newcomer_Box
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12306,604800;
+ - Id: 13978
+ AegisName: Kid_Box
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12307,604800;
+ - Id: 13979
+ AegisName: Magic_Castle_Box
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12308,604800;
+ - Id: 13980
+ AegisName: Bulging_Head_Box
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12309,604800;
+ - Id: 13981
+ AegisName: Picture_Diary_Box_1m
+ Name: Diary Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12304,2592000;
+ - Id: 13982
+ AegisName: Mini_Heart_Box_1m
+ Name: Mini Heart Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12305,2592000;
+ - Id: 13983
+ AegisName: Newcomer_Box_1m
+ Name: Freshman Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12306,2592000;
+ - Id: 13984
+ AegisName: Kid_Box_1m
+ Name: Kid Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12307,2592000;
+ - Id: 13985
+ AegisName: Magic_Castle_Box_1m
+ Name: Magic Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12308,2592000;
+ - Id: 13986
+ AegisName: Bulging_Head_Box_1m
+ Name: JJangu Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12309,2592000;
+ - Id: 13987
+ AegisName: Ori_Stone_5_Box
+ Name: Rough Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 756,5;
+ - Id: 13988
+ AegisName: Ori_Stone_50_Box
+ Name: Rough Oridecon 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 756,50;
+ - Id: 13989
+ AegisName: Acidbomb_10_Box
+ Name: Acid Bomb 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7135,10;
+ getitem 7136,10;
+ - Id: 13990
+ AegisName: Job_Manual50_Box
+ Name: JOB Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14592,10;
+ - Id: 13991
+ AegisName: Tiger_Mask_Box
+ Name: Tiger Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5098,1;
+ - Id: 13992
+ AegisName: Cat_Hat_Box
+ Name: Pussy Cat Bell Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 13993
+ AegisName: Alice_Doll_Box
+ Name: Alice Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5137,1;
+ - Id: 13994
+ AegisName: Speed_Up_Potion_Box5
+ Name: Speed Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12016,5;
+ - Id: 13995
+ AegisName: Speed_Up_Potion_Box10
+ Name: Speed Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12016,10;
+ - Id: 13996
+ AegisName: Big_Bun_Box100
+ Name: Big Bun 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14522,100;
+ - Id: 13997
+ AegisName: Big_Bun_Box500
+ Name: Big Bun 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14522,500;
+ - Id: 13998
+ AegisName: Giant_Fly_Wing_Box500
+ Name: Giant Fly Wing 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,500;
+ - Id: 13999
+ AegisName: Pill__Box100
+ Name: Pill 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14523,100;
+ - Id: 14000
+ AegisName: Pill__Box500
+ Name: Pill 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14523,500;
+ - Id: 14001
+ AegisName: Basic_Siege_Supply_Box
+ Name: Recruit Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11503,25;
+ getitem 11504,10;
+ - Id: 14002
+ AegisName: Adv_Siege_Supply_Box
+ Name: Veteran Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11503,50;
+ getitem 11504,20;
+ - Id: 14003
+ AegisName: Elite_Siege_Supply_Box
+ Name: Elite Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11503,100;
+ getitem 11504,50;
+ - Id: 14004
+ AegisName: Poison_Bottle_10_Box
+ Name: Poison Bottle 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,10;
+ - Id: 14005
+ AegisName: Poison_Bottle_5_Box
+ Name: Poison Bottle 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,5;
+ - Id: 14006
+ AegisName: F_Drooping_W_Kitty_Box
+ Name: Evolved Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5372,1;
+ - Id: 14007
+ AegisName: F_Rabbit_Ear_Hat_Box
+ Name: Evolved Rabbits Headband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5378,1;
+ - Id: 14008
+ AegisName: F_L_Orc_Hero_Helm_Box
+ Name: Evolved Helmet Of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5375,1;
+ - Id: 14009
+ AegisName: F_Love_Angel_Box
+ Name: Love Angel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12287,604800;
+ - Id: 14010
+ AegisName: F_Squirrel_Box
+ Name: Squillroll Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12288,604800;
+ - Id: 14011
+ AegisName: F_Gogo_Box
+ Name: Gogo Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12289,604800;
+ - Id: 14012
+ AegisName: F_Love_Angel_Box_1m
+ Name: Love Angel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13915,2592000;
+ - Id: 14013
+ AegisName: F_Squirrel_Box_1m
+ Name: Squillroll Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13916,2592000;
+ - Id: 14014
+ AegisName: F_Gogo_Box_1m
+ Name: Gogo Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13917,2592000;
+ - Id: 14015
+ AegisName: F_Wasteland_Outlaw_Box
+ Name: Western Outlaw Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13107,604800;
+ - Id: 14016
+ AegisName: F_Lever_Action_Rifle_Box
+ Name: Lever Action Rifle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13170,604800;
+ - Id: 14017
+ AegisName: F_All_In_One_Ring_Box
+ Name: All In One Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2741,604800;
+ - Id: 14018
+ AegisName: F_Spritual_Tunic_Box
+ Name: Spiritual Tunic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2384,604800;
+ - Id: 14019
+ AegisName: F_Recuperative_Box
+ Name: Recuvative Armor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2385,604800;
+ - Id: 14020
+ AegisName: F_Shelter_Resist_Box
+ Name: Shell Of Resistance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2132,604800;
+ - Id: 14021
+ AegisName: F_Sylphid_Manteau_Box
+ Name: Silf Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2543,604800;
+ - Id: 14022
+ AegisName: F_Refresh_Shoes_Box
+ Name: Refresh Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2439,604800;
+ - Id: 14023
+ AegisName: F_Toast_Box
+ Name: Crunch Toast Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5391,604800;
+ - Id: 14024
+ AegisName: F_Robo_Eye_Box
+ Name: Robo Eye Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5325,1;
+ - Id: 14025
+ AegisName: F_Twin_Ribbon_Box
+ Name: Maiden's Twin Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5187,1;
+ - Id: 14027
+ AegisName: F_Fish_Head_Hat_Box
+ Name: Fish Head Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5380,1;
+ - Id: 14028
+ AegisName: F_Santa_Poring_Hat_Box
+ Name: SantaPoring Cap Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5381,1;
+ - Id: 14029
+ AegisName: F_Bell_Ribbon_Box
+ Name: Bell Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5382,1;
+ - Id: 14030
+ AegisName: F_Mimic_Scroll_Box5
+ Name: Mimic Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,5;
+ - Id: 14031
+ AegisName: F_Disguise_Scroll_Box5
+ Name: Disguise Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,5;
+ - Id: 14032
+ AegisName: F_Alice_Scroll_Box5
+ Name: Alice Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,5;
+ - Id: 14033
+ AegisName: F_Mimic_Scroll_Box10
+ Name: Mimic Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,10;
+ - Id: 14034
+ AegisName: F_Disguise_Scroll_Box10
+ Name: Disguise Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,10;
+ - Id: 14035
+ AegisName: F_Alice_Scroll_Box10
+ Name: Alice Summoning 10 Box)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,10;
+ - Id: 14036
+ AegisName: F_New_Style_Coupon_Box
+ Name: New Style Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7622,1;
+ - Id: 14037
+ AegisName: F_Repair_Scroll_Box
+ Name: Repair Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,5;
+ - Id: 14042
+ AegisName: F_WOB_Rune_Box10
+ Name: Yellow Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,10;
+ - Id: 14043
+ AegisName: F_WOB_Schwaltz_Box5
+ Name: Green Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,5;
+ - Id: 14044
+ AegisName: F_WOB_Schwaltz_Box10
+ Name: Green Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,10;
+ - Id: 14045
+ AegisName: F_WOB_Rachel_Box5
+ Name: Red Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,5;
+ - Id: 14046
+ AegisName: F_WOB_Rachel_Box10
+ Name: Red Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,10;
+ - Id: 14047
+ AegisName: F_WOB_Local_Box5
+ Name: Blue Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,5;
+ - Id: 14048
+ AegisName: F_WOB_Local_Box10
+ Name: Blue Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,10;
+ - Id: 14049
+ AegisName: F_Spark_Candy_Box5
+ Name: Candy 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,5;
+ - Id: 14050
+ AegisName: F_Spark_Candy_Box10
+ Name: Candy 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,10;
+ - Id: 14051
+ AegisName: F_Dun_Tel_Scroll2_Box5
+ Name: Dungeon Teleport Scroll II 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,5;
+ - Id: 14052
+ AegisName: F_Dun_Tel_Scroll2_Box10
+ Name: Dungeon Teleport Scroll II 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,10;
+ - Id: 14053
+ AegisName: F_Little_Angel_Doll_Box
+ Name: Little Angel Doll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5324,1;
+ - Id: 14054
+ AegisName: F_Triple_Poring_Hat_Box
+ Name: Poring 3 Hats Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5255,1;
+ - Id: 14055
+ AegisName: F_Nagan_Box
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13407,604800;
+ - Id: 14056
+ AegisName: F_Skewer_Box
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1424,604800;
+ - Id: 14057
+ AegisName: F_Survival_Rod_Box
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1628,604800;
+ - Id: 14058
+ AegisName: F_Quadrille_Box
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1537,604800;
+ - Id: 14059
+ AegisName: F_Great_Axe_Box
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1378,604800;
+ - Id: 14060
+ AegisName: F_Bloody_Roar_Box
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1273,604800;
+ - Id: 14061
+ AegisName: F_Hardback_Box
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1567,604800;
+ - Id: 14062
+ AegisName: F_Fire_Brand_Box
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13408,604800;
+ - Id: 14063
+ AegisName: F_Immaterial_Sword_Box
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13409,604800;
+ - Id: 14064
+ AegisName: F_Unholy_Touch_Box
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1274,604800;
+ - Id: 14065
+ AegisName: F_Clack_Of_Servival_Box
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2535,1209600;
+ - Id: 14066
+ AegisName: F_Masquerade_Box
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5326,1209600;
+ - Id: 14067
+ AegisName: F_Orc_Hero_Helm_Box
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5327,1209600;
+ - Id: 14068
+ AegisName: F_Ear_Of_Devil_Wing_Box
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5328,1209600;
+ - Id: 14069
+ AegisName: F_Dark_Blindfold_Box
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5329,1209600;
+ - Id: 14070
+ AegisName: F_K_Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5330,1209600;
+ - Id: 14071
+ AegisName: F_Corsair_Box
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5331,1209600;
+ - Id: 14072
+ AegisName: F_Bloody_Iron_Ball_Box
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2710,604800;
+ - Id: 14073
+ AegisName: F_Spiritual_Ring_Box
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2711,604800;
+ - Id: 14074
+ AegisName: F_G_O_I_Box5
+ Name: Wine Glass of Illusion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,5;
+ - Id: 14075
+ AegisName: F_G_O_I_Box10
+ Name: Glass Of Illusion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,10;
+ - Id: 14076
+ AegisName: F_Shadow_Armor_S_Box5
+ Name: Scroll of Shadow Armor 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,5;
+ - Id: 14077
+ AegisName: F_Shadow_Armor_S_Box10
+ Name: Scroll of Shadow Armor 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,10;
+ - Id: 14078
+ AegisName: F_Shadow_Armor_S_Box30
+ Name: Scroll of Shadow Armor 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,30;
+ - Id: 14079
+ AegisName: F_Holy_Armor_S_Box5
+ Name: Scroll of Holy Armor 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,5;
+ - Id: 14080
+ AegisName: F_Holy_Armor_S_Box10
+ Name: Scroll of Holy Armor 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,10;
+ - Id: 14081
+ AegisName: F_Holy_Armor_S_Box30
+ Name: Scroll of Holy Armor 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,30;
+ - Id: 14082
+ AegisName: FS_Def_Potion_Box10
+ Name: Small Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,10;
+ - Id: 14083
+ AegisName: FS_Def_Potion_Box30
+ Name: Small Physical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,30;
+ - Id: 14084
+ AegisName: FS_Def_Potion_Box50
+ Name: Small Physical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,50;
+ - Id: 14085
+ AegisName: FB_Def_Potion_Box10
+ Name: Big Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,10;
+ - Id: 14086
+ AegisName: FB_Def_Potion_Box30
+ Name: Large Physical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,30;
+ - Id: 14087
+ AegisName: FB_Def_Potion_Box50
+ Name: Large Physical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,50;
+ - Id: 14088
+ AegisName: FS_Mdef_Potion_Box10
+ Name: Small Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,10;
+ - Id: 14089
+ AegisName: FS_Mdef_Potion_Box30
+ Name: Small Magical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,30;
+ - Id: 14090
+ AegisName: FS_Mdef_Potion_Box50
+ Name: Small Magical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,50;
+ - Id: 14091
+ AegisName: FB_Mdef_Potion_Box10
+ Name: Big Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,10;
+ - Id: 14092
+ AegisName: FB_Mdef_Potion_Box30
+ Name: Large Magical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,30;
+ - Id: 14093
+ AegisName: FB_Mdef_Potion_Box50
+ Name: Large Magical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,50;
+ - Id: 14094
+ AegisName: F_Flying_Angel_Box
+ Name: Flying Angel Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5210,1;
+ - Id: 14095
+ AegisName: F_Cat_Hat_Box
+ Name: Neko Mimi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 14096
+ AegisName: F_M_F_H_Box
+ Name: Moonlight Flower Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5214,1;
+ - Id: 14097
+ AegisName: F_Chick_Hat_Box
+ Name: Baby Chick Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5283,1;
+ - Id: 14098
+ AegisName: F_Pecopeco_Hairband_Box
+ Name: Peco Peco Hairband Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5286,1209600;
+ - Id: 14099
+ AegisName: F_Red_Glasses_Box
+ Name: Red Glasses Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5288,1209600;
+ - Id: 14100
+ AegisName: F_Whisper_Mask_Box
+ Name: Whisper Mask Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5294,1209600;
+ - Id: 14101
+ AegisName: F_Ramen_Hat_Box
+ Name: Ramen Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5293,1209600;
+ - Id: 14102
+ AegisName: F_Dun_Tele_Scroll1_Box
+ Name: Dungeon Teleport Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,5;
+ - Id: 14103
+ AegisName: F_Max_Weight_Up_Box
+ Name: Gym Membership Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7776,1;
+ - Id: 14104
+ AegisName: F_S_Life_Potion_Box
+ Name: Small Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,10;
+ - Id: 14105
+ AegisName: F_S_Life_Potion_Box30
+ Name: Small Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,30;
+ - Id: 14106
+ AegisName: F_S_Life_Potion_Box50
+ Name: Small Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,50;
+ - Id: 14107
+ AegisName: F_M_Life_Potion_Box
+ Name: Medium Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,10;
+ - Id: 14108
+ AegisName: F_M_Life_Potion_Box30
+ Name: Large Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,30;
+ - Id: 14109
+ AegisName: F_M_Life_Potion_Box50
+ Name: Large Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,50;
+ - Id: 14110
+ AegisName: F_Abrasive_Box5
+ Name: Abrasive 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,5;
+ - Id: 14111
+ AegisName: F_Abrasive_Box10
+ Name: Abrasive 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,10;
+ - Id: 14112
+ AegisName: F_Regeneration_Box5
+ Name: Regeneration Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,5;
+ - Id: 14113
+ AegisName: F_Regeneration_Box10
+ Name: Regeneration Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,10;
+ - Id: 14114
+ AegisName: F_Dun_Tele_Scroll_Box10
+ Name: Dungeon Teleport Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,10;
+ - Id: 14115
+ AegisName: F_Infiltrator_Box
+ Name: Refined Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1267,604800;
+ - Id: 14116
+ AegisName: F_Muramasa_Box
+ Name: Refined Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1173,604800;
+ - Id: 14117
+ AegisName: F_Excalibur_Box
+ Name: Refined Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13401,604800;
+ - Id: 14118
+ AegisName: F_Combat_Knife_Box
+ Name: Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13021,604800;
+ - Id: 14119
+ AegisName: F_Counter_Dagger_Box
+ Name: Counter Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13022,604800;
+ - Id: 14120
+ AegisName: F_Kaiser_Knuckle_Box
+ Name: Refined Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1817,604800;
+ - Id: 14121
+ AegisName: F_Mighty_Staff_Box
+ Name: Refined Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1623,604800;
+ - Id: 14122
+ AegisName: F_Right_Epsilon_Box
+ Name: Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1372,604800;
+ - Id: 14123
+ AegisName: F_Balistar_Box
+ Name: Refined Ballista Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1728,604800;
+ - Id: 14124
+ AegisName: F_Diary_Of_Great_Sage
+ Name: Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1563,604800;
+ - Id: 14125
+ AegisName: F_Asura_Box
+ Name: Asura Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13023,604800;
+ - Id: 14126
+ AegisName: F_Apple_Of_Archer_Box
+ Name: Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5265,1209600;
+ - Id: 14127
+ AegisName: F_Bunny_Band_Box
+ Name: Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5266,1209600;
+ - Id: 14128
+ AegisName: F_Sahkkat_Box
+ Name: Refined Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5267,1209600;
+ - Id: 14129
+ AegisName: F_Lord_Circlet_Box
+ Name: Refined Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5268,1209600;
+ - Id: 14130
+ AegisName: F_Elven_Ears_Box
+ Name: Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2686,1209600;
+ - Id: 14131
+ AegisName: F_Steel_Flower_Box
+ Name: Steel Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2687,1209600;
+ - Id: 14132
+ AegisName: F_Critical_Ring_Box
+ Name: Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2688,604800;
+ - Id: 14133
+ AegisName: F_Earring_Box
+ Name: Earring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2689,604800;
+ - Id: 14134
+ AegisName: F_Ring_Box
+ Name: Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2690,604800;
+ - Id: 14135
+ AegisName: F_Necklace_Box
+ Name: Necklace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2691,604800;
+ - Id: 14136
+ AegisName: F_Glove_Box
+ Name: Glove Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2692,604800;
+ - Id: 14137
+ AegisName: F_Brooch_Box
+ Name: Brooch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2693,604800;
+ - Id: 14138
+ AegisName: F_Rosary_Box
+ Name: Rosary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2694,604800;
+ - Id: 14139
+ AegisName: F_Safety_Ring_Box
+ Name: Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2695,604800;
+ - Id: 14140
+ AegisName: F_Vesper_Core_Box01
+ Name: Refined Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2696,604800;
+ - Id: 14141
+ AegisName: F_Vesper_Core_Box02
+ Name: Refined Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2697,604800;
+ - Id: 14142
+ AegisName: F_Vesper_Core_Box03
+ Name: Refined Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2698,604800;
+ - Id: 14143
+ AegisName: F_Vesper_Core_Box04
+ Name: Refined Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2699,604800;
+ - Id: 14144
+ AegisName: F_Vigorgra_Package1
+ Name: Vigorgra Box1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14145
+ AegisName: F_Vigorgra_Package2
+ Name: Vigorgra Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14146
+ AegisName: F_Vigorgra_Package3
+ Name: Vigorgra Box3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14147
+ AegisName: F_Vigorgra_Package4
+ Name: Vigorgra Box4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14148
+ AegisName: F_Vigorgra_Package5
+ Name: Vigorgra Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14149
+ AegisName: F_Vigorgra_Package6
+ Name: Vigorgra Box6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14150
+ AegisName: F_Vigorgra_Package7
+ Name: Vigorgra Box7
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14151
+ AegisName: F_Vigorgra_Package8
+ Name: Vigorgra Box8
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14152
+ AegisName: F_Vigorgra_Package9
+ Name: Start your Journey Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14153
+ AegisName: F_Vigorgra_Package10
+ Name: Siege Mode Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14154
+ AegisName: F_Vigorgra_Package11
+ Name: 1 Hour Survival Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14155
+ AegisName: F_Vigorgra_Package12
+ Name: Weekend Hunting Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14156
+ AegisName: F_Battle_Manual_Box
+ Name: Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,10;
+ - Id: 14157
+ AegisName: F_Insurance_Package
+ Name: Insurance Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,10;
+ - Id: 14158
+ AegisName: F_Bubble_Gum_Box
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,10;
+ - Id: 14159
+ AegisName: F_Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,10;
+ - Id: 14160
+ AegisName: F_Agi_Dish_Box
+ Name: Steamed Scorpion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,10;
+ - Id: 14161
+ AegisName: F_Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,10;
+ - Id: 14162
+ AegisName: F_Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,10;
+ - Id: 14163
+ AegisName: F_Luk_Dish_Box
+ Name: Nine Tail Dish Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,10;
+ - Id: 14164
+ AegisName: F_Vit_Dish_Box
+ Name: Stew Of Immortality Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,10;
+ - Id: 14165
+ AegisName: F_Kafra_Card_Box
+ Name: Kafra Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,10;
+ - Id: 14166
+ AegisName: F_Giant_Fly_Wing_Box
+ Name: Giant Fly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,10;
+ - Id: 14167
+ AegisName: F_Neuralizer_Box
+ Name: Neuralizer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12213,1;
+ - Id: 14168
+ AegisName: F_Convex_Mirror_Box
+ Name: Convex Mirror Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,10;
+ - Id: 14169
+ AegisName: F_Blessing_10_Scroll_Box
+ Name: Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,10;
+ - Id: 14170
+ AegisName: F_Inc_Agi_10_Scroll_Box
+ Name: Increase AGI 10 scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,10;
+ - Id: 14171
+ AegisName: F_Aspersio_5_Scroll_Box
+ Name: Aspersio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,10;
+ getitem 523,10;
+ - Id: 14172
+ AegisName: F_Assumptio_5_Scroll_Box
+ Name: Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,10;
+ - Id: 14173
+ AegisName: F_Wind_Walk_10_Scroll_Box
+ Name: Wind Walk 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,10;
+ - Id: 14174
+ AegisName: F_Adrenaline_Scroll_Box
+ Name: Adrenaline 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,10;
+ - Id: 14175
+ AegisName: F_Megaphone_Box
+ Name: Megaphone 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,10;
+ - Id: 14176
+ AegisName: F_Enriched_Elunium_Box
+ Name: Enriched Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,10;
+ - Id: 14177
+ AegisName: F_Enriched_Oridecon_Box
+ Name: Enriched Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,10;
+ - Id: 14178
+ AegisName: F_Token_Of_Siegfried_Box
+ Name: Token of Siegfried Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,10;
+ - Id: 14179
+ AegisName: F_Giant_Fly_Wing_Box50
+ Name: Giant Fly Wing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,50;
+ - Id: 14180
+ AegisName: F_Giant_Fly_Wing_Box100
+ Name: Giant Fly Wing 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,100;
+ - Id: 14181
+ AegisName: F_Dex_Dish_Box30
+ Name: Hwergelmir's Tonic 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,30;
+ - Id: 14182
+ AegisName: F_Dex_Dish_Box50
+ Name: Hwergelmir's Tonic 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,50;
+ - Id: 14183
+ AegisName: F_Luk_Dish_Box30
+ Name: Nine Tail Dish 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,30;
+ - Id: 14184
+ AegisName: F_Luk_Dish_Box50
+ Name: Nine Tail Dish 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,50;
+ - Id: 14185
+ AegisName: F_Inc_Agi_10_Box30
+ Name: Increase Agility Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,30;
+ - Id: 14186
+ AegisName: F_Inc_Agi_10_Box50
+ Name: Increase Agility Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,50;
+ - Id: 14187
+ AegisName: F_Vit_Dish_Box30
+ Name: Stew of Immortality 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,30;
+ - Id: 14188
+ AegisName: F_Vit_Dish_Box50
+ Name: Stew of Immortality 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,50;
+ - Id: 14189
+ AegisName: F_Insurance_Package30
+ Name: Life Insurrance 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,30;
+ - Id: 14190
+ AegisName: F_Insurance_Package50
+ Name: Life Insurrance 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,50;
+ - Id: 14191
+ AegisName: F_Convex_Mirror_Box5
+ Name: Convex Mirror 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,5;
+ - Id: 14192
+ AegisName: F_Convex_Mirror_Box30
+ Name: Convex Mirror 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,30;
+ - Id: 14193
+ AegisName: F_Blessing10_Box30
+ Name: Blessing Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,30;
+ - Id: 14194
+ AegisName: F_Blessing10_Box50
+ Name: Lv10 Blessing Scroll Box 50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,50;
+ - Id: 14195
+ AegisName: F_Adrenaline10_Box30
+ Name: Adrenaline Rush Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,30;
+ - Id: 14196
+ AegisName: F_Adrenaline10_Box50
+ Name: Adrenaline Rush Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,50;
+ - Id: 14197
+ AegisName: F_Assumptio_5_Box30
+ Name: Assumptio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,30;
+ - Id: 14198
+ AegisName: F_Assumptio_5_Box50
+ Name: Lv5 Assumptio Scroll Box 50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,50;
+ - Id: 14199
+ AegisName: F_Aspersio_5_Box30
+ Name: Aspersio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,30;
+ getitem 523,30;
+ - Id: 14200
+ AegisName: F_Aspersio_5_Box50
+ Name: Aspersio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,50;
+ getitem 523,50;
+ - Id: 14201
+ AegisName: F_Agi_Dish_Box30
+ Name: Steamed Scorpion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,30;
+ - Id: 14202
+ AegisName: F_Agi_Dish_Box50
+ Name: Steamed Scorpion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,50;
+ - Id: 14203
+ AegisName: F_Wind_Walk10_Box30
+ Name: Wind Walk Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,30;
+ - Id: 14204
+ AegisName: F_Wind_Walk10_Box50
+ Name: Wind Walk Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,50;
+ - Id: 14205
+ AegisName: F_Int_Dish_Box30
+ Name: Dragon Breath Cocktail 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,30;
+ - Id: 14206
+ AegisName: F_Int_Dish_Box50
+ Name: Dragon Breath Cocktail 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,50;
+ - Id: 14207
+ AegisName: F_Battle_Manual_Box1
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,1;
+ - Id: 14208
+ AegisName: F_Battle_Manual_Box5
+ Name: Battle Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,5;
+ - Id: 14209
+ AegisName: F_Siegfried_Box5
+ Name: Token of Siegfried 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,5;
+ - Id: 14210
+ AegisName: F_Siegfried_Box20
+ Name: Token of Siegfried 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,20;
+ - Id: 14211
+ AegisName: F_Kafra_Card_Box30
+ Name: Kafra Card 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,30;
+ - Id: 14212
+ AegisName: F_Kafra_Card_Box50
+ Name: Kafra Card 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,50;
+ - Id: 14213
+ AegisName: F_Str_Dish_Box30
+ Name: Steamed Tongue 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,30;
+ - Id: 14214
+ AegisName: F_Str_Dish_Box50
+ Name: Steamed Tongue 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,50;
+ - Id: 14215
+ AegisName: F_Bubble_Gum_Box1
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,1;
+ - Id: 14216
+ AegisName: F_Bubble_Gum_Box5
+ Name: Bubble Gum 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,5;
+ - Id: 14217
+ AegisName: F_Megaphone_Box1
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,1;
+ - Id: 14218
+ AegisName: F_Megaphone_Box5
+ Name: Megaphone 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,5;
+ - Id: 14219
+ AegisName: F_Enriched_Elunium_Box5
+ Name: Enriched Elunium 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ - Id: 14220
+ AegisName: F_Enriched_Oridecon_Box5
+ Name: Enriched Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,5;
+ - Id: 14221
+ AegisName: MP_Scroll_Box
+ Name: Mystical Amplification Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,10;
+ - Id: 14222
+ AegisName: MP_Scroll_Box30
+ Name: Mystical Amplification Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,30;
+ - Id: 14223
+ AegisName: MP_Scroll_Box50
+ Name: Mystical Amplification Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,50;
+ - Id: 14224
+ AegisName: Quagmire_Scroll_Box
+ Name: Quagmire Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,10;
+ - Id: 14225
+ AegisName: Quagmire_Scroll_Box30
+ Name: Quagmire Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,30;
+ - Id: 14226
+ AegisName: Quagmire_Scroll_Box50
+ Name: Quagmire Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,50;
+ - Id: 14227
+ AegisName: Healing_Staff_Box
+ Name: Healing Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1638,604800;
+ - Id: 14232
+ AegisName: Yggdrasilberry_Box_
+ Name: Yggdrasil Berry 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 607,10;
+ - Id: 14233
+ AegisName: Dead_Tree_Branch_Box1
+ Name: Dead Branch 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 604,10;
+ - Id: 14234
+ AegisName: Dead_Tree_Branch_Box2
+ Name: Dead Branch 25 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 604,25;
+ - Id: 14235
+ AegisName: Field_Manual_Box_2
+ Name: Field Manual 2 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12208,2;
+ - Id: 14236
+ AegisName: Steamed_Tongue_Box_20
+ Name: Steamed Tongue 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12202,20;
+ - Id: 14237
+ AegisName: Steamed_Desert_Scorpions_Box_20
+ Name: Steamed Desert Scorpions Box(20)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12203,20;
+ - Id: 14238
+ AegisName: Stew_Of_Immortality_Box_20
+ Name: Immortal Stew 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12207,20;
+ - Id: 14239
+ AegisName: Dragon_Breath_Cocktail_Box_20
+ Name: Dragon Breath Cocktail 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12204,20;
+ - Id: 14240
+ AegisName: Hwergelmir's_Tonic_Box_20
+ Name: Hwergelmir's Tonic 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12205,20;
+ - Id: 14241
+ AegisName: Nine_Tail_Dish_Box_20
+ Name: Nine Tail Dish 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12206,20;
+ - Id: 14242
+ AegisName: Beholder_Ring_Box
+ Name: Beholder Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2753,1;
+ - Id: 14243
+ AegisName: Hallow_Ring_Box
+ Name: Hallow Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2754,1;
+ - Id: 14244
+ AegisName: Clamorous_Ring_Box
+ Name: Clamorous Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2755,1;
+ - Id: 14245
+ AegisName: Chemical_Ring_Box
+ Name: Chemical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2756,1;
+ - Id: 14246
+ AegisName: Insecticide_Ring_Box
+ Name: Insecticide Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2757,1;
+ - Id: 14247
+ AegisName: Fisher_Ring_Box
+ Name: Fisher Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2758,1;
+ - Id: 14248
+ AegisName: Decussate_Ring_Box
+ Name: Decussate Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2759,1;
+ - Id: 14249
+ AegisName: Bloody_Ring_Box
+ Name: Bloody Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2760,1;
+ - Id: 14250
+ AegisName: Satanic_Ring_Box
+ Name: Satanic Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2761,1;
+ - Id: 14251
+ AegisName: Dragoon_Ring_Box
+ Name: Dragon Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2762,1;
+ - Id: 14252
+ AegisName: Beholder_Ring_Box2
+ Name: Beholder Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2753,1;
+ - Id: 14253
+ AegisName: Hallow_Ring_Box2
+ Name: Hallow Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2754,1;
+ - Id: 14254
+ AegisName: Clamorous_Ring_Box2
+ Name: Clamorous Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2755,1;
+ - Id: 14255
+ AegisName: Chemical_Ring_Box2
+ Name: Chemical Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2756,1;
+ - Id: 14256
+ AegisName: Insecticide_Ring_Box2
+ Name: Insecticide Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2757,1;
+ - Id: 14257
+ AegisName: Fisher_Ring_Box2
+ Name: Fisher Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2758,1;
+ - Id: 14258
+ AegisName: Decussate_Ring_Box2
+ Name: Decussate Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2759,1;
+ - Id: 14259
+ AegisName: Bloody_Ring_Box2
+ Name: Bloody Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2760,1;
+ - Id: 14260
+ AegisName: Satanic_Ring_Box2
+ Name: Satanic Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2761,1;
+ - Id: 14261
+ AegisName: Dragoon_Ring_Box2
+ Name: Dragon Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 2762,1;
+ - Id: 14262
+ AegisName: Diary_Magic_Powder_Box
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12304,604800;
+ - Id: 14263
+ AegisName: Mini_Heart_Magic_Powder_Box
+ Name: Mini Heart Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12305,604800;
+ - Id: 14264
+ AegisName: Freshman_Magic_Powder_Box
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12306,604800;
+ - Id: 14265
+ AegisName: Kid_Magic_Powder_Box
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12307,604800;
+ - Id: 14266
+ AegisName: Magic_Magic_Powder_Box
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12308,604800;
+ - Id: 14267
+ AegisName: JJangu_Magic_Powder_Box
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Script: |
+ rentitem 12309,604800;
+ - Id: 14268
+ AegisName: Diary_Magic_Powder_Box4
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14269
+ AegisName: Mini_Heart_Magic_Powder_Box4
+ Name: Mini_Heart_Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14270
+ AegisName: Freshman_Magic_Powder_Box4
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14271
+ AegisName: Kid_Magic_Powder_Box4
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14272
+ AegisName: Magic_Magic_Powder_Box4
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14273
+ AegisName: JJangu_Magic_Powder_Box4
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ - Id: 14274
+ AegisName: Amplification_10_Scroll_Box2
+ Name: Mystical Amplification Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14593,10;
+ - Id: 14275
+ AegisName: Amplification_30_Scroll_Box2
+ Name: Mystical Amplification Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14593,30;
+ - Id: 14276
+ AegisName: Amplification_50_Scroll_Box2
+ Name: Mystical Amplification Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14593,50;
+ - Id: 14277
+ AegisName: Quagmire_10_Scroll_Box2
+ Name: Quagmire Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14594,10;
+ - Id: 14278
+ AegisName: Quagmire_30_Scroll_Box2
+ Name: Quagmire Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14594,30;
+ - Id: 14279
+ AegisName: Quagmire_50_Scroll_Box2
+ Name: Quagmire Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14594,50;
+ - Id: 14280
+ AegisName: Healing_Staff_Box2
+ Name: Healing Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 1638,1;
+ - Id: 14282
+ AegisName: Emperium_Box
+ Name: Emperium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 714,1;
+ - Id: 14283
+ AegisName: Marriage_Certificate_Box
+ Name: Written Oath Of Marriage Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 6026,1;
+ - Id: 14287
+ AegisName: Baricade_Repair_Kit
+ Name: Barricade Repair Kit
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 1019,30;
+ getitem 999,10;
+ getitem 1011,10;
+ getitem 984,5;
+ - Id: 14288
+ AegisName: Guardian_Stone_Repair_Kit
+ Name: Guardian Stone Repair Kit
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6046,1;
+ - Id: 14290
+ AegisName: Cloth_Dye_Coupon2_Box
+ Name: Original Clothing Dye Coupon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6047,1;
+ - Id: 14291
+ AegisName: Cloth_Dye_Coupon3_Box
+ Name: Clothing Dye Coupon Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 6046,1;
+ - Id: 14292
+ AegisName: Cloth_Dye_Coupon4_Box
+ Name: Clothing Dye Coupon Box II
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 6047,1;
+ - Id: 14296
+ AegisName: Angel_Scroll
+ Name: Angel Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14297
+ AegisName: Devil_Scroll
+ Name: Devil Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14300
+ AegisName: Mask_Of_Ifrit_Box
+ Name: Mask Of Ifrit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 5420,1;
+ - Id: 14301
+ AegisName: Ifrit's_Ear_Box
+ Name: Ears Of Ifrit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 5421,1;
+ - Id: 14304
+ AegisName: Scuba_Mask_Box
+ Name: Scuba Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 5397,1;
+ - Id: 14314
+ AegisName: Phreeoni_Scroll_Box
+ Name: Phreeoni Scroll Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14597,10;
+ - Id: 14315
+ AegisName: GhostringS_Box
+ Name: Ghostring Scroll Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14598,10;
+ - Id: 14316
+ AegisName: July7_Scroll
+ Name: July7 Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14317
+ AegisName: Bacsojin_Scroll
+ Name: Bacsojin Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14343
+ AegisName: Spiked_Scarf_Box
+ Name: Spiked Scarf Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5462,1;
+ - Id: 14344
+ AegisName: Rainbow_Scarf_Box
+ Name: Rainbow Scarf Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5463,1;
+ - Id: 14345
+ AegisName: Animal_Scroll
+ Name: Animal Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14349
+ AegisName: Mental_Potion20_Box
+ Name: Mental Potion 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14600,20;
+ - Id: 14350
+ AegisName: Mental_Potion50_Box
+ Name: Mental Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14600,50;
+ - Id: 14351
+ AegisName: Tyr's_Blessing20_Box
+ Name: Tyr's Blessing 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14601,20;
+ - Id: 14352
+ AegisName: Tyr's_Blessing50_Box
+ Name: Tyr's Blessing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 14601,50;
+ - Id: 14363
+ AegisName: Heart_Scroll
+ Name: Heart Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14375
+ AegisName: Holy_Celestial_Axe_Box
+ Name: Celestial Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1383,1;
+ - Id: 14376
+ AegisName: Angeling_Pot_Box
+ Name: Angeling Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12350,1;
+ - Id: 14377
+ AegisName: Shout_Megaphone_Box
+ Name: Scream Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12351,1;
+ - Id: 14380
+ AegisName: Anubis_Helm_Box
+ Name: Anubis Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5490,1;
+ - Id: 14393
+ AegisName: Almighty_Charm_Box
+ Name: Universal Amulet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 7945,1;
+ - Id: 14408
+ AegisName: New_Year_Scroll
+ Name: New Year Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14440
+ AegisName: Dice_Hat_Box
+ Name: Dice Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5496,1;
+ - Id: 14441
+ AegisName: King_Tiger_Doll_Hat_Box
+ Name: King Tiger Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5497,1;
+ - Id: 14447
+ AegisName: Pirate's_Pride_Box
+ Name: Pirate's Pride Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5501,1;
+ - Id: 14448
+ AegisName: Necromencer's_Hood_Box
+ Name: Necromancer's Hood Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5502,1;
+ - Id: 14459
+ AegisName: Rabbit_Magic_Hat_Box
+ Name: Magic Rabbit Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5503,1;
+ - Id: 14460
+ AegisName: China_Wedding_Veil_Box
+ Name: RO 5th Wedding Anniversary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5504,1;
+ - Id: 14461
+ AegisName: Asara_Fairy_Hat_Box
+ Name: Ashura Fairy Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5505,1;
+ - Id: 14466
+ AegisName: Valentine_Pledge_Box
+ Name: Valentine's Emblem Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14469
+ AegisName: Ox_Tail_Scroll
+ Name: Ox Tail Egg
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14500
+ AegisName: Insurance60
+ Name: Life Insurrance Certificate
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LIFEINSURANCE,3600000,0;
+ - Id: 14508
+ AegisName: Zeny_Scroll
+ Name: Zeny Pet Egg Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14509
+ AegisName: Light_Center_Pot
+ Name: Light Concentration Potion
+ Type: Usable
+ Buy: 800
+ Weight: 20
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,0;
+ - Id: 14510
+ AegisName: Light_Awakening_Pot
+ Name: Light Awakening Potion
+ Type: Usable
+ Buy: 1500
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ SuperNovice: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Wizard: true
+ EquipLevelMin: 40
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,0;
+ - Id: 14511
+ AegisName: Light_Berserk_Pot
+ Name: Light Berserk Potion
+ Type: Usable
+ Buy: 3000
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ SoulLinker: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Wizard: true
+ EquipLevelMin: 85
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,0;
+ - Id: 14512
+ AegisName: Meteor_10_Scroll
+ Name: Meteor Storm Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ itemskill "WZ_METEOR",10;
+ - Id: 14513
+ AegisName: Storm_10_Scroll
+ Name: Storm Gust Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ itemskill "WZ_STORMGUST",10;
+ - Id: 14514
+ AegisName: Vermilion_10_Scroll
+ Name: Lord of Vermilion Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ itemskill "WZ_VERMILION",10;
+ - Id: 14515
+ AegisName: Lex_Aeterna_Scroll
+ Name: Lex Aeterna Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ itemskill "PR_LEXAETERNA",1;
+ - Id: 14516
+ AegisName: Magnificat_5_Scroll
+ Name: Magnificat Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ itemskill "PR_MAGNIFICAT",5;
+ - Id: 14517
+ AegisName: CP_Helm_Scroll
+ Name: Chemical Protection Helm Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_HELM",5;
+ - Id: 14518
+ AegisName: CP_Shield_Scroll
+ Name: Chemical Protection Shield Scrol
+ Type: Usable
+ Weight: 10
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_SHIELD",5;
+ - Id: 14519
+ AegisName: CP_Armor_Scroll
+ Name: Chemical Protection Armor Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_ARMOR",5;
+ - Id: 14520
+ AegisName: CP_Weapon_Scroll
+ Name: Chemical Protection Weapon Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_WEAPON",5;
+ - Id: 14521
+ AegisName: Repair_Scroll
+ Name: Repair Weapon Scroll
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;
+ - Id: 14522
+ AegisName: Big_Bun
+ Name: Big Bun
+ Type: Healing
+ Weight: 10
+ Script: |
+ percentheal 100,0;
+ - Id: 14523
+ AegisName: Pill_
+ Name: Pill
+ Type: Healing
+ Weight: 10
+ Script: |
+ percentheal 0,100;
+ - Id: 14524
+ AegisName: Superb_Fish_Slice
+ Name: Superb Fish Slice
+ Type: Healing
+ Weight: 10
+ Script: |
+ percentheal 100,100;
+ - Id: 14525
+ AegisName: Chewy_Ricecake
+ Name: Chewy Ricecake
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_ATKPOTION,1800000,10;
+ - Id: 14526
+ AegisName: Oriental_Pastry
+ Name: Oriental Pastry
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_MATKPOTION,1800000,10;
+ - Id: 14527
+ AegisName: Dun_Tele_Scroll1
+ Name: Dungeon Teleport Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashDungeon",1;
+ - Id: 14528
+ AegisName: PVP_Tele_Scroll
+ Name: PVP Teleport Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 14529
+ AegisName: Greed_Scroll
+ Name: Greed Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "BS_GREED",1;
+ - Id: 14530
+ AegisName: Flee_30_Scroll
+ Name: Evasion Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_FLEEFOOD,1800000,30;
+ - Id: 14531
+ AegisName: Accuracy_30_Scroll
+ Name: Concentration Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_HITFOOD,1800000,30;
+ - Id: 14532
+ AegisName: Battle_Manual25
+ Name: Field Manual 25%
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,25;
+ - Id: 14533
+ AegisName: Battle_Manual100
+ Name: Field Manual 100%
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,100;
+ - Id: 14534
+ AegisName: Small_Life_Potion
+ Name: Small Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;
+ - Id: 14535
+ AegisName: Med_Life_Potion
+ Name: Medium Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;
+ - Id: 14536
+ AegisName: Abrasive
+ Name: Abrasive
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ sc_start SC_INCCRI,300000,30;
+ - Id: 14537
+ AegisName: Regeneration_Potion
+ Name: Regeneration Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_LIGHTSPHERE;
+ sc_start SC_INCHEALRATE,1800000,20;
+ - Id: 14538
+ AegisName: Glass_Of_Illusion
+ Name: Glass of Illusion
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_A
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_STEAL;
+ sc_start SC_INCFLEE2,60000,20;
+ - Id: 14539
+ AegisName: Shadow_Armor_S
+ Name: Shadow Armor Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_CLOAKING;
+ sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;
+ - Id: 14540
+ AegisName: Holy_Armor_S
+ Name: Holy Armor Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_BENEDICTIO;
+ sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;
+ - Id: 14541
+ AegisName: S_Def_Potion
+ Name: Small Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_DEF_RATE,60000,3;
+ - Id: 14542
+ AegisName: B_Def_Potion
+ Name: Big Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_DEF_RATE,180000,3;
+ - Id: 14543
+ AegisName: S_Mdef_Potion
+ Name: Small Magic Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ sc_start SC_MDEF_RATE,60000,3;
+ - Id: 14544
+ AegisName: B_Mdef_Potion
+ Name: Big Magic Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ sc_start SC_MDEF_RATE,180000,3;
+ - Id: 14545
+ AegisName: Battle_Manual_X3
+ Name: Field Manual 300%
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_EXPBOOST,1800000,300;
+ - Id: 14546
+ AegisName: Fire_Cracker_Love
+ Name: I Love You Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 14547
+ AegisName: Fire_Cracker_Wday
+ Name: Whiteday Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 14548
+ AegisName: Fire_Cracker_Vday
+ Name: Valentine's Day Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 14549
+ AegisName: Fire_Cracker_Bday
+ Name: Birthday Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 14550
+ AegisName: Fire_Cracker_Xmas
+ Name: Xmas Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 14551
+ AegisName: Str_Dish01_
+ Name: Fried Grasshopper Legs
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_STRFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 14552
+ AegisName: Str_Dish02_
+ Name: Seasoned Sticky Webfoot
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_STRFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 14553
+ AegisName: Str_Dish03_
+ Name: Bomber Steak
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_STRFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 14554
+ AegisName: Int_Dish01_
+ Name: Grape Juice Herbal Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,1200000,1;
+ percentheal 0,5;
+ - Id: 14555
+ AegisName: Int_Dish02_
+ Name: Autumn Red Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,1200000,2;
+ percentheal 0,5;
+ - Id: 14556
+ AegisName: Int_Dish03_
+ Name: Honey Herbal Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,1200000,3;
+ percentheal 0,5;
+ - Id: 14557
+ AegisName: Vit_Dish01_
+ Name: Steamed Crab Nippers
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_VITFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 14558
+ AegisName: Vit_Dish02_
+ Name: Assorted Seafood
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_VITFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 14559
+ AegisName: Vit_Dish03_
+ Name: Clam Soup
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_VITFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 14560
+ AegisName: Agi_Dish01_
+ Name: Frog Egg Squid Ink Soup
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_AGIFOOD,1200000,1;
+ percentheal 3,1;
+ - Id: 14561
+ AegisName: Agi_Dish02_
+ Name: Smooth Noodle
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_AGIFOOD,1200000,2;
+ percentheal 3,1;
+ - Id: 14562
+ AegisName: Agi_Dish03_
+ Name: Tentacle Cheese Gratin
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_AGIFOOD,1200000,3;
+ percentheal 3,1;
+ - Id: 14563
+ AegisName: Dex_Dish01_
+ Name: Honey Grape Juice
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_DEXFOOD,1200000,1;
+ percentheal 2,2;
+ - Id: 14564
+ AegisName: Dex_Dish02_
+ Name: Chocolate Mousse Cake
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_DEXFOOD,1200000,2;
+ percentheal 2,2;
+ - Id: 14565
+ AegisName: Dex_Dish03_
+ Name: Fruit Mix
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_DEXFOOD,1200000,3;
+ percentheal 2,2;
+ - Id: 14566
+ AegisName: Luk_Dish01_
+ Name: Fried Monkey Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LUKFOOD,1200000,1;
+ percentheal 3,2;
+ - Id: 14567
+ AegisName: Luk_Dish02_
+ Name: Mixed Juice
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LUKFOOD,1200000,2;
+ percentheal 3,2;
+ - Id: 14568
+ AegisName: Luk_Dish03_
+ Name: Fried Sweet Potato
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LUKFOOD,1200000,3;
+ percentheal 4,2;
+ - Id: 14569
+ AegisName: Knife_Goblin_Ring
+ Name: Knife Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1122;
+ - Id: 14570
+ AegisName: Flail_Goblin_Ring
+ Name: Flail Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1123;
+ - Id: 14571
+ AegisName: Hammer_Goblin_Ring
+ Name: Hammer Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1125;
+ - Id: 14572
+ AegisName: Holy_Marble
+ Name: Holy Marble
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1385;
+ - Id: 14573
+ AegisName: Red_Burning_Stone
+ Name: Red Burning Stone
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1382;
+ - Id: 14574
+ AegisName: Skull_Of_Vagabond
+ Name: Vagabond's Skull
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1208;
+ - Id: 14575
+ AegisName: Str_Dish05_
+ Name: Lutie Lady's Pancake
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_STRFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 14576
+ AegisName: Int_Dish05_
+ Name: Mastela Fruit Wine
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,1200000,5;
+ percentheal 0,10;
+ - Id: 14577
+ AegisName: Vit_Dish05_
+ Name: Spicy Fried Bao
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_VITFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 14578
+ AegisName: Agi_Dish05_
+ Name: Steamed Bat Wing in Pumpkin
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_AGIFOOD,1200000,5;
+ percentheal 6,2;
+ - Id: 14579
+ AegisName: Dex_Dish05_
+ Name: Green Salad
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_DEXFOOD,1200000,5;
+ percentheal 5,5;
+ - Id: 14580
+ AegisName: Luk_Dish05_
+ Name: Fried Scorpion Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LUKFOOD,1200000,5;
+ percentheal 5,2;
+ - Id: 14581
+ AegisName: Dun_Tele_Scroll2
+ Name: Dungeon Teleport Scroll II
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashDungeon",2;
+ - Id: 14582
+ AegisName: WOB_Rune
+ Name: Yellow Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",1;
+ - Id: 14583
+ AegisName: WOB_Schwaltz
+ Name: Green Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",2;
+ - Id: 14584
+ AegisName: WOB_Rachel
+ Name: Red Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",3;
+ - Id: 14585
+ AegisName: WOB_Local
+ Name: Blue Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashCity",4;
+ - Id: 14586
+ AegisName: Spark_Candy
+ Name: Jumping Candy
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 180000
+ Status: Reuse_Limit_B
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14587
+ AegisName: Repair_Scroll_
+ Name: Equipment Repair Spell Book
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "BS_REPAIRWEAPON",1;
+ - Id: 14588
+ AegisName: Pty_Blessing_Scroll
+ Name: Party Blessing 10 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ itemskill "CASH_BLESSING",10;
+ - Id: 14589
+ AegisName: Pty_Inc_Agi_Scroll
+ Name: Party Increase Agi 10 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ itemskill "CASH_INCAGI",10;
+ - Id: 14590
+ AegisName: Pty_Assumptio_Scroll
+ Name: Party Assumptio 5 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ itemskill "CASH_ASSUMPTIO",5;
+ - Id: 14591
+ AegisName: Siege_Teleport_Scroll
+ Name: WoE Teleport Scroll
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashSiegeTele";
+ - Id: 14592
+ AegisName: Job_Manual50
+ Name: JOB Battle Manual
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_JEXPBOOST,1800000,50;
+ - Id: 14593
+ AegisName: Magic_Power_Scroll
+ Name: Mystical Amplification Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "HW_MAGICPOWER",10;
+ - Id: 14594
+ AegisName: Quagmire_Scroll
+ Name: Quagmire Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "WZ_QUAGMIRE",5;
+ - Id: 14595
+ AegisName: Unsealed_Magic_Spell
+ Name: Unsealed Magic Spell
+ Type: Usable
+ Script: |
+ warp "yuno_fild09",255,127;
+ - Id: 14596
+ AegisName: Pierre_Treasurebox
+ Name: Pierre's Treasure Box
+ Type: Usable
+ Weight: 100
+ 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;
+ - Id: 14597
+ AegisName: PhreeoniS
+ Name: Phreeoni Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;
+ - Id: 14598
+ AegisName: GhostringS
+ Name: Ghostring Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;
+ - Id: 14599
+ AegisName: Greed_Scroll_C
+ Name: Greed Scroll
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14600
+ AegisName: Mental_Potion
+ Name: Mental Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 14601
+ AegisName: Tyr's_Blessing
+ Name: Tyr's Blessing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ 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;
+ - Id: 14602
+ AegisName: TaogunkaS
+ Name: Tao Gunka Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA;
+ - Id: 14603
+ AegisName: MistressS
+ Name: Mistress Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS;
+ - Id: 14604
+ AegisName: Orc_HeroS
+ Name: Orc Hero Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO;
+ - Id: 14605
+ AegisName: Orc_LoadS
+ Name: Orc Lord Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD;
+ - Id: 14606
+ AegisName: Job_Manual25
+ Name: JOB Battle Manual
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14607
+ AegisName: Luxurious_Dinner_W
+ Name: Luxurious Western Food
+ Type: Usable
+ Buy: 10000
+ Weight: 600
+ Script: |
+ sc_start SC_INCALLSTATUS,3600000,3;
+ - Id: 14608
+ AegisName: Luxurious_Dinner_E
+ Name: Manchu-Han Imperial Feast
+ Type: Usable
+ Buy: 20000
+ Weight: 1200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ sc_start SC_INCALLSTATUS,3600000,6;
+ - Id: 14609
+ AegisName: Spoiled_Cuisine
+ Name: Spoiled Cuisine
+ Type: Usable
+ Buy: 5000
+ Weight: 300
+ Script: |
+ percentheal 10,10;
+ - Id: 16134
+ AegisName: King_Frog_Hat_Box
+ Name: Frog King Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5528,1;
+ - Id: 16135
+ AegisName: Evil's_Bone_Hat_Box
+ Name: Satanic Bone Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5529,1;
+ - Id: 16247
+ AegisName: Dragon_Arhat_Mask_Box
+ Name: Dragon Arhat Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5565,1;
+ - Id: 16248
+ AegisName: Tiger_Arhat_Mask_Box
+ Name: Tiger Arhat Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5566,1;
+ - Id: 16257
+ AegisName: Buddah_Scroll
+ Name: Buddah Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 16258
+ AegisName: HD_Bradium_Box5
+ Name: HD Bradium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,5;
+ - Id: 16259
+ AegisName: HD_Carnium_Box5
+ Name: HD Carnium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,5;
+ - Id: 16260
+ AegisName: HD_Bradium_Box10
+ Name: HD Bradium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,10;
+ - Id: 16261
+ AegisName: HD_Carnium_Box10
+ Name: HD Carnium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,10;
+ - Id: 16304
+ AegisName: Evil_Incarnation_Disable
+ Name: Evil Incarnation
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16371
+ AegisName: Tw_Aug_Scroll
+ Name: Tw Aug Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 16393
+ AegisName: HD_Ori_Box5
+ Name: HD Oridecon 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6240,5;
+ - Id: 16394
+ AegisName: HD_Ori_Box10
+ Name: HD Oridecon 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6240,10;
+ - Id: 16395
+ AegisName: HD_Elu_Box5
+ Name: HD Elunium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6241,5;
+ - Id: 16396
+ AegisName: HD_Elu_Box10
+ Name: HD Elunium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6241,10;
+ - Id: 16461
+ AegisName: Red_Wing_Hat_Box
+ Name: Red Wing Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ Script: |
+ getitem 5690,1;
+ - Id: 16555
+ AegisName: Pr_Reset_Stone_Box
+ Name: Pr Reset Stone Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoGuildStorage: true
+ - Id: 16677
+ AegisName: Universal_Catalog_Gold_Box10
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,10;
+ - Id: 16678
+ AegisName: Universal_Catalog_Gold_Box50
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,50;
+ - Id: 16679
+ AegisName: Universal_Catalog_Gold_Box10_
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,10;
+ - Id: 16680
+ AegisName: Universal_Catalog_Gold_Box50_
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,50;
+ - Id: 16776
+ AegisName: Universal_Catalog_Gold_Box10__
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,10;
+ - Id: 16777
+ AegisName: Universal_Catalog_Gold_Box50__
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Script: |
+ getitem 12581,50;
+ - Id: 17104
+ AegisName: HD_Oridecon_50Box
+ Name: HD Oridecon 50 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 6240,50;
+ - Id: 17105
+ AegisName: HD_Elunium_50Box
+ Name: HD Elunium 50 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 6241,50;
+ - Id: 22777
+ AegisName: Gift_Buff_Set
+ Name: Gift Buff Set
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ EquipLevelMin: 1
diff --git a/db/pre-re/item_delay.txt b/db/pre-re/item_delay.txt
deleted file mode 100644
index 8e29ab9af8..0000000000
--- a/db/pre-re/item_delay.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-// Item Delay Database
-//
-// Structure of Database:
-// ,{,}
-//
-//
-// ID of item that will has reuse delay.
-//
-// Re-use delay in milliseconds.
-//
-// SC (status change) group for the item.
-// Example for SC_REUSE_LIMIT_MTF
-// 12658,10000,SC_REUSE_LIMIT_MTF // Transformation Scroll(Deviruchi)
-// 12659,10000,SC_REUSE_LIMIT_MTF // Transformation Scroll(Raydric)
-// -> 12658 has reuse delay for 10 seconds, and also,
-// 12659 cannot be used when this delay is active.
-// Since this is optional, default is -1 will ignores the
-// delay group and the delay will be stored in character's
-// data that has limit set in src/map/itemdb.hpp as MAX_ITEMDELAYS.
-
-// SC_REUSE_LIMIT_A
-14538,300000,SC_REUSE_LIMIT_A //Glass_Of_Illusion
-
-// SC_REUSE_LIMIT_B
-14586,180000,SC_REUSE_LIMIT_B //Spark_Candy
-
-// SC_REUSE_LIMIT_C
-12208,60000,SC_REUSE_LIMIT_C //Battle_Manual
-
-// SC_REUSE_LIMIT_D
-12210,60000,SC_REUSE_LIMIT_D //Bubble_Gum
-
-// SC_REUSE_LIMIT_E
-11522,1000,SC_REUSE_LIMIT_E //Red_Raffle_Sap
-11523,2000,SC_REUSE_LIMIT_E //Yellow_Raffle_Sap
-11524,3000,SC_REUSE_LIMIT_E //White_Raffle_Sap
-
-// SC_REUSE_LIMIT_F
-607,5000,SC_REUSE_LIMIT_F //Yggdrasil_Berry
-
-// SC_REUSE_LIMIT_G
-608,3000,SC_REUSE_LIMIT_G //Yggdrasil_Seed
-
-// SC_REUSE_LIMIT_H
-11525,5000,SC_REUSE_LIMIT_H //Mora_Hip_Tea
-
-// SC_REUSE_LIMIT_RECALL
-12968,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll1
-12969,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll2
-12970,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll3
-
-// Misc
-//12202,60000 //Str_Dish10_
-//12203,60000 //Agi_Dish10_
-//12204,60000 //Int_Dish10_
-//12205,60000 //Dex_Dish10_
-//12206,60000 //Luk_Dish10_
-//12207,60000 //Vit_Dish10_
diff --git a/db/pre-re/item_flag.txt b/db/pre-re/item_flag.txt
deleted file mode 100644
index 760da451cd..0000000000
--- a/db/pre-re/item_flag.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-// Flagged Items
-// ,
-//
-// :
-// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag)
-// 2 - As item group container, check player's inventory and weight before consumed
-// 4 - GUID Item: When this item is obtained, will generates GUID that cannot be stacked even same or stackable item
-// 8 - Item will be bound item when equipped
-// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted!
-// 32 - Item will not be removed on consumption. Also supports 'itemskill'
-// 64 - Item will be displayed with a client side defined drop
-// 128 - Item will be displayed with a white pillar drop effect
-// 256 - Item will be displayed with a blue pillar drop effect
-// 512 - Item will be displayed with a yellow pillar drop effect
-// 1024 - Item will be displayed with a purple pillar drop effect
-// 2048 - Item will be displayed with a orange pillar drop effect
-// NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree
-
-// Logged as Dead Branch item
-604,1 //Branch_Of_Dead_Tree
-12103,1 //Bloody_Dead_Branch
-12109,1 //Poring_Box
-12024,1 //Red_Pouch_Of_Surprise
-
-// Item group container
-603,2 //Old_Blue_Box
-616,2 //Old_Card_Album
-617,2 //Old_Violet_Box
-618,2 //Worn_Out_Scroll
-644,2 //Gift_Box
-664,2 //Gift_Box_1
-665,2 //Gift_Box_2
-666,2 //Gift_Box_3
-667,2 //Gift_Box_4
-12023,2 //Giftbox_China
-12025,2 //Egg_Boy
-12026,2 //Egg_Girl
-12038,2 //Lotto_Box04
-12104,2 //Random_Quiver
-12105,2 //Set_Of_Taiming_Item
-12106,2 //Accessory_Box
-12107,2 //Wrapped_Mask
-12108,2 //Bundle_Of_Magic_Scroll
-12110,2 //First_Aid_Kit
-12111,2 //Food_Package
-12130,2 //Cookie_Bag
-12186,2 //Red_Box
-12187,2 //Green_Box
-12189,2 //Red_Box_
-12194,2 //Hometown_Gift
-12240,2 //Old_Yellow_Box
-12244,2 //Old_Gift_Box
-12246,2 //Magic_Card_Album
-12248,2 //Masquerade_Ball_Box
-12281,2 //Tresure_Box_WoE
-12286,2 //Masquerade_Ball_Box2
-12334,2 //Cherish_Box
-12339,2 //Cherish_Box_Ori
-12355,2 //Xmas_Gift
-12356,2 //Louise_Costume_Box
-12702,2 //Old_Bleu_Box
-12714,2 //Easter_Scroll
-14596,2 //Pierre_Treasurebox
diff --git a/db/pre-re/item_randomopt_db.txt b/db/pre-re/item_randomopt_db.txt
deleted file mode 100644
index ee863504b5..0000000000
--- a/db/pre-re/item_randomopt_db.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-// Items Random Option Database
-//
-// Structure of Database:
-// ID,{ Bonus Script }
diff --git a/db/pre-re/item_randomopt_group.txt b/db/pre-re/item_randomopt_group.txt
deleted file mode 100644
index d7d68d4584..0000000000
--- a/db/pre-re/item_randomopt_group.txt
+++ /dev/null
@@ -1 +0,0 @@
-// ,,,,{,,,,,,,,,,,,}
diff --git a/db/pre-re/item_stack.txt b/db/pre-re/item_stack.txt
deleted file mode 100644
index 6c66e325d3..0000000000
--- a/db/pre-re/item_stack.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-// Item Stacking Restriction File
-// Prevents an item to be stacked more than x times in given
-// inventory types. Generally used by 3rd class related skill items.
-//
-// Structure of Database:
-// ItemID,MaxStackAmount,Type
-//
-// MaxStackAmount:
-// Stack limit for the item. Use 0 to disable a restriction.
-//
-// Type mask values:
-// &1: Character inventory restriction
-// &2: Character cart restriction
-// &4: Account storage restriction
-// &8: Guild storage restriction
-//
-// Example:
-// 512,4,12 // Will not allow more than 4 Apples in storages.
-
-// Rune Knight
-12725,60,1 // Nauthiz Rune
-12726,60,1 // Raido Rune
-12727,60,1 // Berkana Rune
-12728,60,1 // Isa Rune
-12730,60,1 // Uruz Rune
-12733,60,1 // Hagalaz Rune
-
-// Arch Bishop
-12333,3,1 // Ancilla
diff --git a/db/pre-re/item_trade.txt b/db/pre-re/item_trade.txt
deleted file mode 100644
index 0ff39baac4..0000000000
--- a/db/pre-re/item_trade.txt
+++ /dev/null
@@ -1,1792 +0,0 @@
-// Item Trade Restrictions Database
-// Defines special trade rules for individual items.
-//
-// Structure of Database:
-// Item ID, TradeMask,Group Level Override
-//
-// Legend for 'TradeMask' field (bitmask):
-// 1 - item can't be dropped
-// 2 - item can't be traded (nor vended)
-// 4 - wedded partner can override restriction 2
-// 8 - item can't be sold to npcs
-// 16 - item can't be placed in the cart
-// 32 - item can't be placed in the storage
-// 64 - item can't be placed in the guild storage
-// 128 - item can't be attached to mail
-// 256 - item can't be auctioned
-//
-// Example:
-// 1161,67,50
-// Balmung cannot be dropped, traded, or placed in Guild Storage (1+2+64).
-// Only groups of group-level 50 and up can override this setting.
-
-// Wedding Related items
-2634,507,100 // Wedding Ring
-2635,507,100 // Wedding Ring
-
-// "2005 The Sign" related items
-7177,507,100 // Crumb of Sobbing Starlight
-7178,507,100 // Sobbing Starlight
-7304,507,100 // Witch's Spell Scroll
-7305,507,100 // Symbol of the Nine Realms
-7306,507,100 // Piece of Spirit
-7307,507,100 // Spiritual Whispers
-7308,507,100 // Witch's Tonic
-7309,507,100 // Crow Wing
-2642,507,100 // Serin's Gold Ring
-2644,507,100 // The Sign
-7314,507,100 // The Sign
-7025,475,100 // Lucifer's Lament
-
-// "2nd Anniversary Event" items
-// "Eye of Hellion" items
-2647,507,100 // Nile Rose
-7332,507,100 // Complete Tablet
-7333,507,100 // Prontera Tablet
-7334,507,100 // Payon Tablet
-7335,507,100 // Morocc Tablet
-7336,507,100 // Geffen Tablet
-7339,507,100 // Commemorative Travel Card
-5132,472,100 // Angeling Hat
-
-// "Main Quest"/"Danilion's Request" items
-7416,475,100 // Letter of Recommendation
-7417,475,100 // Written Request(A)
-7418,475,100 // Written Request(B)
-
-// PVP Item
-7420,498,100 // Skull
-
-// 10.3 Quest items
-// * "Gaebolg family Curse" items
-7431,499,100 // Pile of Books
-7432,507,100 // Leather Pouch
-// * "Thanatos Tower" items
-7421,499,100 // Red Key
-7422,499,100 // Yellow Key
-7423,499,100 // Blue Key
-7424,499,100 // Green Key
-7425,499,100 // Black Key
-7426,499,100 // Red Charm Stone
-7427,499,100 // Yellow Charm Stone
-7428,499,100 // Blue Charm Stone
-7429,499,100 // Green Charm Stone
-7430,499,100 // Black Charm Stone
-
-// Chinese New Year
-7484,507,100 // Symbol of a Brave Warrior
-7485,507,100 // Cloud General
-7486,507,100 // Wind General
-
-// "Kiel Hyre's Cottage" Quest related items
-7487,507,100 // Culinary Wine
-7488,507,100 // Delivery Package
-7489,507,100 // Cottage Key
-7490,507,100 // Letter to Elly
-7491,507,100 // Steel Box
-7492,507,100 // Yellow Keycard
-7493,507,100 // Golden Key
-7494,507,100 // Luxurious Button
-7495,507,100 // Blue Keycard
-7496,507,100 // Red Keycard
-7497,507,100 // Metal Fragment
-7498,507,100 // Rosimier Mansion Keys
-7499,507,100 // Family Portrait
-7500,507,100 // Woman's Portrait
-7501,507,100 // K.H's Letter
-7502,507,100 // James's Note
-7503,507,100 // Man's Portrait
-7504,507,100 // Power Device
-7505,507,100 // Toy Key
-7506,499,100 // Black Keycard
-7508,507,100 // Allysia's Ring
-7509,475,100 // Luxurious Keycard
-7516,499,100 // Green Keycard
-
-// Hugel Race Track token
-7515,499,100 // Prize Medal
-
-// Chinese ????? related items
-7518,499,100 // Women's Medal
-2668,499,100 // Woman Glory
-7525,499,100 // Summer Festival Ticket
-7341,507,100 // Old Pendant
-
-// Lighthalzen Quest items
-// * Schwarzwald Trilogy Quest items
-7342,507,100 // File Folder
-7343,507,100 // Sealed File Folder
-7344,507,100 // Shinokas Case File
-7346,507,100 // Ymir's Heart Piece
-7349,507,100 // Archive Permit
-// * Friendship Quest(?) Items
-7351,507,100 // Friend's Diary
-
-// ??? Indonesian Event
-7527,506,100 // Book About True Life
-12142,506,100 // Book of Magic
-
-// "2006 USA 3rd Anniversary" related items
-7530,507,100 // Travel Brochure [Amatsu]
-7531,507,100 // Travel Brochure [Kunlun]
-7532,507,100 // Travel Brochure [Luoyang]
-7533,507,100 // Travel Brochure [Ayothaya]
-7534,507,100 // Amatsu Completed Photo Album
-7535,507,100 // Kunlun Completed Photo Album
-7536,507,100 // Luoyang Completed Photo Album
-7537,507,100 // Ayothaya Completed Photo Album
-
-// Poring Coin items
-7538,499,100 // Sand for Work
-7539,499,100 // Poring Coin
-
-// Brazillian Event items
-7547,499,100 // Soccer Ball
-7548,499,100 // Soccer Shoes
-7549,499,100 // Brazilian Flag
-7550,499,100 // 6.13 Ticket
-7551,499,100 // 6.18 Ticket
-7552,499,100 // 6.22 Ticket
-
-// Taiwan Besark's Day Event items
-7553,499,100 // Lotus Flower
-7554,499,100 // Striped Candle
-7555,499,100 // Green Incense
-
-// Taiwan 'Pink Yearning' Event items
-7556,475,100 // Longing Heart
-7557,475,100 // Invitation Letter
-7558,475,100 // Invitation Ticket
-7559,475,100 // Key to the Secret Garden
-2670,475,100 // Ring of Longing
-2358,73,100 // Angel's Dress
-
-// India Father's Day Event items
-5154,475,100 // Father's Sunglasses
-5155,475,100 // Father's White Moustache
-5156,475,100 // Father's Mask
-
-// Indonesia Jewel Event items
-7575,507,100 // Red Jewel
-7576,507,100 // Blue Jewel
-7577,499,100 // Yellow Jewel
-
-// Rachel Quest items
-// * Aruna First (Katullanux quest)
-7569,475,100 // Wind Hammer
-7572,475,100 // Ashy Necklace
-7573,475,100 // Sparkling Necklace
-
-// 2006 Chinese Event items
-7579,499,100 // Silk Handkerchief of Zhi Nu
-
-// Taiwan 4th Anniversary Memorial items
-7583,499,100 // Evil Mind
-7584,499,100 // Guard's First Proof
-7585,499,100 // Guard's Second Proof
-7586,499,100 // Guard's Third Proof
-7587,499,100 // Guard's Fourth Proof
-2673,507,100 // Warrior's Shining Ring
-1533,507,100 // Warrior's Balmung
-13020,507,100 // Warrior's Balmung
-
-// Vietnam Event item
-7588,499,100 // IPOD Coupon
-
-// 2006 Brazilian 2nd Anniversary items
-7603,499,100 // RO Party Invitation Ticket
-5201,499,100 // Party Hat
-
-// 2006 Indonesia Honor Ring item
-2674,507,100 // Ring of Honor
-
-// 2006 Korean Harvest Moon Day Event item
-12199,507,100 // Scroll of Magic
-
-// 2006 Indonesia Event
-7614,499,100 // Wrapping Paper
-7618,499,100 // Monster Crystal
-2676,507,100 // Hunter's Earring
-
-// Mercenary scrolls
-12153,499,100 // Bowman Scroll 1
-12154,499,100 // Bowman Scroll 2
-12155,499,100 // Bowman Scroll 3
-12156,499,100 // Bowman Scroll 4
-12157,499,100 // Bowman Scroll 5
-12158,499,100 // Bowman Scroll 6
-12159,499,100 // Bowman Scroll 7
-12160,499,100 // Bowman Scroll 8
-12161,499,100 // Bowman Scroll 9
-12162,499,100 // Bowman Scroll 10
-12163,499,100 // Fencer Scroll 1
-12164,499,100 // Fencer Scroll 2
-12165,499,100 // Fencer Scroll 3
-12166,499,100 // Fencer Scroll 4
-12167,499,100 // Fencer Scroll 5
-12168,499,100 // Fencer Scroll 6
-12169,499,100 // Fencer Scroll 7
-12170,499,100 // Fencer Scroll 8
-12171,499,100 // Fencer Scroll 9
-12172,499,100 // Fencer Scroll 10
-12173,499,100 // Spearman Scroll 1
-12174,499,100 // Spearman Scroll 2
-12175,499,100 // Spearman Scroll 3
-12176,499,100 // Spearman Scroll 4
-12177,499,100 // Spearman Scroll 5
-12178,499,100 // Spearman Scroll 6
-12179,499,100 // Spearman Scroll 7
-12180,499,100 // Spearman Scroll 8
-12181,499,100 // Spearman Scroll 9
-12182,499,100 // Spearman Scroll 10
-
-// Indonesia 4 Annual Events
-2368,467,100 // Golden Armor
-2427,467,100 // Golden Shoes
-2704,467,100 // Golden Accessories
-2705,467,100 // Golden Accessories
-5295,467,100 // Golden Bandana
-7863,467,100 // Special Gold
-
-// Thailand Event-Environment Day Items
-7865,499,100 // Gold Pouch
-7866,499,100 // Certificate
-
-// 11.2 Quest items
-// * "Thor Volcano Base" items
-7759,507,100 // Geologist's Report
-
-// USA 4th Anniversary Event Items
-5305,475,100 // Pirate Dagger
-5373,73,100 // Dark Randgris Helm
-7773,499,100 // Wat Badge
-7875,467,100 // Pirate Treasure
-
-// Moscovia Quest Items -----
-2429,499,100 // Iron Boots
-2430,499,100 // Iron Boots
-7876,499,100 // Golden Key
-7877,499,100 // Red Ring
-7878,499,100 // Lusalka's Hair
-7879,499,100 // Golden Thread
-7880,499,100 // Baba Yaga's Silver Spoon
-7881,499,100 // Mystery Magic Book
-7882,499,100 // Sharp Branch
-7883,499,100 // Wooden Flute
-
-// Indonesian Red Bandana Hair Band
-5320,475,100 // Champion Wreath
-
-// Malaysia/Singapore Event Items
-2708,475,100 // Chinese Handicraft
-5805,475,100 // Victorious Coronet
-7884,475,100 // Jade Plate
-7885,475,100 // Sacred Arrow
-12704,475,100 // Elixir of Life
-12705,475,100 // Noble Nameplate
-
-// Compensation Items Coupon
-7784,475,100 // Free Coupon 1
-7785,475,100 // Free Coupon 2
-7786,475,100 // Free Coupon 3
-7787,475,100 // Free Coupon 4
-7788,475,100 // Free Coupon 5
-7789,475,100 // Free Coupon 6
-7790,475,100 // Free Coupon 7
-7791,475,100 // Free Coupon 8
-
-// Fate Crow Quest Items
-7794,475,100 // The Crow of Destiny
-
-// Russian Golden Apple Event Items
-//5322,475,100 // Kerchief
-7793,475,100 // Golden Apple
-7800,475,100 // Golden Charm Apple
-
-// Taiwan Medicine of Fantasy
-12259,507,100 // Miracle Tonic
-12261,507,100 // Leap of Fantasy
-
-// 2007 Summer Event Items
-7801,499,100 // Girl's Letter
-7802,499,100 // Signature Notebook
-
-// Sakray Test items
-1177,475,100 // Muramash
-1272,475,100 // Scratcher
-1423,475,100 // Pole XO
-1536,475,100 // Good Morning Star
-1566,475,100 // Diary Of Great Basil
-1627,475,100 // Staffy
-1735,475,100 // Kkakkung
-1921,475,100 // Gun Moon Gom
-1975,475,100 // Queen Is Whip
-2127,475,100 // Secular Mission
-2370,475,100 // Used Mage Coat
-2431,475,100 // Valley Shoes
-2534,475,100 // Ruffler
-5323,475,100 // Misstrance Crown
-13029,475,100 // Prinsense Knife
-13406,475,100 // Edger
-
-// Taiwan ???
-2713,507,100 // Certificate
-
-// Satan Morocc
-7820,507,100 // Piece of Morocc Skin
-
-// Vietnam Independence Day
-5806,475,100 // Poet Natalie's Hat
-
-// PC-Cafe Authoritative Badge
-12262,507,100 // Authoritative Badge
-12263,475,100 // Field Manual
-12264,475,100 // Bubble Gum
-12265,475,100 // Life Insurrance
-
-// Morocc Continental Guard Certificate
-7826,507,100 // Continental Guard Paper
-
-// Harvest Moon Day PC Items
-12266,507,100 // Sesame Pastry
-12267,507,100 // Honey Pastry
-12268,507,100 // Rainbow Cake
-
-// Satan Morocc (Episode 12)
-2730,467,100 // Seal of Continental Guard
-2731,467,100 // Rune Spellstone
-2732,467,100 // Death Loop
-
-// Episode 12
-1638,507,100 // Staff Of Healing
-2438,467,100 // Paw Of Cat
-2720,499,100 // Medal of Honor
-2721,499,100 // Medal of Honor
-2722,499,100 // Medal of Honor
-2723,499,100 // Medal of Honor
-2724,499,100 // Medal of Honor
-2725,499,100 // Medal of Honor
-2738,507,100 // Shiny Coin
-2739,507,100 // Ordinary Coin
-2740,507,100 // Rusty Coin
-2751,467,100 // Academy Of Badge
-2752,507,100 // Praccsinos
-5357,475,100 // Wings Of Victory
-5368,475,100 // White Wing
-5369,475,100 // Dark Wing
-5386,384,100 // Ayam
-5394,507,100 // Bubblegum
-5812,507,100 // Hat Of Expert
-6000,475,100 // Ashes of Darkness
-6005,467,100 // New Year Rice Cake
-6006,499,100 // Rice Cake Delivery Box
-6007,499,100 // New Year Rice Cake Soup
-6009,499,100 // Big Fan Of Magic
-7623,507,100 // Ticket Of Identification
-
-// Falicious Okolnir
-7839,499,100 // Crystal Key
-7840,507,100 // Valkyrie's Gift
-
-// "St. Patrick's Day (2008)" Quest related items
-12715,507,100 // Black Treasure Box
-
-// Battleground Rewards (Tierra Gorge/Flavius)
-1183,467,100 // Brave Assaulter's Katzbalger
-1184,467,100 // Valorous Assaulter's Katzbalger
-1279,467,100 // Brave Carnage Katar
-1280,467,100 // Valorous Carnage Katar
-1379,467,100 // Valorous Insane Battle Axe
-1380,467,100 // Brave Insane Battle Axe
-1425,467,100 // Assaulter Spear
-1482,467,100 // Assaulter Lance
-1542,467,100 // Valorous Battlefield Morning Star
-1543,467,100 // Brave Battlefield Morning Star
-1574,467,100 // Brave Battle Strategy Book
-1575,467,100 // Valorous Battle Strategy Book
-1632,467,100 // Warlock's Magic Wand
-1633,467,100 // Warlock's Battle Wand
-1634,467,100 // Strong Recovery Wand
-1635,467,100 // Speedy Recovery Wand
-1738,467,100 // Valorous Battle CrossBow
-1739,467,100 // Brave Battle CrossBow
-1823,467,100 // Valorous Battle Fist
-1824,467,100 // Brave Battle Fist
-1923,467,100 // Valorous Battlefield Guitar
-1924,467,100 // Brave Battlefield Guitar
-1977,467,100 // Valorous Battle Lariat
-1978,467,100 // Brave Battle Lariat
-2376,467,100 // Assaulter Plate
-2377,467,100 // Elite Engineer Armor
-2378,467,100 // Assassin Robe
-2379,467,100 // Warlock's Battle Robe
-2380,467,100 // Medic's Robe
-2381,467,100 // Elite Archer Suit
-2382,467,100 // Elite Shooter Suit
-2435,467,100 // Battle Greaves
-2436,467,100 // Combat Boots
-2437,467,100 // Battle Boots
-2538,467,100 // Captain's Manteau
-2539,467,100 // Commander's Manteau
-2540,467,100 // Sheriff's Manteau
-2733,467,100 // Sheriff Badge
-7828,467,100 // Bravery Badge
-7829,467,100 // Valor Badge
-13036,467,100 // Brave Assassin's Damascus
-13037,467,100 // Valorous Assassin's Damascus
-13108,467,100 // Soldier Revolver
-13171,467,100 // Soldier Rifle
-13172,467,100 // Soldier Gatling Gun
-13173,467,100 // Soldier Shotgun
-13174,467,100 // Soldier Grenade Launcher
-13305,467,100 // Brave Huuma Front Shuriken
-13306,467,100 // Valorous Huuma Front Shuriken
-13410,467,100 // Valorous Gladiator Blade
-13411,467,100 // Brave Gladiator Blade
-
-// "Valentine's Day (2009)" Event related items
-5817,507,100 // Valentine Pledge
-14466,507,100 // Valentine's Emblem Box
-
-// Ayo_event 20090303
-7950,499,100 // Ayothaya Fest Ticket
-
-// Episode 13.1
-6039,507,100 // Piece of Fish
-6048,507,100 // Unidentified Mineral
-6051,499,100 // Gray Hollow
-
-// Battleground Rewards (Krieger Von Midgard)
-1187,499,100 // Glorious Claymore
-1281,499,100 // Glorious Bloody Roar
-1282,499,100 // Glorious Jamadhar
-1310,499,100 // Glorious Cleaver
-1382,499,100 // Glorious Two-Handed Axe
-1426,499,100 // Glorious Spear
-1486,499,100 // Glorious Lance
-1546,499,100 // Glorious Morning Star
-1576,499,100 // Glorious Tablet
-1577,499,100 // Glorious Apocalypse
-1640,499,100 // Glorious Arc Wand
-1641,499,100 // Glorious Cure Wand
-1743,499,100 // Glorious Hunter Bow
-1826,499,100 // Glorious Claw
-1827,499,100 // Glorious Fist
-1927,499,100 // Glorious Guitar
-1981,499,100 // Glorious Lariat
-2002,499,100 // Glorious Destruction Staff
-2394,499,100 // Glorious Suit
-2395,499,100 // Glorious Popularized Suit
-2396,499,100 // Glorious Mass-Production Suit
-2444,499,100 // Glorious Shoes
-2445,499,100 // Glorious Popularized Shoes
-2446,499,100 // Glorious Mass-Production Shoes
-2549,499,100 // Glorious Muffler
-2772,499,100 // Glorious Ring
-2773,499,100 // Glorious Mass-Production Ring
-2774,499,100 // Glorious Popularized Ring
-13042,499,100 // Glorious Gladius
-13110,499,100 // Glorious Pistol
-13176,499,100 // Glorious Rifle
-13177,499,100 // Glorious Gatling Gun
-13178,499,100 // Glorious Shotgun
-13179,499,100 // Glorious Grenade Launcher
-13307,499,100 // Glorious Shuriken
-13416,499,100 // Glorious Flamberge
-13417,499,100 // Glorious Rapier
-13418,499,100 // Glorious Holy Avenger
-
-// Episode 13.2
-6074,499,100 // Bazett's Order
-6075,507,100 // Crystalized Teardrop
-6076,507,100 // Portable Toolbox
-6077,507,100 // Rough Mineral
-6078,507,100 // Stone Fragment
-6079,507,100 // Flower Of Alfheim
-6080,507,100 // Manuk Coin
-6081,507,100 // Splendide Coin
-6082,507,100 // Spirit Of Alfheim
-6084,507,100 // Bradium Fragments
-6085,507,100 // Shaggy Muffler
-12342,475,100 // Manuk's Opportunity
-12343,475,100 // Manuk's Courage
-12344,475,100 // Pinguicula's Fruit Jam
-12345,475,100 // Luciola's Honey Jam
-12348,475,100 // Manuk's Faith
-12349,475,100 // Cornus' Tears
-
-// New Novice Training Grounds Equipment
-1381,499,100 // Novice Battle Axe
-1545,499,100 // Novice Mace
-1639,499,100 // Novice Rod
-1742,499,100 // Novice Composite Bow
-2393,499,100 // Novice Adventurer's Suit
-2819,499,100 // Swordsman Manual
-2820,499,100 // Thief Manual
-2821,499,100 // Acolyte Manual
-2822,499,100 // Archer Manual
-2823,499,100 // Merchant Manual
-2824,499,100 // Mage Manual
-12323,507,100 // Novice Fly Wing
-12324,507,100 // Novice Butterfly Wing
-12325,507,100 // Novice Magnifier
-13040,499,100 // Novice Cutter
-13041,499,100 // Novice Main Gauche
-13415,499,100 // Novice Falchion
-
-// Eden Group
-1192,499,100 // Eden Slayer I
-1193,499,100 // Eden Slayer II
-1650,499,100 // Eden Staff I
-1651,499,100 // Eden Staff II
-1747,499,100 // Eden Bow I
-1748,499,100 // Eden Bow II
-2456,499,100 // Eden Team Boots I
-2457,499,100 // Eden Team Boots II
-2458,499,100 // Eden Team Boots III
-2560,499,100 // Eden Team Manteau I
-5583,499,100 // Eden Team Hat I
-6218,507,100 // Delivery_Daishin_Box
-6219,507,100 // Eden Group Mark
-13050,499,100 // Eden Dagger I
-13051,499,100 // Eden Dagger II
-13112,499,100 // Eden Revlover I
-13113,499,100 // Eden Revlover II
-13423,499,100 // Eden Sabre I
-13424,499,100 // Eden Sabre II
-15009,499,100 // Eden Team Uniform I
-15010,499,100 // Eden Team Uniform II
-15011,499,100 // Eden Team Uniform III
-16004,499,100 // Eden Mace I
-16005,499,100 // Eden Mace II
-
-// * Third Job-related
-1703,507,100 // Bow
-2794,507,100 // Magic Stone Ring
-2795,499,100 // Green Apple Ring
-2796,507,100 // Rocks
-2797,507,100 // Rocks
-2798,499,100 // Will Of Exhausted Angel
-6121,507,100 // Makeover Brush
-6122,507,100 // Paint Brush
-6124,507,100 // Wolf Flute
-6151,499,100 // Giant Bradium Fragment
-6152,499,100 // Glittering Crystal
-6153,507,100 // Special Exchange Ticket
-6154,499,100 // Broken Horn Pipe
-6156,499,100 // Approval Report
-6266,507,100 // Key Of Deception
-6267,507,100 // Key Of Illusion
-6268,507,100 // Key Of Gaiety
-6269,507,100 // A Master's Blush
-6270,499,100 // A Picture Of Minstrel Song
-6271,499,100 // Receipt
-6272,507,100 // Experiment Seed
-6273,507,100 // Seed For Experiment
-6274,507,100 // A Piece Of Cloth Of A Saint
-6275,507,100 // Shield Of King
-6276,507,100 // Clear Reagent
-6277,507,100 // Red Reagent
-6278,507,100 // Black Reagent
-12258,499,100 // Bomb Poring Box
-12333,507,100 // Ancilla
-12384,499,100 // Rainbow Ruby
-12385,499,100 // Rainbow Ruby
-12386,499,100 // Rainbow Ruby
-12387,499,100 // Rainbow Ruby
-12388,507,100 // Rhydo Runestone For Apprentice
-12389,507,100 // Pertz Runestone For Apprentice
-12390,507,100 // Verkana Runestone For Apprentice
-12725,475,100 // Nauthiz Rune
-12726,475,100 // Raido Rune
-12727,475,100 // Berkana Rune
-12728,475,100 // Isa Rune
-12729,475,100 // Othila Rune
-12730,475,100 // Uruz Rune
-12731,475,100 // Thurisaz Rune
-12732,475,100 // Wyrd Rune
-12733,475,100 // Hagalaz Rune
-
-// Brasilis
-6237,507,100 // Guarana Fruit
-
-// Cash Shop Related Items
-1173,507,100 // Muramasa
-1190,507,100 // Claymore
-1267,507,100 // Infiltrator
-1283,507,100 // Katar Of Speed
-1286,507,100 // Jamadhar
-1312,507,100 // Orcish Axe
-1372,507,100 // Light Epsilon
-1383,457,100 // Celestial Axe
-1419,507,100 // Pole Axe
-1427,507,100 // Spear Of Excellent
-1430,507,100 // Pike
-1487,507,100 // Lance
-1547,507,100 // Mace Of Madness
-1563,507,100 // Sage's Diary
-1578,507,100 // Book Of Prayer
-1580,507,100 // Giant Encyclopedia
-1623,507,100 // Mighty Staff
-1642,507,100 // Staff Of Darkness
-1728,507,100 // Ballista
-1744,507,100 // Bow Of Evil
-1817,507,100 // Kaiser Knuckle
-1828,507,100 // Monk Knuckle
-1829,507,100 // Fist
-1929,507,100 // Guitar
-1982,507,100 // Phenomena Whip
-1983,507,100 // Rante Whip
-2132,507,100 // Shell Of Resistance
-2369,507,100 // Freyja Overcoat
-2384,507,100 // Spiritual Tunic
-2385,507,100 // Recuperative Armor
-2439,507,100 // Refresh Shoes
-2543,507,100 // Sylphid Manteau
-2686,507,100 // Elven Ears
-2687,507,100 // Steel Flower
-2688,507,100 // Critical Ring
-2689,507,100 // Earring
-2690,507,100 // Ring
-2691,507,100 // Necklace
-2692,507,100 // Glove
-2693,507,100 // Brooch
-2694,507,100 // Rosary
-2695,507,100 // Safety Ring
-2696,507,100 // Vesper Core 01
-2697,507,100 // Vesper Core 02
-2698,507,100 // Vesper Core 03
-2699,507,100 // Vesper Core 04
-2734,499,100 // Directive
-2735,499,100 // Directive
-2741,507,100 // All In One Ring
-2753,507,100 // Beholder Ring
-2754,507,100 // Hallow Ring
-2755,507,100 // Clamorous Ring
-2756,507,100 // Chemical Ring
-2757,507,100 // Insecticide Ring
-2758,507,100 // Fischer Ring
-2759,507,100 // Decussate Ring
-2760,507,100 // Bloody Ring
-2761,507,100 // Satanic Ring
-2762,507,100 // Dragon Ring
-5098,73,100 // Tiger Mask
-5210,73,100 // Flapping Angel Wing
-5226,73,100 // Mini Propeller
-5227,475,100 // Red Deviruchi Hat
-5228,475,100 // Gray Deviruchi Hat
-5229,475,100 // Brown Deviruchi Hat
-5230,475,100 // Gray Drooping Cat
-5231,475,100 // Brown Drooping Cat
-5232,475,100 // Pink Drooping Cat
-5233,475,100 // Blue Drooping Cat
-5234,475,100 // Yellow Drooping Cat
-5235,475,100 // Brown Beanie
-5236,475,100 // Blue Beanie
-5237,475,100 // Pink Beanie
-5238,475,100 // Red Mage Hat
-5239,475,100 // Gray Mage Hat
-5240,475,100 // Brown Mage Hat
-5241,475,100 // Blue Mage Hat
-5242,475,100 // Yellow Mage Hat
-5263,73,100 // Pagdayaw
-5265,507,100 // Apple of Archer
-5266,507,100 // Bunny Band
-5267,507,100 // Sakkat
-5268,507,100 // Grand Circlet
-5277,73,100 // Yellow Bandana
-5283,73,100 // Chick Hat
-5286,73,100 // Pecopeco Hairband
-5288,73,100 // Red Glasses
-5293,73,100 // Ramen Hat
-5294,73,100 // Whisper Mask
-5313,73,100 // Diadem
-5314,73,100 // Hockey Mask
-5315,73,100 // Observer
-5324,73,100 // Little Angel Doll
-5372,73,100 // Koneko Hat
-5374,73,100 // Gigantic Majestic Goat
-5375,73,100 // Orc Hero Headdress
-5376,73,100 // Flying Evil Wing
-5377,73,100 // Gentleman's Pipe
-5378,73,100 // Bunny Top Hat
-5380,73,100 // Fish Head Hat
-5381,73,100 // Santa Poring Hat
-5382,73,100 // Bell Ribbon
-5391,507,100 // Toast
-5420,73,100 // Mask Of Ifrit
-5421,73,100 // Ears Of Ifrit
-5462,457,100 // Spiked Scarf
-5463,457,100 // Rainbow Scarf
-5502,457,100 // Necromancer's Hood
-5503,73,100 // Magic Rabit Hat
-5505,73,100 // Asara Fairy Hat
-5529,457,100 // Satanic Bone Helm
-5596,507,100 // 4Leaf Clover In Mouth
-5597,507,100 // Bubble Gum In Mouth
-6046,507,100 // Clothing Dye Coupon
-6047,507,100 // Clothing Dye Coupon II
-7619,475,100 // Enriched Elunium
-7620,475,100 // Enriched Oridecon
-7621,475,100 // Token Of Siegfried
-7622,73,100 // Hairstyle Coupon
-7766,475,100 // Bok Choy
-7767,475,100 // Green Maiden's Cake
-7776,475,100 // Gym Pass
-7821,475,100 // Green Apple
-7822,475,100 // Whole Barbecue
-7823,475,100 // Meat Veg Skewer
-7824,475,100 // Spirit Liquor
-7945,73,100 // Universal Amulet
-12202,475,100 // Steamed Tongue
-12203,475,100 // Steamed Scorpion
-12204,475,100 // Dragon Breath Cocktail
-12205,475,100 // Hwergelmir's Tonic
-12206,475,100 // Cooked Nine Tail's Tails
-12207,475,100 // Stew Of Immortality
-12208,475,100 // Battle Manual
-12209,475,100 // Life Insurance
-12210,475,100 // Bubble Gum
-12211,475,100 // Kafra Card
-12212,475,100 // Giant Fly Wing
-12213,475,100 // Neuralizer
-12214,475,100 // Convex Mirror
-12215,475,100 // LV10 Blessing Scroll
-12216,475,100 // LV10 Agil Scroll
-12217,475,100 // LV5 Aspersio Scroll
-12218,475,100 // LV5 Assumptio Scroll
-12219,475,100 // LV10 Wind Walker Scroll
-12220,475,100 // LV5 Adrenaline Scroll
-12221,475,100 // Megaphone
-12269,499,100 // Tasty Pink Ration
-12270,499,100 // Tasty White Ration
-12271,499,100 // Military Ration A
-12272,499,100 // Military Ration B
-12273,499,100 // Military Ration C
-12274,507,100 // Daehwandan
-12275,507,100 // Taecheongdan
-12276,73,100 // Mimic Scroll
-12277,73,100 // Disguise Scroll
-12278,73,100 // Alice Scroll
-12287,507,100 // Love Angel Magic Powder
-12288,507,100 // Squirrel Magic Powder
-12289,507,100 // Gogo Magic Powder
-12294,507,100 // PC-Room Coin Box
-12295,507,100 // PC-Room Coin Box
-12296,507,100 // PC-Room Coin Box
-12297,507,100 // PC-Room Coin Box
-12298,507,100 // SP Consumption Reduction Potion
-12299,507,100 // Mega Resist Potion
-12300,499,100 // Wild Rose Contract
-12301,499,100 // Doppelganger Contract
-12302,499,100 // Egnigem Cenia Contract
-12303,475,100 // Blessing Of Water
-12304,507,100 // Diary Magic Powder
-12305,507,100 // Mini Heart Magic Powder
-12306,507,100 // Freshman Magic Powder
-12307,507,100 // Kid Magic Powder
-12308,507,100 // Magic Magic Powder
-12309,507,100 // JJangu Magic Powder
-12310,467,100 // Spray Of Flowers
-12311,467,100 // Huge Spray Of Flowers
-12313,499,100 // Guardian Angel
-12331,507,100 // Ginseng
-12332,507,100 // Fruit Juice
-12340,499,100 // Chewy Rice Powder
-12346,499,100 // Unripe Acorn
-12350,457,100 // Angeling Potion
-12351,457,100 // Scream Megaphone
-12361,507,100 // Delicious Shaved Ice
-12363,507,100 // Fit Pipe
-12370,507,100 // Girl's Naivety
-12375,457,100 // Akaraje
-12391,475,100 // Lucky Egg
-12396,73,100 // Gift Box?
-12397,73,100 // Gift Box?
-12398,507,100 // PCBang Gift Box
-12402,475,100 // 29Fruit
-12404,475,100 // Acti Potion
-12405,475,100 // Underripe Yggseed
-12406,475,100 // Psychic ArmorS
-12413,475,100 // PCBang Coupon Box2
-12473,467,100 // RWC Parti Box
-12474,467,100 // RWC Final Comp Box
-12476,475,100 // PCBang Coupon Box3
-12478,507,100 // Chance Box
-12479,507,100 // Caracas Ring Box
-12480,475,100 // Attend 3Day Box
-12481,475,100 // Attend 7Day Box
-12482,475,100 // Attend 10Day Box
-12483,475,100 // Attend 15Day Box
-12484,475,100 // Attend 20Day Box
-12485,475,100 // Attend 25Day Box
-12486,475,100 // GoldPC First Box
-12487,475,100 // PC 4Leaf Clover Box
-12492,475,100 // Crumpled Paper
-12493,475,100 // Lucky Egg C4
-12529,475,100 // White Slim Potion Box
-12530,475,100 // Mastela Fruit Box
-12531,475,100 // White Potion Box
-12532,475,100 // Royal Jelly Box2
-12533,475,100 // Blue Herb Box2
-12534,475,100 // Yggdrasil Seed Box
-12535,475,100 // Iggdrasilberry Box
-12540,499,100 // GM Warp Box
-12541,499,100 // Fortune Cookie1
-12542,499,100 // Fortune Cookie2
-12543,499,100 // Fortune Cookie3
-12549,475,100 // White Slim Pot Box2
-12550,475,100 // Poison Bottle Box2
-12714,467,100 // Easter Scroll
-12900,457,100 // Battle Manual Box
-12901,457,100 // Insurance Package
-12902,457,100 // Bubble Gum Box
-12903,457,100 // Steamed Tongue Box
-12904,457,100 // Steamed Scorpion Box
-12905,457,100 // Dragon Breath Cocktail Box
-12906,457,100 // Hwergelmir's Tonic Box
-12907,457,100 // Nine Tail Dish Box
-12908,457,100 // Stew Of Immortality Box
-12909,457,100 // Kafra Card Box
-12910,457,100 // Giant Fly Wing Box
-12911,457,100 // Neuralizer Box
-12912,457,100 // Convex Mirror Box
-12913,457,100 // Blessing 10 Scroll Box
-12914,457,100 // Increase AGI 10 scroll Box
-12915,457,100 // Aspersio 5 Scroll Box
-12916,457,100 // Assumptio 5 Scroll Box
-12917,457,100 // Wind Walk 10 Scroll Box
-12918,457,100 // Adrenaline 5 Scroll Box
-12919,457,100 // Megaphone Box
-12920,457,100 // Enriched Elunium Box
-12921,457,100 // Enriched Oridecon Box
-12922,457,100 // Token of Siegfried Box
-12923,457,100 // December Lucky Box
-12924,457,100 // Pet Egg Box 2
-12925,475,100 // Kafra Item Mall Prize Package
-12926,475,100 // December Lucky Box
-12928,475,100 // Sacred Scroll
-12929,457,100 // Pet Egg Box 3
-12930,457,100 // Pet Egg Box 4
-12931,457,100 // Pet Egg Box 5
-12932,475,100 // Episode 13.2 Key Package
-12933,475,100 // Summer Hat Pack
-12934,475,100 // Pet Egg Scroll5
-12935,473,100 // Infiltrator Box
-12936,473,100 // Muramasa Box
-12937,473,100 // Excalibur Box
-12938,473,100 // Combat Knife Box
-12939,473,100 // Dagger of Counter Box
-12940,473,100 // Kaiser Knuckle Box
-12941,473,100 // Poll Axe Box
-12942,473,100 // Mighty Staff Box
-12943,473,100 // Light Epsilon Box
-12944,473,100 // Ballista Box
-12945,473,100 // Sage's Diary Box
-12946,473,100 // Asura Box
-12947,473,100 // Apple of Archer Box
-12948,473,100 // Bunny Band Box
-12949,473,100 // Sakkat Box
-12950,473,100 // Grand Circlet Box
-12951,473,100 // Elven Ears Box
-12952,473,100 // Steel Flower Box
-12953,473,100 // Critical Ring Box
-12954,473,100 // Earring Box
-12955,473,100 // Ring Box
-12956,473,100 // Necklace Box
-12957,473,100 // Glove Box
-12958,473,100 // Brooch Box
-12959,473,100 // Rosary Box
-12960,473,100 // Safety Ring Box
-12961,473,100 // Vesper Core 01 Box
-12962,473,100 // Vesper Core 02 Box
-12963,473,100 // Vesper Core 03 Box
-12964,473,100 // Vesper Core 04 Box
-12983,457,100 // Pet Egg Scroll Box 6
-12984,457,100 // Pet Egg Scroll Box 7
-12985,457,100 // Pet Egg Scroll Box 8
-12986,457,100 // Adventurer Pack Box
-12987,457,100 // Pet Egg Scroll Box 10
-12988,457,100 // Pet Egg Scroll Box 11
-12989,475,100 // Pet Egg Scroll 6
-12990,475,100 // Pet Egg Scroll 7
-12991,475,100 // Party Hard Pack
-12992,475,100 // Adventurer Pack
-12993,475,100 // Pet Egg Scroll 10
-12994,475,100 // Pet Egg Scroll 11
-13021,507,100 // Combat Knife
-13022,507,100 // Dagger of Counter
-13023,507,100 // Ashura
-13048,507,100 // Damascus
-13175,507,100 // Lever Action Rifle
-13309,507,100 // Huuma Giant Wheel Shuriken
-13401,507,100 // Excalibur
-13419,507,100 // Holy Saber
-13422,507,100 // Flamberge
-13525,73,100 // Zeny Pet Egg Scroll Box
-13547,73,100 // Repair Weapon Scroll Box
-13553,73,100 // Dungeon Teleport Scroll 5 Box
-13689,475,100 // Bok Choy Box
-13690,475,100 // Green Maiden Cake Box
-13696,457,100 // Field Manual 100% Box
-13704,73,100 // Super Pet Egg 5
-13705,73,100 // Super Pet Egg 6
-13706,73,100 // Super Pet Egg 7
-13707,73,100 // Super Pet Egg 8
-13710,73,100 // Gym Pass Box
-13711,73,100 // Small Life Potion 10 Box
-13712,73,100 // Small Life Potion 30 Box
-13713,73,100 // Small Life Potion 50 Box
-13714,73,100 // Medium Life Potion 10 Box
-13715,73,100 // Medium Life Potion 30 Box
-13716,73,100 // Medium Life Potion 50 Box
-13717,73,100 // Abrasive 5 Box
-13718,73,100 // Abrasive 10 Box
-13719,73,100 // Regeneration Potion 5 Box
-13720,73,100 // Regeneration 10 Box
-13721,73,100 // Dungeon Teleport Scroll 10 Box
-13738,73,100 // Glass of Illusion 5 Box
-13739,73,100 // Glass of Illusion 10 Box
-13740,73,100 // Shadow Armor Scroll 5 Box
-13741,73,100 // Shadow Armor Scroll 10 Box
-13742,73,100 // Shadow Armor Scroll 30 Box
-13743,73,100 // Holy Armor Scroll 5 Box
-13744,73,100 // Holy Armor Scroll 10 Box
-13745,73,100 // Holy Armor Scroll 30 Box
-13746,73,100 // Small Defense Potion 10 Box
-13747,73,100 // Small Defense Potion 30 Box
-13748,73,100 // Small Defense Potion 50 Box
-13749,73,100 // Big Defense Potion 10 Box
-13750,73,100 // Big Defense Potion 30 Box
-13751,73,100 // Big Defense Potion 50 Box
-13752,73,100 // Small Magic Defense Potion 10 Box
-13753,73,100 // Small Magic Defense Potion 30 Box
-13754,73,100 // Small Magic Defense Potion 50 Box
-13755,73,100 // Big Magic Defense Potion 10 Box
-13756,73,100 // Big Magic Defense Potion 30 Box
-13757,73,100 // Big Magic Defense Potion 50 Box
-13765,507,100 // Certificate Box
-13815,73,100 // Knife Goblin Taming Box
-13816,73,100 // Flail Goblin Taming Box
-13817,73,100 // Hammer Goblin Taming Box
-13818,73,100 // Red Deleter Taming Box
-13819,73,100 // Diabolic Taming Box
-13820,73,100 // Wanderer Taming Box
-13821,73,100 // Green Apple Box
-13822,73,100 // Barbeque Box
-13823,73,100 // Meat Skewer Box
-13824,73,100 // Spirit Liquor Box
-13859,499,100 // Directive Envelope A
-13860,499,100 // Directive Envelope B
-13863,475,100 // Repair Weapon Scroll 10 Box
-13866,475,100 // Flying Angel Box
-13867,475,100 // Neko Mimi Box
-13868,475,100 // Moonlight Flower Hat Box
-13869,475,100 // Baby Chick Hat Box
-13870,475,100 // Beauty Gift Certificate Box
-13871,475,100 // Mage Card Box
-13872,475,100 // Acolyte Card Box
-13873,475,100 // Archer Card Box
-13874,475,100 // Swordman Card Box
-13875,475,100 // Thief Card Box
-13876,475,100 // Merchant Card Box
-13877,475,100 // Clock Tower Card Box
-13878,475,100 // Geffenia Card Box
-13879,475,100 // Owl Card Box
-13880,475,100 // Ghost Card Box
-13881,475,100 // Nightmare Card Box
-13882,475,100 // Curse Card Box
-13883,475,100 // Sleep Card Box
-13884,475,100 // Freeze Card Box
-13885,475,100 // Stun Card Box
-13886,475,100 // Silence Card Box
-13887,475,100 // Blind Card Box
-13888,475,100 // Chaos Card Box
-13889,475,100 // Elunium Box
-13890,475,100 // Oridecon Box
-13891,475,100 // Fire Converter Box
-13892,475,100 // Water Converter Box
-13893,475,100 // Wind Converter Box
-13894,475,100 // Earth Converter Box
-13895,475,100 // Starter Pack
-13896,73,100 // Mimic Summoning 5 Box
-13897,73,100 // Disguise Summoning 5 Box
-13898,73,100 // Alice Summoning 5 Box
-13899,73,100 // Mimic Summoning 10 Box
-13900,73,100 // Disguise Summoning 10 Box
-13901,73,100 // Alice Summoning 10 Box
-13902,475,100 // Fish Head Hat Box
-13903,475,100 // Santa Poring Box
-13904,475,100 // Bell Ribbon Box
-13905,475,100 // XM Hardcore Set Box
-13906,475,100 // XM Kitty Set Box
-13907,475,100 // XM Softcore Set Box
-13908,475,100 // XM Deviruchi Set Box
-13909,475,100 // MVP Hunting Box
-13910,475,100 // XM Brewing Set
-13911,475,100 // Christmas Pet Scroll
-13912,73,100 // Party Blessing 10 Scroll Box
-13913,73,100 // Party Increase Agi 10 Scroll Box
-13914,73,100 // Party Assumptio 5 Scroll Box
-13915,475,100 // Love Angel Magic Powder Box
-13916,475,100 // Squirrel Magic Powder Box
-13917,475,100 // Gogo Magic Powder Box
-13926,475,100 // Crusader Card Box
-13927,475,100 // Alchemist Card Box
-13928,475,100 // Rogue Card Box
-13929,475,100 // Bard Dancer Card Box
-13930,475,100 // Sage card box
-13931,475,100 // Monk Card Box
-13932,475,100 // Sylph Box
-13933,475,100 // Undine Box
-13934,475,100 // Salamander Box
-13935,475,100 // Soul Box
-13936,475,100 // Gnome Box
-13937,475,100 // Robo Eye Box
-13938,475,100 // Maiden's Twin Ribbon Box
-13940,475,100 // WoE Teleport Scroll 100 Box
-13941,475,100 // Taiwan Valentine Scroll
-13942,475,100 // Love Angel Magic Powder Box 30 Days
-13943,475,100 // Squirrel Magic Powder Box 30 Days
-13944,475,100 // Gogo Magic Powder Box 30 Days
-13945,475,100 // Brazil Swordsman Package
-13946,475,100 // Brazil Magician Package
-13947,475,100 // Brazil Acolyte Package
-13948,475,100 // Brazil Archer package
-13949,475,100 // Brazil Merchant Package
-13950,475,100 // Brazil Thief Package
-13951,475,100 // Western Outlaw Box
-13952,475,100 // Lever Action Rifle Box
-13953,475,100 // All In One Ring Box
-13954,475,100 // Spiritual Tunic Box
-13955,475,100 // Recuvative Armor Box
-13956,475,100 // Shell Of Resistance Box
-13957,475,100 // Silf Manteau Box
-13958,475,100 // Refresh Shoes Box
-13959,475,100 // Crunch Toast Box
-13960,475,100 // Identification Box
-13961,475,100 // Mochi Box
-13962,475,100 // Defolty Doll Hat Box
-13963,475,100 // Glaris Doll Hat Box
-13964,475,100 // Sorin Doll Hat Box
-13965,475,100 // Tailring Doll Hat Box
-13966,475,100 // Vinit Doll Hat Box
-13967,475,100 // W Doll Hat Box
-13970,475,100 // Iron Box
-13971,475,100 // Steel Box
-13972,475,100 // Coal Box
-13973,475,100 // Poison Bottle Box
-13974,475,100 // Fisherman Scroll
-13975,475,100 // Diary Magic Powder Box
-13976,475,100 // Mini Heart Magic Powder Box
-13977,475,100 // Freshman Magic Powder Box
-13978,475,100 // Kid Magic Powder Box
-13979,475,100 // Magic Magic Powder Box
-13980,475,100 // JJangu Magic Powder Box
-13981,475,100 // Diary Magic Powder Box 30 Days
-13982,475,100 // Mini Heart Magic Powder Box 30 Days
-13983,475,100 // Freshman Magic Powder Box 30 Days
-13984,475,100 // Kid Magic Powder Box 30 Days
-13985,475,100 // Magic Magic Powder Box 30 Days
-13986,475,100 // JJangu Magic Powder Box 30 Days
-13987,475,100 // Rough Oridecon 5 Box
-13988,475,100 // Rough Oridecon 50 Box
-13989,475,100 // Acid Bomb 10 Box
-13990,475,100 // JOB Battle Manual Box
-13991,475,100 // Tiger Mask Box
-13992,475,100 // Pussy Cat Bell Box
-13993,475,100 // Alice Hat Box
-13994,475,100 // Speed Potion 5 Box
-13995,475,100 // Speed Potion 10 Box
-13996,475,100 // Big Bun 100 Box
-13997,475,100 // Big Bun 500 Box
-13998,475,100 // Giant Fly Wing 500 Box
-13999,475,100 // Pill 100 Box
-14000,475,100 // Pill 500 Box
-14001,475,100 // Recruit Siege Supply Box
-14002,475,100 // Veteran Siege Supply Box
-14003,475,100 // Elite Siege Supply Box
-14004,475,100 // Poison Bottle 10 Box
-14005,475,100 // Poison Bottle 5 Box
-14006,475,100 // Evolved Drooping Cat Box
-14007,475,100 // Evolved Rabbits Headband Box
-14008,475,100 // Evolved Helmet Of Orc Hero Box
-14009,475,100 // Love Angel Magic Powder Box
-14010,475,100 // Squillroll Magic Powder Box
-14011,475,100 // Gogo Magic Powder Box
-14012,475,100 // Love Angel Magic Powder Box 30 Days
-14013,475,100 // Squillroll Magic Powder Box 30 Days
-14014,475,100 // Gogo Magic Powder Box 30 Days
-14015,475,100 // Western Outlaw Box
-14016,475,100 // Lever Action Rifle Box
-14017,475,100 // All In One Ring Box
-14018,475,100 // Spiritual Tunic Box
-14019,475,100 // Recuvative Armor Box
-14020,475,100 // Shell Of Resistance Box
-14021,475,100 // Silf Manteau Box
-14022,475,100 // Refresh Shoes Box
-14023,475,100 // Crunch Toast Box
-14024,475,100 // Robo Eye Box
-14025,475,100 // Maiden's Twin Ribbon Box
-14027,475,100 // Fish Head Hat Box
-14028,475,100 // SantaPoring Cap Box
-14029,475,100 // Bell Ribbon Box
-14030,475,100 // Mimic Summoning 5 Box
-14031,475,100 // Disguise Summoning 5 Box
-14032,475,100 // Alice Summoning 5 Box
-14033,475,100 // Mimic Summoning 10 Box
-14034,475,100 // Disguise Summoning 10 Box
-14035,475,100 // Alice Summoning 10 Box)
-14036,475,100 // New Style Box
-14037,475,100 // Repair Weapon Scroll Box
-14038,475,100 // Repair Weapon Scroll 10 Box
-14041,475,100 // Yellow Butterfly Wing 5 Box
-14042,475,100 // Yellow Butterfly Wing Box
-14043,475,100 // Green Butterfly Wing 5 Box
-14044,475,100 // Green Butterfly Wing Box
-14045,475,100 // Red Butterfly Wing 5 Box
-14046,475,100 // Red Butterfly Wing Box
-14047,475,100 // Blue Butterfly Wing 5 Box
-14048,475,100 // Blue Butterfly Wing Box
-14049,475,100 // Candy 5 Box
-14050,475,100 // Candy 10 Box
-14051,475,100 // Dungeon Teleport Scroll II 5 Box
-14052,475,100 // Dungeon Teleport Scroll II 10 Box
-14053,475,100 // Little Angel Doll Box
-14054,475,100 // Poring 3 Hats Box
-14055,475,100 // Refined Nagan Box
-14056,475,100 // Refined Brocca Box
-14057,475,100 // Refined Survivor's Rod Box
-14058,475,100 // Refined Quadrille Box
-14059,475,100 // Refined Great Axe Box
-14060,475,100 // Refined Bloody Roar Box
-14061,475,100 // Refined Hardcover Book Box
-14062,475,100 // Refined Fireblend Box
-14063,475,100 // Refined Immaterial Sword Box
-14064,475,100 // Refined Unholy Touch Box
-14065,475,100 // Refined Survivor's Manteau Box
-14066,475,100 // Refined Masquerade Box
-14067,475,100 // Refined Helmet of Orc Hero Box
-14068,475,100 // Refined Wing of Diablo Box
-14069,475,100 // Refined Dark Blinder Box
-14070,475,100 // Refined Drooping Cat Box
-14071,475,100 // Refined Corsair Box
-14072,475,100 // Refined Bloodied Shackle Ball Box
-14073,475,100 // Refined Spiritual Ring Box
-14074,475,100 // Wine Glass of Illusion 5 Box
-14075,475,100 // Glass Of Illusion 10 Box
-14076,475,100 // Scroll of Shadow Armor 5 Box
-14077,475,100 // Scroll of Shadow Armor 10 Box
-14078,475,100 // Scroll of Shadow Armor 30 Box
-14079,475,100 // Scroll of Holy Armor 5 Box
-14080,475,100 // Scroll of Holy Armor 10 Box
-14081,475,100 // Scroll of Holy Armor 30 Box
-14082,475,100 // Small Defense Potion 10 Box
-14083,475,100 // Small Physical Defense Potion 30 Box
-14084,475,100 // Small Physical Defense Potion 50 Box
-14085,475,100 // Big Defense Potion 10 Box
-14086,475,100 // Large Physical Defense Potion 30 Box
-14087,475,100 // Large Physical Defense Potion 50 Box
-14088,475,100 // Small Magic Defense Potion 10 Box
-14089,475,100 // Small Magical Defense Potion 30 Box
-14090,475,100 // Small Magical Defense Potion 50 Box
-14091,475,100 // Big Magic Defense Potion 10 Box
-14092,475,100 // Large Magical Defense Potion 30 Box
-14093,475,100 // Large Magical Defense Potion 50 Box
-14094,475,100 // Flying Angel Box
-14095,475,100 // Neko Mimi Box
-14096,475,100 // Moonlight Flower Hat Box
-14097,475,100 // Baby Chick Hat Box
-14098,475,100 // Peco Peco Hairband Box
-14099,475,100 // Red Glasses Box
-14100,475,100 // Whisper Mask Box
-14101,475,100 // Ramen Hat Box
-14102,475,100 // Dungeon Teleport Scroll 5 Box
-14103,475,100 // Gym Membership Card Box
-14104,475,100 // Small Life Potion 10 Box
-14105,475,100 // Small Life Potion 30 Box
-14106,475,100 // Small Life Potion 50 Box
-14107,475,100 // Medium Life Potion 10 Box
-14108,475,100 // Large Life Potion 30 Box
-14109,475,100 // Large Life Potion 50 Box
-14110,475,100 // Abrasive 5 Box
-14111,475,100 // Abrasive 10 Box
-14112,475,100 // Regeneration Potion 5 Box
-14113,475,100 // Regeneration Potion 10 Box
-14114,475,100 // Dungeon Teleport Scroll 10 Box
-14115,475,100 // Refined Infiltrator Box
-14116,475,100 // Refined Muramasa Box
-14117,475,100 // Refined Excalibur Box
-14118,475,100 // Combat Knife Box
-14119,475,100 // Counter Dagger Box
-14120,475,100 // Refined Kaiser Knuckle Box
-14121,475,100 // Refined Mighty Staff Box
-14122,475,100 // Light Epsilon Box
-14123,475,100 // Refined Ballista Box
-14124,475,100 // Sage's Diary Box
-14125,475,100 // Asura Box
-14126,475,100 // Apple of Archer Box
-14127,475,100 // Bunny Band Box
-14128,475,100 // Refined Sakkat Box
-14129,475,100 // Refined Grand Circlet Box
-14130,475,100 // Elven Ears Box
-14131,475,100 // Steel Flower Box
-14132,475,100 // Critical Ring Box
-14133,475,100 // Earring Box
-14134,475,100 // Ring Box
-14135,475,100 // Necklace Box
-14136,475,100 // Glove Box
-14137,475,100 // Brooch Box
-14138,475,100 // Rosary Box
-14139,475,100 // Safety Ring Box
-14140,475,100 // Refined Vesper Core 01 Box
-14141,475,100 // Refined Vesper Core 02 Box
-14142,475,100 // Refined Vesper Core 03 Box
-14143,475,100 // Refined Vesper Core 04 Box
-14144,475,100 // Vigorgra Box1
-14145,475,100 // Vigorgra Box2
-14146,475,100 // Vigorgra Box3
-14147,475,100 // Vigorgra Box4
-14148,475,100 // Vigorgra Box5
-14149,475,100 // Vigorgra Box6
-14150,475,100 // Vigorgra Box7
-14151,475,100 // Vigorgra Box8
-14152,475,100 // Start your Journey Pack
-14153,475,100 // Siege Mode Pack
-14154,475,100 // 1 Hour Survival Pack
-14155,475,100 // Weekend Hunting Pack
-14156,475,100 // Battle Manual Box
-14157,475,100 // Insurance Package
-14158,475,100 // Bubble Gum Box
-14159,475,100 // Steamed Tongue Box
-14160,475,100 // Steamed Scorpion Box
-14161,475,100 // Dragon Breath Cocktail Box
-14162,475,100 // Hwergelmir's Tonic Box
-14163,475,100 // Nine Tail Dish Box
-14164,475,100 // Stew Of Immortality Box
-14165,475,100 // Kafra Card Box
-14166,475,100 // Giant Fly Wing Box
-14167,475,100 // Neuralizer Box
-14168,475,100 // Convex Mirror Box
-14169,475,100 // Blessing 10 Scroll Box
-14170,475,100 // Increase AGI 10 scroll Box
-14171,475,100 // Aspersio 5 Scroll Box
-14172,475,100 // Assumptio 5 Scroll Box
-14173,475,100 // Wind Walk 10 Scroll Box
-14174,475,100 // Adrenaline 5 Scroll Box
-14175,475,100 // Megaphone 10 Box
-14176,475,100 // Enriched Elunium Box
-14177,475,100 // Enriched Oridecon Box
-14178,475,100 // Token of Siegfried Box
-14179,475,100 // Giant Fly Wing 50 Box
-14180,475,100 // Giant Fly Wing 100 Box
-14181,475,100 // Hwergelmir's Tonic 30 Box
-14182,475,100 // Hwergelmir's Tonic 50 Box
-14183,475,100 // Nine Tail Dish 30 Box
-14184,475,100 // Nine Tail Dish 50 Box
-14185,475,100 // Increase Agility Scroll 30 Box
-14186,475,100 // Increase Agility Scroll 50 Box
-14187,475,100 // Stew of Immortality 30 Box
-14188,475,100 // Stew of Immortality 50 Box
-14189,475,100 // Life Insurrance 30 Box
-14190,475,100 // Life Insurrance 50 Box
-14191,475,100 // Convex Mirror 5 Box
-14192,475,100 // Convex Mirror 30 Box
-14193,475,100 // Blessing Scroll 30 Box
-14194,475,100 // Lv10 Blessing Scroll Box 50
-14195,475,100 // Adrenaline Rush Scroll 30 Box
-14196,475,100 // Adrenaline Rush Scroll 50 Box
-14197,475,100 // Assumptio Scroll 30 Box
-14198,475,100 // Lv5 Assumptio Scroll Box 50
-14199,475,100 // Aspersio Scroll 30 Box
-14200,475,100 // Aspersio Scroll 50 Box
-14201,475,100 // Steamed Scorpion 30 Box
-14202,475,100 // Steamed Scorpion 50 Box
-14203,475,100 // Wind Walk Scroll 30 Box
-14204,475,100 // Wind Walk Scroll 50 Box
-14205,475,100 // Dragon Breath Cocktail 30 Box
-14206,475,100 // Dragon Breath Cocktail 50 Box
-14207,475,100 // Field Manual Box
-14208,475,100 // Battle Manual 5 Box
-14209,475,100 // Token of Siegfried 5 Box
-14210,475,100 // Token of Siegfried 20 Box
-14211,475,100 // Kafra Card 30 Box
-14212,475,100 // Kafra Card 50 Box
-14213,475,100 // Steamed Tongue 30 Box
-14214,475,100 // Steamed Tongue 50 Box
-14215,475,100 // Bubble Gum Box
-14216,475,100 // Bubble Gum 5 Box
-14217,475,100 // Megaphone Box
-14218,475,100 // Megaphone 5 Box
-14219,475,100 // Enriched Elunium 5 Box
-14220,475,100 // Enriched Oridecon 5 Box
-14221,475,100 // Mystical Amplification Scroll 10 Box
-14222,475,100 // Mystical Amplification Scroll 30 Box
-14223,475,100 // Mystical Amplification Scroll 50 Box
-14224,475,100 // Quagmire Scroll 10 Box
-14225,475,100 // Quagmire Scroll 30 Box
-14226,475,100 // Quagmire Scroll 50 Box
-14227,475,100 // Healing Staff Box
-14234,73,100 // Dead Branch 25 Box
-14242,73,100 // Beholder Ring Box
-14243,73,100 // Hallow Ring Box
-14244,73,100 // Clamorous Ring Box
-14245,73,100 // Chemical Ring Box
-14246,73,100 // Insecticide Ring Box
-14247,73,100 // Fisher Ring Box
-14248,73,100 // Decussate Ring Box
-14249,73,100 // Bloody Ring Box
-14250,73,100 // Satanic Ring Box
-14251,73,100 // Dragon Ring Box
-14252,73,100 // Beholder Ring Box II
-14253,73,100 // Hallow Ring Box II
-14254,73,100 // Clamorous Ring Box II
-14255,73,100 // Chemical Ring Box II
-14256,73,100 // Insecticide Ring Box II
-14257,73,100 // Fisher Ring Box II
-14258,73,100 // Decussate Ring Box II
-14259,73,100 // Bloody Ring Box II
-14260,73,100 // Satanic Ring Box II
-14261,73,100 // Dragon Ring Box II
-14289,475,100 // New Clothing Dye Coupon Box
-14290,475,100 // Original Clothing Dye Coupon Box
-14296,73,100 // Angel Scroll
-14297,73,100 // Devil Scroll
-14300,73,100 // Mask Of Ifrit Box
-14301,73,100 // Ears Of Ifrit Box
-14304,73,100 // Scuba Mask Box
-14314,475,100 // Phreeoni Scroll Box
-14315,475,100 // Ghostring Scroll Box
-14316,73,100 // July7 Scroll
-14317,457,100 // Bacsojin Scroll
-14343,475,100 // Spiked Scarf Box
-14344,475,100 // Rainbow Scarf Box
-14345,457,100 // Animal Scroll
-14349,73,100 // Mental Potion 20 Box
-14350,73,100 // Mental Potion 50 Box
-14351,73,100 // Tyr's Blessing 20 Box
-14352,73,100 // Tyr's Blessing 50 Box
-14363,73,100 // Heart Scroll
-14375,457,100 // Celestial Axe Box
-14376,475,100 // Angeling Potion Box
-14377,457,100 // Scream Megaphone Box
-14380,457,100 // Anubis Hat Box
-14393,73,100 // Universal Amulet Box
-14408,73,100 // New Year Scroll
-14440,457,100 // Dice Hat Box
-14441,457,100 // King Tiger Doll Hat Box
-14447,457,100 // Pirate's Pride Box
-14448,457,100 // Necromancer's Hood Box
-14459,475,100 // Magic Rabbit Hat Box
-14460,475,100 // RO 5th Wedding Anniversary Box
-14461,475,100 // Ashura Fairy Hat Box
-14469,457,100 // Ox Tail Egg
-14508,73,100 // Zeny Pet Egg Scroll
-14521,475,100 // Repair Weapon Scroll
-14527,475,100 // Dungeon Teleport Scroll
-14533,475,100 // Field Manual 100%
-14534,475,100 // Small Life Potion
-14535,475,100 // Medium Life Potion
-14536,475,100 // Abrasive
-14537,475,100 // Regeneration Potion
-14538,475,100 // Glass of Illusion
-14539,475,100 // Shadow Armor Scroll
-14540,475,100 // Holy Armor Scroll
-14541,475,100 // Small Defense Potion
-14542,475,100 // Big Defense Potion
-14543,475,100 // Small Magic Defense Potion
-14544,475,100 // Big Magic Defense Potion
-14569,475,100 // Knife Goblin Ring
-14570,475,100 // Flail Goblin Ring
-14571,475,100 // Hammer Goblin Ring
-14572,475,100 // Holy Marble
-14573,475,100 // Red Burning Stone
-14574,475,100 // Vagabond's Skull
-14586,73,100 // Jumping Candy
-14587,475,100 // Equipment Repair Spell Book
-14588,75,100 // Party Blessing 10 Scroll
-14589,75,100 // Party Increase Agi 10 Scroll
-14590,75,100 // Party Assumptio 5 Scroll
-14591,475,100 // WoE Teleport Scroll
-14592,475,100 // JOB Battle Manual
-14593,475,100 // Mystical Amplification Scroll
-14594,475,100 // Quagmire Scroll
-14597,475,100 // Phreeoni Scroll
-14598,475,100 // Ghostring Scroll
-14599,475,100 // Greed Scroll
-14600,73,100 // Mental Potion
-14601,73,100 // Tyr's Blessing
-14602,475,100 // Tao Gunka Scroll
-14603,475,100 // Mistress Scroll
-14604,475,100 // Orc Hero Scroll
-14605,475,100 // Orc Lord Scroll
-14606,475,100 // JOB Battle Manual
-14608,73,100 // Manchu-Han Imperial Feast
-16002,507,100 // Stunner
-16134,475,100 // Frog King Hat Box
-16135,457,100 // Satanic Bone Helm Box
-16247,475,100 // Dragon Arhat Mask Box
-16248,475,100 // Tiger Arhat Mask Box
-16257,73,100 // Buddah Scroll
-16258,457,100 // HD Bradium 5 Box
-16259,457,100 // HD Carnium 5 Box
-16260,457,100 // HD Bradium 10 Box
-16261,457,100 // HD Carnium 10 Box
-16304,475,100 // Evil Incarnation
-16371,73,100 // Tw Aug Scroll
-16393,457,100 // HD Oridecon 5 Box
-16394,457,100 // HD Oridecon 10 Box
-16395,457,100 // HD Elunium 5 Box
-16396,457,100 // HD Elunium 10 Box
-16461,73,100 // Red Wing Hat Box
-16555,73,100 // Pr Reset Stone Box
-
-// Misc. Items
-1313,499,100 // Tourist Axe
-1386,507,100 // Doom Slayer
-1388,507,100 // Two-Handed Axe
-1428,475,100 // Long Horn
-1429,475,100 // Hunting Spear
-1579,475,100 // Book of the Dead
-1644,475,100 // Staff of Piercing
-1645,475,100 // Lich's Bone Wand
-1749,499,100 // Tourist Bow
-1928,507,100 // Spirited Guitar
-2003,475,100 // Staff of Destruction
-2398,475,100 // Sniping Suit
-2449,475,100 // Variant Shoes
-2551,475,100 // Crest of the Rider
-2552,475,100 // Mithril Magic Manteau
-2777,65,100 // Shaman Ring
-2778,65,100 // Shaman Earrings
-2779,65,100 // Dark Knight Belt
-2780,65,100 // Dark Knight Glove
-2781,65,100 // Aumdura's Benefit
-2782,475,100 // Ring of the Ancient Wise King
-2785,475,100 // Orlean's Gloves
-5100,73,100 // Sales Banner
-5103,73,100 // Sunflower Hairpin
-5133,73,100 // Sheep Hat
-5206,73,100 // Romantic White Flower
-5215,73,100 // Evolved Angel Wing
-5216,73,100 // Evolved Evil Wing
-5217,73,100 // Evolved Majestic Goat
-5218,73,100 // Evolved Bunny Band
-5219,73,100 // Evolved Drooping Cat
-5220,73,100 // Evolved Pipe
-5221,73,100 // Evolved Pair of Red Ribbon
-5222,73,100 // Evolved Blue Fish
-5223,73,100 // Evolved Big Golden Bell
-5224,73,100 // Evolved Orc Hero Helm
-5243,73,100 // Shafka
-5256,73,100 // Valkyrie Feather Band
-5257,73,100 // Soul Ring
-5278,73,100 // Yellow Ribbon
-5284,73,100 // Water Lily Crown
-5285,73,100 // Vane Hairpin
-5287,73,100 // Vacation Hat
-5289,73,100 // Vanilmirth Hat
-5291,73,100 // Kettle Hat
-5292,73,100 // Dragon Skull
-5300,73,100 // Bullock Helm
-5304,73,100 // Cap Of Blindness
-5318,467,100 // Poring Party Hat
-5333,457,100 // Radio Antenna
-5336,73,100 // Guildsman Recruiter Hat
-5337,73,100 // Party Recruiter Hat
-5338,507,100 // Bf Recruiter Hat
-5339,507,100 // Friend Recruiter Hat
-5346,507,100 // Gf Recruiter Hat
-5352,73,100 // Poporing Cap
-5356,384,100 // Festival Pumpkin Hat
-5359,73,100 // Ship Captain Hat
-5360,73,100 // Hyuke's Black Cat Ears
-5361,73,100 // Gangster Scarf
-5362,73,100 // Ninja Scroll
-5371,73,100 // Judge Hat
-5383,73,100 // Hunter's Cap
-5387,73,100 // Neko Mimi Kafra
-5389,73,100 // Angel Spirit
-5395,73,100 // Striped Hat
-5403,73,100 // Fish In Mouth
-5428,475,100 // RWC Anniversary Bread Envelope
-5451,475,100 // RWC 2008 Dragon Helm Gold
-5452,475,100 // RWC 2008 Dragon Helm Silver
-5453,475,100 // RWC 2008 Dragon Helm Copper
-5457,73,100 // Moon Rabbit Hat
-5476,73,100 // Grand Peco Hairband
-5479,65,100 // Shaman's Hair Decoration
-5480,65,100 // Bijofnil Wings
-5481,65,100 // Hermode Cap
-5482,65,100 // Dark Knight Mask
-5483,65,100 // Odin Mask
-5492,507,100 // Student Cap
-5493,507,100 // Ulle's Cap
-5494,507,100 // Sphinx Hat
-5495,73,100 // Power Of Thor
-5508,73,100 // Shark Hat
-5509,73,100 // Sting hat
-5511,73,100 // Samambaia
-5521,507,100 // Angry Mouth
-5527,73,100 // Lunatic Hat
-5532,73,100 // Pirate Dagger
-5536,507,100 // Spare Card
-5544,467,100 // Time Keeper Hat
-5545,73,100 // Aries Diadem
-5546,73,100 // Aries Crown
-5549,73,100 // Taurus Diadem
-5550,73,100 // Taurus Crown
-5554,73,100 // Octopus Hat
-5555,73,100 // Leaf Cat Hat
-5567,73,100 // Bright Fury
-5569,73,100 // Gemini Diadem
-5570,73,100 // Gemini Crown
-5574,73,100 // Well-Chewed Pencil
-5577,65,100 // Dark Knight Mask
-5579,73,100 // Wanderer's Sakkat
-5584,73,100 // Majestic Evil Horns
-5587,499,100 // Mosquito Coil
-5654,73,100 // Holy Marching Hat
-5667,73,100 // Skull Hood
-5668,499,100 // Weird Pumpkin Hat
-5738,73,100 // Snowman Hat
-5741,499,100 // Eternal Egg Shell
-5786,475,100 // Ancient Elven Ear
-5796,507,100 // Cheer Scarf
-5797,507,100 // Cheer Scarf2
-5798,507,100 // Cheer Scarf3
-5799,507,100 // Cheer Scarf4
-5856,507,100 // Passion FB Hat
-5857,507,100 // Cool FB Hat
-5858,507,100 // Victory FB Hat
-5859,507,100 // Glory FB Hat
-6052,507,100 // Ornament Hairpin
-6060,499,100 // Month Viewing Ticket
-6070,475,100 // Shaman's Document
-6071,475,100 // Broken Sword
-6072,475,100 // Bijofnil Feather
-6073,499,100 // Dragon's Mane
-6093,499,100 // Draco's Egg
-6101,499,100 // Attendance Card
-6102,507,100 // Report On Splendide
-6103,507,100 // Report On Manuk
-6116,507,100 // Succubus Pet Exchange Coupon
-6117,507,100 // Imp Pet Exchange Coupon
-6118,507,100 // Chung E Exchange Coupon
-6125,507,100 // Spring Time Box
-6126,507,100 // Summer Happy Box
-6127,507,100 // Purification Stone
-6129,507,100 // Nightmare Terror Exchange Coupon
-6130,507,100 // Loli Ruri Exchange Coupon
-6131,507,100 // Goblin Leader Exchange Coupon
-6132,507,100 // Incubus Exchange Coupon
-6133,507,100 // Miyabi Ningyo Exchange Coupon
-6134,507,100 // Giant Whisper Exchange Coupon
-6135,507,100 // Evil Nymph Exchange Coupon
-6136,507,100 // Medusa Exchange Coupon
-6137,507,100 // Stone Shooter Exchange Coupon
-6138,507,100 // Marionette Exchange Coupon
-6139,507,100 // Leaf Cat Exchange Coupon
-6140,507,100 // Dullahan Exchange Coupon
-6141,507,100 // Shinobi Exchange Coupon
-6142,507,100 // Golem Exchange Coupon
-6143,507,100 // Civil Servant Exchange Coupon
-6148,499,100 // Eternity Of Chocolate
-6149,499,100 // Simple Chocolate
-6150,507,100 // Key of The Mansion
-6206,499,100 // I Love You
-6207,499,100 // Thank You
-6208,499,100 // I Respect Yo
-6225,475,100 // HD Carnium
-6226,475,100 // HD Bradium
-6228,475,100 // Guarantee Weapon 9Up
-6229,475,100 // Guarantee Weapon 8Up
-6230,475,100 // Guarantee Weapon 7Up
-6231,475,100 // Guarantee Weapon 6Up
-6232,475,100 // Guarantee Armor 9Up
-6233,475,100 // Guarantee Armor 8Up
-6234,475,100 // Guarantee Armor 7Up
-6235,475,100 // Guarantee Armor 6Up
-6236,499,100 // Blue Card 7
-6238,475,100 // Guarantee Weapon 11Up
-6239,475,100 // Guarantee Armor 11Up
-6240,475,100 // HD Oridecon
-6241,475,100 // HD Elunium
-6242,457,100 // Midgard Coinu
-6296,499,100 // Training Notice
-6298,499,100 // Pumpkin Head Crushed
-6299,499,100 // Worn Cloth Piece
-6320,507,100 // Premium Reset Stone
-6345,499,100 // Love Ball
-6347,499,100 // Bless Word Paper
-6348,499,100 // Bless Word Paper
-6349,499,100 // Bless Word Paper
-6350,499,100 // Bless Word Paper
-6351,499,100 // Bless Word Paper
-6352,499,100 // Bless Word Paper
-6353,499,100 // Bless Word Paper
-6354,499,100 // Bless Word Paper
-6355,499,100 // Bless Word Paper
-6356,499,100 // Bless Word Paper
-6357,499,100 // Fortune Cookie Fail
-6358,507,100 // Free Cash Coupon
-6359,507,100 // Guidebook Exchange
-6377,467,100 // Buy Market Permit
-6456,475,100 // Guarantee Weapon 5Up
-6457,475,100 // Guarantee Armor 5Up
-7275,507,100 // Record of Ancient Language
-7276,507,100 // Doodled Message
-7580,499,100 // Black Marble
-7624,499,100 // Spring Stanza23
-7629,499,100 // Pink Gift Box
-7841,499,100 // Stained Piece Of Paper
-7842,499,100 // Torn Piece Of Paper
-7843,499,100 // Old Piece Of Paper
-7844,499,100 // Burnt Pieces Of Paper
-7895,499,100 // Rama5 Book
-7896,499,100 // Loykrathong Book
-7897,499,100 // Constitution Book
-7898,499,100 // VV Strong Balmung
-7899,499,100 // Dagger Of Psychic
-7900,507,100 // Jonathan Family Ring
-7901,507,100 // Jillberriel Family Ring
-7902,507,100 // Jessur Family Ring
-7903,507,100 // Jenoss Family Ring
-7904,507,100 // Piano Key
-7906,507,100 // Poppy Wreath
-7907,499,100 // Bobbin Of Goddess
-7912,507,100 // Portable Snowman Machine
-7913,507,100 // Battle Test Certificate
-7914,507,100 // Ancient Language Document
-7923,499,100 // Krathong
-7928,507,100 // Brazil National Flag
-7929,507,100 // Gold Coin
-7930,507,100 // Devil's Cattle Ring
-7944,73,100 // Sealed Box
-7949,499,100 // Woven Wool
-7951,507,100 // Golden Tulip Flower
-7952,507,100 // Gift Of Lomi Ross
-7953,507,100 // Gift Of Juliet
-7954,499,100 // Summer Festival Ticket
-7959,65,100 // Ancient Gold Coin
-7960,65,100 // Ancient Silver Coin
-7961,499,100 // Weapon Exchange
-7962,499,100 // Treasure Map1
-7963,499,100 // Treasure Map2
-7964,499,100 // Treasure Map3
-7965,499,100 // Treasure Map4
-7966,499,100 // Weird Parchment1
-7967,499,100 // Weird Parchment2
-7968,499,100 // Weird Parchment3
-7969,499,100 // Weird Parchment4
-7973,499,100 // Immortality Egg
-7974,499,100 // Illusion Piece
-7978,499,100 // Spring Stanza1
-7979,499,100 // Spring Stanza2
-7980,499,100 // Spring Stanza3
-7981,499,100 // Spring Stanza4
-7982,499,100 // Spring Stanza5
-7983,499,100 // Spring Stanza6
-7984,499,100 // Spring Stanza7
-7985,499,100 // Spring Stanza8
-7986,499,100 // Spring Stanza9
-7987,499,100 // Spring Stanza10
-7988,499,100 // Spring Stanza11
-7989,499,100 // Spring Stanza12
-7990,499,100 // Spring Stanza13
-7991,499,100 // Spring Stanza14
-7992,499,100 // Spring Stanza15
-7993,499,100 // Spring Stanza16
-7994,499,100 // Spring Stanza17
-7995,499,100 // Spring Stanza18
-7996,499,100 // Spring Stanza19
-7997,499,100 // Spring Stanza20
-7998,499,100 // Spring Stanza21
-7999,499,100 // Spring Stanza22
-9028,465,100 // Hard Rice Cake
-11503,475,100 // WoE White Potion
-11504,475,100 // WoE Blue Potion
-11505,507,100 // Iris
-11514,475,100 // Enriched Slim Pot
-12740,73,100 // Amplification Scroll
-12741,73,100 // Intellect Amplification Scroll
-12745,507,100 // Skull Scroll
-12746,499,100 // Destruction Scroll
-12754,499,100 // New Year Bun
-12755,499,100 // Traditional Firecrack
-12756,499,100 // New Gift Envelope
-12766,507,100 // Reward Job BM25
-12767,467,100 // Passion FB Hat Box
-12768,467,100 // Cool FB Hat Box
-12769,467,100 // Victory FB Hat Box
-12770,467,100 // Glory FB Hat Box
-12771,467,100 // Passion Hat Box2
-12772,467,100 // Cool Hat Box2
-12773,467,100 // Victory Hat Box2
-13043,507,100 // Fortune Sword
-13044,507,100 // Ice Pick
-13045,507,100 // Kamaitachi
-13308,507,100 // Huuma Blaze Shuriken
-13420,73,100 // Honglyun's Sword
-15001,507,100 // Odin's Blessing
-18500,507,100 // Cheer Scarf6
-18501,507,100 // Cheer Scarf8
-18502,507,100 // Cheer Scarf10
-5306,507,100 // Freya's Crown
-5307,73,100 // Carmen Miranda's Hat
-5308,73,100 // Brazil National Flag Hat
-5310,73,100 // Shining Electric Bulb Hairband
-5311,73,100 // Large Hisbiscus
-5312,73,100 // Ayothaya King's Hat
-5322,475,100 // Kerchief
-5358,73,100 // Peco Ears
-5367,73,100 // Hyegun Hat
-5385,457,100 // Yoyo Hat
-5388,73,100 // Snake Head Hat
-5397,73,100 // Scuba Gear
-5401,73,100 // Black Frame Glasses
-5402,73,100 // Mischievous Fairy
-5404,73,100 // Blue Ribbon
-5405,73,100 // Filir Hat
-5406,467,100 // Academy Freshman Hat
-5407,467,100 // Academy Completion Hat
-5423,73,100 // I Love China
-5429,73,100 // Bogy Cap
-5430,65,100 // Torch Cap
-5450,475,100 // Solar Hat
-5460,499,100 // Evolved Dragon Skull Hat
-5461,499,100 // Evolved Whisper Mask
-5464,507,100 // Zaha Doll Hat
-5478,457,100 // Classic Hat
-5490,457,100 // Anubis Helm
-5491,457,100 // Bandit Hat
-5496,457,100 // Dice Hat
-5497,457,100 // King Tiger Doll Hat
-5498,73,100 // Wandering Wolf Helm
-5499,73,100 // Pizza Hat
-5500,73,100 // Icecream Hat
-5501,457,100 // Pirate's Pride
-5504,73,100 // Wedding Weil
-5519,73,100 // Peacock Feather
-5526,73,100 // Tanigumi Girl Doll
-5528,457,100 // Frog King Hat
-5530,73,100 // Raven Cap
-5537,73,100 // Kwati Hat
-5538,73,100 // Tucan Hat
-5539,73,100 // Jaguar Hat
-5547,73,100 // RJC Katusa Flower
-5548,73,100 // Scarlet Rose
-5557,73,100 // Wild Rose Hat
-5564,73,100 // Crown of Deceit
-5565,507,100 // Dragon Arhat Mask
-5566,507,100 // Tiger Arhat Mask
-5581,73,100 // Cancer Diadem
-5582,73,100 // Cancer Crown
-5603,475,100 // RTC First Place
-5604,475,100 // RTC Second Place
-5605,475,100 // RTC Third Place
-5770,73,100 // Splash Hat
-5818,507,100 // Carnival Hat
-5819,507,100 // Carnival Circlet
-5821,507,100 // Gold Tulip Hairpin
-5822,499,100 // Love Chick Hat
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 3e913759f0..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,1143,1905,1906,1907
-// Battlefield
-RC2_BATTLEFIELD,1906,1909,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 8ac3331051..e9ad5b1e1b 100644
--- a/db/pre-re/mob_skill_db.txt
+++ b/db/pre-re/mob_skill_db.txt
@@ -714,12 +714,11 @@
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_RUN,idle,354,7,10000,0,30000,no,master,alchemist,,,,,,,26,
-1142,Marine Sphere@NPC_SELFDESTRUCTION,any,173,1,10000,3000,0,no,self,afterskill,354,,,,,,,
+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_SELFDESTRUCTION,idle,173,1,10000,0,0,yes,self,always,0,,,,,,,
-//1142,Marine Sphere@NPC_SPEEDUP,any,332,1,10000,0,700,yes,self,always,0,,,,,,,
+1142,Marine Sphere@NPC_SPEEDUP,idle,332,1,10000,0,700,yes,target,always,,,,,,,,
1143,Marionette@HT_FREEZINGTRAP,idle,121,5,500,0,300000,yes,around2,always,0,,,,,,29,
1143,Marionette@MG_FIREWALL,chase,18,5,500,500,5000,yes,target,always,0,,,,,,2,
1143,Marionette@NPC_TELEKINESISATTACK,attack,191,5,500,0,5000,yes,target,always,0,,,,,,6,
diff --git a/db/pre-re/pet_db.yml b/db/pre-re/pet_db.yml
index 73129ef65f..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
@@ -461,8 +461,8 @@ Body:
if( .@i >= PET_INTIMATE_LOYAL ){
bonus2 bAddRace,RC_Demihuman,2;
bonus2 bMagicAddRace,RC_DemiHuman,2;
- bonus2 bAddRace,RC_Player,2;
- bonus2 bMagicAddRace,RC_Player,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ bonus2 bMagicAddRace,RC_Player_Human,2;
}
- Mob: ALICE
TameItem: Sway_Apron
@@ -478,7 +478,7 @@ Body:
if( .@i >= PET_INTIMATE_LOYAL ){
bonus bMdef,1;
bonus2 bSubRace,RC_DemiHuman,1;
- bonus2 bSubRace,RC_Player,1;
+ bonus2 bSubRace,RC_Player_Human,1;
}
- Mob: EVENT_RICECAKE
EggItem: Rice_Cake_Egg
@@ -522,7 +522,7 @@ Body:
if( .@i >= PET_INTIMATE_LOYAL ){
bonus bDef,1;
bonus2 bSubRace,RC_DemiHuman,1;
- bonus2 bSubRace,RC_Player,1;
+ bonus2 bSubRace,RC_Player_Human,1;
}
- Mob: ECLIPSE_P
EggItem: Spring_Rabbit_Egg
@@ -670,7 +670,7 @@ Body:
if( .@i >= PET_INTIMATE_LOYAL ){
bonus2 bAddRace,RC_DemiHuman,3;
- bonus2 bAddRace,RC_Player,3;
+ bonus2 bAddRace,RC_Player_Human,3;
}
- Mob: SUCCUBUS
TameItem: Boy's_Naivety
@@ -839,6 +839,7 @@ Body:
if( .@i >= PET_INTIMATE_LOYAL ){
bonus2 bSubRace,RC_Brute,3;
+ bonus2 bSubRace,RC_Player_Doram,3;
}
- Mob: BACSOJIN_
TameItem: Shiny_Wing_Gown
diff --git a/db/pre-re/produce_db.txt b/db/pre-re/produce_db.txt
index d5d36204fa..72ea41ac47 100644
--- a/db/pre-re/produce_db.txt
+++ b/db/pre-re/produce_db.txt
@@ -618,15 +618,15 @@
//---- Create Bomb --- ItemLV=28 ---------------
//-- Apple Bomb <-- GN_MAKEBOMB Lv1, Apple Bomb CB, 1 Apple, 1 Scell, 1 Detonator, 1 Gun Powder
-246,13260,28,2496,1,6279,0,512,1,911,1,1051,1,6244,1
+//246,13260,28,2496,1,6279,0,512,1,911,1,1051,1,6244,1
//-- Coconut Bomb <-- GN_MAKEBOMB Lv1, Coconut Bomb CB, 1 Detonator, 1 Coconut Fruit, 2 Gun Powder
-247,13261,28,2496,1,6281,0,1051,1,6263,1,6244,2
+//247,13261,28,2496,1,6281,0,1051,1,6263,1,6244,2
//-- Melon Bomb <-- GN_MAKEBOMB Lv1, Melon Bomb CB, 1 Sticky Mucus, 1 Detonator, 2 Gun Powder, 1 Melon
-248,13262,28,2496,1,6282,0,938,1,1051,1,6244,2,6264,1
+//248,13262,28,2496,1,6282,0,938,1,1051,1,6244,2,6264,1
//-- Pineapple Bomb <-- GN_MAKEBOMB Lv1, Pinepple Bomb CB, 1 Cactus Needle, 1 Detonator, 3 Gun Powder, 1 Pineapple
-249,13263,28,2496,1,6280,0,952,1,1051,1,6244,3,6265,1
+//249,13263,28,2496,1,6280,0,952,1,1051,1,6244,3,6265,1
//-- Banana Bomb <-- GN_MAKEBOMB Lv1, Banana Bomb CB, 1 Banana, 1 Detonator, 4 Gun Powder, 1 Mould Powder
-250,13264,28,2496,1,6283,0,513,1,1051,1,6244,4,7001,1
+//250,13264,28,2496,1,6283,0,513,1,1051,1,6244,4,7001,1
//---- Special Pharmacy --- ItemLV=29 ----------
//-- Seed Of Horny Plant <-- GN_S_PHARMACY Lv1, Plant Genetic Grow, 10 Prickly Fruit
diff --git a/db/pre-re/quest_db.txt b/db/pre-re/quest_db.txt
deleted file mode 100644
index 013603284f..0000000000
--- a/db/pre-re/quest_db.txt
+++ /dev/null
@@ -1,3135 +0,0 @@
-// Quest Database
-//
-// Structure of Database:
-// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title
-//
-// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob.
-// If no MobID* is given, then any mob has a chance to drop the given ItemID*.
-
-1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Transcend"
-1001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Archer"
-1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Thief"
-1014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Swordman"
-1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest"
-1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaining base levels"
-
-// 2010 Headgear Quests
-1100,0,1178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo in the Sphinx Dungeon!"
-1101,0,1164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Sphinx Dungeon!"
-1102,0,1194,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!"
-1103,0,1213,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!"
-1104,0,1519,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-1105,0,1513,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-1106,0,1375,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!"
-1107,0,1403,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!"
-1108,0,1631,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-
-// Ropewa & Yuridi Quest
-1109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth"
-1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth"
-1111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth"
-1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth"
-1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart"
-1114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration"
-1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss"
-1116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song"
-1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring"
-1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues"
-1119,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - Cooldown"
-
-1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1152,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-
-// 2011 X-Mas Event
-1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-
-// Find Professor Worm's Memory
-1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-
-2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 1"
-2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 2"
-2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 3"
-2066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 4"
-2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 5"
-2068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 6"
-2069,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tierra Gorge Battle"
-2070,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flavius Battle"
-2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2143,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event"
-2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event"
-
-2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2150,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2151,0,1992,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2157,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Fairy"
-2159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Tree Giant"
-2179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2182,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rough Minerals"
-2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim"
-2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim"
-2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spirit of Alfheim"
-2186,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping Grenouille"
-
-2187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-
-2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-
-2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-2218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2221,600,1718,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2223,0,1428,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-
-// Secret in the Woods
-2271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Buwaya"
-
-// Pyramid (Nightmare)
-2289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting (Nightmare)"
-2290,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting - Cooldown"
-2291,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting - Cooldown"
-2292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting (Nightmare)"
-
-// New Novice Ground
-2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to Lisa"
-2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer"
-2301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Leave the boat"
-2302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Formation"
-
-//2315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Marathon"
-3029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Final test"
-//3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training"
-3032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk"
-3040,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet"
-3041,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet"
-3042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Cursed Baphomet Doll"
-3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
-3044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
-3045,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine"
-3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine After-effect"
-
-3050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1"
-3051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2"
-3052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3"
-3053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4"
-3054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5"
-3055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6"
-3056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7"
-3060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?"
-3061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!"
-3062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!"
-3063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?"
-3064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap"
-3065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients"
-3066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..."
-3067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants"
-3068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung"
-3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?"
-3070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!"
-3071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!"
-3072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained"
-3073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained"
-3074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained"
-3075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained"
-3076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained"
-3077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory"
-3078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!"
-3079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold"
-3080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold"
-3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!"
-3082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!"
-3083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key"
-3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Call from the commander"
-3086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Commander's Duty"
-3087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Rune Midgard"
-3088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Accident!"
-3089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - How to restore"
-3090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports"
-3091,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports"
-3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Success to restore!"
-3093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Report to the continent"
-3094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition"
-
-3100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt"
-3101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth"
-3102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..."
-3103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian"
-3104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer"
-3105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer"
-3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed"
-3107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful"
-3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer"
-3109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt"
-3110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond"
-3111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor"
-3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information"
-3116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator"
-3117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches"
-3118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!"
-3119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice"
-3120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang"
-3121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor"
-3122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes"
-3123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test"
-3124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
-3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
-3126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell"
-3127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
-3128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
-3129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter"
-3130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..."
-3131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!"
-3132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit"
-3133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!"
-3134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang"
-3135,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest"
-3136,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit"
-
-3200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight"
-3201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight"
-3202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
-3203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
-3204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test"
-3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3209,0,1504,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1"
-3210,0,1506,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2"
-3211,0,1508,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3"
-3212,0,1510,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4"
-3213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test"
-3216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
-3217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
-3218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test"
-3219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test"
-3220,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test"
-
-3250,0,1041,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - What is this bandage for?"
-3251,0,1271,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - An alligator of Counterattack"
-3252,0,1264,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - My mermaid don't do like this way!"
-3253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania"
-3254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A country wants you"
-3255,0,1166,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A wild boar subjugate operation"
-3256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Ready for waiting summer"
-3257,0,1170,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A grudge of women"
-3258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A material of delicacy"
-3259,0,1143,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A agony of a doll master"
-3260,0,1035,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Tiresome flies"
-3261,0,1026,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Unclean girl"
-3262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Queer hobby"
-3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A mallet of goblin"
-3265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania"
-
-4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sherin's Job Interview"
-4001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter - Test"
-4012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-
-// Following entries are depreciated - use 10000-10025
-//4015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser"
-//4016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Proof of Qualification"
-//4017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test"
-//4018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparations for Meeting Princes"
-//4020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The prince, Peter's Favor"
-//4029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Girl's Favor"
-//4030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
-//4031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
-//4032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy of the two families"
-//4033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death of Ahrum"
-
-4133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-4134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-4135,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-
-4154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus Researcher"
-4155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1"
-4156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2"
-4157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3"
-4158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4"
-4159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5"
-4160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6"
-
-4161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siege Expert"
-4162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Party Recruiting Expert"
-4163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battleground Expert"
-4164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon Expert"
-4165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Map Expert"
-4166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passing Grades"
-
-// Paradise 86 - 90 [Chilly]
-4167,0,1321,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dragon Tail Handling"
-4168,0,1322,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Spring Rabbit Handling"
-4169,0,1256,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pest Handling"
-4170,0,1102,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Bathory Handling"
-4171,0,1193,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Alarm Handling"
-4172,0,1882,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Babayaga Handling"
-4173,0,1512,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Hyegun Handling"
-4174,0,1403,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Antique Firelock Handling"
-4175,0,1417,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Zipper Bear Handling"
-4176,0,1155,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Earth Petite Handling"
-4177,0,1162,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rafflesia Handling"
-4178,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Venomous Handling"
-4179,0,1616,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pitman Handling"
-4180,0,1718,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Yellow Novus Handling"
-
-// Paradise 91 - 99 [Chilly]
-4181,0,1316,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Solider Handling"
-4182,0,1319,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Freezer Handling"
-4183,0,1318,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Heater Handling"
-4184,0,1257,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Injustice Handling"
-4185,0,1201,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rybio Handling"
-4186,0,1198,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dark Priest Handling"
-4187,0,1784,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Stapo Handling"
-4188,0,1782,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Roween Handling"
-4189,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Siroma Handling"
-4190,0,1401,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Shinobi Handling"
-4191,0,1416,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Evil Nymph Handling"
-4192,0,1109,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Deviruchi Handling"
-4193,0,1614,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Mineral Handling"
-4194,0,1072,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Kaho Handling"
-4195,0,1255,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Neraid Handling"
-4196,0,1506,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Disguise Handling"
-
-4197,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Octopus"
-
-// Paradise Cooldowns
-4198,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4199,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4200,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4201,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4202,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4203,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4204,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4205,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4206,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4207,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4208,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4209,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4210,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4211,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4212,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4213,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4214,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4215,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4216,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4217,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4218,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4219,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4220,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4221,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4222,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4223,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4224,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4225,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4226,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4227,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-
-4229,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Devil in the Cave"
-
-4254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairy with a stomache"
-4255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge!"
-4256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An accomplice?"
-4257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy"
-4258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eirinn"
-4259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bourbon"
-4260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee"
-4261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (1)"
-4262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (2)"
-4263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (1)"
-4264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (2)"
-4265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bookshelf use"
-4266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??"
-4267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??"
-//4303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//4304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//4305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-4999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Extermination Crisis"
-5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 7"
-5001,0,1037,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"King Froggie VII's revenge"
-5002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The hero of the frogs"
-5003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frog Hiding Skill"
-5004,0,1099,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food Shortage"
-
-// Researcher's Quest
-5016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bring me a Research Tool Bag"
-5017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher"
-5018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher"
-5019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Sample Studying"
-5020,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Researching"
-5021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting"
-5022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting"
-5023,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample"
-5024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eastern Pool Research"
-5025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Western Pool Research"
-5026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Southern Pool Research"
-5027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Northern Pool Research"
-5028,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample"
-5029,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unidentified Creature"
-5030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"News from the family"
-5035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5043,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5044,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5055,0,2071,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Headless Horse"
-5056,0,1584,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Tamruan"
-5057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Ready the Festival"
-5058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(1)"
-5059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(2)"
-5060,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Shock"
-5061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Am I scared?"
-5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eryu."
-5063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Stew."
-5064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Ketchup."
-5065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eff."
-5066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(1)"
-5067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(2)"
-5068,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting complaint"
-5069,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Token of honor"
-5070,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rock Paper Scissors"
-5071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chamchamcham"
-5072,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kkongnyangkkong"
-5073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Challenging of flag wave"
-5074,0,1158,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat's Meal"
-5075,0,1144,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Health food"
-5076,0,1282,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enemies"
-5077,0,1209,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reaction Training"
-5078,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light bird food"
-5079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to stabilize the mind"
-5080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lack of Snack"
-5081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banned foods"
-5082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cool food"
-5083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(1)"
-5084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(2)"
-5085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(1)"
-5086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(2)"
-5087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(1)"
-5088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(2)"
-5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(1)"
-5090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(2)"
-5091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Go Malangdo"
-
-5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5094,0,1002,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5095,0,1063,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5096,0,1007,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5097,0,1049,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-
-5109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor"
-5110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Rumored Character"
-5111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Lab..."
-5112,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laboratory Restricted Access"
-5113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Lord Knight"
-5114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Paladin"
-5115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Priest"
-5116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Champion"
-5117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Wizard"
-5118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Professor"
-5119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Whitesmith"
-5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Creator"
-5121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Assassin Cross"
-5122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Stalker"
-5123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Sniper"
-5124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Clown"
-5125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Gypsy"
-
-// Kagerou/Oboro Job Quest
-5131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Conversation"
-5132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(1)"
-5133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(2)"
-5134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New path"
-5135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"4 tests"
-5136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge test"
-5137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survival test"
-5138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weapons test"
-5139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The guy looks familiar!!"
-5140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uncertain chilliness"
-5141,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Got a curse!!"
-5142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(1)"
-5143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)"
-5144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)"
-5145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(3)"
-5146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle test"
-
-// 2012 Headgear Quests
-5161,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request[Stand by]"
-5162,0,1164,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5163,0,1102,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5164,0,1322,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5165,0,1386,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5166,0,1117,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5167,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5168,0,1269,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5169,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request[Stand by]"
-5170,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5171,0,1198,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5172,0,1784,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5173,0,1316,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5174,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collectiong request[Stand by]"
-5175,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5176,0,1148,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5177,0,1995,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5178,0,1310,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5179,0,1163,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5180,0,1993,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5181,0,1297,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5182,0,1699,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5225,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-5226,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-5227,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-
-6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Super Novice"
-6015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from Cougar"
-6016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from a Suspicious Man"
-6017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Leopard Joe's Reply"
-6018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cougar's Madness"
-6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Master Miller's Letter"
-6021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's voucher"
-6022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a voucher"
-6023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's Favor"
-6024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Gunslinger!"
-6025,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Guillaume"
-6026,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Croix"
-6027,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Indicator"
-7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
-7008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature"
-7009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar"
-7010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?"
-7011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
-7012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Case closed?"
-7038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes"
-7039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation"
-7040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation"
-7041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Politics is for the Politicians"
-7042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed"
-7043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed"
-7044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1"
-7045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2"
-7046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - warm rugs"
-7047,18000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Let's call it a day!"
-7048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor"
-7049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.."
-7054,0,1282,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Teach them a lesson!"
-7055,0,1261,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Not the cat!"
-7056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Too late!"
-7070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Return"
-7071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Invitation"
-//7072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-7074,0,2017,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rata Hunt"
-7075,0,2018,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Duneyrr Hunt"
-7076,0,2026,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanted: Dandelion"
-7077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs"
-7078,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs"
-7079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium"
-7080,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium"
-7081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman"
-7082,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman"
-
-7091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 01"
-7092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 02"
-7093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 03"
-7094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 04"
-7095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 05"
-7096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A message of Bercascell"
-7101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 1"
-7102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 2"
-7103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 3"
-7104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4"
-7105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4"
-7106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 5"
-7107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 6"
-7108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 7"
-7109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 8"
-7110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 9"
-7111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 10"
-7112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Madelle"
-7113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Crave"
-7114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Trovan"
-7115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a peddler"
-7116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a old man"
-
-// Novice Training Grounds
-7117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest!"
-7118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7122,0,1002,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"First battle - Poring Hunt"
-7123,0,1049,2,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Swordman"
-7124,0,1063,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Mage"
-//7125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"not used"
-7126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selling items"
-7127,0,1010,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Thief"
-
-7128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start"
-7129,0,1009,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1"
-7130,0,1107,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2"
-7131,0,1001,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3"
-7132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest"
-7133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start"
-7134,0,1051,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1"
-7135,0,1175,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2"
-7136,0,1005,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3"
-7137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest"
-7138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start"
-7139,0,1076,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1"
-7140,0,1031,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2"
-7141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest"
-7142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start"
-7143,0,1160,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1"
-7144,0,1095,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2"
-7145,0,1176,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3"
-7146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest"
-7147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start"
-7148,0,1686,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1"
-7149,0,1023,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2"
-7150,0,1273,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3"
-7151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest"
-7152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - start"
-7153,0,1153,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1"
-7154,0,1152,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2"
-7155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest"
-7156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start"
-7157,0,1264,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1"
-7158,0,1065,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2"
-7159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest"
-
-7160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram"
-7161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7164,0,2076,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of deception"
-7165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of deception"
-7166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop"
-7167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7171,0,2077,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of delusion"
-7172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of delusion"
-7173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message to Halled from Paul"
-7174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th"
-7175,0,2078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunft for shadow of gaiety"
-7176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of Gaiety"
-7177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A young guy in Lighthalzen"
-7178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety"
-7179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vicente, you dare!"
-7180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Doomk"
-
-7181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karakas's ring"
-
-// El Dicastes
-7182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha's Visit"
-7183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation from Sapha"
-7184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To El Dicastes!"
-7185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspector Doha"
-7186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation"
-7187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Shay"
-7188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Plaza"
-7189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Factory"
-7190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - at the Guards"
-7191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shay's designation - BK"
-7192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"BK's Information"
-7193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Crack Investigation"
-7194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this bloodstain?"
-7195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this skin piece?"
-7196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this suspicious magic power?"
-7197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha Certifications?"
-7198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Audience with Ahat"
-7199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Ahat"
-7200,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's call"
-7201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removing traces"
-7202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof"
-7203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Final Report"
-7206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Day for Cheshire"
-7207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's Box"
-7208,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wait for Cheshire?"
-7209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Forget the box."
-7210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily delivery"
-
-// Misty Forest Labyrinth
-7211,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration"
-7212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loki's Search"
-7213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wandering Protector"
-
-// Paradise Gear Advanced Quests [Chilly]
-7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training"
-7215,0,1278,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 1"
-7216,0,1278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 2"
-7217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3"
-7218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete"
-7219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training"
-7220,0,1192,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 1"
-7221,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 2"
-7222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete"
-7223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training"
-7224,0,1619,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 1"
-7225,0,1620,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Removed"
-7226,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)"
-7227,0,1622,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)"
-7228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete"
-7229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training"
-7230,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 1"
-7231,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 2"
-7232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete"
-7233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training"
-7234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor"
-7235,0,1988,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 1"
-7236,0,1995,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 2"
-7237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete"
-7238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Easy)"
-7239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Normal)"
-7240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strengthening Equipment"
-7241,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands - Tomorrow"
-7242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play with the baby cat"
-7243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass"
-7244,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
-7245,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
-7246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-I'm coming now."
-7247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!"
-//7248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-7249,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Bang! See you next time"
-7250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?"
-7251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting"
-7252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting"
-7253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting"
-7254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting"
-7255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting"
-7256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting"
-7257,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!"
-7258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Painting completed"
-7259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team"
-7260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The origin of Bugs"
-7261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Table"
-7262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Mattress"
-7263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Grill"
-7264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Chef Nyas"
-7265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of Chef Nyas"
-7266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Declaration of Chef Nyas"
-7267,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Appointed time with Cleanyang"
-7268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!"
-7269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place"
-7270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
-7271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs"
-7272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Corner"
-7273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Locker"
-7274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Foothold"
-7275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
-7276,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Promise to deliver more food"
-7281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-
-// Hall of Abyss
-7349,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vote"
-
-// Port Malaya
-7350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cautious Village"
-7351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button"
-7352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sailor Wants a Button"
-7353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man Wants a Button"
-7354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Young Man Wants a Button"
-7355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Merchant Wants a Button"
-7356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Kid Wants a Button"
-7357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button"
-7358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why do they want my Buttons?"
-7359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor"
-7360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man"
-7361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man"
-7362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant"
-7363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid"
-7364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man"
-7365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button-2"
-7366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1"
-7367,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2"
-7368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro"
-7369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo"
-7370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi"
-7371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon"
-7372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah"
-7373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel"
-7374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection for All"
-7375,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection Continues"
-7376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1"
-7377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2"
-7378,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades"
-7379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Peace Preacher"
-7380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection"
-7381,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High Demand on Spiritual Protection Material"
-7382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pedro"
-7383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Nardo"
-7384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pandoi"
-7385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Woeon"
-7386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Talah"
-7387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Romel"
-7388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maries's Child"
-7389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child"
-7390,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried about Maries's Child"
-7391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jejeling and Jejellopy"
-7392,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Jejellopy Regularly"
-7393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Silver Blade"
-7394,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Tomorrow"
-7395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghost on the Ferry Ship"
-7396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angry Soul on Ferry Ship"
-7397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki Phong's Advice"
-7398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki"
-7399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soul Diwata's Story"
-7400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki of Port Malaya"
-7401,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"All Aboard for Perry Sailing"
-7402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bouquet for Diwata"
-7403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stabilized Perry"
-7404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling"
-7405,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow"
-7406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Collecting Bones!"
-7407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Purified Bone"
-7408,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Come Back Tomorrow?"
-7409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cannot Meet Eyes with Him!"
-7410,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!"
-
-// Eclage
-7411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Fome's story"
-7412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Litrip's story"
-7413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Chiba's story"
-7414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage guard's message"
-7415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laphine's Chief of Staff"
-7416,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Waiting to meet"
-7417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's request"
-7418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 1"
-7419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 2"
-7420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 3"
-7421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"That's enough"
-7422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's gift"
-7423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 1"
-7424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 2"
-7425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 3"
-7426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 4"
-7427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"At times like this, face it straight on!"
-7428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yai of the wild"
-7429,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wild recent trend!"
-7430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliveryman that runs through space"
-7431,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A mailman never rests!"
-7432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The troublemakers in the land of blooming flowers"
-7433,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Need constant guidance"
-
-// Twins and Scholar of Magics
-7434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's big brother"
-7435,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for reading the letter"
-7436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant the Scholar of Magics"
-7437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shenime's favor"
-7438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret sponsorship"
-7439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime"
-7440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Minuel's witness"
-7441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mail is here!"
-7442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The identity of the scholar of magics"
-7443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interfere with the research!"
-7444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Avant was researching"
-
-// Orb
-7445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant's back"
-7446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unfruitful conversation"
-7447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dilemma surrounding the Orb"
-7448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Something's not right"
-7449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Temptation toward the Orb"
-7450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orb's lighting room"
-7451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Betrayal"
-7452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the chief of staff!"
-7453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last of the chief of staff"
-
-//7619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quitting Job Change"
-8001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Guild Master!"
-8007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acceptance from the Guild Master"
-8008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Applying for Job Change to Priest"
-8010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tarlock's Favor"
-8033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor"
-8034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor"
-8035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How the Airship Works"
-8036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hallen's Favor"
-8037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller"
-8038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller"
-8039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Fiancee"
-8045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tips from Kaci"
-8046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Passengers list"
-8047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Favor"
-8048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eukran's Testimony"
-8049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor"
-8050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Danger coming on to Thierry"
-8051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Medicine"
-8052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor"
-8053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Postell"
-8054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Postell"
-8055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nursing Allen"
-8056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little something in return"
-8057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grumbling Manainne"
-8058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with El Schatt"
-8059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Perfitz"
-8060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stubborn El Schatt"
-8061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stories of the past"
-8062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne"
-8063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne's spirit"
-8064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone"
-8090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Manson"
-8091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jenny the gardener"
-8092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Market"
-8093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Message"
-8094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Double Crossed?"
-8095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Phobe"
-8096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone Found"
-8097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Informing Jenny"
-8098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Keeping the Secret"
-8099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vincent's Recommendation"
-8100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Shendar's daughter"
-8107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Foreigner, Katinshuell"
-8109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent"
-8110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent"
-8111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring"
-8113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Katinshuell"
-8116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring"
-8118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Mr. Shendar"
-8119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell"
-8121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell"
-8122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's resting place"
-8123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
-8132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
-8133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Song of the fox"
-8134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boy at the Northern Shrine"
-8135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fox Expelled"
-8136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gray Wolf's Warning"
-8137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Keymaker"
-8138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blacksmith's Request"
-8139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key"
-8140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Red Ring"
-8141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mashenka's Red Ring"
-8142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Marsh"
-8143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Flute's Voice"
-8144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryubaba's Confession"
-8145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried Mother's Request"
-8146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Lusalka"
-8147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved"
-8148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved"
-8149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Igor"
-8150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Igor's message"
-8151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Marozka's Cave"
-8152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Thread"
-8153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of mind and wisdom"
-8154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Keymaker"
-8155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key"
-8168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Koshei, the Immortal"
-8169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-8170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-8171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-
-8181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster"
-8182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Push Back Theory"
-8183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster"
-8184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Converter"
-8185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Change"
-8186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fire Elemental Change"
-8187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Earth Elemental Change"
-8188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wind Elemental Change"
-8189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Water Elemental Change"
-8190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Wink"
-8191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Advisor"
-8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor"
-8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor"
-8194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Drunken Advisor"
-8195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kind Canell"
-8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Tripartite Union's Feud"
-8197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Delivery"
-8198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"United Research Official's Favor"
-8200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen's Document Requests"
-8201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Document"
-8202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration"
-8203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration"
-8204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen"
-8205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researchers' Meeting"
-8207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne is not guilty."
-8208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne's Favor"
-8209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hue's Report"
-8210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Order"
-8217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Message"
-8218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's order"
-8223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's order"
-8224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The clue"
-8225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Reasoning"
-8226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bankley's Death"
-8227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Return to Shurank"
-8228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prontera Market Research"
-8235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of Red Jewel"
-8242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of blue Jewel"
-8243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning new languages"
-8244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairies and Tree Giants"
-8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation"
-8246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation"
-8247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress"
-8248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress"
-8249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Compressing Information"
-8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Storage Gem"
-8251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Injection of Magic"
-8252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Handworked jewels"
-8253,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language translation device"
-
-8254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"with a light heart and body"
-8255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence"
-8256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence"
-8257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop"
-8258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop"
-8259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to a place for taking a practical technique test"
-8260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mission! Documents delivery"
-8261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!"
-8262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ranger master never again"
-
-8265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One time a one hour!"
-
-8266,0,1077,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting poison spore!"
-8267,0,1056,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting smokie!"
-8268,0,1033,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt elder wilow!"
-8269,0,1104,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt coco!"
-8270,0,1034,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog!"
-8271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toxic sprays delivery!"
-8272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a honey!"
-8273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a blanket!"
-8274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect bones!"
-8275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect feet!"
-8276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect scell!"
-8277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect tails!"
-8278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect cookies!"
-8279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect mustache!"
-
-9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Knight"
-9001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight"
-9002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight"
-9003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight"
-9006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight"
-9007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Etiquette as a Knight"
-9009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight"
-9010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quality of reverence"
-9011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight"
-9012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glory of a Knight!"
-9013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Certified as a Wizard!"
-9058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"O'Riley's Request"
-9059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Happy St. Patrick's Day"
-9117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9118,0,1109,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Deviruchi Hunt"
-9119,0,1291,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Wraith Dead Hunt"
-9120,0,1504,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Dullahan Hunt"
-9121,0,1379,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt"
-9122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An errand boy from Einbroch"
-// kRO
-//9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Mouse"
-//9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Mouse : present conditions"
-// iRO/cRO
-9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Hydra"
-9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Hydra : present conditions"
-9030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-9031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-9032,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-
-9155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown"
-9156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the Jaty Crown"
-9157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa"
-9158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(1)"
-9159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(2)"
-9161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(3)"
-9163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(4)"
-9165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown"
-
-9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire"
-9168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest Window Check"
-9169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue"
-9170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue"
-9171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanting Items"
-9172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanted Items"
-9173,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial Timer Cooldown"
-
-9222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bangungot from Hospital 2F"
-9223,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Will there be Peace at the Hospital?"
-9224,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore Hospital 2F"
-
-9225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 1"
-9226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 2"
-9227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 3"
-9228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 4"
-9229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 5"
-9230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 6"
-9231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 7"
-9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 8"
-9233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 9"
-9234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 10"
-9235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 11"
-9236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 12"
-9237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 13"
-9238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 14"
-9239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 15"
-9240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Observing Poppy"
-9253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messy bookshelf"
-9254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a damaged book"
-9255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a container for soda cans"
-9256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messed up table"
-9257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a foreign object"
-9258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Field examination results"
-9259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Confirming Cruyan's statements"
-9260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survey investigation notes"
-9262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 16"
-
-//9327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Prontera Royal Court"
-10001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test"
-10002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Review"
-10003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instructions on what to do"
-10004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interim Report"
-10005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Eigen Ahrum"
-10006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Ernst"
-10007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Poe"
-10008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Peter"
-10009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Urugen"
-10010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Helmut"
-10011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Erich"
-10012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation of the two princes"
-10013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the unknown girl"
-10014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Peter"
-10015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test 15"
-10016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Guest from the Walter Family"
-10017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy"
-10018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Poe"
-10019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Peter"
-10020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Erich"
-10021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen"
-10022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut"
-10023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-"
-10024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-"
-10025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good-bye, dear!"
-10026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search the knife"
-10035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver the knife"
-10036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Candy"
-10037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Crap Shells"
-10038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Conch"
-10039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Fish Tail"
-10040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-White Platter"
-10041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-?"
-10042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
-10043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
-10044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained"
-10045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained"
-10046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
-10047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
-10048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
-10049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
-10050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
-10051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
-10052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano"
-10053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot"
-10054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana"
-10055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Understanding the culture of Utan"
-10056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning Utan Language"
-10057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10085,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10087,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-
-10090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-
-10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon"
-10103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Glast heim"
-10104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Juno"
-10105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of a clock tower"
-10106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of localizing "
-10107,0,1164,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Requiem"
-10108,0,1140,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Marduk"
-10109,0,1154,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Pasana"
-10110,0,1260,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Dark Frame"
-10111,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Evil druid"
-10112,0,1192,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Wraith"
-10113,0,1276,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast Heim - Raydric Archer"
-10114,0,1369,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Grand Peco"
-10115,0,1386,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - sleeper"
-10116,0,1372,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Goat"
-10117,0,1376,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Harpy"
-10118,0,1269,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Clock"
-10119,0,1199,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Punk"
-10120,0,1195,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Rideword"
-10121,0,1883,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Uzhas"
-10122,0,1404,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Miyabi Doll"
-10123,0,1516,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Mi Gao"
-
-11000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's Request"
-11010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching the medicine"
-11011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medicine for two"
-11012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Makkie"
-11013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Plant Stem Powder"
-11014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The researcher's medicine"
-11015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siria's cure"
-11016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's story"
-11017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-// iRO Event Quest
-//11023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1"
-//11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2"
-//11025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3"
-//11026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4"
-//11027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5"
-//11028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6"
-11029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend"
-11100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend"
-11101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11104,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resting time"
-11105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilrion skin"
-
-11106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11113,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Until radering is functioning"
-
-11114,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet"
-11115,0,1009,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor"
-11116,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg"
-11117,0,1024,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm tail"
-11118,0,1014,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore"
-11119,0,1048,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control"
-11120,0,1055,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka"
-11121,0,1005,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar"
-11122,0,1019,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather"
-11123,0,1077,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore"
-11124,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet - Complete"
-11125,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor - Complete"
-11126,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete"
-11127,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete"
-11128,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore - Complete"
-11129,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control - Complete"
-11130,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka - Complete"
-11131,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete"
-11132,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather - Complete"
-11133,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete"
-
-11135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The sky, plane and travel sickness."
-11141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar"
-11142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fearful metalic sound"
-11143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos tower"
-11144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno manager : click"
-11145,0,1622,33,0,0,0,0,0,0,0,0,0,0,0,0,0,"I want to get the "
-11146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to ice tunnel..."
-11147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lared's dew"
-11148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toward Comodo with the bow"
-11149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..."
-11150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to the quiet place!..."
-11153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing watch top"
-11154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I will remember the memories with you...."
-11155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"undefinable battler"
-11156,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"annoying homework"
-11157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helmes valley "
-11158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the way for meditation"
-
-11159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Brian"
-11160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of John"
-11161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Tyler"
-11162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Rose"
-11163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Bain"
-11164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Lash"
-11165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Brian"
-11166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to John"
-11167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Tyler"
-11168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Rose"
-11169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Bain"
-11170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Lash"
-11171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage"
-11175,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage"
-11176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For my friends"
-
-// Mora
-11182,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Report"
-11183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Favor"
-11184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine"
-11185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef"
-11192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..."
-11193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sonya's Friend"
-11194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine"
-11195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..."
-11199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theo's Friend"
-11200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef"
-11206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quick Delivery Yoneseu"
-11207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Very Heavy Burden"
-11208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daphne"
-
-// Malangdo
-11209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hardships of Thomas"
-11210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits"
-11239,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits"
-11240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11243,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly"
-11245,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly"
-
-11284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-1"
-11285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-2"
-11286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-3"
-11287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-4"
-11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-5"
-11289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-6"
-11290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-7"
-11291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-8"
-11292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-9"
-11293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-10"
-11294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-11"
-11295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-12"
-11296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-13"
-11297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-14"
-11298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-15"
-11299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-16"
-11300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-17"
-11301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-18"
-11302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-19"
-11303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-20"
-11304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-21"
-11305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-22"
-11306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-23"
-11307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-24"
-11308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-25"
-11309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-26"
-
-11310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance"
-11311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance"
-11312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed"
-11334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed"
-11335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-11336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-11337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-
-//11366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-11378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trick or treat" // Halloween Event 2013
-
-12000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An old friend"
-12001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz, Maku's old friend"
-12002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger of Friendship"
-12003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz's message"
-12004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maku's other friend"
-12005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein"
-12006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's lost item"
-12007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kazien"
-12008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researcher Garins"
-12009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed mission"
-12010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No entrance"
-12011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lyozien"
-12012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet Mr. Ahman"
-12013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery complete"
-12014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More missions"
-12015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghalstein"
-12016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sneaking into the Laboratory"
-12017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Membership approved"
-12018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the President"
-12019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The President's Mission"
-12020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member"
-12021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder"
-12022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder"
-12023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shinokas the researcher"
-12024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kafra Corporation Agent"
-12025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurelle the traitor"
-12029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Engagement Ring"
-12030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Engagement Ring Found"
-12031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Annon"
-12032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Annon"
-12033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traces of blood"
-12034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Annon's side of the story"
-12035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holy Threads"
-12036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone Slate Message"
-12037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holier Threads"
-12038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger"
-12039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boonthom's Comrade"
-12040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Slums"
-12044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 1"
-12045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 2"
-12046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 3"
-12047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 4"
-12048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 5"
-12049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 1 - Rogue"
-12050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 2 - Rogue"
-12051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 3 - Rogue"
-12052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 4 - Rogue"
-12053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 5 - Rogue"
-12054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 6 - Rogue"
-12055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin"
-12056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin"
-12057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Lab"
-12058,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Admission Restricted to the 102 Tower"
-12059,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Memory Time Limit"
-12060,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Fishing Closed"
-12061,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Concentration"
-12062,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Mining Closed"
-12070,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limited time for enter"
-12071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stamp a seal on the attendance book"
-12072,0,1034,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog"
-12073,0,1248,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Cruiser"
-12074,0,1070,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Kukre"
-12075,0,1686,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcbaby"
-12076,0,1023,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcwarroir"
-12077,0,1066,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt vadon"
-12078,0,1064,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Megalodon"
-12079,0,1144,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marse"
-12080,0,1067,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cornutus"
-12081,0,1151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Myst"
-12082,0,1074,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt shellfish"
-12083,0,1142,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marine sphere"
-12084,0,1158,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Phen"
-12085,0,1152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcskeleton"
-12086,0,1177,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Zenorc"
-12087,0,1041,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove mummy"
-12088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Accomplishing a request"
-
-12090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious guy"
-12091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just save the burning heart"
-12092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Long lasting story"
-12093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"the record the intelligence Lyoda left"
-12094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The damaged shield letter"
-12096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Karakas"
-12097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basic preparation"
-12098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of dungeon"
-12099,0,2014,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Root Cause"
-12100,0,1994,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Violent Winged Insect"
-12101,0,2013,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Work Interference"
-12102,0,1993,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Intelligent Snakes"
-12103,0,1992,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legendary Creature"
-12104,0,1987,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insects with an Appetite"
-12105,0,2024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Moving Rocks"
-12106,0,1995,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"A child on a flower"
-12107,0,2015,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Twisted Love"
-12108,0,1988,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Plant Removal"
-12109,0,1999,14,0,0,0,0,0,0,0,0,0,0,0,0,0,"Larva Extermination"
-12110,0,2016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Demon of Water"
-12111,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bird with ugly face"
-12117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Withered Flower"
-12118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Welcomed Mineral"
-12119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Valuable Textile"
-12120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Curious Meat"
-12121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials to Clear Snow"
-12122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Cooler Material"
-12123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Paint"
-12124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rare Valuable"
-12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armory Material"
-12126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Advanced Armory Material"
-12127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supervisor's Tool"
-12128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparation for Heating"
-12129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Food"
-12130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Useful Material"
-12131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction"
-12132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction 2"
-12133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decoration arrangement"
-12134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instant Receptacle"
-12135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Not enough medicine"
-12136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Honey robber"
-12137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tools for Experiment"
-12138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fine Gift Samples"
-12139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect for Taste!"
-12140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Courtesy for Regulars"
-12141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special Package"
-12142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Request"
-12143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Trend"
-12144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown Usage"
-12145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Other World Cuisine"
-12146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Filling in Cracks"
-12147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adhesive Material"
-12148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bait for Tatacho Hunting"
-12149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordmanship Practice"
-12150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pretty reddish vegetable"
-12151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of the pub owner"
-12152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tastes like home cooking"
-12153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hazardous plant when burnt"
-12154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unexpectedly Normal"
-12155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift with heart"
-12156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect personal appetite!"
-12157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resolution of the pub owner"
-12158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of the pub owner"
-12159,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Laponte"
-12160,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Kalipo"
-12161,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Pura"
-12162,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Tragis"
-12163,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Calyon"
-12164,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Moltuka"
-12165,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dizziness"
-12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tree Root Doc."
-12167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reptile Tongue Doc."
-12168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scorpion Tail Doc."
-12169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stem Doc."
-12170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pointed Scale Doc."
-12171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resin Doc."
-12172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spawn Doc."
-12173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jellopy Doc."
-12174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fish Tail Doc."
-12175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worm Peeling Doc."
-12176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gill Doc."
-12177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tooth of Bat Doc."
-12178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fluff Doc."
-12179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chrysalis Doc."
-12180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather of Birds Doc."
-12181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talon Document Doc."
-12182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Webfoot Doc."
-12183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Animal Skin Doc."
-12184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wolf Claw Doc."
-12185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom Spore Doc."
-12186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Fang Doc."
-12187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evil Horn Doc."
-12188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Powder of Butterfly Doc."
-12189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bill of Birds Doc."
-12190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake Scale Doc."
-12191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Doc."
-12192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Doc."
-12193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Doc."
-12194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decayed Nail Doc."
-12195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horrendous Mouth Doc."
-12196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tentacle Doc."
-12197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Doc."
-12198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Doc."
-12199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Doc."
-12200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Doc."
-12201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee Sting Doc."
-12202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grasshopper's Leg Doc."
-12203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Royal Jelly Doc."
-12204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yoyo Tail Doc."
-12205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solid Shell Doc."
-12206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yam Doc."
-12207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raccoon Leaf Doc."
-12208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snail's Shell Doc."
-12209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Doc."
-12210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bear's Footskin Doc."
-12211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather Doc."
-12212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Herb Doc."
-12213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrot Doc."
-12214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cactus Needle Doc."
-12215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stone Heart Doc."
-12216,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouty Jahbong"
-12217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt"
-12218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to make lava elixir"
-12219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to creat flame elixir"
-12220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create glaicer elixir"
-12221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create fossil elixir"
-12222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create storm elixir"
-
-// Mora Coin Daily Quests
-12225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pom Spider Hunting"
-12226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angra Mantis Hunting"
-12227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Parus Hunting"
-12228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Fatam Hunting"
-12229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Miming Hunting"
-12230,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Monster Hunt"
-12231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Collecting"
-12232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Collecting"
-12233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Collecting"
-12234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orcish Voucher Collecting"
-12235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Skeleton Bone Collecting"
-12236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memento Collecting"
-12237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Collecting"
-12238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Collecting"
-12239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Collecting"
-12240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Collecting"
-12241,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 1"
-12242,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 2"
-
-// Missing Person Quests
-12243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tajareu"
-12244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tokenizer"
-12245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mesile"
-12246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Noir"
-12247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Pajama God"
-12248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mendel"
-12249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Miles"
-12250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Kunmune"
-12251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Chayihokin"
-12252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tuale"
-12253,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Person Search Time Limit"
-
-// Malangdo Culverts
-12254,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Now it's cleaning"
-12255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea crab"
-12256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea squid"
-12257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Ancient crustacean"
-12258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea shell"
-12259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient kukre"
-12260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea conch"
-12261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea horse"
-12262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sword fish"
-12263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sea god"
-12264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation anolian"
-12265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea mermaid"
-12266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt transformable kapha"
-12267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt weird coelacanth"
-12268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt dark coelacanth"
-12269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cruel coelacanth"
-12270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation coelacanth"
-12271,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert single day service"
-12272,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert single day service"
-12273,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert weekly service"
-12274,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert weekly service"
-
-12278,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Bakonawa Lake..."
-12279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-
-12280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A suspicious prisoner"
-12281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An unwanted favor"
-12282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gossip king Clever"
-12283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The rift researcher"
-12284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A cat merchant's source of information"
-12285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A way to calm down a cat"
-12286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information traded for some canned foods"
-12287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A weird experience"
-12288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A successful experience"
-12289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another visitation"
-12290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clever's historical documents"
-12291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden historical documents (?)"
-12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The unknown ones"
-12293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Figures in history"
-12294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of Eclage"
-12295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Error"
-12296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fun times with the reactor"
-12297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encountering Etran"
-12298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two wishes"
-12299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Robert"
-12300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Etran"
-12301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two remaining friends"
-
-// Old Glast Heim
-12317,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fake Keyblade"
-12318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy"
-12319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy"
-
-12363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"?????? ?? ??"
-
-13000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering"
-13001,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering - Hold"
-
-// eden 100-110
-13002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brigan collecting"
-13003,0,1267,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request"
-13004,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request timer"
-13005,0,1194,22,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request"
-13006,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request timer"
-13007,0,1206,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request"
-13008,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request timer"
-13009,0,1207,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request"
-13010,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request timer"
-13011,0,1310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request"
-13012,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request timer"
-13013,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request"
-13014,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request timer"
-13015,0,1994,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request"
-13016,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request timer"
-13017,0,1106,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request"
-13018,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request timer"
-13019,0,1775,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request"
-13020,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request timer"
-13021,0,1777,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request"
-13022,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request Timer"
-13023,0,1379,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request"
-13024,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request Timer"
-13025,0,1384,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flying Deleter Request"
-13026,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deleter Request Timer"
-13040,0,1505,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request"
-13041,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request Timer"
-13042,0,1148,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request"
-13043,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request Timer"
-13044,0,1098,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request"
-13045,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request Timer"
-13046,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request"
-13047,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer"
-13048,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request"
-13049,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer"
-
-13050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Laphine that loves the land"
-13051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The singing Laphine"
-13052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The watering Laphine"
-13053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The dancing Laphine"
-13054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The smiling Laphine"
-13055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"See if all the adventurers are safe"
-13056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporter Rossi"
-13057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer Euncheong"
-13058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Troublemaker New Oz"
-13059,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"End of project"
-13060,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Safety confirmation complete!"
-13061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support"
-13062,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support - complete"
-13063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off"
-13064,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off - complete"
-13065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting a souvenir"
-13066,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"This is enough for souvenirs"
-
-// eden 111-120
-13067,0,1163,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research"
-13068,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research - timer"
-13069,0,1132,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research"
-13070,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research - timer"
-13071,0,1208,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research"
-13072,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research - timer"
-13073,0,1699,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research"
-13074,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research - timer"
-13075,0,1698,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research"
-13076,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research - timer"
-13077,0,1295,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research"
-13078,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research - timer"
-13079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research"
-13080,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research - Wait"
-13081,0,2015,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research"
-13082,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research - timer"
-13083,0,1988,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research"
-13084,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research - timer"
-13085,0,1993,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research"
-13086,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research - timer"
-13087,0,1999,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research"
-13088,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research - timer"
-13089,0,1992,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research"
-13090,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research - timer"
-13091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research"
-13092,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research - Wait"
-13093,0,1297,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research"
-13094,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research - timer"
-13095,0,1374,10,1370,10,1390,10,0,0,0,0,0,0,0,0,0,"Geffenia expedition"
-13096,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffenia expedition - Wait"
-13097,0,1677,30,1678,30,1679,30,0,0,0,0,0,0,0,0,0,"Juperos expedition"
-13098,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juperos expedition - Wait"
-13099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw"
-13100,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw - Wait"
-
-// eden 121-130
-13107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search"
-13108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search"
-13109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search"
-13110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search"
-13111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Reporting results"
-13112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Reporting results"
-13113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nameless Island Search - Reporting results"
-13114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Reporting results"
-13115,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Wait"
-13116,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Wait"
-13117,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search - Wait"
-13118,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Wait"
-13119,0,1702,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution"
-13120,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution - Wait"
-13121,0,1703,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace"
-13122,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace - Wait"
-13123,0,1701,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter"
-13124,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter - Wait"
-13125,0,1700,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel"
-13126,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel - Wait"
-13127,0,1771,20,1772,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla"
-13128,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla - Wait"
-13129,0,1773,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin"
-13130,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin - Wait"
-13131,0,1769,20,1770,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio"
-13132,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio - Wait"
-13133,0,1865,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie"
-13134,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie - Wait"
-13135,0,1864,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter"
-13136,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter - Wait"
-13137,0,1867,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee"
-13138,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee - Wait"
-13139,0,1714,30,1717,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler"
-13140,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler - Wait"
-13141,0,1713,30,1716,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus"
-13142,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus - Wait"
-
-// eden 131-140
-13143,0,1652,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story"
-13144,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story - Wait"
-13145,0,1654,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story"
-13146,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story - Wait"
-13147,0,1653,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story"
-13148,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story - Wait"
-13149,0,1656,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story"
-13150,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story - Wait"
-13151,0,1655,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story"
-13152,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story - Wait"
-13153,0,1657,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story"
-13154,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story - Wait"
-13155,0,1918,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1"
-13156,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1 - Wait"
-13157,0,1919,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2"
-13158,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2 - Wait"
-13159,0,1921,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3"
-13160,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3 - Wait"
-13161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story"
-13162,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story - Wait"
-13163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story"
-13164,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story - Wait"
-13165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story"
-13166,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story - Wait"
-13167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story"
-13168,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story - Wait"
-
-14118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuhari's concern"
-14119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience"
-14120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 2"
-14121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 3"
-14122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for two"
-14123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuharu's favor"
-14125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Surveying the area"
-14126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie"
-14127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband"
-14128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Obtaining the research report"
-14131,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Analysis time"
-14133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another favor"
-14134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sharp Ms. Goatie"
-14135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Mr. Pompe"
-14136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A terrible scene in the field"
-14137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An interesting proposition"
-14138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The big corpse"
-14139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhuru"
-14140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhari"
-14141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredients for research"
-
-//14254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-// 2013 Christmas Event
-15055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : We are the great Single Union Army!"
-15056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Declare war against couples!"
-15057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Prepare the festival!"
-15059,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Cooldown Timer"
-15060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Kwami has joined"
-15061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Willer has joined"
-15062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Rinka has joined"
-15063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Jee has joined"
-15064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Marty has joined"
-
-16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Metz Brayde's Notice"
-16001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First examination"
-16002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -1"
-16003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -2"
-16004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -3"
-16005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -4"
-16006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -5"
-16007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -6"
-16008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!"
-16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!"
-16010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daewoon's Test"
-16011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Test"
-16012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Materials"
-16013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage"
-16014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage"
-16015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lady Jesqurienne"
-16016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge"
-16017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed Quiz Challenge"
-16018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz Challenge Triumph"
-16019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search for Dearles"
-16020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test"
-16021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of Appreciation"
-16022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test Part Two"
-16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rhythm Test Passed"
-16024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Bakerlan"
-16025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's delivery"
-16026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mahatra's delivery"
-16027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's Receipt"
-16028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Seylin"
-16029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Medicine"
-16030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients"
-16031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients"
-16032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seylin's Request"
-16033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Seylin"
-16034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Mahatra"
-16035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Bakerlan"
-16036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last Crumb"
-16037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Engel Howard"
-16038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Liana's Letter"
-16039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight"
-16040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Letter to Engel's Family"
-16041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talk to Liana"
-16042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sobbing Starlight Progress"
-16043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restored Sobbing Starlight"
-16044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight"
-16045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Starlight message"
-16046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The man in Umbala"
-16047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the Tree"
-16048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Papers"
-16049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Record of Ancient Language"
-16050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Fastidious Old Man"
-16051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blurry Vision"
-16052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translating the Document"
-16053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translated Ancient Language"
-16054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where the rejected live"
-16055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removed Curse"
-16057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the witch"
-16058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow"
-16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow"
-16060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard in Niflheim"
-16062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gen of Niflheim"
-16063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Witch's Aid"
-16064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Queen's Symbol"
-16066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of the Symbol"
-16067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of Asgard"
-16068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agrboda's Soul"
-16074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Symbol of the Nine Realms"
-16075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions"
-16076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Witch's Tonic"
-16077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Release"
-16078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Visit with Lady Hell"
-16079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign"
-16080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return"
-16081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions"
-16082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return"
-16083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Realization"
-16084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign"
-16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign"
-16086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign"
-16087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign"
-16101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious World Map"
-16118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden poem"
-16119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake swords"
-16120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A dream?"
-16121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Code?"
-16122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Copper Key"
-16123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Green Keycard"
-16124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Steel Box"
-16125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limberg's Request"
-16201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crack in the Wall"
-16205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Empty Lava Tube"
-17000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Father Bamph"
-17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Larjes"
-17002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Father Bamph"
-17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Rachel"
-17004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Veins"
-17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frustrated Magistrate"
-17006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interrogated Smugglers"
-17007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Written Orders"
-17008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating"
-17009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More Investigating"
-17010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Further Investigations"
-17011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurdi's Father"
-17012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karyn's Boat"
-17013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Island"
-17014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating the Island"
-17015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Research Note"
-17016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Regicide"
-17017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporting the King's Death"
-
-18001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lasda's Request"
-18005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesse's Request"
-18006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Approval"
-18007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust"
-18008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust"
-18009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the prison"
-18010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre the Spy"
-18030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail"
-18061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mikhail's Whereabouts"
-18062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail"
-18063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The isolated swamp"
-18064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the Village"
-18065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High-strength Adhesive"
-18066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the swamp"
-18067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the paste"
-18068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fixing the Matrushka"
-18069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Gallina"
-18070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banishing Winter"
-18071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust"
-18072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust"
-18073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dragon's Lair"
-18074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Magic Gourd Bottle"
-18075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech"
-18076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech"
-18077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Csar's Request"
-18078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine"
-18079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Winter is Banished"
-18100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legends from Moscovia"
-18101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island"
-18102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island"
-18103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island"
-18104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend"
-18105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing Charabel"
-18106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"As the Tide Turns"
-18107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing"
-18108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island?"
-18109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island???"
-18110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Aged Stranger"
-18111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!"
-18112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Story for the Csar"
-18113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evidence for the Csar"
-18114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Before Sunset"
-18115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing"
-18116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!"
-18117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials for Evidence"
-18118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Musical Instrument"
-18119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli"
-18120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli"
-18121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shafka"
-19101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-
-50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pirate Dagger materials"
-50001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weather Beaten Old Man"
-50002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?"
-50003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?"
-50004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A special lock pick"
-50011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The special lock pick"
-50012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Use the lock pick"
-50013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Broken lock pick"
-50015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger"
-50022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger's key materials"
-50023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with J Roger"
-50024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Buried treasure"
-50028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen treasure!"
-50029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Pirate's Spirit!"
-
-//60000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"60000"
-60001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect"
-60008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit"
-60009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc Hero"
-60010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Request"
-60011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Byalan"
-60012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Abyss"
-60013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Continuing the Investigation"
-60027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating Aldebaran"
-60028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lutie Field Monster Investigation"
-60033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Brother"
-60059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A history lesson"
-60060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crown of Deceit"
-60061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A magic solvent"
-60062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rendering the crown Inert"
-60101,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60102,0,1019,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60103,0,1019,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60104,0,1127,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60105,0,1127,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60106,0,1127,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60107,0,1007,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60108,0,1007,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60109,0,1007,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60110,0,1008,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60111,0,1008,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60112,0,1008,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60113,0,1104,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60114,0,1104,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60115,0,1104,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60116,0,1103,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60117,0,1103,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60118,0,1103,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60119,0,1271,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60120,0,1271,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60121,0,1271,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60122,0,1018,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60123,0,1018,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60124,0,1018,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60125,0,1378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60126,0,1378,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60127,0,1378,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60128,0,1110,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60129,0,1110,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60130,0,1110,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60131,0,1493,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60132,0,1493,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60133,0,1493,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60134,0,1119,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60135,0,1119,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60136,0,1119,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60137,0,1372,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60138,0,1372,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60139,0,1372,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60140,0,1040,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60141,0,1040,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60142,0,1040,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60143,0,1586,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60144,0,1586,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60145,0,1586,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60146,0,1076,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60147,0,1076,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60148,0,1076,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60149,0,1026,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60150,0,1026,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60151,0,1026,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60152,0,1170,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60153,0,1170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60154,0,1170,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60155,0,1403,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60156,0,1403,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60157,0,1403,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60158,0,1405,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60159,0,1405,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60160,0,1405,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60161,0,1675,25,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60162,0,1675,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60163,0,1675,75,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60164,0,1668,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60165,0,1668,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60166,0,1668,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60167,0,1776,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas"
-60168,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas"
-60169,0,1776,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siroma"
-60170,0,1777,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60171,0,1777,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60172,0,1777,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60173,0,1506,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60174,0,1506,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60175,0,1506,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60176,0,1505,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60177,0,1505,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60178,0,1505,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60179,0,1139,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60180,0,1139,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60181,0,1139,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60182,0,1514,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60183,0,1514,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60184,0,1514,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60185,0,1870,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60186,0,1870,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60187,0,1870,60,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60188,0,1365,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-60189,0,1365,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-60190,0,1365,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-
-60200,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect"
-60201,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit"
-60211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60301,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60302,0,1155,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60303,0,1714,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60304,0,1714,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60305,0,1717,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60306,0,1717,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60307,0,1713,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60308,0,1713,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60309,0,1716,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60310,0,1716,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-
-// iRO expanded upon the log entries of this quest.
-60351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-
-62238,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Midgardian Mercenary timer"
diff --git a/db/pre-re/quest_db.yml b/db/pre-re/quest_db.yml
new file mode 100644
index 0000000000..bf153a2c48
--- /dev/null
+++ b/db/pre-re/quest_db.yml
@@ -0,0 +1,7110 @@
+# 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 .
+#
+###########################################################################
+# Quest Database
+###########################################################################
+#
+# Quest Settings
+#
+###########################################################################
+# - Id Quest ID.
+# Title Quest title.
+# 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" (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.
+# If Mob is supplied, Count is required and the other fields are ignored.
+# If Id is supplied, at least one other field of Race/Size/Element/MinLevel/MaxLevel is required.
+# If Id is supplied, Count is required for each new entry.
+# - 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). 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.
+# Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1)
+# Rate Item drop rate. (10000 = 100%)
+###########################################################################
+
+Header:
+ Type: QUEST_DB
+ Version: 2
+
+Body:
+ - Id: 1000
+ Title: Transcend
+ - Id: 1001
+ Title: Job Change to Acolyte
+ - Id: 1002
+ Title: Job Change to Acolyte
+ - Id: 1003
+ Title: Job Change to Acolyte
+ - Id: 1004
+ Title: Job Change to Archer
+ - Id: 1005
+ Title: Job Change to Mage
+ - Id: 1006
+ Title: Job Change to Mage
+ - Id: 1007
+ Title: Job Change to Mage
+ - Id: 1008
+ Title: Job Change to Mage
+ - Id: 1009
+ Title: Job Change to Merchant
+ - Id: 1010
+ Title: Job Change to Merchant
+ - Id: 1011
+ Title: Job Change to Merchant
+ - Id: 1012
+ Title: Job Change to Merchant
+ - Id: 1013
+ Title: Job Change to Thief
+ - Id: 1014
+ Title: Job Change to Swordman
+ - Id: 1015
+ Title: Your first quest
+ - Id: 1016
+ Title: Gaining base levels
+ - Id: 1100
+ Title: Solo in the Sphinx Dungeon!
+ Targets:
+ - Mob: ZEROM
+ Count: 20
+ - Id: 1101
+ Title: Soloing Sphinx Dungeon!
+ Targets:
+ - Mob: REQUIEM
+ Count: 20
+ - Id: 1102
+ Title: Soloing Clock Tower!
+ Targets:
+ - Mob: ARCLOUSE
+ Count: 40
+ - Id: 1103
+ Title: Soloing Clock Tower!
+ Targets:
+ - Mob: HIGH_ORC
+ Count: 30
+ - Id: 1104
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CHUNG_E
+ Count: 20
+ - Id: 1105
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CIVIL_SERVANT
+ Count: 50
+ - Id: 1106
+ Title: Solo at Amatsu Dungeon!
+ Targets:
+ - Mob: THE_PAPER
+ Count: 20
+ - Id: 1107
+ Title: Solo at Amatsu Dungeon!
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 40
+ - Id: 1108
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CHUNG_E_
+ Count: 20
+ - Id: 1109
+ Title: Ropewa & Yuridi - Survivors of the Labyrinth
+ - Id: 1110
+ Title: Ropewa & Yuridi - Victims of the Labyrinth
+ - Id: 1111
+ Title: Ropewa & Yuridi - Maze in the Labyrinth
+ - Id: 1112
+ Title: Ropewa & Yuridi - Lost in the Labyrinth
+ - Id: 1113
+ Title: Ropewa & Yuridi - Torn Apart
+ - Id: 1114
+ Title: Ropewa & Yuridi - The Cost of Restoration
+ - Id: 1115
+ Title: Ropewa & Yuridi - Song of the Abyss
+ - Id: 1116
+ Title: Ropewa & Yuridi - Dead Man's Song
+ - Id: 1117
+ Title: Ropewa & Yuridi - Eternal Promise, Broken Ring
+ - Id: 1118
+ Title: Neighborhood Knight - I Need Clues
+ - Id: 1119
+ Title: Neighborhood Knight - Cooldown
+ TimeLimit: +23h
+ - Id: 1145
+ Title: Help the poor cat
+ - Id: 1146
+ Title: Help the poor cat
+ - Id: 1147
+ Title: Help the poor cat
+ - Id: 1148
+ Title: Help the poor cat
+ - Id: 1149
+ Title: Help the poor cat
+ - Id: 1150
+ Title: Help the poor cat
+ - Id: 1151
+ Title: Help the poor cat
+ - Id: 1152
+ Title: Help the poor cat
+ TimeLimit: +23h
+ - Id: 1153
+ Title: Help the poor cat
+ - Id: 1154
+ Title: Help the poor cat
+ - Id: 1155
+ Title: Help the poor cat
+ - Id: 1174
+ Title: Rumor, Time and Legend
+ - Id: 1175
+ Title: Rumor, Time and Legend
+ - Id: 1176
+ Title: Rumor, Time and Legend
+ - Id: 1177
+ Title: Rumor, Time and Legend
+ - Id: 1178
+ Title: Rumor, Time and Legend
+ - Id: 1179
+ Title: Rumor, Time and Legend
+ - Id: 1180
+ Title: Get Rid of Bakonawa
+ - Id: 1181
+ Title: Get Rid of Bakonawa
+ - Id: 1182
+ Title: Get Rid of Bakonawa
+ - Id: 1183
+ Title: Get Rid of Bakonawa
+ - Id: 1184
+ Title: Get Rid of Bakonawa
+ - Id: 1185
+ Title: Get Rid of Bakonawa
+ - Id: 1186
+ Title: Get Rid of Bakonawa
+ - Id: 1187
+ Title: Get Rid of Bakonawa
+ - Id: 1188
+ Title: Get Rid of Bakonawa
+ - Id: 1189
+ Title: Get Rid of Bakonawa
+ - Id: 1190
+ Title: Get Rid of Bakonawa
+ - Id: 1191
+ Title: Get Rid of Bakonawa
+ - Id: 1192
+ Title: Get Rid of Bakonawa
+ - Id: 1193
+ Title: Get Rid of Bakonawa
+ - Id: 1194
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1195
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1196
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1197
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1198
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1199
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1200
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1201
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1202
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1203
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1204
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1205
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1206
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1207
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1208
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1209
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1210
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1211
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1212
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1213
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1214
+ Title: Getting back Professor Worm's memory
+ - Id: 1215
+ Title: Getting back Professor Worm's memory
+ - Id: 1216
+ Title: Getting back Professor Worm's memory
+ - Id: 1217
+ Title: Getting back Professor Worm's memory
+ - Id: 1218
+ Title: Getting back Professor Worm's memory
+ - Id: 1219
+ Title: Getting back Professor Worm's memory
+ - Id: 1220
+ Title: Getting back Professor Worm's memory
+ - Id: 1221
+ Title: Getting back Professor Worm's memory
+ - Id: 1222
+ Title: Getting back Professor Worm's memory
+ - Id: 1223
+ Title: Getting back Professor Worm's memory
+ - Id: 1224
+ Title: Getting back Professor Worm's memory
+ - Id: 1225
+ Title: Getting back Professor Worm's memory
+ - Id: 1226
+ Title: Getting back Professor Worm's memory
+ - Id: 1227
+ Title: Getting back Professor Worm's memory
+ - Id: 1228
+ Title: Getting back Professor Worm's memory
+ - Id: 2000
+ Title: Job Change to Blacksmith
+ - Id: 2001
+ Title: Job Change to Blacksmith
+ - Id: 2002
+ Title: Job Change to Blacksmith
+ - Id: 2003
+ Title: Job Change to Blacksmith
+ - Id: 2004
+ Title: Job Change to Blacksmith
+ - Id: 2005
+ Title: Job Change to Blacksmith
+ - Id: 2006
+ Title: Job Change to Blacksmith
+ - Id: 2007
+ Title: Job Change to Blacksmith
+ - Id: 2008
+ Title: Job Change to Blacksmith
+ - Id: 2009
+ Title: Job Change to Blacksmith
+ - Id: 2010
+ Title: Job Change to Blacksmith
+ - Id: 2011
+ Title: Job Change to Blacksmith
+ - Id: 2012
+ Title: Job Change to Blacksmith
+ - Id: 2013
+ Title: Job Change to Blacksmith
+ - Id: 2014
+ Title: Job Change to Blacksmith
+ - Id: 2015
+ Title: Job Change to Blacksmith
+ - Id: 2016
+ Title: Job Change to Blacksmith
+ - Id: 2017
+ Title: Job Change to Rogue
+ - Id: 2018
+ Title: Job Change to Rogue
+ - Id: 2019
+ Title: Job Change to Rogue
+ - Id: 2020
+ Title: Job Change to Rogue
+ - Id: 2021
+ Title: Job Change to Rogue
+ - Id: 2022
+ Title: Job Change to Rogue
+ - Id: 2023
+ Title: Job Change to Rogue
+ - Id: 2024
+ Title: Job Change to Rogue
+ - Id: 2025
+ Title: Job Change to Rogue
+ - Id: 2026
+ Title: Job Change to Rogue
+ - Id: 2027
+ Title: Job Change to Rogue
+ - Id: 2028
+ Title: Job Change to Alchemist
+ - Id: 2029
+ Title: Job Change to Alchemist
+ - Id: 2030
+ Title: Job Change to Alchemist
+ - Id: 2031
+ Title: Job Change to Alchemist
+ - Id: 2032
+ Title: Job Change to Alchemist
+ - Id: 2033
+ Title: Job Change to Alchemist
+ - Id: 2034
+ Title: Job Change to Alchemist
+ - Id: 2035
+ Title: Job Change to Alchemist
+ - Id: 2036
+ Title: Job Change to Alchemist
+ - Id: 2037
+ Title: Job Change to Alchemist
+ - Id: 2038
+ Title: Job Change to Alchemist
+ - Id: 2039
+ Title: Job Change to Alchemist
+ - Id: 2040
+ Title: Job Change to Alchemist
+ - Id: 2041
+ Title: Job Change to Sage
+ - Id: 2042
+ Title: Job Change to Sage
+ - Id: 2043
+ Title: Job Change to Sage
+ - Id: 2044
+ Title: Job Change to Sage
+ - Id: 2045
+ Title: Job Change to Sage
+ - Id: 2046
+ Title: Job Change to Sage
+ - Id: 2047
+ Title: Job Change to Sage
+ - Id: 2048
+ Title: Job Change to Sage
+ - Id: 2049
+ Title: Job Change to Sage
+ - Id: 2050
+ Title: Job Change to Sage
+ - Id: 2051
+ Title: Job Change to Sage
+ - Id: 2052
+ Title: Job Change to Sage
+ - Id: 2053
+ Title: Job Change to Sage
+ - Id: 2054
+ Title: Job Change to Sage
+ - Id: 2055
+ Title: Job Change to Sage
+ - Id: 2056
+ Title: Job Change to Sage
+ - Id: 2057
+ Title: Job Change to Sage
+ - Id: 2058
+ Title: Job Change to Sage
+ - Id: 2059
+ Title: Job Change to Sage
+ - Id: 2060
+ Title: Job Change to Sage
+ - Id: 2061
+ Title: Job Change to Sage
+ - Id: 2062
+ Title: Job Change to Sage
+ - Id: 2063
+ Title: The Crow of the Fate - 1
+ - Id: 2064
+ Title: The Crow of the Fate - 2
+ - Id: 2065
+ Title: The Crow of the Fate - 3
+ - Id: 2066
+ Title: The Crow of the Fate - 4
+ - Id: 2067
+ Title: The Crow of the Fate - 5
+ - Id: 2068
+ Title: The Crow of the Fate - 6
+ - Id: 2069
+ Title: Tierra Gorge Battle
+ TimeLimit: +5mn
+ - Id: 2070
+ Title: Flavius Battle
+ TimeLimit: +5mn
+ - Id: 2071
+ Title: Cursed Property
+ - Id: 2072
+ Title: Cursed Property
+ - Id: 2073
+ Title: Cursed Property
+ - Id: 2074
+ Title: Cursed Property
+ - Id: 2075
+ Title: Cursed Property
+ - Id: 2076
+ Title: Cursed Property
+ - Id: 2077
+ Title: Cursed Property
+ - Id: 2078
+ Title: Cursed Property
+ - Id: 2079
+ Title: The past went wrong
+ - Id: 2080
+ Title: The past went wrong
+ - Id: 2081
+ Title: The past went wrong
+ - Id: 2082
+ Title: The past went wrong
+ - Id: 2083
+ Title: The past went wrong
+ - Id: 2084
+ Title: The past went wrong
+ - Id: 2085
+ Title: The past went wrong
+ - Id: 2086
+ Title: The Enterprise
+ - Id: 2087
+ Title: The Enterprise
+ - Id: 2088
+ Title: The Enterprise
+ - Id: 2089
+ Title: The Enterprise
+ - Id: 2090
+ Title: The Enterprise
+ - Id: 2091
+ Title: The Enterprise
+ - Id: 2092
+ Title: The Enterprise
+ - Id: 2093
+ Title: The Enterprise
+ - Id: 2094
+ Title: The Enterprise
+ - Id: 2095
+ Title: The Enterprise
+ - Id: 2109
+ Title: A Mage in the Ice Dungeon
+ - Id: 2110
+ Title: A Mage in the Ice Dungeon
+ - Id: 2111
+ Title: A Mage in the Ice Dungeon
+ - Id: 2112
+ Title: A Mage in the Ice Dungeon
+ - Id: 2113
+ Title: A Mage in the Ice Dungeon
+ - Id: 2114
+ Title: Thor Volcano base camp
+ - Id: 2115
+ Title: Thor Volcano base camp
+ - Id: 2116
+ Title: Thor Volcano base camp
+ - Id: 2117
+ Title: Thor Volcano base camp
+ - Id: 2118
+ Title: Thor Volcano base camp
+ - Id: 2119
+ Title: Thor Volcano base camp
+ - Id: 2120
+ Title: Thor Volcano base camp
+ - Id: 2121
+ Title: Thor Volcano base camp
+ - Id: 2122
+ Title: Thor Volcano base camp
+ - Id: 2123
+ Title: Thor Volcano base camp
+ - Id: 2124
+ Title: Thor Volcano base camp
+ - Id: 2125
+ Title: Thor Volcano base camp
+ - Id: 2126
+ Title: Thor Volcano base camp
+ - Id: 2127
+ Title: Thor Volcano base camp
+ - Id: 2128
+ Title: Thor Volcano base camp
+ - Id: 2129
+ Title: Thor Volcano base camp
+ - Id: 2130
+ Title: Thor Volcano base camp
+ - Id: 2131
+ Title: Thor Volcano base camp
+ - Id: 2132
+ Title: For Arunafeltz
+ - Id: 2133
+ Title: For Arunafeltz
+ - Id: 2134
+ Title: For Arunafeltz
+ - Id: 2135
+ Title: For Arunafeltz
+ - Id: 2136
+ Title: For Arunafeltz
+ - Id: 2137
+ Title: For Arunafeltz
+ - Id: 2138
+ Title: For Arunafeltz
+ - Id: 2139
+ Title: For Arunafeltz
+ - Id: 2140
+ Title: For Arunafeltz
+ - Id: 2141
+ Title: For Arunafeltz
+ - Id: 2142
+ Title: For Arunafeltz
+ - Id: 2143
+ Title: Guild Dungeon Event
+ TimeLimit: +50s
+ - Id: 2144
+ Title: Guild Dungeon Event
+ - Id: 2147
+ Title: Attitude to the New
+ - Id: 2148
+ Title: Attitude to the New
+ - Id: 2149
+ Title: Attitude to the New
+ - Id: 2150
+ Title: Attitude to the New
+ Targets:
+ - Mob: PINGUICULA
+ Count: 30
+ - Id: 2151
+ Title: Attitude to the New
+ Targets:
+ - Mob: CORNUS
+ Count: 10
+ - Id: 2152
+ Title: Attitude to the New
+ - Id: 2153
+ Title: Attitude to the New
+ - Id: 2154
+ Title: Attitude to the New
+ - Id: 2155
+ Title: Attitude to the New
+ - Id: 2156
+ Title: Attitude to the New
+ - Id: 2157
+ Title: Attitude to the New
+ Targets:
+ - Mob: TATACHO
+ Count: 10
+ - Id: 2158
+ Title: Finding a Fairy
+ - Id: 2159
+ Title: Finding a Tree Giant
+ - Id: 2179
+ Title: Dr. Lifeguard's request
+ - Id: 2180
+ Title: Dr. Lifeguard's request
+ - Id: 2181
+ Title: Dr. Lifeguard's request
+ - Id: 2182
+ Title: Rough Minerals
+ TimeLimit: +18h
+ - Id: 2183
+ Title: Flower of Alfheim
+ - Id: 2184
+ Title: Flower of Alfheim
+ - Id: 2185
+ Title: Spirit of Alfheim
+ - Id: 2186
+ Title: Helping Grenouille
+ TimeLimit: +18h
+ - Id: 2187
+ Title: Arch Bishop job changing quest
+ - Id: 2188
+ Title: Arch Bishop job changing quest
+ - Id: 2189
+ Title: Arch Bishop job changing quest
+ - Id: 2190
+ Title: Arch Bishop job changing quest
+ - Id: 2191
+ Title: Arch Bishop job changing quest
+ - Id: 2192
+ Title: Guarana quest
+ - Id: 2193
+ Title: Guarana quest
+ - Id: 2194
+ Title: Guarana quest
+ - Id: 2195
+ Title: Guarana quest
+ - Id: 2196
+ Title: Guarana quest
+ - Id: 2197
+ Title: Guarana quest
+ - Id: 2198
+ Title: Guarana quest
+ - Id: 2199
+ Title: Guarana quest
+ - Id: 2200
+ Title: Guarana quest
+ - Id: 2201
+ Title: Brasilis Water Lily
+ - Id: 2202
+ Title: Brasilis Water Lily
+ - Id: 2203
+ Title: Brasilis Water Lily
+ - Id: 2204
+ Title: Brasilis Water Lily
+ - Id: 2205
+ Title: Brasilis Water Lily
+ - Id: 2206
+ Title: Brasilis Water Lily
+ - Id: 2207
+ Title: Brasilis Water Lily
+ - Id: 2208
+ Title: Bathroom Ghost
+ - Id: 2209
+ Title: Generic Job Change Quest
+ - Id: 2210
+ Title: Generic Job Change Quest
+ - Id: 2211
+ Title: Generic Job Change Quest
+ - Id: 2212
+ Title: Generic Job Change Quest
+ - Id: 2213
+ Title: Generic Job Change Quest
+ - Id: 2214
+ Title: Generic Job Change Quest
+ - Id: 2215
+ Title: Generic Job Change Quest
+ - Id: 2216
+ Title: Generic Job Change Quest
+ - Id: 2217
+ Title: Generic Job Change Quest
+ - Id: 2218
+ Title: Wanderer Job Change Quest
+ - Id: 2219
+ Title: Wanderer Job Change Quest
+ - Id: 2220
+ Title: Wanderer Job Change Quest
+ - Id: 2221
+ Title: Wanderer Job Change Quest
+ TimeLimit: +10mn
+ Targets:
+ - Mob: NOVUS_
+ Count: 50
+ - Id: 2222
+ Title: Wanderer Job Change Quest
+ - Id: 2223
+ Title: Generic Job Change Quest
+ Targets:
+ - Mob: G_POISON_SPORE
+ Count: 100
+ - Id: 2271
+ Title: Secret in the Woods
+ - Id: 2272
+ Title: Secret in the Woods
+ - Id: 2273
+ Title: Secret in the Woods
+ - Id: 2274
+ Title: Secret in the Woods
+ - Id: 2275
+ Title: Secret in the Woods
+ - Id: 2276
+ Title: Secret in the Woods
+ - Id: 2277
+ Title: Secret in the Woods
+ - Id: 2278
+ Title: Secret in the Woods
+ - Id: 2279
+ Title: Secret in the Woods
+ - Id: 2280
+ Title: Secret in the Woods
+ - Id: 2281
+ Title: Get Rid of Buwaya
+ - Id: 2289
+ Title: Verit Hunting (Nightmare)
+ - Id: 2290
+ Title: Verit Hunting - Cooldown
+ TimeLimit: +23h
+ - Id: 2291
+ Title: Mummy Hunting - Cooldown
+ TimeLimit: +23h
+ - Id: 2292
+ Title: Mummy Hunting (Nightmare)
+ - Id: 2299
+ Title: "Training Center: Talk to Lisa"
+ - Id: 2300
+ Title: "Training Center: Talk to General Reindeer"
+ - Id: 2301
+ Title: "Training Center: Leave the boat"
+ - Id: 2302
+ Title: "Training Center: Formation"
+ - Id: 3000
+ Title: Job Change to Bard
+ - Id: 3001
+ Title: Job Change to Bard
+ - Id: 3002
+ Title: Job Change to Bard
+ - Id: 3003
+ Title: Job Change to Bard
+ - Id: 3004
+ Title: Job Change to Bard
+ - Id: 3006
+ Title: Job Change to Crusader
+ - Id: 3007
+ Title: Job Change to Crusader
+ - Id: 3008
+ Title: Job Change to Crusader
+ - Id: 3009
+ Title: Job Change to Crusader
+ - Id: 3010
+ Title: Job Change to Crusader
+ - Id: 3011
+ Title: Job Change to Crusader
+ - Id: 3012
+ Title: Job Change to Crusader
+ - Id: 3013
+ Title: Job Change to Crusader
+ - Id: 3014
+ Title: Job Change to Crusader
+ - Id: 3015
+ Title: Job Change to Crusader
+ - Id: 3016
+ Title: Job Change to Monk
+ - Id: 3017
+ Title: Job Change to Monk
+ - Id: 3018
+ Title: Job Change to Monk
+ - Id: 3019
+ Title: Job Change to Monk
+ - Id: 3020
+ Title: Job Change to Monk
+ - Id: 3021
+ Title: Job Change to Monk
+ - Id: 3022
+ Title: Job Change to Monk
+ - Id: 3023
+ Title: Job Change to Monk
+ - Id: 3024
+ Title: Job Change to Monk
+ - Id: 3025
+ Title: Job Change to Monk
+ - Id: 3026
+ Title: Job Change to Monk
+ - Id: 3027
+ Title: Job Change to Monk
+ - Id: 3028
+ Title: Job Change to Monk - Marathon
+ - Id: 3029
+ Title: Job Change to Monk - Final test
+ - Id: 3031
+ Title: Job Change to Monk - Spiritual Training
+ - Id: 3032
+ Title: Job Change to Monk - Become a Monk
+ - Id: 3040
+ Title: The Curse of Baphomet
+ TimeLimit: +12h
+ - Id: 3041
+ Title: The Curse of Baphomet
+ TimeLimit: +3mn
+ - Id: 3042
+ Title: The Cursed Baphomet Doll
+ - Id: 3043
+ Title: The Gigantic Magestic Goat
+ - Id: 3044
+ Title: The Gigantic Magestic Goat
+ - Id: 3045
+ Title: Sealed Shrine
+ TimeLimit: +2h
+ - Id: 3046
+ Title: Sealed Shrine After-effect
+ - Id: 3050
+ Title: Resurrection of Satan Morocc - 1
+ - Id: 3051
+ Title: Resurrection of Satan Morocc - 2
+ - Id: 3052
+ Title: Resurrection of Satan Morocc - 3
+ - Id: 3053
+ Title: Resurrection of Satan Morocc - 4
+ - Id: 3054
+ Title: Resurrection of Satan Morocc - 5
+ - Id: 3055
+ Title: Resurrection of Satan Morocc - 6
+ - Id: 3056
+ Title: Resurrection of Satan Morocc - 7
+ - Id: 3060
+ Title: Kids in Veins - Where's the Little Sis?
+ - Id: 3061
+ Title: Kids in Veins - Find a way to unlock the shackles!
+ - Id: 3062
+ Title: Kids in Veins - Find the Locksmith!
+ - Id: 3063
+ Title: Kids in Veins - Mr. Lockenlock?
+ - Id: 3064
+ Title: Kids in Veins - Organic Chamelepu Soap
+ - Id: 3065
+ Title: Kids in Veins - Soap Ingredients
+ - Id: 3066
+ Title: Kids in Veins - To make a Chamelepu Soap...
+ - Id: 3067
+ Title: Kids in Veins - Camel Appetite Stimulants
+ - Id: 3068
+ Title: Kids in Veins - Getting the Camel Dung
+ - Id: 3069
+ Title: Kids in Veins - Where's the Silk Sand Camel?
+ - Id: 3070
+ Title: Kids in Veins - Silk Sand Camel is gone!
+ - Id: 3071
+ Title: Kids in Veins - Silk Sand Camel is found!
+ - Id: 3072
+ Title: Kids in Veins - 1 lump of Camel dung obtained
+ - Id: 3073
+ Title: Kids in Veins - 2 lumps of Camel dung obtained
+ - Id: 3074
+ Title: Kids in Veins - 3 lumps of Camel dung obtained
+ - Id: 3075
+ Title: Kids in Veins - 4 lumps of Camel dung obtained
+ - Id: 3076
+ Title: Kids in Veins - 5 lumps of Camel dung obtained
+ - Id: 3077
+ Title: Kids in Veins - Go to Ms. Ivory
+ - Id: 3078
+ Title: Kids in Veins - Chamalepu Soap is completed!
+ - Id: 3079
+ Title: Kids in Veins - Making the key mold
+ - Id: 3080
+ Title: Kids in Veins - Bringing the key mold
+ - Id: 3081
+ Title: Kids in Veins - All you need is Steel!
+ - Id: 3082
+ Title: Kids in Veins - The Key is Made!
+ - Id: 3083
+ Title: Kids in Veins - Mr. Lockenlock's key
+ - Id: 3085
+ Title: Call from the commander
+ - Id: 3086
+ Title: Commander's Duty
+ - Id: 3087
+ Title: Report to Rune Midgard
+ - Id: 3088
+ Title: Report to the continent - Accident!
+ - Id: 3089
+ Title: Report to the continent - How to restore
+ - Id: 3090
+ Title: Report to the continent - Location of reports
+ - Id: 3091
+ Title: Report to the continent - Location of reports
+ TimeLimit: +30mn
+ - Id: 3092
+ Title: Report to the continent - Success to restore!
+ - Id: 3093
+ Title: Report to the continent - Report to the continent
+ - Id: 3094
+ Title: Report to the continent - Return to the expedition
+ - Id: 3100
+ Title: Consolidating Heavy Debt - Lost Bond of Debt
+ - Id: 3101
+ Title: Consolidating Heavy Debt - Strange Heap of Earth
+ - Id: 3102
+ Title: Consolidating Heavy Debt - Bond of Debt Found, but...
+ - Id: 3103
+ Title: Consolidating Heavy Debt - Inventor Dorian
+ - Id: 3104
+ Title: Consolidating Heavy Debt - Repair Materials of Magic Dryer
+ - Id: 3105
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer
+ - Id: 3106
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer Failed
+ - Id: 3107
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer Successful
+ - Id: 3108
+ Title: Consolidating Heavy Debt - Let's Run the Magic Dryer
+ - Id: 3109
+ Title: Consolidating Heavy Debt - Restoring the Bond of Debt
+ - Id: 3110
+ Title: Stolen Diamond - Tracking the Diamond
+ - Id: 3111
+ Title: Stolen Diamond - Leblo's Favor
+ - Id: 3112
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3113
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3114
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3115
+ Title: Stolen Diamond - Leblo's Information
+ - Id: 3116
+ Title: Stolen Diamond - Information from Rogue Investigator
+ - Id: 3117
+ Title: Stolen Diamond - Odd Switches
+ - Id: 3118
+ Title: Stolen Diamond - Diamond Found!
+ - Id: 3119
+ Title: Z Gang Wanted - Wanted Notice
+ - Id: 3120
+ Title: Z Gang Wanted - About Z Gang
+ - Id: 3121
+ Title: Z Gang Wanted - Valdes's Favor
+ - Id: 3122
+ Title: Z Gang Wanted - Information from Valdes
+ - Id: 3123
+ Title: Z Gang Wanted - Marybell's Test
+ - Id: 3124
+ Title: Z Gang Wanted - Challenging Moonho Ahn
+ - Id: 3125
+ Title: Z Gang Wanted - Challenging Moonho Ahn
+ - Id: 3126
+ Title: Z Gang Wanted - Information from Marybell
+ - Id: 3127
+ Title: Z Gang Wanted - Z Gang's Attack
+ - Id: 3128
+ Title: Z Gang Wanted - Z Gang's Attack
+ - Id: 3129
+ Title: Z Gang Wanted - Strange Letter
+ - Id: 3130
+ Title: Z Gang Wanted - Decrypting the letter...
+ - Id: 3131
+ Title: Z Gang Wanted - Code's Broken!
+ - Id: 3132
+ Title: Z Gang Wanted - Find the Z Gang's Agit
+ - Id: 3133
+ Title: Z Gang Wanted - Agit Found!
+ - Id: 3134
+ Title: Z Gang Wanted - Clean Sweep of Z Gang
+ - Id: 3135
+ Title: Nidhoggur's Nest
+ TimeLimit: +3d
+ - Id: 3136
+ Title: Nidhoggur's Nest Time Limit
+ TimeLimit: +4h
+ - Id: 3200
+ Title: Job changes to Rune knight - Recommendation for Rune knight
+ - Id: 3201
+ Title: Job changes to Rune knight - Secret rendezvous of Rune knight
+ - Id: 3202
+ Title: Job changes to Rune knight - The first test
+ - Id: 3203
+ Title: Job changes to Rune knight - The first test
+ - Id: 3204
+ Title: Job changes to Rune knight - Pass the first test
+ - Id: 3205
+ Title: Job changes to Rune knight - The second test
+ - Id: 3206
+ Title: Job changes to Rune knight - The second test
+ - Id: 3207
+ Title: Job changes to Rune knight - The second test
+ - Id: 3208
+ Title: Job changes to Rune knight - The second test
+ - Id: 3209
+ Title: Job changes to Rune knight - Accumulation of magic energy1
+ Targets:
+ - Mob: DULLAHAN
+ Count: 10
+ - Id: 3210
+ Title: Job changes to Rune knight - Accumulation of magic energy2
+ Targets:
+ - Mob: DISGUISE
+ Count: 10
+ - Id: 3211
+ Title: Job changes to Rune knight - Accumulation of magic energy3
+ Targets:
+ - Mob: QUVE
+ Count: 10
+ - Id: 3212
+ Title: Job changes to Rune knight - Accumulation of magic energy4
+ Targets:
+ - Mob: HYLOZOIST
+ Count: 10
+ - Id: 3213
+ Title: Job changes to Rune knight - The second test
+ - Id: 3214
+ Title: Job changes to Rune knight - The second test
+ - Id: 3215
+ Title: Job changes to Rune knight - Pass the second test
+ - Id: 3216
+ Title: Job changes to Rune knight - The final test
+ - Id: 3217
+ Title: Job changes to Rune knight - The final test
+ - Id: 3218
+ Title: Job changes to Rune knight - Pass the final test
+ - Id: 3219
+ Title: Job changes to Rune knight - The end of all test
+ - Id: 3220
+ Title: Job changes to Rune knight - Waiting time of test
+ TimeLimit: +10mn
+ - Id: 3250
+ Title: Request - What is this bandage for?
+ Targets:
+ - Mob: MUMMY
+ Count: 30
+ - Id: 3251
+ Title: Request - An alligator of Counterattack
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 30
+ - Id: 3252
+ Title: Request - My mermaid don't do like this way!
+ Targets:
+ - Mob: MERMAN
+ Count: 30
+ - Id: 3253
+ Title: Request - Missing occult mania
+ - Id: 3254
+ Title: Request - A country wants you
+ - Id: 3255
+ Title: Request - A wild boar subjugate operation
+ Targets:
+ - Mob: SAVAGE
+ Count: 30
+ - Id: 3256
+ Title: Request - Ready for waiting summer
+ - Id: 3257
+ Title: Request - A grudge of women
+ Targets:
+ - Mob: SOHEE
+ Count: 30
+ - Id: 3258
+ Title: Request - A material of delicacy
+ - Id: 3259
+ Title: Request - A agony of a doll master
+ Targets:
+ - Mob: MARIONETTE
+ Count: 30
+ - Id: 3260
+ Title: Request - Tiresome flies
+ Targets:
+ - Mob: HUNTER_FLY
+ Count: 30
+ - Id: 3261
+ Title: Request - Unclean girl
+ Targets:
+ - Mob: MUNAK
+ Count: 30
+ - Id: 3262
+ Title: Request - Queer hobby
+ - Id: 3263
+ Title: Request - A mallet of goblin
+ - Id: 3265
+ Title: Request - Missing occult mania
+ - Id: 4000
+ Title: Sherin's Job Interview
+ - Id: 4001
+ Title: Job Change to Hunter
+ - Id: 4002
+ Title: Job Change to Hunter
+ - Id: 4003
+ Title: Job Change to Hunter
+ - Id: 4004
+ Title: Job Change to Hunter
+ - Id: 4005
+ Title: Job Change to Hunter
+ - Id: 4006
+ Title: Job Change to Hunter
+ - Id: 4007
+ Title: Job Change to Hunter
+ - Id: 4008
+ Title: Job Change to Hunter
+ - Id: 4009
+ Title: Job Change to Hunter
+ - Id: 4010
+ Title: Job Change to Hunter
+ - Id: 4011
+ Title: Job Change to Hunter - Test
+ - Id: 4012
+ Title: Job Change to Hunter
+ - Id: 4013
+ Title: Job Change to Hunter
+ - Id: 4133
+ Title: Iara
+ - Id: 4134
+ Title: Iara
+ - Id: 4135
+ Title: Iara
+ TimeLimit: +1d
+ - Id: 4154
+ Title: Homunculus Researcher
+ - Id: 4155
+ Title: Homunculus S Mutation Mission - 1
+ - Id: 4156
+ Title: Homunculus S Mutation Mission - 2
+ - Id: 4157
+ Title: Homunculus S Mutation Mission - 3
+ - Id: 4158
+ Title: Homunculus S Mutation Mission - 4
+ - Id: 4159
+ Title: Homunculus S Mutation Mission - 5
+ - Id: 4160
+ Title: Homunculus S Mutation Mission - 6
+ - Id: 4161
+ Title: Siege Expert
+ - Id: 4162
+ Title: Party Recruiting Expert
+ - Id: 4163
+ Title: Battleground Expert
+ - Id: 4164
+ Title: Memorial Dungeon Expert
+ - Id: 4165
+ Title: Map Expert
+ - Id: 4166
+ Title: Passing Grades
+ - Id: 4167
+ Title: "Paradise: Dragon Tail Handling"
+ Targets:
+ - Mob: DRAGON_TAIL
+ Count: 30
+ - Id: 4168
+ Title: "Paradise: Spring Rabbit Handling"
+ Targets:
+ - Mob: SPRING_RABBIT
+ Count: 30
+ - Id: 4169
+ Title: "Paradise: Pest Handling"
+ Targets:
+ - Mob: PEST
+ Count: 30
+ - Id: 4170
+ Title: "Paradise: Bathory Handling"
+ Targets:
+ - Mob: BATHORY
+ Count: 30
+ - Id: 4171
+ Title: "Paradise: Alarm Handling"
+ Targets:
+ - Mob: ALARM
+ Count: 30
+ - Id: 4172
+ Title: "Paradise: Babayaga Handling"
+ Targets:
+ - Mob: VAVAYAGA
+ Count: 30
+ - Id: 4173
+ Title: "Paradise: Hyegun Handling"
+ Targets:
+ - Mob: HYEGUN
+ Count: 30
+ - Id: 4174
+ Title: "Paradise: Antique Firelock Handling"
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 30
+ - Id: 4175
+ Title: "Paradise: Zipper Bear Handling"
+ Targets:
+ - Mob: ZIPPER_BEAR
+ Count: 30
+ - Id: 4176
+ Title: "Paradise: Earth Petite Handling"
+ Targets:
+ - Mob: PETIT
+ Count: 30
+ - Id: 4177
+ Title: "Paradise: Rafflesia Handling"
+ Targets:
+ - Mob: RAFFLESIA
+ Count: 30
+ - Id: 4178
+ Title: "Paradise: Venomous Handling"
+ Targets:
+ - Mob: VENOMOUS
+ Count: 30
+ - Id: 4179
+ Title: "Paradise: Pitman Handling"
+ Targets:
+ - Mob: PITMAN
+ Count: 30
+ - Id: 4180
+ Title: "Paradise: Yellow Novus Handling"
+ Targets:
+ - Mob: NOVUS_
+ Count: 30
+ - Id: 4181
+ Title: "Paradise: Solider Handling"
+ Targets:
+ - Mob: SOLIDER
+ Count: 30
+ - Id: 4182
+ Title: "Paradise: Freezer Handling"
+ Targets:
+ - Mob: FREEZER
+ Count: 30
+ - Id: 4183
+ Title: "Paradise: Heater Handling"
+ Targets:
+ - Mob: HEATER
+ Count: 30
+ - Id: 4184
+ Title: "Paradise: Injustice Handling"
+ Targets:
+ - Mob: INJUSTICE
+ Count: 30
+ - Id: 4185
+ Title: "Paradise: Rybio Handling"
+ Targets:
+ - Mob: RYBIO
+ Count: 30
+ - Id: 4186
+ Title: "Paradise: Dark Priest Handling"
+ Targets:
+ - Mob: DARK_PRIEST
+ Count: 30
+ - Id: 4187
+ Title: "Paradise: Stapo Handling"
+ Targets:
+ - Mob: STAPO
+ Count: 30
+ - Id: 4188
+ Title: "Paradise: Roween Handling"
+ Targets:
+ - Mob: ROWEEN
+ Count: 30
+ - Id: 4189
+ Title: "Paradise: Siroma Handling"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 4190
+ Title: "Paradise: Shinobi Handling"
+ Targets:
+ - Mob: SHINOBI
+ Count: 30
+ - Id: 4191
+ Title: "Paradise: Evil Nymph Handling"
+ Targets:
+ - Mob: WICKED_NYMPH
+ Count: 30
+ - Id: 4192
+ Title: "Paradise: Deviruchi Handling"
+ Targets:
+ - Mob: DEVIRUCHI
+ Count: 30
+ - Id: 4193
+ Title: "Paradise: Mineral Handling"
+ Targets:
+ - Mob: MINERAL
+ Count: 30
+ - Id: 4194
+ Title: "Paradise: Kaho Handling"
+ Targets:
+ - Mob: KAHO
+ Count: 30
+ - Id: 4195
+ Title: "Paradise: Neraid Handling"
+ Targets:
+ - Mob: NERAID
+ Count: 30
+ - Id: 4196
+ Title: "Paradise: Disguise Handling"
+ Targets:
+ - Mob: DISGUISE
+ Count: 30
+ - Id: 4197
+ Title: Octopus
+ TimeLimit: +3h
+ - Id: 4198
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4199
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4200
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4201
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4202
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4203
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4204
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4205
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4206
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4207
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4208
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4209
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4210
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4211
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4212
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4213
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4214
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4215
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4216
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4217
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4218
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4219
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4220
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4221
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4222
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4223
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4224
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4225
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4226
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4227
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4229
+ Title: Devil in the Cave
+ TimeLimit: +23h
+ - Id: 4254
+ Title: Fairy with a stomache
+ - Id: 4255
+ Title: Revenge!
+ - Id: 4256
+ Title: An accomplice?
+ - Id: 4257
+ Title: Conspiracy
+ - Id: 4258
+ Title: Eirinn
+ - Id: 4259
+ Title: Bourbon
+ - Id: 4260
+ Title: Bee
+ - Id: 4261
+ Title: Counterattack (1)
+ - Id: 4262
+ Title: Counterattack (2)
+ - Id: 4263
+ Title: Counteroffensive (1)
+ - Id: 4264
+ Title: Counteroffensive (2)
+ - Id: 4265
+ Title: Bookshelf use
+ - Id: 4266
+ Title: ????? ??
+ - Id: 4267
+ Title: ????? ??
+ - Id: 4999
+ Title: Extermination Crisis
+ - Id: 5000
+ Title: The Crow of the Fate - 7
+ - Id: 5001
+ Title: King Froggie VII's revenge
+ Targets:
+ - Mob: SIDE_WINDER
+ Count: 50
+ - Id: 5002
+ Title: The hero of the frogs
+ - Id: 5003
+ Title: Frog Hiding Skill
+ - Id: 5004
+ Title: Food Shortage
+ Targets:
+ - Mob: ARGIOPE
+ Count: 50
+ - Id: 5016
+ Title: Bring me a Research Tool Bag
+ - Id: 5017
+ Title: Revenge of the Reseacher
+ - Id: 5018
+ Title: Revenge of the Reseacher
+ - Id: 5019
+ Title: Bathroom Sample Studying
+ - Id: 5020
+ Title: Sample Researching
+ TimeLimit: +1d
+ - Id: 5021
+ Title: Sample Collecting
+ - Id: 5022
+ Title: Sample Collecting
+ - Id: 5023
+ Title: Inspection of the Sample
+ TimeLimit: +6h
+ - Id: 5024
+ Title: Eastern Pool Research
+ - Id: 5025
+ Title: Western Pool Research
+ - Id: 5026
+ Title: Southern Pool Research
+ - Id: 5027
+ Title: Northern Pool Research
+ - Id: 5028
+ Title: Inspection of the Sample
+ TimeLimit: +12h
+ - Id: 5029
+ Title: Unidentified Creature
+ TimeLimit: +1h
+ - Id: 5030
+ Title: The creature's family
+ - Id: 5031
+ Title: The creature's family
+ - Id: 5032
+ Title: The creature's family
+ - Id: 5033
+ Title: The creature's family
+ - Id: 5034
+ Title: News from the family
+ - Id: 5035
+ Title: Help the old man!
+ - Id: 5036
+ Title: Help the old man!
+ - Id: 5037
+ Title: Help the old man!
+ - Id: 5038
+ Title: Help the old man!
+ - Id: 5039
+ Title: Help the old man!
+ - Id: 5040
+ Title: Help the old man!
+ - Id: 5041
+ Title: Help the old man!
+ - Id: 5042
+ Title: Help the old man!
+ - Id: 5043
+ Title: Help the old man!
+ TimeLimit: +5mn
+ - Id: 5044
+ Title: Help the old man!
+ TimeLimit: +1d
+ - Id: 5045
+ Title: Help the old man!
+ - Id: 5046
+ Title: Help the old man!
+ - Id: 5047
+ Title: Help the old man!
+ - Id: 5048
+ Title: Help the old man!
+ - Id: 5049
+ Title: Help the old man!
+ - Id: 5050
+ Title: Help the old man!
+ - Id: 5051
+ Title: Help the old man!
+ - Id: 5052
+ Title: Traditional Weapon
+ - Id: 5053
+ Title: Traditional Weapon
+ - Id: 5054
+ Title: Traditional Weapon
+ - Id: 5055
+ Title: Local Rising - Headless Horse
+ Targets:
+ - Mob: HEADLESS_MULE
+ Count: 15
+ - Id: 5056
+ Title: Local Rising - Tamruan
+ Targets:
+ - Mob: TAMRUAN
+ Count: 15
+ - Id: 5057
+ Title: Local Rising - Ready the Festival
+ - Id: 5058
+ Title: The mood of the players-(1)
+ - Id: 5059
+ Title: The mood of the players-(2)
+ - Id: 5060
+ Title: Cat Shock
+ TimeLimit: +3mn
+ - Id: 5061
+ Title: Am I scared?
+ - Id: 5062
+ Title: I met Eryu.
+ - Id: 5063
+ Title: I met Stew.
+ - Id: 5064
+ Title: I met Ketchup.
+ - Id: 5065
+ Title: I met Eff.
+ - Id: 5066
+ Title: Scary image-(1)
+ - Id: 5067
+ Title: Scary image-(2)
+ - Id: 5068
+ Title: Collecting complaint
+ TimeLimit: +20h
+ - Id: 5069
+ Title: Token of honor
+ TimeLimit: +1h
+ - Id: 5070
+ Title: Rock Paper Scissors
+ TimeLimit: +1d
+ - Id: 5071
+ Title: Chamchamcham
+ TimeLimit: +1d
+ - Id: 5072
+ Title: Kkongnyangkkong
+ TimeLimit: +1d
+ - Id: 5073
+ Title: Challenging of flag wave
+ TimeLimit: +1d
+ - Id: 5074
+ Title: Cat's Meal
+ Targets:
+ - Mob: PHEN
+ Count: 30
+ - Id: 5075
+ Title: Health food
+ Targets:
+ - Mob: MARSE
+ Count: 50
+ - Id: 5076
+ Title: Enemies
+ Targets:
+ - Mob: KOBOLD_ARCHER
+ Count: 30
+ - Id: 5077
+ Title: Reaction Training
+ Targets:
+ - Mob: CRAMP
+ Count: 10
+ - Id: 5078
+ Title: Light bird food
+ Targets:
+ - Mob: PECOPECO
+ Count: 50
+ - Id: 5079
+ Title: How to stabilize the mind
+ - Id: 5080
+ Title: Lack of Snack
+ - Id: 5081
+ Title: Banned foods
+ - Id: 5082
+ Title: Cool food
+ - Id: 5083
+ Title: Please come back Eryu-(1)
+ - Id: 5084
+ Title: Please come back Eryu-(2)
+ - Id: 5085
+ Title: Please come back Stew-(1)
+ - Id: 5086
+ Title: Please come back Stew-(2)
+ - Id: 5087
+ Title: Please come back Ketchup-(1)
+ - Id: 5088
+ Title: Please come back Ketchup-(2)
+ - Id: 5089
+ Title: Please come back Eff-(1)
+ - Id: 5090
+ Title: Please come back Eff-(2)
+ - Id: 5091
+ Title: Go Malangdo
+ - Id: 5092
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5093
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5094
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: PORING
+ Count: 1000
+ - Id: 5095
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: LUNATIC
+ Count: 1000
+ - Id: 5096
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: FABRE
+ Count: 1000
+ - Id: 5097
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: PICKY
+ Count: 1000
+ - Id: 5098
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5099
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5100
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5109
+ Title: Light but Unconfirmed Rumor
+ - Id: 5110
+ Title: The Rumored Character
+ - Id: 5111
+ Title: To the Lab...
+ - Id: 5112
+ Title: Laboratory Restricted Access
+ TimeLimit: +3d
+ - Id: 5113
+ Title: "[Rest] Lord Knight"
+ - Id: 5114
+ Title: "[Rest] Paladin"
+ - Id: 5115
+ Title: "[Rest] High Priest"
+ - Id: 5116
+ Title: "[Rest] Champion"
+ - Id: 5117
+ Title: "[Rest] High Wizard"
+ - Id: 5118
+ Title: "[Rest] Professor"
+ - Id: 5119
+ Title: "[Rest] Whitesmith"
+ - Id: 5120
+ Title: "[Rest] Creator"
+ - Id: 5121
+ Title: "[Rest] Assassin Cross"
+ - Id: 5122
+ Title: "[Rest] Stalker"
+ - Id: 5123
+ Title: "[Rest] Sniper"
+ - Id: 5124
+ Title: "[Rest] Clown"
+ - Id: 5125
+ Title: "[Rest] Gypsy"
+ - Id: 5131
+ Title: Strange Conversation
+ - Id: 5132
+ Title: Family Business-(1)
+ - Id: 5133
+ Title: Family Business-(2)
+ - Id: 5134
+ Title: New path
+ - Id: 5135
+ Title: 4 tests
+ - Id: 5136
+ Title: Knowledge test
+ - Id: 5137
+ Title: Survival test
+ - Id: 5138
+ Title: Weapons test
+ - Id: 5139
+ Title: The guy looks familiar!!
+ - Id: 5140
+ Title: Uncertain chilliness
+ - Id: 5141
+ Title: Got a curse!!
+ TimeLimit: +2mn
+ - Id: 5142
+ Title: Prototype-(1)
+ - Id: 5143
+ Title: Prototype-(2)
+ - Id: 5144
+ Title: Prototype-(2)
+ - Id: 5145
+ Title: Prototype-(3)
+ - Id: 5146
+ Title: Battle test
+ - Id: 5161
+ Title: Low Level collection request[Stand by]
+ TimeLimit: +1d
+ - Id: 5162
+ Title: Low Level collection request
+ Targets:
+ - Mob: REQUIEM
+ Count: 100
+ - Id: 5163
+ Title: Low Level collection request
+ Targets:
+ - Mob: BATHORY
+ Count: 100
+ - Id: 5164
+ Title: Low Level collection request
+ Targets:
+ - Mob: SPRING_RABBIT
+ Count: 100
+ - Id: 5165
+ Title: Low Level collection request
+ Targets:
+ - Mob: SLEEPER
+ Count: 100
+ - Id: 5166
+ Title: Low Level collection request
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 100
+ - Id: 5167
+ Title: Low Level collection request
+ Targets:
+ - Mob: PETIT
+ Count: 100
+ - Id: 5168
+ Title: Low Level collection request
+ Targets:
+ - Mob: CLOCK
+ Count: 100
+ - Id: 5169
+ Title: Mid-Level collection request[Stand by]
+ TimeLimit: +1d
+ - Id: 5170
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: SIROMA
+ Count: 100
+ - Id: 5171
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: DARK_PRIEST
+ Count: 100
+ - Id: 5172
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: STAPO
+ Count: 100
+ - Id: 5173
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: SOLIDER
+ Count: 100
+ - Id: 5174
+ Title: High level collectiong request[Stand by]
+ TimeLimit: +1d
+ - Id: 5175
+ Title: High level collection request
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 100
+ - Id: 5176
+ Title: High level collection request
+ Targets:
+ - Mob: MEDUSA
+ Count: 100
+ - Id: 5177
+ Title: High level collection request
+ Targets:
+ - Mob: PINGUICULA
+ Count: 100
+ - Id: 5178
+ Title: High level collection request
+ Targets:
+ - Mob: MAJORUROS
+ Count: 100
+ - Id: 5179
+ Title: Highest level collection request
+ Targets:
+ - Mob: RAYDRIC
+ Count: 100
+ - Id: 5180
+ Title: Highest level collection request
+ Targets:
+ - Mob: NAGA
+ Count: 100
+ - Id: 5181
+ Title: Highest level collection request
+ Targets:
+ - Mob: ANCIENT_MUMMY
+ Count: 100
+ - Id: 5182
+ Title: Highest level collection request
+ Targets:
+ - Mob: ANCIENT_MIMIC
+ Count: 100
+ - Id: 5222
+ Title: Saving the energy crystals
+ - Id: 5223
+ Title: Saving the energy crystals
+ - Id: 5224
+ Title: Saving the energy crystals
+ - Id: 5225
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 5226
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 5227
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 6000
+ Title: Job Change to Taekwon
+ - Id: 6001
+ Title: Job Change to Taekwon
+ - Id: 6002
+ Title: Job Change to Taekwon
+ - Id: 6005
+ Title: Job Change to Soul-Linker
+ - Id: 6006
+ Title: Job Change to Soul-Linker
+ - Id: 6007
+ Title: Job Change to Soul-Linker
+ - Id: 6008
+ Title: Job Change to Soul-Linker
+ - Id: 6010
+ Title: Job Change to Super Novice
+ - Id: 6015
+ Title: A favor from Cougar
+ - Id: 6016
+ Title: A favor from a Suspicious Man
+ - Id: 6017
+ Title: Red Leopard Joe's Reply
+ - Id: 6018
+ Title: Cougar's Madness
+ - Id: 6020
+ Title: Master Miller's Letter
+ - Id: 6021
+ Title: Wise Bull Horn's voucher
+ - Id: 6022
+ Title: Making a voucher
+ - Id: 6023
+ Title: Wise Bull Horn's Favor
+ - Id: 6024
+ Title: Job Change to Gunslinger!
+ - Id: 6025
+ Title: KVM Guillaume
+ TimeLimit: +5mn
+ - Id: 6026
+ Title: KVM Croix
+ TimeLimit: +5mn
+ - Id: 6027
+ Title: KVM Indicator
+ TimeLimit: +5mn
+ - Id: 7000
+ Title: Job Change to Dancer!
+ - Id: 7001
+ Title: Job Change to Dancer!
+ - Id: 7002
+ Title: Job Change to Dancer!
+ - Id: 7003
+ Title: Job Change to Dancer!
+ - Id: 7004
+ Title: Job Change to Dancer!
+ - Id: 7005
+ Title: Job Change to Dancer!
+ - Id: 7006
+ Title: Job Change to Dancer!
+ - Id: 7007
+ Title: Warrior of the Sun, the Moon, and the Stars
+ - Id: 7008
+ Title: Warrior of the Sun, the Moon, and the Stars - Nature
+ - Id: 7009
+ Title: Warrior of the Sun, the Moon, and the Stars - the Altar
+ - Id: 7010
+ Title: Warrior of the Sun, the Moon, and the Stars - Stars?
+ - Id: 7011
+ Title: Warrior of the Sun, the Moon, and the Stars
+ - Id: 7012
+ Title: Pursuing Rayan Moore
+ - Id: 7013
+ Title: Pursuing Rayan Moore
+ - Id: 7014
+ Title: Pursuing Rayan Moore
+ - Id: 7015
+ Title: Pursuing Rayan Moore
+ - Id: 7016
+ Title: Pursuing Rayan Moore
+ - Id: 7017
+ Title: Pursuing Rayan Moore
+ - Id: 7018
+ Title: Pursuing Rayan Moore
+ - Id: 7019
+ Title: Pursuing Rayan Moore
+ - Id: 7020
+ Title: Pursuing Rayan Moore
+ - Id: 7021
+ Title: Pursuing Rayan Moore
+ - Id: 7022
+ Title: Pursuing Rayan Moore
+ - Id: 7023
+ Title: Pursuing Rayan Moore
+ - Id: 7024
+ Title: Pursuing Rayan Moore
+ - Id: 7025
+ Title: Pursuing Rayan Moore
+ - Id: 7026
+ Title: Pursuing Rayan Moore
+ - Id: 7027
+ Title: Pursuing Rayan Moore
+ - Id: 7028
+ Title: Pursuing Rayan Moore
+ - Id: 7029
+ Title: Pursuing Rayan Moore
+ - Id: 7030
+ Title: Pursuing Rayan Moore
+ - Id: 7031
+ Title: Pursuing Rayan Moore
+ - Id: 7032
+ Title: Pursuing Rayan Moore
+ - Id: 7033
+ Title: Pursuing Rayan Moore
+ - Id: 7034
+ Title: Pursuing Rayan Moore
+ - Id: 7035
+ Title: Pursuing Rayan Moore
+ - Id: 7036
+ Title: Pursuing Rayan Moore
+ - Id: 7037
+ Title: Case closed?
+ - Id: 7038
+ Title: Passion for Baked Sweet Potatoes
+ - Id: 7039
+ Title: Dodging the conversation
+ - Id: 7040
+ Title: Dodging the conversation
+ - Id: 7041
+ Title: Politics is for the Politicians
+ - Id: 7042
+ Title: Part-time Job - Tatacho's feed
+ - Id: 7043
+ Title: Part-time Job - Cornus's feed
+ - Id: 7044
+ Title: Part-time Job - Hillthrion's feed1
+ - Id: 7045
+ Title: Part-time Job - Hillthrion's feed2
+ - Id: 7046
+ Title: Part-time Job - warm rugs
+ - Id: 7047
+ Title: Part-time Job - Let's call it a day!
+ TimeLimit: +5h
+ - Id: 7048
+ Title: Thanatos Tower - Burled's Favor
+ - Id: 7049
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7050
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7051
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7052
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7053
+ Title: Thanatos Tower - What they want is..
+ - Id: 7054
+ Title: Myu's Favor - Teach them a lesson!
+ Targets:
+ - Mob: KOBOLD_ARCHER
+ Count: 1000
+ - Id: 7055
+ Title: Myu's Favor - Not the cat!
+ Targets:
+ - Mob: WILD_ROSE
+ Count: 1
+ - Id: 7056
+ Title: Messenger - Arc's Favor
+ - Id: 7057
+ Title: Messenger - Arc's Favor
+ - Id: 7058
+ Title: Messenger - Arc's Favor
+ - Id: 7059
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7060
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7061
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7062
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7063
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7064
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7065
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7066
+ Title: Messenger - Prove the Truth
+ - Id: 7067
+ Title: Messenger - Prove the Truth
+ - Id: 7068
+ Title: Messenger - Prove the Truth
+ - Id: 7069
+ Title: Messenger - Too late!
+ - Id: 7070
+ Title: Messenger - Terra's Return
+ - Id: 7071
+ Title: Messenger - Invitation
+ - Id: 7074
+ Title: Rata Hunt
+ Targets:
+ - Mob: RATA
+ Count: 1
+ - Id: 7075
+ Title: Duneyrr Hunt
+ Targets:
+ - Mob: DUNEYRR
+ Count: 1
+ - Id: 7076
+ Title: "Wanted: Dandelion"
+ Targets:
+ - Mob: DANDELION_
+ Count: 1
+ - Id: 7077
+ Title: Collecting Dragon Eggs
+ - Id: 7078
+ Title: Collecting Dragon Eggs
+ TimeLimit: +1d
+ - Id: 7079
+ Title: Finding Refined Bradium
+ - Id: 7080
+ Title: Finding Refined Bradium
+ TimeLimit: +1d
+ - Id: 7081
+ Title: Helping the Laphine Craftsman
+ - Id: 7082
+ Title: Helping the Laphine Craftsman
+ TimeLimit: +1d
+ - Id: 7091
+ Title: An advice of Diora 01
+ - Id: 7092
+ Title: An advice of Diora 02
+ - Id: 7093
+ Title: An advice of Diora 03
+ - Id: 7094
+ Title: An advice of Diora 04
+ - Id: 7095
+ Title: An advice of Diora 05
+ - Id: 7096
+ Title: A proof of new requirement
+ - Id: 7097
+ Title: A proof of new requirement
+ - Id: 7098
+ Title: A proof of new requirement
+ - Id: 7099
+ Title: A proof of new requirement
+ - Id: 7100
+ Title: A message of Bercascell
+ - Id: 7101
+ Title: Special task of an assassin guild 1
+ - Id: 7102
+ Title: Special task of an assassin guild 2
+ - Id: 7103
+ Title: Special task of an assassin guild 3
+ - Id: 7104
+ Title: Special task of an assassin guild 4
+ - Id: 7105
+ Title: Special task of an assassin guild 4
+ - Id: 7106
+ Title: Special task of an assassin guild 5
+ - Id: 7107
+ Title: Special task of an assassin guild 6
+ - Id: 7108
+ Title: Special task of an assassin guild 7
+ - Id: 7109
+ Title: Special task of an assassin guild 8
+ - Id: 7110
+ Title: Special task of an assassin guild 9
+ - Id: 7111
+ Title: Special task of an assassin guild 10
+ - Id: 7112
+ Title: Information of Madelle
+ - Id: 7113
+ Title: Information of Crave
+ - Id: 7114
+ Title: Information of Trovan
+ - Id: 7115
+ Title: Information of a peddler
+ - Id: 7116
+ Title: Information of a old man
+ - Id: 7117
+ Title: Your first quest!
+ - Id: 7118
+ Title: Novice Training
+ - Id: 7119
+ Title: Novice Training
+ - Id: 7120
+ Title: Novice Training
+ - Id: 7121
+ Title: Novice Training
+ - Id: 7122
+ Title: First battle - Poring Hunt
+ Targets:
+ - Mob: PORING
+ Count: 1
+ - Id: 7123
+ Title: Battle Basics -Swordman
+ Targets:
+ - Mob: PICKY
+ Count: 2
+ - Id: 7124
+ Title: Battle Basics -Mage
+ Targets:
+ - Mob: LUNATIC
+ Count: 5
+ - Id: 7126
+ Title: Selling items
+ - Id: 7127
+ Title: Battle Basics -Thief
+ Targets:
+ - Mob: WILOW
+ Count: 5
+ - Id: 7128
+ Title: Training course 'conquest a desert!' -start
+ - Id: 7129
+ Title: The training course 'conquer the desert!' - A real battle 1
+ Targets:
+ - Mob: CONDOR
+ Count: 10
+ - Id: 7130
+ Title: The training course 'conquer the desert!' - A real battle 2
+ Targets:
+ - Mob: DESERT_WOLF_B
+ Count: 10
+ - Id: 7131
+ Title: The training course 'conquer the desert!' - A real battle 3
+ Targets:
+ - Mob: SCORPION
+ Count: 5
+ - Id: 7132
+ Title: The training course 'conquer the desert!' - Complete a quest
+ - Id: 7133
+ Title: The training course 'conquer the culvert!' - Start
+ - Id: 7134
+ Title: The training course 'conquer the culvert!' - A real battle 1
+ Targets:
+ - Mob: THIEF_BUG
+ Count: 10
+ - Id: 7135
+ Title: The training course 'conquer the culvert!' - A real battle 2
+ Targets:
+ - Mob: TAROU
+ Count: 10
+ - Id: 7136
+ Title: The training course 'conquer the culvert!' - A real battle 3
+ Targets:
+ - Mob: FARMILIAR
+ Count: 5
+ - Id: 7137
+ Title: The training course 'conquer the culvert!' - Complete a quest
+ - Id: 7138
+ Title: The training course 'conquer the haunted cave!' - Start
+ - Id: 7139
+ Title: The training course 'conquer the haunted cave!' - A real battle 1
+ Targets:
+ - Mob: SKELETON
+ Count: 15
+ - Id: 7140
+ Title: The training course 'conquer the haunted cave!' - A real battle 2
+ Targets:
+ - Mob: POPORING
+ Count: 10
+ - Id: 7141
+ Title: The training course 'conquer the haunted cave!' - Complete a quest
+ - Id: 7142
+ Title: The training course 'conquer ant hell!' - Start
+ - Id: 7143
+ Title: The training course 'conquer ant hell!' - A real battle 1
+ Targets:
+ - Mob: PIERE
+ Count: 15
+ - Id: 7144
+ Title: The training course 'conquer ant hell!' - A real battle 2
+ Targets:
+ - Mob: ANDRE
+ Count: 15
+ - Id: 7145
+ Title: The training course 'conquer ant hell!' - A real battle 3
+ Targets:
+ - Mob: VITATA
+ Count: 10
+ - Id: 7146
+ Title: The training course 'conquer ant hell!' - Complete a quest
+ - Id: 7147
+ Title: The training course 'conquer the orc village!' - start
+ - Id: 7148
+ Title: The training course 'conquer the orc village!' - A real battle 1
+ Targets:
+ - Mob: ORC_BABY
+ Count: 10
+ - Id: 7149
+ Title: The training course 'conquer the orc village!' - A real battle 2
+ Targets:
+ - Mob: ORK_WARRIOR
+ Count: 10
+ - Id: 7150
+ Title: The training course 'conquer the orc village!' - A real battle 3
+ Targets:
+ - Mob: ORC_LADY
+ Count: 10
+ - Id: 7151
+ Title: The training course 'conquer the orc village!' - Complete a quest
+ - Id: 7152
+ Title: The training course 'conquer the orc dungeon!' - start
+ - Id: 7153
+ Title: The training course 'conquer the orc dungeon!' - A real battle 1
+ Targets:
+ - Mob: ORC_ZOMBIE
+ Count: 20
+ - Id: 7154
+ Title: The training course 'conquer the orc dungeon!'- A real battle 2
+ Targets:
+ - Mob: ORC_SKELETON
+ Count: 20
+ - Id: 7155
+ Title: The training course 'conquer the orc dungeon!' - complete a quest
+ - Id: 7156
+ Title: The training course 'conquer an undersea city!' - start
+ - Id: 7157
+ Title: The training course 'conquer an undersea city!' - A real battle 1
+ Targets:
+ - Mob: MERMAN
+ Count: 15
+ - Id: 7158
+ Title: The training course 'conquer an undersea city!' - A real battle 2
+ Targets:
+ - Mob: STROUF
+ Count: 10
+ - Id: 7159
+ Title: The training course 'conquer an undersea city!' - Complete a quest
+ - Id: 7160
+ Title: Mysterious Cryptogram
+ - Id: 7161
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7162
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7163
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7164
+ Title: Hunt for shadow of deception
+ Targets:
+ - Mob: S_WIND_GHOST
+ Count: 1
+ - Id: 7165
+ Title: Key of deception
+ - Id: 7166
+ Title: Rachel Branch of Shadow Workshop
+ - Id: 7167
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7168
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7169
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7170
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7171
+ Title: Hunt for shadow of delusion
+ Targets:
+ - Mob: S_SKOGUL
+ Count: 1
+ - Id: 7172
+ Title: Key of delusion
+ - Id: 7173
+ Title: Message to Halled from Paul
+ - Id: 7174
+ Title: Mysterious Cryptogram - 4th
+ - Id: 7175
+ Title: Hunft for shadow of gaiety
+ Targets:
+ - Mob: S_SUCCUBUS
+ Count: 1
+ - Id: 7176
+ Title: Key of Gaiety
+ - Id: 7177
+ Title: A young guy in Lighthalzen
+ - Id: 7178
+ Title: Destination of Deception, Delusion and Gaiety
+ - Id: 7179
+ Title: Vicente, you dare!
+ - Id: 7180
+ Title: Message from Doomk
+ - Id: 7181
+ Title: Karakas's ring
+ - Id: 7182
+ Title: Sapha's Visit
+ - Id: 7183
+ Title: Invitation from Sapha
+ - Id: 7184
+ Title: To El Dicastes!
+ - Id: 7185
+ Title: Inspector Doha
+ - Id: 7186
+ Title: Secret Order from Doha - Investigation
+ - Id: 7187
+ Title: Secret Order from Doha - Shay
+ - Id: 7188
+ Title: Information Gathering - in the Plaza
+ - Id: 7189
+ Title: Information Gathering - in the Factory
+ - Id: 7190
+ Title: Information Gathering - at the Guards
+ - Id: 7191
+ Title: Shay's designation - BK
+ - Id: 7192
+ Title: BK's Information
+ - Id: 7193
+ Title: Dimensional Crack Investigation
+ - Id: 7194
+ Title: What's this bloodstain?
+ - Id: 7195
+ Title: What's this skin piece?
+ - Id: 7196
+ Title: What's this suspicious magic power?
+ - Id: 7197
+ Title: Sapha Certifications?
+ - Id: 7198
+ Title: Audience with Ahat
+ - Id: 7199
+ Title: Secret Order from Ahat
+ - Id: 7200
+ Title: Cheshire's call
+ TimeLimit: +23h
+ - Id: 7201
+ Title: Removing traces
+ - Id: 7202
+ Title: Secret order from Doha - Collect proof
+ - Id: 7203
+ Title: Secret order from Doha - Final Report
+ - Id: 7206
+ Title: New Day for Cheshire
+ - Id: 7207
+ Title: Cheshire's Box
+ - Id: 7208
+ Title: Wait for Cheshire?
+ TimeLimit: +1d
+ - Id: 7209
+ Title: Forget the box.
+ - Id: 7210
+ Title: Daily delivery
+ - Id: 7211
+ Title: Misty Forest Labyrinth Exploration
+ TimeLimit: +2h30mn
+ - Id: 7212
+ Title: Loki's Search
+ - Id: 7213
+ Title: Wandering Protector
+ - Id: 7214
+ Title: "Paradise Advanced: Romeo Training"
+ - Id: 7215
+ Title: "Paradise Advanced: Romeo Hunt 1"
+ Targets:
+ - Mob: STALACTIC_GOLEM
+ Count: 3
+ - Id: 7216
+ Title: "Paradise Advanced: Romeo Hunt 2"
+ Targets:
+ - Mob: STALACTIC_GOLEM
+ Count: 10
+ - Id: 7217
+ Title: "Paradise Advanced: Romeo Hunt 3"
+ - Id: 7218
+ Title: "Paradise Advanced: Romeo Complete"
+ - Id: 7219
+ Title: "Paradise Advanced: Johan Training"
+ - Id: 7220
+ Title: "Paradise Advanced: Johan Hunt 1"
+ Targets:
+ - Mob: WRAITH
+ Count: 20
+ - Id: 7221
+ Title: "Paradise Advanced: Johan Hunt 2"
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 10
+ - Id: 7222
+ Title: "Paradise Advanced: Johan Complete"
+ - Id: 7223
+ Title: "Paradise Advanced: Kiren Training"
+ - Id: 7224
+ Title: "Paradise Advanced: Kiren Hunt 1"
+ Targets:
+ - Mob: PORCELLIO
+ Count: 30
+ - Id: 7225
+ Title: "Paradise Advanced: Removed"
+ Targets:
+ - Mob: NOXIOUS
+ Count: 30
+ - Id: 7226
+ Title: "Paradise Advanced: Kiren Hunt 2 (Part A)"
+ Targets:
+ - Mob: VENOMOUS
+ Count: 30
+ - Id: 7227
+ Title: "Paradise Advanced: Kiren Hunt 2 (Part B)"
+ Targets:
+ - Mob: TEDDY_BEAR
+ Count: 5
+ - Id: 7228
+ Title: "Paradise Advanced: Kiren Complete"
+ - Id: 7229
+ Title: "Paradise Advanced: Naomi Training"
+ - Id: 7230
+ Title: "Paradise Advanced: Naomi Hunt 1"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 7231
+ Title: "Paradise Advanced: Naomi Hunt 2"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 7232
+ Title: "Paradise Advanced: Naomi Complete"
+ - Id: 7233
+ Title: "Paradise Advanced: Margaret Training"
+ - Id: 7234
+ Title: "Paradise Advanced: Margaret's Favor"
+ - Id: 7235
+ Title: "Paradise Advanced: Margaret Hunt 1"
+ Targets:
+ - Mob: NEPENTHES
+ Count: 1
+ - Id: 7236
+ Title: "Paradise Advanced: Margaret Hunt 2"
+ Targets:
+ - Mob: PINGUICULA
+ Count: 5
+ - Id: 7237
+ Title: "Paradise Advanced: Margaret Complete"
+ - Id: 7238
+ Title: Toren's Errands (Easy)
+ - Id: 7239
+ Title: Toren's Errands (Normal)
+ - Id: 7240
+ Title: Strengthening Equipment
+ - Id: 7241
+ Title: Toren's Errands - Tomorrow
+ TimeLimit: +1d
+ - Id: 7242
+ Title: Play with the baby cat
+ - Id: 7243
+ Title: Nyadventure-Duruduru Compass
+ - Id: 7244
+ Title: Nyadventure-Duruduru Race
+ TimeLimit: +3mn
+ - Id: 7245
+ Title: Nyadventure-Duruduru Race
+ TimeLimit: +3mn
+ - Id: 7246
+ Title: Nyadventure-I'm coming now.
+ - Id: 7247
+ Title: Nyadventure-Stop the Bang!
+ - Id: 7249
+ Title: Nyadventure-Bang! See you next time
+ TimeLimit: +1d
+ - Id: 7250
+ Title: Nyadventure-Hidden Treasure?
+ - Id: 7251
+ Title: Nyadventure-The First piece of Painting
+ - Id: 7252
+ Title: Nyadventure-The Second piece of Painting
+ - Id: 7253
+ Title: Nyadventure-The Third piece of Painting
+ - Id: 7254
+ Title: Nyadventure-The Fourth piece of Painting
+ - Id: 7255
+ Title: Nyadventure-The Fifth piece of Painting
+ - Id: 7256
+ Title: Nyadventure-The Sixth piece of Painting
+ - Id: 7257
+ Title: Nyadventure-Race, Come back tomorrow!
+ TimeLimit: +1d
+ - Id: 7258
+ Title: Nyadventure-Painting completed
+ - Id: 7259
+ Title: Gift from the Mew Bravery Team
+ - Id: 7260
+ Title: The origin of Bugs
+ - Id: 7261
+ Title: Cat Biscuits - Table
+ - Id: 7262
+ Title: Cat Biscuits - Mattress
+ - Id: 7263
+ Title: Cat Biscuits - Grill
+ - Id: 7264
+ Title: To Chef Nyas
+ - Id: 7265
+ Title: Rage of Chef Nyas
+ - Id: 7266
+ Title: Declaration of Chef Nyas
+ - Id: 7267
+ Title: Appointed time with Cleanyang
+ TimeLimit: +1d
+ - Id: 7268
+ Title: Find the Cat's hard biscuits!
+ - Id: 7269
+ Title: Cat Biscuits - Resting Place
+ - Id: 7270
+ Title: Cat Biscuits - Sand
+ - Id: 7271
+ Title: Cat Biscuits - Bottom of the Stairs
+ - Id: 7272
+ Title: Cat Biscuits - Corner
+ - Id: 7273
+ Title: Cat Biscuits - Locker
+ - Id: 7274
+ Title: Cat Biscuits - Foothold
+ - Id: 7275
+ Title: Cat Biscuits - Sand
+ - Id: 7276
+ Title: Promise to deliver more food
+ TimeLimit: +1d
+ - Id: 7281
+ Title: List of Errands
+ - Id: 7282
+ Title: List of Errands
+ - Id: 7283
+ Title: List of Errands
+ - Id: 7284
+ Title: List of Errands
+ - Id: 7285
+ Title: List of Errands
+ - Id: 7286
+ Title: List of Errands
+ - Id: 7287
+ Title: List of Errands
+ - Id: 7288
+ Title: List of Errands
+ - Id: 7289
+ Title: List of Errands
+ - Id: 7290
+ Title: List of Errands
+ - Id: 7291
+ Title: List of Errands
+ - Id: 7292
+ Title: List of Errands
+ - Id: 7293
+ Title: List of Errands
+ - Id: 7294
+ Title: List of Errands
+ - Id: 7295
+ Title: List of Errands
+ - Id: 7296
+ Title: List of Errands
+ - Id: 7297
+ Title: List of Errands
+ - Id: 7298
+ Title: List of Errands
+ - Id: 7299
+ Title: List of Errands
+ - Id: 7300
+ Title: List of Errands
+ - Id: 7301
+ Title: List of Errands
+ - Id: 7302
+ Title: List of Errands
+ - Id: 7303
+ Title: List of Errands
+ - Id: 7304
+ Title: List of Errands
+ - Id: 7305
+ Title: List of Errands
+ - Id: 7306
+ Title: List of Errands
+ - Id: 7307
+ Title: List of Errands
+ - Id: 7308
+ Title: List of Errands
+ - Id: 7309
+ Title: List of Errands
+ - Id: 7310
+ Title: List of Errands
+ - Id: 7311
+ Title: List of Errands
+ - Id: 7312
+ Title: List of Errands
+ - Id: 7313
+ Title: List of Errands
+ - Id: 7314
+ Title: List of Errands
+ - Id: 7315
+ Title: List of Errands
+ - Id: 7316
+ Title: List of Errands
+ - Id: 7317
+ Title: List of Errands
+ - Id: 7318
+ Title: List of Errands
+ - Id: 7319
+ Title: List of Errands
+ - Id: 7320
+ Title: List of Errands
+ - Id: 7321
+ Title: List of Errands
+ - Id: 7322
+ Title: List of Errands
+ - Id: 7323
+ Title: List of Errands
+ - Id: 7324
+ Title: List of Errands
+ - Id: 7325
+ Title: List of Errands
+ - Id: 7326
+ Title: List of Errands
+ - Id: 7327
+ Title: List of Errands
+ - Id: 7328
+ Title: List of Errands
+ - Id: 7329
+ Title: List of Errands
+ - Id: 7330
+ Title: List of Errands
+ - Id: 7331
+ Title: List of Errands
+ - Id: 7332
+ Title: List of Errands
+ - Id: 7333
+ Title: List of Errands
+ - Id: 7334
+ Title: List of Errands
+ - Id: 7335
+ Title: List of Errands
+ - Id: 7336
+ Title: List of Errands
+ - Id: 7337
+ Title: List of Errands
+ - Id: 7338
+ Title: List of Errands
+ - Id: 7339
+ Title: List of Errands
+ - Id: 7340
+ Title: List of Errands
+ - Id: 7341
+ Title: List of Errands
+ - Id: 7342
+ Title: List of Errands
+ - Id: 7343
+ Title: List of Errands
+ - Id: 7344
+ Title: List of Errands
+ - Id: 7345
+ Title: List of Errands
+ - Id: 7346
+ Title: List of Errands
+ - Id: 7349
+ Title: Vote
+ TimeLimit: +30mn
+ - Id: 7350
+ Title: Cautious Village
+ - Id: 7351
+ Title: Better than My Old Button
+ - Id: 7352
+ Title: Sailor Wants a Button
+ - Id: 7353
+ Title: Old Man Wants a Button
+ - Id: 7354
+ Title: Young Man Wants a Button
+ - Id: 7355
+ Title: Merchant Wants a Button
+ - Id: 7356
+ Title: Little Kid Wants a Button
+ - Id: 7357
+ Title: Middle-aged Guy Wants a Button
+ - Id: 7358
+ Title: Why do they want my Buttons?
+ - Id: 7359
+ Title: Deliver Holy Item to Sailor
+ - Id: 7360
+ Title: Deliver Holy Item to Old Man
+ - Id: 7361
+ Title: Deliver Holy Item to Young Man
+ - Id: 7362
+ Title: Deliver Holy Item to Merchant
+ - Id: 7363
+ Title: Deliver Holy Item to Little Kid
+ - Id: 7364
+ Title: Deliver Holy Item to Middle-aged Man
+ - Id: 7365
+ Title: Better than My Old Button-2
+ - Id: 7366
+ Title: Traditional Spiritual Protection and Impudent Girl-1
+ - Id: 7367
+ Title: Traditional Spiritual Protection and Impudent Girl-2
+ TimeLimit: +10mn
+ - Id: 7368
+ Title: Deliver Spiritual Protection-Pedro
+ - Id: 7369
+ Title: Deliver Spiritual Protection-Nardo
+ - Id: 7370
+ Title: Deliver Spiritual Protection-Pandoi
+ - Id: 7371
+ Title: Deliver Spiritual Protection-Woeon
+ - Id: 7372
+ Title: Deliver Spiritual Protection-Talah
+ - Id: 7373
+ Title: Deliver Spiritual Protection-Romel
+ - Id: 7374
+ Title: Love and Spiritual Protection for All
+ - Id: 7375
+ Title: Love and Spiritual Protection Continues
+ TimeLimit: +23h
+ - Id: 7376
+ Title: Old Man and Cast-Iron Caldron-1
+ - Id: 7377
+ Title: Old Man and Cast-Iron Caldron-2
+ - Id: 7378
+ Title: Old Man and Cast-Iron Caldron-Regular Trades
+ TimeLimit: +23h
+ - Id: 7379
+ Title: Peace Preacher
+ - Id: 7380
+ Title: To Smith a Traditional Spiritual Protection
+ - Id: 7381
+ Title: High Demand on Spiritual Protection Material
+ TimeLimit: +23h
+ - Id: 7382
+ Title: Deliver to Pedro
+ - Id: 7383
+ Title: Deliver to Nardo
+ - Id: 7384
+ Title: Deliver to Pandoi
+ - Id: 7385
+ Title: Deliver to Woeon
+ - Id: 7386
+ Title: Deliver to Talah
+ - Id: 7387
+ Title: Deliver to Romel
+ - Id: 7388
+ Title: Maries's Child
+ - Id: 7389
+ Title: Give the Shirt to Maries's Child
+ - Id: 7390
+ Title: Worried about Maries's Child
+ TimeLimit: +23h
+ - Id: 7391
+ Title: Jejeling and Jejellopy
+ - Id: 7392
+ Title: Collect Jejellopy Regularly
+ TimeLimit: +1d
+ - Id: 7393
+ Title: Shiny Silver Blade
+ - Id: 7394
+ Title: Shiny Tomorrow
+ TimeLimit: +23h
+ - Id: 7395
+ Title: Ghost on the Ferry Ship
+ - Id: 7396
+ Title: Angry Soul on Ferry Ship
+ - Id: 7397
+ Title: Mumbaki Phong's Advice
+ - Id: 7398
+ Title: Offering Bouquet Recommended by Mumbaki
+ - Id: 7399
+ Title: Soul Diwata's Story
+ - Id: 7400
+ Title: Mumbaki of Port Malaya
+ - Id: 7401
+ Title: All Aboard for Perry Sailing
+ TimeLimit: +23h
+ - Id: 7402
+ Title: Bouquet for Diwata
+ - Id: 7403
+ Title: Stabilized Perry
+ - Id: 7404
+ Title: Get Rid of Jejeling
+ - Id: 7405
+ Title: Get Rid of Jejeling - Same Time Tomorrow
+ TimeLimit: +23h
+ - Id: 7406
+ Title: Agree to Collecting Bones!
+ - Id: 7407
+ Title: Purified Bone
+ - Id: 7408
+ Title: Agree to Come Back Tomorrow?
+ TimeLimit: +23h
+ - Id: 7409
+ Title: Cannot Meet Eyes with Him!
+ - Id: 7410
+ Title: Teach Another Lesson Tomorrow!
+ TimeLimit: +23h
+ - Id: 7411
+ Title: The traveler, Fome's story
+ - Id: 7412
+ Title: The traveler, Litrip's story
+ - Id: 7413
+ Title: The traveler, Chiba's story
+ - Id: 7414
+ Title: Eclage guard's message
+ - Id: 7415
+ Title: Laphine's Chief of Staff
+ - Id: 7416
+ Title: Waiting to meet
+ TimeLimit: +10mn
+ - Id: 7417
+ Title: Kardui's request
+ - Id: 7418
+ Title: For Eclage 1
+ - Id: 7419
+ Title: For Eclage 2
+ - Id: 7420
+ Title: For Eclage 3
+ - Id: 7421
+ Title: That's enough
+ - Id: 7422
+ Title: Kardui's gift
+ - Id: 7423
+ Title: A rumor about the King 1
+ - Id: 7424
+ Title: A rumor about the King 2
+ - Id: 7425
+ Title: A rumor about the King 3
+ - Id: 7426
+ Title: A rumor about the King 4
+ - Id: 7427
+ Title: At times like this, face it straight on!
+ - Id: 7428
+ Title: Yai of the wild
+ - Id: 7429
+ Title: Wild recent trend!
+ TimeLimit: +23h
+ - Id: 7430
+ Title: Deliveryman that runs through space
+ - Id: 7431
+ Title: A mailman never rests!
+ TimeLimit: +23h
+ - Id: 7432
+ Title: The troublemakers in the land of blooming flowers
+ - Id: 7433
+ Title: Need constant guidance
+ TimeLimit: +23h
+ - Id: 7434
+ Title: Kardui's big brother
+ - Id: 7435
+ Title: Time for reading the letter
+ TimeLimit: +3mn
+ - Id: 7436
+ Title: Avant the Scholar of Magics
+ - Id: 7437
+ Title: Shenime's favor
+ - Id: 7438
+ Title: Secret sponsorship
+ - Id: 7439
+ Title: The scholar of magics sponsored by Shenime
+ - Id: 7440
+ Title: Minuel's witness
+ - Id: 7441
+ Title: Mail is here!
+ - Id: 7442
+ Title: The identity of the scholar of magics
+ - Id: 7443
+ Title: Interfere with the research!
+ - Id: 7444
+ Title: What Avant was researching
+ - Id: 7445
+ Title: Avant's back
+ - Id: 7446
+ Title: Unfruitful conversation
+ - Id: 7447
+ Title: Dilemma surrounding the Orb
+ - Id: 7448
+ Title: Something's not right
+ - Id: 7449
+ Title: Temptation toward the Orb
+ - Id: 7450
+ Title: Orb's lighting room
+ - Id: 7451
+ Title: Betrayal
+ - Id: 7452
+ Title: Find the chief of staff!
+ - Id: 7453
+ Title: The last of the chief of staff
+ - Id: 8000
+ Title: Quitting Job Change
+ - Id: 8001
+ Title: Job Change to Assassin
+ - Id: 8002
+ Title: Job Change to Assassin
+ - Id: 8003
+ Title: Job Change to Assassin
+ - Id: 8004
+ Title: Job Change to Assassin
+ - Id: 8005
+ Title: Job Change to Assassin
+ - Id: 8006
+ Title: Find the Guild Master!
+ - Id: 8007
+ Title: Acceptance from the Guild Master
+ - Id: 8008
+ Title: Job Change to Assassin
+ - Id: 8009
+ Title: Applying for Job Change to Priest
+ - Id: 8010
+ Title: Job Change to Priest
+ - Id: 8011
+ Title: Job Change to Priest
+ - Id: 8012
+ Title: Job Change to Priest
+ - Id: 8013
+ Title: Job Change to Priest
+ - Id: 8014
+ Title: Job Change to Priest
+ - Id: 8015
+ Title: Job Change to Priest
+ - Id: 8016
+ Title: Job Change to Priest
+ - Id: 8017
+ Title: Factory Inspection
+ - Id: 8018
+ Title: Factory Inspection
+ - Id: 8019
+ Title: Factory Inspection
+ - Id: 8020
+ Title: Factory Inspection
+ - Id: 8021
+ Title: Factory Inspection
+ - Id: 8022
+ Title: Factory Inspection
+ - Id: 8023
+ Title: Factory Inspection
+ - Id: 8024
+ Title: Factory Inspection
+ - Id: 8025
+ Title: Factory Inspection
+ - Id: 8026
+ Title: Factory Inspection
+ - Id: 8027
+ Title: Factory Inspection
+ - Id: 8028
+ Title: Factory Inspection
+ - Id: 8029
+ Title: Factory Inspection
+ - Id: 8030
+ Title: Factory Inspection
+ - Id: 8031
+ Title: Factory Inspection
+ - Id: 8032
+ Title: Tarlock's Favor
+ - Id: 8033
+ Title: Ferlock's Favor
+ - Id: 8034
+ Title: Ferlock's Favor
+ - Id: 8035
+ Title: How the Airship Works
+ - Id: 8036
+ Title: Hallen's Favor
+ - Id: 8037
+ Title: The Dice Roller
+ - Id: 8038
+ Title: The Dice Roller
+ - Id: 8039
+ Title: Secret of Airships
+ - Id: 8040
+ Title: Secret of Airships
+ - Id: 8041
+ Title: Secret of Airships
+ - Id: 8042
+ Title: Secret of Airships
+ - Id: 8043
+ Title: Secret of Airships
+ - Id: 8044
+ Title: Euslan's Fiancee
+ - Id: 8045
+ Title: Tips from Kaci
+ - Id: 8046
+ Title: Ferlock's Passengers list
+ - Id: 8047
+ Title: Euslan's Favor
+ - Id: 8048
+ Title: Eukran's Testimony
+ - Id: 8049
+ Title: Thierry's Favor
+ - Id: 8050
+ Title: Danger coming on to Thierry
+ - Id: 8051
+ Title: Euslan's Medicine
+ - Id: 8052
+ Title: Thierry's Favor
+ - Id: 8053
+ Title: Find Postell
+ - Id: 8054
+ Title: Message from Postell
+ - Id: 8055
+ Title: Nursing Allen
+ - Id: 8056
+ Title: Little something in return
+ - Id: 8057
+ Title: Grumbling Manainne
+ - Id: 8058
+ Title: Conversation with El Schatt
+ - Id: 8059
+ Title: Conversation with Perfitz
+ - Id: 8060
+ Title: Stubborn El Schatt
+ - Id: 8061
+ Title: Stories of the past
+ - Id: 8062
+ Title: Kanainne
+ - Id: 8063
+ Title: Kanainne's spirit
+ - Id: 8064
+ Title: Cellette's Fish Cake Soup
+ - Id: 8065
+ Title: Cellette's Fish Cake Soup
+ - Id: 8066
+ Title: Cellette's Fish Cake Soup
+ - Id: 8067
+ Title: Cellette's Fish Cake Soup
+ - Id: 8068
+ Title: Cellette's Fish Cake Soup
+ - Id: 8069
+ Title: Cellette's Fish Cake Soup
+ - Id: 8070
+ Title: Cellette's Fish Cake Soup
+ - Id: 8071
+ Title: Cellette's Fish Cake Soup
+ - Id: 8072
+ Title: Cellette's Fish Cake Soup
+ - Id: 8073
+ Title: Cellette's Fish Cake Soup
+ - Id: 8074
+ Title: Cellette's Fish Cake Soup
+ - Id: 8075
+ Title: Cellette's Fish Cake Soup
+ - Id: 8076
+ Title: Klitzer and Calla
+ - Id: 8077
+ Title: Klitzer and Calla
+ - Id: 8078
+ Title: Klitzer and Calla
+ - Id: 8079
+ Title: Klitzer and Calla
+ - Id: 8080
+ Title: Klitzer and Calla
+ - Id: 8081
+ Title: Klitzer and Calla
+ - Id: 8082
+ Title: Klitzer and Calla
+ - Id: 8083
+ Title: Klitzer and Calla
+ - Id: 8084
+ Title: Klitzer and Calla
+ - Id: 8085
+ Title: Klitzer and Calla
+ - Id: 8086
+ Title: Klitzer and Calla
+ - Id: 8087
+ Title: Klitzer and Calla
+ - Id: 8088
+ Title: Klitzer and Calla
+ - Id: 8089
+ Title: Stolen Gemstone
+ - Id: 8090
+ Title: Mr. Manson
+ - Id: 8091
+ Title: Jenny the gardener
+ - Id: 8092
+ Title: Searching the Market
+ - Id: 8093
+ Title: Mysterious Message
+ - Id: 8094
+ Title: Double Crossed?
+ - Id: 8095
+ Title: Find Phobe
+ - Id: 8096
+ Title: Stolen Gemstone Found
+ - Id: 8097
+ Title: Informing Jenny
+ - Id: 8098
+ Title: Keeping the Secret
+ - Id: 8099
+ Title: Vincent's Recommendation
+ - Id: 8100
+ Title: Recommendation from High Priest Zhed
+ - Id: 8101
+ Title: Recommendation from High Priest Zhed
+ - Id: 8102
+ Title: Recommendation from High Priest Zhed
+ - Id: 8103
+ Title: Recommendation from High Priest Zhed
+ - Id: 8104
+ Title: Recommendation from High Priest Zhed
+ - Id: 8105
+ Title: Recommendation from High Priest Zhed
+ - Id: 8106
+ Title: Mr. Shendar's daughter
+ - Id: 8107
+ Title: Lachellen's Testimony
+ - Id: 8108
+ Title: A Foreigner, Katinshuell
+ - Id: 8109
+ Title: Bruspetti's scent
+ - Id: 8110
+ Title: Bruspetti's scent
+ - Id: 8111
+ Title: Lachellen's Testimony
+ - Id: 8112
+ Title: Freya's Spring
+ - Id: 8113
+ Title: Bruspetti's Diary
+ - Id: 8114
+ Title: Bruspetti's Diary
+ - Id: 8115
+ Title: Suspicious Katinshuell
+ - Id: 8116
+ Title: Lachellen's Testimony
+ - Id: 8117
+ Title: Freya's Spring
+ - Id: 8118
+ Title: Conversation with Mr. Shendar
+ - Id: 8119
+ Title: Bruspetti's Diary
+ - Id: 8120
+ Title: Conversation with Katinshuell
+ - Id: 8121
+ Title: Conversation with Katinshuell
+ - Id: 8122
+ Title: Bruspetti's resting place
+ - Id: 8123
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8124
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8125
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8126
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8127
+ Title: Momotaro Field Trip
+ - Id: 8128
+ Title: Momotaro Field Trip
+ - Id: 8129
+ Title: Momotaro Field Trip
+ - Id: 8130
+ Title: Momotaro Field Trip
+ - Id: 8131
+ Title: The mother of lord in Amatsu
+ - Id: 8132
+ Title: The mother of lord in Amatsu
+ - Id: 8133
+ Title: Song of the fox
+ - Id: 8134
+ Title: Boy at the Northern Shrine
+ - Id: 8135
+ Title: Fox Expelled
+ - Id: 8136
+ Title: The Gray Wolf's Warning
+ - Id: 8137
+ Title: Finding the Keymaker
+ - Id: 8138
+ Title: Blacksmith's Request
+ - Id: 8139
+ Title: The Golden Key
+ - Id: 8140
+ Title: The Red Ring
+ - Id: 8141
+ Title: Mashenka's Red Ring
+ - Id: 8142
+ Title: Searching the Marsh
+ - Id: 8143
+ Title: The Flute's Voice
+ - Id: 8144
+ Title: Ryubaba's Confession
+ - Id: 8145
+ Title: Worried Mother's Request
+ - Id: 8146
+ Title: Finding Lusalka
+ - Id: 8147
+ Title: Lusalka's Beloved
+ - Id: 8148
+ Title: Lusalka's Beloved
+ - Id: 8149
+ Title: Searching for Igor
+ - Id: 8150
+ Title: Igor's message
+ - Id: 8151
+ Title: Marozka's Cave
+ - Id: 8152
+ Title: The Golden Thread
+ - Id: 8153
+ Title: Test of mind and wisdom
+ - Id: 8154
+ Title: The Keymaker
+ - Id: 8155
+ Title: Baba Yaga's Favor
+ - Id: 8156
+ Title: Baba Yaga's Favor
+ - Id: 8157
+ Title: Baba Yaga's Favor
+ - Id: 8158
+ Title: Baba Yaga's Favor
+ - Id: 8159
+ Title: Baba Yaga's Favor
+ - Id: 8160
+ Title: Baba Yaga's Favor
+ - Id: 8161
+ Title: Baba Yaga's Favor
+ - Id: 8162
+ Title: Baba Yaga's Favor
+ - Id: 8163
+ Title: Baba Yaga's Favor
+ - Id: 8164
+ Title: Baba Yaga's Favor
+ - Id: 8165
+ Title: Baba Yaga's Favor
+ - Id: 8166
+ Title: Baba Yaga's Favor
+ - Id: 8167
+ Title: The Golden Key
+ - Id: 8168
+ Title: Koshei, the Immortal
+ - Id: 8169
+ Title: Living and Dead Water
+ - Id: 8170
+ Title: Living and Dead Water
+ - Id: 8171
+ Title: Living and Dead Water
+ - Id: 8181
+ Title: Sight Blaster
+ - Id: 8182
+ Title: Push Back Theory
+ - Id: 8183
+ Title: Sight Blaster
+ - Id: 8184
+ Title: Elemental Converter
+ - Id: 8185
+ Title: Elemental Change
+ - Id: 8186
+ Title: Fire Elemental Change
+ - Id: 8187
+ Title: Earth Elemental Change
+ - Id: 8188
+ Title: Wind Elemental Change
+ - Id: 8189
+ Title: Water Elemental Change
+ - Id: 8190
+ Title: Charming Wink
+ - Id: 8191
+ Title: Charming Advisor
+ - Id: 8192
+ Title: Selfish Advisor
+ - Id: 8193
+ Title: Selfish Advisor
+ - Id: 8194
+ Title: Drunken Advisor
+ - Id: 8195
+ Title: Kind Canell
+ - Id: 8196
+ Title: The Tripartite Union's Feud
+ - Id: 8197
+ Title: Document Delivery
+ - Id: 8198
+ Title: Report to the United Research Official
+ - Id: 8199
+ Title: United Research Official's Favor
+ - Id: 8200
+ Title: Ryosen's Document Requests
+ - Id: 8201
+ Title: Missing Document
+ - Id: 8202
+ Title: Document Restoration
+ - Id: 8203
+ Title: Document Restoration
+ - Id: 8204
+ Title: Ryosen
+ - Id: 8205
+ Title: Report to the United Research Official
+ - Id: 8206
+ Title: Researchers' Meeting
+ - Id: 8207
+ Title: Hansenne is not guilty.
+ - Id: 8208
+ Title: Hansenne's Favor
+ - Id: 8209
+ Title: Hue's Report
+ - Id: 8210
+ Title: Report to the United Research Official
+ - Id: 8211
+ Title: Shurank's Lecture
+ - Id: 8212
+ Title: Shurank's Lecture
+ - Id: 8213
+ Title: Shurank's Lecture
+ - Id: 8214
+ Title: Shurank's Lecture
+ - Id: 8215
+ Title: Shurank's Lecture
+ - Id: 8216
+ Title: Shurank's Order
+ - Id: 8217
+ Title: Dequ'ee's Message
+ - Id: 8218
+ Title: Shurank's Lecture
+ - Id: 8219
+ Title: Shurank's Lecture
+ - Id: 8220
+ Title: Shurank's Lecture
+ - Id: 8221
+ Title: Shurank's Lecture
+ - Id: 8222
+ Title: Shurank's order
+ - Id: 8223
+ Title: Dequ'ee's order
+ - Id: 8224
+ Title: The clue
+ - Id: 8225
+ Title: Dequ'ee's Reasoning
+ - Id: 8226
+ Title: Bankley's Death
+ - Id: 8227
+ Title: Return to Shurank
+ - Id: 8228
+ Title: Shurank's Lecture
+ - Id: 8229
+ Title: Guarnien's Lecture
+ - Id: 8230
+ Title: Guarnien's Lecture
+ - Id: 8231
+ Title: Guarnien's Lecture
+ - Id: 8232
+ Title: Guarnien's Lecture
+ - Id: 8233
+ Title: Guarnien's Lecture
+ - Id: 8234
+ Title: Prontera Market Research
+ - Id: 8235
+ Title: Guarnien's Lecture
+ - Id: 8236
+ Title: Guarnien's Lecture
+ - Id: 8237
+ Title: Guarnien's Lecture
+ - Id: 8238
+ Title: Guarnien's Lecture
+ - Id: 8239
+ Title: Guarnien's Lecture
+ - Id: 8240
+ Title: Guarnien's Lecture
+ - Id: 8241
+ Title: Collection of Red Jewel
+ - Id: 8242
+ Title: Collection of blue Jewel
+ - Id: 8243
+ Title: Learning new languages
+ - Id: 8244
+ Title: Fairies and Tree Giants
+ - Id: 8245
+ Title: Language sample investigation
+ - Id: 8246
+ Title: Language sample investigation
+ - Id: 8247
+ Title: Research progress
+ - Id: 8248
+ Title: Research progress
+ - Id: 8249
+ Title: Compressing Information
+ - Id: 8250
+ Title: Storage Gem
+ - Id: 8251
+ Title: Injection of Magic
+ - Id: 8252
+ Title: Handworked jewels
+ - Id: 8253
+ Title: Language translation device
+ TimeLimit: +1h
+ - Id: 8254
+ Title: with a light heart and body
+ - Id: 8255
+ Title: The test of power for existence
+ - Id: 8256
+ Title: The test of power for existence
+ - Id: 8257
+ Title: Providing food of Teardrop
+ - Id: 8258
+ Title: Providing food of Teardrop
+ - Id: 8259
+ Title: to a place for taking a practical technique test
+ - Id: 8260
+ Title: Mission! Documents delivery
+ - Id: 8261
+ Title: When you play the flute,then the wolf show up!
+ - Id: 8262
+ Title: Ranger master never again
+ - Id: 8265
+ Title: One time a one hour!
+ - Id: 8266
+ Title: Hunting poison spore!
+ Targets:
+ - Mob: POISON_SPORE
+ Count: 10
+ - Id: 8267
+ Title: Hunting smokie!
+ Targets:
+ - Mob: SMOKIE
+ Count: 10
+ - Id: 8268
+ Title: Hunt elder wilow!
+ Targets:
+ - Mob: ELDER_WILOW
+ Count: 10
+ - Id: 8269
+ Title: Hunt coco!
+ Targets:
+ - Mob: COCO
+ Count: 10
+ - Id: 8270
+ Title: Hunt tharafrog!
+ Targets:
+ - Mob: THARA_FROG
+ Count: 10
+ - Id: 8271
+ Title: Toxic sprays delivery!
+ - Id: 8272
+ Title: Deliver a honey!
+ - Id: 8273
+ Title: Deliver a blanket!
+ - Id: 8274
+ Title: Collect bones!
+ - Id: 8275
+ Title: Collect feet!
+ - Id: 8276
+ Title: Collect scell!
+ - Id: 8277
+ Title: Collect tails!
+ - Id: 8278
+ Title: Collect cookies!
+ - Id: 8279
+ Title: Collect mustache!
+ - Id: 9000
+ Title: Job Change to Knight
+ - Id: 9001
+ Title: Loyalty of a Knight
+ - Id: 9002
+ Title: Loyalty of a Knight
+ - Id: 9003
+ Title: The Honor of a Knight
+ - Id: 9004
+ Title: The Honor of a Knight
+ - Id: 9005
+ Title: Tenacity of a Knight
+ - Id: 9006
+ Title: Tenacity of a Knight
+ - Id: 9007
+ Title: The Honor of a Knight
+ - Id: 9008
+ Title: Etiquette as a Knight
+ - Id: 9009
+ Title: Life as a Knight
+ - Id: 9010
+ Title: Quality of reverence
+ - Id: 9011
+ Title: Life as a Knight
+ - Id: 9012
+ Title: Glory of a Knight!
+ - Id: 9013
+ Title: Job Change to Wizard
+ - Id: 9014
+ Title: Job Change to Wizard
+ - Id: 9015
+ Title: Job Change to Wizard
+ - Id: 9016
+ Title: Job Change to Wizard
+ - Id: 9017
+ Title: Job Change to Wizard
+ - Id: 9018
+ Title: Certified as a Wizard!
+ - Id: 9058
+ Title: O'Riley's Request
+ - Id: 9059
+ Title: Happy St. Patrick's Day
+ - Id: 9117
+ Title: Lina's Curse
+ - Id: 9118
+ Title: Lina's Curse - Deviruchi Hunt
+ Targets:
+ - Mob: DEVIRUCHI
+ Count: 50
+ - Id: 9119
+ Title: Lina's Curse - Wraith Dead Hunt
+ Targets:
+ - Mob: WRAITH_DEAD
+ Count: 50
+ - Id: 9120
+ Title: Lina's Curse - Dullahan Hunt
+ Targets:
+ - Mob: DULLAHAN
+ Count: 50
+ - Id: 9121
+ Title: Lina's Curse - Nightmare Terror Hunt
+ Targets:
+ - Mob: NIGHTMARE_TERROR
+ Count: 50
+ - Id: 9122
+ Title: Lina's Curse
+ - Id: 9123
+ Title: Lina's Curse
+ - Id: 9024
+ Title: An errand boy from Einbroch
+ - Id: 9028
+ Title: strange Hydra
+ - Id: 9029
+ Title: "Strange Hydra : present conditions"
+ TimeLimit: +1d
+ - Id: 9030
+ Title: Find a puppy
+ - Id: 9031
+ Title: Find a puppy
+ - Id: 9032
+ Title: Find a puppy
+ TimeLimit: +1d
+ - Id: 9155
+ Title: Getting materials for the Jaty Crown
+ - Id: 9156
+ Title: Make the Jaty Crown
+ - Id: 9157
+ Title: Reward from Sage, Kasyapa
+ - Id: 9158
+ Title: Delivery of Good News(1)
+ - Id: 9159
+ Title: Back to Paiko
+ - Id: 9160
+ Title: Delivery of Good News(2)
+ - Id: 9161
+ Title: Back to Paiko
+ - Id: 9162
+ Title: Delivery of Good News(3)
+ - Id: 9163
+ Title: Back to Paiko
+ - Id: 9164
+ Title: Delivery of Good News(4)
+ - Id: 9165
+ Title: Reward from Paiko for success of Jaty Crown
+ - Id: 9167
+ Title: Tutorial - Mercenary for Hire
+ - Id: 9168
+ Title: Quest Window Check
+ - Id: 9169
+ Title: Window Shopper Catalogue
+ - Id: 9170
+ Title: Window Shopper Catalogue
+ - Id: 9171
+ Title: Enchanting Items
+ - Id: 9172
+ Title: Enchanted Items
+ - Id: 9173
+ Title: Tutorial Timer Cooldown
+ TimeLimit: +20h
+ - Id: 9222
+ Title: Get Rid of Bangungot from Hospital 2F
+ - Id: 9223
+ Title: Will there be Peace at the Hospital?
+ TimeLimit: +7d
+ - Id: 9224
+ Title: Explore Hospital 2F
+ TimeLimit: +1h
+ - Id: 9225
+ Title: Mystery Robbery Incident 1
+ - Id: 9226
+ Title: Mystery Robbery Incident 2
+ - Id: 9227
+ Title: Mystery Robbery Incident 3
+ - Id: 9228
+ Title: Mystery Robbery Incident 4
+ - Id: 9229
+ Title: Mystery Robbery Incident 5
+ - Id: 9230
+ Title: Mystery Robbery Incident 6
+ - Id: 9231
+ Title: Mystery Robbery Incident 7
+ - Id: 9232
+ Title: Mystery Robbery Incident 8
+ - Id: 9233
+ Title: Mystery Robbery Incident 9
+ - Id: 9234
+ Title: Mystery Robbery Incident 10
+ - Id: 9235
+ Title: Mystery Robbery Incident 11
+ - Id: 9236
+ Title: Mystery Robbery Incident 12
+ - Id: 9237
+ Title: Mystery Robbery Incident 13
+ - Id: 9238
+ Title: Mystery Robbery Incident 14
+ - Id: 9239
+ Title: Mystery Robbery Incident 15
+ - Id: 9240
+ Title: Luen's statement notes
+ - Id: 9241
+ Title: Luen's statement notes
+ - Id: 9242
+ Title: Luen's statement notes
+ - Id: 9243
+ Title: Luen's statement notes
+ - Id: 9244
+ Title: Dames's statement notes
+ - Id: 9245
+ Title: Dames's statement notes
+ - Id: 9246
+ Title: Dames's statement notes
+ - Id: 9247
+ Title: Dames's statement notes
+ - Id: 9248
+ Title: Rosa's statement notes
+ - Id: 9249
+ Title: Rosa's statement notes
+ - Id: 9250
+ Title: Rosa's statement notes
+ - Id: 9251
+ Title: Rosa's statement notes
+ - Id: 9252
+ Title: Observing Poppy
+ - Id: 9253
+ Title: Examining a messy bookshelf
+ - Id: 9254
+ Title: Examining a damaged book
+ - Id: 9255
+ Title: Examining a container for soda cans
+ - Id: 9256
+ Title: Examining a messed up table
+ - Id: 9257
+ Title: Examining a foreign object
+ - Id: 9258
+ Title: Field examination results
+ - Id: 9259
+ Title: Confirming Cruyan's statements
+ - Id: 9260
+ Title: Survey investigation notes
+ - Id: 9262
+ Title: Mystery Robbery Incident 16
+ - Id: 10000
+ Title: To the Prontera Royal Court
+ - Id: 10001
+ Title: Qualification Test
+ - Id: 10002
+ Title: Qualification Review
+ - Id: 10003
+ Title: Instructions on what to do
+ - Id: 10004
+ Title: Interim Report
+ - Id: 10005
+ Title: Prince Eigen Ahrum
+ - Id: 10006
+ Title: Prince Ernst
+ - Id: 10007
+ Title: Prince Poe
+ - Id: 10008
+ Title: Prince Peter
+ - Id: 10009
+ Title: Prince Urugen
+ - Id: 10010
+ Title: Prince Helmut
+ - Id: 10011
+ Title: Prince Erich
+ - Id: 10012
+ Title: Conversation of the two princes
+ - Id: 10013
+ Title: Searching for the unknown girl
+ - Id: 10014
+ Title: Back to Peter
+ - Id: 10015
+ Title: Test 15
+ - Id: 10016
+ Title: A Guest from the Walter Family
+ - Id: 10017
+ Title: Conspiracy
+ - Id: 10018
+ Title: Villainous Ahrum - Poe
+ - Id: 10019
+ Title: Villainous Ahrum - Peter
+ - Id: 10020
+ Title: Villainous Ahrum - Erich
+ - Id: 10021
+ Title: Villainous Ahrum - Urugen
+ - Id: 10022
+ Title: Villainous Ahrum - Helmut
+ - Id: 10023
+ Title: Eigen Ahrum and Ernst -Former-
+ - Id: 10024
+ Title: Eigen Ahrum and Ernst -Latter-
+ - Id: 10025
+ Title: Good-bye, dear!
+ - Id: 10026
+ Title: Reforming Meto
+ - Id: 10027
+ Title: Reforming Meto
+ - Id: 10028
+ Title: Reforming Meto
+ - Id: 10029
+ Title: Reforming Meto
+ - Id: 10030
+ Title: Reforming Meto
+ - Id: 10031
+ Title: Reforming Meto
+ - Id: 10032
+ Title: Reforming Meto
+ - Id: 10033
+ Title: Reforming Meto
+ - Id: 10034
+ Title: Search the knife
+ - Id: 10035
+ Title: Deliver the knife
+ - Id: 10036
+ Title: Material Supply-Candy
+ - Id: 10037
+ Title: Material Supply-Crap Shells
+ - Id: 10038
+ Title: Material Supply-Conch
+ - Id: 10039
+ Title: Material Supply-Fish Tail
+ - Id: 10040
+ Title: Material Supply-White Platter
+ - Id: 10041
+ Title: Material Supply-?
+ - Id: 10042
+ Title: Find the Piano Keys-5 remained
+ - Id: 10043
+ Title: Find the Piano Keys-5 remained
+ - Id: 10044
+ Title: Find the Piano Keys-4 remained
+ - Id: 10045
+ Title: Find the Piano Keyboard-4 remained
+ - Id: 10046
+ Title: Find the Piano Keyboard-3 remained
+ - Id: 10047
+ Title: Find the Piano Keyboard-3 remained
+ - Id: 10048
+ Title: Find the Piano Keyboard-2 remained
+ - Id: 10049
+ Title: Find the Piano Keyboard-2 remained
+ - Id: 10050
+ Title: Find the Piano Keyboard-1 remained
+ - Id: 10051
+ Title: Find the Piano Keyboard-1 remained
+ - Id: 10052
+ Title: Find the Piano Keyboard-To the piano
+ - Id: 10053
+ Title: Find the Piano Keyboard-Fill the empty spot
+ - Id: 10054
+ Title: On the Verge of the Escape-Clint Kana
+ - Id: 10055
+ Title: Understanding the culture of Utan
+ - Id: 10056
+ Title: Learning Utan Language
+ - Id: 10057
+ Title: Onward to the Other World
+ - Id: 10058
+ Title: Onward to the Other World
+ - Id: 10059
+ Title: Onward to the Other World
+ - Id: 10060
+ Title: Onward to the Other World
+ - Id: 10061
+ Title: Onward to the Other World
+ - Id: 10062
+ Title: Onward to the Other World
+ - Id: 10063
+ Title: Onward to the Other World
+ - Id: 10064
+ Title: Onward to the Other World
+ - Id: 10065
+ Title: Onward to the Other World
+ - Id: 10066
+ Title: Onward to the Other World
+ - Id: 10067
+ Title: Onward to the Other World
+ - Id: 10068
+ Title: Onward to the Other World
+ - Id: 10069
+ Title: Onward to the Other World
+ - Id: 10070
+ Title: Onward to the Other World
+ - Id: 10071
+ Title: Onward to the Other World
+ - Id: 10072
+ Title: Onward to the Other World
+ - Id: 10073
+ Title: Onward to the Other World
+ - Id: 10074
+ Title: Onward to the Other World
+ - Id: 10075
+ Title: Onward to the Other World
+ - Id: 10076
+ Title: Onward to the Other World
+ - Id: 10077
+ Title: Onward to the Other World
+ - Id: 10078
+ Title: Onward to the Other World
+ - Id: 10079
+ Title: Escape from the reality, into the broad world
+ - Id: 10080
+ Title: Escape from the reality, into the broad world
+ - Id: 10081
+ Title: Escape from the reality, into the broad world
+ - Id: 10082
+ Title: Escape from the reality, into the broad world
+ - Id: 10083
+ Title: Escape from the reality, into the broad world
+ - Id: 10084
+ Title: Escape from the reality, into the broad world
+ - Id: 10085
+ Title: Escape from the reality, into the broad world
+ TimeLimit: +1d
+ - Id: 10086
+ Title: Escape from the reality, into the broad world
+ - Id: 10087
+ Title: Escape from the reality, into the broad world
+ TimeLimit: +1d
+ - Id: 10088
+ Title: Escape from the reality, into the broad world
+ - Id: 10089
+ Title: Escape from the reality, into the broad world
+ - Id: 10090
+ Title: Job changes to Mechanic
+ - Id: 10091
+ Title: Job changes to Mechanic
+ - Id: 10092
+ Title: Job changes to Mechanic
+ - Id: 10093
+ Title: Job changes to Mechanic
+ - Id: 10094
+ Title: Job changes to Mechanic
+ - Id: 10095
+ Title: Job changes to Mechanic
+ - Id: 10096
+ Title: Job changes to Mechanic
+ - Id: 10097
+ Title: Job changes to Mechanic
+ - Id: 10098
+ Title: Job changes to Mechanic
+ - Id: 10099
+ Title: Job changes to Mechanic
+ - Id: 10100
+ Title: Job changes to Mechanic
+ - Id: 10101
+ Title: Job changes to Mechanic
+ - Id: 10102
+ Title: To client - the chapter of the sphinx dungeon
+ - Id: 10103
+ Title: To client - the chapter of Glast heim
+ - Id: 10104
+ Title: To client - the chapter of Juno
+ - Id: 10105
+ Title: To client - the chapter of a clock tower
+ - Id: 10106
+ Title: "To client - the chapter of localizing "
+ - Id: 10107
+ Title: Sphinx dungeon - Requiem
+ Targets:
+ - Mob: REQUIEM
+ Count: 10
+ - Id: 10108
+ Title: Sphinx dungeon - Marduk
+ Targets:
+ - Mob: MARDUK
+ Count: 10
+ - Id: 10109
+ Title: Sphinx dungeon - Pasana
+ Targets:
+ - Mob: PASANA
+ Count: 10
+ - Id: 10110
+ Title: Glast heim - Dark Frame
+ Targets:
+ - Mob: DARK_FRAME
+ Count: 10
+ - Id: 10111
+ Title: Glast heim - Evil druid
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 10
+ - Id: 10112
+ Title: Glast heim - Wraith
+ Targets:
+ - Mob: WRAITH
+ Count: 10
+ - Id: 10113
+ Title: Glast Heim - Raydric Archer
+ Targets:
+ - Mob: RAYDRIC_ARCHER
+ Count: 10
+ - Id: 10114
+ Title: Juno - Grand Peco
+ Targets:
+ - Mob: GRAND_PECO
+ Count: 20
+ - Id: 10115
+ Title: Juno - sleeper
+ Targets:
+ - Mob: SLEEPER
+ Count: 20
+ - Id: 10116
+ Title: Juno - Goat
+ Targets:
+ - Mob: GOAT
+ Count: 20
+ - Id: 10117
+ Title: Juno - Harpy
+ Targets:
+ - Mob: HARPY
+ Count: 20
+ - Id: 10118
+ Title: clock tower - Clock
+ Targets:
+ - Mob: CLOCK
+ Count: 15
+ - Id: 10119
+ Title: clock tower - Punk
+ Targets:
+ - Mob: PUNK
+ Count: 15
+ - Id: 10120
+ Title: clock tower - Rideword
+ Targets:
+ - Mob: RIDEWORD
+ Count: 15
+ - Id: 10121
+ Title: Localizing - Uzhas
+ Targets:
+ - Mob: UZHAS
+ Count: 15
+ - Id: 10122
+ Title: Localizing - Miyabi Doll
+ Targets:
+ - Mob: MIYABI_NINGYO
+ Count: 15
+ - Id: 10123
+ Title: Localizing - Mi Gao
+ Targets:
+ - Mob: INCREASE_SOIL
+ Count: 15
+ - Id: 11000
+ Title: Inspection of Odin Shrine
+ - Id: 11001
+ Title: Inspection of Odin Shrine
+ - Id: 11002
+ Title: Inspection of Odin Shrine
+ - Id: 11003
+ Title: Inspection of Odin Shrine
+ - Id: 11004
+ Title: Inspection of Odin Shrine
+ - Id: 11005
+ Title: Inspection of Odin Shrine
+ - Id: 11006
+ Title: Inspection of Odin Shrine
+ - Id: 11007
+ Title: Inspection of Odin Shrine
+ - Id: 11008
+ Title: Inspection of Odin Shrine
+ - Id: 11009
+ Title: Morriphen's Request
+ - Id: 11010
+ Title: Fetching the medicine
+ - Id: 11011
+ Title: Medicine for two
+ - Id: 11012
+ Title: Find Makkie
+ - Id: 11013
+ Title: Red Plant Stem Powder
+ - Id: 11014
+ Title: The researcher's medicine
+ - Id: 11015
+ Title: Siria's cure
+ - Id: 11016
+ Title: Morriphen's story
+ - Id: 11017
+ Title: Exploring Juperos
+ - Id: 11018
+ Title: Exploring Juperos
+ - Id: 11019
+ Title: Exploring Juperos
+ - Id: 11020
+ Title: Exploring Juperos
+ - Id: 11021
+ Title: Exploring Juperos
+ - Id: 11022
+ Title: Exploring Juperos
+ - Id: 11029
+ Title: Going to the Turtle Island..
+ - Id: 11030
+ Title: Going to the Turtle Island..
+ - Id: 11031
+ Title: Going to the Turtle Island..
+ - Id: 11032
+ Title: Going to the Turtle Island..
+ - Id: 11033
+ Title: Going to the Turtle Island..
+ - Id: 11034
+ Title: Going to the Turtle Island..
+ - Id: 11035
+ Title: Going to the Turtle Island..
+ - Id: 11036
+ Title: Going to the Turtle Island..
+ - Id: 11037
+ Title: Going to the Turtle Island..
+ - Id: 11038
+ Title: Meet the Dead
+ - Id: 11039
+ Title: Meet the Dead
+ - Id: 11040
+ Title: Meet the Dead
+ - Id: 11041
+ Title: Meet the Dead
+ - Id: 11042
+ Title: Meet the Dead
+ - Id: 11043
+ Title: Meet the Dead
+ - Id: 11044
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11045
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11046
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11047
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11048
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11049
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11050
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11051
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11052
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11053
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11054
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11055
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11056
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11057
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11070
+ Title: Poison King
+ - Id: 11071
+ Title: Poison King
+ - Id: 11072
+ Title: Poison King
+ - Id: 11073
+ Title: Poison King
+ - Id: 11074
+ Title: Poison King
+ - Id: 11075
+ Title: Poison King
+ - Id: 11076
+ Title: Poison King
+ - Id: 11077
+ Title: Poison King
+ - Id: 11078
+ Title: Poison King
+ - Id: 11079
+ Title: Poison King
+ - Id: 11080
+ Title: Poison King
+ - Id: 11081
+ Title: Poison King
+ - Id: 11082
+ Title: Poison King
+ - Id: 11083
+ Title: Poison King
+ - Id: 11084
+ Title: New Surroundings
+ - Id: 11085
+ Title: New Surroundings
+ - Id: 11086
+ Title: New Surroundings
+ - Id: 11087
+ Title: Repairing the Tent
+ - Id: 11088
+ Title: Repairing the Tent
+ - Id: 11089
+ Title: Repairing the Tent
+ - Id: 11090
+ Title: Repairing the Tent
+ - Id: 11091
+ Title: Delivering Supplies
+ - Id: 11092
+ Title: Delivering Supplies
+ - Id: 11093
+ Title: Delivering Supplies
+ - Id: 11094
+ Title: Delivering Supplies
+ - Id: 11095
+ Title: Delivering Supplies
+ - Id: 11096
+ Title: Delivering Supplies
+ - Id: 11097
+ Title: Delivering Supplies
+ - Id: 11098
+ Title: Delivering Supplies
+ - Id: 11099
+ Title: To My Friend
+ - Id: 11100
+ Title: To My Friend
+ - Id: 11101
+ Title: Secret note of Bazet
+ - Id: 11102
+ Title: Secret note of Bazet
+ - Id: 11103
+ Title: Secret note of Bazet
+ - Id: 11104
+ Title: Resting time
+ TimeLimit: +23h
+ - Id: 11105
+ Title: Tendrilrion skin
+ - Id: 11106
+ Title: Job changing to Warlock
+ - Id: 11107
+ Title: Job changing to Warlock
+ - Id: 11108
+ Title: Job changing to Warlock
+ - Id: 11109
+ Title: Job changing to Warlock
+ - Id: 11110
+ Title: Job changing to Warlock
+ - Id: 11111
+ Title: Job changing to Warlock
+ - Id: 11112
+ Title: Job changing to Warlock
+ - Id: 11113
+ Title: Until radering is functioning
+ TimeLimit: +23h
+ - Id: 11114
+ Title: "Request : Hunt Honet"
+ Targets:
+ - Mob: HORNET
+ Count: 10
+ - Id: 11115
+ Title: "Request : Hunt Condor"
+ Targets:
+ - Mob: CONDOR
+ Count: 20
+ - Id: 11116
+ Title: "Request : Hunt Grasshopper's Leg"
+ Targets:
+ - Mob: ROCKER
+ Count: 10
+ - Id: 11117
+ Title: "Request : Hunt Worm tail"
+ Targets:
+ - Mob: WORM_TAIL
+ Count: 20
+ - Id: 11118
+ Title: "Request : Hunt Spore"
+ Targets:
+ - Mob: SPORE
+ Count: 30
+ - Id: 11119
+ Title: "Request : Pest Control"
+ Targets:
+ - Mob: THIEF_BUG_EGG
+ Count: 20
+ - Id: 11120
+ Title: "Request : Hunt Muka"
+ Targets:
+ - Mob: MUKA
+ Count: 20
+ - Id: 11121
+ Title: "Request : Hunt Farmiliar"
+ Targets:
+ - Mob: FARMILIAR
+ Count: 20
+ - Id: 11122
+ Title: "Request : Collect Feather"
+ Targets:
+ - Mob: PECOPECO
+ Count: 30
+ - Id: 11123
+ Title: "Request : Collect Poison Spore"
+ Targets:
+ - Mob: POISON_SPORE
+ Count: 30
+ - Id: 11124
+ Title: "Request : Hunt Honet - Complete"
+ TimeLimit: +1d
+ - Id: 11125
+ Title: "Request : Hunt Condor - Complete"
+ TimeLimit: +1d
+ - Id: 11126
+ Title: "Request : Hunt Grasshopper's Leg - Complete"
+ TimeLimit: +1d
+ - Id: 11127
+ Title: "Request : Hunt Worm Tail - Complete"
+ TimeLimit: +1d
+ - Id: 11128
+ Title: "Request : Hunt Spore - Complete"
+ TimeLimit: +1d
+ - Id: 11129
+ Title: "Request : Pest Control - Complete"
+ TimeLimit: +1d
+ - Id: 11130
+ Title: "Request : Hunt Muka - Complete"
+ TimeLimit: +1d
+ - Id: 11131
+ Title: "Request : Hunt Farmiliar - Complete"
+ TimeLimit: +1d
+ - Id: 11132
+ Title: "Request : Collect Feather - Complete"
+ TimeLimit: +1d
+ - Id: 11133
+ Title: "Request : Collect Poison Spore - Complete"
+ TimeLimit: +1d
+ - Id: 11135
+ Title: Looking for Maestro Song
+ - Id: 11136
+ Title: Looking for Maestro Song
+ - Id: 11137
+ Title: Looking for Maestro Song
+ - Id: 11138
+ Title: Looking for Maestro Song
+ - Id: 11139
+ Title: Looking for Maestro Song
+ - Id: 11140
+ Title: The sky, plane and travel sickness.
+ - Id: 11141
+ Title: Human & gossip is towarding to the bar
+ - Id: 11142
+ Title: Fearful metalic sound
+ - Id: 11143
+ Title: Thanatos tower
+ - Id: 11144
+ Title: "Juno manager : click"
+ - Id: 11145
+ Title: "I want to get the "
+ Targets:
+ - Mob: TEDDY_BEAR
+ Count: 33
+ - Id: 11146
+ Title: to ice tunnel...
+ - Id: 11147
+ Title: Lared's dew
+ - Id: 11148
+ Title: Toward Comodo with the bow
+ - Id: 11149
+ Title: Just pour the water. Pour! Pour!...
+ - Id: 11150
+ Title: Looking for Maestro Song
+ - Id: 11151
+ Title: Looking for Maestro Song
+ - Id: 11152
+ Title: to the quiet place!...
+ - Id: 11153
+ Title: Missing watch top
+ - Id: 11154
+ Title: I will remember the memories with you....
+ - Id: 11155
+ Title: undefinable battler
+ - Id: 11156
+ Title: annoying homework
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 100
+ - Id: 11157
+ Title: "Helmes valley "
+ - Id: 11158
+ Title: On the way for meditation
+ - Id: 11159
+ Title: Story of Brian
+ - Id: 11160
+ Title: Story of John
+ - Id: 11161
+ Title: Story of Tyler
+ - Id: 11162
+ Title: Story of Rose
+ - Id: 11163
+ Title: Story of Bain
+ - Id: 11164
+ Title: Story of Lash
+ - Id: 11165
+ Title: Delivery to Brian
+ - Id: 11166
+ Title: Delivery to John
+ - Id: 11167
+ Title: Delivery to Tyler
+ - Id: 11168
+ Title: Delivery to Rose
+ - Id: 11169
+ Title: Delivery to Bain
+ - Id: 11170
+ Title: Delivery to Lash
+ - Id: 11171
+ Title: Request from Frede
+ - Id: 11172
+ Title: Request from Frede
+ - Id: 11173
+ Title: Request from Frede
+ - Id: 11174
+ Title: Supply Shortage
+ - Id: 11175
+ Title: Supply Shortage
+ TimeLimit: +2h
+ - Id: 11176
+ Title: For my friends
+ - Id: 11182
+ Title: Theore's Report
+ TimeLimit: +1mn
+ - Id: 11183
+ Title: Theore's Favor
+ - Id: 11184
+ Title: Runaway Laphine
+ - Id: 11185
+ Title: Pouch
+ - Id: 11186
+ Title: Pouch
+ - Id: 11187
+ Title: Pouch
+ - Id: 11188
+ Title: Pouch
+ - Id: 11189
+ Title: Roast Beef
+ - Id: 11190
+ Title: Roast Beef
+ - Id: 11191
+ Title: Shortage of Roast Beef
+ - Id: 11192
+ Title: Mora Village...
+ - Id: 11193
+ Title: Sonya's Friend
+ - Id: 11194
+ Title: Runaway Laphine
+ - Id: 11195
+ Title: Pouch
+ - Id: 11196
+ Title: Pouch
+ - Id: 11197
+ Title: Pouch
+ - Id: 11198
+ Title: Mora Village...
+ - Id: 11199
+ Title: Theo's Friend
+ - Id: 11200
+ Title: Pouch
+ - Id: 11201
+ Title: Roast Beef
+ - Id: 11202
+ Title: Roast Beef
+ - Id: 11203
+ Title: Shortage of Roast Beef
+ - Id: 11206
+ Title: Quick Delivery Yoneseu
+ - Id: 11207
+ Title: A Very Heavy Burden
+ - Id: 11208
+ Title: Daphne
+ - Id: 11209
+ Title: Hardships of Thomas
+ - Id: 11210
+ Title: Malangdo Reunion
+ - Id: 11211
+ Title: Malangdo Reunion
+ - Id: 11212
+ Title: Malangdo Reunion
+ - Id: 11213
+ Title: Malangdo Reunion
+ - Id: 11214
+ Title: Malangdo Reunion
+ - Id: 11215
+ Title: Malangdo Reunion
+ - Id: 11216
+ Title: Malangdo Reunion
+ - Id: 11217
+ Title: Malangdo Reunion
+ - Id: 11218
+ Title: Malangdo Reunion
+ - Id: 11219
+ Title: Malangdo Reunion
+ - Id: 11220
+ Title: Malangdo Reunion
+ - Id: 11221
+ Title: Repair of cracks
+ - Id: 11222
+ Title: Repair of cracks
+ - Id: 11223
+ Title: Repair of cracks
+ - Id: 11224
+ Title: Repair of cracks
+ - Id: 11225
+ Title: Repair of cracks
+ - Id: 11226
+ Title: Repair of cracks
+ - Id: 11227
+ Title: Repair of cracks
+ - Id: 11228
+ Title: Repair of cracks
+ - Id: 11229
+ Title: Repair of cracks
+ - Id: 11230
+ Title: Repair of cracks
+ - Id: 11231
+ Title: Repair of cracks
+ - Id: 11232
+ Title: Repair of cracks
+ - Id: 11233
+ Title: Repair of cracks
+ - Id: 11234
+ Title: Repair of cracks
+ - Id: 11235
+ Title: Repair of cracks
+ - Id: 11236
+ Title: Repair of cracks
+ - Id: 11237
+ Title: Repair of cracks
+ - Id: 11238
+ Title: Malangdo Fruits
+ - Id: 11239
+ Title: Malangdo Fruits
+ TimeLimit: +23h
+ - Id: 11240
+ Title: Repair of cracks
+ - Id: 11241
+ Title: Repair of cracks
+ - Id: 11242
+ Title: Repair of cracks
+ - Id: 11243
+ Title: Repair of cracks
+ TimeLimit: +23h
+ - Id: 11244
+ Title: Soft Jelly
+ - Id: 11245
+ Title: Soft Jelly
+ TimeLimit: +23h
+ - Id: 11284
+ Title: Nurse at Port Malaya-1
+ - Id: 11285
+ Title: Nurse at Port Malaya-2
+ - Id: 11286
+ Title: Nurse at Port Malaya-3
+ - Id: 11287
+ Title: Nurse at Port Malaya-4
+ - Id: 11288
+ Title: Nurse at Port Malaya-5
+ - Id: 11289
+ Title: Nurse at Port Malaya-6
+ - Id: 11290
+ Title: Nurse at Port Malaya-7
+ - Id: 11291
+ Title: Nurse at Port Malaya-8
+ - Id: 11292
+ Title: Nurse at Port Malaya-9
+ - Id: 11293
+ Title: Nurse at Port Malaya-10
+ - Id: 11294
+ Title: Nurse at Port Malaya-11
+ - Id: 11295
+ Title: Nurse at Port Malaya-12
+ - Id: 11296
+ Title: Nurse at Port Malaya-13
+ - Id: 11297
+ Title: Nurse at Port Malaya-14
+ - Id: 11298
+ Title: Nurse at Port Malaya-15
+ - Id: 11299
+ Title: Nurse at Port Malaya-16
+ - Id: 11300
+ Title: Nurse at Port Malaya-17
+ - Id: 11301
+ Title: Nurse at Port Malaya-18
+ - Id: 11302
+ Title: Nurse at Port Malaya-19
+ - Id: 11303
+ Title: Nurse at Port Malaya-20
+ - Id: 11304
+ Title: Nurse at Port Malaya-21
+ - Id: 11305
+ Title: Nurse at Port Malaya-22
+ - Id: 11306
+ Title: Nurse at Port Malaya-23
+ - Id: 11307
+ Title: Nurse at Port Malaya-24
+ - Id: 11308
+ Title: Nurse at Port Malaya-25
+ - Id: 11309
+ Title: Nurse at Port Malaya-26
+ - Id: 11310
+ Title: Eclage's Entrance
+ TimeLimit: +30s
+ - Id: 11311
+ Title: Eclage's Entrance
+ - Id: 11312
+ Title: Goliath
+ - Id: 11313
+ Title: Goliath
+ - Id: 11314
+ Title: Goliath
+ - Id: 11315
+ Title: And time keeps on flowing
+ - Id: 11316
+ Title: And time keeps on flowing
+ - Id: 11317
+ Title: And time keeps on flowing
+ - Id: 11318
+ Title: And time keeps on flowing
+ - Id: 11319
+ Title: And time keeps on flowing
+ - Id: 11320
+ Title: And time keeps on flowing
+ - Id: 11321
+ Title: And time keeps on flowing
+ - Id: 11322
+ Title: And time keeps on flowing
+ - Id: 11323
+ Title: And time keeps on flowing
+ - Id: 11324
+ Title: And time keeps on flowing
+ - Id: 11325
+ Title: The chicken or the egg
+ - Id: 11326
+ Title: The chicken or the egg
+ - Id: 11327
+ Title: The chicken or the egg
+ - Id: 11328
+ Title: The chicken or the egg
+ - Id: 11329
+ Title: The chicken or the egg
+ - Id: 11330
+ Title: The chicken or the egg
+ - Id: 11331
+ Title: The chicken or the egg
+ - Id: 11332
+ Title: The chicken or the egg
+ - Id: 11333
+ Title: Red seed and green seed
+ - Id: 11334
+ Title: Red seed and green seed
+ - Id: 11335
+ Title: Dreaming boy
+ - Id: 11336
+ Title: Dreaming boy
+ - Id: 11337
+ Title: Dreaming boy
+ - Id: 11378
+ Title: "Trick or treat "
+ - Id: 12000
+ Title: An old friend
+ - Id: 12001
+ Title: Digotz, Maku's old friend
+ - Id: 12002
+ Title: Messenger of Friendship
+ - Id: 12003
+ Title: Digotz's message
+ - Id: 12004
+ Title: Maku's other friend
+ - Id: 12005
+ Title: Benkaistein
+ - Id: 12006
+ Title: Benkaistein's lost item
+ - Id: 12007
+ Title: Kazien
+ - Id: 12008
+ Title: Researcher Garins
+ - Id: 12009
+ Title: Failed mission
+ - Id: 12010
+ Title: No entrance
+ - Id: 12011
+ Title: Lyozien
+ - Id: 12012
+ Title: Meet Mr. Ahman
+ - Id: 12013
+ Title: Delivery complete
+ - Id: 12014
+ Title: More missions
+ - Id: 12015
+ Title: Ghalstein
+ - Id: 12016
+ Title: Sneaking into the Laboratory
+ - Id: 12017
+ Title: Membership approved
+ - Id: 12018
+ Title: Meeting the President
+ - Id: 12019
+ Title: The President's Mission
+ - Id: 12020
+ Title: Rescuing a Secret Wing Member
+ - Id: 12021
+ Title: The Sealed File Folder
+ - Id: 12022
+ Title: The Sealed File Folder
+ - Id: 12023
+ Title: Shinokas the researcher
+ - Id: 12024
+ Title: Kafra Corporation Agent
+ - Id: 12025
+ Title: Rekenber's Secret Archive
+ - Id: 12026
+ Title: Rekenber's Secret Archive
+ - Id: 12027
+ Title: Rekenber's Secret Archive
+ - Id: 12028
+ Title: Kurelle the traitor
+ - Id: 12029
+ Title: Lost Engagement Ring
+ - Id: 12030
+ Title: Engagement Ring Found
+ - Id: 12031
+ Title: Find Annon
+ - Id: 12032
+ Title: Searching for Annon
+ - Id: 12033
+ Title: Traces of blood
+ - Id: 12034
+ Title: Annon's side of the story
+ - Id: 12035
+ Title: Holy Threads
+ - Id: 12036
+ Title: The Stone Slate Message
+ - Id: 12037
+ Title: Holier Threads
+ - Id: 12038
+ Title: Searching for the Sa-mhing Tiger
+ - Id: 12039
+ Title: Boonthom's Comrade
+ - Id: 12040
+ Title: Benkaistein's Journal
+ - Id: 12041
+ Title: Benkaistein's Journal
+ - Id: 12042
+ Title: Benkaistein's Journal
+ - Id: 12043
+ Title: Pass to the Slums
+ - Id: 12044
+ Title: Soothing a crying child 1
+ - Id: 12045
+ Title: Soothing a crying child 2
+ - Id: 12046
+ Title: Soothing a crying child 3
+ - Id: 12047
+ Title: Soothing a crying child 4
+ - Id: 12048
+ Title: Soothing a crying child 5
+ - Id: 12049
+ Title: Job Quest 1 - Rogue
+ - Id: 12050
+ Title: Job Quest 2 - Rogue
+ - Id: 12051
+ Title: Job Quest 3 - Rogue
+ - Id: 12052
+ Title: Job Quest 4 - Rogue
+ - Id: 12053
+ Title: Job Quest 5 - Rogue
+ - Id: 12054
+ Title: Job Quest 6 - Rogue
+ - Id: 12055
+ Title: Job Quest - Assassin
+ - Id: 12056
+ Title: Job Quest - Assassin
+ - Id: 12057
+ Title: Pass to the Lab
+ - Id: 12058
+ Title: Admission Restricted to the 102 Tower
+ TimeLimit: +7d
+ - Id: 12059
+ Title: Orc's Memory Time Limit
+ TimeLimit: +2h
+ - Id: 12060
+ Title: Today's Fishing Closed
+ TimeLimit: +1d
+ - Id: 12061
+ Title: Concentration
+ TimeLimit: +10s
+ - Id: 12062
+ Title: Today's Mining Closed
+ TimeLimit: +1d
+ - Id: 12070
+ Title: Limited time for enter
+ TimeLimit: +4h
+ - Id: 12071
+ Title: Stamp a seal on the attendance book
+ TimeLimit: +1d
+ - Id: 12072
+ Title: Hunt tharafrog
+ Targets:
+ - Mob: THARA_FROG
+ Count: 20
+ - Id: 12073
+ Title: Remove Cruiser
+ Targets:
+ - Mob: CRUISER
+ Count: 15
+ - Id: 12074
+ Title: Remove Kukre
+ Targets:
+ - Mob: KUKRE
+ Count: 30
+ - Id: 12075
+ Title: Remove orcbaby
+ Targets:
+ - Mob: ORC_BABY
+ Count: 15
+ - Id: 12076
+ Title: Remove orcwarroir
+ Targets:
+ - Mob: ORK_WARRIOR
+ Count: 20
+ - Id: 12077
+ Title: Hunt vadon
+ Targets:
+ - Mob: VADON
+ Count: 15
+ - Id: 12078
+ Title: Hunt Megalodon
+ Targets:
+ - Mob: MEGALODON
+ Count: 30
+ - Id: 12079
+ Title: Hunt Marse
+ Targets:
+ - Mob: MARSE
+ Count: 15
+ - Id: 12080
+ Title: Hunt Cornutus
+ Targets:
+ - Mob: CORNUTUS
+ Count: 20
+ - Id: 12081
+ Title: Remove Myst
+ Targets:
+ - Mob: MYST
+ Count: 15
+ - Id: 12082
+ Title: Hunt shellfish
+ Targets:
+ - Mob: SHELLFISH
+ Count: 30
+ - Id: 12083
+ Title: Hunt Marine sphere
+ Targets:
+ - Mob: MARINE_SPHERE
+ Count: 15
+ - Id: 12084
+ Title: Hunt Phen
+ Targets:
+ - Mob: PHEN
+ Count: 20
+ - Id: 12085
+ Title: Remove orcskeleton
+ Targets:
+ - Mob: ORC_SKELETON
+ Count: 15
+ - Id: 12086
+ Title: Remove Zenorc
+ Targets:
+ - Mob: ZENORC
+ Count: 30
+ - Id: 12087
+ Title: Remove mummy
+ Targets:
+ - Mob: MUMMY
+ Count: 15
+ - Id: 12088
+ Title: Accomplishing a request
+ - Id: 12090
+ Title: Mysterious guy
+ - Id: 12091
+ Title: Just save the burning heart
+ - Id: 12092
+ Title: Long lasting story
+ - Id: 12093
+ Title: the record the intelligence Lyoda left
+ - Id: 12094
+ Title: The damaged shield letter
+ - Id: 12096
+ Title: Towards Karakas
+ - Id: 12097
+ Title: Basic preparation
+ - Id: 12098
+ Title: Tour of dungeon
+ - Id: 12099
+ Title: Remove Root Cause
+ Targets:
+ - Mob: DRACO_EGG
+ Count: 10
+ - Id: 12100
+ Title: Violent Winged Insect
+ Targets:
+ - Mob: LUCIOLA_VESPA
+ Count: 12
+ - Id: 12101
+ Title: Work Interference
+ Targets:
+ - Mob: DRACO
+ Count: 5
+ - Id: 12102
+ Title: Intelligent Snakes
+ Targets:
+ - Mob: NAGA
+ Count: 10
+ - Id: 12103
+ Title: Legendary Creature
+ Targets:
+ - Mob: CORNUS
+ Count: 1
+ - Id: 12104
+ Title: Insects with an Appetite
+ Targets:
+ - Mob: CENTIPEDE
+ Count: 15
+ - Id: 12105
+ Title: Moving Rocks
+ Targets:
+ - Mob: BRADIUM_GOLEM
+ Count: 10
+ - Id: 12106
+ Title: A child on a flower
+ Targets:
+ - Mob: PINGUICULA
+ Count: 15
+ - Id: 12107
+ Title: Twisted Love
+ Targets:
+ - Mob: PINGUICULA_D
+ Count: 10
+ - Id: 12108
+ Title: Dangerous Plant Removal
+ Targets:
+ - Mob: NEPENTHES
+ Count: 12
+ - Id: 12109
+ Title: Larva Extermination
+ Targets:
+ - Mob: CENTIPEDE_LARVA
+ Count: 14
+ - Id: 12110
+ Title: Demon of Water
+ Targets:
+ - Mob: AQUA_ELEMENTAL
+ Count: 7
+ - Id: 12111
+ Title: Bird with ugly face
+ Targets:
+ - Mob: TATACHO
+ Count: 10
+ - Id: 12117
+ Title: Withered Flower
+ - Id: 12118
+ Title: Welcomed Mineral
+ - Id: 12119
+ Title: Valuable Textile
+ - Id: 12120
+ Title: Curious Meat
+ - Id: 12121
+ Title: Materials to Clear Snow
+ - Id: 12122
+ Title: Best Cooler Material
+ - Id: 12123
+ Title: Best Paint
+ - Id: 12124
+ Title: Rare Valuable
+ - Id: 12125
+ Title: Armory Material
+ - Id: 12126
+ Title: Advanced Armory Material
+ - Id: 12127
+ Title: Supervisor's Tool
+ - Id: 12128
+ Title: Preparation for Heating
+ - Id: 12129
+ Title: Suspicious Food
+ - Id: 12130
+ Title: Useful Material
+ - Id: 12131
+ Title: Essential Material for Construction
+ - Id: 12132
+ Title: Essential Material for Construction 2
+ - Id: 12133
+ Title: Decoration arrangement
+ - Id: 12134
+ Title: Instant Receptacle
+ - Id: 12135
+ Title: Not enough medicine
+ - Id: 12136
+ Title: Honey robber
+ - Id: 12137
+ Title: Tools for Experiment
+ - Id: 12138
+ Title: Fine Gift Samples
+ - Id: 12139
+ Title: Respect for Taste!
+ - Id: 12140
+ Title: Courtesy for Regulars
+ - Id: 12141
+ Title: Special Package
+ - Id: 12142
+ Title: Dangerous Request
+ - Id: 12143
+ Title: Strange Trend
+ - Id: 12144
+ Title: Unknown Usage
+ - Id: 12145
+ Title: Other World Cuisine
+ - Id: 12146
+ Title: Filling in Cracks
+ - Id: 12147
+ Title: Adhesive Material
+ - Id: 12148
+ Title: Bait for Tatacho Hunting
+ - Id: 12149
+ Title: Swordmanship Practice
+ - Id: 12150
+ Title: Pretty reddish vegetable
+ - Id: 12151
+ Title: Tenacity of the pub owner
+ - Id: 12152
+ Title: Tastes like home cooking
+ - Id: 12153
+ Title: Hazardous plant when burnt
+ - Id: 12154
+ Title: Unexpectedly Normal
+ - Id: 12155
+ Title: Gift with heart
+ - Id: 12156
+ Title: Respect personal appetite!
+ - Id: 12157
+ Title: Resolution of the pub owner
+ - Id: 12158
+ Title: Rage of the pub owner
+ - Id: 12159
+ Title: Quest record from Laponte
+ TimeLimit: +23h
+ - Id: 12160
+ Title: Quest record from Kalipo
+ TimeLimit: +23h
+ - Id: 12161
+ Title: Quest record from Pura
+ TimeLimit: +23h
+ - Id: 12162
+ Title: Quest record from Tragis
+ TimeLimit: +23h
+ - Id: 12163
+ Title: Quest record from Calyon
+ TimeLimit: +23h
+ - Id: 12164
+ Title: Quest record from Moltuka
+ TimeLimit: +23h
+ - Id: 12165
+ Title: Dizziness
+ TimeLimit: +6h
+ - Id: 12166
+ Title: Tree Root Doc.
+ - Id: 12167
+ Title: Reptile Tongue Doc.
+ - Id: 12168
+ Title: Scorpion Tail Doc.
+ - Id: 12169
+ Title: Stem Doc.
+ - Id: 12170
+ Title: Pointed Scale Doc.
+ - Id: 12171
+ Title: Resin Doc.
+ - Id: 12172
+ Title: Spawn Doc.
+ - Id: 12173
+ Title: Jellopy Doc.
+ - Id: 12174
+ Title: Fish Tail Doc.
+ - Id: 12175
+ Title: Worm Peeling Doc.
+ - Id: 12176
+ Title: Gill Doc.
+ - Id: 12177
+ Title: Tooth of Bat Doc.
+ - Id: 12178
+ Title: Fluff Doc.
+ - Id: 12179
+ Title: Chrysalis Doc.
+ - Id: 12180
+ Title: Feather of Birds Doc.
+ - Id: 12181
+ Title: Talon Document Doc.
+ - Id: 12182
+ Title: Sticky Webfoot Doc.
+ - Id: 12183
+ Title: Animal Skin Doc.
+ - Id: 12184
+ Title: Wolf Claw Doc.
+ - Id: 12185
+ Title: Mushroom Spore Doc.
+ - Id: 12186
+ Title: Orc's Fang Doc.
+ - Id: 12187
+ Title: Evil Horn Doc.
+ - Id: 12188
+ Title: Powder of Butterfly Doc.
+ - Id: 12189
+ Title: Bill of Birds Doc.
+ - Id: 12190
+ Title: Snake Scale Doc.
+ - Id: 12191
+ Title: Insect Feeler Doc.
+ - Id: 12192
+ Title: Immortal Heart Doc.
+ - Id: 12193
+ Title: Rotten Bandage Doc.
+ - Id: 12194
+ Title: Decayed Nail Doc.
+ - Id: 12195
+ Title: Horrendous Mouth Doc.
+ - Id: 12196
+ Title: Tentacle Doc.
+ - Id: 12197
+ Title: Shell Doc.
+ - Id: 12198
+ Title: Scale Shell Doc.
+ - Id: 12199
+ Title: Venom Canine Doc.
+ - Id: 12200
+ Title: Sticky Mucus Doc.
+ - Id: 12201
+ Title: Bee Sting Doc.
+ - Id: 12202
+ Title: Grasshopper's Leg Doc.
+ - Id: 12203
+ Title: Royal Jelly Doc.
+ - Id: 12204
+ Title: Yoyo Tail Doc.
+ - Id: 12205
+ Title: Solid Shell Doc.
+ - Id: 12206
+ Title: Yam Doc.
+ - Id: 12207
+ Title: Raccoon Leaf Doc.
+ - Id: 12208
+ Title: Snail's Shell Doc.
+ - Id: 12209
+ Title: Horn Doc.
+ - Id: 12210
+ Title: Bear's Footskin Doc.
+ - Id: 12211
+ Title: Feather Doc.
+ - Id: 12212
+ Title: Red Herb Doc.
+ - Id: 12213
+ Title: Carrot Doc.
+ - Id: 12214
+ Title: Cactus Needle Doc.
+ - Id: 12215
+ Title: Stone Heart Doc.
+ - Id: 12216
+ Title: Pouty Jahbong
+ TimeLimit: +6h
+ - Id: 12217
+ Title: Request - Traces of wild boar hunt
+ - Id: 12218
+ Title: How to make lava elixir
+ - Id: 12219
+ Title: How to creat flame elixir
+ - Id: 12220
+ Title: How to create glaicer elixir
+ - Id: 12221
+ Title: How to create fossil elixir
+ - Id: 12222
+ Title: How to create storm elixir
+ - Id: 12225
+ Title: Pom Spider Hunting
+ - Id: 12226
+ Title: Angra Mantis Hunting
+ - Id: 12227
+ Title: Parus Hunting
+ - Id: 12228
+ Title: Little Fatam Hunting
+ - Id: 12229
+ Title: Miming Hunting
+ - Id: 12230
+ Title: Mora Monster Hunt
+ TimeLimit: +23h
+ - Id: 12231
+ Title: Insect Feeler Collecting
+ - Id: 12232
+ Title: Immortal Heart Collecting
+ - Id: 12233
+ Title: Rotten Bandage Collecting
+ - Id: 12234
+ Title: Orcish Voucher Collecting
+ - Id: 12235
+ Title: Skeleton Bone Collecting
+ - Id: 12236
+ Title: Memento Collecting
+ - Id: 12237
+ Title: Shell Collecting
+ - Id: 12238
+ Title: Scale Shell Collecting
+ - Id: 12239
+ Title: Venom Canine Collecting
+ - Id: 12240
+ Title: Sticky Mucus Collecting
+ - Id: 12241
+ Title: Mora Item Request 1
+ TimeLimit: +23h
+ - Id: 12242
+ Title: Mora Item Request 2
+ TimeLimit: +23h
+ - Id: 12243
+ Title: Missing Information on Tajareu
+ - Id: 12244
+ Title: Missing Information on Tokenizer
+ - Id: 12245
+ Title: Missing Information on Mesile
+ - Id: 12246
+ Title: Missing Information on Noir
+ - Id: 12247
+ Title: Missing Information on Pajama God
+ - Id: 12248
+ Title: Missing Information on Mendel
+ - Id: 12249
+ Title: Missing Information on Miles
+ - Id: 12250
+ Title: Missing Information on Kunmune
+ - Id: 12251
+ Title: Missing Information on Chayihokin
+ - Id: 12252
+ Title: Missing Information on Tuale
+ - Id: 12253
+ Title: Missing Person Search Time Limit
+ TimeLimit: +23h
+ - Id: 12254
+ Title: Now it's cleaning
+ TimeLimit: +1h
+ - Id: 12255
+ Title: Hunt deep sea crab
+ - Id: 12256
+ Title: Hunt deep sea squid
+ - Id: 12257
+ Title: Hunt Ancient crustacean
+ - Id: 12258
+ Title: Hunt deep sea shell
+ - Id: 12259
+ Title: Hunt ancient kukre
+ - Id: 12260
+ Title: Hunt deep sea conch
+ - Id: 12261
+ Title: Hunt deep sea horse
+ - Id: 12262
+ Title: Hunt ancient sword fish
+ - Id: 12263
+ Title: Hunt ancient sea god
+ - Id: 12264
+ Title: Hunt mutation anolian
+ - Id: 12265
+ Title: Hunt deep sea mermaid
+ - Id: 12266
+ Title: Hunt transformable kapha
+ - Id: 12267
+ Title: Hunt weird coelacanth
+ - Id: 12268
+ Title: Hunt dark coelacanth
+ - Id: 12269
+ Title: Hunt Cruel coelacanth
+ - Id: 12270
+ Title: Hunt mutation coelacanth
+ - Id: 12271
+ Title: In progress general culvert single day service
+ TimeLimit: +23h
+ - Id: 12272
+ Title: In progress hard culvert single day service
+ TimeLimit: +23h
+ - Id: 12273
+ Title: In progress general culvert weekly service
+ TimeLimit: +6d17h
+ - Id: 12274
+ Title: In progress hard culvert weekly service
+ TimeLimit: +6d17h
+ - Id: 12278
+ Title: Towards Bakonawa Lake...
+ TimeLimit: +7d
+ - Id: 12279
+ Title: Get Rid of Bakonawa
+ - Id: 12280
+ Title: A suspicious prisoner
+ - Id: 12281
+ Title: An unwanted favor
+ - Id: 12282
+ Title: Gossip king Clever
+ - Id: 12283
+ Title: The rift researcher
+ - Id: 12284
+ Title: A cat merchant's source of information
+ - Id: 12285
+ Title: A way to calm down a cat
+ - Id: 12286
+ Title: Information traded for some canned foods
+ - Id: 12287
+ Title: A weird experience
+ - Id: 12288
+ Title: A successful experience
+ - Id: 12289
+ Title: Another visitation
+ - Id: 12290
+ Title: Clever's historical documents
+ - Id: 12291
+ Title: Hidden historical documents (?)
+ - Id: 12292
+ Title: The unknown ones
+ - Id: 12293
+ Title: Figures in history
+ - Id: 12294
+ Title: Tour of Eclage
+ - Id: 12295
+ Title: Error
+ - Id: 12296
+ Title: Fun times with the reactor
+ - Id: 12297
+ Title: Encountering Etran
+ - Id: 12298
+ Title: Two wishes
+ - Id: 12299
+ Title: Revisiting Robert
+ - Id: 12300
+ Title: Revisiting Etran
+ - Id: 12301
+ Title: Two remaining friends
+ - Id: 12317
+ Title: Fake Keyblade
+ TimeLimit: +23h
+ - Id: 12318
+ Title: "Upper Cats: annoying guy"
+ - Id: 12319
+ Title: "Upper Cats: annoying guy"
+ - Id: 12363
+ Title: ?????? ?? ??
+ - Id: 13000
+ Title: RWC2011Card Gathering
+ - Id: 13001
+ Title: RWC2011Card Gathering - Hold
+ TimeLimit: +23h
+ - Id: 13002
+ Title: Brigan collecting
+ - Id: 13003
+ Title: Carat Request
+ Targets:
+ - Mob: CARAT
+ Count: 30
+ - Id: 13004
+ Title: Carat Request timer
+ TimeLimit: +1h
+ - Id: 13005
+ Title: Arclouse Request
+ Targets:
+ - Mob: ARCLOUSE
+ Count: 22
+ - Id: 13006
+ Title: Arclouse Request timer
+ TimeLimit: +1h
+ - Id: 13007
+ Title: Anolian Request
+ Targets:
+ - Mob: ANOLIAN
+ Count: 30
+ - Id: 13008
+ Title: Anolian Request timer
+ TimeLimit: +1h
+ - Id: 13009
+ Title: Sting Request
+ Targets:
+ - Mob: STING
+ Count: 30
+ - Id: 13010
+ Title: Sting Request timer
+ TimeLimit: +1h
+ - Id: 13011
+ Title: Majoruros Request
+ Targets:
+ - Mob: MAJORUROS
+ Count: 30
+ - Id: 13012
+ Title: Majoruros Request timer
+ TimeLimit: +1h
+ - Id: 13013
+ Title: Pinguicula Request
+ Targets:
+ - Mob: PINGUICULA
+ Count: 30
+ - Id: 13014
+ Title: Pinguicula Request timer
+ TimeLimit: +1h
+ - Id: 13015
+ Title: Luciola Vespa Request
+ Targets:
+ - Mob: LUCIOLA_VESPA
+ Count: 30
+ - Id: 13016
+ Title: Luciola Vespa Request timer
+ TimeLimit: +1h
+ - Id: 13017
+ Title: Desert Wolf Request
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 30
+ - Id: 13018
+ Title: Desert Wolf Request timer
+ TimeLimit: +1h
+ - Id: 13019
+ Title: Snowier Request
+ Targets:
+ - Mob: SNOWIER
+ Count: 30
+ - Id: 13020
+ Title: Snowier Request timer
+ TimeLimit: +1h
+ - Id: 13021
+ Title: Ice Titan Request
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 30
+ - Id: 13022
+ Title: Ice Titan Request Timer
+ TimeLimit: +1h
+ - Id: 13023
+ Title: Nightmare Terror Request
+ Targets:
+ - Mob: NIGHTMARE_TERROR
+ Count: 30
+ - Id: 13024
+ Title: Nightmare Terror Request Timer
+ TimeLimit: +1h
+ - Id: 13025
+ Title: Flying Deleter Request
+ Targets:
+ - Mob: DELETER
+ Count: 30
+ - Id: 13026
+ Title: Deleter Request Timer
+ TimeLimit: +1h
+ - Id: 13040
+ Title: Loli Ruri Request
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 30
+ - Id: 13041
+ Title: Loli Ruri Request Timer
+ TimeLimit: +1h
+ - Id: 13042
+ Title: Medusa Request
+ Targets:
+ - Mob: MEDUSA
+ Count: 30
+ - Id: 13043
+ Title: Medusa Request Timer
+ TimeLimit: +1h
+ - Id: 13044
+ Title: Anubis Request
+ Targets:
+ - Mob: ANUBIS
+ Count: 20
+ - Id: 13045
+ Title: Anubis Request Timer
+ TimeLimit: +1h
+ - Id: 13046
+ Title: Tendrilion Request
+ Targets:
+ - Mob: TENDRILRION
+ Count: 1
+ - Id: 13047
+ Title: Tendrilion Request Timer
+ TimeLimit: +1h
+ - Id: 13048
+ Title: Tendrilion Request
+ Targets:
+ - Mob: TENDRILRION
+ Count: 1
+ - Id: 13049
+ Title: Tendrilion Request Timer
+ TimeLimit: +1h
+ - Id: 13050
+ Title: The Laphine that loves the land
+ - Id: 13051
+ Title: The singing Laphine
+ - Id: 13052
+ Title: The watering Laphine
+ - Id: 13053
+ Title: The dancing Laphine
+ - Id: 13054
+ Title: The smiling Laphine
+ - Id: 13055
+ Title: See if all the adventurers are safe
+ - Id: 13056
+ Title: Reporter Rossi
+ - Id: 13057
+ Title: Adventurer Euncheong
+ - Id: 13058
+ Title: Troublemaker New Oz
+ - Id: 13059
+ Title: End of project
+ TimeLimit: +22h
+ - Id: 13060
+ Title: Safety confirmation complete!
+ TimeLimit: +22h
+ - Id: 13061
+ Title: Food support
+ - Id: 13062
+ Title: Food support - complete
+ TimeLimit: +22h
+ - Id: 13063
+ Title: Dusting off
+ - Id: 13064
+ Title: Dusting off - complete
+ TimeLimit: +22h
+ - Id: 13065
+ Title: Collecting a souvenir
+ - Id: 13066
+ Title: This is enough for souvenirs
+ TimeLimit: +22h
+ - Id: 13067
+ Title: Raydric research
+ Targets:
+ - Mob: RAYDRIC
+ Count: 30
+ - Id: 13068
+ Title: Raydric research - timer
+ TimeLimit: +1h
+ - Id: 13069
+ Title: Khalitzburg research
+ Targets:
+ - Mob: KHALITZBURG
+ Count: 30
+ - Id: 13070
+ Title: Khalitzburg research - timer
+ TimeLimit: +1h
+ - Id: 13071
+ Title: Wander Man research
+ Targets:
+ - Mob: WANDER_MAN
+ Count: 30
+ - Id: 13072
+ Title: Wander Man research - timer
+ TimeLimit: +1h
+ - Id: 13073
+ Title: Ancient Mimic research
+ Targets:
+ - Mob: ANCIENT_MIMIC
+ Count: 30
+ - Id: 13074
+ Title: Ancient Mimic research - timer
+ TimeLimit: +1h
+ - Id: 13075
+ Title: Death Word research
+ Targets:
+ - Mob: DEATHWORD
+ Count: 30
+ - Id: 13076
+ Title: Death Word research - timer
+ TimeLimit: +1h
+ - Id: 13077
+ Title: Owl Baron research
+ Targets:
+ - Mob: OWL_BARON
+ Count: 20
+ - Id: 13078
+ Title: Owl Baron research - timer
+ TimeLimit: +1h
+ - Id: 13079
+ Title: Bloody Page Research
+ - Id: 13080
+ Title: Bloody Page Research - Wait
+ TimeLimit: +1h
+ - Id: 13081
+ Title: Dark Pinguicula research
+ Targets:
+ - Mob: PINGUICULA_D
+ Count: 30
+ - Id: 13082
+ Title: Dark Pinguicula research - timer
+ TimeLimit: +1h
+ - Id: 13083
+ Title: Nepenthes research
+ Targets:
+ - Mob: NEPENTHES
+ Count: 30
+ - Id: 13084
+ Title: Nepenthes research - timer
+ TimeLimit: +1h
+ - Id: 13085
+ Title: Naga research
+ Targets:
+ - Mob: NAGA
+ Count: 30
+ - Id: 13086
+ Title: Naga research - timer
+ TimeLimit: +1h
+ - Id: 13087
+ Title: Centipede Larva research
+ Targets:
+ - Mob: CENTIPEDE_LARVA
+ Count: 20
+ - Id: 13088
+ Title: Centipede Larva research - timer
+ TimeLimit: +1h
+ - Id: 13089
+ Title: Cornus research
+ Targets:
+ - Mob: CORNUS
+ Count: 30
+ - Id: 13090
+ Title: Cornus research - timer
+ TimeLimit: +1h
+ - Id: 13091
+ Title: Mystic Horn Research
+ - Id: 13092
+ Title: Mystic Horn Research - Wait
+ TimeLimit: +1h
+ - Id: 13093
+ Title: Ancient Mummy research
+ Targets:
+ - Mob: ANCIENT_MUMMY
+ Count: 30
+ - Id: 13094
+ Title: Ancient Mummy research - timer
+ TimeLimit: +1h
+ - Id: 13095
+ Title: Geffenia expedition
+ Targets:
+ - Mob: INCUBUS
+ Count: 10
+ - Mob: SUCCUBUS
+ Count: 10
+ - Mob: VIOLY
+ Count: 10
+ - Id: 13096
+ Title: Geffenia expedition - Wait
+ TimeLimit: +1h
+ - Id: 13097
+ Title: Juperos expedition
+ Targets:
+ - Mob: VENATU_2
+ Count: 30
+ - Mob: VENATU_3
+ Count: 30
+ - Mob: VENATU_4
+ Count: 30
+ - Id: 13098
+ Title: Juperos expedition - Wait
+ TimeLimit: +1h
+ - Id: 13099
+ Title: Fragments and Rusty Screw
+ - Id: 13100
+ Title: Fragments and Rusty Screw - Wait
+ TimeLimit: +1h
+ - Id: 13107
+ Title: Thanatos Tower Search
+ - Id: 13108
+ Title: Rachel holy ground Search
+ - Id: 13109
+ Title: Unknown island Search
+ - Id: 13110
+ Title: Abyss Lake Search
+ - Id: 13111
+ Title: Thanatos Tower Search - Reporting results
+ - Id: 13112
+ Title: Rachel holy ground Search - Reporting results
+ - Id: 13113
+ Title: Nameless Island Search - Reporting results
+ - Id: 13114
+ Title: Abyss Lake Search - Reporting results
+ - Id: 13115
+ Title: Thanatos Tower Search - Wait
+ TimeLimit: +1h
+ - Id: 13116
+ Title: Rachel holy ground Search - Wait
+ TimeLimit: +1h
+ - Id: 13117
+ Title: Unknown island Search - Wait
+ TimeLimit: +1h
+ - Id: 13118
+ Title: Abyss Lake Search - Wait
+ TimeLimit: +1h
+ - Id: 13119
+ Title: Combat Baroness of Retribution
+ Targets:
+ - Mob: RETRIBUTION
+ Count: 30
+ - Id: 13120
+ Title: Combat Baroness of Retribution - Wait
+ TimeLimit: +1h
+ - Id: 13121
+ Title: Combat Lady Solace
+ Targets:
+ - Mob: SOLACE
+ Count: 30
+ - Id: 13122
+ Title: Combat Lady Solace - Wait
+ TimeLimit: +1h
+ - Id: 13123
+ Title: Combat Mistress of Shelter
+ Targets:
+ - Mob: SHELTER
+ Count: 30
+ - Id: 13124
+ Title: Combat Mistress of Shelter - Wait
+ TimeLimit: +1h
+ - Id: 13125
+ Title: Combat Dame of Sentinel
+ Targets:
+ - Mob: OBSERVATION
+ Count: 30
+ - Id: 13126
+ Title: Combat Dame of Sentinel - Wait
+ TimeLimit: +1h
+ - Id: 13127
+ Title: Combat Vanberk and Isilla
+ Targets:
+ - Mob: VANBERK
+ Count: 20
+ - Mob: ISILLA
+ Count: 20
+ - Id: 13128
+ Title: Combat Vanberk and Isilla - Wait
+ TimeLimit: +1h
+ - Id: 13129
+ Title: Combat Hodremlin
+ Targets:
+ - Mob: HODREMLIN
+ Count: 30
+ - Id: 13130
+ Title: Combat Hodremlin - Wait
+ TimeLimit: +1h
+ - Id: 13131
+ Title: Combat Agav and Echio
+ Targets:
+ - Mob: AGAV
+ Count: 20
+ - Mob: ECHIO
+ Count: 20
+ - Id: 13132
+ Title: Combat Agav and Echio - Wait
+ TimeLimit: +1h
+ - Id: 13133
+ Title: Combat Ragged Zombie
+ Targets:
+ - Mob: RAGGED_ZOMBIE
+ Count: 30
+ - Id: 13134
+ Title: Combat Ragged Zombie - Wait
+ TimeLimit: +1h
+ - Id: 13135
+ Title: Combat Zombie Slaughter
+ Targets:
+ - Mob: ZOMBIE_SLAUGHTER
+ Count: 30
+ - Id: 13136
+ Title: Combat Zombie Slaughter - Wait
+ TimeLimit: +1h
+ - Id: 13137
+ Title: Combat Banshee
+ Targets:
+ - Mob: BANSHEE
+ Count: 30
+ - Id: 13138
+ Title: Combat Banshee - Wait
+ TimeLimit: +1h
+ - Id: 13139
+ Title: Combat Ferus and Bewler
+ Targets:
+ - Mob: FERUS
+ Count: 30
+ - Mob: FERUS_
+ Count: 30
+ - Id: 13140
+ Title: Combat Ferus and Bewler - Wait
+ TimeLimit: +1h
+ - Id: 13141
+ Title: Combat Acidus
+ Targets:
+ - Mob: ACIDUS
+ Count: 30
+ - Mob: ACIDUS_
+ Count: 30
+ - Id: 13142
+ Title: Combat Acidus - Wait
+ TimeLimit: +1h
+ - Id: 13143
+ Title: Egnigem Story
+ Targets:
+ - Mob: YGNIZEM
+ Count: 30
+ - Id: 13144
+ Title: Egnigem Story - Wait
+ TimeLimit: +1h
+ - Id: 13145
+ Title: Armeyer Story
+ Targets:
+ - Mob: ARMAIA
+ Count: 30
+ - Id: 13146
+ Title: Armeyer Story - Wait
+ TimeLimit: +1h
+ - Id: 13147
+ Title: Whikebain Story
+ Targets:
+ - Mob: WHIKEBAIN
+ Count: 30
+ - Id: 13148
+ Title: Whikebain Story - Wait
+ TimeLimit: +1h
+ - Id: 13149
+ Title: Kavach Story
+ Targets:
+ - Mob: KAVAC
+ Count: 30
+ - Id: 13150
+ Title: Kavach Story - Wait
+ TimeLimit: +1h
+ - Id: 13151
+ Title: Errende Story
+ Targets:
+ - Mob: EREND
+ Count: 30
+ - Id: 13152
+ Title: Errende Story - Wait
+ TimeLimit: +1h
+ - Id: 13153
+ Title: Laurell Story
+ Targets:
+ - Mob: RAWREL
+ Count: 30
+ - Id: 13154
+ Title: Laurell Story - Wait
+ TimeLimit: +1h
+ - Id: 13155
+ Title: Morocc Story1
+ Targets:
+ - Mob: MOROCC_1
+ Count: 30
+ - Id: 13156
+ Title: Morocc Story1 - Wait
+ TimeLimit: +1h
+ - Id: 13157
+ Title: Morocc Story2
+ Targets:
+ - Mob: MOROCC_2
+ Count: 30
+ - Id: 13158
+ Title: Morocc Story2 - Wait
+ TimeLimit: +1h
+ - Id: 13159
+ Title: Morocc Story3
+ Targets:
+ - Mob: MOROCC_4
+ Count: 30
+ - Id: 13160
+ Title: Morocc Story3 - Wait
+ TimeLimit: +1h
+ - Id: 13161
+ Title: Uni-horn Scaraba Story
+ - Id: 13162
+ Title: Uni-horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13163
+ Title: Horn Scaraba Story
+ - Id: 13164
+ Title: Horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13165
+ Title: Antler Scaraba Story
+ - Id: 13166
+ Title: Antler Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13167
+ Title: Rake horn Scaraba Story
+ - Id: 13168
+ Title: Rake horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 14118
+ Title: Wuhari's concern
+ - Id: 14119
+ Title: Test of patience
+ - Id: 14120
+ Title: Test of patience 2
+ - Id: 14121
+ Title: Test of patience 3
+ - Id: 14122
+ Title: Time for two
+ - Id: 14123
+ Title: Wuharu's favor
+ - Id: 14125
+ Title: Surveying the area
+ - Id: 14126
+ Title: Searching for Ms. Goatie
+ - Id: 14127
+ Title: Searching for Ms. Goatie's husband
+ - Id: 14128
+ Title: Obtaining the research report
+ - Id: 14131
+ Title: Analysis time
+ TimeLimit: +5mn
+ - Id: 14133
+ Title: Another favor
+ - Id: 14134
+ Title: Sharp Ms. Goatie
+ - Id: 14135
+ Title: Searching for Mr. Pompe
+ - Id: 14136
+ Title: A terrible scene in the field
+ - Id: 14137
+ Title: An interesting proposition
+ - Id: 14138
+ Title: The big corpse
+ - Id: 14139
+ Title: To Wuhuru
+ - Id: 14140
+ Title: To Wuhari
+ - Id: 14141
+ Title: Ingredients for research
+ - Id: 15055
+ Title: "Christmas : We are the great Single Union Army!"
+ - Id: 15056
+ Title: "Christmas : Declare war against couples!"
+ - Id: 15057
+ Title: "Christmas : Prepare the festival!"
+ - Id: 15059
+ Title: "Christmas : Cooldown Timer"
+ TimeLimit: +1d
+ - Id: 15060
+ Title: "Christmas : Kwami has joined"
+ - Id: 15061
+ Title: "Christmas : Willer has joined"
+ - Id: 15062
+ Title: "Christmas : Rinka has joined"
+ - Id: 15063
+ Title: "Christmas : Jee has joined"
+ - Id: 15064
+ Title: "Christmas : Marty has joined"
+ - Id: 16000
+ Title: Metz Brayde's Notice
+ - Id: 16001
+ Title: First examination
+ - Id: 16002
+ Title: Fetching Items for Arian -1
+ - Id: 16003
+ Title: Fetching Items for Arian -2
+ - Id: 16004
+ Title: Fetching Items for Arian -3
+ - Id: 16005
+ Title: Fetching Items for Arian -4
+ - Id: 16006
+ Title: Fetching Items for Arian -5
+ - Id: 16007
+ Title: Fetching Items for Arian -6
+ - Id: 16008
+ Title: Quiz time!
+ - Id: 16009
+ Title: Quiz time!
+ - Id: 16010
+ Title: Daewoon's Test
+ - Id: 16011
+ Title: Sir Jore's Test
+ - Id: 16012
+ Title: Sir Jore's Materials
+ - Id: 16013
+ Title: The Stone of Sage
+ - Id: 16014
+ Title: The Stone of Sage
+ - Id: 16015
+ Title: Lady Jesqurienne
+ - Id: 16016
+ Title: Jesquerinne's Quiz Challenge
+ - Id: 16017
+ Title: Failed Quiz Challenge
+ - Id: 16018
+ Title: Quiz Challenge Triumph
+ - Id: 16019
+ Title: Search for Dearles
+ - Id: 16020
+ Title: Dearles' Test
+ - Id: 16021
+ Title: Test of Appreciation
+ - Id: 16022
+ Title: Dearles' Test Part Two
+ - Id: 16023
+ Title: Rhythm Test Passed
+ - Id: 16024
+ Title: Find Bakerlan
+ - Id: 16025
+ Title: Bakerlan's delivery
+ - Id: 16026
+ Title: Mahatra's delivery
+ - Id: 16027
+ Title: Bakerlan's Receipt
+ - Id: 16028
+ Title: Find Seylin
+ - Id: 16029
+ Title: Vigorgra Medicine
+ - Id: 16030
+ Title: Vigorgra Ingredients
+ - Id: 16031
+ Title: Vigorgra Ingredients
+ - Id: 16032
+ Title: Seylin's Request
+ - Id: 16033
+ Title: Back to Seylin
+ - Id: 16034
+ Title: Back to Mahatra
+ - Id: 16035
+ Title: Report to Bakerlan
+ - Id: 16036
+ Title: The last Crumb
+ - Id: 16037
+ Title: Finding Engel Howard
+ - Id: 16038
+ Title: Liana's Letter
+ - Id: 16039
+ Title: Combining the Starlight
+ - Id: 16040
+ Title: Letter to Engel's Family
+ - Id: 16041
+ Title: Talk to Liana
+ - Id: 16042
+ Title: Sobbing Starlight Progress
+ - Id: 16043
+ Title: Restored Sobbing Starlight
+ - Id: 16044
+ Title: Combining the Starlight
+ - Id: 16045
+ Title: Starlight message
+ - Id: 16046
+ Title: The man in Umbala
+ - Id: 16047
+ Title: Into the Tree
+ - Id: 16048
+ Title: Ancient Papers
+ - Id: 16049
+ Title: Record of Ancient Language
+ - Id: 16050
+ Title: The Fastidious Old Man
+ - Id: 16051
+ Title: Blurry Vision
+ - Id: 16052
+ Title: Translating the Document
+ - Id: 16053
+ Title: Translated Ancient Language
+ - Id: 16054
+ Title: Where the rejected live
+ - Id: 16055
+ Title: Misfortunate of Niflheim
+ - Id: 16056
+ Title: Removed Curse
+ - Id: 16057
+ Title: Meeting the witch
+ - Id: 16058
+ Title: Wing Of Crow
+ - Id: 16059
+ Title: Wing Of Crow
+ - Id: 16060
+ Title: Misfortunate of Niflheim
+ - Id: 16061
+ Title: Bard in Niflheim
+ - Id: 16062
+ Title: Gen of Niflheim
+ - Id: 16063
+ Title: The Witch's Aid
+ - Id: 16064
+ Title: Misfortunate of Niflheim
+ - Id: 16065
+ Title: The Queen's Symbol
+ - Id: 16066
+ Title: Knowledge of the Symbol
+ - Id: 16067
+ Title: Knowledge of Asgard
+ - Id: 16068
+ Title: Finding the Soul Pieces
+ - Id: 16069
+ Title: Finding the Soul Pieces
+ - Id: 16070
+ Title: Finding the Soul Pieces
+ - Id: 16071
+ Title: Finding the Soul Pieces
+ - Id: 16072
+ Title: Finding the Soul Pieces
+ - Id: 16073
+ Title: Agrboda's Soul
+ - Id: 16074
+ Title: Symbol of the Nine Realms
+ - Id: 16075
+ Title: Serin's Ambitions
+ - Id: 16076
+ Title: Witch's Tonic
+ - Id: 16077
+ Title: Serin's Release
+ - Id: 16078
+ Title: Visit with Lady Hell
+ - Id: 16079
+ Title: The Sign
+ - Id: 16080
+ Title: Dark Lord's return
+ - Id: 16081
+ Title: Serin's Ambitions
+ - Id: 16082
+ Title: Dark Lord's return
+ - Id: 16083
+ Title: Serin's Realization
+ - Id: 16084
+ Title: The Sign
+ - Id: 16085
+ Title: The Sign
+ - Id: 16086
+ Title: The Sign
+ - Id: 16087
+ Title: The Sign
+ - Id: 16101
+ Title: Kiel Hyre Academy
+ - Id: 16102
+ Title: Kiel Hyre Academy
+ - Id: 16103
+ Title: Kiel Hyre Academy
+ - Id: 16104
+ Title: Kiel Hyre Academy
+ - Id: 16105
+ Title: Kiel Hyre Academy
+ - Id: 16106
+ Title: Kiel Hyre Academy
+ - Id: 16107
+ Title: Kiel Hyre Academy
+ - Id: 16108
+ Title: Kiel Hyre Academy
+ - Id: 16109
+ Title: Kiel Hyre Academy
+ - Id: 16110
+ Title: Kiel Hyre Academy
+ - Id: 16111
+ Title: Kiel Hyre Academy
+ - Id: 16112
+ Title: Kiel Hyre Academy
+ - Id: 16113
+ Title: Kiel Hyre Academy
+ - Id: 16114
+ Title: Kiel Hyre Academy
+ - Id: 16115
+ Title: Kiel Hyre Academy
+ - Id: 16116
+ Title: Kiel Hyre Academy
+ - Id: 16117
+ Title: Mysterious World Map
+ - Id: 16118
+ Title: Hidden poem
+ - Id: 16119
+ Title: Snake swords
+ - Id: 16120
+ Title: A dream?
+ - Id: 16121
+ Title: Secret Code?
+ - Id: 16122
+ Title: Old Copper Key
+ - Id: 16123
+ Title: Green Keycard
+ - Id: 16124
+ Title: Steel Box
+ - Id: 16125
+ Title: Kiel Hyre Academy
+ - Id: 16126
+ Title: Kiel Hyre Academy
+ - Id: 16127
+ Title: Kiel Hyre Academy
+ - Id: 16128
+ Title: Kiel Hyre Academy
+ - Id: 16129
+ Title: Kiel Hyre Academy
+ - Id: 16130
+ Title: Kiel Hyre Academy
+ - Id: 16131
+ Title: Kiel Hyre Academy
+ - Id: 16132
+ Title: Kiel Hyre Academy
+ - Id: 16133
+ Title: Kiel Hyre Academy
+ - Id: 16134
+ Title: Kiel Hyre Academy
+ - Id: 16135
+ Title: Kiel Hyre Academy
+ - Id: 16136
+ Title: Kiel Hyre Academy
+ - Id: 16137
+ Title: Kiel Hyre Academy
+ - Id: 16138
+ Title: Kiel Hyre Academy
+ - Id: 16139
+ Title: Kiel Hyre Academy
+ - Id: 16140
+ Title: Kiel Hyre Academy
+ - Id: 16141
+ Title: Kiel Hyre Academy
+ - Id: 16142
+ Title: Kiel Hyre Academy
+ - Id: 16143
+ Title: Kiel Hyre Academy
+ - Id: 16144
+ Title: Kiel Hyre Academy
+ - Id: 16145
+ Title: Kiel Hyre Academy
+ - Id: 16146
+ Title: Kiel Hyre Academy
+ - Id: 16200
+ Title: Limberg's Request
+ - Id: 16201
+ Title: TPS Report
+ - Id: 16202
+ Title: TPS Report
+ - Id: 16203
+ Title: TPS Report
+ - Id: 16204
+ Title: Crack in the Wall
+ - Id: 16205
+ Title: The Empty Lava Tube
+ - Id: 17000
+ Title: Meet with Father Bamph
+ - Id: 17001
+ Title: Meet with Larjes
+ - Id: 17002
+ Title: Report to Father Bamph
+ - Id: 17003
+ Title: Travel to Rachel
+ - Id: 17004
+ Title: Travel to Veins
+ - Id: 17005
+ Title: Frustrated Magistrate
+ - Id: 17006
+ Title: Interrogated Smugglers
+ - Id: 17007
+ Title: Written Orders
+ - Id: 17008
+ Title: Investigating
+ - Id: 17009
+ Title: More Investigating
+ - Id: 17010
+ Title: Further Investigations
+ - Id: 17011
+ Title: Kurdi's Father
+ - Id: 17012
+ Title: Karyn's Boat
+ - Id: 17013
+ Title: To the Island
+ - Id: 17014
+ Title: Investigating the Island
+ - Id: 17015
+ Title: The Research Note
+ - Id: 17016
+ Title: Regicide
+ - Id: 17017
+ Title: Reporting the King's Death
+ - Id: 18001
+ Title: Delivery for Rooney
+ - Id: 18002
+ Title: Delivery for Rooney
+ - Id: 18003
+ Title: Delivery for Rooney
+ - Id: 18004
+ Title: Lasda's Request
+ - Id: 18005
+ Title: Jesse's Request
+ - Id: 18006
+ Title: Sir Krieg's Approval
+ - Id: 18007
+ Title: Sir Krieg's Trust
+ - Id: 18008
+ Title: Sir Krieg's Trust
+ - Id: 18009
+ Title: Into the prison
+ - Id: 18010
+ Title: Jail Break
+ - Id: 18011
+ Title: Bodyguard work
+ - Id: 18012
+ Title: Bodyguard work
+ - Id: 18013
+ Title: Bodyguard work
+ - Id: 18014
+ Title: Bodyguard work
+ - Id: 18015
+ Title: Bodyguard work
+ - Id: 18016
+ Title: Bodyguard work
+ - Id: 18017
+ Title: Jail Break
+ - Id: 18018
+ Title: Jail Break
+ - Id: 18019
+ Title: Vitre's Songs
+ - Id: 18020
+ Title: Vitre's Songs
+ - Id: 18021
+ Title: Vitre's Songs
+ - Id: 18022
+ Title: Vitre's Songs
+ - Id: 18023
+ Title: Vitre the Spy
+ - Id: 18030
+ Title: Gaebolg Family Curse
+ - Id: 18031
+ Title: Gaebolg Family Curse
+ - Id: 18032
+ Title: Gaebolg Family Curse
+ - Id: 18033
+ Title: Gaebolg Family Curse
+ - Id: 18034
+ Title: Gaebolg Family Curse
+ - Id: 18035
+ Title: Gaebolg Family Curse
+ - Id: 18036
+ Title: Gaebolg Family Curse
+ - Id: 18037
+ Title: Gaebolg Family Curse
+ - Id: 18038
+ Title: Gaebolg Family Curse
+ - Id: 18039
+ Title: Gaebolg Family Curse
+ - Id: 18040
+ Title: Gaebolg Family Curse
+ - Id: 18041
+ Title: Gaebolg Family Curse
+ - Id: 18042
+ Title: Gaebolg Family Curse
+ - Id: 18043
+ Title: Gaebolg Family Curse
+ - Id: 18044
+ Title: Gaebolg Family Curse
+ - Id: 18045
+ Title: Gaebolg Family Curse
+ - Id: 18046
+ Title: Gaebolg Family Curse
+ - Id: 18047
+ Title: Gaebolg Family Curse
+ - Id: 18048
+ Title: Gaebolg Family Curse
+ - Id: 18049
+ Title: Gaebolg Family Curse
+ - Id: 18050
+ Title: Gaebolg Family Curse
+ - Id: 18051
+ Title: Gaebolg Family Curse
+ - Id: 18052
+ Title: Gaebolg Family Curse
+ - Id: 18060
+ Title: Missing boy Mikhail
+ - Id: 18061
+ Title: Mikhail's Whereabouts
+ - Id: 18062
+ Title: Missing boy Mikhail
+ - Id: 18063
+ Title: The isolated swamp
+ - Id: 18064
+ Title: Back to the Village
+ - Id: 18065
+ Title: High-strength Adhesive
+ - Id: 18066
+ Title: Back to the swamp
+ - Id: 18067
+ Title: Make the paste
+ - Id: 18068
+ Title: Fixing the Matrushka
+ - Id: 18069
+ Title: Report to Gallina
+ - Id: 18070
+ Title: Banishing Winter
+ - Id: 18071
+ Title: Making the magic dust
+ - Id: 18072
+ Title: Making the magic dust
+ - Id: 18073
+ Title: The Dragon's Lair
+ - Id: 18074
+ Title: The Magic Gourd Bottle
+ - Id: 18075
+ Title: Containing People's Speech
+ - Id: 18076
+ Title: Containing People's Speech
+ - Id: 18077
+ Title: Csar's Request
+ - Id: 18078
+ Title: Baba Yaga's Secret Medicine
+ - Id: 18079
+ Title: Winter is Banished
+ - Id: 18100
+ Title: Legends from Moscovia
+ - Id: 18101
+ Title: The Moving Island
+ - Id: 18102
+ Title: In Search of The Moving Island
+ - Id: 18103
+ Title: In Search of The Moving Island
+ - Id: 18104
+ Title: Mr. Ibanoff's New Friend
+ - Id: 18105
+ Title: Repairing Charabel
+ - Id: 18106
+ Title: As the Tide Turns
+ - Id: 18107
+ Title: Departing
+ - Id: 18108
+ Title: The Moving Island?
+ - Id: 18109
+ Title: The Moving Island???
+ - Id: 18110
+ Title: The Aged Stranger
+ - Id: 18111
+ Title: Whale Island!
+ - Id: 18112
+ Title: A Story for the Csar
+ - Id: 18113
+ Title: Evidence for the Csar
+ - Id: 18114
+ Title: Before Sunset
+ - Id: 18115
+ Title: Departing
+ - Id: 18116
+ Title: Whale Island!
+ - Id: 18117
+ Title: Materials for Evidence
+ - Id: 18118
+ Title: Mysterious Musical Instrument
+ - Id: 18119
+ Title: Gusli
+ - Id: 18120
+ Title: Gusli
+ - Id: 18121
+ Title: Shafka
+ - Id: 19101
+ Title: The Eye of Hellion
+ - Id: 19102
+ Title: The Eye of Hellion
+ - Id: 19103
+ Title: The Eye of Hellion
+ - Id: 19104
+ Title: The Eye of Hellion
+ - Id: 19105
+ Title: The Eye of Hellion
+ - Id: 19106
+ Title: The Eye of Hellion
+ - Id: 19107
+ Title: The Eye of Hellion
+ - Id: 19108
+ Title: The Eye of Hellion
+ - Id: 19109
+ Title: The Eye of Hellion
+ - Id: 19110
+ Title: The Eye of Hellion
+ - Id: 19111
+ Title: The Eye of Hellion
+ - Id: 19112
+ Title: The Eye of Hellion
+ - Id: 19113
+ Title: The Eye of Hellion
+ - Id: 19114
+ Title: The Eye of Hellion
+ - Id: 19115
+ Title: The Eye of Hellion
+ - Id: 19116
+ Title: The Eye of Hellion
+ - Id: 19117
+ Title: The Eye of Hellion
+ - Id: 19118
+ Title: The Eye of Hellion
+ - Id: 19119
+ Title: The Eye of Hellion
+ - Id: 19120
+ Title: The Eye of Hellion
+ - Id: 19121
+ Title: The Eye of Hellion
+ - Id: 19122
+ Title: The Eye of Hellion
+ - Id: 19123
+ Title: The Eye of Hellion
+ - Id: 19124
+ Title: The Eye of Hellion
+ - Id: 19125
+ Title: The Eye of Hellion
+ - Id: 19126
+ Title: The Eye of Hellion
+ - Id: 19127
+ Title: The Eye of Hellion
+ - Id: 19128
+ Title: The Eye of Hellion
+ - Id: 19129
+ Title: The Eye of Hellion
+ - Id: 50000
+ Title: Pirate Dagger materials
+ - Id: 50001
+ Title: Weather Beaten Old Man
+ - Id: 50002
+ Title: Lost Treasure?
+ - Id: 50003
+ Title: Lost Treasure?
+ - Id: 50004
+ Title: The Old Man's Treasure
+ - Id: 50005
+ Title: The Old Man's Treasure
+ - Id: 50006
+ Title: The Old Man's Treasure
+ - Id: 50007
+ Title: The Old Man's Treasure
+ - Id: 50008
+ Title: The Old Man's Treasure
+ - Id: 50009
+ Title: The Old Man's Treasure
+ - Id: 50010
+ Title: A special lock pick
+ - Id: 50011
+ Title: The special lock pick
+ - Id: 50012
+ Title: Use the lock pick
+ - Id: 50013
+ Title: Broken lock pick
+ - Id: 50015
+ Title: The empty treasure box
+ - Id: 50016
+ Title: The empty treasure box
+ - Id: 50017
+ Title: The empty treasure box
+ - Id: 50018
+ Title: The empty treasure box
+ - Id: 50019
+ Title: The empty treasure box
+ - Id: 50020
+ Title: The empty treasure box
+ - Id: 50021
+ Title: J Roger
+ - Id: 50022
+ Title: J Roger's key materials
+ - Id: 50023
+ Title: Conversation with J Roger
+ - Id: 50024
+ Title: Bury the treasure
+ - Id: 50025
+ Title: Bury the treasure
+ - Id: 50026
+ Title: Bury the treasure
+ - Id: 50027
+ Title: Buried treasure
+ - Id: 50028
+ Title: Stolen treasure!
+ - Id: 50029
+ Title: A Pirate's Spirit!
+ - Id: 60001
+ Title: Monster Extermination
+ - Id: 60002
+ Title: Monster Extermination
+ - Id: 60003
+ Title: Monster Extermination
+ - Id: 60004
+ Title: Monster Extermination
+ - Id: 60005
+ Title: Monster Extermination
+ - Id: 60006
+ Title: Monster Extermination
+ - Id: 60007
+ Title: Endless Tower Effect
+ - Id: 60008
+ Title: Endless Tower Time Limit
+ - Id: 60009
+ Title: Orc Hero
+ - Id: 60010
+ Title: Derik Ver's Request
+ - Id: 60011
+ Title: Investigation of Byalan
+ - Id: 60012
+ Title: Investigation of Abyss
+ - Id: 60013
+ Title: Monster Investigation
+ - Id: 60014
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60015
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60016
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60017
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60018
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60019
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60020
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60021
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60022
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60023
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60024
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60025
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60026
+ Title: Continuing the Investigation
+ - Id: 60027
+ Title: Investigating Aldebaran
+ - Id: 60028
+ Title: Monster Investigation
+ - Id: 60029
+ Title: Aldebaran Monster Investigation
+ - Id: 60030
+ Title: Clock Tower Monster Investigation
+ - Id: 60031
+ Title: Clock Tower Monster Investigation
+ - Id: 60032
+ Title: Lutie Field Monster Investigation
+ - Id: 60033
+ Title: Clock Tower Monster Investigation
+ - Id: 60034
+ Title: Clock Tower Monster Investigation
+ - Id: 60035
+ Title: Aldebaran Monster Investigation
+ - Id: 60036
+ Title: Clock Tower Monster Investigation
+ - Id: 60037
+ Title: Clock Tower Monster Investigation
+ - Id: 60038
+ Title: Aldebaran Monster Investigation
+ - Id: 60039
+ Title: Investigation of Glastheim
+ - Id: 60040
+ Title: Investigation of Glastheim
+ - Id: 60041
+ Title: Monster Investigation
+ - Id: 60042
+ Title: Investigation of Glastheim
+ - Id: 60043
+ Title: Glastheim Monster Investigation
+ - Id: 60044
+ Title: Glastheim Monster Investigation
+ - Id: 60045
+ Title: Investigation of Glastheim
+ - Id: 60046
+ Title: Glastheim Monster Investigation
+ - Id: 60047
+ Title: Glastheim Monster Investigation
+ - Id: 60048
+ Title: Investigation of Glastheim
+ - Id: 60049
+ Title: Glastheim Monster Investigation
+ - Id: 60050
+ Title: Glastheim Monster Investigation
+ - Id: 60051
+ Title: Investigation of Glastheim
+ - Id: 60052
+ Title: Glastheim Monster Investigation
+ - Id: 60053
+ Title: Glastheim Monster Investigation
+ - Id: 60054
+ Title: Investigation of Glastheim
+ - Id: 60055
+ Title: Glastheim Monster Investigation
+ - Id: 60056
+ Title: Glastheim Monster Investigation
+ - Id: 60057
+ Title: Glastheim Monster Investigation
+ - Id: 60058
+ Title: Derik Ver's Brother
+ - Id: 60059
+ Title: A history lesson
+ - Id: 60060
+ Title: The Crown of Deceit
+ - Id: 60061
+ Title: A magic solvent
+ - Id: 60062
+ Title: Rendering the crown Inert
+ - Id: 60101
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 50
+ - Id: 60102
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 100
+ - Id: 60103
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 150
+ - Id: 60104
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 50
+ - Id: 60105
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 100
+ - Id: 60106
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 150
+ - Id: 60107
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 50
+ - Id: 60108
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 100
+ - Id: 60109
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 150
+ - Id: 60110
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 50
+ - Id: 60111
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 100
+ - Id: 60112
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 150
+ - Id: 60113
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 50
+ - Id: 60114
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 100
+ - Id: 60115
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 150
+ - Id: 60116
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 50
+ - Id: 60117
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 100
+ - Id: 60118
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 150
+ - Id: 60119
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 50
+ - Id: 60120
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 100
+ - Id: 60121
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 150
+ - Id: 60122
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 50
+ - Id: 60123
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 100
+ - Id: 60124
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 150
+ - Id: 60125
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 50
+ - Id: 60126
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 100
+ - Id: 60127
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 150
+ - Id: 60128
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 50
+ - Id: 60129
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 100
+ - Id: 60130
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 150
+ - Id: 60131
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 50
+ - Id: 60132
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 100
+ - Id: 60133
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 150
+ - Id: 60134
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 50
+ - Id: 60135
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 100
+ - Id: 60136
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 150
+ - Id: 60137
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 50
+ - Id: 60138
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 100
+ - Id: 60139
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 150
+ - Id: 60140
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 50
+ - Id: 60141
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 100
+ - Id: 60142
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 150
+ - Id: 60143
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 50
+ - Id: 60144
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 100
+ - Id: 60145
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 150
+ - Id: 60146
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 50
+ - Id: 60147
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 100
+ - Id: 60148
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 150
+ - Id: 60149
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 50
+ - Id: 60150
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 100
+ - Id: 60151
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 150
+ - Id: 60152
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 50
+ - Id: 60153
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 100
+ - Id: 60154
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 150
+ - Id: 60155
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 50
+ - Id: 60156
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 100
+ - Id: 60157
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 150
+ - Id: 60158
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 50
+ - Id: 60159
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 100
+ - Id: 60160
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 150
+ - Id: 60161
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 25
+ - Id: 60162
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 50
+ - Id: 60163
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 75
+ - Id: 60164
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 50
+ - Id: 60165
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 100
+ - Id: 60166
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 150
+ - Id: 60167
+ Title: Hunting Siromas
+ Targets:
+ - Mob: SIROMA
+ Count: 50
+ - Id: 60168
+ Title: Hunting Siromas
+ Targets:
+ - Mob: SIROMA
+ Count: 100
+ - Id: 60169
+ Title: Hunting Siroma
+ Targets:
+ - Mob: SIROMA
+ Count: 150
+ - Id: 60170
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 50
+ - Id: 60171
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 100
+ - Id: 60172
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 150
+ - Id: 60173
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 50
+ - Id: 60174
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 100
+ - Id: 60175
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 150
+ - Id: 60176
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 50
+ - Id: 60177
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 100
+ - Id: 60178
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 150
+ - Id: 60179
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 50
+ - Id: 60180
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 100
+ - Id: 60181
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 150
+ - Id: 60182
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 50
+ - Id: 60183
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 100
+ - Id: 60184
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 150
+ - Id: 60185
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 20
+ - Id: 60186
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 40
+ - Id: 60187
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 60
+ - Id: 60188
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 50
+ - Id: 60189
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 100
+ - Id: 60190
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 150
+ - Id: 60200
+ Title: Endless Tower Effect
+ TimeLimit: +7d
+ - Id: 60201
+ Title: Endless Tower Time Limit
+ TimeLimit: +4h
+ - Id: 60211
+ Title: Thor Volcano base camp
+ - Id: 60212
+ Title: Thor Volcano base camp
+ - Id: 60213
+ Title: Thor Volcano base camp
+ - Id: 60301
+ Title: Dragon Hunting
+ Targets:
+ - Mob: PETIT
+ Count: 100
+ - Id: 60302
+ Title: Dragon Hunting
+ Targets:
+ - Mob: PETIT
+ Count: 200
+ - Id: 60303
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS
+ Count: 100
+ - Id: 60304
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS
+ Count: 200
+ - Id: 60305
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS_
+ Count: 100
+ - Id: 60306
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS_
+ Count: 200
+ - Id: 60307
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS
+ Count: 100
+ - Id: 60308
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS
+ Count: 200
+ - Id: 60309
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS_
+ Count: 100
+ - Id: 60310
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS_
+ Count: 200
+ - Id: 60351
+ Title: Bathroom Ghost
+ - Id: 60352
+ Title: Bathroom Ghost
+ - Id: 60353
+ Title: Bathroom Ghost
+ - Id: 60354
+ Title: Bathroom Ghost
+ - Id: 60355
+ Title: Bathroom Ghost
+ - Id: 62238
+ Title: Midgardian Mercenary timer
+ TimeLimit: +1h
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 9a5b7bc79d..5664761e99 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
@@ -55,7 +55,7 @@
# NoNearNPC: Determines if the skill can be used near a NPC. (Optional)
# AdditionalRange Number of cells from an NPC where the skill can be cast. (Optional)
# Type: Type of NPC.
-# CastCancel Cancel cast when hit. (Default: true)
+# CastCancel Cancel cast when hit. (Default: false)
# CastDefenseReduction Defense reduction rate during skill cast. (Default: 0)
# CastTime: Time to cast the skill in milliseconds. (Default: 0)
# - Level Skill level.
@@ -1249,10 +1249,6 @@ Body:
Size: 2
- Level: 11
Size: 3
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -2075,8 +2071,6 @@ Body:
TargetType: Attack
DamageFlags:
NoDamage: true
- Flags:
- IncreaseGloomyDayDamage: true
Range: -2
Hit: Single
HitCount: 1
@@ -2085,6 +2079,7 @@ Body:
ActiveInstance: 5
Knockback: 2
CastTime: 700
+ Duration1: 1000
Requires:
SpCost: 12
Weapon:
@@ -3321,10 +3316,6 @@ Body:
Size: 5
- Level: 11
Size: 7
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Range: 1
Interval: 1250
Target: Enemy
@@ -3416,12 +3407,6 @@ Body:
Size: 2
- Level: 10
Size: 2
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -5852,11 +5837,8 @@ Body:
Name: NPC_DARKBREATH
Description: Dark Breath
MaxLevel: 5
- Type: Misc
+ Type: Magic
TargetType: Attack
- DamageFlags:
- IgnoreFlee: true
- IgnoreDefCard: true
Flags:
IsNpc: true
Range: 9
@@ -6713,8 +6695,6 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range:
- Level: 1
Size: 3
@@ -6831,8 +6811,8 @@ Body:
CastDefenseReduction: 33
CastTime: 3000
AfterCastActDelay: 1500
- AfterCastWalkDelay: 800
- Duration1: 800
+ AfterCastWalkDelay: 1000
+ Duration1: 950
Duration2: 30000
Requires:
SpCost:
@@ -7852,22 +7832,6 @@ Body:
Size: 4
- Level: 5
Size: 5
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -9080,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
@@ -9794,9 +9757,6 @@ Body:
NoDamage: true
IgnoreDefense: true
IgnoreFlee: true
- Flags:
- IgnoreAutoGuard: true
- IgnoreCicada: true
Hit: Single
HitCount: 1
CastCancel: true
@@ -10691,7 +10651,6 @@ Body:
IgnoreDefense: true
Flags:
TargetTrap: true
- IncreaseGloomyDayDamage: true
Range: 5
Hit: Multi_Hit
HitCount: 5
@@ -12867,8 +12826,6 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range: 4
Hit: Multi_Hit
HitCount: 5
@@ -13017,6 +12974,8 @@ Body:
IgnoreAtkCard: true
Flags:
AllowOnMado: true
+ IgnoreAutoGuard: true
+ IgnoreCicada: true
Range: -2
Hit: Single
HitCount: 1
@@ -14406,15 +14365,15 @@ Body:
AllowWhenHidden: true
Range:
- Level: 1
- Size: 7
+ Size: 5
- Level: 2
- Size: 9
+ Size: 6
- Level: 3
- Size: 11
+ Size: 7
- Level: 4
- Size: 13
+ Size: 8
- Level: 5
- Size: 15
+ Size: 9
Hit: Single
HitCount: 1
CopyFlags:
@@ -14439,15 +14398,15 @@ Body:
AlterRangeShadowJump: true
Range:
- Level: 1
- Size: 7
+ Size: 5
- Level: 2
- Size: 9
+ Size: 6
- Level: 3
- Size: 11
+ Size: 7
- Level: 4
- Size: 13
+ Size: 8
- Level: 5
- Size: 15
+ Size: 9
Hit: Single
HitCount: 1
Element: Weapon
@@ -14944,12 +14903,6 @@ Body:
Size: 3
- Level: 10
Size: 4
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -15138,22 +15091,6 @@ Body:
Size: 3
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -15368,9 +15305,12 @@ Body:
DamageFlags:
Splash: true
SplashSplit: true
+ IgnoreDefense: true
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
+ IgnoreLandProtector: true
Hit: Multi_Hit
HitCount: 1
SplashArea:
@@ -15394,6 +15334,34 @@ Body:
Area: 11
- Level: 10
Area: 13
+ Duration1: 910
+ Unit:
+ Id: Earthquake
+ Range:
+ - Level: 1
+ Size: 5
+ - Level: 2
+ Size: 7
+ - Level: 3
+ Size: 9
+ - Level: 4
+ Size: 11
+ - Level: 5
+ Size: 13
+ - Level: 6
+ Size: 5
+ - Level: 7
+ Size: 7
+ - Level: 8
+ Size: 9
+ - Level: 9
+ Size: 11
+ - Level: 10
+ Size: 13
+ Interval: 300
+ Target: Enemy
+ Flag:
+ PathCheck: true
- Id: 654
Name: NPC_FIREBREATH
Description: Fire Breath
@@ -15476,6 +15444,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15522,6 +15491,7 @@ Body:
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea: 7
@@ -15537,6 +15507,7 @@ Body:
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea: 14
@@ -15551,6 +15522,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15575,6 +15547,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15599,6 +15572,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15623,6 +15597,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15647,6 +15622,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15671,6 +15647,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15696,6 +15673,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
Element: Fire
@@ -15714,6 +15692,7 @@ Body:
IgnoreDefCard: true
Flags:
IsNpc: true
+ ShowScale: true
Range: 7
Hit: Single
HitCount: 1
@@ -15764,12 +15743,6 @@ Body:
Size: 5
- Level: 10
Size: 13
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Flag:
NoOverlap: true
@@ -15816,6 +15789,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15932,6 +15906,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15956,6 +15931,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15980,6 +15956,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16013,6 +15990,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16292,6 +16270,7 @@ Body:
Flags:
IsNpc: true
IgnoreLandProtector: true
+ ShowScale: true
Hit: Single
HitCount: 1
Element: Poison
@@ -16308,6 +16287,8 @@ Body:
Name: NPC_COMET
Description: Comet 2
MaxLevel: 1
+ Flags:
+ ShowScale: true
- Id: 716
Name: NPC_MAXPAIN
Description: Max Pain
@@ -16339,6 +16320,8 @@ Body:
Name: NPC_JACKFROST
Description: Jack Frost 2
MaxLevel: 1
+ Flags:
+ ShowScale: true
- Id: 725
Name: NPC_REVERBERATION
Description: Reverberation 2
@@ -16351,6 +16334,7 @@ Body:
IsNpc: true
IsTrap: true
DisableNearNpc: true
+ ShowScale: true
Range: 1
Hit: Single
HitCount: 1
@@ -16391,10 +16375,186 @@ Body:
Name: NPC_LEX_AETERNA
Description: Lex Aeterna 2
MaxLevel: 1
+ Flags:
+ ShowScale: true
- Id: 728
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
@@ -16905,8 +17065,6 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range: 5
Hit: Multi_Hit
HitCount: -5
@@ -18641,6 +18799,8 @@ Body:
Duration1: 60000
Requires:
SpCost: 20
+ Status:
+ Weaponblock_On: true
- Id: 2031
Name: GC_VENOMPRESSURE
Description: Venom Pressure
@@ -19302,10 +19462,10 @@ Body:
Amount: 70
- Level: 4
Amount: 80
-# - Id: 2049 # Removed on kRO
-# Name: AB_EUCHARISTICA
-# Description: Eucharistica
-# MaxLevel: 10
+ - Id: 2049 # Removed on kRO
+ Name: AB_EUCHARISTICA
+ Description: Eucharistica
+ MaxLevel: 10
- Id: 2050
Name: AB_RENOVATIO
Description: Renovatio
@@ -19945,9 +20105,9 @@ Body:
IgnoreDefCard: true
Flags:
AllowOnWarg: true
- IncreaseDanceWithWugDamage: true
IgnoreAutoGuard: true
IgnoreCicada: true
+ IncreaseDanceWithWugDamage: true
Range: 9
Hit: Single
HitCount: 1
@@ -19975,9 +20135,9 @@ Body:
IgnoreDefCard: true
Flags:
AlterRangeVulture: true
- IncreaseDanceWithWugDamage: true
IgnoreAutoGuard: true
IgnoreCicada: true
+ IncreaseDanceWithWugDamage: true
Range: 9
Hit: Single
HitCount: 1
@@ -24369,7 +24529,7 @@ Body:
Reproduce: true
Requires:
SpCost: 1
- - Id: 2417
+ - Id: 2417 # Removed on kRO
Name: WM_DOMINION_IMPULSE
Description: Dominion Impulse
MaxLevel: 1
@@ -24382,6 +24542,7 @@ Body:
HitCount: 1
SplashArea: 5
AfterCastActDelay: 1000
+ FixedCastTime: -1
Requires:
SpCost: 10
- Id: 2418
@@ -25536,22 +25697,6 @@ Body:
Size: 4
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -25621,22 +25766,6 @@ Body:
Size: 4
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -25756,22 +25885,6 @@ Body:
Size: 4
- Level: 5
Size: 5
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -26007,22 +26120,6 @@ Body:
Size: 2
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -26826,8 +26923,8 @@ Body:
DamageFlags:
Splash: true
Range: 11
- Hit: Single
- HitCount: 3
+ Hit: Multi_Hit
+ HitCount: 2
Element: Weapon
SplashArea:
- Level: 1
@@ -26897,7 +26994,7 @@ Body:
Hit: Single
HitCount: 1
ActiveInstance: 1
- Knockback: 2
+ Knockback: 1
CopyFlags:
Skill:
Reproduce: true
@@ -27355,7 +27452,7 @@ Body:
ItemCost:
- Item: Mandragora_Flowerpot
Amount: 1
- - Id: 2493
+ - Id: 2493 # Removed on kRO
Name: GN_SLINGITEM
Description: Sling Item
MaxLevel: 1
@@ -27368,6 +27465,7 @@ Body:
Hit: Single
HitCount: 1
Cooldown: 1000
+ FixedCastTime: -1
Requires:
SpCost: 4
Ammo:
@@ -27399,7 +27497,7 @@ Body:
Amount: 5
- Level: 2
Amount: 40
- - Id: 2496
+ - Id: 2496 # Removed on kRO
Name: GN_MAKEBOMB
Description: Create Bomb
MaxLevel: 2
@@ -27425,7 +27523,7 @@ Body:
HitCount: 1
Requires:
SpCost: 12
- - Id: 2498
+ - Id: 2498 # Removed on kRO
Name: GN_SLINGITEM_RANGEMELEEATK
Description: Sling Item Attack
MaxLevel: 1
@@ -27538,6 +27636,7 @@ Body:
HitCount: 1
Requires:
SpCost: 40
+ State: Cart
- Id: 2552
Name: RL_RICHS_COIN
Description: Rich's Coin
@@ -27719,22 +27818,6 @@ Body:
Size: 3
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -28317,6 +28400,163 @@ Body:
Element: Weapon
Requires:
SpCost: 1
+ - Id: 2574
+ Name: SJ_LIGHTOFMOON
+ Description: Light of Moon
+ MaxLevel: 1
+ - Id: 2575
+ Name: SJ_LUNARSTANCE
+ Description: Lunar Stance
+ MaxLevel: 1
+ - Id: 2576
+ Name: SJ_FULLMOONKICK
+ Description: Full Moon Kick
+ MaxLevel: 1
+ - Id: 2577
+ Name: SJ_LIGHTOFSTAR
+ Description: Light of Star
+ MaxLevel: 1
+ - Id: 2578
+ Name: SJ_STARSTANCE
+ Description: Star Stance
+ MaxLevel: 1
+ - Id: 2579
+ Name: SJ_NEWMOONKICK
+ Description: New Moon Kick
+ MaxLevel: 1
+ - Id: 2580
+ Name: SJ_FLASHKICK
+ Description: Flash Kick
+ MaxLevel: 1
+ - Id: 2581
+ Name: SJ_STAREMPEROR
+ Description: Star Emperor
+ MaxLevel: 1
+ - Id: 2582
+ Name: SJ_NOVAEXPLOSING
+ Description: Nova Explosion
+ MaxLevel: 1
+ Type: Misc
+ - Id: 2583
+ Name: SJ_UNIVERSESTANCE
+ Description: Universe Stance
+ MaxLevel: 1
+ - Id: 2584
+ Name: SJ_FALLINGSTAR
+ Description: Falling Star
+ MaxLevel: 1
+ - Id: 2585
+ Name: SJ_GRAVITYCONTROL
+ Description: Gravity Control
+ MaxLevel: 1
+ - Id: 2586
+ Name: SJ_BOOKOFDIMENSION
+ Description: Book of Dimension
+ MaxLevel: 1
+ - Id: 2587
+ Name: SJ_BOOKOFCREATINGSTAR
+ Description: Book of Creating Star
+ MaxLevel: 1
+ - Id: 2588
+ Name: SJ_DOCUMENT
+ Description: Document of Sun Moon and Star
+ MaxLevel: 1
+ - Id: 2589
+ Name: SJ_PURIFY
+ Description: Purification of Sun Moon and Star
+ MaxLevel: 1
+ - Id: 2590
+ Name: SJ_LIGHTOFSUN
+ Description: Light of Sun
+ MaxLevel: 1
+ - Id: 2591
+ Name: SJ_SUNSTANCE
+ Description: Sun Stance
+ MaxLevel: 1
+ - Id: 2592
+ Name: SJ_SOLARBURST
+ Description: Solar Burst
+ MaxLevel: 1
+ - Id: 2593
+ Name: SJ_PROMINENCEKICK
+ Description: Prominence Kick
+ MaxLevel: 1
+ - Id: 2594
+ Name: SJ_FALLINGSTAR_ATK
+ Description: Falling Star Attack
+ MaxLevel: 1
+ - Id: 2595
+ Name: SJ_FALLINGSTAR_ATK2
+ Description: Falling Star Attack 2
+ MaxLevel: 1
+ - Id: 2596
+ Name: SP_SOULGOLEM
+ Description: Golem's Soul
+ MaxLevel: 1
+ - Id: 2597
+ Name: SP_SOULSHADOW
+ Description: Shadow's Soul
+ MaxLevel: 1
+ - Id: 2598
+ Name: SP_SOULFALCON
+ Description: Falcon's Soul
+ MaxLevel: 1
+ - Id: 2599
+ Name: SP_SOULFAIRY
+ Description: Fairy's Soul
+ MaxLevel: 1
+ - Id: 2600
+ Name: SP_CURSEEXPLOSION
+ Description: Curse Explosion
+ MaxLevel: 1
+ - Id: 2601
+ Name: SP_SOULCURSE
+ Description: Soul Curse
+ MaxLevel: 1
+ - Id: 2602
+ Name: SP_SPA
+ Description: Espa
+ MaxLevel: 1
+ - Id: 2603
+ Name: SP_SHA
+ Description: Esha
+ MaxLevel: 1
+ - Id: 2604
+ Name: SP_SWHOO
+ Description: Eswhoo
+ MaxLevel: 1
+ - Id: 2605
+ Name: SP_SOULUNITY
+ Description: Soul Unity
+ MaxLevel: 1
+ - Id: 2606
+ Name: SP_SOULDIVISION
+ Description: Soul Division
+ MaxLevel: 1
+ - Id: 2607
+ Name: SP_SOULREAPER
+ Description: Soul Reaper
+ MaxLevel: 1
+ - Id: 2608
+ Name: SP_SOULREVOLVE
+ Description: Soul Revolution
+ MaxLevel: 1
+ - Id: 2609
+ Name: SP_SOULCOLLECT
+ Description: Soul Collect
+ MaxLevel: 1
+ - Id: 2610
+ Name: SP_SOULEXPLOSION
+ Description: Soul Explosion
+ MaxLevel: 1
+ - Id: 2611
+ Name: SP_SOULENERGY
+ Description: Soul Energy Research
+ MaxLevel: 1
+ - Id: 2612
+ Name: SP_KAUTE
+ Description: Kaute
+ MaxLevel: 1
- Id: 3001
Name: KO_YAMIKUMO
Description: Shadow Hiding
@@ -28585,12 +28825,6 @@ Body:
Size: 1
- Level: 10
Size: 2
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -30099,6 +30333,18 @@ Body:
Name: AB_CONVENIO
Description: Convenio
MaxLevel: 1
+ - Id: 5075
+ Name: NV_BREAKTHROUGH
+ Description: Break Through
+ MaxLevel: 1
+ - Id: 5076
+ Name: NV_HELPANGEL
+ Description: Help Angel
+ MaxLevel: 1
+ - Id: 5077
+ Name: NV_TRANSCENDENCE
+ Description: Transcendence
+ MaxLevel: 1
- Id: 8001
Name: HLIF_HEAL
Description: Healing Touch
@@ -30861,22 +31107,6 @@ Body:
Size: 3
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -31477,22 +31707,6 @@ Body:
Size: 2
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 2000
Target: Enemy
Flag:
@@ -32140,8 +32354,6 @@ Body:
TargetType: Attack
DamageFlags:
NoDamage: true
- Flags:
- IncreaseGloomyDayDamage: true
Range: -2
Hit: Single
HitCount: 1
@@ -32166,7 +32378,6 @@ Body:
IgnoreDefense: true
Flags:
TargetTrap: true
- IncreaseGloomyDayDamage: true
Range: 5
Hit: Multi_Hit
HitCount: 5
@@ -32652,7 +32863,7 @@ Body:
Hit: Single
CastCancel: true
AfterCastActDelay: 3000
- Duration1:
+ Duration2:
- Level: 1
Time: 30000
- Level: 2
@@ -33633,9 +33844,3 @@ Body:
IgnoreKagehumi: true
CastCancel: true
Duration2: 300000
- - Id: 10016
- Name: GD_GUILD_STORAGE
- Description: Guild Storage Expansion
- MaxLevel: 5
- Flags:
- IsGuild: true
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/pre-re/skill_tree.txt b/db/pre-re/skill_tree.txt
index d55daacf14..7cb347fe2a 100644
--- a/db/pre-re/skill_tree.txt
+++ b/db/pre-re/skill_tree.txt
@@ -2577,6 +2577,7 @@
4057,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4057,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4057,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4057,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4057,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4057,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4057,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -2923,6 +2924,7 @@
4063,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4063,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4063,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4063,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4063,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4063,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4063,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -3217,9 +3219,9 @@
4068,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4068,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4068,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4068,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4068,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4068,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4068,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4068,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4068,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4068,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4068,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3273,9 +3275,9 @@
4069,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4069,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4069,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4069,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4069,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4069,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4069,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4069,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4069,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4069,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4069,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3403,10 +3405,10 @@
4071,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4071,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4071,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4071,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4071,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4071,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4071,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4071,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4071,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4071,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4071,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4071,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
@@ -3647,9 +3649,9 @@
4075,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4075,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4075,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4075,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4075,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4075,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4075,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4075,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4075,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4075,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4075,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3709,9 +3711,9 @@
4076,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4076,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4076,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4076,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4076,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4076,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4076,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4076,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4076,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4076,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4076,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3847,10 +3849,10 @@
4078,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4078,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4078,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4078,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4078,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4078,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4078,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4078,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4078,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4078,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4078,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4078,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
@@ -4578,6 +4580,7 @@
4099,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4099,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4099,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4099,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4099,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4099,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4099,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -4867,9 +4870,9 @@
4104,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4104,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4104,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4104,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4104,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4104,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4104,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4104,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4104,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4104,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4104,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -4924,9 +4927,9 @@
4105,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4105,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4105,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4105,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4105,2413,5,0,0,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4105,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4105,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4105,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4105,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4105,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4105,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -5056,10 +5059,10 @@
4107,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4107,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4107,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4107,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4107,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4107,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4107,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4107,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4107,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4107,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4107,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4107,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
diff --git a/db/quest_db.yml b/db/quest_db.yml
new file mode 100644
index 0000000000..e22504b0fd
--- /dev/null
+++ b/db/quest_db.yml
@@ -0,0 +1,64 @@
+# 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 .
+#
+###########################################################################
+# Quest Database
+###########################################################################
+#
+# Quest Settings
+#
+###########################################################################
+# - Id Quest ID.
+# Title Quest title.
+# 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" (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.
+# If Mob is supplied, Count is required and the other fields are ignored.
+# If Id is supplied, at least one other field of Race/Size/Element/MinLevel/MaxLevel is required.
+# If Id is supplied, Count is required for each new entry.
+# - 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). 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.
+# Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1)
+# Rate Item drop rate. (10000 = 100%)
+###########################################################################
+
+Header:
+ Type: QUEST_DB
+ Version: 2
+
+Footer:
+ Imports:
+ - Path: db/pre-re/quest_db.yml
+ Mode: Prerenewal
+ - Path: db/re/quest_db.yml
+ Mode: Renewal
+ - Path: db/import/quest_db.yml
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/exp_homun.txt b/db/re/exp_homun.txt
index b9238737cf..26f1146f7a 100644
--- a/db/re/exp_homun.txt
+++ b/db/re/exp_homun.txt
@@ -1,151 +1,176 @@
// Homunculus Experience Tables
-347
-545
-891
-1485
-2178
-3168
-3762
-4158
-4505
-4900
-5390
-5880
-5978
-6223
-6566
-7203
-7840
-8232
-8624
-8924
-9409
-9991
-10670
-11446
-12610
-13580
-14550
-15520
-16490
-17460
-18430
-19400
-20370
-21340
-22504
-23280
-25220
-26675
-28130
-28800
-30240
-31680
-32640
-34560
-36000
-36480
-38400
-40320
-42720
-45120
-47040
-48960
-50880
-52800
-54720
-56640
-59040
-60480
-62400
-64320
-66240
-67200
-70080
-73920
-76800
-80640
-84480
-87360
-91200
-104500
-121600
-133000
-147250
-154850
-161500
-171000
-178600
-185250
-190000
-218500
-247000
-285000
-332500
-380000
-456000
-522500
-570000
-646000
-712500
-855000
-950000
-1140000
-1425000
-1710000
-1995000
-2280000
-2660000
-3135000
-3800000
-4124000
-4260000
-4462000
-4527000
-4779000
-4921000
-4984000
-5118000
-5353000
-5438000
-5507000
-5610000
-5776000
-5867000
-6000000
-6116000
-6241000
-6373000
-6498000
-6639000
-6720000
-6907000
-7025000
-7105000
-7264000
-7454000
-7611000
-7688000
-7735000
-7940000
-8020000
-8198000
-8318000
-8376000
-8469000
-8528000
-8573000
-8650000
-8701000
-8769000
-8814000
-8820000
-8826000
-8838000
-8887000
-8905000
-8916000
-8922000
-8966000
-9094000
-0
+50
+110
+180
+260
+350
+630
+950
+1310
+1710
+2150
+3180
+4300
+5510
+6810
+8200
+10800
+13560
+16480
+19560
+22800
+28090
+33630
+39420
+45460
+51750
+61150
+70910
+81030
+91510
+102350
+117580
+133300
+149510
+166210
+183400
+206480
+230200
+254560
+279560
+305200
+338450
+372510
+407380
+443060
+479550
+525590
+572630
+620670
+669710
+719750
+781500
+844460
+908630
+974010
+1040600
+1121280
+1203400
+1286960
+1371960
+1458400
+1561530
+1666350
+1772860
+1881060
+1990950
+2120350
+2251710
+2385030
+2520310
+2657550
+2817340
+2979380
+3143670
+3310210
+3479000
+3673600
+3870760
+4070480
+4272760
+4477600
+4711730
+4948750
+5188660
+5431460
+5677150
+5955830
+6237750
+6522910
+6811310
+7102950
+7431500
+7763660
+8099430
+8438810
+8781800
+9165840
+9553880
+9945920
+10350000
+10462000
+10580000
+10700000
+10826000
+10980000
+11150000
+11334000
+11520000
+11712000
+11906000
+12108000
+12317000
+12530000
+12745000
+12968000
+13193000
+13420000
+13653000
+13890000
+14130000
+14374200
+14620000
+14870000
+15123200
+15378000
+15638000
+15900000
+16164000
+16430000
+16698000
+16970000
+17245000
+17523000
+17804000
+18090000
+18380000
+18675000
+18974000
+19280000
+19588000
+19900000
+20215000
+20534000
+20854200
+21180000
+21509500
+21847000
+22197000
+22558000
+22930000
+23320000
+24500000
+25750000
+26750000
+28000000
+29000000
+30250000
+31250000
+32500000
+33500000
+34750000
+36250000
+38050000
+40210000
+42800000
+47982500
+50572500
+53680000
+57410000
+61887500
+70842500
+75320000
+80692500
+87140000
+94875000
+0
diff --git a/db/re/guild_skill_tree.yml b/db/re/guild_skill_tree.yml
index 425d2942b0..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
@@ -121,3 +121,32 @@ Body:
- Id: GD_GUILD_STORAGE
MaxLevel: 5
+ Required:
+ - Id: GD_EMERGENCYCALL
+ Level: 1
+ - Id: GD_EXTENSION
+ Level: 10
+ - Id: GD_SOULCOLD
+ Level: 1
+ - Id: GD_HAWKEYES
+ Level: 1
+
+ - Id: GD_CHARGESHOUT_FLAG
+ MaxLevel: 1
+ Required:
+ - Id: GD_EMERGENCYCALL
+ Level: 1
+
+ - Id: GD_CHARGESHOUT_BEATING
+ MaxLevel: 1
+ Required:
+ - Id: GD_CHARGESHOUT_FLAG
+ Level: 1
+
+ - Id: GD_EMERGENCY_MOVE
+ MaxLevel: 1
+ Required:
+ - Id: GD_LEADERSHIP
+ Level: 1
+ - Id: GD_GLORYWOUNDS
+ Level: 1
diff --git a/db/re/instance_db.txt b/db/re/instance_db.txt
deleted file mode 100644
index a0443ffb8d..0000000000
--- a/db/re/instance_db.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-// Instance Database
-//
-// Structure of Database:
-// ID,Name,LimitTime,IdleTimeOut,EnterMap,EnterX,EnterY,Map2,...,Map255
-//
-// EnterMap is considered as Map1
-
-1,Endless Tower,14400,300,1@tower,50,355,2@tower,3@tower,4@tower,5@tower,6@tower
-2,Sealed Catacomb,7200,300,1@cata,100,224,2@cata
-3,Orc's Memory,3600,300,1@orcs,179,15,2@orcs
-4,Nidhoggur's Nest,14400,300,1@nyd,32,36,2@nyd
-5,Mistwood Maze,7200,300,1@mist,89,29
-6,Culvert,3600,300,1@pump,63,98,2@pump
-7,Octopus Cave,3600,300,1@cash,199,99
-8,Bangungot Hospital 2F,3600,300,1@ma_h,40,157
-9,Buwaya Cave,3600,300,1@ma_c,35,57
-10,Bakonawa Lake,7200,300,1@ma_b,64,51
-11,Wolfchev's Laboratory,14400,300,1@lhz,45,148
-12,Old Glast Heim,3600,300,1@gl_k,150,20,2@gl_k
-13,Eclage Interior,1200,300,1@ecl,60,50
-14,Sara's Memories,3600,300,1@sara,250,155
-15,Geffen Magic Tournament,7200,300,1@gef,119,209,1@gef_in,1@ge_st
-16,Horror Toy Factory,3600,300,1@xm_d,111,22
-17,Faceworm's Nest,3600,300,1@face,112,370
-18,Ghost Palace,3600,300,1@spa,42,196
-19,Devil's Tower,3600,300,1@tnm1,50,104,1@tnm2,1@tnm3
-20,Assault on the Airship,3600,300,1@air1,244,73,1@air2
-21,Fenrir and Sarah,3600,300,1@glast,367,304
-// 22,Wave Mode - Forest,3600,300,1@def01,50,21
-// 23,Wave Mode - Sky,3600,300,1@def02,29,35
-24,Nightmarish Jitterbug,3600,300,1@jtb,16,17
-25,Isle of Bios,3600,300,1@dth1,17,93,1@dth2,1@dth3
-26,Morse's Cave,3600,300,1@rev,26,181
-// 27,Temple of the Demon God,3600,300,1@eom,101,16
-28,Central Laboratory,3600,300,1@lab,120,30
-29,Last room,3600,300,1@uns,145,35
-// 30,Charleston in Distress,3600,300,1@mcd,127,282
-31,Ritual of Blessing,3600,300,2@mir,101,12
-32,Room of Consciousness,3600,300,1@mir,101,10
-// 33,Sky Fortress Invasion,3600,300,1@sthb,54,67,1@sthc,1@sthd
diff --git a/db/re/instance_db.yml b/db/re/instance_db.yml
new file mode 100644
index 0000000000..0fa118133d
--- /dev/null
+++ b/db/re/instance_db.yml
@@ -0,0 +1,303 @@
+# 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 .
+#
+###########################################################################
+# Instance Database
+###########################################################################
+#
+# Instance Settings
+#
+###########################################################################
+# - Id Instance ID.
+# Name Instance Name.
+# TimeLimit Total lifetime of instance in seconds. (Default: 3600)
+# IdleTimeOut Time before an idle instance is destroyed in seconds. (Default: 300)
+# Destroyable Toggles the ability to destroy the instance using instance 'Destroy' button. (Default: true)
+# Note: the button is displayed based on parties. For any mode, it requires the party leader to be the instance owner to destroy it.
+# Enter: Instance entrance coordinates.
+# Map Map Name where players start.
+# X X Coordinate where players start.
+# Y Y Coordinate where players start.
+# AdditionalMaps: List of maps that are part of an instance. (Optional)
+###########################################################################
+
+Header:
+ Type: INSTANCE_DB
+ Version: 1
+
+Body:
+ - Id: 1
+ Name: Endless Tower
+ TimeLimit: 14400
+ Enter:
+ Map: 1@tower
+ X: 50
+ Y: 355
+ AdditionalMaps:
+ 2@tower: true
+ 3@tower: true
+ 4@tower: true
+ 5@tower: true
+ 6@tower: true
+ - Id: 2
+ Name: Sealed Catacomb
+ TimeLimit: 7200
+ Enter:
+ Map: 1@cata
+ X: 100
+ Y: 224
+ AdditionalMaps:
+ 2@cata: true
+ - Id: 3
+ Name: Orc's Memory
+ Enter:
+ Map: 1@orcs
+ X: 179
+ Y: 15
+ AdditionalMaps:
+ 2@orcs: true
+ - Id: 4
+ Name: Nidhoggur's Nest
+ TimeLimit: 14400
+ Enter:
+ Map: 1@nyd
+ X: 32
+ Y: 36
+ AdditionalMaps:
+ 2@nyd: true
+ - Id: 5
+ Name: Mistwood Maze
+ TimeLimit: 7200
+ Enter:
+ Map: 1@mist
+ X: 89
+ Y: 29
+ - Id: 6
+ Name: Culvert
+ Enter:
+ Map: 1@pump
+ X: 63
+ Y: 98
+ AdditionalMaps:
+ 2@pump: true
+ - Id: 7
+ Name: Octopus Cave
+ Enter:
+ Map: 1@cash
+ X: 199
+ Y: 99
+ - Id: 8
+ Name: Bangungot Hospital 2F
+ Enter:
+ Map: 1@ma_h
+ X: 40
+ Y: 157
+ - Id: 9
+ Name: Buwaya Cave
+ Enter:
+ Map: 1@ma_c
+ X: 35
+ Y: 57
+ - Id: 10
+ Name: Bakonawa Lake
+ TimeLimit: 7200
+ Enter:
+ Map: 1@ma_b
+ X: 64
+ Y: 51
+ - Id: 11
+ Name: Wolfchev's Laboratory
+ TimeLimit: 14400
+ Enter:
+ Map: 1@lhz
+ X: 45
+ Y: 148
+ - Id: 12
+ Name: Old Glast Heim
+ Enter:
+ Map: 1@gl_k
+ X: 150
+ Y: 20
+ AdditionalMaps:
+ 2@gl_k: true
+ - Id: 13
+ Name: Eclage Interior
+ TimeLimit: 1200
+ Enter:
+ Map: 1@ecl
+ X: 60
+ Y: 50
+ - Id: 14
+ Name: Sara's Memories
+ Enter:
+ Map: 1@sara
+ X: 250
+ Y: 155
+ - Id: 15
+ Name: Geffen Magic Tournament
+ TimeLimit: 7200
+ Enter:
+ Map: 1@gef
+ X: 119
+ Y: 209
+ AdditionalMaps:
+ 1@gef_in: true
+ 1@ge_st: true
+ - Id: 16
+ Name: Horror Toy Factory
+ Enter:
+ Map: 1@xm_d
+ X: 111
+ Y: 22
+ - Id: 17
+ Name: Faceworm's Nest
+ Enter:
+ Map: 1@face
+ X: 112
+ Y: 370
+ - Id: 18
+ Name: Ghost Palace
+ Enter:
+ Map: 1@spa
+ X: 42
+ Y: 196
+ - Id: 19
+ Name: Devil's Tower
+ Enter:
+ Map: 1@tnm1
+ X: 50
+ Y: 104
+ AdditionalMaps:
+ 1@tnm2: true
+ 1@tnm3: true
+ - Id: 20
+ Name: Assault on the Airship
+ Enter:
+ Map: 1@air1
+ X: 244
+ Y: 73
+ AdditionalMaps:
+ 1@air2: true
+ - Id: 21
+ Name: Fenrir and Sarah
+ Enter:
+ Map: 1@glast
+ X: 367
+ Y: 304
+# - Id: 22
+# Name: Wave Mode - Forest
+# Enter:
+# Map: 1@def01
+# X: 50
+# Y: 21
+# - Id: 23
+# Name: Wave Mode - Sky
+# Enter:
+# Map: 1@def02
+# X: 29
+# Y: 35
+ - Id: 24
+ Name: Nightmarish Jitterbug
+ Enter:
+ Map: 1@jtb
+ X: 16
+ Y: 17
+ - Id: 25
+ Name: Isle of Bios
+ Enter:
+ Map: 1@dth1
+ X: 17
+ Y: 93
+ AdditionalMaps:
+ 1@dth2: true
+ 1@dth3: true
+ - Id: 26
+ Name: Morse's Cave
+ Enter:
+ Map: 1@rev
+ X: 26
+ Y: 181
+# - Id: 27
+# Name: Temple of the Demon God
+# Enter:
+# Map: 1@eom
+# X: 101
+# Y: 16
+ - Id: 28
+ Name: Central Laboratory
+ Enter:
+ Map: 1@lab
+ X: 120
+ Y: 30
+ - Id: 29
+ Name: Last room
+ Enter:
+ Map: 1@uns
+ X: 145
+ Y: 35
+ - Id: 30
+ Name: Charleston in Distress
+ Enter:
+ Map: 1@mcd
+ X: 127
+ Y: 282
+ - Id: 31
+ Name: Ritual of Blessing
+ Enter:
+ Map: 2@mir
+ X: 101
+ Y: 12
+ - Id: 32
+ Name: Room of Consciousness
+ Enter:
+ 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: 34
+ Name: Heart Hunter War Base 1
+ Enter:
+ Map: 1@swat
+ X: 35
+ Y: 65
+ - Id: 35
+ Name: Heart Hunter War Base 2
+ Enter:
+ Map: 1@swat
+ X: 73
+ Y: 118
+# There is officially only one (buggy) instance 'Werner Laboratory central room'
+ - Id: 36
+ Name: Werner Laboratory central room#1
+ Enter:
+ Map: 1@slw
+ X: 187
+ Y: 24
+ - Id: 37
+ Name: Werner Laboratory central room#2
+ Enter:
+ Map: 1@slw
+ X: 187
+ Y: 24
diff --git a/db/re/item_buyingstore.txt b/db/re/item_buyingstore.txt
deleted file mode 100644
index 003d501ac9..0000000000
--- a/db/re/item_buyingstore.txt
+++ /dev/null
@@ -1,2031 +0,0 @@
-// Buying Store Item List
-// List of items that can be sold to buying stores.
-//
-// Structure of Database:
-// ItemID
-//
-// Note:
-// Items are in same order as data\buyingstoreitemlist.txt, which
-// must be edited as well for the client to accept added items.
-
-//---2018 / 05 / 16 - ߰ 8517
-6635 //Blacksmith_Blessing
-12507 //E_WOB_Rune
-12508 //E_WOB_Schwaltz
-12509 //E_WOB_Rachel
-12510 //E_WOB_Local
-//22999
-//23136
-//23221
-//23222
-//23223
-//23224
-//23225
-//23226
-//23227
-23228 //Hazy_Mooncake
-//23282
-//25041
-//---2018 / 04 / 18 - Ϸ ȴ ߰
-//25633
-//25634
-//25635
-//25636
-//25637
-//25638
-//25639
-//25640
-//25641
-//25642
-//---2018 / 03 / 14 - Ϻǰ ߰
-6752 //Charleston_Parts
-//---2018 / 03 / 05 - Ϸ 渶ȸȭ ߰
-6671 //Geffen_Coin_Magic_Tournament
-6672 //Shard_of_Gray
-//11620
-25256 //Hazy_Dream_Fragment
-25257 //Bloody_Love_Letter
-25258 //Broken_Arrow
-//25261
-//25262
-//25263
-//25264
-//25265
-//25266
-//25267
-25271 //Illusion_Stone
-//25297
-//25298
-//25299
-//25300
-//25311
-//25312
-//25313
-//25314
-//25615
-//25616
-//25617
-//25618
-//25619
-//---2017 / 10 / 30 - ɴȸ ̺Ʈ ߰
-//23533
-//--- 2017 / 01 / 25 - ź ߰
-//25273
-//--- 2016 / 12 / 07 - ߰
-//25276
-//25277
-//25278
-//25279
-//25280
-//25281
-//25282
-//25283
-//25284
-//25285
-//--- 2015 / 12 / 16 - ڹ
-//25127
-//25128
-//25129
-//25130
-//25131
-//23016
-//23080
-4671 //V_B_Celia_Card
-4672 //V_B_Chen_Card
-4673 //V_B_Alphoccio_Card
-4674 //V_B_Eremes_Card
-4675 //V_B_Magaleta_Card
-4676 //V_B_Shecil_Card
-4677 //V_B_Howard_Card
-4678 //V_B_Katrinn_Card
-4679 //V_B_Seyren_Card
-4680 //V_B_Randel_Card
-4681 //V_B_Flamel_Card
-4682 //V_B_Gertie_Card
-4683 //V_B_Trentini_Card
-4684 //V_Eremes_Card
-4685 //V_Magaleta_Card
-4686 //V_Katrinn_Card
-4687 //V_Shecil_Card
-4688 //V_Harword_Card
-4689 //V_Seyren_Card
-4690 //V_Randel_Card
-4691 //V_Flamel_Card
-4692 //V_Celia_Card
-4693 //V_Chen_Card
-4694 //V_Gertie_Card
-4695 //V_Trentini_Card
-4696 //V_Alphoccio_Card
-//--- 2015 / 11 19 - μ ߰
-6905 //Broken_Magic_Stone
-//--- 2015 / 11 / 30 - ī ߰
-4001 //Poring_Card
-4002 //Fabre_Card
-4003 //Pupa_Card
-4004 //Drops_Card
-4005 //Poring__Card
-4006 //Lunatic_Card
-4007 //Pecopeco_Egg_Card
-4008 //Picky_Card
-4009 //Chonchon_Card
-4010 //Wilow_Card
-4011 //Picky__Card
-4012 //Thief_Bug_Egg_Card
-4013 //Andre_Egg_Card
-4014 //Roda_Frog_Card
-4015 //Condor_Card
-4016 //Thief_Bug_Card
-4017 //Savage_Babe_Card
-4018 //Andre_Larva_Card
-4019 //Hornet_Card
-4020 //Farmiliar_Card
-4021 //Rocker_Card
-4022 //Spore_Card
-4023 //Desert_Wolf_Babe_Card
-4024 //Plankton_Card
-4025 //Skeleton_Card
-4026 //Thief_Bug_Female_Card
-4027 //Kukre_Card
-4028 //Tarou_Card
-4029 //Wolf_Card
-4030 //Mandragora_Card
-4031 //Pecopeco_Card
-4032 //Ambernite_Card
-4033 //Poporing_Card
-4034 //Worm_Tail_Card
-4035 //Hydra_Card
-4036 //Muka_Card
-4037 //Snake_Card
-4038 //Zombie_Card
-4039 //Stainer_Card
-4040 //Creamy_Card
-4041 //Coco_Card
-4042 //Steel_Chonchon_Card
-4043 //Andre_Card
-4044 //Smokie_Card
-4045 //Horn_Card
-4046 //Martin_Card
-4047 //Ghostring_Card
-4048 //Poison_Spore_Card
-4049 //Vadon_Card
-4050 //Thief_Bug_Male_Card
-4051 //Yoyo_Card
-4052 //Elder_Wilow_Card
-4053 //Vitata_Card
-4054 //Angeling_Card
-4055 //Marina_Card
-4056 //Dustiness_Card
-4057 //Metaller_Card
-4058 //Thara_Frog_Card
-4059 //Soldier_Andre_Card
-4060 //Goblin_Card
-4061 //Cornutus_Card
-4062 //Anacondaq_Card
-4063 //Caramel_Card
-4064 //Zerom_Card
-4065 //Kaho_Card
-4066 //Orc_Warrior_Card
-4067 //Megalodon_Card
-4068 //Scorpion_Card
-4069 //Drainliar_Card
-4070 //Eggyra_Card
-4071 //Orc_Zombie_Card
-4072 //Golem_Card
-4073 //Pirate_Skel_Card
-4074 //BigFoot_Card
-4075 //Argos_Card
-4076 //Magnolia_Card
-4077 //Phen_Card
-4078 //Savage_Card
-4079 //Mantis_Card
-4080 //Flora_Card
-4081 //Hode_Card
-4082 //Desert_Wolf_Card
-4083 //Rafflesia_Card
-4084 //Marine_Sphere_Card
-4085 //Orc_Skeleton_Card
-4086 //Soldier_Skeleton_Card
-4087 //Giearth_Card
-4088 //Frilldora_Card
-4089 //Sword_Fish_Card
-4090 //Munak_Card
-4091 //Kobold_Card
-4092 //Skel_Worker_Card
-4093 //Obeaune_Card
-4094 //Archer_Skeleton_Card
-4095 //Marse_Card
-4096 //Zenorc_Card
-4097 //Matyr_Card
-4098 //Dokebi_Card
-4099 //Pasana_Card
-4100 //Sohee_Card
-4101 //Sand_Man_Card
-4102 //Whisper_Card
-4103 //Horong_Card
-4104 //Requiem_Card
-4105 //Marc_Card
-4106 //Mummy_Card
-4107 //Verit_Card
-4108 //Myst_Card
-4109 //Jakk_Card
-4110 //Ghoul_Card
-4111 //Strouf_Card
-4112 //Marduk_Card
-4113 //Marionette_Card
-4114 //Argiope_Card
-4115 //Hunter_Fly_Card
-4116 //Isis_Card
-4117 //Side_Winder_Card
-4118 //Petit_Card
-4119 //Bathory_Card
-4120 //Petit__Card
-4121 //Phreeoni_Card
-4122 //Deviruchi_Card
-4123 //Eddga_Card
-4124 //Medusa_Card
-4125 //Deviace_Card
-4126 //Minorous_Card
-4127 //Nightmare_Card
-4128 //Golden_Bug_Card
-4129 //Baphomet__Card
-4130 //Scorpion_King_Card
-4131 //Moonlight_Flower_Card
-4132 //Mistress_Card
-4133 //Daydric_Card
-4134 //Dracula_Card
-4135 //Orc_Load_Card
-4136 //Khalitzburg_Card
-4137 //Drake_Card
-4138 //Anubis_Card
-4139 //Joker_Card
-4140 //Knight_Of_Abyss_Card
-4141 //Evil_Druid_Card
-4142 //Doppelganger_Card
-4143 //Orc_Hero_Card
-4144 //Osiris_Card
-4145 //Berzebub_Card
-4146 //Maya_Card
-4147 //Baphomet_Card
-4148 //Pharaoh_Card
-4149 //Gargoyle_Card
-4150 //Goat_Card
-4151 //Gajomart_Card
-4152 //Galapago_Card
-4153 //Crab_Card
-4154 //Rice_Cake_Boy_Card
-4155 //Goblin_Leader_Card
-4156 //Steam_Goblin_Card
-4157 //Goblin_Archer_Card
-4158 //Flying_Deleter_Card
-4159 //Nine_Tail_Card
-4160 //Antique_Firelock_Card
-4161 //Grand_Peco_Card
-4162 //Grizzly_Card
-4163 //Gryphon_Card
-4164 //Gullinbursti_Card
-4165 //Gig_Card
-4166 //Nightmare_Terror_Card
-4167 //Neraid_Card
-4168 //Dark_Lord_Card
-4169 //Dark_Illusion_Card
-4170 //Dark_Frame_Card
-4171 //Dark_Priest_Card
-4172 //The_Paper_Card
-4173 //Demon_Pungus_Card
-4174 //Deviling_Card
-4175 //Poison_Toad_Card
-4176 //Dullahan_Card
-4177 //Dryad_Card
-4178 //Dragon_Tail_Card
-4179 //Dragon_Fly_Card
-4180 //Driller_Card
-4181 //Disguise_Card
-4182 //Diabolic_Card
-4183 //Vagabond_Wolf_Card
-4184 //Lava_Golem_Card
-4185 //Rideword_Card
-4186 //Raggler_Card
-4187 //Raydric_Archer_Card
-4188 //Leib_Olmai_Card
-4189 //Wraith_Dead_Card
-4190 //Wraith_Card
-4191 //Loli_Ruri_Card
-4192 //Rotar_Zairo_Card
-4193 //Lude_Card
-4194 //Rybio_Card
-4195 //Leaf_Cat_Card
-4196 //Marin_Card
-4197 //Mastering_Card
-4198 //Maya_Puple_Card
-4199 //Merman_Card
-4200 //Megalith_Card
-4201 //Majoruros_Card
-4202 //Civil_Servant_Card
-4203 //Mutant_Dragon_Card
-4204 //Mini_Demon_Card
-4205 //Mimic_Card
-4206 //Mystcase_Card
-4207 //Mysteltainn_Card
-4208 //Miyabi_Ningyo_Card
-4209 //Violy_Card
-4210 //Wander_Man_Card
-4211 //Vocal_Card
-4212 //Bon_Gun_Card
-4213 //Brilight_Card
-4214 //Bloody_Murderer_Card
-4215 //Blazzer_Card
-4216 //Sasquatch_Card
-4217 //Live_Peach_Tree_Card
-4218 //Succubus_Card
-4219 //Sageworm_Card
-4220 //Solider_Card
-4221 //Skeleton_General_Card
-4222 //Skel_Prisoner_Card
-4223 //Stalactic_Golem_Card
-4224 //Stem_Worm_Card
-4225 //Stone_Shooter_Card
-4226 //Sting_Card
-4227 //Spring_Rabbit_Card
-4228 //Sleeper_Card
-4229 //C_Tower_Manager_Card
-4230 //Shinobi_Card
-4231 //Increase_Soil_Card
-4232 //Wild_Ginseng_Card
-4233 //Baby_Leopard_Card
-4234 //Anolian_Card
-4235 //Cookie_XMAS_Card
-4236 //Amon_Ra_Card
-4237 //Owl_Duke_Card
-4238 //Owl_Baron_Card
-4239 //Iron_Fist_Card
-4240 //Arclouse_Card
-4241 //Archangeling_Card
-4242 //Apocalips_Card
-4243 //Antonio_Card
-4244 //Alarm_Card
-4245 //Am_Mut_Card
-4246 //Assulter_Card
-4247 //Aster_Card
-4248 //Ancient_Mummy_Card
-4249 //Ancient_Worm_Card
-4250 //Executioner_Card
-4251 //Elder_Card
-4252 //Alligator_Card
-4253 //Alice_Card
-4254 //Tirfing_Card
-4255 //Orc_Lady_Card
-4256 //Orc_Archer_Card
-4257 //Wild_Rose_Card
-4258 //Wicked_Nymph_Card
-4259 //Wooden_Golem_Card
-4260 //Wootan_Shooter_Card
-4261 //Wootan_Fighter_Card
-4262 //Evil_Cloud_Hermit_Card
-4263 //Incant_Samurai_Card
-4264 //Wind_Ghost_Card
-4265 //Li_Me_Mang_Ryang_Card
-4266 //Eclipse_Card
-4267 //Explosion_Card
-4268 //Injustice_Card
-4269 //Incubus_Card
-4270 //Giant_Spider_Card
-4271 //Giant_Honet_Card
-4272 //Dancing_Dragon_Card
-4273 //Shellfish_Card
-4274 //Zombie_Master_Card
-4275 //Zombie_Prisoner_Card
-4276 //Lord_Of_Death_Card
-4277 //Zherlthsh_Card
-4278 //Gibbet_Card
-4279 //Deleter_Card
-4280 //Geographer_Card
-4281 //Zipper_Bear_Card
-4282 //Tengu_Card
-4283 //Greatest_General_Card
-4284 //Chepet_Card
-4285 //Choco_Card
-4286 //Karakasa_Card
-4287 //Kapha_Card
-4288 //Carat_Card
-4289 //Caterpillar_Card
-4290 //Cat_O_Nine_Tail_Card
-4291 //Kobold_Leader_Card
-4292 //Kobold_Archer_Card
-4293 //Cookie_Card
-4294 //Quve_Card
-4295 //Kraben_Card
-4296 //Cramp_Card
-4297 //Cruiser_Card
-4298 //Cremy_Fear_Card
-4299 //Clock_Card
-4300 //Chimera_Card
-4301 //Killer_Mantis_Card
-4302 //Tao_Gunka_Card
-4303 //Whisper_Boss_Card
-4304 //Tamruan_Card
-4305 //Turtle_General_Card
-4306 //Toad_Card
-4307 //Kind_Of_Beetle_Card
-4308 //Tri_Joint_Card
-4309 //Parasite_Card
-4310 //Panzer_Goblin_Card
-4311 //Permeter_Card
-4312 //Fur_Seal_Card
-4313 //Punk_Card
-4314 //Penomena_Card
-4315 //Pest_Card
-4316 //Fake_Angel_Card
-4317 //Mobster_Card
-4318 //Knight_Windstorm_Card
-4319 //Freezer_Card
-4320 //Bloody_Knight_Card
-4321 //Hylozoist_Card
-4322 //High_Orc_Card
-4323 //Garm_Baby_Card
-4324 //Garm_Card
-4325 //Harpy_Card
-4326 //See_Otter_Card
-4327 //Blood_Butterfly_Card
-4328 //Hyegun_Card
-4329 //Phendark_Card
-4330 //Dark_Snake_Lord_Card
-4331 //Heater_Card
-4332 //Waste_Stove_Card
-4333 //Venomous_Card
-4334 //Noxious_Card
-4335 //Pitman_Card
-4336 //Ungoliant_Card
-4337 //Porcellio_Card
-4338 //Obsidian_Card
-4339 //Mineral_Card
-4340 //Teddy_Bear_Card
-4341 //Metaling_Card
-4342 //Rsx_0806_Card
-4343 //Mole_Card
-4344 //Anopheles_Card
-4345 //Hill_Wind_Card
-4346 //Ygnizem_Card
-4347 //Armaia_Card
-4348 //Whikebain_Card
-4349 //Erend_Card
-4350 //Rawrel_Card
-4351 //Kavac_Card
-4352 //B_Ygnizem_Card
-4353 //Removal_Card
-4354 //Gemini_Card
-4355 //Gremlin_Card
-4356 //Beholder_Card
-4357 //B_Seyren_Card
-4358 //Seyren_Card
-4359 //B_Eremes_Card
-4360 //Eremes_Card
-4361 //B_Harword_Card
-4362 //Harword_Card
-4363 //B_Magaleta_Card
-4364 //Magaleta_Card
-4365 //B_Katrinn_Card
-4366 //Katrinn_Card
-4367 //B_Shecil_Card
-4368 //Shecil_Card
-4369 //Venatu_Card
-4370 //Dimik_Card
-4371 //Archdam_Card
-4372 //Bacsojin_Card
-4373 //Chung_E_Card
-4374 //Apocalips_H_Card
-4375 //Orc_Baby_Card
-4376 //Lady_Tanee_Card
-4377 //Green_Iguana_Card
-4378 //Acidus_Card
-4379 //Acidus__Card
-4380 //Ferus_Card
-4381 //Ferus__Card
-4382 //Novus__Card
-4383 //Novus_Card
-4384 //Hydro_Card
-4385 //Dragon_Egg_Card
-4386 //Detale_Card
-4387 //Ancient_Mimic_Card
-4388 //Deathword_Card
-4389 //Plasma_Card
-4390 //Breeze_Card
-4391 //Retribution_Card
-4392 //Observation_Card
-4393 //Shelter_Card
-4394 //Solace_Card
-4395 //Tha_Maero_Card
-4396 //Tha_Odium_Card
-4397 //Tha_Despero_Card
-4398 //Tha_Dolor_Card
-4399 //Thanatos_Card
-4400 //Aliza_Card
-4401 //Alicel_Card
-4402 //Aliot_Card
-4403 //Kiel_Card
-4404 //Skogul_Card
-4405 //Frus_Card
-4406 //Skeggiold_Card
-4407 //Randgris_Card
-4408 //Gloom_Under_Night_Card
-4409 //Agav_Card
-4410 //Echio_Card
-4411 //Vanberk_Card
-4412 //Isilla_Card
-4413 //Hodremlin_Card
-4414 //Seeker_Card
-4415 //Snowier_Card
-4416 //Siroma_Card
-4417 //Ice_Titan_Card
-4418 //Gazeti_Card
-4419 //Ktullanux_Card
-4420 //Muscipular_Card
-4421 //Drosera_Card
-4422 //Roween_Card
-4423 //Galion_Card
-4424 //Stapo_Card
-4425 //Atroce_Card
-4426 //Byorgue_Card
-4427 //Sword_Guardian_Card
-4428 //Bow_Guardian_Card
-4429 //Salamander_Card
-4430 //Ifrit_Card
-4431 //Kasa_Card
-4432 //Magmaring_Card
-4433 //Imp_Card
-4434 //Knocker_Card
-4435 //Zombie_Slaughter_Card
-4436 //Ragged_Zombie_Card
-4437 //Hell_Poodle_Card
-4438 //Banshee_Card
-4439 //Flame_Skull_Card
-4440 //Necromancer_Card
-4441 //Fallen_Bishop_Card
-4442 //Tatacho_Card
-4443 //Aqua_Elemental_Card
-4444 //Draco_Card
-4445 //Luciola_Vespa_Card
-4446 //Enhanced_Skeleton_Card
-4447 //Centipede_Card
-4448 //Cornus_Card
-4449 //Dark_Shadow_Card
-4450 //Banshee_Master_Card
-4451 //Ant_Buyanne_Card
-4452 //Centipede_Larva_Card
-4453 //Hilsrion_Card
-4454 //Light_Up_Card1
-4455 //Light_Up_Card2
-4456 //Nidhogg_Shadow_Card
-4457 //Nahtzigger_Card
-4458 //Duneirre_Card
-4459 //Lata_Card
-4460 //Ringco_Card
-4461 //Pillar_Card
-4462 //Hardrock_Mammos_Card
-4463 //Tendrilrion_Card
-4464 //Aunoe_Card
-4465 //Panat_Card
-4466 //Beholder_Master_Card
-4467 //Heavy_Metaling_Card
-4468 //Pinguicula_Dark_Card
-4469 //Naga_Card
-4470 //Nepenthes_Card
-4471 //Egg_Of_Draco_Card
-4472 //Bradium_Goram_Card
-4473 //Ancient_Tree_Card
-4474 //Jakudam_Card
-4475 //Cobalt_Mineral_Card
-4476 //Pinguicula_Card
-4477 //Hell_Apocalips_Card
-4478 //Light_Up_Card3
-4479 //Light_Up_Card4
-4480 //Sealed_Kiel_Card
-4481 //Sealed_Ktullanux_Card
-4482 //Sealed_B_Ygnizem_Card
-4483 //Sealed_Dracula_Card
-4484 //Sealed_Mistress_Card
-4485 //Sealed_Gloom_Card
-4486 //Sealed_Berz_Card
-4487 //Sealed_Ifrit_Card
-4488 //Sealed_D_Lord_Card
-4489 //Sealed_Pharaoh_Card
-4490 //Sealed_M_Flower_Card
-4491 //Sealed_B_Shecil_Card
-4492 //Sealed_Orc_Hero_Card
-4493 //Sealed_Tao_Card
-4494 //Sealed_TurtleG_Card
-4495 //Sealed_Amon_Ra_Card
-4496 //Sealed_Drake_Card
-4497 //Sealed_Knight_WS_Card
-4498 //Sealed_Lady_Tanee_Card
-4499 //Sealed_Samurai_Card
-4500 //Sealed_Orc_Load_Card
-4501 //Sealed_B_Magaleta_Card
-4502 //Sealed_B_Harword_Card
-4503 //Sealed_Apocalips_H_Card
-4504 //Sealed_Eddga_Card
-4505 //Scaraba_Card
-4506 //Dolomedes_Card
-4507 //Q_Scaraba_Card
-4508 //Gold_Scaraba_Card
-4509 //Gold_Q_Scaraba_Card
-4510 //Miming_Card
-4511 //Little_Fatum_Card
-4512 //Parus_Card
-4513 //Angra_Mantis_Card
-4514 //Pom_Spider_Card
-4515 //Alnoldi_Card
-4516 //Comodo_Card
-4517 //Cendrawasih_Card
-4518 //Banaspaty_Card
-4519 //Butoijo_Card
-4520 //Leak_Card
-4521 //Sedora_Card
-4522 //Sropho_Card
-4523 //Pot_Dofle_Card
-4524 //King_Dramoh_Card
-4525 //Kraken_Card
-4526 //Odd_Coelacanth_Card
-4527 //Black_Coelacanth_Card
-4528 //Mutant_Coelacanth_Card
-4529 //Cruel_Coelacanth_Card
-4530 //Siorava_Card
-4531 //Red_Eruma_Card
-4532 //Wild_Rider_Card
-4533 //Mini_Octopus_Card
-4534 //Giant_Octopus_Card
-4535 //Sealed_Rand_Card
-4536 //Sealed_Atroce_Card
-4537 //Sealed_Phreeoni_Card
-4538 //Sealed_Bacsojin_Card
-4539 //Sealed_F_Bishop_Card
-4540 //SLD_Lord_Of_Death_Card
-4541 //SLD_B_Katrinn_Card
-4542 //SLD_Detale_Card
-4543 //SLD_Garm_Card
-4544 //SLD_Dark_Snake_Card
-4545 //Novice_Poring_Card
-4546 //Val'khiri_Card
-4547 //Enhanced_Byorgue_Card
-4548 //Enhanced_Salamander_Card
-4549 //Upd_Maya_Puple_Card
-4550 //Upd_Bow_Guardian_Card
-//4551
-4552 //Manny_Card
-4553 //Sid_Card
-4554 //Diego_Card
-4555 //Scrat_Card
-4556 //Fenrir_Card
-4557 //Weakened_Fenrir_Card
-//4558
-4559 //Evil_Morocc_Card
-4560 //Clown_Alphoccio_Card
-4561 //Professor_Celia_Card
-4562 //Champion_Chen_Card
-4563 //Creator_Flamel_Card
-4564 //Stalker_Gertie_Card
-4565 //Paladin_Randel_Card
-4566 //Gypsy_Trentini_Card
-4567 //Alphoccio_Card
-4568 //Celia_Card
-4569 //Chen_Card
-4570 //Flamel_Card
-4571 //Gertie_Card
-4572 //Randel_Card
-4573 //Trentini_Card
-4574 //Daehyon_Card
-4575 //Soheon_Card
-4576 //Gioia_Card
-4577 //Elvira_Card
-4578 //Pyuriel_Card
-4579 //Lola_Card
-4580 //Kades_Card
-4581 //Rudo_Card
-4582 //Bungisngis_Card
-4583 //Engkanto_Card
-4584 //Manananggal_Card
-4585 //Mangkukulam_Card
-4586 //Tikbalang_Card
-4587 //Tiyanak_Card
-4588 //Wakwak_Card
-4589 //Jejeling_Card
-4590 //Bangungot_Card
-4591 //Bakonawa_Card
-4592 //Buwaya_Card
-4593 //Menblatt_Card
-4594 //Petal_Card
-4595 //Cenere_Card
-4596 //AntiqueBook_Card
-4597 //LichternB_Card
-4598 //LichternG_Card
-4599 //LichternR_Card
-4600 //LichternY_Card
-4601 //Amdarais_Card
-4602 //Realized_Amdarais_Card
-4603 //Corruption_Root_Card
-4604 //Realized_Corruption_Root_Card
-4605 //UndeadKnightM_Card
-4606 //UndeadKnightF_Card
-4607 //FaithfulManager_Card
-4608 //White_Knight_Card
-4609 //Khalitzburg_Knight_Card
-4610 //Sarah_Card
-4625 //Time_Holder_Card
-4626 //Big_Ben_Card
-4627 //Big_Bell_Card
-4628 //Neo_Punk_Card
-4629 //Arc_Elder_Card
-4630 //Nightmare_Timer_Keeper_Card
-4631 //Owl_Viscount_Card
-4632 //Owl_Marquees_Card
-4633 //Enhanced_Archer_Skeleton_Card
-4634 //Enhanced_Soldier_Skeleton_Card
-4635 //Enhanced_Amdarais_Card
-4636 //Bijou_Card
-4637 //Immortal_Corps_Card
-4638 //Watcher_Card
-4639 //Taffy_Card
-4640 //Frozen_Wolf_Card
-4641 //Zombie_Guard_Card
-4642 //Min_Toad_Card
-4643 //Min_Vagabond_Wolf_Card
-4644 //Min_Vocal_Card
-4645 //Min_Eclipse_Card
-4646 //Min_Chimera_Card
-4647 //Min_Osiris_Card
-4648 //Min_Eddga_Card
-4649 //Min_Phreeoni_Card
-4650 //Min_Orc_Hero_Card
-4651 //Min_Tao_Gunka_Card
-4652 //N_Amon_Ra_Card
-4653 //N_Arclouse_Card
-4654 //N_Mimic_Card
-4655 //N_Minorous_Card
-4656 //N_Mummy_Card
-4657 //N_Ancient_Mummy_Card
-4658 //N_Verit_Card
-//--- 2015 / 7 / 9 -
-11600 //Shining_Holy_Water
-22847 //Prontera_Medal
-22848 //Prison_Key
-22849 //Prontera_Time_Crystal
-6921 //Dehumidifiers
-6922 //Sandpaper
-6924 //Red_Eye
-6936 //Cold_Core
-6937 //Silicone_Shell
-6938 //Hedgehog_Picks
-6939 //Old_Belt
-6940 //Moving_Dark_Matter
-6941 //Fragments_Valkyrie_Power
-6942 //Will_Master
-6961 //Huge_Metal_Scrap
-6962 //Old_Fuel
-6905 //Broken_Magic_Stone
-//--- 2014 / 12 / 17
-12739 //Snow_Flower
-//--- 2014 / 07 / 09
-6897 //Blue_Whale
-6898 //Whale
-6899 //Giant_Octopus
-6900 //Giant_Squid
-6901 //Sturgeon
-6902 //King_Lobster
-6903 //King_Earthworm
-22770 //Shark_Skewer
-22771 //Bluefin_Tuna_Skewer
-22772 //Sea_Bream_Skewer
-22773 //Piranha_Skewer
-22774 //Salmon_Skewer
-22775 //Eels_Skewer
-22776 //Carp_Skewer
-//--- 2014 / 04 / 21
-6691 //Fire_Feather
-6692 //Patrol_Journal
-6693 //Stone_Blessing
-6694 //Blood_of_The_Monster
-6695 //Tooth_Rock_Of_Fire_Golem
-6696 //Fire_Frill
-12490 //Vivid_Notation
-22516 //Black_As_Night_Piece_
-22534 //Closed_Mind_Box
-11563 //Hot_Tea
-11564 //Sweets
-//--- 2013 / 12 / 23
-6832 //Questioned_Parts
-11597 //Iron_Worm
-22699 //Test_Reagent
-22679 //Death_Bin
-22687 //Pieces_Of_Sentiment
-6615 //Siege_Guild_Coin
-//--- 2013 / 08 / 02
-6750 //Failed_Engine
-6751 //Crushed_Can_Iron_Plate
-22648 //Angeling_Package
-22649 //Deviling_Package
-6797 //11th_Coin
-//11556
-6770 //Shark
-6771 //Bluefin_Tuna
-6772 //Octopus
-6773 //Snapper
-6774 //Piranha
-6775 //Salmon
-6776 //Eels
-6777 //Carp
-6778 //Squid_2
-6779 //Mackerel
-6780 //Crucian_Carp
-6781 //Living_Earthworm
-6782 //Fresh_Lobster
-11589 //Iceflake
-11590 //Meat_Skewer5
-22620 //Memorial_Box
-22621 //Squid_Bbq
-
-//--- 2013 / 04 / 16
-6557 //Fancy_Fairy_Wing
-6558 //Pile_Of_Acorn
-6559 //Eye_Drops
-6560 //Leaf_Bookmark
-6561 //Dustball
-12812 //Snow_Flip
-12813 //Peony_Mommy
-12814 //Slapping_Herb
-12815 //Yggdrasil_Dust
-6592 //Small_Wooden_Chest
-6594 //Magic_Bronze_Bullion
-6595 //Hammer_Of_Velund
-6596 //Anvil_Of_Velund
-6597 //Bracelet_Of_Velund
-6598 //Rib_Of_Jormungand
-6599 //Spirit_Of_Hugin
-6600 //Spirit_Of_Munin
-6601 //Chisel_Of_Giant
-6602 //Secret_Of_Rune
-6603 //Skin_Of_Hraesvelg
-6604 //Essence_Rune_Magic
-6605 //Muspellium
-//6668
-7056 //Payroll_Of_Kafra
-11557 //TE_White_Potion
-11558 //TE_White_Slim_Potion
-6607 //Temporal_Crystal
-6608 //Coagulated_Spell
-6609 //Glast_Decayed_Nail
-6610 //Glast_Horrendous_Mouth
-6611 //Colorful_Key
-6612 //Gold_Coin_Basket
-6613 //Flashy_Brooch
-7228 //Gold_Bullion
-7229 //Silver_Bullion
-7230 //White_Gold_Bullion
-6699 //Faith_Silence
-6700 //White_Snake_Scale
-6701 //Treasure_Dwarf
-6702 //Sweat_Dwarf
-6703 //Warrior_Tears
-6704 //Warrior_Anger
-6705 //Warrior_Certificate
-6706 //Guardian_Flowers
-6683 //Dried_Flower
-7640 //Butterfly_Hair_Decoration
-7642 //Bloody_Coin
-7643 //Bloody_Letter
-7644 //Unsent_Letter
-6521 //Royal_Certificate
-6522 //Royal_Certificate_
-6531 //Royal_Certificate__
-6557 //Fancy_Fairy_Wing
-6558 //Pile_Of_Acorn
-6559 //Eye_Drops
-6560 //Leaf_Bookmark
-6561 //Dustball
-12812 //Snow_Flip
-12813 //Peony_Mommy
-12814 //Slapping_Herb
-12815 //Yggdrasil_Dust
-714 //Emperium
-6381 //Field_Shovel
-6382 //Urn
-6393 //Round_Feather
-6394 //Golden_Feather
-6395 //Angel_Magic_Power
-6403 //Comodo_L
-6404 //Caress_H
-6405 //Cendrawasih_F
-6423 //Anger_Seagod
-6469 //Will_Of_Warrior
-6470 //Blood_Thirst
-6471 //Goast_Chill
-6493 //Makibishi
-6496 //Tikbalang_Thick_Spine
-6497 //Lesser_Agimat
-6498 //Jejellopy
-6499 //Ancient_Grudge
-6508 //Silver_Bracelet
-6509 //Mysterious_Flower
-6510 //Elegant_Flower
-6511 //Beautiful_Flower
-6512 //Charm_Fire
-6513 //Charm_Ice
-6514 //Charm_Wind
-6515 //Charm_Earth
-6516 //Bakonawa_Doll
-6517 //Bangungot_Doll
-6518 //Buwaya_Doll
-6523 //Bakonawa_Spirit_Piece
-6524 //Bangungot_Spirit_Piece
-6525 //Buwaya_Spirit_Piece
-7347 //Lab_Staff_Record
-7760 //Yaga_Magic_Book
-7762 //Yaga_Pestle
-7824 //Spirit_Liquor
-11519 //Beef_Toast
-11520 //Mora_Mandarin
-11521 //Pingui_Berry_Juice
-11522 //Red_Raffle_Sap
-11523 //Yellow_Raffle_Sap
-11524 //White_Raffle_Sap
-11525 //Mora_Hip_Tea
-11526 //Rafflecino
-11532 //Nasi_Goreng
-11533 //Satay
-11534 //Coco_Juice
-11536 //Cat_Hard_Biscuit
-11537 //Rice_Weevil_Bug
-11547 //Woe_Violet_Potion
-11548 //Woe_White_Potion
-11549 //Woe_Blue_Potion
-12329 //Recall_MaleGM
-12330 //Recall_FemaleGM
-12342 //Manuk's_Opportunity
-12343 //Manuk's_Courage
-12344 //Pinguicula's_fruit_Jam
-12345 //Luciola's_Honey_Jam
-12348 //Manuk's_Faith
-12349 //Cornus'_Tears
-12350 //Angeling_Potion
-12351 //Shout_Megaphone
-12354 //Buche_De_Noel
-12355 //Xmas_Gift
-12356 //Louise_Costume_Box
-12418 //Full_SwingK
-12419 //Mana_Plus
-12422 //HP_Increase_Potion_(Small)
-12423 //HP_Increase_Potion_(Medium)
-12424 //HP_Increase_Potion_(Large)
-12425 //SP_Increase_Potion_(Small)
-12426 //SP_Increase_Potion_(Medium)
-12427 //SP_Increase_Potion_(Large)
-12428 //Concentrated_White_Potion_Z
-12429 //Savage_Full_Roast
-12430 //Cocktail_Warg_Blood
-12431 //Minor_Stew
-12432 //Siroma_Iced_Tea
-12433 //Drosera_Herb_Salad
-12434 //Petite_Tail_Noodles
-12436 //Vitata_500
-12437 //Concentrated_Ceromain_Soup
-12475 //Cure_Free
-12536 //NY_Rice_Cake_Soup
-12539 //Splendid_Box
-12561 //Mysterious_Seed
-12574 //Mora_Berry
-12575 //Arrow_Of_Elf_Cntr
-12576 //Hunting_Arrow_Cntr
-12582 //Siege_Supply_Box
-12608 //Splendid_Box2
-12609 //Old_Ore_Box
-12612 //Old_Coin_Pocket
-12613 //High_Coin_Pocket
-12614 //Mid_Coin_Pocket
-12615 //Low_Coin_Pocket
-12616 //Sgrade_Pocket
-12617 //Agrade_Pocket
-12618 //Bgrade_Pocket
-12619 //Cgrade_Pocket
-12620 //Dgrade_Pocket
-12621 //Egrade_Pocket
-12623 //High_Weapon_Box
-12675 //Sg_Weapon_Supply_Box
-12676 //Sg_Violet_Potion_Box
-12677 //Siege_Arrow_Quiver_S
-12678 //Siege_Arrow_Quiver_A
-12679 //Sg_White_Potion_Box
-12680 //Sg_Blue_Potion_Box
-12683 //Sg_Vi_Potion_Box200
-12690 //Old_C_Album_Helm
-12691 //Old_C_Album_Armor
-12692 //Old_C_Album_Shield
-12693 //Old_C_Album_Garment
-12694 //Old_C_Album_Shoes
-12695 //Old_C_Album_Acc
-12698 //Old_C_Album_Weapon
-12699 //Tikbalang_Belt
-12700 //Insideout_Shirt
-12775 //Ancient_Spirit_Agimat
-
-//--- 2010 / 03 / 12
-601 //Wing_Of_Fly
-602 //Wing_Of_Butterfly
-603 //Old_Blue_Box
-604 //Branch_Of_Dead_Tree
-605 //Anodyne
-606 //Aloebera
-607 //Yggdrasilberry
-608 //Seed_Of_Yggdrasil
-609 //Amulet
-610 //Leaf_Of_Yggdrasil
-611 //Spectacles
-612 //Portable_Furnace
-613 //Iron_Hammer
-614 //Golden_Hammer
-615 //Oridecon_Hammer
-616 //Old_Card_Album
-617 //Old_Violet_Box
-618 //Worn_Out_Scroll
-619 //Unripe_Apple
-620 //Orange_Juice
-621 //Bitter_Herb
-622 //Rainbow_Carrot
-623 //Earthworm_The_Dude
-624 //Rotten_Fish
-625 //Lusty_Iron
-626 //Monster_Juice
-627 //Sweet_Milk
-628 //Well_Dried_Bone
-629 //Singing_Flower
-630 //Dew_Laden_Moss
-631 //Deadly_Noxious_Herb
-632 //Fatty_Chubby_Earthworm
-633 //Baked_Yam
-634 //Tropical_Banana
-635 //Horror_Of_Tribe
-636 //No_Recipient
-637 //Old_Broom
-638 //Silver_Knife_Of_Chaste
-639 //Armlet_Of_Obedience
-640 //Shining_Stone
-641 //Contracts_In_Shadow
-642 //Book_Of_Devil
-643 //Pet_Incubator
-644 //Gift_Box
-645 //Center_Potion
-656 //Awakening_Potion
-657 //Berserk_Potion
-658 //Union_Of_Tribe
-659 //Heart_Of_Her
-660 //Prohibition_Red_Candle
-661 //Sway_Apron
-662 //Inspector_Certificate
-663 //Korea_Rice_Cake
-664 //Gift_Box_1
-665 //Gift_Box_2
-666 //Gift_Box_3
-667 //Gift_Box_4
-668 //Handsei
-669 //Rice_Cake_Soup
-678 //Poison_Bottle
-679 //Gold_Pill
-681 //Memory_Of_Wedding
-682 //Realgar_Wine
-683 //Exorcize_Herb
-684 //Durian
-686 //Earth_Scroll_1_3
-687 //Earth_Scroll_1_5
-688 //Cold_Scroll_1_3
-689 //Cold_Scroll_1_5
-690 //Fire_Scroll_1_3
-691 //Fire_Scroll_1_5
-692 //Wind_Scroll_1_3
-693 //Wind_Scroll_1_5
-694 //Ghost_Scroll_1_3
-695 //Ghost_Scroll_1_5
-696 //Fire_Scroll_2_1
-697 //Fire_Scroll_2_5
-698 //Fire_Scroll_3_1
-699 //Fire_Scroll_3_5
-700 //Cold_Scroll_2_1
-12000 //Cold_Scroll_2_5
-12001 //Holy_Scroll_1_3
-12002 //Holy_Scroll_1_5
-12003 //Holy_Scroll_2_1
-12004 //Arrow_Container
-12005 //Iron_Arrow_Container
-12006 //Steel_Arrow_Container
-12007 //Ori_Arrow_Container
-12008 //Fire_Arrow_Container
-12009 //Silver_Arrow_Container
-12010 //Wind_Arrow_Container
-12011 //Stone_Arrow_Container
-12012 //Crystal_Arrow_Container
-12013 //Shadow_Arrow_Container
-12014 //Imma_Arrow_Container
-12015 //Rusty_Arrow_Container
-12016 //Speed_Up_Potion
-12017 //Slow_Down_Potion
-12018 //Fire_Cracker
-12020 //Water_Of_Darkness
-12027 //Giggling_Box
-12028 //Box_Of_Thunder
-12029 //Gloomy_Box
-12030 //Box_Of_Grudge
-12031 //Sleepy_Box
-12032 //Box_Of_Storm
-12033 //Box_Of_Sunlight
-12034 //Painting_Box
-12040 //Stone_Of_Intelligence_
-12041 //Str_Dish01
-12042 //Str_Dish02
-12043 //Str_Dish03
-12044 //Str_Dish04
-12045 //Str_Dish05
-12046 //Int_Dish01
-12047 //Int_Dish02
-12048 //Int_Dish03
-12049 //Int_Dish04
-12050 //Int_Dish05
-12051 //Vit_Dish01
-12052 //Vit_Dish02
-12053 //Vit_Dish03
-12054 //Vit_Dish04
-12055 //Vit_Dish05
-12056 //Agi_Dish01
-12057 //Agi_Dish02
-12058 //Agi_Dish03
-12059 //Agi_Dish04
-12060 //Agi_Dish05
-12061 //Dex_Dish01
-12062 //Dex_Dish02
-12063 //Dex_Dish03
-12064 //Dex_Dish04
-12065 //Dex_Dish05
-12066 //Luk_Dish01
-12067 //Luk_Dish02
-12068 //Luk_Dish03
-12069 //Luk_Dish04
-12070 //Luk_Dish05
-12071 //Str_Dish06
-12072 //Str_Dish07
-12073 //Str_Dish08
-12074 //Str_Dish09
-12075 //Str_Dish10
-12076 //Int_Dish06
-12077 //Int_Dish07
-12078 //Int_Dish08
-12079 //Int_Dish09
-12080 //Int_Dish10
-12081 //Vit_Dish06
-12082 //Vit_Dish07
-12083 //Vit_Dish08
-12084 //Vit_Dish09
-12085 //Vit_Dish10
-12086 //Agi_Dish06
-12087 //Agi_Dish07
-12088 //Agi_Dish08
-12089 //Agi_Dish09
-12090 //Agi_Dish10
-12091 //Dex_Dish06
-12092 //Dex_Dish07
-12093 //Dex_Dish08
-12094 //Dex_Dish09
-12095 //Dex_Dish10
-12096 //Luk_Dish06
-12097 //Luk_Dish07
-12098 //Luk_Dish08
-12099 //Luk_Dish09
-12100 //Luk_Dish10
-12101 //Citron
-12102 //Meat_Skewer
-12103 //Bloody_Dead_Branch
-12104 //Random_Quiver
-12105 //Set_Of_Taiming_Item
-12106 //Accessory_Box
-12107 //Wrapped_Mask
-12108 //Bundle_Of_Magic_Scroll
-12109 //Poring_Box
-12110 //First_Aid_Kit
-12111 //Food_Package
-12112 //Tropical_Sograt
-12113 //Vermilion_The_Beach
-12114 //Elemental_Fire
-12115 //Elemental_Water
-12116 //Elemental_Earth
-12117 //Elemental_Wind
-12118 //Resist_Fire
-12119 //Resist_Water
-12120 //Resist_Earth
-12121 //Resist_Wind
-12122 //Sesame_Pastry
-12123 //Honey_Pastry
-12124 //Rainbow_Cake
-12125 //Outdoor_Cooking_Kits
-12126 //Indoor_Cooking_Kits
-12127 //High_end_Cooking_Kits
-12128 //Imperial_Cooking_Kits
-12129 //Fantastic_Cooking_Kits
-12130 //Cookie_Bag
-12132 //Red_Bag
-12144 //Sphere_Case_Wind
-12145 //Sphere_Case_Darkness
-12146 //Sphere_Case_Poison
-12147 //Sphere_Case_Water
-12148 //Sphere_Case_Fire
-12149 //Bullet_Case
-12150 //Bullet_Case_Blood
-12151 //Bullet_Case_Silver
-12183 //Holy_Arrow_Quiver
-12184 //Mercenary_Red_Potion
-12185 //Mercenary_Blue_Potion
-12194 //Hometown_Gift
-12195 //Plain_Rice_Cake
-12196 //Hearty_Rice_Cake
-12197 //Salty_Rice_Cake
-12198 //Lucky_Rice_Cake
-12241 //M_Center_Potion
-12242 //M_Awakening_Potion
-12243 //M_Berserk_Potion
-12246 //Magic_Card_Album
-12260 //Cool_Summer_Outfit
-12290 //Mysterious_Can
-12291 //Mysterious_PET_Bottle
-12292 //Unripe_Fruit
-12293 //Dried_Yggdrasilberry
-12341 //Special_Alloy_Trap_Box
-12346 //Unripe_Acorn
-12347 //Acorn_Jelly
-12353 //Tiny_Waterbottle
-12358 //Fan_Of_Wind
-12359 //Very_Soft_Plant
-12360 //Very_Red_Juice
-12362 //Kuloren
-12364 //Staff_Of_Leader
-12365 //Charming_Lotus
-12366 //Gril_Doll
-12367 //Luxury_Whisky_Bottle
-12368 //Splendid_Mirror
-12369 //Oilpalm_Coconut
-12371 //Magical_Lithography
-12372 //Hell_Contract
-12373 //Boy's_Naivety
-12374 //Flaming_Ice
-12376 //Mysterious_Can2
-12377 //Mysterious_PET_Bottle2
-12379 //Pope's_Cookie
-12383 //Vulcan_Bullet_Magazine
-12392 //Repair_A
-12393 //Repair_B
-12394 //Repair_C
-12395 //Tantanmen
-12414 //Guarana_Candy
-12717 //Poison_Paralysis
-12718 //Poison_Leech
-12719 //Poison_Oblivion
-12720 //Poison_Disheart
-12721 //Poison_Numb
-12722 //Poison_Fever
-12723 //Poison_Laughing
-12724 //Poison_Fatigue
-12734 //Runstone_Quality
-12735 //Runstone_Ancient
-12736 //Runstone_Mystic
-12737 //Runstone_Ordinary
-12738 //Runstone_Rare
-506 //Green_Potion
-507 //Red_Herb
-508 //Yellow_Herb
-509 //White_Herb
-510 //Blue_Herb
-511 //Green_Herb
-512 //Apple
-513 //Banana
-514 //Grape
-515 //Carrot
-516 //Sweet_Potato
-517 //Meat
-518 //Honey
-519 //Milk
-520 //Leaflet_Of_Hinal
-521 //Leaflet_Of_Aloe
-522 //Fruit_Of_Mastela
-523 //Holy_Water
-525 //Panacea
-526 //Royal_Jelly
-528 //Monster's_Feed
-529 //Candy
-530 //Candy_Striper
-531 //Apple_Juice
-532 //Banana_Juice
-533 //Grape_Juice
-534 //Carrot_Juice
-535 //Pumpkin
-536 //Ice_Cream
-537 //Pet_Food
-538 //Well_Baked_Cookie
-539 //Piece_Of_Cake
-544 //Fish_Slice
-548 //Cheese
-549 //Nice_Sweet_Potato
-550 //Popped_Rice
-551 //Shusi
-553 //Bun
-564 //Rice_Ball
-566 //Tomyumkung
-567 //Prawn
-568 //Lemon
-569 //Novice_Potion
-570 //Lucky_Candy
-571 //Lucky_Candy_Cane
-572 //Lucky_Cookie
-574 //Egg
-576 //Prickly_Fruit
-577 //Grain
-578 //Strawberry
-579 //Delicious_Fish
-580 //Bread
-581 //Mushroom
-582 //Orange
-584 //Fish_Ball_Soup
-587 //Prickly_Fruit_
-591 //Caviar_Pancake
-592 //Jam_Pancake
-593 //Honey_Pancake
-594 //Sour_Cream_Pancake
-595 //Mushroom_Pancake
-11513 //Protect_Neck_Candy
-11515 //Coconut
-11516 //Asai_Fruit
-11517 //Puri_Potion
-701 //Ora_Ora
-702 //Animal_Blood
-703 //Hinalle
-704 //Aloe
-705 //Clover
-706 //Four_Leaf_Clover
-707 //Singing_Plant
-708 //Ment
-709 //Izidor
-710 //Illusion_Flower
-711 //Shoot
-712 //Flower
-713 //Empty_Bottle
-715 //Yellow_Gemstone
-716 //Red_Gemstone
-717 //Blue_Gemstone
-718 //Dark_Red_Jewel
-719 //Violet_Jewel
-720 //Skyblue_Jewel
-721 //Azure_Jewel
-722 //Scarlet_Jewel
-723 //Cardinal_Jewel
-724 //Cardinal_Jewel_
-725 //Red_Jewel
-726 //Blue_Jewel
-727 //White_Jewel
-728 //Golden_Jewel
-729 //Bluish_Green_Jewel
-730 //Crystal_Jewel
-731 //Crystal_Jewel_
-732 //Crystal_Jewel__
-733 //Crystal_Jewel___
-734 //Red_Frame
-735 //Blue_Porcelain
-736 //White_Platter
-737 //Black_Ladle
-738 //Pencil_Case
-739 //Rouge
-740 //Stuffed_Doll
-741 //Poring_Doll
-742 //Chonchon_Doll
-743 //Spore_Doll
-744 //Bunch_Of_Flowers
-745 //Wedding_Bouquet
-746 //Glass_Bead
-747 //Crystal_Mirror
-748 //Witherless_Rose
-749 //Frozen_Rose
-750 //Baphomet_Doll
-751 //Osiris_Doll
-752 //Grasshopper_Doll
-753 //Monkey_Doll
-754 //Raccoondog_Doll
-756 //Oridecon_Stone
-757 //Elunium_Stone
-901 //Danggie
-902 //Tree_Root
-903 //Reptile_Tongue
-904 //Scorpion's_Tail
-905 //Stem
-906 //Pointed_Scale
-907 //Resin
-908 //Spawn
-909 //Jellopy
-910 //Garlet
-911 //Scell
-912 //Zargon
-913 //Tooth_Of_Bat
-914 //Fluff
-915 //Chrysalis
-916 //Feather_Of_Birds
-917 //Talon
-918 //Sticky_Webfoot
-919 //Animal's_Skin
-920 //Claw_Of_Wolves
-921 //Mushroom_Spore
-922 //Orcish_Cuspid
-923 //Evil_Horn
-924 //Powder_Of_Butterfly
-925 //Bill_Of_Birds
-926 //Scale_Of_Snakes
-928 //Insect_Feeler
-929 //Immortal_Heart
-930 //Rotten_Bandage
-931 //Orcish_Voucher
-932 //Skel_Bone
-934 //Mementos
-935 //Shell
-936 //Scales_Shell
-937 //Posionous_Canine
-938 //Sticky_Mucus
-939 //Bee_Sting
-940 //Grasshopper's_Leg
-941 //Nose_Ring
-942 //Yoyo_Tail
-943 //Solid_Shell
-944 //Horseshoe
-945 //Raccoon_Leaf
-946 //Snail's_Shell
-947 //Horn
-948 //Bear's_Foot
-949 //Feather
-950 //Heart_Of_Mermaid
-951 //Fin
-952 //Cactus_Needle
-953 //Stone_Heart
-954 //Shining_Scales
-955 //Worm_Peelings
-956 //Gill
-957 //Decayed_Nail
-958 //Horrendous_Mouth
-959 //Rotten_Scale
-960 //Nipper
-961 //Conch
-962 //Tentacle
-963 //Sharp_Scale
-964 //Crap_Shell
-965 //Clam_Shell
-966 //Flesh_Of_Clam
-967 //Turtle_Shell
-968 //Voucher_Of_Orcish_Hero
-969 //Gold
-970 //Alchol
-971 //Detrimindexta
-972 //Karvodailnirol
-973 //Counteragent
-974 //Mixture
-975 //Scarlet_Dyestuffs
-976 //Lemon_Dyestuffs
-978 //Cobaltblue_Dyestuffs
-979 //Darkgreen_Dyestuffs
-980 //Orange_Dyestuffs
-981 //Violet_Dyestuffs
-982 //White_Dyestuffs
-983 //Black_Dyestuffs
-984 //Oridecon
-985 //Elunium
-986 //Anvil
-987 //Oridecon_Anvil
-988 //Golden_Anvil
-989 //Emperium_Anvil
-990 //Boody_Red
-991 //Crystal_Blue
-992 //Wind_Of_Verdure
-993 //Yellow_Live
-994 //Flame_Heart
-995 //Mistic_Frozen
-996 //Rough_Wind
-997 //Great_Nature
-998 //Iron
-999 //Steel
-1000 //Star_Crumb
-1001 //Sparkling_Dust
-1002 //Iron_Ore
-1003 //Coal
-1004 //Patriotism_Marks
-1005 //Hammer_Of_Blacksmith
-1006 //Old_Magic_Book
-1007 //Penetration
-1008 //Frozen_Heart
-1009 //Sacred_Marks
-1010 //Phracon
-1011 //Emveretarcon
-1012 //Lizard_Scruff
-1013 //Colorful_Shell
-1014 //Jaws_Of_Ant
-1015 //Thin_N'_Long_Tongue
-1016 //Rat_Tail
-1017 //Moustache_Of_Mole
-1018 //Nail_Of_Mole
-1019 //Wooden_Block
-1020 //Long_Hair
-1021 //Dokkaebi_Horn
-1022 //Fox_Tail
-1023 //Fish_Tail
-1024 //Chinese_Ink
-1025 //Spiderweb
-1026 //Acorn
-1027 //Porcupine_Spike
-1028 //Wild_Boar's_Mane
-1029 //Tiger's_Skin
-1030 //Tiger_Footskin
-1031 //Limb_Of_Mantis
-1032 //Blossom_Of_Maneater
-1033 //Root_Of_Maneater
-1034 //Cobold_Hair
-1035 //Dragon_Canine
-1036 //Dragon_Scale
-1037 //Dragon_Train
-1038 //Petite_DiablOfs_Horn
-1039 //Petite_DiablOfs_Wing
-1040 //Elder_Pixie's_Beard
-1041 //Lantern
-1042 //Short_Leg
-1043 //Nail_Of_Orc
-1044 //Tooth_Of_
-1045 //Sacred_Masque
-1046 //Tweezer
-1047 //Head_Of_Medusa
-1048 //Slender_Snake
-1049 //Skirt_Of_Virgin
-1050 //Tendon
-1051 //Detonator
-1052 //Single_Cell
-1053 //Tooth_Of_Ancient_Fish
-1054 //Lip_Of_Ancient_Fish
-1055 //Earthworm_Peeling
-1056 //Grit
-1057 //Moth_Dust
-1058 //Wing_Of_Moth
-1059 //Transparent_Cloth
-1060 //Golden_Hair
-1061 //Starsand_Of_Witch
-1062 //Pumpkin_Head
-1063 //Sharpened_Cuspid
-1064 //Reins
-1065 //Booby_Trap
-1066 //Tree_Of_Archer_1
-1067 //Tree_Of_Archer_2
-1068 //Tree_Of_Archer_3
-1088 //Morocc_Potion
-1089 //Payon_Potion
-1092 //Empty_Cylinder
-1093 //Empty_Potion
-1094 //Short_Daenggie
-1095 //Needle_Of_Alarm
-1096 //Round_Shell
-1097 //Worn_Out_Page
-1098 //Manacles
-1099 //Worn_Out_Prison_Uniform
-6001 //Essence_Of_Fire
-6002 //Token_Of_Apostle
-6003 //Soul_Pendant
-6004 //Bapho_Doll
-6008 //Wood
-6010 //Pickaxe
-6020 //Fur
-6021 //Peaked_Hat
-6022 //Hard_Skin
-6023 //Mystic_Horn
-6032 //Horn_Of_Hilsrion
-6033 //Horn_Of_Tendrilion
-6073 //Dragon's_Mane
-6075 //Crystalized_Teardrop
-6086 //Withered_Flower
-6087 //Crystal_Of_Soul_01
-6088 //Crystal_Of_Soul_02
-6089 //Piece_Of_Darkness
-6090 //Purified_Bradium
-6091 //Dark_Red_Scale
-6095 //Flavored_Alcohol
-6096 //Fish_With_Blue_Back
-6097 //Pumpkin_Pie_
-6098 //Small_Snow_Flower
-6099 //Grilled_Rice_Cake
-6100 //Damp_Darkness
-6104 //Big_Cell
-6105 //Morning_Dew
-6106 //Well_Ripened_Berry
-6107 //Sunset_On_The_Rock
-6108 //Apple_Pudding
-6109 //Plant_Neutrient
-6110 //Vital_Flower
-6111 //Mystic_Stone
-6112 //Fresh_Plant
-6113 //Vital_Flower_
-6114 //Flame_Gemstone
-6115 //Bun_
-6120 //Face_Paint
-6123 //Surface_Paint
-6128 //Guillotine_Antidote
-6144 //Heartbroken_Tears
-6145 //Vulcan_Bullet
-6146 //Magic_Gear_Fuel
-6147 //Liquid_Condensed_Bullet
-6186 //Monkey_Wrench
-6189 //Magic_Book_FB
-6190 //Magic_Book_CB
-6191 //Magic_Book_LB
-6192 //Magic_Book_SG
-6193 //Magic_Book_LOV
-6194 //Magic_Book_MS
-6195 //Magic_Book_CM
-6196 //Magic_Book_TV
-6197 //Magic_Book_TS
-6198 //Magic_Book_JT
-6199 //Magic_Book_WB
-6200 //Magic_Book_HD
-6201 //Magic_Book_ES
-6202 //Magic_Book_ES_
-6203 //Magic_Book_CL
-6204 //Magic_Book_CR
-6205 //Magic_Book_DL
-6210 //Seed_Of_Horny_Plant
-6211 //Bloodsuck_Plant_Seed
-6212 //Bomb_Mushroom_Spore
-6213 //Explosive_Powder
-6214 //Smoke_Powder
-6215 //Tear_Gas
-6216 //Oil_Bottle
-6217 //Mandragora_Flowerpot
-6223 //Carnium
-6224 //Bradium
-6244 //Gun_Powder
-6245 //Black_Powder
-6246 //Yellow_Powder
-6247 //White_Powder
-6248 //Melange_Pot
-6249 //Savage_Meat
-6250 //Cooking_Skewer
-6251 //Black_Charcoal
-6252 //Wolf_Blood
-6253 //Cold_Ice
-6254 //Beef_Head_Meat
-6255 //Large_Cookpot
-6256 //Ice_Fragment
-6257 //Ice_Crystal
-6258 //Comodo_Tropic_Fruit
-6259 //Drocera_Tentacle
-6260 //Petti_Tail
-6261 //Fine_Noodle
-6262 //Cool_Gravy
-6263 //Coconut_Fruit
-6264 //Melon
-6265 //Pineapple
-6279 //Apple_Bomb_CB
-6280 //Pinepple_Bomb_CB
-6281 //Coconut_Bomb_CB
-6282 //Melon_Bomb_CB
-6283 //Banana_Bomb_CB
-6284 //Plant_Genetic_Grow
-6285 //Quality_Potion_Book
-6297 //Bottle_To_Throw
-6321 //Rakehorn_Helm
-6322 //Antler_Helm
-6323 //Twinhorn_Helm
-6324 //Singlehorn_Helm
-6325 //White_Spider_Limb
-6326 //Queen_Wing_Piece
-6360 //Scarlet_Pts
-6361 //Indigo_Pts
-6362 //Yellow_Wish_Pts
-6363 //Lime_Green_Pts
-7001 //Mould_Powder
-7002 //Ogre_Tooth
-7003 //Anolian_Skin
-7004 //Mud_Lump
-7005 //Skull
-7006 //Wing_Of_Red_Bat
-7007 //Claw_Of_Rat
-7008 //Stiff_Horn
-7009 //Glitter_Shell
-7010 //Tail_Of_Steel_Scorpion
-7011 //Claw_Of_Monkey
-7012 //Tough_Scalelike_Stem
-7013 //Coral_Reef
-7014 //Old_Portrait
-7015 //Bookclip_In_Memory
-7016 //Spoon_Stub
-7017 //Executioner's_Mitten
-7018 //Young_Twig
-7019 //Loki's_Whispers
-7020 //Mother's_Nightmare
-7021 //Foolishness_Of_Blind
-7022 //Old_Hilt
-7023 //Blade_Lost_In_Darkness
-7024 //Bloody_Edge
-7026 //Key_Of_Clock_Tower
-7027 //Underground_Key
-7030 //Claw_Of_Desert_Wolf
-7031 //Old_Frying_Pan
-7032 //Piece_Of_Egg_Shell
-7033 //Poison_Spore
-7034 //Red_Socks_With_Holes
-7035 //Matchstick
-7036 //Fang_Of_Garm
-7038 //Yarn
-7041 //Fine_Grit
-7043 //Fine_Sand
-7047 //Alice's_Apron
-7048 //Talon_Of_Griffin
-7049 //Stone
-7053 //Cyfar
-7054 //Brigan
-7055 //Animal_Pooopoo
-7056 //Payroll_Of_Kafra
-7057 //Gallar_Horn
-7058 //Gullraifnir
-7063 //Soft_Feather
-7064 //Dragon_Fly_Wing
-7065 //Sea_Otter_Leather
-7066 //Ice_Piece
-7067 //Stone_Piece
-7068 //Burn_Tree
-7069 //Broken_Armor_Piece
-7070 //Broken_Shell
-7071 //Tatters_Clothes
-7072 //Rust_Suriken
-7073 //Jewel_Of_Prayer
-7074 //Iron_Glove
-7075 //Iron_Maiden
-7076 //Mystery_Wheel
-7077 //Silver_Fancy
-7078 //Anger_Of_Valkurye
-7079 //Feather_Of_Angel
-7080 //Foot_Step_Of_Cat
-7081 //Beard_Of_Women
-7082 //Root_Of_Stone
-7083 //Soul_Of_Fish
-7084 //Saliva_Of_Bird
-7085 //Tendon_Of_Bear
-7086 //Symbol_Of_Sun
-7087 //Breath_Of_Soul
-7088 //Crystal_Of_Snow
-7089 //Indication_Of_Tempest
-7090 //Slilince_Wave
-7091 //Rough_Billows
-7092 //Air_Stream
-7093 //Wheel
-7094 //Mystery_Piece
-7095 //Broken_Steel_Piece
-7096 //Cold_Magma
-7097 //Burning_Heart
-7098 //Live_Coal
-7099 //Old_Magic_Circle
-7100 //Sharp_Leaf
-7101 //Peco_Wing_Feather
-7102 //Hideous_Dream
-7103 //Unknown_Liquid_Bottle
-7104 //Fake_Angel_Wing
-7105 //Fake_Angel_Loop
-7106 //Goat's_Horn
-7107 //Gaoat's_Skin
-7108 //Boroken_Shiled_Piece
-7109 //Shine_Spear_Blade
-7110 //Vroken_Sword
-7111 //Smooth_Paper
-7112 //Fright_Paper_Blade
-7113 //Broken_Pharaoh_Symbol
-7114 //Tutankhamen's_Mask
-7115 //Harpy's_Feather
-7116 //Harpy's_Claw
-7117 //Rent_Spell_Book
-7118 //Rent_Scroll
-7119 //Spawns
-7120 //Burning_Horse_Shoe
-7121 //Honey_Jar
-7122 //Hot_Hair
-7123 //Dragon's_Skin
-7124 //Sand_Lump
-7125 //Scropion's_Nipper
-7126 //Large_Jellopy
-7127 //Alcol_Create_Book
-7128 //FireBottle_Create_Book
-7129 //Acid_Create_Book
-7130 //Plant_Create_Book
-7131 //Mine_Create_Book
-7132 //Coating_Create_Book
-7133 //Slim_Potion_Create_Book
-7134 //Medicine_Bowl
-7140 //Seed_Of_Life
-7141 //Yggdrasilberry_Dew
-7143 //Life_Force_Pot
-7144 //Normal_Potion_Book
-7147 //Jasmin
-7149 //Yellow_Plate
-7150 //Bamboo_Cut
-7151 //Oil_Paper
-7152 //Glossy_Hair
-7153 //Old_Japaness_Clothes
-7154 //Poison_Powder
-7155 //Poison_Toad's_Skin
-7156 //Broken_Shuriken
-7157 //Black_Mask
-7158 //Broken_Wine_Vessel
-7159 //Tengu's_Nose
-7160 //Lord's_Passable_Ticket
-7161 //Black_Bear's_Skin
-7162 //Cloud_Piece
-7163 //Sharp_Feeler
-7164 //Hard_Peach
-7165 //Limpid_Celestial_Robe
-7166 //Soft_Silk_Cloth
-7167 //Mystery_Iron_Bit
-7168 //Great_Wing
-7169 //Taegeuk_Plate
-7170 //Tuxedo
-7171 //Leopard_Skin
-7172 //Leopard_Talon
-7174 //Packing_Ribbon
-7175 //Packing_Paper
-7182 //Cacao
-7186 //Thin_Stem
-7187 //Festival_Mask
-7188 //Browny_Root
-7189 //Heart_Of_Tree
-7190 //Solid_Peeling
-7191 //Lamplight
-7192 //Blade_Of_Pinwheel
-7193 //Germinating_Sprout
-7194 //Soft_Leaf
-7195 //Air_Rifle
-7196 //Shoulder_Protection
-7197 //Tough_Vines
-7198 //Great_Leaf
-7200 //Flexible_String
-7201 //Log
-7202 //Beetle_Nipper
-7203 //Solid_Twig
-7204 //Gunpowder
-7205 //Piece_Of_Black_Cloth
-7206 //Black_Kitty_Doll
-7207 //Old_Manteau
-7208 //Rusty_Cleaver
-7209 //Dullahan's_Helm
-7210 //Dullahan_Armor
-7211 //Rojerta_Piece
-7212 //Hanging_Doll
-7213 //Needle_Pouch
-7214 //Bat_Cage
-7215 //Broken_Needle
-7216 //Red_Scarf
-7217 //Spool
-7218 //Rotten_Rope
-7219 //Striped_Socks
-7220 //Ectoplasm
-7221 //Tangled_Chain
-7222 //Tree_Knot
-7223 //Distorted_Portrait
-7225 //Pumpkin_Bucket
-7226 //Pill
-7262 //Fan
-7263 //Cat_Eyed_Stone
-7264 //Dried_Sand
-7265 //Dragon_Horn
-7266 //Dragon_Fang
-7267 //Tiger_Skin_Panties
-7268 //Little_Blacky_Ghost
-7269 //Bib
-7270 //Milk_Bottle
-7277 //Munak_Doll
-7286 //Chilli
-7289 //Olivine
-7290 //Phlogopite
-7291 //Agate
-7292 //Muscovite
-7293 //Rose_Quartz
-7294 //Turquoise
-7295 //Citrine
-7296 //Pyroxene
-7297 //Biotite
-7298 //Leaf_Clothes
-7299 //Bamboo_Basket
-7300 //Gemstone
-7301 //Sword_Accessory
-7303 //Bag_Of_Rice
-7312 //Jubilee
-7315 //Dark_Crystal_Fragment
-7316 //Long_Limb
-7317 //Screw
-7318 //Old_Pick
-7319 //Old_Steel_Plate
-7320 //Air_Pollutant
-7321 //Fragment_Of_Crystal
-7322 //Poisonous_Gas
-7323 //Battered_Kettle
-7325 //Tube
-7326 //Fluorescent_Liquid
-7327 //Headlamp
-7340 //Will_Of_Darkness
-7345 //Armlet_Of_Prisoner
-7352 //Transparent_Plate01
-7353 //Transparent_Plate02
-7354 //Transparent_Plate03
-7355 //Transparent_Plate04
-7356 //Piece_Of_Crest1
-7357 //Piece_Of_Crest2
-7358 //Piece_Of_Crest3
-7359 //Piece_Of_Crest4
-7419 //Embryo_HandBook
-7433 //Scroll
-7434 //Elemental_Potion_Book
-7435 //Golden_Bracelet
-7436 //Piece_Of_Memory_Green
-7437 //Piece_Of_Memory_Purple
-7438 //Piece_Of_Memory_Blue
-7439 //Piece_Of_Memory_Red
-7440 //Red_Feather
-7441 //Blue_Feather
-7442 //Cursed_Seal
-7443 //Tri_Headed_Dragon_Head
-7444 //Treasure_Box
-7445 //Dragonball_Green
-7446 //Dragonball_Blue
-7447 //Dragonball_Red
-7448 //Dragonball_Yellow
-7449 //Bloody_Page
-7450 //Piece_Of_Bone_Armor
-7451 //Scale_Of_Red_Dragon
-7452 //Yellow_Spice
-7453 //Sweet_Sauce
-7454 //Plain_Sauce
-7455 //Hot_Sauce
-7456 //Red_Spice
-7457 //Cooking_Oil
-7472 //Cookbook01
-7473 //Cookbook02
-7474 //Cookbook03
-7475 //Cookbook04
-7476 //Cookbook05
-7477 //Cookbook06
-7478 //Cookbook07
-7479 //Cookbook08
-7480 //Cookbook09
-7481 //Cookbook10
-7482 //Pot
-7507 //Sturdy_Iron_Piece
-7510 //Valhalla_Flower
-7511 //Rune_Of_Darkness
-7512 //Burnt_Parts
-7513 //Pocket_Watch__
-7521 //Flame_Stone
-7522 //Ice_Stone
-7523 //Wind_Stone
-7524 //Shadow_Orb
-7561 //Ice_Heart
-7562 //Ice_Scale
-7563 //Bloody_Rune
-7564 //Rotten_Meat
-7565 //Sticky_Poison
-7566 //Will_Of_Darkness_
-7567 //Suspicious_Hat
-7568 //White_Mask
-7574 //Ice_Particle
-7751 //Old_White_Cloth
-7752 //Clattering_Skull
-7753 //Broken_Farming_Utensil
-7754 //Broken_Crown
-7830 //Goddess_Tear
-7831 //Valkyrie_Token
-7832 //Brynhild_Armor_Piece
-7833 //Hero_Remains
-7834 //Andvari_Ring
-7835 //Dusk_Glow
-7836 //Dawn_Essence
-7837 //Cold_Moonlight
-7838 //Hazy_Starlight
-7931 //Poison_Kit
-7932 //Poison_Herb_Nerium
-7933 //Poison_Herb_Rantana
-7934 //Poison_Herb_Makulata
-7935 //Poison_Herb_Seratum
-7936 //Poison_Herb_Scopolia
-7937 //Poison_Herb_Amoena
-7938 //Light_Granule
-7939 //Elder_Branch
-7940 //Special_Alloy_Trap
-11000 //Prontera_Book_01
-11001 //Adventure_Story01
-11002 //Great_Chef_Orleans01
-11003 //Legend_Of_Kafra01
-11004 //Mercenary_Rebellion
-11005 //Tyrant_Schmidt
-11006 //Blood_Flower01
-11007 //Blood_Flower02
-11008 //Barmund
-11009 //Adventure_Story02
-11020 //Japan_Book1
-11021 //Japan_Book2
-11022 //Mix_Cook_Book
-11023 //Increase_Stamina_Study
-11024 //Vital_Drink_CB
-//--- 2010 / 03 / 12
diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt
index 8af85dfffb..276ec3890a 100644
--- a/db/re/item_combo_db.txt
+++ b/db/re/item_combo_db.txt
@@ -15,6 +15,8 @@
1285:2892,{ bonus bCritical,4; bonus bCritAtkRate,40; bonus bMaxHPRate,-10; }
1287:15123,{ if (getequiprefinerycnt(EQI_HAND_R) >= 7) { autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",1000,3000,BF_SHORT|BF_NORMAL; } /* Confirm: Success rate */ }
1326:22133,{ bonus bBaseAtk,40; .@eq = getequiprefinerycnt(EQI_SHOES); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",15; } if ((.@eq + .@weapon) >= 18) { bonus2 bAddClass,Class_All,10; if ((.@eq + .@weapon) >= 22) { bonus bLongAtkRate,10; } } }
+13473:4263,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,20; autobonus3 "{ bonus bFlee2,100; }",1,3000,"ASC_BREAKER"; }
+13485:22171,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",30,7000,BF_WEAPON; }
1387:19021,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15+(getequiprefinerycnt(EQI_HAND_R))*5; }
1407:5782,{ bonus2 bAddClass,Class_All,3; }
1408:5782,{ bonus2 bAddClass,Class_All,3; }
@@ -56,21 +58,23 @@
1580:2186,{ bonus bAspdRate,15; }
1615:18539,{ bonus bMatk,10*getequiprefinerycnt(EQI_HAND_R); bonus bVariableCastrate,-10; }
1616:2515,{ bonus bSpeedRate,25; }
+1617:19020,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,.@r*10; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
1618:2509,{ bonus bMaxHP,300; bonus bMatkRate,min(5, getequiprefinerycnt(EQI_HAND_R)-5); bonus2 bSubEle,Ele_Neutral,min(30, getequiprefinerycnt(EQI_GARMENT)*3); }
1618:2509:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatkRate,1; if (.@r >= 5) { bonus bMatkRate,2; if (.@r >= 7) { bonus bMatkRate,2; } } }
1618:2535,{ bonus bMatkRate,5; bonus2 bSubEle,Ele_Neutral,25; }
-1618:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
+1618:19020,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,.@r*10; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
1618:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,10*.@r; if (.@r>=10) { bonus bVariableCastrate,-3; bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",70; bonus2 bSkillAtk,"WZ_JUPITEL",70; } if (BaseLevel>=100) { bonus bVariableCastrate,-3; bonus2 bSkillAtk,"WL_EARTHSTRAIN",30; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",140; bonus2 bSkillAtk,"WZ_JUPITEL",140; } }
1618:20813,{ bonus bMaxHP,300; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)-5; bonus2 bSubEle,Ele_Neutral,getequiprefinerycnt(EQI_GARMENT)*3; }
1618:20813:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatkRate,1; if (.@r >= 5) { bonus bMatkRate,2; if (.@r >= 7) { bonus bMatkRate,2; } } }
1618:20847,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); .@weapon = min(.@weapon,10); bonus bMaxHP,1000; bonus bMatk,(-50+(20*.@weapon)); bonus bDelayrate,-(3*(.@weapon/3)); bonus2 bSubEle,Ele_Neutral,(min(.@eq,10)/2); }
+1619:19020,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,.@r*10; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
1620:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,10*.@r; if (.@r>=10) { bonus bVariableCastrate,-3; bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",70; bonus2 bSkillAtk,"WZ_JUPITEL",70; } if (BaseLevel>=100) { bonus bVariableCastrate,-3; bonus2 bSkillAtk,"WL_EARTHSTRAIN",30; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",140; bonus2 bSkillAtk,"WZ_JUPITEL",140; } }
1620:20813,{ bonus bMaxHP,300; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)-5; bonus2 bSubEle,Ele_Neutral,getequiprefinerycnt(EQI_GARMENT)*3; }
1620:20813:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatkRate,1; if (.@r >= 5) { bonus bMatkRate,2; if (.@r >= 7) { bonus bMatkRate,2; } } }
1620:2509,{ bonus bMaxHP,300; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)-5; if(getequiprefinerycnt(EQI_GARMENT) > 10) { bonus2 bSubEle,Ele_Neutral,30; } else { bonus2 bSubEle,Ele_Neutral,getequiprefinerycnt(EQI_GARMENT)*3; } }
1620:2509:19139,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatkRate,1; if (.@r >= 5) { bonus bMatkRate,2; if (.@r >= 7) { bonus bMatkRate,2; } } }
1620:2535,{ bonus bMatkRate,5; bonus2 bSubEle,Ele_Neutral,25; }
-1620:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
+1620:19020,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,.@r*10; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } }
1629:5045,{ bonus bDex,2; bonus bInt,2; bonus bSPrecovRate,5; bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R); }
1631:2129,{ bonus2 bSkillAtk,"PR_MAGNUS",20; bonus3 bAutoSpellWhenHit,"PR_TURNUNDEAD",1,20; }
1636:18539,{ bonus bMatk,10*getequiprefinerycnt(EQI_HAND_R); bonus bVariableCastrate,-10; }
@@ -81,9 +85,9 @@
1659:5920,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillUseSP,"AL_HEAL",6*.@r; bonus2 bSkillUseSP,"AB_CHEAL",10*.@r; bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",14*.@r; }
1660:2471:2569:15029,{ bonus bHealPower,45; bonus2 bSkillUseSP,"AL_HEAL",-50; bonus3 bAutoSpellWhenHit,"AB_SILENTIUM",1,100; bonus2 bSkillCooldown,"AB_CLEARANCE",-3000; bonus2 bSkillCooldown,"AB_LAUDAAGNUS",-3000; bonus2 bSkillCooldown,"AB_LAUDARAMUS",-3000; }
1668:15089,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10-min(.@r,10); }
-1670:2968,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)*5; }
-1670:2968:2969,{ bonus bMatkRate,-(getequiprefinerycnt(EQI_HAND_R)*5); }
-1670:2969,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)*5; }
+1670:2968,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*5; }
+1670:2968:2969,{ bonus bMatk,-(getequiprefinerycnt(EQI_HAND_R)*5); }
+1670:2969,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*5; }
1718:1774,{ bonus bLongAtkRate,50; }
1723:2718,{ bonus bDex,1; bonus bMaxSP,50; bonus bSPrecovRate,10; }
1724:5467,{ bonus bAspd,1; bonus bFlee2,3; }
@@ -121,6 +125,8 @@
2013:2469:2861:15027,{ bonus2 bMagicAtkEle,Ele_Fire,60; bonus2 bMagicAtkEle,Ele_Water,-60; bonus2 bSubEle,Ele_Water,-50; }
2014:2470:2862:15028,{ bonus2 bMagicAtkEle,Ele_Earth,60; bonus2 bMagicAtkEle,Ele_Fire,-60; bonus2 bSubEle,Ele_Fire,-50; }
2039:20847,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"WL_CRIMSONROCK",10; if (.@eq >= 7 && .@weapon >= 7) { bonus2 bSkillAtk,"WL_HELLINFERNO",40; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Dark,10; if ((.@eq + .@weapon) >= 22) { bonus2 bMagicAtkEle,Ele_Fire,10; } } }
+2046:19310:15250:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus bVariableCastrate,-15; bonus2 bMagicAtkEle,Ele_Fire,5; }
+2048:22171,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; }
2051:20847,{ bonus bMatk,50; .@eq = getequiprefinerycnt(EQI_GARMENT); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAddEle,Ele_Water,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Fire,15; if ((.@eq + .@weapon) >= 22) { bonus bDelayrate,-15; } } }
2109:2239:2717,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; }
2109:2971:5135,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; }
@@ -132,20 +138,23 @@
2121:2971:5135,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; }
2121:2971:18874,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; }
2123:2701,{ bonus bVariableCastrate,-10; }
-2123:2881,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_L)*2; }
+2123:2881,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_L)*2; }
2124:2702,{ bonus bAspdRate,10; bonus bShortWeaponDamageReturn,5; }
-2124:22064,{ bonus bAspd,getequiprefinerycnt(EQI_HAND_L)/3; }
+2124:22064,{ .@r = getequiprefinerycnt(EQI_HAND_L)/3; bonus bAspdRate,.@r*6; }
2125:5782,{ bonus bDef,2; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Ghost,5; }
2135:2426,{ bonus2 bAddEff,Eff_Blind,500; autobonus "{ bonus bFlee,20; }",200,10000,BF_WEAPON,"{ specialeffect2 EF_INCAGILITY; }"; }
2137:2353:5124,{ bonus bDef,2-getequiprefinerycnt(EQI_HAND_L)-getequiprefinerycnt(EQI_HEAD_TOP); bonus bMdef,5+getequiprefinerycnt(EQI_HAND_L)+getequiprefinerycnt(EQI_HEAD_TOP); }
-2153:28372,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"LG_SHIELDPRESS",.@r > 5 ? (.@r - 5) * 8 : 0; }
+2153:28372,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bSkillAtk,"LG_SHIELDPRESS",.@r > 5 ? (.@r - 5) * 8 : 0; }
+2157:2905,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bSubRace,RC_Insect,10; if(.@r>=8){ bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,20; } }
2160:19021,{ bonus2 bSubSize,Size_Large,5+(getequiprefinerycnt(EQI_HAND_L)*2); }
2169:2491:2590:15051,{ bonus2 bAddDefMonster,2311,30; bonus2 bAddDefMonster,2312,30; bonus2 bAddDefMonster,2320,30; bonus2 bAddDefMonster,2321,30; bonus2 bAddDefMonster,2322,30; bonus2 bAddDefMonster,2317,30; bonus2 bAddDefMonster,2318,30; bonus2 bAddDefMonster,2327,30; bonus2 bAddDefMonster,2319,30; bonus2 bAddDefMonster,2330,30; bonus2 bAddDefMonster,2329,30; bonus2 bAddDefMonster,2333,30; bonus2 bAddDefMonster,2332,30; bonus2 bAddDefMonster,2309,30; bonus2 bAddDefMonster,2310,30; bonus2 bAddDefMonster,2315,30; bonus2 bAddDefMonster,2316,30; bonus2 bAddDefMonster,2314,30; bonus2 bAddDefMonster,2313,30; bonus bMaxHPrate,20; bonus bMaxSPrate,10; }
2171:15053,{ bonus bAgi,2; }
2171:15056,{ bonus bAgi,2; }
2172:15054,{ bonus2 bAddClass,Class_All,10; bonus bStr,2; }
2173:15055,{ bonus bFlee,10; bonus bFlee2,10; }
-2177:18574,{ bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; if (getequiprefinerycnt(EQI_HEAD_TOP) > 7) { bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; } }
+2175:20716,{ .@r = getequiprefinerycnt(EQI_GARMENT); .@r2 = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubRace,RC_Angel,.@r; bonus2 bAddEle,Ele_Ghost,.@r2; }
+2175:22066,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubEle,Ele_Ghost,5+2*.@r; }
+2177:18574,{ bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; if (getequiprefinerycnt(EQI_HEAD_TOP) >= 7) { bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; } }
2183:15068,{ bonus2 bSubEle,Ele_Neutral,5; }
2183:15068:18776:20710:22015,{ bonus bMaxHP,900; bonus bMaxSP,100; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,30; }
2183:22015,{ bonus bAllStats,2; }
@@ -154,8 +163,6 @@
2241:5136,{ bonus bMaxHP,700; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"AL_INCAGI",10,30,1; }
2268:18573,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if(.@r > 6) { bonus bMaxHPrate,((.@r-5)/2)*2; bonus bHit,(.@r-5)/2; } }
2268:19082,{ bonus bDelayrate,-5; }
-//Mechanical Plant Hat:19082,{ bonus2 bSkillAtk,GN_SPORE_EXPLOSION,getequiprefinerycnt(EQI_HEAD_???)*5; }
-//2268:Mechanical Plant Hat:19082,{ bonus2 bSkillUseSP,GN_SPORE_EXPLOSION,20; }
2269:5781,{ bonus bInt,1; bonus bMaxSP,30; }
2269:5786,{ bonus2 bAddClass,Class_All,1; }
//2269:5768,{ bonus bInt,1; if(getequiprefinerycnt(EQI_HEAD_TOP) > 6) bonus bMaxSPrate,getequiprefinerycnt(EQI_HEAD_TOP)-6; }
@@ -182,25 +189,25 @@
2358:5153,{ bonus bLuk,6; bonus bFlee,5; bonus bInt,2; }
2359:2654,{ bonus bUseSPrate,-20; bonus bMaxHP,300; }
2365:2881,{ bonus bDelayRate,-15; }
-2369:2428:2533:5306,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus bMaxHPrate,20; bonus2 bResEff,Eff_Freeze,10000; skill "WZ_FROSTNOVA",10; }
+2369:2428:2533:5306,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,20; bonus2 bResEff,Eff_Freeze,10000; skill "WZ_FROSTNOVA",10; }
2371:2522,{ bonus bAgi,5; bonus bFlee,10; }
2371:2523,{ bonus bAgi,5; bonus bFlee,10; }
2374:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }
2375:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }
-2376:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bVit,3; bonus bMaxHPRate,12; bonus bHealpower2,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus2 bHPRegenRate,600,1000; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
-2377:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor; }
-2378:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bAgi,3; bonus bMaxHPRate,12; bonus bCritical,5; bonus bAspdRate,5; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
-2379:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bResEff,Eff_Stun,2000; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
-2380:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-50; bonus bHealPower,6; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
-2381:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
-2382:2437:2540,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
+2376:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bVit,3; bonus bMaxHPRate,12; bonus bHealpower2,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus2 bHPRegenRate,600,1000; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
+2377:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor; }
+2378:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bAgi,3; bonus bMaxHPRate,12; bonus bCritical,5; bonus bAspdRate,5; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; }
+2379:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bResEff,Eff_Stun,2000; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
+2380:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-50; bonus bHealPower,6; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; }
+2381:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
+2382:2437:2540,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player_Human,200; bonus bDex,3; bonus bMaxHPRate,12; bonus bLongAtkDef,10; bonus bDelayRate,-25; }
2387:2440:2744,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bVariableCastrate,-3; bonus bDelayrate,-15; }
2390:2749,{ bonus bFlee2,5; }
2394:2444:2549,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bResEff,Eff_Freeze,10000; bonus2 bSkillHeal2,"AM_POTIONPITCHER",3; bonus2 bSkillHeal2,"AL_HEAL",3; bonus2 bSkillHeal2,"PR_SANCTUARY",3; }
2399:2553,{ bonus bAgi,5; bonus bFlee,15; }
2399:2553:5467,{ bonus2 bSubRace,RC_Dragon,20; }
2408:2655,{ bonus bBaseAtk,50; bonus2 bAddDefMonster,1196,20; bonus2 bAddDefMonster,1197,20; }
-2408:15040,{ .@r = getequiprefinerycnt(EQI_SHOES); if(.@r > 10) .@r = 10; bonus bMatkRate,5+.@r; }
+2408:15040,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus bBaseAtk,5+.@r; }
2424:2528,{ bonus bHPrecovRate,5; bonus bMaxHPrate,10; }
2425:2529,{ bonus bFlee,10; }
2425:2530,{ bonus bFlee,10; }
@@ -275,9 +282,9 @@
2481:2731,{ bonus bMatkRate,getequiprefinerycnt(EQI_SHOES)/2; bonus bVariableCastrate,-(getequiprefinerycnt(EQI_SHOES)/2); }
2481:10031,{ bonus bCritical,(getequiprefinerycnt(EQI_SHOES)/2)*10; }
2482:2585:2895:2896:15045:18578,{ bonus bMaxHP,500; bonus bMaxSP,300; bonus bBaseAtk,10; bonus bDef,10; }
-2483:2586:15046,{ bonus bVit,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; }
-2484:2586:15047,{ bonus bDex,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; }
-2485:2587:15048,{ bonus bInt,5; bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; }
+2483:2586:15046,{ bonus bVit,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; }
+2484:2586:15047,{ bonus bDex,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; }
+2485:2587:15048,{ bonus bInt,5; bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; }
2507:15146,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bMaxSPrate,10+.@r; bonus bFlee,10+.@r; }
2507:15163,{ bonus bVariableCastrate,-(2*getequiprefinerycnt(EQI_ARMOR)); bonus bNoCastCancel; }
2509:15146,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,10+.@r; bonus bMatkRate,2+.@r; }
@@ -295,9 +302,8 @@
2527:13001,{ bonus2 bAddRace,RC_Dragon,5; }
2527:13030,{ bonus2 bAddRace,RC_Dragon,5; }
2535:15163,{ bonus5 bAutoSpell,"AL_HEAL",1,(10*getequiprefinerycnt(EQI_ARMOR)),BF_MAGIC,0; }
-2584:5579,{ .@r = getequiprefinerycnt(EQI_GARMENT); if(.@r>=5) { skill "TF_DOUBLE",1; bonus bDoubleRate,25; } else if(.@r>=7) { .@bonus = max(getskilllv("TF_DOUBLE"),5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus*5; } }
-2597:28342,{ bonus bCritAtkRate,5; bonus bCritical,10; .@r = getequiprefinerycnt(EQI_GARMENT); if (.@r > 7) bonus bCritAtkRate,4; else if (.@r > 5) bonus bCritAtkRate,3; }
-//2598:Ramor Shield,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_Undead,.@r; bonus2 bSubRace,RC_DemiHuman,.@r; }
+2584:5579,{ .@r = getequiprefinerycnt(EQI_GARMENT); if(.@r>=7) { .@bonus = max(getskilllv("TF_DOUBLE"),5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus*5; } else if(.@r>=5) { skill "TF_DOUBLE",1; bonus bDoubleRate,25; } }
+2597:28342,{ bonus bCritAtkRate,5; bonus bCritical,10; .@r = getequiprefinerycnt(EQI_GARMENT); if(.@r>=5){ bonus bCritAtkRate,3; } if(.@r>=7){ bonus bCritAtkRate,4; } }
2607:2677,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; }
2607:2711,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; }
2607:2786,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; }
@@ -310,15 +316,15 @@
2626:2711,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; }
2626:2786,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; }
2659:18937,{ bonus bInt,8; bonus bMaxSPrate,5;}
-2660:18937,{ bonus bInt,8; bonus bBaseAtk,20;}
-2661:18937,{ bonus bInt,8; bonus bFlee,15;}
-2662:18937,{ bonus bInt,8; bonus bHit,10;}
+2660:18937,{ bonus bStr,7; bonus bBaseAtk,20;}
+2661:18937,{ bonus bAgi,7; bonus bFlee,15;}
+2662:18937,{ bonus bDex,7; bonus bHit,10;}
2677:28602,{ bonus2 bVariableCastrate,"PR_MAGNUS",-25; bonus bHealPower,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus bIgnoreMDefRace,RC_All; }",getequiprefinerycnt(EQI_HAND_R)*20,2000,BF_SHORT|BF_NORMAL; /* Confirm: Success rate and duration */ }
2678:2679,{ bonus4 bAutoSpell,"MO_EXTREMITYFIST",1,3,1; bonus3 bAutoSpell,"PR_LEXAETERNA",1,20; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; bonus3 bAutoSpell,"MO_INVESTIGATE",5,20; bonus3 bAutoSpell,"ASC_METEORASSAULT",2,50; }
//2679:2792,{ bonus4 bAutoSpell,"MO_EXTREMITYFIST",1,3,1; bonus3 bAutoSpell,"PR_LEXAETERNA",1,20; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; bonus3 bAutoSpell,"MO_INVESTIGATE",5,20; bonus3 bAutoSpell,"ASC_METEORASSAULT",2,50; }
2701:2881,{ bonus bMatkRate,20; }
2702:2874,{ bonus bAspd,1; }
-2702:22064,{ if (readparam(bAgi) > 120) bonus bAspd,2; /* Confirm: Bonus value */ }
+2702:22064,{ if (readparam(bAgi) > 120) bonus bAspd,1; }
27013:27012,{ bonus bNoMadoFuel; }
27015:27016,{ bonus bCritAtkRate,10; }
27018:27019,{ autobonus "{ bonus bAspd,5; }",30,5000; }
@@ -333,6 +339,7 @@
2722:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
2723:2772,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
2723:2773,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
+2723:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
2724:2772,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
2724:2773,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
2724:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; }
@@ -356,7 +363,7 @@
27363:4168,{ bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bSkillAtk,"WZ_METEOR",15; }
2747:13061,{ bonus bHit,5; bonus bMatk,5; bonus2 bSkillUseSP,"SC_ENERVATION",20; bonus2 bSkillUseSP,"SC_GROOMY",20; }
2751:2888,{ bonus bAspdRate,3; bonus bVariableCastrate,-3; }
-2777:2778:5479,{ bonus bMaxHP,10*getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxSP,2*getequiprefinerycnt(EQI_ACC_L); bonus bNoCastCancel; bonus bCastrate,15; }
+2777:2778:5479,{ bonus bMaxHP,10*BaseLevel; bonus bMaxSP,2*BaseLevel; bonus bNoCastCancel; bonus bVariableCastrate,15; }
2777:2825:5479,{ bonus bMaxHP,BaseLevel*10; bonus bMaxSP,BaseLevel*2; bonus bHealPower,10; }
2779:2780:5482,{ bonus bMatkRate,10; bonus bInt,5; bonus2 bSubRace,RC_Angel,10; }
2779:2780:5577,{ bonus bMatkRate,10; bonus bInt,5; bonus2 bSubRace,RC_Angel,10; }
@@ -365,7 +372,7 @@
2782:19156,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r < 4) { .@a = 4; } else { .@a = min(.@r,10); } bonus3 bAutoSpell,"WZ_WATERBALL",.@a,(.@a*10); }
2826:2827:5577,{ autobonus "{ bonus bAspdRate,2; }",50,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bMaxHP,BaseLevel*15; bonus bMaxSP,(BaseLevel*12)/10; bonus2 bAddClass,Class_All,3; }
28513:18848,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); .@a = min(.@r,10); bonus bAllStats,.@a; bonus bFixedCastrate,-50; if (.@r>=7) { bonus2 bMagicAddClass,Class_Boss,20; } }
-28513:18849,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAllStats,.@r; bonus2 bMagicAddClass,Class_Boss,10; bonus bFixedCastrate,-50; if (.@r>=7) { bonus2 bMagicAddClass,Class_Boss,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; } if (.@r>=9) { bonus2 bMagicAddClass,Class_Boss,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } }
+28513:18849,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAllStats,.@r; bonus2 bMagicAddClass,Class_Boss,10; bonus bFixedCastrate,-50; if (.@r>=7) { bonus2 bMagicAddClass,Class_Boss,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } if (.@r>=9) { bonus2 bMagicAddClass,Class_Boss,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } }
28513:2980,{ bonus bBaseAtk,50; bonus bMatk,50; bonus bAspd,2; bonus3 bAutoSpell,"SO_EARTHGRAVE",1,20; bonus3 bAutoSpell,"SO_VARETYR_SPEAR",1,20; bonus3 bAutoSpell,"WL_RECOGNIZEDSPELL",1,10; bonus3 bAutoSpell,"WZ_QUAGMIRE",3,50; }
28520:15061,{ .@r = getequiprefinerycnt(EQI_ARMOR); if (.@r >= 7) { .@val = 5000; } else { .@val = 2500; } bonus2 bResEff,Eff_Stun,.@val; bonus2 bResEff,Eff_Silence,.@val; }
28520:15061:18728:20700:2495,{ bonus bFlee2,30; bonus2 bSubEle,Ele_Water,15; bonus2 bResEff,Eff_Freeze,10000; }
@@ -373,13 +380,13 @@
28520:20700,{ if (getequiprefinerycnt(EQI_GARMENT)>=7) .@val = 2; else .@val = 1; bonus2 bSubEle,Ele_Fire,25*.@val; bonus2 bSubEle,Ele_Water,25*.@val; }
28520:2495,{ if (getequiprefinerycnt(EQI_SHOES)>=7) .@val = 2; else .@val = 1; bonus bMaxHPrate,10*.@val; bonus bMaxSPrate,10*.@val; }
28520:4525,{ bonus bMdef,15; bonus bFlee,100; bonus bMaxHPrate,15; skill "RG_TUNNELDRIVE",1; bonus bIntravision; }
-28521:1387,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; if (.@r>=7) { bonus2 bAddClass,Class_Boss,5; bonus2 bSkillAtk,"WS_CARTTERMINATION",5; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,10; bonus2 bSkillAtk,"WS_CARTTERMINATION",10; } }
-28521:1490,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; if (.@r>=7) { bonus2 bAddClass,Class_Boss,5; bonus2 bSkillAtk,"LK_SPIRALPIERCE",5; bonus2 bSkillAtk,"RK_SONICWAVE",5; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,10; bonus2 bSkillAtk,"LK_SPIRALPIERCE",10; bonus2 bSkillAtk,"RK_SONICWAVE",10; } }
+28521:1387,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=7) { bonus2 bAddClass,Class_Boss,5; bonus2 bSkillAtk,"WS_CARTTERMINATION",5; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,10; bonus2 bSkillAtk,"WS_CARTTERMINATION",10; } }
+28521:1490,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=7) { bonus2 bAddClass,Class_Boss,5; bonus2 bSkillAtk,"LK_SPIRALPIERCE",5; bonus2 bSkillAtk,"RK_SONICWAVE",5; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,10; bonus2 bSkillAtk,"LK_SPIRALPIERCE",10; bonus2 bSkillAtk,"RK_SONICWAVE",10; } }
28521:18122,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,2*(readparam(bStr)/10); if (.@r>=7) { bonus2 bAddClass,Class_Boss,5; bonus2 bSkillAtk,"RA_ARROWSTORM",5; bonus2 bSkillAtk,"RA_AIMEDBOLT",5; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,10; bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; } }
2855:5360,{ bonus bCritAtkRate,10; if(getequiprefinerycnt(EQI_HEAD_TOP)>5) bonus bCritical,5; }
2913:2710,{ bonus bBaseAtk,10; }
28910:20800,{ bonus bLongAtkDef,-35; }
-28918:2998,{ bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; bonus2 bSubRace,RC_Demihuman,3; bonus2 bSubRace,RC_Player,3; }
+28918:2998,{ bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; bonus2 bSubRace,RC_Demihuman,3; bonus2 bSubRace,RC_Player_Human,3; }
28929:4058,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bExpAddRace,RC_DemiHuman,5; if (.@r>=6) bonus2 bExpAddRace,RC_DemiHuman,5; if (.@r>=8) bonus2 bExpAddRace,RC_DemiHuman,5; }
28929:4066,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bExpAddRace,RC_Brute,5; if (.@r>=6) bonus2 bExpAddRace,RC_Brute,5; if (.@r>=8) bonus2 bExpAddRace,RC_Brute,5; }
28929:4074,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bExpAddRace,RC_Insect,5; if (.@r>=6) bonus2 bExpAddRace,RC_Insect,5; if (.@r>=8) bonus2 bExpAddRace,RC_Insect,5; }
@@ -394,7 +401,7 @@
2913:2408,{ bonus bBaseAtk,getequiprefinerycnt(EQI_SHOES); }
2913:5104,{ bonus bBaseAtk,10; }
2935:2387,{ bonus bMaxHPrate,3; if (getequiprefinerycnt(EQI_ARMOR)>=7) { bonus bMaxSPrate,2; } }
-2935:2387:2440,{ bonus bVariableCastrate,-5; bonus bDelayRate,-5; }
+2935:2387:2440:2744,{ bonus bVariableCastrate,-5; bonus bDelayRate,-5; }
2935:2440,{ bonus bMaxSPrate,3; if (getequiprefinerycnt(EQI_SHOES)>=7) { bonus bMaxHPrate,2; } }
2935:2744,{ bonus bVariableCastrate,-4; bonus bDelayRate,-4; }
2950:15067:20709:22012,{ bonus2 bExpAddRace,RC_All,30; }
@@ -414,7 +421,7 @@
29598:26158,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"WL_HELLINFERNO",7*.@r; bonus2 bSkillAtk,"WL_CRIMSONROCK",5*.@r; }
29599:16095,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"AB_JUDEX",10*.@r; bonus2 bSkillAtk,"AB_DUPLELIGHT",5*.@r; }
29599:2057,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bMagicAtkEle,Ele_Holy,5*.@r; bonus2 bSkillAtk,"AB_ADORAMUS",5*.@r; }
-29599:26161,{ .@r= getequiprefinerycnt(EQI_HAND_R)3; bonus2 bSkillAtk,"PR_MAGNUS",10*.@r; bonus2 bSkillAtk,"AB_JUDEX",5*.@r; }
+29599:26161,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"PR_MAGNUS",10*.@r; bonus2 bSkillAtk,"AB_JUDEX",5*.@r; }
29600:18185,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus bCritAtkRate,5*.@r; bonus2 bSkillAtk,"SN_SHARPSHOOTING",7*.@r; }
29600:18186,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"RA_AIMEDBOLT",7*.@r; bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",2*.@r; }
29600:18187,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillCooldown,"RA_UNLIMIT",-15000*.@r; bonus2 bSkillUseSPrate,"RA_ARROWSTORM",2*.@r; }
@@ -440,17 +447,17 @@
29607:32107,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bMagicAtkEle,Ele_Neutral,5*.@r; bonus2 bSkillAtk,"WM_METALICSOUND",5*.@r; }
29607:32108,{ .@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r; bonus bLongAtkRate,2*.@r; }
2963:15073,{ bonus bAspdRate,5; }
-2963:15074,{ bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
+2963:15074,{ bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
2963:20944,{ bonus bDelayrate,-5; }
-2964:15073,{ bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
+2964:15073,{ bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
2964:15074,{ bonus bVariableCastrate,-5; }
2964:20943,{ bonus bUseSPrate,-5; }
2966:2967:13092,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*10); }
2966:2967:16026,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*5); }
-2966:2967:18821,{ bonus2 bAddClass,Class_All, -(getequiprefinerycnt(EQI_HEAD_TOP)/2); }
+2966:2967:18821,{ bonus2 bAddClass,Class_All,-(getequiprefinerycnt(EQI_HEAD_TOP)/2); }
2966:2968,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; }
2966:2969,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; }
-2966:13092,{ bonus bBaseAtk,10*getequiprefinerycnt( (getequipid(EQI_HAND_R) == 13092) ? EQI_HAND_R : EQI_HAND_L ); }
+2966:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; }
2966:16026,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*5; }
2966:18821,{ bonus2 bAddClass,Class_All,getequiprefinerycnt(EQI_HEAD_TOP)/2; }
2967:2968,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; }
@@ -458,11 +465,11 @@
2967:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; }
2967:16026,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*5; }
2967:18821,{ bonus2 bAddClass,Class_All,getequiprefinerycnt(EQI_HEAD_TOP)/2; }
-2968:2969:13092,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*10); }
-2968:2969:18821,{ bonus bMagicAtkDef, getequiprefinerycnt(EQI_HEAD_TOP)/2; }
-2968:13092,{ bonus bMatk,10*getequiprefinerycnt( (getequipid(EQI_HAND_R) == 13092) ? EQI_HAND_R : EQI_HAND_L ); }
+2968:2969:13092,{ bonus bMatk,-(getequiprefinerycnt(EQI_HAND_R)*10); }
+2968:2969:18821,{ bonus bMatkRate,-(getequiprefinerycnt(EQI_HEAD_TOP)/2); }
+2968:13092,{ bonus bMatk,(getequiprefinerycnt(EQI_HAND_R)*10); }
2968:18821,{ bonus bMatkRate,getequiprefinerycnt(EQI_HEAD_TOP)/2; }
-2969:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; }
+2969:13092,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
2969:18821,{ bonus bMatkRate,getequiprefinerycnt(EQI_HEAD_TOP)/2; }
2977:2978,{ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,10,BF_WEAPON,1; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,10,BF_WEAPON|BF_MAGIC,0; }
2979:18852,{ bonus bMaxHPrate,15; bonus2 bSubEle,Ele_Fire,10; bonus bLongAtkRate,30; }
@@ -473,11 +480,11 @@
2983:4269,{ bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; }
2984:4151,{ bonus2 bSubRace,RC_Plant,-10; bonus2 bExpAddRace,RC_Plant,5; }
2984:4164,{ bonus2 bSubRace,RC_Fish,-10; bonus2 bExpAddRace,RC_Fish,5; }
-2984:4204,{ bonus2 bSubRace,RC_Brute,-10; bonus2 bExpAddRace,RC_Brute,5; }
+2984:4204,{ bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bExpAddRace,RC_Brute,5; }
2984:4221,{ bonus2 bSubRace,RC_Insect,-10; bonus2 bExpAddRace,RC_Insect,5; }
2984:4235,{ bonus2 bSubRace,RC_Angel,-10; bonus2 bExpAddRace,RC_Angel,5; }
2984:4239,{ bonus2 bSubRace,RC_Formless,-10; bonus2 bExpAddRace,RC_Formless,5; }
-2984:4245,{ bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus2 bExpAddRace,RC_DemiHuman,5; }
+2984:4245,{ bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bExpAddRace,RC_DemiHuman,5; }
2984:4249,{ bonus2 bSubRace,RC_Demon,-10; bonus2 bExpAddRace,RC_Demon,5; }
2984:4267,{ bonus2 bSubRace,RC_Dragon,-10; bonus2 bExpAddRace,RC_Dragon,5; }
2984:4275,{ bonus2 bSubRace,RC_Undead,-10; bonus2 bExpAddRace,RC_Undead,5; }
@@ -533,11 +540,11 @@
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; }
-4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; } }
+4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; bonus2 bComaRace,RC_Player_Doram,100; } }
4178:4234:4252:4297:4381,{ bonus bDex,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",5; bonus2 bSkillAtk,"DC_THROWARROW",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; if(BaseJob==Job_Bard||BaseJob==Job_Dancer) bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",2,50; }
4185:4217:4280:4293:4312,{ bonus bVit,10; bonus bVariableCastrate,-10; bonus bUseSPRate,-10; if(BaseClass==Job_Acolyte) { bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,30; bonus2 bSubRace,RC_Demon,30; } }
4185:4293:4312:4332,{ bonus bStr,3; bonus bMaxSP,80; bonus bBaseAtk,25; bonus3 bAutoSpell,"AL_CRUCIS",5,10; bonus2 bSkillAtk,"MO_EXTREMITYFIST",10; if(BaseJob==Job_Monk) { bonus bUseSPrate,-10; bonus bNoCastCancel; } }
@@ -551,7 +558,7 @@
4220:4246:4311:4319:4331,{ bonus bStr,10; bonus bMaxHPrate,20; bonus bHPrecovRate,50; bonus3 bAutoSpell,"BS_WEAPONPERFECT",1,3; bonus2 bAddMonsterDropItem,501,500; if(BaseClass==Job_Swordman) bonus2 bAddItemGroupHealRate,IG_Potion,50; }
4020:27328,{ bonus bBaseAtk,15; bonus2 bAddEle,Ele_Dark,20; }
4023:27328,{ bonus bInt,3; bonus bMaxSP,100; bonus bMatkRate,5; }
-4066:27328,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; }
+4066:27328,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; }
4067:27328,{ bonus bDef,100; }
4071:27328,{ bonus bHit,15; bonus bFlee,15; bonus bCritAtkRate,15; }
4077:27328,{ bonus bVariableCastrate,-25; }
@@ -567,7 +574,7 @@
4305:27119,{ bonus2 bSubSize,Size_All,5; bonus bHit,25; bonus2 bAddSize,Size_All,20; }
4311:4319:4331:4371,{ bonus bInt,1; bonus bStr,1; bonus bDef,2; bonus bSPrecovRate,10; bonus2 bSkillAtk,"PA_SHIELDCHAIN",10; bonus2 bSkillAtk,"PA_SACRIFICE",10; bonus bVariableCastrate,-10; if(BaseJob==Job_Crusader) bonus bDefEle,Ele_Holy; }
4323:4324,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,250; }
-4435:4436,{ bonus2 bSPGainRace,RC_DemiHuman,2; bonus2 bSPGainRace,RC_Player,2; }
+4435:4436,{ bonus2 bSPGainRace,RC_DemiHuman,2; bonus2 bSPGainRace,RC_Player_Human,2; }
4335:19156,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r < 4) { .@a = 4; } else { .@a = min(.@r,10); } bonus3 bAutoSpell,"WZ_EARTHSPIKE",.@a,(.@a*10); bonus3 bAutoSpell,"WZ_HEAVENDRIVE",.@a,(.@a*10); }
4345:19156,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r < 4) { .@a = 4; } else { .@a = min(.@r,10); } bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",.@a,(.@a*10); bonus3 bAutoSpell,"MG_THUNDERSTORM",.@a,(.@a*10); }
4350:19156,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r < 4) { .@a = 4; } else { .@a = min(.@r,10); } bonus3 bAutoSpell,"MG_COLDBOLT",.@a,(.@a*10); bonus3 bAutoSpell,"WZ_FROSTNOVA",.@a,(.@a*10); }
@@ -583,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; }
@@ -593,36 +600,144 @@
4643:4646,{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }
4644:4646,{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }
4645:4646,{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }
-4653:4654,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Undead,5; bonus2 bIgnoreMdefRaceRate,RC_Brute,50; bonus2 bIgnoreMdefRaceRate,RC_Undead,50; }
-4653:4655,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Undead,5; bonus2 bIgnoreDefRaceRate,RC_Brute,50; bonus2 bIgnoreDefRaceRate,RC_Undead,50; }
+4653:4654,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Undead,5; bonus2 bIgnoreMdefRaceRate,RC_Brute,50; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,50; bonus2 bIgnoreMdefRaceRate,RC_Undead,50; }
+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; } }
-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; } }
-4967:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAspdRate,1 + ( .@r > 9 ) ? 1 : 0; } }
-4968:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2 + ( .@r > 9 ) ? 2 : 0; } } }
-4969:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],2 + ( .@r > 9 ) ? 2 : 0; } /* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */ } }
+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 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; } }
+4967:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAspdRate,1 + ( .@r >= 9 ) ? 1 : 0; } }
+4968:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2 + ( .@r >= 9 ) ? 2 : 0; } } }
+4969:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],2 + ( .@r >= 9 ) ? 2 : 0; } /* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */ } }
+470016:480012:490014:450018,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; if (.@r>=27) { bonus bMaxHPrate,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; } }
+470016:480012:490014:450019,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; if (.@r>=27) { bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; } }
+470016:480012:490014:450020,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; } }
+470016:480012:490014:450022,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus bCritAtkRate,5; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; if (.@r>=27) { bonus bDelayrate,-5; bonus bCritAtkRate,5; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; } }
+470016:480012:490014:450023,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; } }
+470016:480012:490014:450024,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; } }
+470016:480012:490014:450027,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"AB_DUPLELIGHT",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"AB_DUPLELIGHT",10; } }
+470016:480012:490014:450028,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bDelayrate,-5; bonus2 bSkillAtk,"NC_AXETORNADO",10; if (.@r>=27) { bonus bAspd,1; bonus bDelayrate,-5; bonus2 bSkillAtk,"NC_AXETORNADO",10; } }
+470016:480012:490014:450029,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",10; } }
+470016:480012:490014:450030,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CARTCANNON",10; if (.@r>=27) { bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CARTCANNON",10; } }
+470016:480012:490014:450031,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CART_TORNADO",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } }
+470016:480012:490014:450032,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; } }
+470016:480012:490014:450033,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470016:480012:490014:450034,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SC_FATALMENACE",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SC_FATALMENACE",10; } }
+470016:480012:490014:450036,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SU_PICKYPECK",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SU_PICKYPECK",10; } }
+470016:480012:490014:450038,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_R_TRIP",10; if (.@r>=27) { bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_R_TRIP",10; } }
+470016:480012:490014:450039,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_FIRE_RAIN",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_FIRE_RAIN",10; } }
+470016:480012:490014:450044,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_SOLARBURST",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_SOLARBURST",10; } }
+470016:480012:490014:450045,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; if (.@r>=27) { bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; } }
+470016:480012:490014:450047,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",10; if (.@r>=27) { bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"KO_HAPPOKUNAI",10; } }
+470016:480012:490014:450050,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; } }
+470016:480012:490014:450051,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_TIGERCANNON",10; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_TIGERCANNON",10; } }
+470016:480012:490014:450121,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470017:480014:490015:450021,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMatk,25; bonus bDelayrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; if (.@r>=27) { bonus bMatk,25; bonus bDelayrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; } }
+470017:480014:490015:450025,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WM_REVERBERATION",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WM_REVERBERATION",10; } }
+470017:480014:490015:450026,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"AB_ADORAMUS",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"AB_ADORAMUS",10; } }
+470017:480014:490015:450035,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bMatkRate,2; bonus2 bSkillAtk,"WZ_METEOR",20; if (.@r>=27) { bonus bAspd,1; bonus bMatkRate,3; bonus2 bSkillAtk,"WZ_METEOR",20; } }
+470017:480014:490015:450037,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SU_CN_METEOR",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SU_CN_METEOR",10; } }
+470017:480014:490015:450040,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; } }
+470017:480014:490015:450041,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_JACKFROST",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_JACKFROST",10; } }
+470017:480014:490015:450042,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; } }
+470017:480014:490015:450043,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; } }
+470017:480014:490015:450046,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HUUJIN",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HUUJIN",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; } }
+470017:480014:490015:450048,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_SWHOO",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_SWHOO",10; } }
+470017:480014:490015:450049,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; } }
+470017:480014:490015:450122,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bMatkRate,2; bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,50,BF_SHORT,1; if (.@r>=27) { bonus bMaxHPrate,5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5; } }
+470018:480016:490017:450052,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; if (.@r>=27) { bonus bMaxHPrate,10; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; } }
+470018:480016:490017:450053,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; if (.@r>=27) { bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; } }
+470018:480016:490017:450054,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } }
+470018:480016:490017:450056,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus bCritAtkRate,5; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; if (.@r>=27) { bonus bDelayrate,-10; bonus bCritAtkRate,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; } }
+470018:480016:490017:450057,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; } }
+470018:480016:490017:450058,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } }
+470018:480016:490017:450061,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"AB_DUPLELIGHT",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"AB_DUPLELIGHT",15; } }
+470018:480016:490017:450062,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; } }
+470018:480016:490017:450063,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_TIGERCANNON",10; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_TIGERCANNON",15; } }
+470018:480016:490017:450064,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bDelayrate,-5; bonus2 bSkillAtk,"NC_AXETORNADO",10; if (.@r>=27) { bonus bAspd,1; bonus bDelayrate,-10; bonus2 bSkillAtk,"NC_AXETORNADO",15; } }
+470018:480016:490017:450065,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",15; } }
+470018:480016:490017:450066,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CARTCANNON",10; if (.@r>=27) { bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CARTCANNON",15; } }
+470018:480016:490017:450067,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CART_TORNADO",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CART_TORNADO",15; } }
+470018:480016:490017:450068,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } }
+470018:480016:490017:450069,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470018:480016:490017:450070,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SC_FATALMENACE",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SC_FATALMENACE",15; } }
+470018:480016:490017:450072,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SU_PICKYPECK",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SU_PICKYPECK",15; } }
+470018:480016:490017:450074,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_R_TRIP",10; if (.@r>=27) { bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_R_TRIP",15; } }
+470018:480016:490017:450075,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_FIRE_RAIN",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_FIRE_RAIN",15; } }
+470018:480016:490017:450080,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_SOLARBURST",10; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_SOLARBURST",15; } }
+470018:480016:490017:450081,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; if (.@r>=27) { bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; } }
+470018:480016:490017:450083,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",10; if (.@r>=27) { bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"KO_HAPPOKUNAI",15; } }
+470018:480016:490017:450123,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470019:480017:490018:450055,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMatk,25; bonus bDelayrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; if (.@r>=27) { bonus bMatk,25; bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } }
+470019:480017:490018:450059,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WM_REVERBERATION",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WM_REVERBERATION",15; } }
+470019:480017:490018:450060,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"AB_ADORAMUS",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"AB_ADORAMUS",15; } }
+470019:480017:490018:450071,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bMatkRate,2; bonus2 bSkillAtk,"WZ_METEOR",25; if (.@r>=27) { bonus bAspd,1; bonus bMatkRate,3; bonus2 bSkillAtk,"WZ_METEOR",25; } }
+470019:480017:490018:450073,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SU_CN_METEOR",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SU_CN_METEOR",15; } }
+470019:480017:490018:450076,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } }
+470019:480017:490018:450077,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_JACKFROST",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_JACKFROST",15; } }
+470019:480017:490018:450078,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; } }
+470019:480017:490018:450079,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; } }
+470019:480017:490018:450082,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HUUJIN",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; } }
+470019:480017:490018:450084,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_SWHOO",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_SWHOO",15; } }
+470019:480017:490018:450085,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; } }
+470019:480017:490018:450124,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bMatkRate,2; bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,70,BF_SHORT,1; if (.@r>=27) { bonus bMaxHPrate,5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",7; } }
+470020:480018:490019:450086,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,10; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if (.@r>=27) { bonus bMaxHPrate,10; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; } }
+470020:480018:490019:450087,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; if (.@r>=27) { bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; } }
+470020:480018:490019:450088,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } }
+470020:480018:490019:450090,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus bCritAtkRate,5; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; if (.@r>=27) { bonus bDelayrate,-10; bonus bCritAtkRate,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; } }
+470020:480018:490019:450091,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; } }
+470020:480018:490019:450092,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if (.@r>=27) { bonus bDelayrate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } }
+470020:480018:490019:450095,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"AB_DUPLELIGHT",15; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"AB_DUPLELIGHT",15; } }
+470020:480018:490019:450096,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; } }
+470020:480018:490019:450097,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SR_TIGERCANNON",15; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SR_TIGERCANNON",15; } }
+470020:480018:490019:450098,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bDelayrate,-10; bonus2 bSkillAtk,"NC_AXETORNADO",15; if (.@r>=27) { bonus bAspd,1; bonus bDelayrate,-10; bonus2 bSkillAtk,"NC_AXETORNADO",15; } }
+470020:480018:490019:450099,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",15; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NC_VULCANARM",15; } }
+470020:480018:490019:450100,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CARTCANNON",15; if (.@r>=27) { bonus bVariableCastRate,-5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CARTCANNON",15; } }
+470020:480018:490019:450101,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GN_CART_TORNADO",15; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GN_CART_TORNADO",15; } }
+470020:480018:490019:450102,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } }
+470020:480018:490019:450103,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470020:480018:490019:450104,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SC_FATALMENACE",10; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SC_FATALMENACE",15; } }
+470020:480018:490019:450106,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SU_PICKYPECK",15; if (.@r>=27) { bonus bDelayrate,-10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SU_PICKYPECK",15; } }
+470020:480018:490019:450108,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r>=27) { bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_R_TRIP",15; } }
+470020:480018:490019:450109,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"RL_FIRE_RAIN",15; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"RL_FIRE_RAIN",15; } }
+470020:480018:490019:450114,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_SOLARBURST",15; if (.@r>=27) { bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_SOLARBURST",15; } }
+470020:480018:490019:450115,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; if (.@r>=27) { bonus2 bAddSize,Size_All,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; } }
+470020:480018:490019:450117,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",15; if (.@r>=27) { bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,3; bonus2 bSkillAtk,"KO_HAPPOKUNAI",15; } }
+470020:480018:490019:450125,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,2; bonus bCritAtkRate,5; if (.@r>=27) { bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,3; bonus bCritAtkRate,5; } }
+470021:480019:490020:450089,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMatk,25; bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; if (.@r>=27) { bonus bMatk,25; bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } }
+470021:480019:490020:450093,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WM_REVERBERATION",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WM_REVERBERATION",15; } }
+470021:480019:490020:450094,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"AB_ADORAMUS",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"AB_ADORAMUS",15; } }
+470021:480019:490020:450105,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bMatkRate,2; bonus2 bSkillAtk,"WZ_METEOR",30; if (.@r>=27) { bonus bAspd,1; bonus bMatkRate,3; bonus2 bSkillAtk,"WZ_METEOR",30; } }
+470021:480019:490020:450107,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SU_CN_METEOR",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SU_CN_METEOR",15; } }
+470021:480019:490020:450110,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } }
+470021:480019:490020:450111,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"WL_JACKFROST",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"WL_JACKFROST",15; } }
+470021:480019:490020:450112,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; } }
+470021:480019:490020:450113,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; } }
+470021:480019:490020:450116,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; } }
+470021:480019:490020:450118,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_SWHOO",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_SWHOO",15; } }
+470021:480019:490020:450119,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; } }
+470021:480019:490020:450126,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bMatkRate,2; bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,70,BF_SHORT,1; if (.@r>=27) { bonus bMaxHPrate,5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; } }
5040:5442,{ bonus bAspdRate,3; bonus bVariableCastrate,3; }
5040:18672,{ bonus bSPrecovRate,3; }
5040:18673,{ bonus bHealPower,10; }
@@ -630,7 +745,7 @@
5043:18656,{ bonus bFlee,10; bonus2 bAddEff,Eff_Stun,1000; }
5048:18538,{ bonus2 bSubRace,RC_Demon,9; }
5068:5653,{ bonus bStr,1; bonus2 bAddClass,Class_All,5; }
-5070:18576,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillAtk,"CH_TIGERFIST",3; bonus2 bSkillAtk,"CH_CHAINCRUSH",3; if( getequiprefinerycnt(EQI_HEAD_TOP) < 10 ) bonus bUseSPrate, getequiprefinerycnt(EQI_HEAD_TOP); }
+5070:18576,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillAtk,"CH_TIGERFIST",3; bonus2 bSkillAtk,"CH_CHAINCRUSH",3; .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSkillUseSPrate,"CH_TIGERFIST",-10+min(10,.@r); bonus2 bSkillUseSPrate,"CH_CHAINCRUSH",-10+min(10,.@r); }
5073:5574,{ bonus bDex,2; bonus bDef,2; }
5074:5653,{ bonus bStr,1; bonus bAspdRate,2; }
5074:18827,{ autobonus "{ bonus2 bHPLossRate,30,1000; bonus bHit,-10; bonus bSplashRange,1; }",10+getequiprefinerycnt(EQI_HEAD_TOP),5000,BF_WEAPON,"{ transform 1765,5000; }"; }
@@ -651,17 +766,70 @@
5498:5521,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if(.@r>=7) bonus bCritAtkRate,10; if(.@r>=9) bonus bAspd,1; }
5548:5766,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bBaseAtk,min(.@r,10); bonus bMatk,min(.@r,10); }
5917:1525,{ bonus bLongAtkDef,10; }
-5920:18542,{ bonus bHealPower,2*getequiprefinerycnt(EQI_HEAD_TOP); }
+5920:18542,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bHealPower,3*(.@r/2); }
5933:19112,{ bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,1; if(readparam(bStr)>=108) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,1; } if(readparam(bStr)>=120) { bonus2 bAddSize,Size_All,3; bonus bLongAtkRate,1; } }
+5965:28370,{ bonus bDelayrate,-15; }
+5965:28371,{ bonus bVariableCastrate,-20; }
+5965:29166,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSubRace,RC_DemiHuman,.@r; bonus2 bSubRace,RC_Formless,.@r; }
+5965:29167,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bHit,(.@r/3)*5; }
+5965:29168,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bFlee,(.@r/3)*5; }
+5965:29169,{ bonus bMdef,20; }
+5965:29170,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29171,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29172,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29173,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29174,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29175,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bAspdRate,(.@r/2); }
+5965:29438,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29439,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29440,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29441,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29442,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29443,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:29444,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxHPrate,(.@r/2); }
+5965:32203,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,10; bonus2 bMagicAddClass,Class_All,10; bonus2 bIgnoreDefRaceRate,RC_All,30; bonus2 bIgnoreMdefRaceRate,RC_All,30; }
+5965:4970,{ bonus2 bAddEle,Ele_Fire,10; }
+5965:4971,{ bonus2 bAddEle,Ele_Water,10; }
+5965:4972,{ bonus2 bAddEle,Ele_Earth,10; }
+5965:4973,{ bonus2 bAddEle,Ele_Wind,10; }
+5965:4974,{ bonus2 bSubEle,Ele_Fire,25; }
+5965:4975,{ bonus2 bSubEle,Ele_Water,25; }
+5965:4976,{ bonus2 bSubEle,Ele_Earth,25; }
+5965:4977,{ bonus2 bSubEle,Ele_Wind,25; }
+5965:4978,{ bonus2 bHPRegenRate,1500,5000; }
+5965:4979,{ bonus2 bSPRegenRate,25,5000; }
+5965:4980,{ bonus bHPrecovRate,350; }
+5965:4981,{ bonus bSPrecovRate,50; }
+5965:4982,{ bonus2 bAddClass,Class_All,3; }
+5965:4983,{ bonus2 bMagicAddClass,Class_All,3; }
+5965:4984,{ bonus bDef,500; }
+5965:4985,{ bonus bFlee2,2; }
+5965:4986,{ bonus bBaseAtk,15; }
+5965:4987,{ bonus bMatk,15; }
+5965:4988,{ bonus bMaxHP,7500; }
+5965:4989,{ bonus bMaxSP,150; }
+5965:4990,{ bonus bMaxHP,1000; }
+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), 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_demi = 2; .@luk = readparam(bLuk); if (.@luk > 107) { .@aspd += 1; .@crit_dmg += 2; .@sub_demi += 2; } if (.@luk > 119) { .@aspd += 2; .@crit_dmg += 4; .@sub_demi += 4; bonus bSplashRange,1; } bonus bAspd,.@aspd; bonus bCritAtkRate,.@crit_dmg; bonus2 bSubRace,RC_DemiHuman,.@sub_demi; bonus2 bSubSkill,"NPC_CRITICALSLASH",100; }
+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; }
+1298:4317,{ bonus bCritAtkRate,5; }
+1298:4521,{ bonus bCritAtkRate,5; }
13027:15044,{ .@r = max(getequiprefinerycnt(EQI_ARMOR),1); bonus3 bAddMonsterDropItem,929,RC_DemiHuman,70*.@r; bonus3 bAddMonsterDropItem,970,RC_DemiHuman,50*.@r; bonus3 bAddMonsterDropItem,929,RC_Brute,70*.@r; bonus3 bAddMonsterDropItem,970,RC_Brute,50*.@r; }
13034:13035,{ bonus bMaxSP,20; bonus bMaxHPRate,5; bonus bHit,10; bonus2 bAddSize,Size_Large,30; autobonus "{ bonus bAspdRate,100; }",1,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; }
+13081:4153,{ bonus2 bAddEle,Ele_Water,8; }
+13081:4153:4247:4273,{ bonus2 bAddEle,Ele_Water,16; }
+13081:4247,{ bonus2 bAddEle,Ele_Water,8; }
+13081:4273,{ bonus2 bAddEle,Ele_Water,8; }
13215:28224,{ bonus bLongAtkRate,30; }
13332:15178:20821,{ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; bonus bLongAtkRate,15; }
13337:19210,{ bonus bVariableCastrate,-15; .@eq = getequiprefinerycnt(EQI_HEAD_TOP); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { .@val = 25; } if ((.@eq + .@weapon) >= 18) { .@val += 25; if ((.@eq + .@weapon) >= 22) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } } if (.@val) { bonus2 bSkillAtk,"KO_HUUMARANKA",.@val; } }
13338:19210,{ bonus bBaseAtk,50; .@eq = getequiprefinerycnt(EQI_HEAD_TOP); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { .@val = 30; } if ((.@eq + .@weapon) >= 18) { bonus bLongAtkRate,10; if ((.@eq + .@weapon) >= 22) { .@val += 20; } } if (.@val) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",.@val; } }
+13428:2353,{ bonus bMaxSP,50; bonus2 bSkillAtk,"KN_BOWLINGBASH",5; }
+13428:5690,{ bonus bHit,10; bonus2 bAddRace,RC_DemiHuman,4; }
13469:20840,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); .@val = 100; if (.@weapon >= 7 && .@eq >= 7) { .@val += 50; } bonus bMatk,.@val; if ((.@weapon + .@eq) >= 18) { bonus3 bAutoSpell,"MG_COLDBOLT",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,50; /* fix me: unknown skill lvl/rates */ } if ((.@weapon + .@eq) >= 22) { autobonus "{ bonus2 bSkillAtk,\"WZ_STORMGUST\",30; bonus2 bSkillAtk,\"WZ_METEOR\",30; bonus2 bSkillAtk,\"WZ_VERMILION\",30; bonus2 bSkillAtk,\"WZ_HEAVENDRIVE\",30; }",20,10000; /* fix me: unknown rate/specialeffect (if any) */ } }
15041:18659,{ bonus bInt,3; bonus bStr,3; bonus bMdef,10; bonus bDefEle,Ele_Fire; bonus2 bAddEle,Ele_Earth,10; }
15068:20710,{ bonus bAgi,5; bonus bFlee,10; }
@@ -688,44 +856,56 @@
15138:19026:20756:22059,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bExpAddRace,RC_Fish,20; bonus2 bMagicAddRace,RC_Fish,50; bonus2 bSubEle,Ele_Water,50; }
15145:18652,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); 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; } }
15145:2554,{ bonus2 bSPDrainRate,-10,1; }
-15145:5208,{ .@i = (getequiprefinerycnt(EQI_HEAD_TOP)>8)?2:1; bonus2 bHPDrainRate,-50,8*.@i; bonus2 bSPDrainRate,-10,4*.@i; }
+15145:5208,{ bonus2 bHPDrainRate,-50,8; bonus2 bSPDrainRate,-10,4; }
15156:20790:22085,{ bonus bMaxHP,4000; bonus bNoCastCancel; bonus bFixedCastrate,-25-(getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)); }
15156:20790:22085:28382:28418,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bSkillAtk,"SU_CN_METEOR",200; }
15156:20790:22085:28380:28421,{ bonus bMaxHPrate,30; bonus bMaxSPrate,9; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",200; }
15156:20790:22085:28381:28415,{ bonus bMaxHPrate,25; bonus bMaxSPrate,15; bonus bHealPower,30; skill "AL_HEAL",9,1; }
15166:1647,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bHealPower,4*.@r; }
15166:5968,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bFlee2,.@r; bonus bHealPower,2*.@r; }
-15169:1649,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@b = getequiprefinerycnt(EQI_ARMOR); bonus bMatk,(3*.@r); if(.@b >=7) { bonus bMatk,(5*.@r); } if(.@b >=8) { bonus bMatk,(7*.@r); } }
+15169:1649,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@b = getequiprefinerycnt(EQI_ARMOR); bonus bMatk,(.@r*(.@b >=8 ? 7 : (.@b >=7 ? 5 : 3 ))); }
15169:4054,{ if(getequiprefinerycnt(EQI_ARMOR) >=9) { bonus2 bResEff,Eff_Freeze,10000; } }
15176:18145:28441,{ bonus2 bSkillAtk,"AC_DOUBLE",50; bonus2 bSkillUseSP,"SC_TRIANGLESHOT",10; }
15177:20820:28608,{ bonus5 bAutoSpell,"MG_FIREBALL",max(5,getskilllv("MG_FIREBALL")),50,BF_MAGIC,1; autobonus3 "{ bonus bMatk,50; }",1000,60000,"PF_DOUBLECASTING","{ specialeffect2 EF_ENCHANCE; }"; }
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; } }
15212:20856,{ bonus bDelayrate,-getequiprefinerycnt(EQI_GARMENT); }
15212:20856:22141,{ if ((getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)) >= 39) { autobonus "{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; }",50,5000; } }
+15278:22006,{ bonus2 bAddClass,Class_All,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15278:22113,{ bonus2 bAddClass,Class_All,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15279:22009,{ bonus bMatkRate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreMdefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; } }
+15279:22114,{ bonus bMatkRate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreMdefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; } }
+15346:22011,{ bonus bCritAtkRate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15346:22118,{ bonus bCritAtkRate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15347:22007,{ bonus bMaxHPrate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15347:22116,{ bonus bMaxHPrate,10; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } } }
+15353:22010,{ bonus bAspd,1; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15353:22115,{ bonus bAspd,1; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15354:22008,{ bonus bLongAtkRate,5; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
+15354:22117,{ bonus bLongAtkRate,5; .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_SHOES); if (.@r>=21) { bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreDefRaceRate,RC_Demon,20; } }
15348:19366:20923:22192,{ bonus bVit,5; bonus bMaxSPrate,5; bonus bDef,5; bonus bMdef,15; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Wind,10; .@hp = 15; .@r[0] = getequiprefinerycnt(EQI_ARMOR); .@r[1] = getequiprefinerycnt(EQI_HEAD_TOP); .@r[2] = getequiprefinerycnt(EQI_GARMENT); .@r[3] = getequiprefinerycnt(EQI_SHOES); .@sum = .@r[0]+.@r[1]+.@r[2]+.@r[3]; if (.@r[0] >= 7 && .@r[1] >= 7 && .@r[2] >= 7 && .@r[3] >= 7) { .@hp += 10; } bonus bMaxHPrate,.@hp; if (.@sum >= 36) { bonus bFixedCast,-700; if (.@sum >= 40) { bonus bDelayrate,-20; } } }
15376:22196,{ bonus2 bAddClass,Class_All,5; }
15376:22197,{ bonus bMaxSPRate,5; }
@@ -737,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; }
@@ -750,26 +939,26 @@
18140:1755:19048,{ bonus bLongAtkRate,20; bonus3 bAutoSpell,"NJ_HUUJIN",5,(readparam(bInt)>39) ? -300 : -100; if (getequiprefinerycnt(EQI_HAND_R) >= 10) bonus bAspd,1; }
18140:19019,{ bonus bLongAtkRate,45; }
18149:19210,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_HEAD_TOP); bonus bLongAtkRate,5; if (.@weapon >= 7 && .@eq >= 7) { .@val = 20; } if ((.@weapon + .@eq) >= 18) { bonus2 bAddClass,Class_All,10; } if ((.@weapon + .@eq) >= 22) { .@val += 30; } if (.@val) { bonus2 bSkillAtk,"RA_ARROWSTORM",.@val; } }
-18174:22190,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_SHOES); bonus2 bAddClass,Class_All,10; if (.@weapon >= 7 && .@eq >= 7) { bonus bAspd,2; } if ((.@weapon + .@eq) >= 18) { bonus bCritAtkRate,10; } if ((.@weapon + .@eq) >= 22) { autobonus "{ bonus bBaseAtk,100; bonus bCritAtkRate,15; bonus2 bAddRace,RC_Insect,50; bonus2 bAddRace,RC_Brute,50; }",20,10000,BF_LONG|BF_WEAPON|BF_NORMAL; /* fix me: unknown rates */ } }
+18174:22190,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_SHOES); bonus2 bAddClass,Class_All,10; if (.@weapon >= 7 && .@eq >= 7) { bonus bAspd,2; } if ((.@weapon + .@eq) >= 18) { bonus bCritAtkRate,10; } if ((.@weapon + .@eq) >= 22) { autobonus "{ bonus bBaseAtk,100; bonus bCritAtkRate,15; bonus2 bAddRace,RC_Insect,50; bonus2 bAddRace,RC_Brute,50; bonus2 bAddRace,RC_Player_Doram,50; }",20,10000,BF_LONG|BF_WEAPON|BF_NORMAL; /* fix me: unknown rates */ } }
18507:18539,{ bonus bUseSPrate,-3; }
18559:18560,{ bonus bCritAtkRate,5; }
18563:18564,{ bonus bFixedCastrate,-10; }
18652:32227,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r>=6) { bonus bDelayrate,-5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5; bonus2 bIgnoreDefClassRate,Class_All,25; } if (.@r>=8) { bonus bDelayrate,-10; bonus bAspdRate,10; bonus2 bAddClass,Class_All,5; bonus2 bIgnoreDefClassRate,Class_All,25; } }
18776:20710,{ bonus bBaseAtk,10; }
18776:22015,{ bonus bMatk,20; }
-18823:19246,{ .@atk = 40; .@aspd = 3; .@dmg = 2; .@agi = readparam(bAgi); if (.@agi > 107) { .@atk += 60; .@aspd += 5; .@dmg += 2; } if (.@agi > 119) { .@atk += 80; .@aspd += 7; .@dmg += 4; } bonus bBaseAtk,.@atk; bonus bAspdRate,.@aspd; bonus2 bSubRace,RC_Player,.@dmg; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Silence,10000; }
-18823:28372,{ bonus2 bSkillVariableCast,"CR_GRANDCROSS",-1500; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/30 + BaseLevel; bonus2 bSkillUseSP,"LG_RAYOFGENESIS",-10; }
-18823:28551,{ bonus2 bSkillDelay,"LG_OVERBRAND",-2000; bonus bLongAtkRate,getskilllv("LG_CANNONSPEAR") * 2; bonus bLongAtkRate,getskilllv("LG_OVERBRAND") * 2; bonus2 bSkillAtk,"LG_CANNONSPEAR",30; bonus2 bSkillAtk,"LG_OVERBRAND",20; }
-18849:32237,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bFixedCast,-300; if (.@r > 0) { bonus bMatk,(10*.@r); if (.@r >= 7) { bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player,10; bonus2 bMagicAddRace,RC_Demon,10; if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r >= 11) { bonus2 bMagicAddClass,Class_Boss,20; } } } } }
+18823:19246,{ .@atk = 40; .@aspd = 3; .@dmg = 2; .@agi = readparam(bAgi); if (.@agi > 107) { .@atk += 60; .@aspd += 5; .@dmg += 2; } if (.@agi > 119) { .@atk += 80; .@aspd += 7; .@dmg += 4; } bonus bBaseAtk,.@atk; bonus bAspdRate,.@aspd; bonus2 bSubRace,RC_Player_Human,.@dmg; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Silence,10000; }
+18823:28372,{ bonus2 bSkillVariableCast,"CR_GRANDCROSS",-2000; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/30; bonus2 bSkillUseSP,"LG_RAYOFGENESIS",-10; bonus2 bSkillAtk,"CR_GRANDCROSS",BaseLevel; }
+18823:28551,{ bonus bLongAtkRate,getskilllv("LG_CANNONSPEAR")*2; bonus bLongAtkRate,getskilllv("LG_OVERBRAND")*2; bonus2 bSkillAtk,"LG_CANNONSPEAR",30; bonus2 bSkillAtk,"LG_OVERBRAND",20; }
+18849:32237,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bFixedCast,-300; if (.@r > 0) { bonus bMatk,(10*.@r); if (.@r >= 7) { bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Demon,10; if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r >= 11) { bonus2 bMagicAddClass,Class_Boss,20; } } } } }
18867:1720,{ bonus bLongAtkRate,3+(getequiprefinerycnt(EQI_HAND_R) > 6 ? 5:0); }
-18868:28320,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; }
+18868:28320,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; }
18933:19082,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",(5*.@r); }
18933:2268,{ bonus bDelayrate,-5; }
18933:4229,{ bonus bVariableCastrate,-10; }
18937:28302,{ bonus bInt,8; bonus bMaxSPrate,5;}
-18937:28303,{ bonus bInt,8; bonus bBaseAtk,20;}
-18937:28304,{ bonus bInt,8; bonus bFlee,15;}
-18937:28305,{ bonus bInt,8; bonus bHit,10;}
+18937:28303,{ bonus bStr,7; bonus bBaseAtk,20;}
+18937:28304,{ bonus bAgi,7; bonus bFlee,15;}
+18937:28305,{ bonus bDex,7; bonus bHit,10;}
18937:28352,{ bonus bMaxSPrate,5; if (BaseLevel>=20) { bonus bInt,(BaseLevel/20); } }
18937:28353,{ bonus bMaxHPrate,5; if (BaseLevel>=20) { bonus bStr,(BaseLevel/20); } }
18937:28357,{ bonus bAspdRate,5; if (BaseLevel>=20) { bonus bAgi,(BaseLevel/20); } }
@@ -778,7 +967,7 @@
18985:28321:28322,{ bonus2 bSkillAtk,"HT_BLITZBEAT",200; }
18985:28322,{ bonus2 bSkillAtk,"SN_FALCONASSAULT",50; }
18997:28326:28327,{ bonus bSpeedRate,10; bonus bBaseAtk,50; bonus bMatk,50; if(getequiprefinerycnt(EQI_HEAD_TOP)>=9){ bonus bMaxHPrate,10; bonus bMaxSPrate,50; } }
-19024:19381,{ bonus bMdef,5; bonus bDef,50; bonus bAspdRate,5; bonus bVit,5; bonus2 bSubRace,RC_Player,3; if (readparam(bVit)>=108) { bonus bMdef,5; bonus bDef,50; bonus bAspdRate,5; bonus bVit,5; } if (readparam(bVit)>=120) { bonus bMdef,10; bonus bDef,100; bonus bVit,10; } }
+19024:19381,{ bonus bMdef,5; bonus bDef,50; bonus bAspdRate,5; bonus bVit,5; bonus2 bSubRace,RC_Player_Human,3; if (readparam(bVit)>=108) { bonus bMdef,5; bonus bDef,50; bonus bAspdRate,5; bonus bVit,5; } if (readparam(bVit)>=120) { bonus bMdef,10; bonus bDef,100; bonus bVit,10; } }
19026:20756,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSPGainRace,RC_Fish,10; bonus3 bAddMonsterDropItem,544,RC_Fish,(5+.@r); bonus3 bAddMonsterDropItem,551,RC_Fish,(5+.@r); bonus2 bAddItemHealRate,544,5*(1+.@r); bonus2 bAddItemHealRate,551,5*(1+.@r); }
19026:22059,{ bonus2 bCriticalAddRace,RC_Fish,(10+getequiprefinerycnt(EQI_SHOES)); }
19038:19039,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP)+getequiprefinerycnt(EQI_HEAD_MID); if((.@r==7)||(.@r==8)){ bonus bCritical,12; bonus bHit,12; } if(.@r>=9){ bonus bMaxHP,1200; bonus bMaxSP,120; } }
@@ -787,10 +976,10 @@
19114:5548,{ bonus2 bSubSize,Size_All,5; }
19117:22101,{ bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; if(getequiprefinerycnt(EQI_SHOES) >= 12) { bonus bFixedCast,-400; } }
19118:22101,{ bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; if(getequiprefinerycnt(EQI_SHOES) >= 12) { bonus bFixedCast,-400; } }
-19138:19327,{ .@cast = -(readparam(bInt)/8); .@sub = 2; .@heal = 5; if (.@i >= 120) { .@cast -= 10; .@sub += 6; .@heal += 25; } else if (.@i >= 108) { .@cast -= 4; .@sub += 2; .@heal += 10; } bonus bVariableCastrate,.@cast; bonus2 bSubRace,RC_DemiHuman,.@sub; bonus2 bSubRace,RC_Player,.@sub; bonus bHealPower,.@heal; bonus bAddItemHealRate,.@heal; bonus2 bVariableCastrate,"AB_CHEAL",-100; bonus2 bResEff,EFF_Bleeding,10000; bonus2 bResEff,Eff_Confusion,10000; }
-19139:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Wind,20; if (.@r>=7) { bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; } if (.@r>=9) { bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; } }
-19139:20813,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus bFixedCastrate,-50; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; if (.@r>=5) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } }
-19139:22170,{ bonus bVit,4; bonus bInt,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; }
+19138:19327,{ .@i = readparam(bInt); .@cast = -(readparam(bInt)/8); .@sub = 2; .@heal = 5; if (.@i >= 120) { .@cast -= 10; .@sub += 6; .@heal += 25; } else if (.@i >= 108) { .@cast -= 4; .@sub += 2; .@heal += 10; } bonus bVariableCastrate,.@cast; bonus2 bSubRace,RC_DemiHuman,.@sub; bonus2 bSubRace,RC_Player_Human,.@sub; bonus bHealPower,.@heal; bonus bAddItemHealRate,.@heal; bonus2 bVariableCastrate,"AB_CHEAL",-100; bonus2 bResEff,EFF_Bleeding,10000; bonus2 bResEff,Eff_Confusion,10000; }
+19139:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Wind,20; if (.@r>=7) { bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; } if (.@r>=9) { bonus bVit,4; bonus bVariableCastrate,-6; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; } }
+19139:20813,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus bFixedCastrate,-50; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if (.@r>=5) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } }
+19139:22170,{ bonus bVit,4; bonus bInt,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; }
19172:28500,{ bonus bDelayrate,-15; }
19172:4403,{ bonus bDelayrate,30; }
19189:29316,{ autobonus3 "{ bonus bCritical,5; }",1000,60000,"BS_ADRENALINE"; }
@@ -833,22 +1022,35 @@
19201:29343,{ bonus bBaseAtk,20; }
19201:29344,{ bonus bBaseAtk,30; autobonus3 "{ bonus2 bIgnoreDefClassRate,Class_Normal,25; }",1000,60000,"WA_MOONLIT_SERENADE"; }
19201:29345,{ bonus bBaseAtk,40; autobonus3 "{ bonus2 bIgnoreDefClassRate,Class_Normal,50; }",1000,60000,"WA_MOONLIT_SERENADE"; }
-19202:29346,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",20 }",1000,60000,"RL_S_STORM"; }
-19202:29347,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",40 }",1000,60000,"RL_S_STORM"; bonus2 bSkillCooldown,"RL_BANISHING_BUSTER",-1000; }
-19202:29348,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",60 }",1000,60000,"RL_S_STORM"; bonus2 bSkillCooldown,"RL_BANISHING_BUSTER",-1500; }
+19202:29346,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",20; }",1000,60000,"RL_S_STORM"; }
+19202:29347,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",40; }",1000,60000,"RL_S_STORM"; bonus2 bSkillCooldown,"RL_BANISHING_BUSTER",-1000; }
+19202:29348,{ autobonus3 "{ bonus2 bSkillAtk,\"RL_BANISHING_BUSTER\",60; }",1000,60000,"RL_S_STORM"; bonus2 bSkillCooldown,"RL_BANISHING_BUSTER",-1500; }
19203:29349,{ bonus bBaseAtk,10; bonus bMatk,10; if (getskilllv("OB_OBOROGENSOU") == 5) bonus bVariableCastrate,-3; autobonus3 "{ bonus bCritAtkRate,5; }",1000,60000,"KG_KAGEMUSYA"; }
19203:29350,{ bonus bBaseAtk,15; bonus bMatk,15; if (getskilllv("OB_OBOROGENSOU") == 5) bonus bVariableCastrate,-7; autobonus3 "{ bonus bCritAtkRate,10; }",1000,60000,"KG_KAGEMUSYA"; autobonus "{ bonus bNoSizeFix; }",30,3000,BF_WEAPON; }
19203:29351,{ bonus bBaseAtk,20; bonus bMatk,20; if (getskilllv("OB_OBOROGENSOU") == 5) bonus bVariableCastrate,-15; autobonus3 "{ bonus bCritAtkRate,30; }",1000,60000,"KG_KAGEMUSYA"; autobonus "{ bonus bNoSizeFix; }",50,5000,BF_WEAPON; }
19204:29352,{ bonus bMaxHP,500; bonus bBaseAtk,10; }
-19204:29353,{ bonus bMaxHP,1000; bonus bBaseAtk,20; skill "WS_CARTBOOST",1; autobonus3 "{ bonus bBaseAtk,30; }",1000,60000,"WS_CARTBOOST"; }
-19204:29354,{ bonus bMaxHP,1500; bonus bBaseAtk,40; skill "WS_CARTBOOST",1; autobonus3 "{ bonus bBaseAtk,50; }",1000,60000,"WS_CARTBOOST"; }
+19204:29353,{ bonus bMaxHP,1000; bonus bBaseAtk,20; skill "GN_CARTBOOST",1; autobonus3 "{ bonus bBaseAtk,30; }",1000,60000,"GN_CARTBOOST"; }
+19204:29354,{ bonus bMaxHP,1500; bonus bBaseAtk,40; skill "GN_CARTBOOST",3; autobonus3 "{ bonus bBaseAtk,50; }",1000,120000,"GN_CARTBOOST"; }
19205:29355,{ bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",10; }
19205:29356,{ bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",20; bonus bFixedCast,-200; }
19205:29357,{ bonus2 bSkillAtk,"SU_CN_METEOR",60; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",60; bonus bFixedCast,-500; }
+19242:5040,{ bonus bHealPower,5; }
+19242:18607,{ bonus bHealPower,5; }
19247:28762,{ bonus bMatk,50; .@eq = getequiprefinerycnt(EQI_HEAD_TOP); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus bVariableCastrate,-10; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if ((.@eq + .@weapon) >= 22) { autobonus "{ bonus bMatk,50; bonus2 bMagicAtkEle,Ele_Fire,20; }",5,10000,BF_MAGIC; /* unknown rate */ } } }
+19266:19267,{ bonus bDelayrate,getequiprefinerycnt(EQI_HEAD_TOP)*-1; }
+19266:1617,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
+19266:1618,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
+19266:1619,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
+19266:1620,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
+19266:1628,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; }
+19266:2509,{.@r = getequiprefinerycnt(EQI_GARMENT); bonus bVariableCastrate,-5*(.@r/2);}
+19266:2535,{ bonus bVariableCastrate,getequiprefinerycnt(EQI_GARMENT)*-5; }
+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, 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,2; if (.@a>=108) { bonus bMatk,20; bonus bVariableCastrate,-3; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if (.@a>=120) { bonus bMatk,30; bonus bVariableCastrate,-5; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; } }
+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; }
19326:4190,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_Undead,5; if (.@r>=6) bonus2 bExpAddRace,RC_Undead,5; if (.@r>=8) bonus2 bExpAddRace,RC_Undead,5; }
19326:4224,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_Brute,5; if (.@r>=6) bonus2 bExpAddRace,RC_Brute,5; if (.@r>=8) bonus2 bExpAddRace,RC_Brute,5; }
@@ -867,10 +1069,12 @@
19397:29582,{ bonus2 bSkillAtk,"SP_SWHOO",10; bonus2 bSkillAtk,"SL_SMA",10; bonus2 bSkillAtk,"SP_SPA",10; }
19397:29583,{ bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SL_SMA",20; bonus2 bSkillAtk,"SP_SPA",20; bonus2 bSkillCooldown,"SP_SOULREAPER",-10000; }
19397:29584,{ bonus2 bSkillAtk,"SP_SWHOO",40; bonus2 bSkillAtk,"SL_SMA",40; bonus2 bSkillAtk,"SP_SPA",40; bonus2 bSkillCooldown,"SP_SOULREAPER",-10000; }
-19428:20948:32238:32239,{ bonus bInt,5; bonus bMaxSPrate,10; bonus bDef,100; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Neutral,10; .@head = getequiprefinerycnt(EQI_HEAD_TOP); .@garment = getequiprefinerycnt(EQI_GARMENT); if (.@head >= 7 && .@garment >= 7) { .@matk = 40; } if ((.@head + .@garment) >= 18) { .@matk += 40; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Holy,15; if ((.@head + .@garment) >= 22) { bonus bMatkRate,10; bonus2 bIgnoreMdefRaceRate,RC_Formless,50; bonus2 bIgnoreMdefRaceRate,RC_Demon,50; bonus2 bIgnoreMdefRaceRate,RC_Brute,50; } } bonus bMatk,.@matk; }
+19428:20948:32238:32239,{ bonus bInt,5; bonus bMaxSPrate,10; bonus bDef,100; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Neutral,10; .@head = getequiprefinerycnt(EQI_HEAD_TOP); .@garment = getequiprefinerycnt(EQI_GARMENT); if (.@head >= 7 && .@garment >= 7) { .@matk = 40; } if ((.@head + .@garment) >= 18) { .@matk += 40; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Holy,15; if ((.@head + .@garment) >= 22) { bonus bMatkRate,10; bonus2 bIgnoreMdefRaceRate,RC_Formless,50; bonus2 bIgnoreMdefRaceRate,RC_Demon,50; bonus2 bIgnoreMdefRaceRate,RC_Brute,50; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,50; } } bonus bMatk,.@matk; }
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; }
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,.@val; }
+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; }
20717:22001,{ bonus bMaxHPRate,15; bonus bMaxSPRate,5; }
20717:22002,{ bonus bMaxHPRate,15; bonus bMaxSPRate,5; }
@@ -936,25 +1140,25 @@
20831:4596,{ bonus bMatk,-5*(readparam(bInt)/10); }
20838:26109,{ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@eq = getequiprefinerycnt(EQI_GARMENT); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",40; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; if ((.@eq + .@weapon) >= 22) { bonus2 bMagicAtkEle,Ele_Water,10; } } }
20840:28725,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); .@val = 80; if (.@weapon >= 7 && .@eq >= 7) { .@val += 80; } if ((.@weapon + .@eq) >= 18) { .@val += 40; } if ((.@weapon + .@eq) >= 22) { bonus2 bMagicAtkEle,Ele_Fire,15; } bonus bMatk,.@val; }
-20846:22000,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bBaseAtk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22001,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bMatk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22002,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22003,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAddItemHealRate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22004,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bLongAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22005,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bCritAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22006,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bBaseAtk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22007,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAddItemHealRate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22008,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bLongAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22009,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bMatk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22010,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
-20846:22011,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bCritAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; }
+20846:22000,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bBaseAtk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22001,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bMatk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22002,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22003,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAddItemHealRate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22004,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bLongAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22005,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bCritAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22006,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bBaseAtk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22007,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAddItemHealRate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22008,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bLongAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22009,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bMatk,30; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22010,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
+20846:22011,{ bonus bMaxHPrate,15; bonus bMdef,10; bonus bCritAtkRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; }
20847:28745,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); .@val = 10; if (.@weapon >= 7 && .@eq >= 7) { bonus bCritAtkRate,15; } if ((.@weapon + .@eq) >= 18) { .@val += 15; if ((.@weapon + .@eq) >= 22) { skill "TF_DOUBLE",4; bonus bDoubleRate,20; } } bonus bAspdRate,.@val; }
20859:4121,{ bonus bPerfectHitAddRate,50; bonus2 bResEff,Eff_Stone,10000; }
20863:4593,{ bonus bLongAtkRate,-1*readparam(bDex)/10; }
20922:4306,{ bonus2 bSubEle,Ele_Neutral,20; bonus bMaxHPrate,10; bonus bMdef,10; }
-20925:22035,{ bonus bAgi,10; bonus bInt,10; bonus bVariableCastrate,-10; bonus2 bSubRace,RC_Player,5; }
-20925:22036,{ bonus bStr,10; bonus bDex,10; bonus bDelayrate,-20; bonus2 bSubRace,RC_Player,5; }
-20925:22037,{ bonus bVit,10; bonus bLuk,10; bonus bHealPower,20; bonus2 bSubRace,RC_Player,5; bonus bUseSPrate,-10; }
+20925:22035,{ bonus bAgi,10; bonus bInt,10; bonus bVariableCastrate,-10; bonus2 bSubRace,RC_Player_Human,5; }
+20925:22036,{ bonus bStr,10; bonus bDex,10; bonus bDelayrate,-20; bonus2 bSubRace,RC_Player_Human,5; }
+20925:22037,{ bonus bVit,10; bonus bLuk,10; bonus bHealPower,20; bonus2 bSubRace,RC_Player_Human,5; bonus bUseSPrate,-10; }
20931:1752,{ bonus2 bSubEle,Ele_Fire,75; }
20931:1754,{ bonus2 bSubEle,Ele_Water,75; }
20931:1755,{ bonus2 bSubEle,Ele_Wind,75; }
@@ -970,6 +1174,18 @@
20937:22201,{ bonus bVariableCastrate,-5; }
20937:22201:15380,{ bonus bMatkRate,2; .@a = getequiprefinerycnt(EQI_GARMENT); .@b = getequiprefinerycnt(EQI_SHOES); .@c = getequiprefinerycnt(EQI_ARMOR); if (.@a>=7 && .@b>=7 &&.@c>=7) bonus bMatkRate,3; if (.@a+.@b+.@c >= 27) bonus2 bMagicAtkEle,Ele_Fire,15; }
20941:4197,{ bonus bFlee,20; bonus bMaxHPrate,10; bonus bMdef,10; }
+20963:22006,{ bonus bBaseAtk,50; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20963:22113,{ bonus bBaseAtk,50; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20964:22010,{ bonus bCritAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20964:22115,{ bonus bCritAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20965:22007,{ bonus bDelayrate,-5; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20965:22116,{ bonus bDelayrate,-5; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20966:22009,{ bonus bMatk,50; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20966:22114,{ bonus bMatk,50; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20967:22008,{ bonus bLongAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20967:22117,{ bonus bLongAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20968:22011,{ bonus bAspd,1; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
+20968:22118,{ bonus bAspd,1; if (getequiprefinerycnt(EQI_SHOES)>=10) { bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; } }
20969:1752,{ bonus2 bSubEle,Ele_Fire,75; }
20969:1754,{ bonus2 bSubEle,Ele_Water,75; }
20969:1755,{ bonus2 bSubEle,Ele_Wind,75; }
@@ -984,10 +1200,10 @@
22101:29152,{ bonus bMaxHPRate,5; bonus bMaxSPRate,5; .@r = getequiprefinerycnt(EQI_SHOES); if(.@r >= 7) { bonus bLongAtkRate,2; } if(.@r >= 9) { bonus bLongAtkRate,3; } if(.@r >= 12) { bonus bDelayrate,-5; } }
22101:29153,{ bonus bMaxHPRate,5; bonus bMaxSPRate,5; .@r = getequiprefinerycnt(EQI_SHOES); if(.@r >= 7) { bonus bCritAtkRate,2; } if(.@r >= 9) { bonus bCritAtkRate,3; } if(.@r >= 12) { bonus bDelayrate,-5; } }
22104:1646,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@b = getskilllv("WZ_FROSTNOVA"); .@c = getskilllv("WZ_WATERBALL"); bonus2 bMagicAtkEle,Ele_Water,4*.@r; bonus2 bIgnoreMdefClassRate,Class_Normal,5*.@b; bonus2 bIgnoreMdefClassRate,Class_Boss,5*.@b; bonus2 bSkillAtk,"WZ_WATERBALL",(30*.@c)+(20*.@r); }
-22106:1387,{ .@r = getequiprefinerycnt(EQI_SHOES); .@b = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player,30; if (.@b>=7) { bonus2 bSkillAtk,"WS_CARTTERMINATION",8; bonus2 bAddClass,Class_Boss,20; } if (.@b>=9) { bonus2 bSkillAtk,"WS_CARTTERMINATION",12; bonus2 bAddClass,Class_Boss,30; } } }
-22106:1490,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,40; bonus2 bSubRace,RC_Player,40; bonus4 bAutoSpellOnSkill,"LK_SPIRALPIERCE","RK_SONICWAVE",getskilllv("RK_SONICWAVE"),10000; if (.@r>=7) { bonus2 bSkillAtk,"RK_SONICWAVE",20; bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; bonus2 bSubClass,Class_Boss,20; } if (.@r>=9) { bonus2 bSkillAtk,"RK_SONICWAVE",30; bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSubClass,Class_Boss,30; } }
+22106:1387,{ .@r = getequiprefinerycnt(EQI_SHOES); .@b = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30; if (.@b>=7) { bonus2 bSkillAtk,"WS_CARTTERMINATION",8; bonus2 bAddClass,Class_Boss,20; } if (.@b>=9) { bonus2 bSkillAtk,"WS_CARTTERMINATION",12; bonus2 bAddClass,Class_Boss,30; } } }
+22106:1490,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,40; bonus2 bSubRace,RC_Player_Human,40; bonus4 bAutoSpellOnSkill,"LK_SPIRALPIERCE","RK_SONICWAVE",getskilllv("RK_SONICWAVE"),10000; if (.@r>=7) { bonus2 bSkillAtk,"RK_SONICWAVE",20; bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; bonus2 bSubClass,Class_Boss,20; } if (.@r>=9) { bonus2 bSkillAtk,"RK_SONICWAVE",30; bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSubClass,Class_Boss,30; } }
22106:18122,{ .@r = getequiprefinerycnt(EQI_SHOES); .@b = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { bonus bLongAtkRate,3*(readparam(bStr)/10); if (.@b>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",20; bonus2 bSkillAtk,"RA_AIMEDBOLT",20; bonus2 bAddClass,Class_Boss,20; } if (.@b>=9) { bonus2 bSkillAtk,"RA_ARROWSTORM",30; bonus2 bSkillAtk,"RA_AIMEDBOLT",30; bonus2 bAddClass,Class_Boss,30; } } }
-22106:2160,{ .@r = getequiprefinerycnt(EQI_SHOES); if (.@r > 6) { bonus2 bSubSize,Size_Large,2; bonus2 bSubClass,Class_Boss,2; } if (.@r > 8) { bonus2 bSubSize,Size_Large,2; bonus2 bSubClass,Class_Boss,2; } }
+22106:2160,{ .@r = getequiprefinerycnt(EQI_HAND_L); if (.@r > 6) { bonus2 bSubSize,Size_Large,2; bonus2 bSubClass,Class_Boss,2; } if (.@r > 8) { bonus2 bSubSize,Size_Large,3; bonus2 bSubClass,Class_Boss,3; } }
22120:1631,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@cast = -5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_JUDEX",.@cast; bonus2 bVariableCastrate,"AB_ADORAMUS",.@cast; if (.@r >= 7) { .@magic = 30; if (.@r >= 9) { .@magic += 20; .@dmg = 20; } bonus2 bMagicAddRace,RC_Demon,.@magic; bonus2 bMagicAddRace,RC_Undead,.@magic; bonus2 bMagicAddEle,Ele_Undead,.@magic; bonus2 bMagicAddEle,Ele_Dark,.@magic; } bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg + 10*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")+getskilllv("AB_CLEARANCE")); }
22122:28443:28444,{ bonus bAspdRate,4; bonus bHit,4; }
22123:28445:28446,{ bonus bAspdRate,8; bonus bHit,8; }
@@ -1006,25 +1222,39 @@
22126:28471:28472,{ bonus bAspdRate,10; bonus bHit,10; bonus2 bExpAddClass,Class_All,2; bonus bSpeedAddRate,25; }
22133:26007,{ bonus bAspdRate,8; .@eq = getequiprefinerycnt(EQI_SHOES); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { .@val = 20; } if ((.@eq + .@weapon) >= 18) { bonus bLongAtkRate,10; if ((.@eq + .@weapon) >= 22) { .@val += 30; } } if (.@val) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@val; } }
22133:32005,{ bonus bBaseAtk,40; .@eq = getequiprefinerycnt(EQI_SHOES); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { .@val = 20; } if ((.@eq + .@weapon) >= 18) { bonus2 bAddClass,Class_All,10; if ((.@eq + .@weapon) >= 22) { .@val += 20; } } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; } }
-22138:20815,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubEle,Ele_Holy,30-(2*getskilllv("CR_TRUST")); bonus2 bSubEle,Ele_Dark,30; bonus bFixedCastrate,-50; if (.@r > 8) .@val = 20; else if (.@r > 6) .@val = 10; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Neutral,.@val; bonus2 bMagicAtkEle,Ele_Dark,.@val; }
-22138:20815:1643,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bMagicAtkEle,Ele_Fire,4*getskilllv("WZ_FIREPILLAR"); bonus2 bMagicAtkEle,Ele_Neutral,6*getskilllv("HW_GRAVITATION"); if (.@r > 8) .@val = 2; else if (.@r > 6) .@val = 1; bonus2 bSkillAtk,"WL_HELLINFERNO",100*.@val; bonus2 bMagicAddRace,RC_DemiHuman,20*.@val; bonus2 bMagicAddRace,RC_Player,20*.@val; }
+22138:20815,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubEle,Ele_Holy,30-(2*getskilllv("CR_TRUST")); bonus2 bSubEle,Ele_Dark,30; bonus bFixedCastrate,-50; if (.@r > 8) .@val = 20; else if (.@r > 6) .@val = 10; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Neutral,.@val; bonus2 bMagicAtkEle,Ele_Dark,.@val; }
+22138:20815:1643,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bMagicAtkEle,Ele_Fire,4*getskilllv("WZ_FIREPILLAR"); bonus2 bMagicAtkEle,Ele_Neutral,6*getskilllv("HW_GRAVITATION"); if (.@r > 8) .@val = 2; else if (.@r > 6) .@val = 1; bonus2 bSkillAtk,"WL_HELLINFERNO",100*.@val; bonus2 bMagicAddRace,RC_DemiHuman,20*.@val; bonus2 bMagicAddRace,RC_Player_Human,20*.@val; }
22138:4876,{ bonus2 bMagicAtkEle,Ele_Fire,-50; bonus2 bMagicAtkEle,Ele_Neutral,-50; bonus2 bMagicAtkEle,Ele_Dark,-50; }
-22170:1618,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bIgnoreMdefClassRate,Class_All,50; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,80; bonus2 bMagicAddRace,RC_Demihuman,20; bonus2 bMagicAddRace,RC_Player,20; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-2400; bonus2 bSkillCooldown,"WL_CHAINLIGHTNING",-1000; autobonus "{ bonus2 bSkillAtk,\"WL_CHAINLIGHTNING\",100; }",60,5000,BF_MAGIC; } }
-22170:1620,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bIgnoreMdefClassRate,Class_All,50; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,80; bonus2 bMagicAddRace,RC_Demihuman,20; bonus2 bMagicAddRace,RC_Player,20; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-2400; bonus2 bSkillCooldown,"WL_CHAINLIGHTNING",-1000; autobonus "{ bonus2 bSkillAtk,\"WL_CHAINLIGHTNING\",100; }",60,5000,BF_MAGIC; } }
-22170:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,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; } }
+22170:1618,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bIgnoreMdefClassRate,Class_All,50; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,80; bonus2 bMagicAddRace,RC_Demihuman,20; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-2400; bonus2 bSkillCooldown,"WL_CHAINLIGHTNING",-1000; autobonus "{ bonus2 bSkillAtk,\"WL_CHAINLIGHTNING\",100; }",60,5000,BF_MAGIC; } }
+22170:1620,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bIgnoreMdefClassRate,Class_All,50; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,80; bonus2 bMagicAddRace,RC_Demihuman,20; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-2400; bonus2 bSkillCooldown,"WL_CHAINLIGHTNING",-1000; autobonus "{ bonus2 bSkillAtk,\"WL_CHAINLIGHTNING\",100; }",60,5000,BF_MAGIC; } }
+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:26154,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",20,7000,BF_MAGIC; /* unknown rate */ }
+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; }
22171:26155,{ autobonus "{ bonus bLuk,20; bonus bMatkRate,15; bonus2 bAddClass,Class_All,15; }",20,7000,BF_MAGIC|BF_WEAPON; /* unknown rate */ }
+22171:28039,{ autobonus "{ bonus bLuk,20; bonus bCritAtkRate,10; }",30,7000; }
+22171:28130,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; }
22171:28255,{ autobonus "{ bonus bInt,20; bonus2 bMagicAtkEle,Ele_Ghost,10; }",20,7000,BF_MAGIC; /* unknown rate */ }
22171:28256,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",20,7000,BF_WEAPON; /* unknown rate */ }
22171:28257,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",20,7000,BF_WEAPON; /* unknown rate */ }
22171:28258,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",20,7000,BF_WEAPON; /* unknown rate */ }
-//22171:28631,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",3,7000,BF_WEAPON; /* unknown rate */ }
+22171:28630,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; }
+22171:28631,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; }
+22171:28744,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; }
22171:28763:28764,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,10; }",20,7000,BF_WEAPON; /* unknown rate */ }
+22171:32018,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; }
22171:32302,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",20,7000,BF_WEAPON; /* unknown rate */ }
-22172:15042,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bSpeedRate,25; bonus bCritAtkRate,4*(readparam(bluk)/20); if (.@r>=7) { bonus bAspdRate,8; bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player,8; bonus2 bSkillAtk,"HT_BLITZBEAT",40; bonus2 bSkillAtk,"SN_SHARPSHOOTING",50; } if (.@r>=9) { bonus bAspdRate,4; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; bonus2 bSkillAtk,"HT_BLITZBEAT",20; bonus2 bSkillAtk,"SN_SHARPSHOOTING",25; } }
-22172:15043,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bHPGainValue,500; bonus bSpeedRate,25; bonus2 bSkillAtk,"RA_CLUSTERBOMB",30*(readparam(bint)/20); bonus2 bSkillUseSP,"RA_ELECTRICSHOCKER",30; if (.@r>=7) { bonus bFlee2,6; bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player,8; bonus2 bSkillAtk,"RA_CLUSTERBOMB",400; bonus2 bSkillAtk,"RA_AIMEDBOLT",20; } if (.@r>=9) { bonus bFlee2,3; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; bonus2 bSkillAtk,"RA_CLUSTERBOMB",200; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; } }
-22190:28254,{ bonus2 bAddClass,Class_All,10; .@eq = getequiprefinerycnt(EQI_SHOES); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus bLongAtkRate,5; } if ((.@eq + .@weapon) >= 18) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; bonus2 bSkillCooldown,"RL_FIRE_RAIN",-2000; if ((.@eq + .@weapon) >= 22) { autobonus3 "{ bonus bBaseAtk,50; bonus2 bAddRace,RC_Brute,50; bonus2 bAddRace,RC_Demon,50; }",5,10000,"RL_R_TRIP"; /* unknown rate */ } } }
+22171:500003,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; }
+22171:500004,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; }
+22171:570002,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; }
+22171:580002,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; }
+22171:590002,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; }
+22171:600004,{ autobonus "{ bonus bVit,20; bonus bLongAtkRate,10; }",30,7000; }
+22172:15042,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bSpeedRate,25; bonus bCritAtkRate,4*(readparam(bluk)/20); if (.@r>=7) { bonus bAspdRate,8; bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSkillAtk,"HT_BLITZBEAT",40; bonus2 bSkillAtk,"SN_SHARPSHOOTING",50; } if (.@r>=9) { bonus bAspdRate,4; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus2 bSkillAtk,"HT_BLITZBEAT",20; bonus2 bSkillAtk,"SN_SHARPSHOOTING",25; } }
+22172:15043,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bHPGainValue,500; bonus bSpeedRate,25; bonus2 bSkillAtk,"RA_CLUSTERBOMB",30*(readparam(bint)/20); bonus2 bSkillUseSP,"RA_ELECTRICSHOCKER",30; if (.@r>=7) { bonus bFlee2,6; bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSkillAtk,"RA_CLUSTERBOMB",400; bonus2 bSkillAtk,"RA_AIMEDBOLT",20; } if (.@r>=9) { bonus bFlee2,3; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus2 bSkillAtk,"RA_CLUSTERBOMB",200; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; } }
+22190:28254,{ bonus2 bAddClass,Class_All,10; .@eq = getequiprefinerycnt(EQI_SHOES); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus bLongAtkRate,5; } if ((.@eq + .@weapon) >= 18) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; bonus2 bSkillCooldown,"RL_FIRE_RAIN",-2000; if ((.@eq + .@weapon) >= 22) { autobonus3 "{ bonus bBaseAtk,50; bonus2 bAddRace,RC_Brute,50; bonus2 bAddRace,RC_Player_Doram,50; bonus2 bAddRace,RC_Demon,50; }",5,10000,"RL_R_TRIP"; /* unknown rate */ } } }
24012:24013:24014:24015:24016:24017,{ bonus bAllStats,3; }
24018:24019:24020,{ if(getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L) + getequiprefinerycnt(EQI_SHADOW_WEAPON) >= 23) { bonus2 bAddClass,Class_All,1; } }
24021:24022:24023,{ if(getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L) + getequiprefinerycnt(EQI_SHADOW_WEAPON) >= 23) { bonus bMatkRate,1; } }
@@ -1080,11 +1310,11 @@
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; }
-24158:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_Brute; }
+24158:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) { bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; } }
24159:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_Insect; }
24160:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_Fish; }
24161:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_Dragon; }
@@ -1096,7 +1326,7 @@
24168:24169:24329,{ if (getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L) >= 25) { bonus bIgnoreMDefRace,RC_DemiHuman; } }
24168:24169:24170,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_DemiHuman; }
24168:24169:24171,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Demon; }
-24168:24169:24172,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Brute; }
+24168:24169:24172,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) { bonus bIgnoreMDefRace,RC_Brute; bonus bIgnoreMDefRace,RC_Player_Doram; } }
24168:24169:24173,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Insect; }
24168:24169:24174,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Fish; }
24168:24169:24175,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Dragon; }
@@ -1107,16 +1337,16 @@
24168:24169:24345:24346:24423:24424,{ if ((getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)) >= 54) { bonus2 bIgnoreDefClassRate,Class_Normal,20; } }
24180:24181:24182:24183:24184:24185,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bAllStats,1; if(.@r>=45) { bonus bMaxHPrate,(.@r-60); bonus bNoWalkDelay; } }
24180:24181:24182:24183:24184:24321,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bAllStats,1; if (.@r >= 45) { bonus bMaxHPrate,(.@r-60); bonus bNoWalkDelay; } }
-24186:24198,{ bonus2 bSubEle,Ele_Neutral,2; }
-24187:24199,{ bonus2 bSubEle,Ele_Dark,2; }
-24188:24200,{ bonus2 bSubEle,Ele_Water,2; }
-24189:24201,{ bonus2 bSubEle,Ele_Earth,2; }
-24190:24202,{ bonus2 bSubEle,Ele_Fire,2; }
-24191:24203,{ bonus2 bSubEle,Ele_Wind,2; }
-24192:24204,{ bonus2 bSubEle,Ele_Poison,2; }
-24193:24205,{ bonus2 bSubEle,Ele_Holy,2; }
-24194:24206,{ bonus2 bSubEle,Ele_Ghost,2; }
-24195:24207,{ bonus2 bSubEle,Ele_Undead,2; }
+24186:24198,{ bonus2 bSubDefEle,Ele_Neutral,2; bonus2 bMagicSubDefEle,Ele_Neutral,2; }
+24187:24199,{ bonus2 bSubDefEle,Ele_Dark,2; bonus2 bMagicSubDefEle,Ele_Dark,2; }
+24188:24200,{ bonus2 bSubDefEle,Ele_Water,2; bonus2 bMagicSubDefEle,Ele_Water,2; }
+24189:24201,{ bonus2 bSubDefEle,Ele_Earth,2; bonus2 bMagicSubDefEle,Ele_Earth,2; }
+24190:24202,{ bonus2 bSubDefEle,Ele_Fire,2; bonus2 bMagicSubDefEle,Ele_Fire,2; }
+24191:24203,{ bonus2 bSubDefEle,Ele_Wind,2; bonus2 bMagicSubDefEle,Ele_Wind,2; }
+24192:24204,{ bonus2 bSubDefEle,Ele_Poison,2; bonus2 bMagicSubDefEle,Ele_Poison,2; }
+24193:24205,{ bonus2 bSubDefEle,Ele_Holy,2; bonus2 bMagicSubDefEle,Ele_Holy,2; }
+24194:24206,{ bonus2 bSubDefEle,Ele_Ghost,2; bonus2 bMagicSubDefEle,Ele_Ghost,2; }
+24195:24207,{ bonus2 bSubDefEle,Ele_Undead,2; bonus2 bMagicSubDefEle,Ele_Undead,2; }
24196:24197,{ bonus bFlee,5; if(getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ARMOR)>=15) bonus bSpeedAddRate,3; }
24197:24320,{ bonus bFlee,5; if ((getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHOES)) >= 15) { bonus bSpeedRate,25; /* unknown value */ } }
24208:24209,{ bonus2 bExpAddRace,RC_All,((getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD))>=15?10:1); }
@@ -1152,7 +1382,7 @@
24254:24249:24265:24278:24297:24310,{ bonus bAllStats,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bIgnoreDefClassRate,Class_Normal,50; bonus2 bIgnoreMDefClassRate,Class_Normal,50; }
24255:28392,{ .@val = 1; if ((getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R)) >= 10) { .@val += 2; } bonus2 bAddClass,Class_All,.@val; bonus bMaxHPrate,.@val; }
24321:24337:24338,{ bonus bAllStats,1; .@r = getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ACC_L) + getequiprefinerycnt(EQI_SHADOW_ARMOR); if (.@r >= 25) { bonus bNoWalkDelay; bonus bMaxHPrate,.@r-35; } }
-24326:24327,{ .@r1 = getequiprefinerycnt(EQI_SHADOW_ARMOR) .@r2 = getequiprefinerycnt(EQI_SHADOW_SHIELD); if ((.@r1+.@r2) >= 17) { bonus bLuk,1; bonus bVit,1; bonus bHit,.@r1; bonus bDef,5*.@r2; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; bonus bVariableCastrate,-5; bonus bMaxSP,300; } } }
+24326:24327,{ .@r1 = getequiprefinerycnt(EQI_SHADOW_ARMOR); .@r2 = getequiprefinerycnt(EQI_SHADOW_SHIELD); if ((.@r1+.@r2) >= 17) { bonus bLuk,1; bonus bVit,1; bonus bHit,.@r1; bonus bDef,5*.@r2; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; bonus bVariableCastrate,-5; bonus bMaxSP,300; } } }
24332:24333,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus bBaseAtk,.@r; if (.@r >= 15) { bonus bCritAtkRate,1; } }
24322:24335:24336,{ bonus bAllStats,1; .@r = getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); if (.@r >= 25) { bonus bNoGemStone; bonus bUseSPrate,70-.@r; } }
24341:24342,{ bonus2 bExpAddClass,Class_All,3; }
@@ -1160,7 +1390,7 @@
24345:24346:24347,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_DemiHuman; bonus bIgnoreMDefRace,RC_Undead; } }
24345:24346:24348,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_Demon; bonus bIgnoreMDefRace,RC_Angel; } }
24345:24346:24349,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_Formless; bonus bIgnoreMDefRace,RC_Dragon; } }
-24345:24346:24350,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_Plant; bonus bIgnoreMDefRace,RC_Brute; } }
+24345:24346:24350,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_Plant; bonus bIgnoreMDefRace,RC_Brute; bonus bIgnoreMDefRace,RC_Player_Doram; } }
24345:24346:24351,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bMDef,5; if (.@r >= 25) { bonus bIgnoreMDefRace,RC_Fish; bonus bIgnoreMDefRace,RC_Insect; } }
24360:24361:24362,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); .@rate = 20 + 10*(.@r/10); if (.@r >= 25) { .@hp = 500; } else { .@hp = 100; } autobonus "{ bonus2 bHPRegenRate,"+.@hp+",1000; }",.@rate,5000; }
24363:24364:24365,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); .@rate = 10 + 10*(.@r/15); if (.@r >= 25) { .@hp = 250; } else { .@hp = 100; } autobonus "{ bonus2 bHPRegenRate,"+.@hp+",1000; }",.@rate,5000,BF_MAGIC; }
@@ -1169,15 +1399,62 @@
24373:24374:24375,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Undead; } }
24373:24374:24376,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_Demon; bonus bIgnoreDefRace,RC_Angel; } }
24373:24374:24377,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_Formless; bonus bIgnoreDefRace,RC_Dragon; } }
-24373:24374:24378,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_Plant; bonus bIgnoreDefRace,RC_Brute; } }
+24373:24374:24378,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_Plant; bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; } }
24373:24374:24379,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus bDef,5; if (.@r >= 25) { bonus bIgnoreDefRace,RC_Fish; bonus bIgnoreDefRace,RC_Insect; } }
24380:24381:24382,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); .@rate = 20 + 10*(.@r/10); if (.@r >= 25) { .@sp = 30; } else { .@sp = 10; } autobonus "{ bonus2 bSPRegenRate,"+.@sp+",1000; }",.@rate,5000; }
24383:24384:24385,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); .@rate = 10 + 10*(.@r/15); if (.@r >= 25) { .@sp = 30; } else { .@sp = 10; } autobonus "{ bonus2 bSPRegenRate,"+.@sp+",1000; }",.@rate,5000,BF_MAGIC; }
-24387:24388:24389:24390:24391:24392,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); .@val = 20 + min(30,.@r); if (BaseLevel >= 130) { .@val += 6; } else if (BaseLevel >= 125) { .@val += 3; } bonus2 bIgnoreDefRaceRate,RC_All,.@val; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; bonus2 bIgnoreDefRaceRate,RC_Player,-.@val; bonus2 bIgnoreMdefRaceRate,RC_Player,-.@val; }
+24387:24388:24389:24390:24391:24392,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); .@val = 20 + min(30,.@r); if (BaseLevel >= 130) { .@val += 6; } else if (BaseLevel >= 125) { .@val += 3; } bonus2 bIgnoreDefRaceRate,RC_All,.@val; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-.@val; }
24393:24394:24395,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bBaseAtk,.@r*2; if (.@r >= 25) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 23) { bonus2 bAddClass,Class_All,2; } }
24396:24397:24398,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bMatk,.@r*2; if (.@r >= 25) { bonus bMatkRate,5; } else if (.@r >= 23) { bonus bMatkRate,2; } }
24399:24400,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES); if (.@r >= 16) { bonus bDef,100; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } else { bonus bDef,50; bonus bMaxHPrate,2; bonus bMaxSPrate,2; } }
-24416:24417:24418:24419:24420:24421,{ bonus bAspd,2; bonus bVariableCastrate,-10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player,-70; bonus2 bIgnoreMdefRaceRate,RC_Player,-70; }
+24416:24417:24418:24419:24420:24421,{ bonus bAspd,2; bonus bVariableCastrate,-10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; }
+24425:24426,{ bonus bMaxHPrate,2; bonus bMaxSPrate,2; }
+24427:24168:24169,{ bonus bMatk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreMdefRaceRate,RC_Demon,100; bonus2 bIgnoreMdefRaceRate,RC_Angel,100; } }
+24428:24168:24169,{ bonus bMatk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreMdefRaceRate,RC_Formless,100; bonus2 bIgnoreMdefRaceRate,RC_Dragon,100; } }
+24429:24168:24169,{ bonus bMatk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreMdefRaceRate,RC_Brute,100; bonus2 bIgnoreMdefRaceRate,RC_Plant,100; } }
+24430:24168:24169,{ bonus bMatk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreMdefRaceRate,RC_Fish,100; bonus2 bIgnoreMdefRaceRate,RC_Insect,100; } }
+24431:24168:24169,{ bonus bMatk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,100; bonus2 bIgnoreMdefRaceRate,RC_Undead,100; } }
+24432:24433:24166:24167:24373:24374,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_ARMOR) + getequiprefinerycnt(EQI_SHADOW_ACC_SHOES) + getequiprefinerycnt(EQI_SHADOW_ACC_SHIELD) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 54) { bonus2 bIgnoreDefRaceRate,RC_All,20; } }
+24434:24166:24167,{ bonus bBaseAtk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreDefRaceRate,RC_DemiHuman,100; bonus2 bIgnoreDefRaceRate,RC_Undead,100; } }
+24435:24166:24167,{ bonus bBaseAtk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreDefRaceRate,RC_Fish,100; bonus2 bIgnoreDefRaceRate,RC_Insect,100; } }
+24436:24166:24167,{ bonus bBaseAtk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreDefRaceRate,RC_Brute,100; bonus2 bIgnoreDefRaceRate,RC_Plant,100; } }
+24437:24166:24167,{ bonus bBaseAtk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreDefRaceRate,RC_Formless,100; bonus2 bIgnoreDefRaceRate,RC_Dragon,100; } }
+24438:24166:24167,{ bonus bBaseAtk,5; .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 25) { bonus2 bIgnoreDefRaceRate,RC_Demon,100; bonus2 bIgnoreDefRaceRate,RC_Angel,100; } }
+24440:24441:24442,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES) + getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"RK_SONICWAVE",.@r; }
+24441:24288,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+24443:24444:24445,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus2 bSkillAtk,"RK_IGNITIONBREAK",.@r; }
+24443:24301,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+24447:24446:24448,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-(.@r/2); }
+24447:24288,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r; }
+24449:24450:24451,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r>=2) { bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; } }
+24449:24301,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r; }
+24452:24453:24454,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"RA_CLUSTERBOMB",.@r; }
+24452:24298,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+24455:24456:24457,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus2 bSkillAtk,"RA_AIMEDBOLT",.@r; }
+24455:24311,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+24459:24458:24460,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"RA_ARROWSTORM",.@r; }
+24459:24298,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+24461:24462:24463,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bCritAtkRate,.@r/2; }
+24461:24311,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; }
+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; }
+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; }
+24473:24303,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); if (.@r>=2) bonus2 bVariableCastrate,"NC_ARMSCANNON",.@r/2; }
+25069:25070:25071,{ bonus bDelayrate,-2; }
+25171:25141:25015,{ bonus2 bExpAddClass,Class_All,3; }
+25172:25173:25174,{ bonus bVariableCastrate,-6; }
+25303:25304:25305,{ bonus bCritical,10; }
+25304:25305,{ bonus bCritAtkRate,6; }
+25306:25172:25173:25174,{ bonus bVariableCastrate,-5; }
+29027:29145:29159,{ bonus2 bExpAddRace,RC_All,3; }
+29047:29359:29360,{ bonus bCritAtkRate,6; }
+29047:29359:29360:29361,{ bonus bCritical,10; }
+29053:29054:29055,{ bonus bDelayrate,-2; }
+29156:29157:29158,{ bonus bVariableCastrate,-6; }
+29156:29157:29158:29358,{ bonus bVariableCastrate,-5; }
27101:28510,{ bonus bMatkRate,(getrefine()/3); }
27102:28510,{ bonus bFlee2,5; }
27103:28510,{ bonus2 bAddClass,Class_All,(getrefine()/3); }
@@ -1192,23 +1469,23 @@
27116:27117,{ bonus bCritical,2; bonus bCritAtkRate,2; }
27147:27148,{ bonus bDelayrate,-3; }
27163:27165,{ bonus bDelayrate,-3; bonus bVit,2; bonus bInt,2; bonus bAgi,2; bonus bDex,2; }
-27166:27167,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bMagicAddSize,Size_All,10; }
+27166:27167,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Fire,10; }
27170:27171,{ bonus bStr,3; bonus2 bAddClass,Class_All,3; }
27170:27172,{ bonus2 bAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Small,15; }
27170:27173,{ bonus2 bSkillAtk,"GS_SPREADATTACK",50; }
27171:27174,{ bonus2 bSkillAtk,"GS_RAPIDSHOWER",50; }
27172:27175,{ bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10; }
-27196:27199,{ bonus2 bMagicAddSize,Size_Small,5; bonus2 bMagicAddRace,RC_Brute,5; }
+27196:27199,{ bonus2 bMagicAddSize,Size_Small,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; }
27196:27331,{ bonus bDelayrate,-3; }
-27197:27198,{ bonus2 bAddSize,Size_Small,5; bonus2 bAddRace,RC_Brute,5; }
+27197:27198,{ bonus2 bAddSize,Size_Small,5; bonus2 bAddRace,RC_Brute,5; bonus2 bAddRace,RC_Player_Doram,5; }
27197:27333,{ bonus2 bAddClass,Class_All,5; }
-// 27321:27326,{ bonus bMaxHPrate,50; }
+27321:27326,{ bonus bMaxHPrate,50; }
27322:27323,{ bonus bMaxSPrate,5; bonus bMaxHPrate,5; }
27324:27325,{ bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bSubDefEle,Ele_Fire,10; }
-28022:28509,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,10; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,25; } } }
+28022:28509,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,10; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_Player_Doram,25; } } }
28315:28317,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; }
28316:28318,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; }
-28320:22016,{ .@val = min(12,getequiprefinerycnt(EQI_SHOES)); bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player,.@val; }
+28320:22016,{ .@val = min(12,getequiprefinerycnt(EQI_SHOES)); bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; }
28321:28322,{ bonus bUseSPrate,-(getskilllv("HT_BEASTBANE") * 2); }
28326:28327,{ bonus bInt,8; bonus bStr,8; }
28358:18521,{ skill "AS_CLOAKING",1; }
@@ -1227,19 +1504,19 @@
28491:4817,{ bonus bHit,15; bonus bCriticalLong,10; }
28491:4818,{ bonus bHit,15; bonus bCriticalLong,10; }
28499:28920,{ bonus bFlee2,10; }
-28501:4807,{ bonus bAspd,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player,1; bonus2 bSubRace,RC_Demon,1; bonus2 bSubRace,RC_Undead,1; }
-28501:4842,{ bonus bAspd,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player,1; bonus2 bSubRace,RC_Demon,1; bonus2 bSubRace,RC_Undead,1; }
-28502:2201,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player,((2*.@b)+2); bonus bHealPower,10*.@c; }
-28502:2202,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player,((2*.@b)+2); bonus bHealPower,10*.@c; }
-28502:2203,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player,((2*.@b)+2); bonus bHealPower,10*.@c; }
-28502:2204,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player,((2*.@b)+2); bonus bHealPower,10*.@c; }
-28506:1414,{ .@r = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { .@val = 30; if (.@r>=9) { @val += 20; bonus2 bAddClass,Class_Boss,.@val; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddRace,RC_Fish,.@val; bonus2 bAddRace,RC_Insect,.@val; bonus2 bSkillAtk,"RK_WINDCUTTER",.@val; if (.@r>=10) { bonus2 bVariableCastrate,"RK_WINDCUTTER",-50; } } } }
-28506:1449,{ .@r = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { .@val = 30; if (.@r>=9) { @val += 20; bonus2 bAddClass,Class_Boss,.@val; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddRace,RC_Fish,.@val; bonus2 bAddRace,RC_Insect,.@val; bonus2 bSkillAtk,"RK_WINDCUTTER",.@val; if (.@r>=10) { bonus2 bVariableCastrate,"RK_WINDCUTTER",-50; } } } }
-28506:15037,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bResEff,Eff_Freeze,10000; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; if (.@r>=7) { bonus bMaxHPrate,15; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if (.@r>=9) { bonus bMaxHPrate,15; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } }
+28501:4807,{ bonus bAspd,1; 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,1; bonus2 bSubRace,RC_Undead,1; }
+28501:4842,{ bonus bAspd,1; 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,1; bonus2 bSubRace,RC_Undead,1; }
+28502:2201,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player_Human,((2*.@b)+2); bonus bHealPower,10*.@c; }
+28502:2202,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player_Human,((2*.@b)+2); bonus bHealPower,10*.@c; }
+28502:2203,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player_Human,((2*.@b)+2); bonus bHealPower,10*.@c; }
+28502:2204,{ .@a = (readparam(bStr)+readparam(bLuk))/80; .@b = (readparam(bAgi)+readparam(bVit))/80; .@c = (readparam(bInt)+readparam(bDex))/80; bonus bMaxHPrate,5*.@b; bonus2 bAddClass,Class_All,6*.@a; bonus bMatk,120*.@c; bonus bCritical,5*.@a; bonus bAspdRate,5*.@b; bonus bVariableCastrate,-3*.@c; bonus bCritAtkRate,10*.@a; bonus2 bSubRace,RC_DemiHuman,((2*.@b)+2); bonus2 bSubRace,RC_Player_Human,((2*.@b)+2); bonus bHealPower,10*.@c; }
+28506:1414,{ .@r = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { .@val = 30; if (.@r>=9) { .@val += 20; bonus2 bAddClass,Class_Boss,.@val; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddRace,RC_Fish,.@val; bonus2 bAddRace,RC_Insect,.@val; bonus2 bSkillAtk,"RK_WINDCUTTER",.@val; if (.@r>=10) { bonus2 bVariableCastrate,"RK_WINDCUTTER",-50; } } } }
+28506:1449,{ .@r = getequiprefinerycnt(EQI_HAND_R); if (.@r>=7) { .@val = 30; if (.@r>=9) { .@val += 20; bonus2 bAddClass,Class_Boss,.@val; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddRace,RC_Fish,.@val; bonus2 bAddRace,RC_Insect,.@val; bonus2 bSkillAtk,"RK_WINDCUTTER",.@val; if (.@r>=10) { bonus2 bVariableCastrate,"RK_WINDCUTTER",-50; } } } }
+28506:15037,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bResEff,Eff_Freeze,10000; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=7) { bonus bMaxHPrate,15; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@r>=9) { bonus bMaxHPrate,15; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } }
28506:15037:2476:2575:2884,{ autobonus3 "{bonus bDelayrate,-70;}",1000,10000,"LK_AURABLADE","{specialeffect2 EF_ENHANCE;}"; }
-28506:2476,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; if (.@r>=7) { bonus bAspdRate,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; } if (.@r>=9) { bonus bAspdRate,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; } }
-28506:2575,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSkillUseSP,"RK_WINDCUTTER",18; bonus2 bSubRace,RC_Player,3; if (.@r>=7) { bonus bLongAtkDef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; } if (.@r>=9) { bonus bLongAtkDef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; } }
-28506:2884,{ bonus2 bAddClass,Class_All,5; bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; }
+28506:2476,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=7) { bonus bAspdRate,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } if (.@r>=9) { bonus bAspdRate,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } }
+28506:2575,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSkillUseSP,"RK_WINDCUTTER",18; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=7) { bonus bLongAtkDef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } if (.@r>=9) { bonus bLongAtkDef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } }
+28506:2884,{ bonus2 bAddClass,Class_All,5; bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; }
28508:28612,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bAspdRate,8; bonus bCritAtkRate,(5*(.@r/2)); if (.@r >= 9) { bonus bCritical,15; bonus2 bResEff,Eff_Curse,10000; if (.@r >= 11) { bonus bBaseAtk,100; } } }
28509:28626,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bAspdRate,8; bonus bCritAtkRate,(5*(.@r/2)); if (.@r >= 9) { bonus bCritical,15; if (.@r >= 11) { bonus bBaseAtk,100; } } }
28594:4875,{ bonus bStr,40; bonus bMaxHPrate,10; }
@@ -1254,6 +1531,71 @@
28907:2998,{ bonus bSpeedRate,25; }
28908:2998,{ bonus bDelayrate,-10; }
28909:2998,{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }
+29426:29423,{ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; }
+29426:29424,{ bonus2 bFixedCastrate,"CH_SOULCOLLECT",-40; }
+29426:29425,{ bonus4 bAutoSpellOnSkill,"SR_RAMPAGEBLASTER","CH_SOULCOLLECT",300,1; }
+29427:29613,{ bonus2 bSkillAtk,"SR_TIGERCANNON",15; }
+29427:29612,{ bonus bMaxHPrate,10; }
+29427:29611,{ bonus2 bSkillAtk,"SR_TIGERCANNON",15; }
+29431:29428,{ bonus2 bSkillAtk,"RA_ARROWSTORM",15; }
+29431:29429,{ bonus bVariableCastrate,-10; }
+29431:29430,{ autobonus3 "{ bonus bLongAtkRate,5; }",1000,60000,"SN_WINDWALK"; }
+29435:29432,{ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; }
+29435:29433,{ bonus2 bSkillCooldown,"SO_WARMER",-15000; }
+29435:29434,{ bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-2000; }
+29463:29460,{ bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; }
+29463:29461,{ bonus2 bSkillUseSPrate,"RK_DRAGONBREATH",10; bonus2 bSkillUseSPrate,"RK_DRAGONBREATH_WATER",10; }
+29463:29462,{ bonus bDelayrate,-5; }
+29467:29464,{ bonus2 bSkillAtk,"GN_CARTCANNON",15; }
+29467:29465,{ bonus2 bSkillCooldown,"GN_MANDRAGORA",-3000; }
+29467:29466,{ bonus bLongAtkRate,5; }
+29471:29468,{ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }
+29471:29469,{ bonus bFixedCast,-100*(getskilllv("HW_SOULDRAIN")/2); }
+29471:29470,{ bonus2 bMagicAtkEle,ELE_FIRE,5; }
+29480:29477,{ bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; }
+29480:29478,{ bonus bLongAtkRate,10; }
+29480:29479,{ bonus2 bSkillUseSPrate,"SC_TRIANGLESHOT",10; }
+29484:29481,{ bonus2 bSPDrainRate,20,1; }
+29484:29482,{ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; }
+29484:29483,{ bonus2 bSkillAtk,"NC_AXETORNADO",15; }
+29488:29485,{ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; }
+29488:29486,{ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; }
+29488:29487,{ bonus2 bSkillFixedCast,"WM_SEVERE_RAINSTORM",-500; }
+29516:29513,{ bonus2 bSkillAtk,"AB_ADORAMUS",15; }
+29516:29514,{ bonus2 bSkillCooldown,"AB_ADORAMUS",-1000; }
+29516:29515,{ bonus bFixedCast,-500; }
+29520:29517,{ bonus2 bSPDrainRate,20,1; }
+29520:29518,{ bonus2 bSkillCooldown,"LG_CANNONSPEAR",-500; }
+29520:29519,{ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; }
+29524:29521,{ bonus2 bSPDrainRate,20,1; }
+29524:29522,{ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; }
+29524:29523,{ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; }
+29614:29615,{ bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; }
+29614:29616,{ bonus2 bSkillAtk,"SO_EARTHGRAVE",20; }
+29614:29617,{ bonus2 bSkillAtk,"SO_DIAMONDDUST",10; }
+29618:29619,{ bonus2 bSPDrainRate,10,1; }
+29618:29620,{ bonus2 bSkillUseSPrate,"SC_FATALMENACE",10; }
+29618:29621,{ bonus2 bSkillAtk,"SC_FATALMENACE",10; }
+29654:29651,{ bonus bFixedCast,-500; }
+29654:29652,{ bonus2 bSkillAtk,"SP_SPA",20; }
+29654:29653,{ bonus2 bSkillAtk,"SP_SWHOO",20; }
+29658:29655,{ bonus2 bSkillAtk,"SJ_SOLARBURST",15; }
+29658:29656,{ bonus2 bSkillAtk,"SJ_FALLINGSTAR",15; }
+29658:29657,{ bonus2 bSPDrainRate,10,1; }
+29662:29659,{ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; }
+29662:29660,{ bonus2 bSkillAtk,"KO_BAKURETSU",25; }
+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; }
+29667:29664,{ bonus2 bSkillAtk,"RL_R_TRIP",15;}
+29667:29665,{ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; }
+29667:29666,{ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",25; }
+29671:29668,{ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20; }
+29671:29669,{ bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-1000; }
+29671:29670,{ bonus2 bSkillCooldown,"SU_CN_METEOR",-1000; }
+31024:31026,{ bonus bAspd,1; }
+31025:31026,{ bonus bVariableCastrate,-10; }
32228:15388:15389,{ bonus bBaseAtk,25; bonus bHit,10; }
32229:15388:15389,{ bonus bMatk,25; bonus bVariableCastrate,-8; }
32230:15388:15389,{ bonus bCritAtkRate,7; bonus2 bAddClass,Class_All,5; }
@@ -1266,4 +1608,696 @@
32222:15093,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus5 bAutoSpell,"AL_HEAL",10,-(50+.@r),BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,-(50+.@r),BF_SHORT,1; bonus2 bSkillAtk,"RK_STORMBLAST",5*.@r; bonus2 bSkillAtk,"LG_BANISHINGPOINT",5*.@r; }
32222:15095,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus5 bAutoSpell,"PR_KYRIE",10,-(50+.@r),BF_SHORT,0; bonus2 bSkillAtk,"AB_JUDEX",5*.@r; bonus2 bSkillAtk,"AB_ADORAMUS",5*.@r; bonus2 bSkillAtk,"SR_DRAGONCOMBO",5*.@r; bonus2 bSkillAtk,"SR_SKYNETBLOW",5*.@r; bonus2 bSkillAtk,"SR_EARTHSHAKER",5*.@r; }
32222:15096,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bAllStats,2*.@r; bonus3 bAddEff,Eff_Stun,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Curse,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Poison,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Silence,.@r*50,ATF_SHORT; /* Unknow rates */ }
-32238:32239,{ bonus bVariableCastrate,-10; bonus bMatkRate,10; }
+32238:32239,{ bonus bVariableCastrate,-10; bonus bMatkRate,10; }
+1336:15388:15389,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; autobonus "{ bonus bLongAtkRate,10; }",10,10000,BF_WEAPON; if(.@r >= 30){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } }
+1590:4037,{ bonus bAspdRate,5; }
+1590:4117,{ bonus bAspdRate,5; }
+1590:4037:4117,{ bonus bAspd,1; }
+1598:4037,{ bonus bAspdRate,5; }
+1598:4117,{ bonus bAspdRate,5; }
+1598:4037:4117,{ bonus bAspd,1; }
+//[TODO]Warrior's Sword:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+//[TODO]Warrior's Gun:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+//[TODO]Warrior's Mace:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+//[TODO]Warrior's Staff:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+//[TODO]Warrior's Bow:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+1448:32234,{ bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Brute,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; }
+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: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; }
+22171:560002,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000,BF_WEAPON; }
+22171:590003,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; }
+22171:640004,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; }
+22171:550007,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; }
+22238:600009,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:21058,{ bonus bVit,10; bonus bLongAtkRate,5; }
+22238:610008,{ bonus bAgi,10; bonus bShortAtkRate,7; }
+22238:610009,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:500013,{ bonus bDex,10; bonus bLongAtkRate,5; }
+22238:500014,{ bonus bVit,10; bonus bShortAtkRate,5; }
+22238:700013,{ bonus bDex,10; bonus bLongAtkRate,5; }
+22238:570009,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:580009,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:620004,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:510019,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:510020,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:590011,{ bonus bStr,10; bonus bLongAtkRate,5; }
+22238:700018,{ bonus bDex,10; bonus2 bAddClass,Class_All,7; }
+22238:700019,{ bonus bDex,10; bonus2 bAddClass,Class_All,7; }
+22238:550012,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:550013,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:560008,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:560009,{ bonus bVit,10; bonus2 bAddClass,Class_All,7; }
+22238:530006,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:500017,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:640011,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:640012,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:540011,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:590012,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:550014,{ bonus bLuk,10; bonus2 bAddClass,Class_All,7; bonus bMatkRate,7; }
+22238:510022:28763,{ bonus bDex,10; bonus2 bAddClass,Class_All,7; }
+22238:650004,{ bonus bStr,10; bonus bLongAtkRate,5; }
+22238:540010,{ bonus bStr,10; bonus2 bAddClass,Class_All,7; }
+22238:550015,{ bonus bInt,10; bonus bMatkRate,7; }
+22238:800002,{ bonus bDex,10; bonus2 bAddClass,Class_All,7; }
+22238:810001,{ bonus bInt,10; bonus2 bMagicAddEle,Ele_Ghost,5; }
+22238:840001,{ bonus bDex,10; bonus bLongAtkRate,5; }
+22238:830002,{ bonus bDex,10; bonus bLongAtkRate,5; }
+22238:820001,{ bonus bDex,10; bonus bLongAtkRate,5; }
+28763:510022,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_HAND_L); bonus bBaseAtk,15*(.@r/3); bonus2 bAddClass,Class_All,3*(.@r/5); if (.@r>=14){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",30; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } if (.@r>=16){ skill "OB_ZANGETSU",getskilllv("KG_KAGEHUMI"); skill "KG_KAGEHUMI",getskilllv("OB_ZANGETSU"); } if (.@r>=18){ bonus2 bAddEle,Ele_All,15; } if (.@r>=20){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } }
+1870:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+15391:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bBaseAtk,15*(readparam(bStr)/15); autobonus2 "{ bonus2 bAddClass,Class_All,10; if (readparam(bStr)>=120) { bonus2 bAddClass,Class_All,15; } }",1+(readparam(bStr)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } }
+2060:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+13347:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+18191:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+18198:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+21055:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bCritAtkRate,20; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+26165:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+26166:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Dark,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+26172:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bMatkRate,10; }",1,10000,BF_MAGIC; autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bMatk,30; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,20; } }
+26216:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+27382:4604,{ bonus2 bMagicAtkEle,Ele_Neutral,30; bonus2 bMagicAtkEle,Ele_Fire,30; }
+27383:4601,{ bonus2 bAddSize,Size_All,5; bonus bMatkRate,5; }
+27383:4602,{ bonus2 bAddSize,Size_All,10; bonus bMatkRate,10; }
+27384:27385,{ bonus2 bSubSize,Size_Medium,5; bonus2 bMagicSubSize,Size_Medium,5; bonus2 bSubSize,Size_Large,5; bonus2 bMagicSubSize,Size_Large,5; bonus2 bMagicAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Large,5; }
+27387:27386,{ bonus2 bAddRace,RC_Undead,5; bonus2 bAddRace,RC_Demon,5; }
+27388:4038,{ bonus bMaxHPrate,15; }
+28046:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+28141:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+28636:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+28774:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bAddClass,Class_All,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=40) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+28774:28775,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,7*(.@sum/2); if (.@sum>=18) { bonus2 bSkillAtk,"GC_COUNTERSLASH",20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20; } if (.@sum>=22) { bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Angel,30; } }
+28776:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+32027:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+32111:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } }
+32304:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+32353:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; }",1,10000,BF_MAGIC; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,20; } }
+32401:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+32402:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Earth,20; } }
+32403:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } }
+300128:300130,{ bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; }
+300141:300120,{ bonus2 bMagicAddEle,Ele_Water,15; }
+300144:300150,{ bonus bCritAtkRate,15; }
+300146:4521,{ bonus bCritAtkRate,15; }
+300147:4089,{ bonus bMatkRate,3; }
+300148:300140,{ bonus bMatk,30; }
+300148:300142,{ bonus bBaseAtk,30; }
+300149:300141,{ bonus2 bSubEle,Ele_Neutral,5; }
+300150:4524,{ bonus bMaxHPrate,15; bonus bStr,4; }
+400049:18179,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus bLongAtkRate,3*(.@r_weapon/2); }
+400049:18180,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10; bonus bLongAtkRate,3*(.@r_weapon/2); }
+400049:32019,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,30; bonus2 bSkillAtk,"LG_CANNONSPEAR",4*(.@r_weapon/2); }
+400053:480054:490069:490070,{ bonus2 bAddSize,Size_Small,20; bonus bCritical,5; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bStr,5; if (.@r>=18) { bonus bFlee2,10; bonus bBaseAtk,50; } if (.@r>=22) { bonus2 bAddSize,Size_Medium,20; bonus bCritAtkRate,20; } }
+400054:13493,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_HELLINFERNO",4*(.@r/2); }
+400054:26151,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_COMET",5*(.@r/2); }
+400054:28755,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bSkillAtk,"NJ_KOUENKA",3*(.@r/2); bonus2 bSkillAtk,"NJ_HYOUSENSOU",3*(.@r/2); bonus2 bSkillAtk,"NJ_HUUJIN",3*(.@r/2); }
+450144:1846,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus2 bAddClass,Class_All,5; } if (.@sum>=18) { bonus2 bSkillAtk,"SR_SKYNETBLOW",20; } if (.@sum>=22) { bonus bDelayrate,-10; } }
+450146:610012,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddClass,Class_All,5; if (.@sum>=7) { bonus bCritical,5; } if (.@sum>=18) { bonus bCritAtkRate,15; } if (.@sum>=22) { bonus2 bAddEle,Ele_Fire,10; bonus2 bAddRace,RC_Insect,10; } }
+490069:490070,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,10; }
+570008:20838,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; } if (.@sum>=22) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } }
+570008:22133,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus bMatk,40; if (.@sum>=7) { bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@sum>=22) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } }
+580008:20838,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; } if (.@sum>=22) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } }
+580008:22133,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus bMatk,40; if (.@sum>=7) { bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@sum>=22) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } }
+600011:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus bCritical,5; } if (.@sum>=18) { bonus2 bSkillAtk,"RK_STORMBLAST",20; } if (.@sum>=22) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddRace,RC_Fish,15; } }
+610012:28509,{ bonus2 bAddClass,Class_All,5; if (getequiprefinerycnt(EQI_HAND_R)>=9) { bonus bCritAtkRate,20; } if (getequiprefinerycnt(EQI_HAND_R)>=11) { autobonus3 "{ bonus bCritical,15; }",1000,30000,"GC_VENOMIMPRESS"; } }
+630006:450145,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddClass,Class_All,5; if (.@sum>=7) { bonus bDelayrate,-5; } if (.@sum>=18) { bonus2 bSkillAtk,"LG_OVERBRAND",20; } if (.@sum>=22) { autobonus3 "{ bonus2 bAddRace,RC_Fish,50; bonus2 bAddRace,RC_Demon,50; bonus bBaseAtk,50; }",1000,10000,"LG_OVERBRAND"; } }
+630007:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; } if (.@sum>=22) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddRace,RC_Fish,15; } }
+15392:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bLongAtkRate,7; bonus bMdef,8; bonus bDef,50; bonus bAspdRate,4*(readparam(bAgi)/15); autobonus2 "{ bonus bLongAtkRate,10; if (readparam(bAgi)>=120) { bonus bLongAtkRate,10; } }",1+(readparam(bAgi)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } }
+15393:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,10; bonus bMdef,15; bonus bDef,80; bonus2 bSubSize,Size_Medium,(readparam(bVit)/30); bonus2 bMagicSubSize,Size_Medium,(readparam(bVit)/30); bonus2 bSubSize,Size_Large,(readparam(bVit)/30); bonus2 bMagicSubSize,Size_Large,(readparam(bVit)/30); autobonus2 "{ bonus2 bSubSize,Size_All,7; bonus2 bMagicSubSize,Size_All,7; if (readparam(bVit)>=120) { bonus2 bSubSize,Size_All,5; bonus2 bMagicSubSize,Size_All,5; } }",1+(readparam(bVit)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } }
+15394:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bAspdRate,3*(readparam(bDex)/15); bonus bVariableCastrate,-3*(readparam(bDex)/15); autobonus2 "{ bonus bFlee2,10; bonus bFlee,50; if (readparam(bDex)>=120) { bonus bFlee2,5; bonus bFlee,30; } }",1+(readparam(bDex)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,15; bonus bVariableCastrate,-15; bonus bDelayrate,-25; } }
+15395:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMatkRate,7; bonus bMdef,8; bonus bDef,50; bonus bHealPower,15; bonus bVariableCastrate,-4*(readparam(bInt)/15); autobonus2 "{ bonus2 bMagicAtkEle,Ele_All,20; bonus bHealPower,40; if (readparam(bInt)>=120) { bonus2 bMagicAtkEle,Ele_All,10; } }",1+(readparam(bInt)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bVariableCastrate,-20; bonus bDelayrate,-25; } }
+15396:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bCritAtkRate,3*(readparam(bLuk)/15); bonus bCritical,2*(readparam(bLuk)/15); autobonus2 "{ bonus bCritAtkRate,10; bonus2 bAddClass,Class_All,7; if (readparam(bLuk)>=120) { bonus bCritAtkRate,10; bonus2 bAddClass,Class_All,7; } }",1+(readparam(bLuk)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } }
+15397:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bStr,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus2 bAddClass,Class_All,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+15398:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bAgi,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bLongAtkRate,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+15399:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,20; bonus bDef,50; bonus bVit,8; bonus2 bSubRace,RC_Angel,20; bonus2 bSubRace,RC_Demon,20; if (.@sum>=27) { bonus bMatkRate,4; bonus2 bAddClass,Class_All,4; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+15400:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bDex,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+15401:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bInt,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bMatkRate,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+15402:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bLuk,8; if (.@sum>=27) { bonus2 bAddClass,Class_All,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } }
+32248:32250,{ bonus bAspdRate,15; bonus bMaxHPrate,10; }
+// 32248:?,{ bonus bFixedCast,-300; bonus bDelayrate,-7; bonus2 bSubSize,Size_All,3; } /* einbech weapons? */
+32248:32251,{ bonus bVariableCastrate,-15; bonus bMaxHPrate,10; }
+32249:32250,{ bonus bAspdRate,15; bonus bMaxHPrate,10; }
+// 32249:?,{ bonus bFixedCast,-300; bonus bDelayrate,-7; bonus2 bMagicSubSize,Size_All,3; } /* einbech weapons? */
+32249:32251,{ bonus bVariableCastrate,-15; bonus bMaxHPrate,10; }
+300001:4062,{ bonus2 bAddEle,Ele_Poison,15; }
+300002:4334,{ bonus bLongAtkDef,10; bonus bMaxHPrate,5; }
+300003:4337,{ bonus bBaseAtk,10; bonus bBaseAtk,getequiprefinerycnt(EQI_SHOES); }
+300004:4339,{ bonus bDef,20; bonus bDef,3*getequiprefinerycnt(EQI_GARMENT); }
+300005:4335,{ bonus2 bSkillAtk,"SO_EARTHGRAVE",getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SO_EARTHGRAVE",10; }
+300006:4336,{ bonus2 bMagicAtkEle,Ele_Neutral,30; }
+300008:4406,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAddRace,RC_Demon,3*(.@r/2); }
+300013:4407,{ bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,5; }
+300014:4407,{ bonus2 bAddClass,Class_All,5; bonus bMaxHPrate,10; }
+300015:4378,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus bMaxHPrate,4*(.@r/4); bonus bMaxSPrate,4*(.@r/4); }
+300016:4387,{ bonus bCritAtkRate,2; }
+300017:4005,{ bonus2 bAddEle,Ele_Dark,15; }
+300018:4085,{ bonus2 bAddEle,Ele_Holy,15; }
+300019:300020,{ bonus2 bAddRace,RC_Dragon,5; bonus2 bAddRace,RC_Brute,5; }
+310076:15397,{ bonus2 bAddRace,RC_All,12; bonus2 bAddClass,Class_All,5; }
+310077:15398,{ bonus bPerfectHitRate,5; bonus bAspd,1; }
+310078:15399,{ bonus bDelayrate,-5; bonus bMaxHPrate,5; }
+310079:15400,{ bonus bFixedCast,-300; }
+310080:15401,{ bonus2 bMagicAtkEle,Ele_All,12; bonus bVariableCastrate,-10; }
+310081:15402,{ bonus2 bAddSize,Size_All,12; bonus bCritical,10; }
+300076:300082:300089,{ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; bonus2 bSkillAtk,"LG_CANNONSPEAR",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"LG_BANISHINGPOINT",5*(.@r_shoes/2); bonus2 bSkillAtk,"LG_CANNONSPEAR",5*(.@r_weapon/2); }
+300077:27013:300092,{ bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; bonus2 bSkillAtk,"NC_VULCANARM",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"NC_VULCANARM",5*(.@r_shoes/2); bonus2 bSkillAtk,"NC_AXEBOOMERANG",5*(.@r_weapon/2); }
+300101:300089:300094,{ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",20; bonus2 bSkillAtk,"RK_DRAGONBREATH",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RK_DRAGONBREATH",5*(.@r_shoes/2); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5*(.@r_weapon/2); }
+300102:4633:300092,{ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20; bonus2 bSkillAtk,"GN_CARTCANNON",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"GN_CARTCANNON",5*(.@r_shoes/2); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5*(.@r_weapon/2); }
+300104:300081:300124,{ bonus2 bSkillAtk,"SO_DIAMONDDUST",20; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5*(.@r_shoes/2); bonus2 bSkillAtk,"SO_DIAMONDDUST",5*(.@r_weapon/2); }
+300105:300081:300106,{ bonus2 bSkillAtk,"WL_CRIMSONROCK",20; bonus2 bSkillAtk,"WL_COMET",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"WL_COMET",5*(.@r_shoes/2); bonus2 bSkillAtk,"WL_CRIMSONROCK",5*(.@r_weapon/2); }
+300108:27172:300097,{ bonus2 bSkillAtk,"SC_FATALMENACE",20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SC_FATALMENACE",5*(.@r_shoes/2); bonus2 bSkillAtk,"SC_TRIANGLESHOT",5*(.@r_weapon/2); }
+300109:27313:300097,{ bonus2 bSkillAtk,"GC_COUNTERSLASH",20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"GC_COUNTERSLASH",5*(.@r_shoes/3); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",5*(.@r_shoes/3); }
+300110:4575:300083,{ bonus2 bSkillAtk,"KO_BAKURETSU",20; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"KO_BAKURETSU",5*(.@r_shoes/3); bonus2 bSkillAtk,"KO_JYUMONJIKIRI",5*(.@r_shoes/3); }
+300111:27320:300083,{ bonus2 bSkillAtk,"NJ_KOUENKA",20; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"NJ_KOUENKA",5*(.@r_shoes/3); bonus2 bSkillAtk,"NJ_HYOUSENSOU",5*(.@r_shoes/3); bonus2 bSkillAtk,"NJ_HUUJIN",5*(.@r_shoes/3); }
+300112:300085:300114,{ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20; bonus2 bSkillAtk,"SP_SWHOO",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SP_CURSEEXPLOSION",5*(.@r_shoes/2); bonus2 bSkillAtk,"SP_SWHOO",5*(.@r_weapon/2); }
+300113:300095:300096,{ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"WM_REVERBERATION",5*(.@r_shoes/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*(.@r_weapon/2); }
+300115:27308:300093,{ bonus2 bSkillAtk,"AB_ADORAMUS",20; bonus2 bSkillAtk,"AB_JUDEX",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"AB_ADORAMUS",5*(.@r_shoes/2); bonus2 bSkillAtk,"AB_JUDEX",5*(.@r_weapon/2); }
+300116:27311:300093,{ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; bonus2 bSkillAtk,"SR_TIGERCANNON",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SR_TIGERCANNON",5*(.@r_shoes/2); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",5*(.@r_weapon/2); }
+300117:4633:300095,{ bonus2 bSkillAtk,"RA_ARROWSTORM",20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RA_CLUSTERBOMB",5*(.@r_shoes/2); bonus2 bSkillAtk,"RA_ARROWSTORM",5*(.@r_weapon/2); }
+300118:300085:300088,{ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",5*(.@r_shoes/2); bonus2 bSkillAtk,"SJ_FULLMOONKICK",5*(.@r_weapon/2); }
+300119:27307:300091,{ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; bonus2 bSkillAtk,"RL_R_TRIP",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",5*(.@r_shoes/2); bonus2 bSkillAtk,"RL_R_TRIP",5*(.@r_weapon/2); }
+300120:27121,{ bonus2 bMagicAddEle,Ele_Water,15; bonus bMatk,10; }
+300122:300121,{ bonus2 bSubEle,Ele_Neutral,5; }
+300123:300121,{ bonus2 bSubEle,Ele_Neutral,5; }
+300125:300087:300114,{ bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SU_CN_METEOR",5*(.@r_shoes/2); bonus2 bSkillAtk,"SU_PICKYPECK",5*(.@r_weapon/2); }
+310003:310000,{ bonus2 bSkillAtk,"RA_AIMEDBOLT",15; }
+310003:310001,{ bonus2 bSkillVariableCast,"RA_AIMEDBOLT",-1000; }
+310003:310002,{ bonus2 bSkillCooldown,"RA_UNLIMIT",-45000; }
+310007:310004,{ bonus bLongAtkRate,10; }
+310007:310005,{ bonus2 bSkillAtk,"NC_VULCANARM",20; }
+310007:310006,{ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20; }
+310011:310008,{ bonus2 bSkillAtk,"AB_JUDEX",15; }
+310011:310009,{ bonus2 bSkillUseSPrate,"AB_JUDEX",10; }
+310011:310010,{ bonus2 bMagicAtkEle,Ele_Holy,10; }
+310180:310181,{ bonus2 bSkillAtk,"WL_COMET",15; }
+310180:310182,{ bonus bFixedCast,getskilllv("HW_MAGICPOWER")/2*-100; }
+310180:310183,{ bonus2 bMagicAtkEle,Ele_Neutral,5; }
+310184:310185,{ bonus bFixedCast,getskilllv("CR_AUTOGUARD")/2*-100; }
+310184:310186,{ bonus2 bMagicAtkEle,Ele_Holy,5; }
+310184:310187,{ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; }
+310188:310189,{ bonus2 bAddClass,Class_All,5; bonus bCritAtkRate,15; }
+310188:310190,{ bonus2 bSkillAtk,"GC_COUNTERSLASH",20; }
+310188:310191,{ bonus bDelayrate,-5; }
+500001:450001:470000:480000:490004,{ bonus bAspd,2; bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"GN_CART_TORNADO",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"GN_CART_TORNADO\",20; }",1000,60000,"GN_CARTBOOST"; }
+500001:450004:470003:480003:490007,{ bonus bMaxHPrate,10; bonus bVariableCastrate,-10; bonus2 bSkillAtk,"GN_CARTCANNON",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"GN_CARTCANNON\",20; }",1000,60000,"GN_CARTBOOST"; }
+510001:450002:470001:480001:490005,{ bonus bMatk,20; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WZ_METEORSTORM",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"WZ_METEORSTORM\",35; }",1000,60000,"ST_PRESERVE"; }
+510001:450001:470000:480000:490004,{ bonus2 bAddClass,Class_All,5; bonus bDelayrate,-15; bonus2 bSkillAtk,"SC_FATALMENACE",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"SC_FATALMENACE\",35; }",1000,60000,"ST_PRESERVE"; }
+510002:450002:470001:480001:490005,{ bonus bMatk,20; bonus bVariableCastrate,-10; .@i = min(BaseLevel,180)/15*2; bonus2 bSkillAtk,"NJ_KOUENKA",.@i; bonus2 bSkillAtk,"NJ_HYOUSENSOU",.@i; bonus2 bSkillAtk,"NJ_HUUJIN",.@i; autobonus3 "{ bonus2 bSkillAtk,\"NJ_KOUENKA\",35; bonus2 bSkillAtk,\"NJ_HYOUSENSOU\",35; bonus2 bSkillAtk,\"NJ_HUUJIN\",35; }",1000,60000,"NJ_NEN"; }
+510002:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-1000; bonus2 bSkillAtk,"KO_HAPPOKUNAI",min(BaseLevel/15); autobonus3 "{ bonus2 bSkillAtk,\"KO_HAPPOKUNAI\",20; }",1000,60000,"NJ_NEN"; }
+520000:450001:470000:480000:490004,{ bonus bDelayrate,-10; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillAtk,"NC_AXETORNADO",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"NC_AXETORNADO\",20; }",1000,60000,"BS_WEAPONPERFECT"; }
+520000:450004:470003:480003:490007,{ bonus bVariableCastrate,-10; bonus bDelayrate,-10; bonus2 bSkillAtk,"NC_ARMSCANNON",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"NC_ARMSCANNON\",20; }",1000,60000,"BS_WEAPONPERFECT"; }
+530000:450003:470002:480002:490006,{ bonus bMatk,20; bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"LG_RAYOFGENESIS\",20; }",1000,60000,"AL_CURE"; }
+530000:450004:470003:480003:490007,{ bonus bAspd,2; bonus bLongAtkRate,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"LG_BANISHINGPOINT\",35; }",1000,60000,"CR_SPEARQUICKEN"; }
+540000:450002:470001:480001:490005,{ bonus bMatk,20; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"SO_PSYCHIC_WAVE\",20; }",1000,60000,"PF_MEMORIZE"; }
+540000:450003:470002:480002:490006,{ bonus bMatk,20; bonus bAspd,2; .@i = min(BaseLevel,180)/15; bonus2 bSkillAtk,"MG_FIREBOLT",.@i; bonus2 bSkillAtk,"MG_COLDBOLT",.@i; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@i; autobonus3 "{ bonus2 bSkillAtk,\"MG_FIREBOLT\",35; bonus2 bSkillAtk,\"MG_COLDBOLT\",35; bonus2 bSkillAtk,\"MG_LIGHTNINGBOLT\",35; }",1000,60000,"PF_DOUBLECASTING"; }
+540001:450001:470000:480000:490004,{ bonus bBaseAtk,20; bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"SJ_FULLMOONKICK",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"SJ_FULLMOONKICK\",20; }",1000,60000,"SJ_NEWMOONKICK"; }
+540001:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus bAspd,2; bonus2 bSkillAtk,"SJ_FALLINGSTAR",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"SJ_FALLINGSTAR\",20; }",1000,60000,"SJ_FLASHKICK"; }
+550001:450002:470001:480001:490005,{ bonus bMatk,20; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SP_SWHOO",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"SP_SWHOO\",60; }",1000,60000,"SP_SPA"; }
+550001:450003:470002:480002:490006,{ bonus bMatk,20; bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"SP_CURSEEXPLOSION\",20; }",1000,60000,"SP_SOULCURSE"; }
+550002:450002:470001:480001:490005,{ bonus bMatk,20; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SU_CN_METEOR",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"SU_CN_METEOR\",35; }",1000,60000,"SU_SV_STEMSPEAR"; }
+550002:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus bDelayrate,-10; bonus2 bSkillAtk,"SU_PICKYPECK",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"SU_PICKYPECK\",35; }",1000,60000,"SU_ARCLOUSEDASH"; }
+560000:450001:470000:480000:490004,{ bonus bMaxHPrate,10; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SR_TIGERCANNON",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"SR_TIGERCANNON\",20; }",1000,60000,"CH_SOULCOLLECT"; }
+560000:450004:470003:480003:490007,{ bonus bMaxSPrate,10; bonus bDelayrate,-15; bonus2 bSkillAtk,"SR_KNUCKLEARROW",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"SR_KNUCKLEARROW\",35; }",1000,60000,"CH_SOULCOLLECT"; }
+570000:450002:470001:480001:490005,{ bonus bMatk,20; bonus bDelayrate,-10; bonus2 bSkillAtk,"WM_REVERBERATION",min(BaseLevel/15); autobonus3 "{ bonus2 bSkillAtk,\"WM_REVERBERATION\",20; }",1000,60000,"AC_CONCENTRATION"; }
+570000:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"WM_SEVERE_RAINSTORM\",20; }",1000,60000,"AC_CONCENTRATION"; }
+580000:450002:470001:480001:490005,{ bonus bMatk,20; bonus bDelayrate,-10; bonus2 bSkillAtk,"WM_REVERBERATION",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"WM_REVERBERATION\",35; }",1000,60000,"AC_CONCENTRATION"; }
+580000:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"WM_SEVERE_RAINSTORM\",20; }",1000,60000,"AC_CONCENTRATION"; }
+590000:450003:470002:480002:490006,{ bonus bMatk,20; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillAtk,"AB_ADORAMUS",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"AB_ADORAMUS\",20; }",1000,60000,"PR_MAGNIFICAT"; }
+590000:450004:470003:480003:490007,{ bonus bAspd,2; bonus bCritAtkRate,10; bonus2 bSkillAtk,"AB_DUPLELIGHT",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"AB_DUPLELIGHT\",20; }",1000,60000,"PR_MAGNIFICAT"; }
+600001:450001:470000:480000:490004,{ bonus bAspd,2; bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_SONICWAVE",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"RK_SONICWAVE\",35; }",1000,60000,"LK_CONCENTRATION"; }
+600001:450004:470003:480003:490007,{ bonus bMaxHPrate,10; bonus bDelayrate,-15; .@i = min(BaseLevel,180)/15; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@i; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@i; autobonus3 "{ bonus2 bSkillAtk,\"RK_DRAGONBREATH\",20; bonus2 bSkillAtk,\"RK_DRAGONBREATH_WATER\",20; }",1000,60000,"LK_CONCENTRATION"; }
+610000:450001:470000:480000:490004,{ bonus bAspd,2; bonus bCritAtkRate,10; bonus2 bAddEle,Ele_All,min(BaseLevel,180)/15; autobonus3 "{ bonus2 bAddEle,Ele_All,60; }",1000,60000,"ASC_EDP"; }
+610000:450004:470003:480003:490007,{ bonus2 bAddClass,Class_All,10; bonus bDelayrate,-15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"GC_ROLLINGCUTTER\",20; }",1000,60000,"ASC_EDP"; }
+640000:450002:470001:480001:490005,{ bonus bMatk,20; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",min(BaseLevel/15)*2; autobonus3 "{ bonus2 bSkillAtk,\"WL_CRIMSONROCK\",20; }",1000,60000,"HW_MAGICPOWER"; }
+640000:450003:470002:480002:490006,{ bonus bMatk,20; bonus bDelayrate,-10; bonus2 bSkillAtk,"WL_SOULEXPANSION",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"WL_SOULEXPANSION\",20; }",1000,60000,"HW_MAGICPOWER"; }
+700001:450001:470000:480000:490004,{ bonus bAspd,2; bonus bCritAtkRate,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"SN_SHARPSHOOTING\",20; }",1000,60000,"SN_SIGHT"; }
+700001:450004:470003:480003:490007,{ bonus bMaxHPrate,10; bonus bDelayrate,-15; bonus2 bSkillAtk,"RA_AIMEDBOLT",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"RA_AIMEDBOLT\",35; }",1000,60000,"SN_SIGHT"; }
+830000:450001:470000:480000:490004,{ bonus bBaseAtk,20; bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"RL_R_TRIP",min(BaseLevel,180)/15; autobonus3 "{ bonus2 bSkillAtk,\"RL_R_TRIP\",20; }",1000,60000,"RL_RICHS_COIN"; }
+830000:450004:470003:480003:490007,{ bonus bBaseAtk,20; bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; bonus2 bSkillAtk,"RL_FIRE_RAIN",min(BaseLevel,180)/15*2; autobonus3 "{ bonus2 bSkillAtk,\"RL_FIRE_RAIN\",35; }",1000,60000,"RL_RICHS_COIN"; }
+400044:16089,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,5; bonus bVariableCastrate,-3*(.@r/2); }
+400044:26151,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"SP_SPA",4*(.@r/2); bonus2 bSkillAtk,"SP_SWHOO",4*(.@r/2); }
+400044:26164,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"SU_CN_METEOR",-1000; bonus2 bSkillAtk,"SU_CN_METEOR",4*(.@r/2); }
+450127:480020,{ bonus bBaseAtk,50; }
+450127:480021,{ bonus bDelayrate,-10; }
+450128:480020,{ bonus bAspdRate,10; }
+450128:480021,{ bonus bMatk,50; }
+470022:450127,{ bonus2 bAddClass,Class_All,7; }
+470022:450128,{ bonus bAspdRate,7; }
+470023:450127,{ bonus bMaxSPrate,7; }
+470023:450128,{ bonus bMatkRate,7; }
+480020:470022,{ bonus bCritAtkRate,15; }
+480020:470023,{ bonus bVariableCastrate,-15; }
+480021:470022,{ bonus bLongAtkRate,7; }
+480021:470023,{ bonus2 bMagicAtkEle,Ele_All,15; }
+29587:4877,{ bonus bCritAtkRate,30; }
+29588:4875,{ bonus2 bAddSize,Size_All,25; }
+29589:4879,{ bonus2 bAddClass,Class_All,10; }
+29590:4876,{ bonus2 bMagicAtkEle,Ele_All,15; }
+29591:4878,{ bonus bDelayrate,-10; }
+29592:4880,{ bonus bAspd,2; }
+310257:29460,{ bonus2 bSkillAtk,"RK_SONICWAVE",20; }
+310257:29461,{ bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; }
+310257:29462,{ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",30; }
+310261:29464,{ bonus2 bSkillCooldown,"GN_CART_TORNADO",-700; }
+310261:29465,{ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20; }
+310261:29466,{ bonus bFixedCast,-100*(getskilllv("CR_ACIDDEMONSTRATION")/2); }
+310265:2235,{ bonus2 bSkillAtk,"WM_REVERBERATION",10; }
+310325:310326:310330,{ bonus bLongAtkRate,6; }
+310327:310328:310329,{ bonus bShortAtkRate,6; }
+24477:24293,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24477:24476:24478,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",.@sum; }
+24479:24306,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24479:24480:24481,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"SR_SKYNETBLOW",.@sum; }
+24483:24293,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24483:24482:24484,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@sum/2; }
+24485:24306,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; bonus2 bSkillAtk,"SR_TIGERCANNON",.@sum; }
+24485:24486:24487,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus bMaxHPrate,.@sum/2; bonus bMaxSPrate,.@sum/2; }
+24489:24292,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24489:24488:24490,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"AB_DUPLELIGHT",.@sum; }
+24491:24305,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24491:24492:24493,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"AB_ADORAMUS",.@sum/2; }
+24495:24292,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24495:24494:24496,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"AB_JUDEX",.@sum; }
+24497:24305,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24497:24498:24499,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"PR_MAGNUS",.@sum; }
+24501:24299,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24501:24300,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24501:24500:24502,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",.@sum/2; }
+24503:24312,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24503:24313,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24503:24504:24505,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"CG_ARROWVULCAN",.@sum; }
+24507:24299,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24507:24300,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24507:24506:24508,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"WM_METALICSOUND",.@sum; }
+24509:24312,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24509:24313,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24509:24510:24511,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"WM_REVERBERATION",.@sum/2; }
+24513:24296,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24513:24512:24514,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"WL_JACKFROST",.@sum; }
+24515:24309,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24515:24516:24517,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@sum; }
+24519:24296,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24519:24518:24520,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"WL_CRIMSONROCK",.@sum; }
+24521:24309,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24521:24522:24523,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"WL_CHAINLIGHTNING",.@sum; }
+24525:24295,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24525:24524:24526,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@sum/2; }
+24527:24308,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24527:24528:24529,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",.@sum; }
+24531:24295,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24531:24530:24532,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@sum/2; }
+24533:24308,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus bVariableCastrate,-.@sum/2; }
+24533:24534:24535,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"SC_FEINTBOMB",.@sum/2; }
+24537:24294,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24537:24536:24538,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",.@sum; }
+24539:24307,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24539:24540:24541,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus bBaseAtk,.@sum; }
+24543:24294,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24543:24542:24544,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@sum/2; }
+24545:24307,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24545:24546:24547,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",.@sum/2; }
+24549:24297,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24549:24548:24550,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SO_DIAMONDDUST",.@sum; }
+24551:24310,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24551:24552:24553,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"SO_EARTHGRAVE",.@sum; }
+24555:24297,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24555:24554:24556,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",.@sum; }
+24557:24310,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24557:24558:24559,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",.@sum; }
+24561:24291,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24561:24560:24562,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"GN_CART_TORNADO",.@sum; }
+24563:24304,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus bVariableCastrate,-.@sum/2; }
+24563:24564:24565,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"GN_CARTCANNON",.@sum/2; }
+24567:24291,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24567:24566:24568,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@sum; }
+24569:24304,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24569:24570:24571,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"GN_CRAZYWEED",.@sum; }
+24573:24289,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24573:24572:24574,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@sum/2; }
+24575:24302,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24575:24576:24577,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"LG_SHIELDPRESS",.@sum; bonus2 bSkillAtk,"PA_SHIELDCHAIN",.@sum; }
+24579:24289,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24579:24578:24580,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@sum/2; bonus2 bSkillAtk,"LG_CANNONSPEAR",.@sum/2; }
+24581:24302,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24581:24582:24583,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@sum; }
+24589:24584:24585:24586:24587:24588,{ bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-500; bonus3 bAutoSpell,"RK_IGNITIONBREAK",max(3,getskilllv("RK_IGNITIONBREAK")),1; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bDelayrate,-15; }
+24590:24584:24585:24586:24587:24588,{ bonus2 bSkillCooldown,"LG_CANNONSPEAR",-500; bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bAspd,2; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; }
+24591:24584:24585:24586:24587:24588,{ bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus2 bAddSize,Size_All,5; bonus bLongAtkRate,15; bonus bDelayrate,-15; bonus2 bSkillAtk,"NC_AXETORNADO",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; }
+24592:24584:24585:24586:24587:24588,{ bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bDelayrate,-15; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"GN_CART_TORNADO",-1000; bonus2 bSkillAtk,"GN_CART_TORNADO",15; bonus2 bSkillAtk,"GN_CARTCANNON",15; }
+24593:24584:24585:24586:24587:24588,{ bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bDelayrate,-15; bonus bCritical,10; bonus2 bSkillAtk,"GC_COUNTERSLASH",15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; }
+24594:24584:24585:24586:24587:24588,{ bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",3,1; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bDelayrate,-15; bonus bAspd,2; bonus2 bSkillAtk,"SC_FATALMENACE",15; bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; }
+24595:24584:24585:24586:24587:24588,{ bonus2 bMagicAtkEle,Ele_All,10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bDelayrate,-15; bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }
+24596:24584:24585:24586:24587:24588,{ bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-4000; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }
+24597:24584:24585:24586:24587:24588,{ bonus2 bSkillAtk,"AB_ADORAMUS",15; bonus2 bSkillAtk,"AB_DUPLELIGHT",15; bonus2 bMagicAddSize,Size_All,10; bonus2 bAddSize,Size_All,10; bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus2 bSkillCooldown,"AB_ADORAMUS",-1000; }
+24598:24584:24585:24586:24587:24588,{ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-7500; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bDelayrate,-15; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_TIGERCANNON",15; }
+24599:24584:24585:24586:24587:24588,{ bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMDefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bDelayrate,-15; bonus bVariableCastrate,-10; bonus2 bSkillAtk,"RA_ARROWSTORM",15; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; }
+24600:24584:24585:24586:24587:24588,{ bonus2 bMagicAtkEle,Ele_All,10; bonus2 bIgnoreDefRaceRate,RC_All,70; bonus2 bIgnoreMdefRaceRate,RC_All,70; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-70; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-70; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-70; bonus bLongAtkRate,15; bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; }
+24601:24405,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24601:24602:24603,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"RL_D_TAIL",.@sum/2; }
+24604:24402,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24604:24605:24606,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"RL_FIREDANCE",.@sum/2; }
+24607:24405,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24607:24608:24609,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@sum/2; }
+24610:24402,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24610:24611:24612,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"RL_BANISHING_BUSTER",.@sum/2; bonus2 bSkillAtk,"RL_S_STORM",.@sum/2; }
+24613:24405,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24613:24614:24615,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"RL_R_TRIP",.@sum/2; }
+24616:24282,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24616:24617:24618,{ .@sum = getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"MG_FIREBOLT",.@sum*2; bonus2 bSkillAtk,"MG_COLDBOLT",.@sum*2; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@sum*2; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",.@sum*2; bonus2 bSkillAtk,"WZ_STORMGUST",.@sum*2; bonus2 bSkillAtk,"WZ_VERMILION",.@sum*2; bonus2 bSkillAtk,"WZ_METEOR",.@sum*2; skill "PF_DOUBLECASTING",5; }
+24619:24318,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24619:24620:24621,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_ACC_R); bonus2 bSkillAtk,"RG_BACKSTAP",.@sum*2; bonus2 bSkillAtk,"RG_RAID",.@sum*2; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",.@sum*2; bonus2 bSkillAtk,"PA_SHIELDCHAIN",.@sum*2; skill "PA_SHIELDCHAIN",5; }
+24622:24406,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24622:24623:24624,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"KO_BAKURETSU",.@sum/2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",.@sum/2; }
+24625:24403,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24625:24626:24627,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"KO_HUUMARANKA",.@sum/2; }
+24628:24407,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24628:24629:24630,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"NJ_BAKUENRYU",.@sum; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",.@sum; bonus2 bSkillAtk,"NJ_KAMAITACHI",.@sum; }
+24631:24404,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24631:24632:24633,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"NJ_KOUENKA",.@sum/2; bonus2 bSkillAtk,"NJ_HYOUSENSOU",.@sum/2; bonus2 bSkillAtk,"NJ_HUUJIN",.@sum/2; }
+24634:24409,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24634:24635:24636,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"SU_PICKYPECK",.@sum/2; }
+24637:24408,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24637:24638:24639,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@sum; bonus2 bSkillAtk,"SU_SVG_SPIRIT",.@sum; }
+24640:24411,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24640:24641:24642,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"SU_CN_METEOR",.@sum; }
+24643:24410,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24643:24644:24645,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@sum/2; }
+24646:24413,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24646:24647:24648,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"SJ_SOLARBURST",.@sum/2; }
+24649:24412,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24649:24650:24651,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@sum/2; }
+24652:24413,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreDefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40-.@sum; }
+24652:24653:24654,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",.@sum; }
+24655:24415,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24655:24656:24657,{ .@sum = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bSkillAtk,"SP_SPA",.@sum; bonus2 bSkillAtk,"SP_SWHOO",.@sum; }
+24658:24414,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ARMOR); bonus2 bIgnoreMdefRaceRate,RC_All,40+.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40-.@sum; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40-.@sum; }
+24658:24659:24660,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"SP_CURSEEXPLOSION",.@sum; }
+24661:24662,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus2 bAddClass,Class_All,2; if (.@sum>=18) { bonus bIgnoreDefRace,RC_All; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-100; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-100; } }
+24663:24664,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bAddClass,Class_All,2; if (.@sum>=18) { bonus bIgnoreDefRace,RC_All; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-100; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-100; } }
+2595:2164,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_Undead,.@r_garment; }
+2596:2159,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_Demon,.@r_garment; }
+15210:19275,{ bonus bVariableCastrate,-30; bonus bFlee2,15; }
+15246:20902:22168,{ bonus bDelayrate,-7; if (getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)>=9) { bonus bDelayrate,-8; } }
+15247:20903:22169,{ bonus bDelayrate,-5; }
+15344:20733,{ bonus2 bSkillAtk,"NC_ARMSCANNON",50; }
+15383:20939,{ bonus bDelayrate,-10; }
+15390:20945:22206,{ bonus bVariableCastrate,-7; if (getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)>=9) { bonus bVariableCastrate,-5; } }
+19097:28901,{ autobonus2 "{ }",1,3000,BF_WEAPON|BF_MAGIC,"{ heal 5000,0; unitskilluseid getcharid(3),\"WM_LULLABY_DEEPSLEEP\",1; active_transform 1930,3000; /*PIAMETTE, unknown timer*/ }"; }
+19097:28902,{ autobonus2 "{ }",1,3000,BF_WEAPON|BF_MAGIC,"{ heal 5000,0; unitskilluseid getcharid(3),\"WM_LULLABY_DEEPSLEEP\",1; active_transform 1930,3000; /*PIAMETTE, unknown timer*/ }"; }
+19098:28901,{ .@r_top = getequiprefinerycnt(EQI_HEAD_TOP); .@r_left = getequiprefinerycnt(EQI_HAND_L); autobonus "{ bonus2 bHPLossRate,50,1000; }",1+.@r_top,3000+.@r_left*1000,BF_WEAPON|BF_MAGIC,"{ active_transform 1930,3000" + (.@r_left*1000) + "; /*PIAMETTE, unknown effect*/ }"; }
+19098:28902,{ .@r_top = getequiprefinerycnt(EQI_HEAD_TOP); .@r_left = getequiprefinerycnt(EQI_HAND_L); autobonus "{ bonus2 bHPLossRate,50,1000; }",1+.@r_top,3000+.@r_left*1000,BF_WEAPON|BF_MAGIC,"{ active_transform 1930,3000" + (.@r_left*1000) + "; /*PIAMETTE, unknown effect*/ }"; }
+19218:28511,{ bonus2 bAddItemHealRate,569,20; }
+19243:20842,{ bonus bAspdRate,5; }
+19243:20843,{ bonus2 bAddClass,Class_All,4; if (getequiprefinerycnt(EQI_GARMENT)>=12) { bonus bAllStats,1; } }
+19243:20844,{ bonus bVariableCastrate,-5; }
+19244:1659,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-3*(.@r/2); bonus2 bSkillUseSP,"AL_HEAL",.@r*10; bonus2 bSkillUseSP,"AB_CHEAL",.@r*12; bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",.@r*14; }
+19249:1654,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5*(.@r_weapon/2); }
+19249:2004,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WL_HELLINFERNO",10*(.@r_weapon/2); }
+19249:13076:13078,{ .@r = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_L); bonus bVariableCastrate,-.@r; bonus2 bSkillAtk,"NJ_KOUENKA",5*(.@r/2); bonus2 bSkillAtk,"NJ_HYOUSENSOU",5*(.@r/2); bonus2 bSkillAtk,"NJ_HUUJIN",5*(.@r/2); }
+19263:1168:1171,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,20*(.@r_weapon/2); }
+19263:1413:1418,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"LG_BANISHINGPOINT",7*(.@r_weapon/2); }
+19263:1527:1537,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"SR_TIGERCANNON",7*(.@r_weapon/2); }
+19268:20717,{ bonus bBaseAtk,5*(readparam(bStr)/20); bonus bAspdRate,3*(readparam(bAgi)/20); bonus2 bSubEle,Ele_Neutral,(readparam(bVit)/20); bonus bVariableCastrate,-4*(readparam(bInt)/20); bonus bCritAtkRate,3*(readparam(bLuk)/20); }
+19268:20718,{ bonus bBaseAtk,5*(readparam(bStr)/20); bonus bAspdRate,3*(readparam(bAgi)/20); bonus2 bSubEle,Ele_Neutral,(readparam(bVit)/20); bonus bVariableCastrate,-4*(readparam(bInt)/20); bonus bCritAtkRate,3*(readparam(bLuk)/20); }
+19275:15210:20855,{ bonus bAspdRate,15; bonus2 bCriticalAddRace,RC_Fish,30; bonus2 bAddRace,RC_Fish,25; bonus bDefEle,Ele_Water; }
+19296:2507,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"SC_TRIANGLESHOT",15*(.@r_garment/2); }
+19296:2525,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"SC_TRIANGLESHOT",15*(.@r_garment/2); }
+19296:2544,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",7*(.@r_garment/2); }
+19296:2554,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r_garment/2); }
+19300:13138,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"RL_FIREDANCE",6*(.@r_weapon/2); }
+19300:28000,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,20*(.@r_weapon/2); }
+19300:28101,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"NC_AXETORNADO",15*(.@r_weapon/2); }
+19308:1631,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,10*(.@r_weapon/2); bonus2 bSkillAtk,"AB_ADORAMUS",30*(.@r_weapon/2); }
+19308:1691,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Neutral,5*(.@r_weapon/2); }
+19308:13412,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"GN_CARTCANNON",10*(.@r_weapon/2); }
+19439:20748,{ bonus bBaseAtk,5*(readparam(bStr)/30); bonus bAspdRate,3*(readparam(bAgi)/30); bonus bDelayrate,-4*(readparam(bVit)/30); bonus bVariableCastrate,-8*(readparam(bInt)/30); bonus bMatk,5*(readparam(bInt)/30); bonus bLongAtkRate,(readparam(bDex)/30); bonus bCritAtkRate,3*(readparam(bLuk)/30); }
+20705:2174,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); .@r_shield = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubRace,RC_Dragon,.@r_garment; bonus2 bAddEle,Ele_Holy,.@r_shield; }
+20708:2167,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); .@r_shield = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubRace,RC_Plant,.@r_garment; bonus2 bAddEle,Ele_Poison,.@r_shield; }
+20750:2194,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); .@r_shield = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubRace,RC_Insect,.@r_garment; bonus2 bAddEle,Ele_Wind,.@r_shield; }
+20855:19275,{ bonus bAspd,2; bonus bNoCastCancel; }
+20902:22168,{ bonus2 bMagicAtkEle,Ele_All,7; if (getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)>=9) { bonus bFixedCast,-500; } }
+20903:22169,{ bonus bFixedCast,-300; }
+20939:22204,{ bonus bFixedCast,-500; bonus bVariableCastrate,-10; }
+20940:5104:5329,{ bonus bDelayrate,-6; }
+20940:19052:19085,{ bonus bCritAtkRate,14; }
+20940:19241,{ bonus bVariableCastrate,-30; }
+20940:19245,{ bonus bLongAtkRate,14; }
+20945:22206,{ bonus bMatk,20; bonus bBaseAtk,20; if (getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)>=9) { bonus bAspdRate,5; } }
+20955:2976:2980,{ bonus bAspdRate,10; bonus bMatkRate,10; bonus bHit,10; if (getequiprefinerycnt(EQI_GARMENT)>=10) { bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",3,1; } }
+20955:2977:2978,{ bonus bLongAtkRate,10; bonus bAspdRate,10; bonus2 bAddClass,Class_All,10; if (getequiprefinerycnt(EQI_GARMENT)>=10) { bonus bCritAtkRate,15; bonus bHit,15; } }
+20955:2977:16029,{ bonus bMatk,30; bonus2 bSkillAtk,"AB_DUPLELIGHT",40; if (getequiprefinerycnt(EQI_HAND_R)>=10) { bonus2 bSkillAtk,"AB_DUPLELIGHT",20; } }
+20955:2978:16029,{ bonus bBaseAtk,30; bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (getequiprefinerycnt(EQI_HAND_R)>=10) { bonus2 bSkillAtk,"SR_KNUCKLEARROW",20; } }
+20955:2980:13442,{ bonus3 bAutoSpell,"MG_SOULSTRIKE",10,1; bonus bMatk,80; if (getequiprefinerycnt(EQI_HAND_R)>=10) { bonus3 bAutoSpell,"HW_NAPALMVULCAN",5,1; } }
+22048:2164,{ bonus2 bSubEle,Ele_Dark,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22048:2595,{ bonus2 bAddEle,Ele_Dark,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22049:2165,{ bonus2 bSubEle,Ele_Earth,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22049:20701,{ bonus2 bAddEle,Ele_Earth,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22051:2158,{ bonus2 bSubEle,Ele_Undead,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22051:2598,{ bonus2 bAddEle,Ele_Undead,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22055:2159,{ bonus2 bSubEle,Ele_Fire,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22055:2596,{ bonus2 bAddEle,Ele_Fire,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22057:2163,{ bonus2 bSubEle,Ele_Water,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22057:2593,{ bonus2 bAddEle,Ele_Water,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22061:2174,{ bonus2 bSubEle,Ele_Holy,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22061:20705,{ bonus2 bAddEle,Ele_Holy,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22063:2194,{ bonus2 bSubEle,Ele_Wind,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22063:20750,{ bonus2 bAddEle,Ele_Wind,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22065:2167,{ bonus2 bSubEle,Ele_Poison,5+2*getequiprefinerycnt(EQI_HAND_L); }
+22065:20708,{ bonus2 bAddEle,Ele_Poison,5; .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,.@r_garment; bonus bMaxSPrate,.@r_garment; }
+22168:15246,{ bonus bLongAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_ARMOR)>=9) { bonus bCritAtkRate,10; } }
+22169:15247,{ bonus bAspd,1; }
+22204:15383,{ bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; }
+22206:15390,{ bonus bLongAtkRate,7; if (getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_ARMOR)>=9) { bonus bCritAtkRate,7; } }
+28473:15181:28474,{ bonus2 bSubEle,Ele_Neutral,-2; bonus2 bSubEle,Ele_All,2; bonus bMatk,20; }
+28473:22122:28474,{ bonus bDelayrate,-3; bonus bVariableCastrate,-3; }
+28475:15182:28476,{ bonus2 bSubEle,Ele_Neutral,-4; bonus2 bSubEle,Ele_All,4; bonus bMatk,40; }
+28475:22123:28476,{ bonus bDelayrate,-6; bonus bVariableCastrate,-6; }
+28477:15183:28478,{ bonus2 bSubEle,Ele_Neutral,-4; bonus2 bSubEle,Ele_All,4; bonus bMatk,40; }
+28477:22124:28478,{ bonus bDelayrate,-6; bonus bVariableCastrate,-6; }
+28479:15184:28480,{ bonus2 bSubEle,Ele_Neutral,-5; bonus2 bSubEle,Ele_All,5; bonus bMatk,50; }
+28479:22125:28480,{ bonus bDelayrate,-8; bonus bVariableCastrate,-8; }
+28481:15185:28482,{ bonus2 bSubEle,Ele_Neutral,-5; bonus2 bSubEle,Ele_All,5; bonus bMatk,50; bonus bNoCastCancel; }
+28481:22126:28482,{ bonus bDelayrate,-8; bonus bVariableCastrate,-8; }
+28535:28534,{ bonus bFixedCast,-100; bonus bDelayrate,-3; }
+32221:15383:20939:22204,{ bonus bVariableCastrate,-10; bonus bAspd,2; }
+400000:2990,{ bonus bVariableCastrate,-10; }
+400000:2991,{ bonus bCritAtkRate,10; }
+400000:2992,{ bonus bCritAtkRate,10; bonus bVariableCastrate,-10; }
+400021:21047,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritical,10; bonus2 bAddSize,Size_Large,4*(.@r_weapon/2); bonus2 bMagicAddSize,Size_Large,4*(.@r_weapon/2); }
+400021:28038,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,30; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",4*(.@r_weapon/2); }
+400021:28629,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,30; bonus2 bSkillAtk,"SJ_SOLARBURST",4*(.@r_weapon/2); }
+400022:16088,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,30; bonus2 bSkillAtk,"GN_CARTCANNON",4*(.@r_weapon/2); }
+400022:18178,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"RA_ARROWSTORM",-2500; bonus2 bWeaponDamageRate,W_BOW,7*(.@r_weapon/2); }
+400022:28136,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bMaxHPrate,5; bonus2 bSubSize,Size_Small,3*(.@r_weapon/2); bonus2 bMagicSubSize,Size_Small,3*(.@r_weapon/2); }
+400059:13493,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",4*(.@r_weapon/2); }
+400059:16089,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,5; bonus2 bSkillAtk,"AB_JUDEX",3*(.@r_weapon/2); }
+400059:26151,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",3*(.@r_weapon/2); }
+400061:1862,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus bLongAtkRate,3*(.@r_weapon/2); }
+400061:16088,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bVariableCastrate,-10; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",3*(.@r_weapon/2); }
+400061:28253,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,5; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",3*(.@r_weapon/2); }
+400078:21051,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",12*.@r_weapon; }
+400078:21052,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10; bonus2 bSkillAtk,"RK_SONICWAVE",10*.@r_weapon; }
+400078:32023,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-500; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10*.@r_weapon; }
+400079:32024,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"LG_SHIELDPRESS",-1000; bonus2 bSkillAtk,"LG_SHIELDPRESS",10*.@r_weapon; }
+400079:32025,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"LG_CANNONSPEAR",-500; bonus2 bSkillAtk,"LG_CANNONSPEAR",12*.@r_weapon; }
+400079:32350,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bVariableCastrate,-15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",10*.@r_weapon; bonus2 bSkillAtk,"PA_PRESSURE",10*.@r_weapon; }
+400094:2055,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Ghost,3; bonus2 bSkillAtk,"WL_SOULEXPANSION",3*.@r_weapon; }
+400094:2056,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bSkillAtk,"HW_GRAVITATION",3*.@r_weapon; bonus2 bSkillAtk,"WL_COMET",3*.@r_weapon; }
+400094:26158,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; bonus2 bSkillAtk,"WL_CRIMSONROCK",3*.@r_weapon; }
+400095:26159,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Wind,3; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",3*.@r_weapon; }
+400095:26160,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Earth,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bSkillAtk,"SO_DIAMONDDUST",3*.@r_weapon; }
+400095:28633,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bMatkRate,2; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",3*.@r_weapon; bonus2 bSkillAtk,"MG_FIREBOLT",3*.@r_weapon; bonus2 bSkillAtk,"MG_COLDBOLT",3*.@r_weapon; }
+400097:450164:470070:480083,{ bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; bonus2 bExpAddRace,RC_Fish,20; bonus2 bExpAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Fish,50; bonus2 bMagicAddRace,RC_Fish,50; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Water,25; }
+400098:1333,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"NC_POWERSWING",10*.@r_weapon; }
+400098:16092,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"NC_ARMSCANNON",10*.@r_weapon; }
+400098:28138,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"NC_AXETORNADO",10*.@r_weapon; }
+400099:16093,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"GN_CARTCANNON",10*.@r_weapon; }
+400099:16094,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"GN_CRAZYWEED",10*.@r_weapon; }
+400099:32351,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",10*.@r_weapon; }
+400116:18185,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritAtkRate,20; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10*.@r_weapon; }
+400116:18186,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10*.@r_weapon; }
+400116:18187,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"RA_ARROWSTORM",-1800; bonus2 bSkillAtk,"RA_ARROWSTORM",10*.@r_weapon; }
+400117:18188,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10*.@r_weapon; }
+400117:26212:32107,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bSkillAtk,"WM_METALICSOUND",5*.@r_weapon; }
+400117:26213:32108,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10*.@r_weapon; }
+400118:2057,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bSkillAtk,"AB_ADORAMUS",5*.@r_weapon; }
+400118:16095,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"AB_DUPLELIGHT",10*.@r_weapon; }
+400118:26161,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bSkillAtk,"AB_JUDEX",10*.@r_weapon; }
+400119:1865,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"CH_CHAINCRUSH",10*.@r_weapon; }
+400119:1866,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10*.@r_weapon; }
+400119:16096,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",10*.@r_weapon; }
+400120:18184,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10*.@r_weapon; }
+400120:28767,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10; bonus2 bSkillAtk,"SC_FATALMENACE",10*.@r_weapon; }
+400120:28768,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_All,10+5*.@r_weapon; }
+400121:28042,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,20; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10*.@r_weapon; }
+400121:28044,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"GC_CROSSIMPACT",20; bonus bShortAtkRate,5*.@r_weapon; }
+400121:28765:28766,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritAtkRate,20; bonus bShortAtkRate,5*(.@r_weapon/2); bonus bLongAtkRate,5*(.@r_weapon/2); }
+420003:13442,{ bonus bMatk,50; bonus5 bAutoSpell,"HW_GRAVITATION",3,100,BF_SHORT|BF_WEAPON,1; }
+420017:15278:20963,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddClass,Class_All,5; if (.@sum>=14) { bonus bBaseAtk,80; } if (.@sum>=18) { bonus bDelayrate,-7; bonus bBaseAtk,30; } if (.@sum>=22) { bonus bShortAtkRate,10; } }
+420018:15354:20967,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddSize,Size_All,7; if (.@sum>=14) { bonus bBaseAtk,80; } if (.@sum>=18) { bonus2 bAddSize,Size_All,7; bonus2 bAddClass,Class_All,5; } if (.@sum>=22) { bonus bLongAtkRate,10; } }
+420019:15353:20964,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddRace,RC_All,7; if (.@sum>=14) { bonus bBaseAtk,80; } if (.@sum>=18) { bonus2 bAddRace,RC_All,7; bonus bAspd,1; } if (.@sum>=22) { bonus bDelayrate,-10; } }
+420020:15346:20968,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddSize,Size_All,10; if (.@sum>=14) { bonus bBaseAtk,80; } if (.@sum>=18) { bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,12; } if (.@sum>=22) { bonus bLongAtkRate,10; } }
+420021:15347:20965,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,10; if (.@sum>=14) { bonus bBaseAtk,80; } if (.@sum>=18) { bonus2 bAddClass,Class_All,10; bonus bMaxSPrate,7; } if (.@sum>=22) { bonus bDelayrate,-10; } }
+420022:15279:20966,{ .@sum = getequiprefinerycnt(EQI_HEAD_MID)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus bVariableCastrate,-10; if (.@sum>=14) { bonus bMatk,80; } if (.@sum>=18) { bonus2 bMagicAtkEle,Ele_All,10; bonus bDelayrate,-7; } if (.@sum>=22) { bonus2 bMagicAddSize,Size_All,10; } }
+450147:480062,{ bonus bBaseAtk,50; }
+450147:480063,{ bonus bDelayrate,-10; }
+450148:480062,{ bonus bAspdRate,10; }
+450148:480063,{ bonus bMatk,50; }
+450164:400097,{ .@r_armor = getequiprefinerycnt(EQI_ARMOR); bonus2 bSubRace,RC_Fish,10+.@r_armor; bonus2 bSubRace,RC_DemiHuman,10+.@r_armor; bonus2 bSubRace,RC_Player_Human,10+.@r_armor; }
+470033:13414,{ bonus bMatk,70; bonus bAspd,2; if (getequiprefinerycnt(EQI_HAND_R)>=10) { bonus2 bMagicAtkEle,Ele_All,10; } }
+470054:450147,{ bonus2 bAddClass,Class_All,5; }
+470054:450148,{ bonus bAspdRate,5; }
+470055:450147,{ bonus bMaxSPrate,5; }
+470055:450148,{ bonus bMatkRate,5; }
+470070:400097,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus2 bMagicAddEle,Ele_Wind,10+.@r; bonus2 bAddEle,Ele_Wind,10+.@r; bonus2 bMagicAddEle,Ele_Water,10+.@r; bonus2 bAddEle,Ele_Water,10+.@r; }
+480062:470054,{ bonus bCritAtkRate,10; }
+480062:470055,{ bonus bVariableCastrate,-10; }
+480063:470054,{ bonus bLongAtkRate,5; }
+480063:470055,{ bonus2 bMagicAtkEle,Ele_All,10; }
+480083:400097,{ .@r_garment = getequiprefinerycnt(EQI_GARMENT); bonus2 bAddRace,RC_Fish,10+.@r_garment; bonus2 bMagicAddRace,RC_Fish,10+.@r_garment; bonus2 bAddRace,RC_DemiHuman,10+.@r_garment; bonus2 bMagicAddRace,RC_DemiHuman,10+.@r_garment; }
+490044:15391:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490045:490044,{ bonus bFixedCast,-300; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus bDelayrate,-5; }
+490046:15392:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490047:490046,{ bonus bFixedCast,-300; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; bonus bDelayrate,-5; }
+490048:15393:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; bonus2 bMagicAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490049:490048,{ bonus bFixedCast,-300; bonus2 bAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus bDelayrate,-5; }
+490050:15394:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; bonus2 bMagicAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490051:490050,{ bonus bFixedCast,-300; bonus2 bAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus bDelayrate,-5; }
+490052:15395:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490053:490052,{ bonus bFixedCast,-300; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus bDelayrate,-5; }
+490054:15396:20946:22208,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Dragon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; bonus bDelayrate,-5; }
+490055:490054,{ bonus bFixedCast,-300; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; bonus bDelayrate,-5; }
+490056:15397:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490057:490056,{ bonus bFixedCast,-200; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490058:15400:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; bonus2 bMagicAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490059:490058,{ bonus bFixedCast,-200; bonus2 bAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490060:15399:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; bonus2 bMagicAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490061:490060,{ bonus bFixedCast,-200; bonus2 bAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490062:15398:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490063:490062,{ bonus bFixedCast,-200; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490064:15401:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490065:490064,{ bonus bFixedCast,-200; bonus2 bMagicAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490066:15402:20947:22209,{ bonus bFixedCast,-200; bonus2 bSubRace,RC_Angel,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; bonus bDelayrate,-5; }
+490067:490066,{ bonus bFixedCast,-200; bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; bonus bDelayrate,-5; }
+490090:15138:19026:20756:22059,{ bonus2 bMagicAtkEle,Ele_All,2; }
+490091:15138:19026:20756:22059,{ bonus bLongAtkRate,2; bonus bShortAtkRate,2; }
+490092:400097:450164:470070:480083,{ bonus2 bMagicAtkEle,Ele_All,5; }
+490093:400097:450164:470070:480083,{ bonus bLongAtkRate,5; bonus bShortAtkRate,5; }
+490099:400023,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; } if (.@r>=11) { bonus bFixedCast,-500; } }
+490100:400023,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bDelayrate,-2*(.@r/4); if (.@r>=7) { autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC; bonus2 bHPDrainRate,50,5; } if (.@r>=9) { bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; } if (.@r>=11) { bonus bFixedCast,-500; } }
+490101:400023,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bDelayrate,-2*(.@r/4); if (.@r>=7) { autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_WEAPON; bonus2 bSPDrainRate,10,3; } if (.@r>=9) { bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; } if (.@r>=11) { bonus bFixedCast,-500; } }
+1845:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+16064:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+13336:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+2040:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+13136:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+18150:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+18151:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+21030:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+26112:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28024:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28120:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28215:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28216:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28217:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28218:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28613:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28614:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+28726:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+32004:15167:19119:20801:22102,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,2; bonus2 bSubEle,Ele_Neutral,3*(min(100,readparam(bVit))/10); bonus bAspdRate,2*(min(100,readparam(bAgi))/10); bonus bHit,3*(min(100,readparam(bDex))/10); bonus bCritical,3*(min(100,readparam(bLuk))/10); }
+1848:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus2 bAddClass,Class_All,5; bonus bAspd,1; }
+13144:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bLongAtkRate,5; bonus bAspd,1; }
+13341:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bVariableCastrate,-10; bonus bMatkRate,3; bonus2 bAddClass,Class_All,3; }
+16075:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bLongAtkRate,5; bonus bAspd,1; }
+16076:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bBaseAtk,40; bonus bAspd,1; }
+18165:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bLongAtkRate,5; bonus2 bAddClass,Class_All,2; }
+18166:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus bLongAtkRate,5; bonus bVariableCastrate,-10; }
+21037:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus2 bAddClass,Class_All,5; bonus bAspd,1; }
+26015:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus2 bAddClass,Class_All,5; bonus bAspd,1; }
+26119:15250:19310:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus2 bMagicAtkEle,Ele_Neutral,5; bonus bVariableCastrate,-10; }
+26120:15250:19310:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus bVariableCastrate,-10; bonus bMatkRate,5; }
+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; } } } }
+450177:480090,{ bonus bDelayrate,-10; }
+450177:480091,{ bonus bBaseAtk,50; }
+450178:480090,{ bonus bMatk,50; }
+450178:480091,{ bonus bAspdRate,10; }
+450182:470066,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES); bonus2 bAddClass,Class_All,10; if (getequiprefinerycnt(EQI_ARMOR)>=7 && getequiprefinerycnt(EQI_SHOES)>=7) { bonus bBaseAtk,70; if (.@sum>=18) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; if (.@sum>=22) { bonus bFixedCast,-700; bonus2 bAddClass,Class_Boss,25; } } } }
+450182:490120:490121,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; }
+470066:490120,{ autobonus "{ bonus bStr,150; }",1,10000,BF_WEAPON; bonus2 bHPLossRate,500,1000; }
+470066:490121,{ autobonus "{ bonus bAgi,150; }",1,10000,BF_WEAPON; bonus2 bSPLossRate,50,1000; }
+470087:450177,{ bonus2 bAddClass,Class_All,7; }
+470087:450178,{ bonus bAspdRate,7; }
+470088:450177,{ bonus bMaxSPrate,7; }
+470088:450178,{ bonus bMatkRate,7; }
+480090:470087,{ bonus bLongAtkRate,7; }
+480090:470088,{ bonus2 bMagicAtkEle,Ele_All,15; }
+480091:470087,{ bonus bCritAtkRate,15; }
+480091:470088,{ bonus bVariableCastrate,-15; }
+//400134:530012,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_HESPERUSLIT",10*(.@r_weapon/2); }
+//400134:600016,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"RK_WINDCUTTER",10*(.@r_weapon/2); }
+//400134:620009,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddRace,RC_All,10; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r_weapon/2); }
+450179:2980,{ bonus2 bMagicAddSize,Size_All,15; bonus bPerfectHitRate,10; bonus bMatkRate,10; autobonus "{ bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; }",1,10000,BF_WEAPON; }
+450179:18849,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bMagicAtkEle,Ele_Ghost,.@sum; bonus2 bMagicAtkEle,Ele_Poison,.@sum; bonus2 bMagicAtkEle,Ele_Holy,.@sum; bonus2 bMagicAtkEle,Ele_Dark,.@sum; if (.@sum>=19) { bonus bMatkRate,15; if (.@sum>=23) { bonus2 bMagicAddEle,Ele_All,20; } } }
+450179:32237,{ .@sum = getequiprefinerycnt(EQI_ARMOR); bonus bMatk,10*.@r; if (.@sum>=9) { bonus bVariableCastrate,-5; if (.@sum>=11) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; if (.@sum>=13) { bonus bUnbreakableArmor; } } } }
+490120:450182,{ bonus bDelayrate,-10; }
+490121:450182,{ bonus bVariableCastrate,-10; }
+490121:490120,{ bonus bDelayrate,-5; }
diff --git a/db/re/item_db.txt b/db/re/item_db.txt
deleted file mode 100644
index d9a607755b..0000000000
--- a/db/re/item_db.txt
+++ /dev/null
@@ -1,13454 +0,0 @@
-// Items Database
-//
-// Structure of Database:
-// ID,AegisName,Name,Type,Buy,Sell,Weight,ATK[:MATK],DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }
-//
-// Healing Items
-//=============================================================
-500,Choko_Gangjeong,Choko Gangjeong,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-501,Red_Potion,Red Potion,0,10,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-502,Orange_Potion,Orange Potion,0,50,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-503,Yellow_Potion,Yellow Potion,0,180,,130,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-504,White_Potion,White Potion,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-505,Blue_Potion,Blue Potion,0,5000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
-506,Green_Potion,Green Potion,0,40,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION; },{},{}
-507,Red_Herb,Red Herb,0,18,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(18,28),0; },{},{}
-508,Yellow_Herb,Yellow Herb,0,40,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(38,58),0; },{},{}
-509,White_Herb,White Herb,0,120,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(75,115),0; },{},{}
-510,Blue_Herb,Blue Herb,0,60,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(15,30); },{},{}
-511,Green_Herb,Green Herb,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; },{},{}
-512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(16,22),0; },{},{}
-513,Banana,Banana,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,21),0; },{},{}
-514,Grape,Grape,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,15); },{},{}
-515,Carrot,Carrot,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(18,20),0; },{},{}
-516,Sweet_Potato,Potato,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,23),0; },{},{}
-517,Meat,Meat,0,50,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),0; },{},{}
-518,Honey,Honey,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),rand(20,40); },{},{}
-519,Milk,Milk,0,25,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(27,37),0; },{},{}
-520,Leaflet_Of_Hinal,Hinalle Leaflet,0,150,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-521,Leaflet_Of_Aloe,Aloe Leaflet,0,360,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-522,Fruit_Of_Mastela,Mastela Fruit,0,8500,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,600),0; },{},{}
-523,Holy_Water,Holy Water,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_CURSE; },{},{}
-525,Panacea,Panacea,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{}
-526,Royal_Jelly,Royal Jelly,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-528,Monster's_Feed,Monster's Feed,0,60,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(72,108),0; },{},{}
-529,Candy,Candy,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-530,Candy_Striper,Candy Cane,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-531,Apple_Juice,Apple Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,35),0; },{},{}
-532,Banana_Juice,Banana Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(26,34),0; },{},{}
-533,Grape_Juice,Grape Juice,0,250,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(15,25); },{},{}
-534,Carrot_Juice,Carrot Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(27,33),0; },{},{}
-535,Pumpkin,Pumpkin,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 19,0; },{},{}
-536,Ice_Cream,Ice Cream,0,150,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0; },{},{}
-537,Pet_Food,Pet Food,0,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-538,Well_Baked_Cookie,Well-baked Cookie,0,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{}
-539,Piece_Of_Cake,Piece of Cake,0,3000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{}
-540,Falcon's_Feed,Falcon Food,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(185,225),0; },{},{}
-541,Pecopeco's_Feed,PecoPeco Food,0,3000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-542,Festive_Cookie,Festival Cookie,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-543,Festive_Rainbow_Cake,Festival Rainbow Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-544,Fish_Slice,Raw Fish,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,60),0; },{},{}
-545,Red_Slim_Potion,Condensed Red Potion,0,150,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-546,Yellow_Slim_Potion,Condensed Yellow Potion,0,600,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-547,White_Slim_Potion,Condensed White Potion,0,1650,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-548,Cheese,Cheese,0,2800,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,15); },{},{}
-549,Nice_Sweet_Potato,Yam,0,180,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0; },{},{}
-550,Popped_Rice,Rice Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,15),0; },{},{}
-551,Shusi,Sushi,0,1,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,60),0; },{},{}
-552,KETUPAT,Ketupat,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,90),rand(20,30); },{},{}
-553,Bun,Bao,0,1,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(35,70),0; },{},{}
-554,Mojji,Mochi,0,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0; },{},{}
-555,Rice_Cake,Traditional Rice Cake,0,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-556,Long_Rice_Cake,Rice Cake Stick,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,25),0; },{},{}
-557,Hash_Rice_Cake,Neatly Sliced Rice Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,30),0; },{},{}
-558,Chocolate,Chocolate,0,1,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 1,1; },{},{}
-559,HandMade_Chocolate,Hand-made Chocolate,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-560,HandMade_Chocolate_,Handmade White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-561,White_Chocolate,White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-562,Pizza,Doublecrust Swiss Fondue,0,100,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),0; },{},{}
-563,Pizza_01,Doublecrust Swiss Fondue,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(375,445),0; },{},{}
-564,Rice_Ball,Rice Ball,0,1,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 200,0; },{},{}
-565,Vita500_Bottle,Vita500,0,580,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(142,274),0; },{},{}
-566,Tomyumkung,Tom Yum Goong,0,10000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-567,Prawn,Shrimp,0,500,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(117,192),0; },{},{}
-568,Lemon,Lemon,0,60,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,20); },{},{}
-569,Novice_Potion,Novice Potion,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(44,66),0; },{},{}
-570,Lucky_Candy,Lucky Candy,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-571,Lucky_Candy_Cane,Lucky Candy Cane,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-572,Lucky_Cookie,Lucky Cookie,0,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{}
-573,Chocolate_Drink,Chocolate Drink,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-574,Egg,Egg,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(33,42),0; },{},{}
-575,Piece_Of_Cake_,2nd Anniversary Cake,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{}
-576,Prickly_Fruit,Prickly Fruit,0,540,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(150,300),rand(20,30); },{},{}
-577,Grain,Bag of Grain,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(60,70),0; },{},{}
-578,Strawberry,Strawberry,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(16,28); },{},{}
-579,Delicious_Fish,Fresh Fish,0,700,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; },{},{}
-580,Bread,Bread,0,150,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-581,Mushroom,Edible Mushroom,0,40,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; },{},{}
-582,Orange,Orange,0,300,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,20),rand(10,20); },{},{}
-583,KETUPAT_,Ketupat Sayur,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-584,Fish_Ball_Soup,Fish Cake Soup,0,100,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,70),0; },{},{}
-585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{}
-586,Mother's_Cake,Mother's Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-587,Prickly_Fruit_,Red Prickly Fruit,0,880,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),rand(20,30); },{},{}
-588,Spaghetti,Spaghetti,0,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,70),0; },{},{}
-589,Pizza_02,Pizza,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(375,445),0; },{},{}
-590,Brezel_,Pretzel,0,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-591,Caviar_Pancake,Caviar Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-592,Jam_Pancake,Jam Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-593,Honey_Pancake,Honey Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-594,Sour_Cream_Pancake,Sour-Cream Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-595,Mushroom_Pancake,Mushroom Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-596,Cute_Strawberry_Choco,Cute Strawberry-Choco,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(1,100); },{},{}
-597,Lovely_Choco_Tart,Lovely Choco-Tart,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,400),0; },{},{}
-598,Light_Red_Pot,Light Red Potion,0,50,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-599,Light_Orange_Pot,Light Orange Potion,0,200,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-//===================================================================
-// Usable Items
-//===================================================================
-601,Wing_Of_Fly,Fly Wing,11,60,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-602,Wing_Of_Butterfly,Butterfly Wing,11,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{}
-603,Old_Blue_Box,Old Blue Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_BlueBox,1); },{},{}
-604,Branch_Of_Dead_Tree,Dead Branch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,""; },{},{}
-605,Anodyne,Anodyne,11,2000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SM_ENDURE",1; },{},{}
-606,Aloebera,Aloevera,11,1500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SM_SELFPROVOKE",1; },{},{}
-607,Yggdrasilberry,Yggdrasil Berry,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{}
-608,Seed_Of_Yggdrasil,Yggdrasil Seed,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-609,Amulet,Amulet,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-610,Leaf_Of_Yggdrasil,Yggdrasil Leaf,11,4000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_RESURRECTION",1; },{},{}
-611,Spectacles,Magnifier,11,40,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{}
-612,Portable_Furnace,Mini Furnace,2,150,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 21; },{},{}
-613,Iron_Hammer,Iron Hammer,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 1; },{},{}
-614,Golden_Hammer,Golden Hammer,2,3000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 2; },{},{}
-615,Oridecon_Hammer,Oridecon Hammer,2,5000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 3; },{},{}
-616,Old_Card_Album,Old Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum,1); },{},{}
-617,Old_Violet_Box,Old Purple Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_VioletBox,1); },{},{}
-618,Worn_Out_Scroll,Worn Out Scroll,2,50,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-619,Unripe_Apple,Unripe Apple,2,1000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1002; },{},{}
-620,Orange_Juice,Orange Juice,2,1500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1113; },{},{}
-621,Bitter_Herb,Bitter Herb,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1031; },{},{}
-622,Rainbow_Carrot,Rainbow Carrot,2,2500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1063; },{},{}
-623,Earthworm_The_Dude,Earthworm the Dude,2,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1049; },{},{}
-624,Rotten_Fish,Rotten Fish,2,2500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1011; },{},{}
-625,Lusty_Iron,Rusty Iron,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1042; },{},{}
-626,Monster_Juice,Monster Juice,2,1500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1035; },{},{}
-627,Sweet_Milk,Sweet Milk,2,7000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1167; },{},{}
-628,Well_Dried_Bone,Well-Dried Bone,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1107; },{},{}
-629,Singing_Flower,Singing Flower,2,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1052; },{},{}
-630,Dew_Laden_Moss,Dew Laden Moss,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1014; },{},{}
-631,Deadly_Noxious_Herb,Deadly Noxious Herb,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1077; },{},{}
-632,Fatty_Chubby_Earthworm,Fatty Chubby Earthworm,2,5000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1019; },{},{}
-633,Baked_Yam,Sweet Potato,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1056; },{},{}
-634,Tropical_Banana,Tropical Banana,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1057; },{},{}
-635,Horror_Of_Tribe,Orc Trophy,2,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1023; },{},{}
-636,No_Recipient,No Recipient,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1026; },{},{}
-637,Old_Broom,Old Broom,2,350,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1110; },{},{}
-638,Silver_Knife_Of_Chaste,Silver Knife of Chastity,2,12000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1170; },{},{}
-639,Armlet_Of_Obedience,Armlet of Obedience,2,18000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1029; },{},{}
-640,Shining_Stone,Shining Stone,2,3000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1155; },{},{}
-641,Contracts_In_Shadow,Contract in Shadow,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1109; },{},{}
-642,Book_Of_Devil,Book of the Devil,2,1800,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1101; },{},{}
-643,Pet_Incubator,Pet Incubator,2,10000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ bpet; },{},{}
-644,Gift_Box,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox,1); },{},{}
-//ASPD in RE they give a fixed +4/+6/+9 ASPD
-645,Center_Potion,Concentration Potion,2,1200,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{}
-656,Awakening_Potion,Awakening Potion,2,2200,,150,,,,,0xFFF7FEEF,63,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{}
-657,Berserk_Potion,Berserk Potion,2,4500,,200,,,,,0x41E646A6,63,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{}
-658,Union_Of_Tribe,Union of Tribe,2,2,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ guildgetexp rand(600000,1200000); },{},{}
-659,Heart_Of_Her,Her Heart,2,500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1188; },{},{}
-660,Prohibition_Red_Candle,Forbidden Red Candle,2,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1200; },{},{}
-661,Sway_Apron,Soft Apron,2,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1275; },{},{}
-662,Inspector_Certificate,Authoritative Badge,2,1450,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{}
-663,Korea_Rice_Cake,Korean Rice Cake,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,0; },{},{}
-664,Gift_Box_1,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_1,1); },{},{}
-665,Gift_Box_2,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_2,1); },{},{}
-666,Gift_Box_3,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_3,1); },{},{}
-667,Gift_Box_4,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_4,1); },{},{}
-668,Handsei,Red Envelope,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,10000); },{},{}
-669,Rice_Cake_Soup,Tempting Rice-Cake Soup,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-670,Gold_Coin_Moneybag,Bag of Gold Coins,3,100000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-671,Gold_Coin,Gold Coin,2,10000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteGold++; },{},{}
-672,Copper_Coin_Moneybag,Bag of Bronze Coins,3,1000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-673,Copper_Coin,Bronze Coin,2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteBronze++; },{},{}
-674,Mithril_Coin,Mithril Coin,3,5000,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-675,Silver_Coin,Silver Coin,2,5000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteSilver++; },{},{}
-676,Silver_Coin_Moneybag,Bag of Silver Coins,3,50000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-677,White_Gold_Coin,Platinum Coin,3,2000,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-679,Gold_Pill,Pilule,2,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{}
-680,Magical_Carnation,Magic Carnation,0,0,,1000,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{}
-681,Memory_Of_Wedding,Sweet Memory of Marriage,2,50000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (getpartnerid()) sc_start SC_WEDDING,600000,0; },{},{}
-682,Realgar_Wine,Distilled Fighting Spirit,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,30; },{},{}
-683,Exorcize_Herb,Herb of Incantation,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,60000,30; },{},{}
-684,Durian,Durian,2,15000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; },{},{}
-685,RAMADAN,Ramadan,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,50; },{},{}
-686,Earth_Scroll_1_3,Level 3 Earth Spike,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_EARTHSPIKE",3; },{},{}
-687,Earth_Scroll_1_5,Level 5 Earth Spike,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_EARTHSPIKE",5; },{},{}
-688,Cold_Scroll_1_3,Level 3 Cold Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_COLDBOLT",3; },{},{}
-689,Cold_Scroll_1_5,Level 5 Cold Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_COLDBOLT",5; },{},{}
-690,Fire_Scroll_1_3,Level 3 Fire Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBOLT",3; },{},{}
-691,Fire_Scroll_1_5,Level 5 Fire Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBOLT",5; },{},{}
-692,Wind_Scroll_1_3,Level 3 Lightening Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",3; },{},{}
-693,Wind_Scroll_1_5,Level 5 Lightening Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",5; },{},{}
-694,Ghost_Scroll_1_3,Level 3 Soul Strike,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_SOULSTRIKE",3; },{},{}
-695,Ghost_Scroll_1_5,Level 5 Soul Strike,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_SOULSTRIKE",5; },{},{}
-696,Fire_Scroll_2_1,Level 1 Fire Ball,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBALL",1; },{},{}
-697,Fire_Scroll_2_5,Level 5 Fire Ball,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBALL",5; },{},{}
-698,Fire_Scroll_3_1,Level 1 Fire Wall,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREWALL",1; },{},{}
-699,Fire_Scroll_3_5,Level 5 Fire Wall,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREWALL",5; },{},{}
-700,Cold_Scroll_2_1,Level 1 Frost Diver,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FROSTDIVER",1; },{},{}
-//===================================================================
-// Etc Items
-//===================================================================
-701,Ora_Ora,Ora Ora,3,55000,,200,,,,,,,,,,,,,{},{},{}
-702,Animal_Blood,Animal Gore,3,450,,100,,,,,,,,,,,,,{},{},{}
-703,Hinalle,Hinalle,3,500,,10,,,,,,,,,,,,,{},{},{}
-704,Aloe,Aloe,3,500,,10,,,,,,,,,,,,,{},{},{}
-705,Clover,Clover,3,10,,10,,,,,,,,,,,,,{},{},{}
-706,Four_Leaf_Clover,Four Leaf Clover,3,80000,,10,,,,,,,,,,,,,{},{},{}
-707,Singing_Plant,Singing Plant,3,500,,10,,,,,,,,,,,,,{},{},{}
-708,Ment,Ment,3,500,,10,,,,,,,,,,,,,{},{},{}
-709,Izidor,Izidor,3,500,,10,,,,,,,,,,,,,{},{},{}
-710,Illusion_Flower,Illusion Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-711,Shoot,Shoot,3,16,,10,,,,,,,,,,,,,{},{},{}
-712,Flower,Flower,3,2,,10,,,,,,,,,,,,,{},{},{}
-713,Empty_Bottle,Empty Bottle,3,6,,20,,,,,,,,,,,,,{},{},{}
-714,Emperium,Emperium,3,2,,1000,,,,,,,,,,,,,{},{},{}
-715,Yellow_Gemstone,Yellow Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-716,Red_Gemstone,Red Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-717,Blue_Gemstone,Blue Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-718,Dark_Red_Jewel,Garnet,3,6000,,100,,,,,,,,,,,,,{},{},{}
-719,Violet_Jewel,Amethyst,3,6000,,100,,,,,,,,,,,,,{},{},{}
-720,Skyblue_Jewel,Aquamarine,3,6000,,100,,,,,,,,,,,,,{},{},{}
-721,Azure_Jewel,Emerald,3,6000,,100,,,,,,,,,,,,,{},{},{}
-722,Scarlet_Jewel,Pearl,3,6000,,100,,,,,,,,,,,,,{},{},{}
-723,Cardinal_Jewel,Ruby,3,6000,,100,,,,,,,,,,,,,{},{},{}
-724,Cardinal_Jewel_,Cursed Ruby,3,600,,100,,,,,,,,,,,,,{},{},{}
-725,Red_Jewel,Sardonyx,3,6000,,100,,,,,,,,,,,,,{},{},{}
-726,Blue_Jewel,Sapphire,3,6000,,100,,,,,,,,,,,,,{},{},{}
-727,White_Jewel,Opal,3,6000,,100,,,,,,,,,,,,,{},{},{}
-728,Golden_Jewel,Topaz,3,6000,,100,,,,,,,,,,,,,{},{},{}
-729,Bluish_Green_Jewel,Zircon,3,6000,,100,,,,,,,,,,,,,{},{},{}
-730,Crystal_Jewel,1carat Diamond,3,10000,,100,,,,,,,,,,,,,{},{},{}
-731,Crystal_Jewel_,2carat Diamond,3,25000,,100,,,,,,,,,,,,,{},{},{}
-732,Crystal_Jewel__,3carat Diamond,3,55000,,100,,,,,,,,,,,,,{},{},{}
-733,Crystal_Jewel___,Cracked Diamond,3,10,,100,,,,,,,,,,,,,{},{},{}
-734,Red_Frame,Red Frame,3,3000,,200,,,,,,,,,,,,,{},{},{}
-735,Blue_Porcelain,Chung Jah,3,5000,,500,,,,,,,,,,,,,{},{},{}
-736,White_Platter,China,3,1000,,300,,,,,,,,,,,,,{},{},{}
-737,Black_Ladle,Black Ladle,3,400,,50,,,,,,,,,,,,,{},{},{}
-738,Pencil_Case,Pencil Case,3,400,,100,,,,,,,,,,,,,{},{},{}
-739,Rouge,Rouge,3,10000,,10,,,,,,,,,,,,,{},{},{}
-740,Stuffed_Doll,Puppet,3,1000,,100,,,,,,,,,,,,,{},{},{}
-741,Poring_Doll,Poring Doll,3,1800,,100,,,,,,,,,,,,,{},{},{}
-742,Chonchon_Doll,Chonchon Doll,3,3000,,100,,,,,,,,,,,,,{},{},{}
-743,Spore_Doll,Spore Doll,3,5500,,100,,,,,,,,,,,,,{},{},{}
-744,Bunch_Of_Flowers,Bouquet,3,2000,,50,,,,,,,,,,,,,{},{},{}
-745,Wedding_Bouquet,Wedding Bouquet,3,12000,,50,,,,,,,,,,,,,{},{},{}
-746,Glass_Bead,Glass Bead,3,1400,,50,,,,,,,,,,,,,{},{},{}
-747,Crystal_Mirror,Crystal Mirror,3,15000,,50,,,,,,,,,,,,,{},{},{}
-748,Witherless_Rose,Witherless Rose,3,55000,,10,,,,,,,,,,,,,{},{},{}
-749,Frozen_Rose,Frozen Rose,3,35000,,10,,,,,,,,,,,,,{},{},{}
-750,Baphomet_Doll,Baphomet Doll,3,18000,,100,,,,,,,,,,,,,{},{},{}
-751,Osiris_Doll,Osiris Doll,3,14000,,100,,,,,,,,,,,,,{},{},{}
-752,Grasshopper_Doll,Rocker Doll,3,4000,,100,,,,,,,,,,,,,{},{},{}
-753,Monkey_Doll,Yoyo Doll,3,6000,,100,,,,,,,,,,,,,{},{},{}
-754,Raccoondog_Doll,Raccoon Doll,3,5000,,100,,,,,,,,,,,,,{},{},{}
-756,Oridecon_Stone,Rough Oridecon,3,550,,200,,,,,,,,,,,,,{},{},{}
-757,Elunium_Stone,Rough Elunium,3,650,,200,,,,,,,,,,,,,{},{},{}
-901,Danggie,Daenggie,3,260,,10,,,,,,,,,,,,,{},{},{}
-902,Tree_Root,Tree Root,3,12,,10,,,,,,,,,,,,,{},{},{}
-903,Reptile_Tongue,Reptile Tongue,3,140,,10,,,,,,,,,,,,,{},{},{}
-904,Scorpion's_Tail,Scorpion Tail,3,124,,10,,,,,,,,,,,,,{},{},{}
-905,Stem,Stem,3,46,,10,,,,,,,,,,,,,{},{},{}
-906,Pointed_Scale,Pointed Scale,3,68,,10,,,,,,,,,,,,,{},{},{}
-907,Resin,Resin,3,120,,10,,,,,,,,,,,,,{},{},{}
-908,Spawn,Spawn,3,140,,10,,,,,,,,,,,,,{},{},{}
-909,Jellopy,Jellopy,3,6,,10,,,,,,,,,,,,,{},{},{}
-910,Garlet,Garlet,3,40,,10,,,,,,,,,,,,,{},{},{}
-911,Scell,Scell,3,160,,10,,,,,,,,,,,,,{},{},{}
-912,Zargon,Zargon,3,480,,10,,,,,,,,,,,,,{},{},{}
-913,Tooth_Of_Bat,Tooth of Bat,3,34,,10,,,,,,,,,,,,,{},{},{}
-914,Fluff,Fluff,3,8,,10,,,,,,,,,,,,,{},{},{}
-915,Chrysalis,Chrysalis,3,8,,10,,,,,,,,,,,,,{},{},{}
-916,Feather_Of_Birds,Feather of Birds,3,10,,10,,,,,,,,,,,,,{},{},{}
-917,Talon,Talon,3,20,,10,,,,,,,,,,,,,{},{},{}
-918,Sticky_Webfoot,Sticky Webfoot,3,20,,10,,,,,,,,,,,,,{},{},{}
-919,Animal's_Skin,Animal Skin,3,36,,10,,,,,,,,,,,,,{},{},{}
-920,Claw_Of_Wolves,Wolf Claw,3,58,,10,,,,,,,,,,,,,{},{},{}
-921,Mushroom_Spore,Mushroom Spore,3,36,,10,,,,,,,,,,,,,{},{},{}
-922,Orcish_Cuspid,Orc's Fang,3,220,,10,,,,,,,,,,,,,{},{},{}
-923,Evil_Horn,Evil Horn,3,1200,,10,,,,,,,,,,,,,{},{},{}
-924,Powder_Of_Butterfly,Powder of Butterfly,3,90,,10,,,,,,,,,,,,,{},{},{}
-925,Bill_Of_Birds,Bill of Birds,3,64,,10,,,,,,,,,,,,,{},{},{}
-926,Scale_Of_Snakes,Snake Scale,3,82,,10,,,,,,,,,,,,,{},{},{}
-928,Insect_Feeler,Insect Feeler,3,114,,10,,,,,,,,,,,,,{},{},{}
-929,Immortal_Heart,Immortal Heart,3,374,,10,,,,,,,,,,,,,{},{},{}
-930,Rotten_Bandage,Rotten Bandage,3,350,,10,,,,,,,,,,,,,{},{},{}
-931,Orcish_Voucher,Orcish Voucher,3,142,,10,,,,,,,,,,,,,{},{},{}
-932,Skel_Bone,Skel-Bone,3,232,,10,,,,,,,,,,,,,{},{},{}
-934,Mementos,Memento,3,600,,10,,,,,,,,,,,,,{},{},{}
-935,Shell,Shell,3,14,,10,,,,,,,,,,,,,{},{},{}
-936,Scales_Shell,Scale Shell,3,466,,10,,,,,,,,,,,,,{},{},{}
-937,Posionous_Canine,Venom Canine,3,148,,10,,,,,,,,,,,,,{},{},{}
-938,Sticky_Mucus,Sticky Mucus,3,70,,10,,,,,,,,,,,,,{},{},{}
-939,Bee_Sting,Bee Sting,3,32,,10,,,,,,,,,,,,,{},{},{}
-940,Grasshopper's_Leg,Grasshopper's Leg,3,36,,10,,,,,,,,,,,,,{},{},{}
-941,Nose_Ring,Nose Ring,3,568,,10,,,,,,,,,,,,,{},{},{}
-942,Yoyo_Tail,Yoyo Tail,3,114,,10,,,,,,,,,,,,,{},{},{}
-943,Solid_Shell,Solid Shell,3,448,,10,,,,,,,,,,,,,{},{},{}
-944,Horseshoe,Horseshoe,3,588,,10,,,,,,,,,,,,,{},{},{}
-945,Raccoon_Leaf,Raccoon Leaf,3,106,,10,,,,,,,,,,,,,{},{},{}
-946,Snail's_Shell,Snail's Shell,3,64,,10,,,,,,,,,,,,,{},{},{}
-947,Horn,Horn,3,116,,10,,,,,,,,,,,,,{},{},{}
-948,Bear's_Foot,Bear's Footskin,3,174,,10,,,,,,,,,,,,,{},{},{}
-949,Feather,Feather,3,20,,10,,,,,,,,,,,,,{},{},{}
-950,Heart_Of_Mermaid,Heart of Mermaid,3,264,,10,,,,,,,,,,,,,{},{},{}
-951,Fin,Fin,3,412,,10,,,,,,,,,,,,,{},{},{}
-952,Cactus_Needle,Cactus Needle,3,82,,10,,,,,,,,,,,,,{},{},{}
-953,Stone_Heart,Stone Heart,3,184,,10,,,,,,,,,,,,,{},{},{}
-954,Shining_Scales,Shining Scale,3,466,,10,,,,,,,,,,,,,{},{},{}
-955,Worm_Peelings,Worm Peeling,3,52,,10,,,,,,,,,,,,,{},{},{}
-956,Gill,Gill,3,342,,10,,,,,,,,,,,,,{},{},{}
-957,Decayed_Nail,Decayed Nail,3,82,,10,,,,,,,,,,,,,{},{},{}
-958,Horrendous_Mouth,Horrendous Mouth,3,390,,10,,,,,,,,,,,,,{},{},{}
-959,Rotten_Scale,Stinky Scale,3,168,,10,,,,,,,,,,,,,{},{},{}
-960,Nipper,Nipper,3,114,,10,,,,,,,,,,,,,{},{},{}
-961,Conch,Conch,3,158,,10,,,,,,,,,,,,,{},{},{}
-962,Tentacle,Tentacle,3,70,,10,,,,,,,,,,,,,{},{},{}
-963,Sharp_Scale,Sharp Scale,3,250,,10,,,,,,,,,,,,,{},{},{}
-964,Crap_Shell,Crab Shell,3,90,,10,,,,,,,,,,,,,{},{},{}
-965,Clam_Shell,Clam Shell,3,56,,10,,,,,,,,,,,,,{},{},{}
-966,Flesh_Of_Clam,Clam Flesh,3,158,,10,,,,,,,,,,,,,{},{},{}
-967,Turtle_Shell,Turtle Shell,3,680,,10,,,,,,,,,,,,,{},{},{}
-968,Voucher_Of_Orcish_Hero,Heroic Emblem,3,3000,,10,,,,,,,,,,,,,{},{},{}
-969,Gold,Gold,3,150000,,200,,,,,,,,,,,,,{},{},{}
-970,Alchol,Alcohol,3,400,,30,,,,,,,,,,,,,{},{},{}
-971,Detrimindexta,Detrimindexta,3,400,,30,,,,,,,,,,,,,{},{},{}
-972,Karvodailnirol,Karvodailnirol,3,400,,30,,,,,,,,,,,,,{},{},{}
-973,Counteragent,Counteragent,3,800,,70,,,,,,,,,,,,,{},{},{}
-974,Mixture,Mixture,3,800,,70,,,,,,,,,,,,,{},{},{}
-975,Scarlet_Dyestuffs,Scarlet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-976,Lemon_Dyestuffs,Lemon Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-978,Cobaltblue_Dyestuffs,Cobaltblue Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-979,Darkgreen_Dyestuffs,Darkgreen Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-980,Orange_Dyestuffs,Orange Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-981,Violet_Dyestuffs,Violet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-982,White_Dyestuffs,White Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-983,Black_Dyestuffs,Black Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{}
-984,Oridecon,Oridecon,3,1100,,200,,,,,,,,,,,,,{},{},{}
-985,Elunium,Elunium,3,1100,,200,,,,,,,,,,,,,{},{},{}
-986,Anvil,Anvil,3,30000,,500,,,,,,,,,,,,,{},{},{}
-987,Oridecon_Anvil,Oridecon Anvil,3,120000,,700,,,,,,,,,,,,,{},{},{}
-988,Golden_Anvil,Golden Anvil,3,300000,,900,,,,,,,,,,,,,{},{},{}
-989,Emperium_Anvil,Emperium Anvil,3,600000,,1000,,,,,,,,,,,,,{},{},{}
-990,Boody_Red,Red Blood,3,1000,,50,,,,,,,,,,,,,{},{},{}
-991,Crystal_Blue,Crystal Blue,3,1000,,50,,,,,,,,,,,,,{},{},{}
-992,Wind_Of_Verdure,Wind of Verdure,3,1000,,50,,,,,,,,,,,,,{},{},{}
-993,Yellow_Live,Green Live,3,1000,,50,,,,,,,,,,,,,{},{},{}
-994,Flame_Heart,Flame Heart,3,3000,,300,,,,,,,,,,,,,{},{},{}
-995,Mistic_Frozen,Mystic Frozen,3,3000,,300,,,,,,,,,,,,,{},{},{}
-996,Rough_Wind,Rough Wind,3,3000,,300,,,,,,,,,,,,,{},{},{}
-997,Great_Nature,Great Nature,3,3000,,300,,,,,,,,,,,,,{},{},{}
-998,Iron,Iron,3,100,,50,,,,,,,,,,,,,{},{},{}
-999,Steel,Steel,3,1000,,100,,,,,,,,,,,,,{},{},{}
-1000,Star_Crumb,Star Crumb,3,4500,,100,,,,,,,,,,,,,{},{},{}
-1001,Sparkling_Dust,Star Dust,3,1500,,10,,,,,,,,,,,,,{},{},{}
-1002,Iron_Ore,Iron Ore,3,50,,150,,,,,,,,,,,,,{},{},{}
-1003,Coal,Coal,3,500,,50,,,,,,,,,,,,,{},{},{}
-1004,Patriotism_Marks,Chivalry Emblem,3,2,,100,,,,,,,,,,,,,{},{},{}
-1005,Hammer_Of_Blacksmith,Hammer of Blacksmith,3,2,,800,,,,,,,,,,,,,{},{},{}
-1006,Old_Magic_Book,Old Magicbook,3,2,,30,,,,,,,,,,,,,{},{},{}
-1007,Penetration,Necklace of Wisdom,3,2,,40,,,,,,,,,,,,,{},{},{}
-1008,Frozen_Heart,Necklace of Oblivion,3,2,,100,,,,,,,,,,,,,{},{},{}
-1009,Sacred_Marks,Hand of God,3,2,,20,,,,,,,,,,,,,{},{},{}
-1010,Phracon,Phracon,3,200,,200,,,,,,,,,,,,,{},{},{}
-1011,Emveretarcon,Emveretarcon,3,1000,,200,,,,,,,,,,,,,{},{},{}
-1012,Lizard_Scruff,Frill,3,250,,10,,,,,,,,,,,,,{},{},{}
-1013,Colorful_Shell,Rainbow Shell,3,90,,10,,,,,,,,,,,,,{},{},{}
-1014,Jaws_Of_Ant,Ant Jaw,3,232,,10,,,,,,,,,,,,,{},{},{}
-1015,Thin_N'_Long_Tongue,Tongue,3,528,,10,,,,,,,,,,,,,{},{},{}
-1016,Rat_Tail,Rat Tail,3,52,,10,,,,,,,,,,,,,{},{},{}
-1017,Moustache_Of_Mole,Mole Whiskers,3,106,,10,,,,,,,,,,,,,{},{},{}
-1018,Nail_Of_Mole,Mole Claw,3,210,,10,,,,,,,,,,,,,{},{},{}
-1019,Wooden_Block,Trunk,3,60,,10,,,,,,,,,,,,,{},{},{}
-1020,Long_Hair,Black Hair,3,292,,10,,,,,,,,,,,,,{},{},{}
-1021,Dokkaebi_Horn,Dokebi Horn,3,292,,10,,,,,,,,,,,,,{},{},{}
-1022,Fox_Tail,Nine Tails,3,650,,10,,,,,,,,,,,,,{},{},{}
-1023,Fish_Tail,Fish Tail,3,196,,10,,,,,,,,,,,,,{},{},{}
-1024,Chinese_Ink,Squid Ink,3,264,,10,,,,,,,,,,,,,{},{},{}
-1025,Spiderweb,Cobweb,3,184,,10,,,,,,,,,,,,,{},{},{}
-1026,Acorn,Acorn,3,98,,10,,,,,,,,,,,,,{},{},{}
-1027,Porcupine_Spike,Porcupine Quill,3,158,,10,,,,,,,,,,,,,{},{},{}
-1028,Wild_Boar's_Mane,Mane,3,196,,10,,,,,,,,,,,,,{},{},{}
-1029,Tiger's_Skin,Tiger Skin,3,548,,10,,,,,,,,,,,,,{},{},{}
-1030,Tiger_Footskin,Tiger's Footskin,3,1500,,10,,,,,,,,,,,,,{},{},{}
-1031,Limb_Of_Mantis,Mantis Scythe,3,196,,10,,,,,,,,,,,,,{},{},{}
-1032,Blossom_Of_Maneater,Maneater Blossom,3,196,,10,,,,,,,,,,,,,{},{},{}
-1033,Root_Of_Maneater,Maneater Root,3,208,,10,,,,,,,,,,,,,{},{},{}
-1034,Cobold_Hair,Blue Hair,3,342,,10,,,,,,,,,,,,,{},{},{}
-1035,Dragon_Canine,Dragon Canine,3,484,,10,,,,,,,,,,,,,{},{},{}
-1036,Dragon_Scale,Dragon Scale,3,500,,10,,,,,,,,,,,,,{},{},{}
-1037,Dragon_Train,Dragon Tail,3,1200,,10,,,,,,,,,,,,,{},{},{}
-1038,Petite_DiablOfs_Horn,Little Evil Horn,3,528,,10,,,,,,,,,,,,,{},{},{}
-1039,Petite_DiablOfs_Wing,Little Evil Wing,3,2000,,10,,,,,,,,,,,,,{},{},{}
-1040,Elder_Pixie's_Beard,Elder Pixie's Moustache,3,232,,10,,,,,,,,,,,,,{},{},{}
-1041,Lantern,Lantern,3,250,,10,,,,,,,,,,,,,{},{},{}
-1042,Short_Leg,Bug Leg,3,430,,10,,,,,,,,,,,,,{},{},{}
-1043,Nail_Of_Orc,Orc Claw,3,168,,10,,,,,,,,,,,,,{},{},{}
-1044,Tooth_Of_,Zenorc's Fang,3,264,,10,,,,,,,,,,,,,{},{},{}
-1045,Sacred_Masque,Cultish Masque,3,412,,10,,,,,,,,,,,,,{},{},{}
-1046,Tweezer,Scorpion Nipper,3,614,,10,,,,,,,,,,,,,{},{},{}
-1047,Head_Of_Medusa,Dead Medusa,3,548,,10,,,,,,,,,,,,,{},{},{}
-1048,Slender_Snake,Horrendous Hair,3,800,,10,,,,,,,,,,,,,{},{},{}
-1049,Skirt_Of_Virgin,Skirt of Virgin,3,1700,,10,,,,,,,,,,,,,{},{},{}
-1050,Tendon,Tendon,3,220,,10,,,,,,,,,,,,,{},{},{}
-1051,Detonator,Detonator,3,450,,10,,,,,,,,,,,,,{},{},{}
-1052,Single_Cell,Single Cell,3,46,,10,,,,,,,,,,,,,{},{},{}
-1053,Tooth_Of_Ancient_Fish,Ancient Tooth,3,548,,10,,,,,,,,,,,,,{},{},{}
-1054,Lip_Of_Ancient_Fish,Ancient Lips,3,1000,,10,,,,,,,,,,,,,{},{},{}
-1055,Earthworm_Peeling,Earthworm Peeling,3,196,,10,,,,,,,,,,,,,{},{},{}
-1056,Grit,Grit,3,306,,10,,,,,,,,,,,,,{},{},{}
-1057,Moth_Dust,Moth Dust,3,138,,10,,,,,,,,,,,,,{},{},{}
-1058,Wing_Of_Moth,Moth Wings,3,200,,10,,,,,,,,,,,,,{},{},{}
-1059,Transparent_Cloth,Fabric,3,306,,10,,,,,,,,,,,,,{},{},{}
-1060,Golden_Hair,Golden Hair,3,430,,10,,,,,,,,,,,,,{},{},{}
-1061,Starsand_Of_Witch,Witched Starsand,3,484,,10,,,,,,,,,,,,,{},{},{}
-1062,Pumpkin_Head,Jack o' Pumpkin,3,374,,10,,,,,,,,,,,,,{},{},{}
-1063,Sharpened_Cuspid,Fang,3,680,,10,,,,,,,,,,,,,{},{},{}
-1064,Reins,Reins,3,802,,10,,,,,,,,,,,,,{},{},{}
-1065,Booby_Trap,Trap,3,75,,10,,,,,,,,,,,,,{},{},{}
-1066,Tree_Of_Archer_1,Fine-grained Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1067,Tree_Of_Archer_2,Solid Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1068,Tree_Of_Archer_3,Barren Trunk,3,2,,10,,,,,,,,,,,,,{},{},{}
-1069,Mushroom_Of_Thief_1,Orange Net Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{}
-1070,Mushroom_Of_Thief_2,Orange Gooey Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{}
-1071,Mage_Test_1,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1072,Delivery_Message,Delivery Message,3,0,,10,,,,,,,,,,,,,{},{},{}
-1073,Merchant_Voucher_1,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1074,Merchant_Voucher_2,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1075,Merchant_Voucher_3,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1076,Merchant_Voucher_4,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1077,Merchant_Voucher_5,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1078,Merchant_Voucher_6,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1079,Merchant_Voucher_7,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1080,Merchant_Voucher_8,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{}
-1081,Merchant_Box_1,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{}
-1082,Merchant_Box_2,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{}
-1083,Merchant_Box_3,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{}
-1084,Kapra's_Pass,Kafra Pass,3,0,,10,,,,,,,,,,,,,{},{},{}
-1085,Mage_Test_2,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1086,Mage_Test_3,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1087,Mage_Test_4,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1088,Morocc_Potion,Morocc Solution,3,0,,10,,,,,,,,,,,,,{},{},{}
-1089,Payon_Potion,Payon Solution,3,0,,10,,,,,,,,,,,,,{},{},{}
-1090,Mage_Test_Etc,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{}
-1091,Merchant_Box_Etc,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-1092,Empty_Cylinder,Empty Test Tube,3,3,,10,,,,,,,,,,,,,{},{},{}
-1093,Empty_Potion,Empty Potion Bottle,3,10,,10,,,,,,,,,,,,,{},{},{}
-1094,Short_Daenggie,Short Daenggie,3,278,,10,,,,,,,,,,,,,{},{},{}
-1095,Needle_Of_Alarm,Needle of Alarm,3,546,,10,,,,,,,,,,,,,{},{},{}
-1096,Round_Shell,Round Shell,3,780,,10,,,,,,,,,,,,,{},{},{}
-1097,Worn_Out_Page,Worn Out Page,3,948,,10,,,,,,,,,,,,,{},{},{}
-1098,Manacles,Manacles,3,658,,10,,,,,,,,,,,,,{},{},{}
-1099,Worn_Out_Prison_Uniform,Worn-out Prison Uniform,3,680,,10,,,,,,,,,,,,,{},{},{}
-//===================================================================
-// 1-Handed Swords
-//===================================================================
-1101,Sword,Sword,5,100,,500,25,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1102,Sword_,Sword,5,100,,500,25,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1103,Sword__,Sword,5,100,,500,25,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1104,Falchion,Falchion,5,1500,,600,39,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1105,Falchion_,Falchion,5,1500,,600,39,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1106,Falchion__,Falchion,5,1500,,600,39,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1107,Blade,Blade,5,2900,,700,53,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1108,Blade_,Blade,5,2900,,700,53,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1109,Blade__,Blade,5,2900,,700,53,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{}
-1110,Lapier,Rapier,5,10000,,500,70,,1,2,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1111,Lapier_,Rapier,5,10000,,500,70,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1112,Lapier__,Rapier,5,10000,,500,70,,1,0,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1113,Scimiter,Scimitar,5,17000,,700,85,,1,2,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1114,Scimiter_,Scimitar,5,17000,,700,85,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1115,Scimiter__,Scimitar,5,17000,,700,85,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{}
-1116,Katana,Katana,5,2000,,1000,60,,1,3,0x00004082,63,2,34,1,4,1,3,{},{},{}
-1117,Katana_,Katana,5,2000,,1000,60,,1,4,0x00004082,63,2,34,1,4,1,3,{},{},{}
-1118,Katana__,Katana,5,2000,,1000,60,,1,0,0x00004082,63,2,34,1,4,1,3,{},{},{}
-1119,Tsurugi,Tsurugi,5,51000,,1200,130,,1,1,0x000654E2,63,2,2,3,27,1,2,{},{},{}
-1120,Tsurugi_,Tsurugi,5,51000,,1200,130,,1,2,0x000654E2,63,2,2,3,27,1,2,{},{},{}
-1121,Tsurugi__,Tsurugi,5,51000,,1200,130,,1,0,0x000654E2,63,2,2,3,27,1,2,{},{},{}
-1122,Ring_Pommel_Saber,Ring Pommel Saber,5,24000,,900,100,,1,2,0x000654E2,63,2,2,2,14,1,2,{},{},{}
-1123,Haedonggum,Haedonggum,5,50000,,900,120,,1,1,0x000654E2,63,2,2,3,27,1,2,{ bonus bInt,3; },{},{}
-1124,Orcish_Sword,Orcish Sword,5,20,,800,90,,1,0,0x000654E3,63,2,2,3,5,1,2,{ bonus bUnbreakableWeapon; },{},{}
-1125,Ring_Pommel_Saber_,Ring Pommel Saber,5,24000,,900,100,,1,3,0x000654E2,63,2,2,2,14,1,2,{},{},{}
-1126,Saber,Saber,5,49000,,1000,115,,1,2,0x000654E2,63,2,2,3,27,1,2,{},{},{}
-1127,Saber_,Saber,5,49000,,1000,115,,1,3,0x000654E2,63,2,2,3,27,1,2,{},{},{}
-1128,Hae_Dong_Gum_,Haedonggum,5,50000,,900,120,,1,2,0x000654E2,63,2,2,3,27,1,2,{ bonus bInt,3; },{},{}
-1129,Flamberge,Flamberge,5,60000,,1500,150,,1,0,0x00004080,63,2,2,3,27,1,2,{},{},{}
-1130,Nagan,Nagan,5,20,,500,120,,1,0,0x000654E2,63,2,2,4,40,1,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-1131,Ice_Falchon,Ice Falchion,5,20,,600,100,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; },{},{}
-1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; },{},{}
-1133,Fire_Brand,Fireblend,5,20,,500,100,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; },{},{}
-1134,Scissores_Sword,Caesar's Sword,5,20,,700,140,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; },{},{}
-1135,Cutlas,Cutlus,5,20,,900,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-1136,Solar_Sword,Solar Sword,5,20,,1200,85,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{}
-1137,Excalibur,Excalibur,5,20,,1200,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; },{},{}
-1138,Mysteltainn_,Mysteltainn,5,20,,1000,170,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; },{},{}
-1139,Tale_Fing_,Tirfing,5,20,,1000,200,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; },{},{}
-1140,Byeorrun_Gum,Byeollungum,5,20,,900,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; },{},{}
-1141,Immaterial_Sword,Immaterial Sword,5,20,,900,140,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,30,30,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{}
-1142,Jewel_Sword,Jeweled Sword,5,20,,2200,104,,1,0,0x000654E2,63,2,2,3,68,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; },{},{}
-1143,Gaia_Sword,Gaia Sword,5,20,,2500,140,,1,0,0x000654E2,63,2,2,3,74,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Ore,30; },{},{}
-1144,Sasimi,Sashimi,5,20,,1400,75,,1,0,0x000654E2,63,2,2,3,48,1,2,{ bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; },{},{}
-1145,Holy_Avenger,Holy Avenger,5,450000,,1350,125,,1,0,0x00004000,63,2,2,3,75,1,2,{ bonus bAtkEle,Ele_Holy; bonus bVit,2; },{},{}
-1146,Town_Sword,Town Sword,5,42000,,800,100,,1,1,0x00000001,63,2,2,3,30,1,2,{},{},{}
-1147,Town_Sword_,Town Sword,5,42000,,800,100,,1,2,0x00000001,63,2,2,3,30,1,2,{},{},{}
-1148,Star_Dust_Blade,Star Dust Blade,5,20,,1000,140,,1,1,0x00000001,63,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{}
-1149,Flamberge_,Flamberge,5,60000,,1500,150,,1,2,0x00004080,63,2,2,3,27,1,2,{},{},{}
-//===================================================================
-// 2-Handed Swords
-//===================================================================
-1151,Slayer,Slayer,5,15000,,1300,90,,1,2,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1152,Slayer_,Slayer,5,15000,,1300,90,,1,3,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1153,Slayer__,Slayer,5,15000,,1300,90,,1,0,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1154,Bastard_Sword,Bastard Sword,5,22500,,1600,115,,1,2,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1155,Bastard_Sword_,Bastard Sword,5,22500,,1600,115,,1,3,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1156,Bastard_Sword__,Bastard Sword,5,22500,,1600,115,,1,0,0x00004082,63,2,34,2,18,1,3,{},{},{}
-1157,Two_Hand_Sword,Two-Handed Sword,5,60000,,2200,160,,1,1,0x00004082,63,2,34,3,33,1,3,{},{},{}
-1158,Two_Hand_Sword_,Two-Handed Sword,5,60000,,2200,160,,1,2,0x00004082,63,2,34,3,33,1,3,{},{},{}
-1159,Two_Hand_Sword__,Two-Handed Sword,5,60000,,2200,160,,1,0,0x00004082,63,2,34,3,33,1,3,{},{},{}
-1160,Broad_Sword,Broad Sword,5,65000,,2000,140,,1,1,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{}
-1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; },{},{}
-1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{}
-1163,Claymore,Claymore,5,74000,,2500,180,,1,0,0x00004080,63,2,34,3,33,1,3,{},{},{}
-1164,Muramasa,Muramasa,5,20,,1000,155,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; },{},{}
-1165,Masamune,Masamune,5,20,,1000,200,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1166,Dragon_Slayer,Dragon Slayer,5,20,,1300,150,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{}
-1167,Schweizersabel,Schweizersabel,5,20,,1600,160,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{}
-1168,Zweihander,Zweihander,5,20,,2200,200,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{}
-1169,Executioner_,Executioner,5,20,,2200,155,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1170,Katzbalger,Katzbalger,5,20,,2000,175,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bVit,5; bonus bDef,10; },{},{}
-1171,Zweihander_,Zweihander,5,20,,2200,200,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{}
-1172,Claymore_,Claymore,5,74000,,2500,180,,1,2,0x00004080,63,2,34,3,33,1,3,{},{},{}
-1173,Muramasa_C,Muramasa,5,1,,0,204,,1,0,0x00004082,63,2,34,4,1,0,3,{ bonus bCritical,30; bonus bAspdRate,8; },{},{}
-1174,Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1175,Altas_Weapon,Atlas Weapon,5,20,,3500,200,,1,1,0x00004082,18,2,34,4,55,1,3,{ bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; },{},{}
-1176,Muscle_Cutter,Muscle Cutter,5,20,,2200,160,,1,2,0x00004082,18,2,34,4,55,1,3,{ bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; },{},{}
-1177,Muramash,Muramash,5,20,,0,120,,1,0,0x00004082,63,2,34,1,0,0,3,{ bonus2 bAddClass,Class_All,50; },{},{}
-1178,Schweizersabel_,Schweizersabel,5,20,,1600,160,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{}
-1179,Executioner__,Executioner,5,20,,2200,155,,1,1,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{}
-1180,Dragon_Slayer_,Dragon Slayer,5,20,,1300,150,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{}
-1181,Tae_Goo_Lyeon,Tae Goo Lyeon,5,20,,2000,250,,1,2,0x00004082,18,2,34,4,90,1,3,{ bonus bFlee2,10; if(JobLevel>=70) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bVariableCastrate,-20; bonus bDelayRate,-20; } },{},{}
-1182,Bloody_Eater,Bloody Eater,5,20,,1200,200,,1,2,0x00004082,18,2,34,4,50,1,3,{ bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100; },{},{}
-1183,BF_Two_Handed_Sword1,Brave Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1184,BF_Two_Handed_Sword2,Valorous Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; },{},{}
-1185,Violet_Fear,Violet Fear,5,20,,2200,275,,1,2,0x00004082,18,2,34,4,80,1,3,{ bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; specialeffect2 EF_ENHANCE; }",50,5000; },{},{}
-1186,Death_Guidance,Death Guidance,5,20,,2000,200,,1,2,0x00004082,18,2,34,4,70,1,3,{ 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; },{},{}
-1187,Krieger_Twohand_Sword1,Glorious Claymore,5,20,,0,220,,1,0,0x00004082,63,2,34,4,80,1,3,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,1); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } },{},{}
-1188,Veteran_Sword,Veteran Sword,5,10000,,2000,180,,1,1,0x00004082,63,2,34,4,80,1,3,{ 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; },{},{}
-1189,Krasnaya,Krasnaya,5,20,,3800,200,,2,3,0x00004082,18,2,34,2,50,1,3,{ if(readparam(bStr)>=95) { bonus bBaseAtk,20; } },{},{}
-1190,Claymore_C,Claymore,5,0,,0,220,,1,0,0x00004080,63,2,34,3,1,0,3,{ bonus2 bAddSize,Size_All,40; },{},{}
-1191,Alca_Bringer,Alca Bringer,5,20,,3400,280,,2,0,0x00004082,63,2,34,3,100,1,3,{ bonus bAspd,(getrefine()/2); },{},{}
-1192,P_Slayer1,Eden Slayer I,5,0,,0,162,,1,0,0x00004082,63,2,34,2,26,0,3,{},{},{}
-1193,P_Slayer2,Eden Slayer II,5,0,,0,185,,1,0,0x00004082,63,2,34,2,40,0,3,{},{},{}
-1194,F_Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bAtkEle,Ele_Dark; },{},{}
-1195,E_Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bAtkEle,Ele_Dark; },{},{}
-1196,Chrome_Twohand_Sword,Chrome Two-Handed Sword,5,20,,400,280,,1,0,0x00004082,63,2,34,3,110,1,3,{ bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10; },{},{}
-1197,P_Slayer3,Eden Slayer III,5,0,,0,200,,1,0,0x00004082,63,2,34,3,60,0,3,{},{},{}
-1198,Hairtail,Cutlass,5,0,,0,220,,3,0,0x00004082,63,2,34,1,50,0,3,{ bonus bUnbreakableWeapon; bonus bCritical,20; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bBaseAtk,50; } },{},{}
-1199,Ebony_Toe_Nail,Ebony Toe Nail,5,56000,,1000,250:150,,1,0,0x00004082,63,2,34,4,120,1,3,{},{},{}
-//===================================================================
-// Daggers
-//===================================================================
-1201,Knife,Knife,5,50,,400,17,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1202,Knife_,Knife,5,50,,400,17,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1203,Knife__,Knife,5,50,,400,17,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1204,Cutter,Cutter,5,1250,,500,30,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1205,Cutter_,Cutter,5,1250,,500,30,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1206,Cutter__,Cutter,5,1250,,500,30,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1207,Main_Gauche,Main Gauche,5,2400,,600,43,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1208,Main_Gauche_,Main Gauche,5,2400,,600,43,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1209,Main_Gauche__,Main Gauche,5,2400,,600,43,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{}
-1210,Dirk,Dirk,5,8500,,500,59,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1211,Dirk_,Dirk,5,8500,,500,59,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1212,Dirk__,Dirk,5,8500,,500,59,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1213,Dagger,Dagger,5,14000,,600,73,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1214,Dagger_,Dagger,5,14000,,600,73,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1215,Dagger__,Dagger,5,14000,,600,73,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1216,Stiletto,Stiletto,5,19500,,700,87,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1217,Stiletto_,Stiletto,5,19500,,700,87,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1218,Stiletto__,Stiletto,5,19500,,700,87,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{}
-1219,Gladius,Gladius,5,43000,,700,105,,1,2,0x028F5EEE,63,2,2,3,24,1,1,{},{},{}
-1220,Gladius_,Gladius,5,43000,,700,105,,1,3,0x028F5EEE,63,2,2,3,24,1,1,{},{},{}
-1221,Gladius__,Gladius,5,43000,,700,105,,1,0,0x028F5EEE,63,2,2,3,24,1,1,{},{},{}
-1222,Damascus,Damascus,5,49000,,800,118,,1,1,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{}
-1223,Forturn_Sword,Fortune Sword,5,20,,500,90,,1,0,0x028F5EEE,63,2,2,4,24,1,1,{ bonus bLuk,5; bonus bFlee2,20; },{},{}
-1224,Sword_Breaker,Swordbreaker,5,20,,1000,70,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{}
-1225,Mail_Breaker,Mailbreaker,5,20,,1000,70,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{}
-1226,Damascus_,Damascus,5,49000,,800,118,,1,2,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{}
-1227,Weeder_Knife,Weeder Knife,5,20,,400,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; },{},{}
-1228,Combat_Knife,Combat Knife,5,20,,400,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; },{},{}
-1229,Mama's_Knife,Kitchen Knife,5,20,,500,75,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; },{},{}
-1230,House_Auger,Ice Pick,5,20,,600,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{}
-1231,Bazerald,Bazerald,5,20,,500,70:105,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; },{},{}
-1232,Assasin_Dagger,Assassin Dagger,5,20,,600,140,,1,0,0x00001000,63,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{}
-1233,Exercise,Exorciser,5,20,,700,90,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; },{},{}
-1234,Moonlight_Sword,Moonlight Dagger,5,20,,700,50,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{}
-1235,Azoth,Azoth,5,20,,700,110,,1,0,0x00040000,63,2,2,4,36,1,1,{ bonus bClassChange,300; },{},{}
-1236,Sucsamad,Sucsamad,5,20,,800,140,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{}
-1237,Grimtooth_,Grimtooth,5,20,,800,180,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; },{},{}
-1238,Zeny_Knife,Zeny Knife,5,20,,1200,64,,1,0,0x028F5EEE,63,2,2,3,70,1,1,{ bonus2 bGetZenyNum,100,40; },{},{}
-1239,Poison_Knife,Poison Knife,5,20,,800,64,,1,0,0x028F5EEE,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-1240,Princess_Knife,Princess Knife,5,20,,400,84,,1,0,0x028F5EEE,63,2,2,4,1,1,1,{ bonus bAllStats,1; },{},{}
-1241,Cursed_Dagger,Cursed Dagger,5,80000,,400,55,,1,0,0x00810204,63,2,2,4,85,1,1,{ bonus2 bAddEff,Eff_Curse,5000; },{},{}
-1242,Counter_Dagger,Dagger of Counter,5,120000,,550,140,,1,0,0x00810204,63,2,2,4,55,1,1,{ bonus bCritical,90; },{},{}
-1243,Novice_Knife,Novice Main-Gauche,5,0,,1,45,,1,0,0x00000001,63,2,2,1,1,0,1,{},{},{}
-1244,Holy_Dagger,Holy Dagger,5,20,,800,100,,1,0,0x02021040,63,2,2,4,55,1,1,{ bonus bAtkEle,Ele_Holy; bonus bDex,1; },{},{}
-1245,Cinquedea,Cinquedea,5,40000,,700,110,,1,1,0x00000001,63,2,2,3,30,1,1,{},{},{}
-1246,Cinquedea_,Cinquedea,5,40000,,700,110,,1,2,0x00000001,63,2,2,3,30,1,1,{},{},{}
-1247,Kindling_Dagger,Kindle Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Fire; },{},{}
-1248,Obsidian_Dagger,Obsidian Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Earth; },{},{}
-1249,Fisherman's_Dagger,Fisherman's Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Water; },{},{}
-//===================================================================
-// Katars
-//===================================================================
-1250,Jur,Jur,5,19500,,800,125,,1,2,0x00001000,63,2,34,2,18,1,16,{},{},{}
-1251,Jur_,Jur,5,19500,,800,125,,1,3,0x00001000,63,2,34,2,18,1,16,{},{},{}
-1252,Katar,Katar,5,41000,,1200,148,,1,1,0x00001000,63,2,34,3,33,1,16,{ bonus bDex,1; },{},{}
-1253,Katar_,Katar,5,41000,,1200,148,,1,2,0x00001000,63,2,34,3,33,1,16,{ bonus bDex,1; },{},{}
-1254,Jamadhar,Jamadhar,5,37200,,1500,165,,1,0,0x00001000,63,2,34,3,33,1,16,{},{},{}
-1255,Jamadhar_,Jamadhar,5,37200,,1500,165,,1,1,0x00001000,63,2,34,3,33,1,16,{},{},{}
-1256,Katar_Of_Cold_Icicle,Katar of Frozen Icicle,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{}
-1257,Katar_Of_Thornbush,Katar of Quaking,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{}
-1258,Katar_Of_Raging_Blaze,Katar of Raging Blaze,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{}
-1259,Katar_Of_Piercing_Wind,Katar of Piercing Wind,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{}
-1260,Ghoul_Leg,Sharpened Legbone of Ghoul,5,52500,,1700,150,,1,0,0x00001000,63,2,34,3,65,1,16,{ bonus bAtkEle,Ele_Undead; },{},{}
-1261,Infiltrator,Infiltrator,5,57000,,1500,140,,1,0,0x00001000,63,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{}
-1262,Nail_Of_Loki,Loki's Nail,5,20,,1200,115,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{}
-1263,Unholy_Touch,Unholy Touch,5,20,,1250,151,,1,0,0x00001000,63,2,34,4,70,1,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{}
-1264,Various_Jur,Specialty Jur,5,20,,800,90,,1,4,0x00001000,63,2,34,1,1,1,16,{ bonus2 bAddEff2,Eff_Bleeding,10; },{},{}
-1265,Bloody_Roar,Bloody Roar,5,20,,1000,120,,1,0,0x00001000,63,2,34,4,75,1,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{}
-1266,Infiltrator_,Infiltrator,5,57000,,1500,140,,1,1,0x00001000,63,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{}
-1267,Infiltrator_C,Infiltrator,5,1,,0,189,,1,0,0x00001000,63,2,34,4,1,0,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5; },{},{}
-1268,Wild_Beast_Claw,Wild Beast Claw,5,20,,1450,160,,1,1,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100; },{},{}
-1269,Inverse_Scale,Inverse Scale,5,20,,1500,140,,1,0,0x00001000,18,2,34,4,55,1,16,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{}
-1270,Drill_Katar,Drill Katar,5,20,,1400,110,,1,1,0x00001000,18,2,34,4,55,1,16,{ bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; },{},{}
-1271,Blood_Tears,Blood Tears,5,20,,1700,120,,1,2,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; },{},{}
-1272,Scratcher,Scratcher,5,20,,0,120,,1,0,0x00001000,63,2,34,1,0,0,16,{ bonus2 bAddClass,Class_All,50; },{},{}
-1273,Bloody_Roar_C,Refined Bloody Roar,5,1,,0,148,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bHPRegenRate,3,5000; },{},{}
-1274,Unholy_Touch_C,Refined Unholy Touch,5,1,,0,179,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{}
-1275,Katar_Of_Cold_Icicle_,Katar of Frozen Icicle,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{}
-1276,Katar_Of_Thornbush_,Katar of Quaking,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{}
-1277,Katar_Of_Raging_Blaze_,Katar of Raging Blaze,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{}
-1278,Katar_Of_Piercing_Wind_,Katar of Piercing Wind,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{}
-1279,BF_Katar1,Brave Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1280,BF_Katar2,Valorous Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; },{},{}
-1281,Krieger_Katar1,Glorious Bloody Roar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1282,Krieger_Katar2,Glorious Jamadhar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1283,Katar_Of_Speed,Katar Of Speed,5,20,,0,175,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; },{},{}
-1284,Krishna,Krishna,5,20,,1200,120,,1,2,0x00001000,18,2,34,3,50,1,16,{ bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),5; },{},{}
-1285,Cakram,Chakram,5,20,,1000,130,,1,2,0x00001000,18,2,34,3,50,1,16,{ if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; },{},{}
-1286,Jamadhar_C,Jamadhar,5,0,,0,200,,1,0,0x00001000,63,2,34,3,1,0,16,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{}
-1287,Durga,Durga,5,20,,1200,190,,1,1,0x00001000,63,2,34,3,100,1,16,{},{},{}
-1288,Bloody_Fear_C,Bloody Fear,5,1,,0,145,,1,0,0x00001000,63,2,34,4,1,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-1289,P_Katar1,Eden Katar I,5,0,,0,155,,1,0,0x00001000,63,2,34,3,60,0,16,{},{},{}
-1290,Agent_Katar,Agent Katar,5,41000,,1200,170,,1,1,0x00001000,63,2,34,3,100,1,16,{ bonus bHit,readparam(bLuk)/2; },{},{}
-1291,Guillotine_Katar,Guillotine Katar,5,56000,,1500,200,,1,1,0x00001000,63,2,34,4,140,1,16,{ bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30; },{},{}
-1292,Upg_Katar,Upg Katar,5,20,,1000,80,,1,1,0x00001000,63,2,34,3,1,1,16,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{}
-1293,Velum_Jamadhar,Vellum Jamadhar,5,20,,1200,170,,1,0,0x00001000,63,2,34,4,95,1,16,{ bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,getrefine(); },{},{}
-1294,Velum_Scare,Vellum Scale,5,20,,1200,50,,1,0,0x00001000,63,2,34,4,95,1,16,{ bonus3 bSPVanishRaceRate,RC_Player,1000,10; },{},{}
-1295,Blood_Tears_,Blood Tears,5,20,,1700,120,,1,3,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; },{},{}
-1296,Metal_Katar,Metal Katar,5,20,,0,75,,1,1,0x00001000,63,2,34,3,1,1,16,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-1297,Inverse_Scale_,Inverse Scale,5,20,,1500,140,,1,2,0x00001000,18,2,34,4,55,1,16,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{}
-1298,Shiver_Katar,Katar Of Horror,5,60000,,2700,110,,1,2,0x00001000,63,2,34,4,105,1,16,{},{},{}
-1299,TE_Woe_Katar,TE Woe Katar,5,0,,0,120,,1,0,0x00001000,63,2,34,3,40,1,16,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{}
-//===================================================================
-// 1-Handed Axes
-//===================================================================
-1301,Axe,Axe,5,500,,800,38,,1,3,0x000654E3,63,2,2,1,3,1,6,{},{},{}
-1302,Axe_,Axe,5,500,,800,38,,1,4,0x000654E3,63,2,2,1,3,1,6,{},{},{}
-1303,Axe__,Axe,5,500,,800,38,,1,0,0x000654E3,63,2,2,1,3,1,6,{},{},{}
-1304,Orcish_Axe,Orcish Axe,5,20,,1500,75,,1,0,0x000654E3,63,2,2,3,3,1,6,{},{},{}
-1305,Cleaver,Cleaver,5,20,,1200,140,,1,0,0x000444A2,63,2,2,4,44,1,6,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; },{},{}
-1306,War_Axe,War Axe,5,20,,4200,140,,1,1,0x00040400,63,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{}
-1307,Windhawk,Windhawk,5,18000,,1500,115,,1,0,0x000654E2,63,2,2,2,14,1,6,{ bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; },{},{}
-1308,Golden_Axe,Golden Axe,5,20,,3000,170,,1,0,0x00000001,63,2,2,4,45,1,6,{},{},{}
-1309,Orcish_Axe_,Orcish Axe,5,20,,1500,75,,1,4,0x000654E3,63,2,2,3,3,1,6,{},{},{}
-1310,Krieger_Onehand_Axe1,Glorious Cleaver,5,20,,0,130,,1,0,0x000444A2,63,2,2,4,80,1,6,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } },{},{}
-1311,Vecer_Axe,Vecer Axe,5,20,,1500,140,,1,2,0x000444A2,18,2,2,3,50,1,6,{ 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; } },{},{}
-1312,Orcish_Axe_C,Orcish Axe,5,0,,0,110,,1,0,0x000654E3,63,2,2,3,1,0,6,{ bonus2 bAddSize,Size_All,70; },{},{}
-1313,Tourist_Axe,Tourist Axe,5,0,,500,77,,1,0,0x000654E3,63,2,2,1,1,0,6,{ bonus bStr,2; },{},{}
-1314,F_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-1315,F_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{}
-1316,Adventure_Axe,Adventure Axe,5,0,,0,100,,1,0,0x00040420,63,2,2,1,1,0,6,{},{},{}
-1317,Academy_Axe,Academy Axe,5,0,,1600,130,,1,1,0x00040420,63,2,2,1,30,1,6,{ bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10)); },{},{}
-1318,Dofle_Axe,Deflation Axe,5,50000,,1800,180,,1,2,0x000654E2,63,2,2,4,105,1,6,{ bonus bUnbreakableWeapon; },{},{}
-1319,TE_Woe_Axe,TE Woe Axe,5,0,,0,100,,1,0,0x000654E3,63,2,2,3,40,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; },{},{}
-1321,Dofle_Axe_,Deflation Axe,5,50000,,1800,180,,1,3,0x000654E2,63,2,2,4,105,1,6,{ bonus bUnbreakableWeapon; },{},{}
-1322,Ru_Blue_Axe,Blue Axe,5,10,,1800,180,,1,1,0xFFFFFFFF,63,2,2,1,1,1,6,{ bonus bStr,5; bonus bVit,5; },{},{}
-1323,Ru_Gold_Axe,Ru Gold Axe,5,0,,1800,180,,1,2,0x00040000,56,2,2,3,120,1,6,{ bonus bStr,8; bonus bInt,8; },{},{}
-1324,War_Axe_,War Axe,5,20,,4200,140,,1,3,0x00040400,63,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{}
-1326,Illusion_War_Axe,Illusion War Axe,5,0,,4200,180,,1,2,0x00040420,63,2,2,4,120,1,6,{ 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); },{},{}
-//===================================================================
-// 2-Handed Axes
-//===================================================================
-1333,Golden_Wrench,Golden Wrench,5,,,5500,220,,1,2,0x00000400,56,2,2,4,170,1,6,{ .@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; },{},{}
-1351,Battle_Axe,Battle Axe,5,5400,,1500,80,,1,3,0x000444A2,63,2,34,1,3,1,7,{},{},{}
-1352,Battle_Axe_,Battle Axe,5,5400,,1500,80,,1,4,0x000444A2,63,2,34,1,3,1,7,{},{},{}
-1353,Battle_Axe__,Battle Axe,5,5400,,1500,80,,1,0,0x000444A2,63,2,34,1,3,1,7,{},{},{}
-1354,Hammer,Hammer,5,15500,,2000,120,,1,2,0x000444A2,63,2,34,2,16,1,7,{},{},{}
-1355,Hammer_,Hammer,5,15500,,2000,120,,1,3,0x000444A2,63,2,34,2,16,1,7,{},{},{}
-1356,Hammer__,Hammer,5,15500,,2000,120,,1,0,0x000444A2,63,2,34,2,16,1,7,{},{},{}
-1357,Buster,Buster,5,34000,,2200,155,,1,1,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1358,Buster_,Buster,5,34000,,2200,155,,1,2,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1359,Buster__,Buster,5,34000,,2200,155,,1,0,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1360,Two_Handed_Axe,Two-Handed Axe,5,55000,,2500,185,,1,1,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1361,Two_Handed_Axe_,Two-Handed Axe,5,55000,,2500,185,,1,2,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1362,Two_Handed_Axe__,Two-Handed Axe,5,55000,,2500,185,,1,0,0x000444A2,63,2,34,3,30,1,7,{},{},{}
-1363,Brood_Axe,Bloody Axe,5,20,,4000,170,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bStr,10; bonus bSpeedRate,25; },{},{}
-1364,Great_Axe,Great Axe,5,20,,1800,187,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; },{},{}
-1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{}
-1366,Right_Epsilon,Light Epsilon,5,20,,2300,180,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; },{},{}
-1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; },{},{}
-1368,Tomahawk,Tomahawk,5,20,,2500,165,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{}
-1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{}
-1370,Doom_Slayer,Doom Slayer,5,20,,6000,10,,1,0,0x000444A2,63,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{}
-1371,Doom_Slayer_,Doom Slayer,5,20,,6000,10,,1,1,0x000444A2,63,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{}
-1372,Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ 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; */},{},{}
-1373,Brood_Axe_C,Refined Bloody Axe,5,2,,0,205,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5; },{},{}
-1374,Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{}
-1375,Berdysz,Berdysz,5,20,,2500,200,,1,2,0x000444A2,18,2,34,3,70,1,7,{ bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; },{},{}
-1376,Heart_Breaker,Heart Breaker,5,20,,2000,175,,1,1,0x000444A2,18,2,34,4,70,1,7,{ 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; },{},{}
-1377,Hurricane_Fury,Hurricane's Fury,5,20,,3500,332,,1,1,0x000444A2,18,2,34,4,80,1,7,{ .@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; },{},{}
-1378,Great_Axe_C,Refined Great Axe,5,1,,0,215,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000; },{},{}
-1379,BF_Two_Handed_Axe1,Valorous Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1380,BF_Two_Handed_Axe2,Brave Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-1381,N_Battle_Axe,Novice Battle Axe,5,0,,0,100,,1,3,0x000444A2,63,2,34,1,3,0,7,{},{},{}
-1382,Krieger_Twohand_Axe1,Glorious Two-Handed Axe,5,20,,0,220,,1,0,0x000444A2,63,2,34,4,80,1,7,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; } },{},{}
-1383,Holy_Celestial_Axe,Celestial Axe,5,20,,1500,200,,1,0,0x000444A2,63,2,34,4,60,1,7,{ bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,30; },{},{}
-1384,Veteran_Axe,Veteran Axe,5,10000,,3000,250,,1,2,0x000444A2,63,2,34,3,80,1,7,{ 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; },{},{}
-1385,Bradium_Stonehammer,Bradium Stone Hammer,5,20,,2700,210,,1,0,0x000444A2,18,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{}
-1386,Doom_Slayer_I,Doom Slayer,5,0,,0,20,,1,0,0x000444A2,63,2,34,4,0,0,7,{ if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; } },{},{}
-1387,Giant_Axe,Giant Axe,5,20,,4000,330,,1,1,0x000444A2,18,2,34,3,50,1,7,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } },{},{}
-1388,Two_Handed_Axe_C,Two-Handed Axe,5,0,,0,220,,1,0,0x000444A2,63,2,34,3,1,0,7,{ bonus2 bAddSize,Size_All,40; },{},{}
-1389,E_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-1390,E_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{}
-1391,P_Two_Handed_Axe1,Eden Two-Handed Axe I,5,0,,0,195,,1,0,0x000444A2,63,2,34,3,60,0,7,{},{},{}
-1392,Ygnus_Stale,Ignus Steel,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,300; bonus2 bAddEff2,Eff_Burning,300; },{},{}
-1393,End_Sektura,End Sectora,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Crystalize,300; bonus2 bAddEff2,Eff_Crystalize,300; },{},{}
-1394,Upg_Two_Handed_Axe,Upg Two Handed Axe,5,20,,2000,110,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{}
-1395,Velum_Buster,Vellum Buster,5,20,,2500,50,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player,1000,10; },{},{}
-1396,Velum_Guillotine,Vellum Guillotine,5,20,,5500,300,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player,40; bonus2 bIgnoreDefRaceRate,RC_Player,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player,60; } },{},{}
-1397,Bradium_Stonehammer_,Bradium Stonehammer,5,20,,2700,210,,1,2,0x000444A2,63,2,34,4,75,1,7,{ bonus bUnbreakableWeapon; },{},{}
-1398,Metal_Two_Handed_Axe,Metal Two Handed Axe,5,20,,0,105,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-1399,TE_Woe_Two_Handed_Axe,TE Woe Two Handed Axe,5,0,,0,150,,1,0,0x000444A2,63,2,34,3,40,1,7,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Stun,3000; },{},{}
-//===================================================================
-// 1-Handed Spears
-//===================================================================
-1400,Spear_of_Vicious_Mind,Spear of Vicious Mind,5,20,,1400,140,,3,1,0x00004082,63,2,2,4,160,1,4,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-1401,Javelin,Javelin,5,150,,700,28,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1402,Javelin_,Javelin,5,150,,700,28,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1403,Javelin__,Javelin,5,150,,700,28,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1404,Spear,Spear,5,1700,,850,44,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1405,Spear_,Spear,5,1700,,850,44,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1406,Spear__,Spear,5,1700,,850,44,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1407,Pike,Pike,5,3450,,1000,60,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1408,Pike_,Pike,5,3450,,1000,60,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1409,Pike__,Pike,5,3450,,1000,60,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{}
-1410,Lance,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1411,Lance_,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1412,Lance__,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1413,Gungnir,Gungnir,5,20,,500,120,,3,0,0x00004082,63,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{}
-1414,Gelerdria,Gelerdria,5,20,,700,145,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{}
-1415,Skewer,Brocca,5,20,,850,100,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; },{},{}
-1416,Tjungkuletti,Tjungkuletti,5,20,,1000,100,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bSPDrainValue,1; bonus bSPGainValue,5; },{},{}
-1417,Pole_Axe,Pole Axe,5,20,,3800,160,,3,1,0x00004082,63,2,2,3,71,1,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1418,Gungnir_,Gungnir,5,20,,500,120,,3,2,0x00004082,63,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{}
-1419,Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,63,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1420,Long_Horn,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{}
-1421,Battle_Hook,Battle Hook,5,20,,900,140,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; skill "KN_PIERCE",3; },{},{}
-1422,Hunting_Spear,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{}
-1423,Pole_XO,Pole XO,5,20,,0,120,,3,0,0x00004082,63,2,2,1,0,0,4,{ bonus2 bAddClass,Class_All,50; },{},{}
-1424,Skewer_C,Refined Brocca,5,1,,0,149,,3,0,0x00004082,63,2,2,4,0,0,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; },{},{}
-1425,BF_Spear1,Assaulter Spear,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{}
-1426,Krieger_Onehand_Spear1,Glorious Spear,5,20,,0,130,,3,0,0x00004082,63,2,2,4,80,1,4,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,10; } 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; } },{},{}
-1427,Spear_Of_Excellent,Spear Of Excellent,5,20,,0,160,,3,0,0x00004082,63,2,2,3,0,0,4,{ bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; },{},{}
-1428,Long_Horn_M,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{}
-1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{}
-1430,Pike_C,Pike,5,0,,0,74,,3,0,0x00004082,63,2,2,1,1,0,4,{ bonus2 bAddSize,Size_All,70; },{},{}
-1431,F_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,63,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1432,E_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,63,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-1433,Imperial_Spear,Imperial Spear,5,20,,1800,180:40,,3,1,0x00004082,63,2,2,3,102,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); },{},{}
-1434,P_Sphere1,Eden Spear I,5,0,,0,165,,3,0,0x00004082,63,2,2,3,60,0,4,{},{},{}
-1435,Cannon_Spear,Cannon Spear,5,56000,,1600,180,,3,1,0x00004000,63,2,2,4,100,1,4,{ bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus bBaseAtk,(getrefine()/3); },{},{}
-1436,Velum_Spear,Vellum Spear,5,20,,850,150,,3,0,0x00004082,63,2,2,4,95,1,4,{ bonus2 bAddRace,RC_Player,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player,30; } },{},{}
-1437,TE_Woe_Pike,TE Woe Pike,5,0,,0,100,,3,0,0x00004082,63,2,2,3,40,1,4,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{}
-1438,Thanos_Spear,Thanos Spear,5,10,,3000,150:100,,3,1,0x00004082,56,2,2,4,120,1,4,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1439,Half_BF_Spear1,Half BF Spear1,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{}
-1440,Battle_Hook_,Battle Hook,5,20,,900,140,,3,3,0x00004082,18,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; skill "KN_PIERCE",3; },{},{}
-1441,Ru_Blue_Spear,Blue Spear,5,10,,1200,180:170,,3,1,0x00004000,56,2,2,3,100,1,4,{ bonus bDex,5; bonus bInt,5; },{},{}
-1442,Ru_Gold_Spear,Ru Gold Spear,5,0,,1200,180,,3,2,0x00004000,56,2,2,3,120,1,4,{ bonus bStr,8; bonus bAgi,8; },{},{}
-1443,Crimson_Spear,Crimson Spear,5,20,,900,90,,3,2,0x00004082,63,2,2,3,70,1,4,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-1446,Requiem_Spear,Requiem Spear,5,20,,1000,130,,3,,0x00004080,63,2,2,4,100,1,4,{ .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; },{},{}
-1447,Poison_Forged_Spear,Poison Forged Spear,5,0,,500,150,,3,3,0x00004080,58,2,2,4,100,1,4,{ bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; },{},{}
-1449,Gelerdria_,Gelerdria,5,20,,700,145,,3,3,0x00004082,63,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{}
-//===================================================================
-// 2-Handed Spears
-//===================================================================
-1450,Lance_of_Vicious_Mind,Lance of Vicious Mind,5,20,,2250,225,,3,1,0x00004082,63,2,34,4,160,1,5,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-1451,Guisarme,Guisarme,5,13000,,1000,84,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1452,Guisarme_,Guisarme,5,13000,,1000,84,,3,3,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1453,Guisarme__,Guisarme,5,13000,,1000,84,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1454,Glaive,Glaive,5,20000,,1200,104,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1455,Glaive_,Glaive,5,20000,,1200,104,,3,3,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1456,Glaive__,Glaive,5,20000,,1200,104,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1457,Partizan,Partizan,5,27000,,2000,124,,3,1,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1458,Partizan_,Partizan,5,27000,,2000,124,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1459,Partizan__,Partizan,5,27000,,2000,124,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{}
-1460,Trident,Trident,5,51000,,1200,150,,3,2,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1461,Trident_,Trident,5,51000,,1200,150,,3,3,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1462,Trident__,Trident,5,51000,,1200,150,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1463,Halberd,Halberd,5,54000,,2500,165,,3,1,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1464,Halberd_,Halberd,5,54000,,2500,165,,3,2,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1465,Halberd__,Halberd,5,54000,,2500,165,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{}
-1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{}
-1467,Bill_Guisarme,Bill Guisarme,5,20,,1000,183,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-1468,Zephyrus,Zephyrus,5,20,,2000,170,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{}
-1469,Longinus's_Spear,Longinus's Spear,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddRace,RC_Angel,10; },{},{}
-1470,Brionac,Brionac,5,20,,3000,190,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5; },{},{}
-1471,Hell_Fire,Hellfire,5,20,,3500,200,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; },{},{}
-//===================================================================
-// 2-Handed Staffs
-//===================================================================
-1472,Staff_Of_Soul,Soul Staff,5,20,,1400,25:200,,1,0,0x00810204,63,2,34,3,73,1,23,{ bonus bInt,5; bonus bAgi,2; },{},{}
-1473,Wizardy_Staff,Wizardry Staff,5,20,,2400,120:200,,1,0,0x00810204,63,2,34,4,90,1,23,{ bonus bInt,6; bonus bDex,2; },{},{}
-//===================================================================
-// 2-Handed Spears
-//===================================================================
-1474,Gae_Bolg,Gae Bolg,5,20,,2000,160,,3,0,0x00004082,63,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{}
-1475,Horseback_Lance,Equestrian's Spear,5,20,,3700,200,,4,0,0x00004082,63,2,34,4,75,1,5,{},{},{}
-1476,Crescent_Scythe_,Crescent Scythe,5,20,,2500,180,,3,1,0x00004082,63,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{}
-1477,Spectral_Spear,Spectral Spear,5,20,,2000,170,,3,0,0x00004082,63,2,34,4,75,1,5,{ 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; },{},{}
-1478,Ahlspiess,Ahlspiess,5,20,,1000,120,,3,0,0x00004080,63,2,34,4,65,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{}
-1479,Spectral_Spear_,Spectral Spear,5,20,,2000,170,,3,1,0x00004082,63,2,34,4,75,1,5,{ 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; },{},{}
-1480,Gae_Bolg_,Gae Bolg,5,20,,2000,160,,3,2,0x00004082,63,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{}
-1481,Zephyrus_,Zephyrus,5,20,,2000,170,,3,3,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{}
-1482,BF_Lance1,Assaulter Lance,5,20,,0,160,,3,0,0x00004082,63,2,34,3,80,1,5,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bUnbreakableWeapon; },{},{}
-1483,Ivory_Lance,Ivory Lance,5,20,,1000,160,,3,1,0x00004082,18,2,34,3,50,1,5,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5; },{},{}
-1484,Cardo,Cardo,5,20,,5600,150,,3,1,0x00000080,18,2,34,4,70,1,5,{ bonus bAspdRate,-10; bonus bDef,getrefine()/2; },{},{}
-1485,Battle_Fork,Battle Fork,5,20,,700,112,,3,4,0x00004082,18,2,34,2,50,1,5,{},{},{}
-1486,Krieger_Twohand_Spear1,Glorious Lance,5,20,,0,220,,3,0,0x00004082,63,2,34,4,80,1,5,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; } },{},{}
-1487,Lance_C,Lance,5,0,,0,220,,3,0,0x00004082,63,2,34,3,1,0,5,{ bonus2 bAddSize,Size_All,50; },{},{}
-1488,Ahlspiess_C,Ahlspiess,5,20,,0,135,,3,0,0x00004080,63,2,34,4,1,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{}
-1489,Spearfish_,Marlin,5,0,,0,220,,3,0,0x00004082,18,2,34,1,50,0,5,{ bonus bUnbreakableWeapon; 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; } },{},{}
-1490,Giant_Lance,Gigantic Lance,5,20,,20000,20,,3,0,0x00000080,63,2,34,4,140,1,5,{ bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; } },{},{ heal 0,-600; }
-1491,Upg_Lance,Upg Lance,5,20,,1500,105,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{}
-1492,Velum_Glaive,Vellum Glaive,5,20,,4500,250,,3,0,0x00004082,63,2,34,4,95,1,5,{ bonus2 bAddRace,RC_Player,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",100,2000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_REFLECTSHIELD; }"; } },{},{}
-1493,Metal_Lance,Metal Lance,5,20,,0,100,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-1494,Undine_Spear,Spear Of Odin,5,50000,,3800,190,,3,3,0x00004082,63,2,34,4,105,1,5,{ bonus bAtkEle,Ele_Water; },{},{}
-1495,TE_Woe_Lance,TE Woe Lance,5,0,,0,150,,3,0,0x00004082,63,2,34,3,40,1,5,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{}
-1496,Thanos_Long_Spear,Thanos Long Spear,5,10,,3750,250:50,,3,1,0x00004082,56,2,34,4,120,1,5,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1497,Hell_Fire_,Hellfire,5,20,,3500,200,,3,3,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; },{},{}
-1498,Crimson_Lance,Crimson Lance,5,20,,1750,175,,1,2,0x00004082,63,2,34,3,70,1,5,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-1499,Requiem_Lance,Requiem Lance,5,20,,1500,220,,3,,0x00004080,63,2,34,4,100,1,5,{ .@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; },{},{}
-//===================================================================
-// Maces
-//===================================================================
-1501,Club,Club,5,120,,700,23,,1,3,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1502,Club_,Club,5,120,,700,23,,1,4,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1503,Club__,Club,5,120,,700,23,,1,0,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1504,Mace,Mace,5,1600,,800,37,,1,3,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1505,Mace_,Mace,5,1600,,800,37,,1,4,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1506,Mace__,Mace,5,1600,,800,37,,1,0,0x0004C5B3,63,2,2,1,2,1,8,{},{},{}
-1507,Smasher,Smasher,5,9000,,1000,54,,1,2,0x0004C5B3,63,2,2,2,14,1,8,{},{},{}
-1508,Smasher_,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,63,2,2,2,14,1,8,{},{},{}
-1509,Smasher__,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,63,2,2,2,14,1,8,{},{},{}
-1510,Flail,Flail,5,16000,,900,69,,1,2,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1511,Flail_,Flail,5,16000,,900,69,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1512,Flail__,Flail,5,16000,,900,69,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1513,Morning_Star,Morning Star,5,41000,,1500,110,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1514,Morning_Star_,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1515,Morning_Star__,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1516,Sword_Mace,Sword Mace,5,50000,,1200,130,,1,0,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1517,Sword_Mace_,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1518,Sword_Mace__,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{}
-1519,Chain,Chain,5,23000,,800,84,,1,2,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1520,Chain_,Chain,5,23000,,800,84,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1521,Chain__,Chain,5,23000,,800,84,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{}
-1522,Stunner,Stunner,5,60000,,2000,140,,1,0,0x00008110,63,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1523,Spike,Spike,5,20,,700,85,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1524,Golden_Mace,Golden Mace,5,20,,800,110,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; },{},{}
-1525,Long_Mace,Long Mace,5,20,,800,135,,3,0,0x00008110,63,2,2,4,40,1,8,{ bonus bLongAtkDef,10; },{},{}
-1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{}
-1527,Quadrille,Quadrille,5,20,,900,165,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{}
-1528,Grand_Cross,Grand Cross,5,20,,1500,140,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{}
-1529,Iron_Driver,Iron Driver,5,20,,3000,155,,2,0,0x00008100,63,2,2,3,78,1,8,{},{},{}
-1530,Mjolnir,Mjolnir,5,20,,6000,350,,1,0,0x000444A2,63,2,2,4,95,0,8,{ 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; },{},{}
-1531,Spanner,Wrench,5,20,,2500,115,,1,0,0x00008110,63,2,2,3,55,1,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{}
-1532,Stunner_,Stunner,5,60000,,2000,140,,1,2,0x00008110,63,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1533,Warrior_Balmung,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,63,2,2,4,48,1,8,{ bonus bAllStats,5; },{},{}
-1534,Spanner_C,Wrench,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{}
-1535,Hollgrehenn_Hammer,Hollgrehenn's Hammer,5,4444,,44,4,,1,1,0x0004C5B2,63,2,2,4,44,1,8,{ bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } },{},{}
-1536,Good_Morning_Star,Good Morning Star,5,20,,0,120,,1,0,0x0004C5B2,63,2,2,1,0,0,8,{ bonus2 bAddClass,Class_All,50; },{},{}
-1537,Quadrille_C,Refined Quadrille,5,1,,0,193,,1,0,0x00008110,63,2,2,4,0,0,8,{ bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; },{},{}
-1538,Spike_,Spike,5,20,,700,85,,1,2,0x00008110,63,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{}
-1539,Golden_Mace_,Golden Mace,5,20,,800,110,,1,2,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; },{},{}
-1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{}
-1541,Nemesis,Nemesis,5,20,,900,120,,1,0,0x00008110,63,2,2,4,60,1,8,{ 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; }"; },{},{}
-1542,BF_Morning_Star1,Valorous Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1543,BF_Morning_Star2,Brave Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-1544,Lunakaligo,Lunakaligo,5,20,,700,110,,1,3,0x00008110,18,2,2,3,50,1,8,{ 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; } },{},{}
-1545,N_Mace,Novice Mace,5,0,,0,57,,1,3,0x0004C5B3,63,2,2,1,2,0,8,{},{},{}
-1546,Krieger_Onehand_Mace1,Glorious Morning Star,5,20,,0,130,,1,0,0x0004C5B3,63,2,2,4,80,1,8,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } },{},{}
-1547,Mace_Of_Madness,Mace Of Madness,5,20,,0,150,,1,0,0x0004C5B2,63,2,2,3,0,0,8,{ bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; },{},{}
-1548,Veteran_Hammer,Veteran Hammer,5,10000,,1800,160,,1,2,0x00008110,63,2,2,3,80,1,8,{ bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; },{},{}
-1549,Pilebuncker,Pile Bunker,5,10000,,3500,450,,1,0,0x00000400,56,2,2,3,99,1,8,{},{},{}
-//===================================================================
-// Books
-//===================================================================
-1550,Book,Book,5,30000,,600,85,,1,3,0x00410100,63,2,2,2,14,1,15,{},{},{}
-1551,Bible,Bible,5,60000,,1000,115,,1,2,0x00410100,63,2,2,3,27,1,15,{ bonus bInt,2; },{},{}
-1552,Tablet,Tablet,5,51000,,800,125,,1,1,0x00410100,63,2,2,3,27,1,15,{},{},{}
-1553,Book_Of_Billows,Book of Billows,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{}
-1554,Book_Of_Mother_Earth,Book of Mother Earth,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{}
-1555,Book_Of_Blazing_Sun,Book of the Blazing Sun,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{}
-1556,Book_Of_Gust_Of_Wind,Book of Gust of Wind,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{}
-1557,Book_Of_The_Apocalypse,Book of the Apocalypse,5,60000,,800,120,,1,0,0x00410100,63,2,2,4,40,1,15,{ 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; },{},{}
-1558,Girl's_Diary,Girl's Diary,5,1500,,300,60,,1,1,0x00410100,63,2,2,4,40,1,15,{ bonus2 bAddDamageClass,1188,150; },{},{}
-1559,Legacy_Of_Dragon,Legacy of Dragon,5,20,,700,130,,1,0,0x00410100,63,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{}
-1560,Diary_Of_Great_Sage,Sage's Diary,5,20,,1100,100:120,,1,2,0x00410100,63,2,2,3,60,1,15,{ if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; },{},{}
-1561,Hardback,Hardcover Book,5,20,,1500,140,,1,1,0x00410100,63,2,2,4,55,1,15,{ bonus bStr,3; bonus bDex,2; },{},{}
-1562,Bible_Of_Battlefield,Battlefield Textbook,5,20,,700,110,,1,1,0x00410100,63,2,2,4,80,0,15,{ bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; },{},{}
-1563,Diary_Of_Great_Sage_C,Sage's Diary,5,1,,0,135:140,,1,0,0x00410100,63,2,2,3,1,0,15,{ bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ },{},{}
-1564,Encyclopedia,Encyclopedia,5,20,,2000,110:100,,1,2,0x00410100,63,2,2,3,70,1,15,{ bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); },{},{}
-1565,Death_Note,Ledger of Death,5,20,,1000,137:100,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{}
-1566,Diary_Of_Great_Basil,Diary Of Great Basil,5,20,,0,120:125,,1,0,0x00410100,63,2,2,1,0,0,15,{ bonus2 bAddClass,Class_All,50; },{},{}
-1567,Hardback_C,Refined Hardcover Book,5,1,,0,168:100,,1,0,0x00410100,63,2,2,4,0,0,15,{ bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; },{},{}
-1568,Book_Of_Billows_,Book of Billows,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{}
-1569,Book_Of_Mother_Earth_,Book of Mother Earth,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{}
-1570,Book_Of_Blazing_Sun_,Book of Blazing Sun,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{}
-1571,Book_Of_Gust_Of_Wind_,Book of Gust of Wind,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{}
-1572,Principles_Of_Magic,Principles of Magic,5,20,,300,60:160,,1,2,0x00410100,63,2,2,3,60,1,15,{ bonus bInt,3; bonus bSPrecovRate,5; },{},{}
-1573,Ancient_Magic,Ancient Magic,5,20,,700,30:140,,1,2,0x00410100,63,2,2,3,70,1,15,{},{},{}
-1574,BF_Book1,Brave Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; },{},{}
-1576,Krieger_Book1,Glorious Tablet,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; },{},{}
-1577,Krieger_Book2,Glorious Apocalypse,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{}
-1578,Book_Of_Prayer,Book Of Prayer,5,20,,0,140,,1,0,0x00410100,63,2,2,3,0,0,15,{ bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; },{},{}
-1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{}
-1580,Encyclopedia_C,Giant Encyclopedia,5,0,,0,145:100,,1,0,0x00410100,63,2,2,3,0,0,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; },{},{}
-1581,F_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,63,2,2,3,1,0,15,{ bonus bMatkRate,20; bonus bAspdRate,5; },{},{}
-1582,E_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,63,2,2,3,1,0,15,{},{},{}
-1583,P_Dic1,Eden Book I,5,0,,0,135:110,,1,0,0x00410100,63,2,2,3,60,0,15,{},{},{}
-1584,Chilly_Spell_Book,Cold Magic Book,5,56000,,1000,100:160,,1,2,0x00010000,63,2,2,4,100,1,15,{ 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); },{},{}
-1585,Upg_Book,Upg Book,5,20,,600,45:20,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bMatk,(((BaseLevel-70)/10)*5); },{},{}
-1586,Velum_Bible,Vellum Bible,5,20,,600,110:125,,1,0,0x00410100,63,2,2,4,95,1,15,{ if(BaseLevel>104) { 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; } } },{},{}
-1587,Velum_Encyclopedia,Vellum Great Encyclopedia,5,20,,1000,130,,1,0,0x00410100,63,2,2,4,95,1,15,{ .@r = getrefine(); bonus2 bAddRace,RC_Player,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } },{},{}
-1588,Metal_Book,Metal Book,5,20,,0,45:10,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-1589,Legacy_Of_Dragon_,Legacy of Dragon,5,20,,700,130,,1,2,0x00410100,63,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{}
-1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00410100,63,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; },{},{}
-1591,TE_Woe_Book,TE Woe Book,5,0,,0,120,,1,0,0x00410100,63,2,2,3,40,1,15,{ bonus2 bAddRace,RC_Player,40; bonus2 bMagicAddRace,RC_Player,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{}
-1596,Earth_Pedigree_Book,Earth Pedigree Book,5,10,,400,90:130,,,2,0x050100,63,2,2,,27,1,15,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; },{},{}
-1597,Half_BF_Book2,Half BF Book2,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-// GM Weapon
-1599,Angra_Manyu,Angra Manyu,5,1,,10,10000:10000,,2,0,0xFFFFFFFF,63,2,2,1,1,1,8,{ 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; },{},{}
-//===================================================================
-// 1-Handed Staffs
-//===================================================================
-1600,Rod_of_Vicious_Mind,Rod of Vicious Mind,5,20,,600,60:120,,1,1,0x00818315,63,2,2,4,160,1,10,{ bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon; },{},{}
-1601,Rod,Rod,5,50,,400,15:30,,1,3,0x00818315,63,2,2,1,1,1,10,{},{},{}
-1602,Rod_,Rod,5,50,,400,15:30,,1,4,0x00818315,63,2,2,1,1,1,10,{},{},{}
-1603,Rod__,Rod,5,50,,400,15:30,,1,0,0x00818315,63,2,2,1,1,1,10,{},{},{}
-1604,Wand,Wand,5,2500,,400,25:45,,1,2,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{}
-1605,Wand_,Wand,5,2500,,400,25:45,,1,3,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{}
-1606,Wand__,Wand,5,2500,,400,25:45,,1,0,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{}
-1607,Staff,Staff,5,9500,,400,40:70,,1,2,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{}
-1608,Staff_,Staff,5,9500,,400,40:70,,1,3,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{}
-1609,Staff__,Staff,5,9500,,400,40:70,,1,0,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{}
-1610,Arc_Wand,Arc Wand,5,45000,,400,60:95,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{}
-1611,Arc_Wand_,Arc Wand,5,45000,,400,60:95,,1,2,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{}
-1612,Arc_Wand__,Arc Wand,5,45000,,400,60:95,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{}
-1613,Mighty_Staff,Mighty Staff,5,20,,700,130:100,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bStr,10; bonus bSPDrainValue,-2; },{},{}
-1614,Blessed_Wand,Wand of Occult,5,20,,700,75:105,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{}
-1615,Bone_Wand,Evil Bone Wand,5,20,,700,40:110,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; },{},{}
-1616,Staff_Of_Wing,Wing Staff,5,20,,500,60:115,,1,0,0x00810204,63,2,2,4,40,1,10,{ bonus bVariableCastrate,-5; },{},{}
-1617,Survival_Rod,Survivor's Rod,5,85000,,1000,50:120,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bDex,2; bonus bMaxHP,300; },{},{}
-1618,Survival_Rod_,Survivor's Rod,5,85000,,1000,50:120,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bDex,3; bonus bMaxHP,400; },{},{}
-1619,Survival_Rod2,Survivor's Rod,5,85000,,1000,50:120,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,2; bonus bMaxHP,300; },{},{}
-1620,Survival_Rod2_,Survivor's Rod,5,85000,,1000,50:120,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; bonus bMaxHP,400; },{},{}
-1621,Hypnotist's_Staff,Hypnotist's Staff,5,43000,,500,70:120,,1,1,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{}
-1622,Hypnotist's_Staff_,Hypnotist's Staff,5,20,,500,70:120,,1,2,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{}
-1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165:120,,1,0,0x00818314,63,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; },{},{}
-1624,Lich_Bone_Wand,Lich's Bone Wand,5,20,,800,60:170,,1,2,0x00018314,18,2,2,3,70,1,10,{ 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; } },{},{}
-1625,Healing_Staff,Healing Staff,5,20,,400,10:105,,1,0,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{}
-1626,Piercing_Staff,Piercing Staff,5,20,,500,80:145,,1,0,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{}
-1627,Staffy,Staffy,5,20,,0,40:120,,1,0,0x00818314,63,2,2,1,0,0,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; },{},{}
-1628,Survival_Rod_C,Refined Survivor's Rod,5,1,,0,71:145,,1,0,0x00818314,63,2,2,3,0,0,10,{ bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; },{},{}
-1629,Walking_Stick,Gentleman's Staff,5,20,,500,40:125,,1,1,0x00818314,63,2,2,4,50,1,10,{ bonus bDex,1; },{},{}
-1630,Release_Of_Wish,Release of Wish,5,20,,500,30:125,,1,0,0x00810204,63,2,2,3,50,1,10,{ bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; },{},{}
-1631,Holy_Stick,Holy Stick,5,20,,500,50:140,,1,1,0x00008100,63,2,2,4,70,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25; },{},{}
-1632,BF_Staff1,Warlock's Magic Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; },{},{}
-1633,BF_Staff2,Warlock's Battle Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; },{},{}
-1634,BF_Staff3,Strong Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{}
-1635,BF_Staff4,Speedy Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{}
-1636,Thorn_Staff,Thorn Staff of Darkness,5,20,,700,60:160,,1,0,0x00018314,18,2,2,4,75,1,10,{ 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); },{},{}
-1637,Eraser,Eraser,5,20,,500,80:170,,1,0,0x00018314,18,2,2,4,70,1,10,{ bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0; },{},{}
-1638,Healing_Staff_C,Staff Of Healing,5,20,,0,10:125,,1,0,0x00008110,63,2,2,3,1,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{}
-1639,N_Rod,Novice Rod,5,0,,0,15:32,,1,3,0x00818315,63,2,2,1,1,0,10,{},{},{}
-1640,Krieger_Onehand_Staff1,Glorious Arc Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{}
-1641,Krieger_Onehand_Staff2,Glorious Cure Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player,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; } },{},{}
-1642,Staff_Of_Darkness,Staff Of Darkness,5,20,,0,100:120,,1,0,0x00818314,63,2,2,2,0,0,10,{ bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2; },{},{}
-1643,Dead_Tree_Cane,Dead Tree Cane,5,20,,100,100:155,,1,0,0x00818314,63,2,2,4,70,1,10,{ bonus bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } },{},{}
-1644,Piercing_Staff_M,Staff of Piercing,5,20,,500,80:145,,1,0,0x00018314,18,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{}
-1645,Lich_Bone_Wand_M,Lich's Bone Wand,5,20,,800,60:170,,1,2,0x00018314,18,2,2,3,70,1,10,{ 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; } },{},{}
-1646,La'cryma_Stick,La'cryma Stick,5,20,,500,30:180,,1,2,0x00010204,18,2,2,3,50,1,10,{ .@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8; },{},{}
-1647,Croce_Staff,Croce Staff,5,20,,500,30:175,,1,1,0x00008110,18,2,2,3,50,1,10,{ bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; },{},{}
-1648,Staff_Of_Bordeaux,Staff Of Bordeaux,5,20,,500,30:170,,1,0,0x00010200,18,2,2,4,50,1,10,{ bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{}
-1649,Rafini_Staff,Laphine Staff,5,20,,500,30:180,,1,0,0x00818315,63,2,2,3,100,1,10,{ bonus bFixedCastRate,-getrefine(); },{},{}
-1650,P_Staff1,Eden Staff I,5,0,,0,60:125,,1,0,0x00818314,63,2,2,2,26,0,10,{ bonus bInt,2; },{},{}
-1651,P_Staff2,Eden Staff II,5,0,,0,60:150,,1,0,0x00818314,63,2,2,2,40,0,10,{ bonus bInt,3; },{},{}
-1652,Tourist_Staff,Tourist Staff,5,0,,500,35:0,,1,0,0x00818315,63,2,2,1,1,0,10,{ bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1; },{},{}
-1653,Staff_Of_Healing_C,Staff of Healing,5,20,,0,10:100,,1,0,0x00008110,63,2,2,3,1,0,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,18; },{},{}
-1654,Mental_Stick,Mental Stick,5,20,,500,40:170,,1,1,0x00818315,63,2,2,3,102,1,10,{ .@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; },{},{ itemheal 0,-100; }
-1655,Adventure_Staff,Adventure Staff,5,0,,0,60,,1,0,0x00810204,63,2,2,1,1,0,10,{ bonus bUnbreakableWeapon; },{},{}
-1656,Academy_Wand,Academy Wand,5,0,,600,60,,1,1,0x00810204,63,2,2,1,1,1,10,{ bonus bUnbreakableWeapon; },{},{}
-1657,Wand_Of_Affection,Wand Of Affection,5,20,,500,30:160,,1,2,0x00000100,63,2,2,3,100,1,10,{ bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10; },{},{}
-1658,P_Staff3,Eden Staff III,5,0,,0,60:170,,1,0,0x00818314,63,2,2,3,60,0,10,{ bonus bInt,4; },{},{}
-1659,Recovery_Light,Light of Recovery,5,56000,,400,30:160,,1,1,0x00000100,63,2,2,4,110,1,10,{ 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); },{},{}
-1660,Wand_Of_Affection2,Empowered Wand Of Affection,5,20,,500,30:180,,1,1,0x00000100,63,2,2,3,130,1,10,{ bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20; },{},{}
-1661,Mental_Destroyer,Mental Destroyer,5,20,,1400,100:50,,1,0,0x00000200,63,2,2,4,95,1,10,{ .@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; },{},{}
-1662,Bone_Wand_,Evil Bone Wand,5,20,,700,40:110,,1,2,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; },{},{}
-1663,Staff_Of_Bordeaux_,Staff Of Bordeaux,5,20,,500,30:180,,1,2,0x00010200,18,2,2,4,50,1,10,{ bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{}
-1664,Thorn_Staff_,Thorn Staff of Darkness,5,10,,700,60:160,,,1,0x14,50,2,2,4,75,1,8,{ bonus bInt,3; bonus bDex,3; bonus bVariableCastrate,-getrefine(); bonus bAtkEle,Ele_Dark; },{},{}
-1665,Piercing_Staff_,Piercing Staff,5,20,,500,80:145,,1,2,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{}
-1666,Healing_Staff_,Healing Staff,5,20,,400,10:105,,1,2,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{}
-1667,TE_Woe_Staff,TE Woe Staff,5,0,,0,50:100,,1,0,0x00818315,63,2,2,3,40,1,10,{ bonus2 bMagicAddRace,RC_Player,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{}
-1668,Sword_Stick,Sword Stick,5,10,,500,120:150,,,2,0x810204,63,2,2,4,80,1,10,{ bonus bAspdRate,10; },{},{}
-1669,Thanos_Staff,Thanos Staff,5,10,,1000,100:200,,1,1,0x00018314,56,2,2,4,120,1,10,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1670,RWC_Memory_Staff,RWC Memory Staff,5,20,,500,25:30,,1,1,0x00818315,63,2,2,3,1,1,10,{ .@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; },{},{}
-1671,Devil_Won_Staff,Evil Slayer Vanquisher Staff,5,0,,800,30:155,,,1,0x00818315,63,2,2,3,100,1,10,{ 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; } },{},{}
-1673,Half_BF_Staff4,Half BF Staff4,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon; },{},{}
-1674,Half_BF_Staff2,Half BF Staff2,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon; },{},{}
-1675,Walking_Stick_,Gentleman's Staff,5,20,,500,40:125,,1,3,0x00818314,63,2,2,4,50,1,10,{ bonus bDex,1; },{},{}
-1676,Baculum_Daemonicum,Baculum Daemonicum,5,20,,1200,60:150,,1,2,0x00818315,63,2,2,4,80,1,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; } },{},{}
-1677,Ru_Blue_Wand,Blue Wand,5,10,,0,50:200,,1,1,0x00000200,56,2,2,3,100,1,10,{ bonus bDex,5; bonus bInt,5; },{},{}
-1678,Ru_Gold_Wand,Ru Gold Wand,5,0,,0,50,,1,2,0x00000200,56,2,2,3,120,1,10,{ bonus bDex,8; bonus bInt,8; },{},{}
-1679,Rafini_Staff_S,Laphine Staff,5,20,,500,30:180,,1,2,0x00818315,63,2,2,3,100,1,10,{ bonus bFixedCastRate,-getrefine(); },{},{}
-1680,Crimson_One-Handed_Staff,Crimson One-Handed Staff,5,10,,600,60:70,,1,2,0x00818315,63,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; },{},{}
-1681,Short_Foxtail_Staff,Short Foxtail Staff,5,20,,0,30,,1,0,0x80000000,7,2,2,1,1,1,10,{},{},{}
-1682,Shadow_Staff,Shadow Staff,5,0,,600,70:130,,1,2,0x00000200,56,2,2,4,90,1,10,{ .@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; }"; },{},{}
-1683,Enriched_Foxtail_Staff,Enriched Foxtail Staff,5,20,,200,50:70,,1,1,0x80000000,7,2,2,2,12,1,10,{ bonus bMaxSP,50; },{},{}
-1684,Long_Foxtail_Staff,Long Foxtail Staff,5,20,,200,50,,2,1,0x80000000,7,2,2,2,12,1,10,{ bonus bLongAtkRate,5; bonus bMaxHP,200; },{},{}
-1685,Dragonfly_Sitting_Foxtail_Staff,Dragonfly Sitting Foxtail Staff,5,20,,300,70:100,,1,1,0x80000000,7,2,2,2,20,1,10,{ bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150; },{},{}
-1686,Large_Foxtail_Staff,Large Foxtail Staff,5,20,,300,70,,1,1,0x80000000,7,2,2,2,20,1,10,{ bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100; },{},{}
-1687,Beginner_Foxtail_Staff,Beginner Foxtail Staff,5,20,,100,40:15,,1,1,0x80000000,7,2,2,1,3,1,10,{ bonus bMaxHP,100; },{},{}
-1690,Mysterious_Foxtail_Staff,Mysterious Foxtail Staff,5,20,,400,80:180,,1,3,0x80000000,7,2,2,2,60,1,10,{ .@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3); },{},{}
-1691,Strange_God_Foxtail_Staff,Strange God Foxtail Staff,5,20,,500,100:240,,1,2,0x80000000,7,2,2,3,100,1,10,{ 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; } },{},{}
-1692,Magical_Foxtail_Staff,Magical Foxtail Staff,5,20,,600,120:260,,1,2,0x80000000,7,2,2,3,140,1,10,{ 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; } },{},{}
-1693,Magical_Yellow_Foxtail_Staff,Magical Yellow Foxtail Staff,5,20,,700,140:280,,1,1,0x80000000,7,2,2,4,175,1,10,{ .@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; } },{},{}
-1694,Foxtail_Model,Foxtail Model,5,20,,300,150,,1,3,0x80000000,7,2,2,2,60,1,10,{ bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10; },{},{}
-1695,Delicate_Foxtail_Model,Delicate Foxtail Model,5,20,,300,195,,1,2,0x80000000,7,2,2,3,100,1,10,{ 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; } },{},{}
-1696,Exquisite_Foxtail_Model,Exquisite Foxtail Model,5,20,,300,240,,1,2,0x80000000,7,2,2,3,140,1,10,{ 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; } },{},{}
-1697,Exquisite_Yellow_Foxtail_Model,Exquisite Yellow Foxtail Model,5,20,,300,270,,1,1,0x80000000,7,2,2,4,175,1,10,{ 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; } },{},{}
-1698,Requiem_Arc_Wand,Requiem Arc Wand,5,20,,500,80:145,,1,,0xFFFFFFFF,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; },{},{}
-1699,Paradise_Foxtail_Staff_I,Eden Group Foxtail I,5,20,,0,120:135,,1,0,0x80000000,7,2,2,2,26,0,10,{ bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; },{},{}
-//===================================================================
-// Bows
-//===================================================================
-1701,Bow,Bow,5,1000,,500,15,,5,3,0x000A0848,63,2,34,1,4,1,11,{},{},{}
-1702,Bow_,Bow,5,1000,,500,15,,5,4,0x000A0848,63,2,34,1,4,1,11,{},{},{}
-1703,Bow__,Bow,5,1000,,0,15,,5,0,0x000A0848,63,2,34,1,4,1,11,{ bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; },{},{}
-1704,Composite_Bow,Composite Bow,5,2500,,600,29,,5,3,0x000A0848,63,2,34,1,4,1,11,{},{},{}
-1705,Composite_Bow_,Composite Bow,5,2500,,600,29,,5,4,0x000A0848,63,2,34,1,4,1,11,{},{},{}
-1706,Composite_Bow__,Composite Bow,5,2500,,600,29,,5,0,0x000A0848,63,2,34,1,4,1,11,{},{},{}
-1707,Great_Bow,Great Bow,5,10000,,1000,50,,5,2,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1708,Great_Bow_,Great Bow,5,10000,,1000,50,,5,3,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1709,Great_Bow__,Great Bow,5,10000,,1000,50,,5,0,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1710,CrossBow,Crossbow,5,17000,,900,65,,5,2,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1711,CrossBow_,Crossbow,5,17000,,900,65,,5,3,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1712,CrossBow__,Crossbow,5,17000,,900,65,,5,0,0x000A0848,63,2,34,2,18,1,11,{},{},{}
-1713,Arbalest,Arbalest,5,48000,,1000,90,,5,1,0x000A0848,63,2,34,3,33,1,11,{ bonus bDex,2; },{},{}
-1714,Kakkung,Gakkung Bow,5,42000,,1100,100,,5,1,0x000A0848,63,2,34,3,33,1,11,{},{},{}
-1715,Arbalest_,Arbalest,5,48000,,1000,90,,5,2,0x000A0848,63,2,34,3,33,1,11,{ bonus bDex,2; },{},{}
-1716,Kakkung_,Gakkung Bow,5,42000,,1100,100,,5,2,0x000A0848,63,2,34,3,33,1,11,{},{},{}
-1718,Hunter_Bow,Hunter Bow,5,64000,,1500,125,,5,0,0x00000800,63,2,34,3,33,1,11,{},{},{}
-1719,Bow_Of_Roguemaster,Roguemaster's Bow,5,20,,500,75,,11,0,0x00000040,63,2,34,4,48,1,11,{},{},{}
-1720,Bow_Of_Rudra,Rudra Bow,5,20,,1200,150,,5,0,0x000A0808,63,2,34,4,48,1,11,{ 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; },{},{}
-1721,Repeting_CrossBow,Repeating Crossbow,5,89000,,2000,95,,9,1,0x00020840,63,2,34,3,65,1,11,{},{},{}
-1722,Balistar,Ballista,5,124000,,3500,145,,5,0,0x00080800,63,2,34,4,77,1,11,{},{},{}
-1723,Luna_Bow,Luna Bow,5,20,,2000,100,,5,2,0x00000800,63,2,34,3,30,1,11,{ .@r = getrefine(); bonus bDef,2+3*(.@r>5)+2*(.@r>8); },{},{}
-1724,Dragon_Wing,Dragon Wing,5,20,,1200,100,,5,0,0x000A0848,63,2,34,4,60,1,11,{ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; },{},{}
-1725,Bow_Of_Minstrel,Minstrel Bow,5,20,,1700,120,,5,1,0x00080800,63,2,34,4,70,1,11,{ bonus bInt,2; bonus bSPrecovRate,10; },{},{}
-1726,Hunter_Bow_,Hunter Bow,5,64000,,1500,125,,5,1,0x00000800,63,2,34,3,33,1,11,{},{},{}
-1727,Balistar_,Ballista,5,124000,,3500,145,,5,1,0x00080800,63,2,34,4,77,1,11,{},{},{}
-1728,Balistar_C,Ballista,5,1,,0,194,,5,0,0x00080800,63,2,34,4,1,0,11,{ bonus bLongAtkRate,20; },{},{}
-1729,Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0808,63,2,34,4,1,0,11,{ 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; },{},{}
-1730,Burning_Bow,Burning Bow,5,20,,1400,95,,5,1,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{}
-1731,Frozen_Bow,Frozen Bow,5,20,,1400,100,,5,1,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{}
-1732,Earth_Bow,Earth Bow,5,20,,1400,105,,5,1,0x000A0808,63,2,34,3,55,1,11,{},{},{}
-1733,Gust_Bow,Gust Bow,5,20,,1400,95,,5,1,0x000A0808,63,2,34,3,55,1,11,{},{},{}
-1734,Orc_Archer_Bow,Orc Archer Bow,5,20,,1600,120,,5,0,0x000A0808,63,2,34,3,65,1,11,{ bonus2 bAddMonsterDropItem,1753,200; },{},{}
-1735,Kkakkung,Kkakkung,5,20,,0,120,,5,0,0x000A0848,63,2,34,1,1,0,11,{ bonus2 bAddClass,Class_All,50; },{},{}
-1736,Double_Bound,Double Bound,5,20,,900,70,,5,3,0x00000800,18,2,34,3,70,1,11,{ bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; },{},{}
-1737,Ixion_Wing,Ixion Wings,5,20,,300,135,,5,1,0x00000800,18,2,34,4,70,1,11,{ autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; },{},{}
-1738,BF_Bow1,Valorous Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1739,BF_Bow2,Brave Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bUnbreakableWeapon; },{},{}
-1740,Nepenthes_Bow,Nepenthes Bow,5,20,,1000,105,,5,2,0x00000800,18,2,34,4,60,1,11,{ bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; },{},{}
-1741,Cursed_Lyre,Cursed Lyre,5,20,,1250,125,,5,1,0x00080800,18,2,34,4,80,1,11,{ bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; },{},{}
-1742,N_Composite_Bow,Novice Composite Bow,5,1,,0,49,,5,3,0x000A0848,63,2,34,1,4,0,11,{},{},{}
-1743,Krieger_Bow1,Glorious Hunter Bow,5,0,,0,100,,5,0,0x001A0848,63,2,34,4,80,1,11,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; .@r = getrefine(); bonus bCritAtkRate,.@r * 2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20; },{},{}
-1744,Bow_Of_Evil,Bow Of Evil,5,20,,0,170,,5,0,0x000A0848,63,2,34,4,1,0,11,{ bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; },{},{}
-1745,Falken_Blitz,Falken Blitz,5,20,,1000,100,,5,2,0x00000800,18,2,34,3,50,1,11,{ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; },{},{}
-1746,Elven_Bow,Elven Bow,5,20,,1500,160,,5,1,0x00080800,63,2,34,3,100,1,11,{ bonus bDex,2; },{},{}
-1747,P_Bow1,Eden Bow I,5,0,,0,82,,5,0,0x000A0848,63,2,34,2,26,0,11,{},{},{}
-1748,P_Bow2,Eden Bow II,5,0,,0,120,,5,0,0x000A0848,63,2,34,2,40,0,11,{},{},{}
-1749,Tourist_Bow,Tourist Bow,5,0,,500,40,,5,0,0x000A0848,63,2,34,1,1,0,11,{ bonus bDex,2; },{},{}
-//===================================================================
-// Arrows
-//===================================================================
-1750,Arrow,Arrow,10,1,,1,25,,,,0x000A1848,63,2,32768,,1,,1,{},{},{}
-1751,Silver_Arrow,Silver Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{}
-1752,Fire_Arrow,Fire Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Fire; },{},{}
-1753,Steel_Arrow,Steel Arrow,10,4,,2,40,,,,0x000A1848,63,2,32768,,1,,1,{},{},{}
-1754,Crystal_Arrow,Crystal Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; },{},{}
-1755,Arrow_Of_Wind,Arrow of Wind,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Wind; },{},{}
-1756,Stone_Arrow,Stone Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Earth; },{},{}
-1757,Immatrial_Arrow,Immaterial Arrow,10,3,,1,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Ghost; },{},{}
-1758,Stun_Arrow,Stun Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-1759,Freezing_Arrow,Frozen Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; },{},{}
-1760,Flash_Arrow,Flash Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Blind,1000; },{},{}
-1761,Curse_Arrow,Cursed Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Curse,1000; },{},{}
-1762,Rusty_Arrow,Rusty Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; },{},{}
-1763,Poison_Arrow,Poison Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; },{},{}
-1764,Incisive_Arrow,Sharp Arrow,10,20,,3,10,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bCriticalLong,20; },{},{}
-1765,Oridecon_Arrow,Oridecon Arrow,10,30,,3,50,,,,0x000A1848,63,2,32768,,1,,1,{},{},{}
-1766,Arrow_Of_Counter_Evil,Arrow of Counter Evil,10,40,,3,50,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{}
-1767,Arrow_Of_Shadow,Arrow of Shadow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Dark; },{},{}
-1768,Sleep_Arrow,Sleep Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Sleep,2000; },{},{}
-1769,Silence_Arrow,Mute Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Silence,1000; },{},{}
-1770,Iron_Arrow,Iron Arrow,10,2,,1,30,,,,0x000A1848,63,2,32768,,1,,1,{},{},{}
-1771,Venom_Knife,Venom Knife,10,50,,5,30,,,,0x00001000,63,2,32768,,1,,2,{},{},{}
-1772,Holy_Arrow,Holy Arrow,10,3,,2,50,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; },{},{}
-1773,Arrow_Of_Elf,Elven Arrow,10,5,,1,45,,,,0x000A1848,63,2,32768,,100,,1,{},{},{}
-1774,Hunting_Arrow,Hunting Arrow,10,5,,1,35,,,,0x000A1848,63,2,32768,,1,,1,{},{},{}
-1775,Siege_Arrow_S,Siege Arrow S,10,10,,1,45,,,,0x000A1848,63,2,32768,,130,,1,{},{},{}
-1776,Siege_Arrow_A,Siege Arrow A,10,10,,1,30,,,,0x000A1848,63,2,32768,,95,,1,{},{},{}
-//===================================================================
-// Knuckles
-//===================================================================
-1800,Fist_of_Vicious_Mind,Fist of Vicious Mind,5,20,,1500,150,,1,1,0x00008100,63,2,2,4,160,1,12,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-1801,Waghnakh,Waghnak,5,8000,,400,30,,1,3,0x00008100,63,2,2,1,1,1,12,{},{},{}
-1802,Waghnakh_,Waghnak,5,8000,,400,30,,1,4,0x00008100,63,2,2,1,1,1,12,{},{},{}
-1803,Knuckle_Duster,Knuckle Dusters,5,25000,,450,50,,1,2,0x00008100,63,2,2,2,12,1,12,{},{},{}
-1804,Knuckle_Duster_,Knuckle Dusters,5,25000,,450,50,,1,3,0x00008100,63,2,2,2,12,1,12,{},{},{}
-1805,Hora,Studded Knuckles,5,32000,,450,65,,1,2,0x00008100,63,2,2,2,12,1,12,{},{},{}
-1806,Hora_,Studded Knuckles,5,32000,,450,65,,1,3,0x00008100,63,2,2,2,12,1,12,{},{},{}
-1807,Fist,Fist,5,53000,,650,115,,1,0,0x00008100,63,2,2,3,24,1,12,{},{},{}
-1808,Fist_,Fist,5,53000,,650,115,,1,1,0x00008100,63,2,2,3,24,1,12,{},{},{}
-1809,Claw,Claw,5,67000,,500,86,,1,1,0x00008100,63,2,2,3,24,1,12,{ bonus bStr,2; },{},{}
-1810,Claw_,Claw,5,67000,,500,86,,1,2,0x00008100,63,2,2,3,24,1,12,{ bonus bStr,2; },{},{}
-1811,Finger,Finger,5,58000,,500,97,,1,1,0x00008100,63,2,2,3,24,1,12,{},{},{}
-1812,Finger_,Finger,5,58000,,500,97,,1,2,0x00008100,63,2,2,3,24,1,12,{},{},{}
-1813,Kaiser_Knuckle,Kaiser Knuckle,5,20,,450,110,,1,0,0x00008100,63,2,2,4,36,1,12,{ 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; },{},{}
-1814,Berserk,Berserk,5,20,,500,120,,1,0,0x00008100,63,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{}
-1815,Claw_Of_Garm,Hatii Claw,5,20,,550,152,,1,1,0x00008100,63,2,2,4,70,1,12,{ bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; },{},{}
-1816,Berserk_,Berserk,5,20,,500,120,,1,1,0x00008100,63,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{}
-1817,Kaiser_Knuckle_C,Kaiser Knuckle,5,1,,0,159,,1,0,0x00008100,63,2,2,4,1,0,12,{ 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; },{},{}
-1818,Magma_Fist,Magma Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; },{},{}
-1819,Icicle_Fist,Icicle Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; },{},{}
-1820,Electric_Fist,Electric Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; },{},{}
-1821,Seismic_Fist,Seismic Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; },{},{}
-1822,Combo_Battle_Glove,Combo Battle Glove,5,20,,500,30,,1,4,0x00008100,63,2,2,3,60,1,12,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; },{},{}
-1823,BF_Knuckle1,Valorous Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{}
-1824,BF_Knuckle2,Brave Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; },{},{}
-1825,Horn_Of_Hilthrion,Horn of Hillslion,5,20,,600,95,,1,3,0x00008000,18,2,2,3,60,1,12,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; },{},{}
-1826,Krieger_Knuckle1,Glorious Claw,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); } },{},{}
-1827,Krieger_Knuckle2,Glorious Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } },{},{}
-1828,Monk_Knuckle,Monk Knuckle,5,20,,0,150,,1,0,0x00008100,63,2,2,4,0,0,12,{ bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; },{},{}
-1829,Fist_C,Fist,5,0,,0,150,,1,0,0x00008100,63,2,2,3,1,0,12,{ bonus2 bAddSize,Size_All,40; },{},{}
-1830,Sura_Rampage,Sura Rampage,5,20,,500,142,,1,1,0x00008100,63,2,2,3,102,1,12,{ bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); } },{},{}
-1831,P_Knuckle1,Eden Knuckle I,5,0,,0,120,,1,0,0x00008100,63,2,2,3,60,0,12,{},{},{}
-1832,Velum_Claw,Vellum Claw,5,20,,650,160,,1,0,0x00008100,63,2,2,4,95,1,12,{ bonus2 bAddRace,RC_Player,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player,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; } },{},{}
-1833,Claw_Of_Flash,Claw of Flash,5,60000,,400,140,,1,2,0x00008100,63,2,2,4,105,1,12,{ bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); },{},{}
-1834,TE_Woe_Fist,TE Woe Fist,5,0,,0,150,,1,0,0x00008100,63,2,2,3,40,1,12,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; },{},{}
-1835,Spartacus,Spartacus,5,0,,600,100,,1,2,0x00008100,63,2,2,4,50,1,12,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; } },{},{}
-1836,Thanos_Knuckle,Thanos Knuckle,5,10,,600,160:100,,1,1,0x00008000,56,2,2,4,120,1,12,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1837,Iron_nail,Iron Nail,5,10,,1500,100,,,1,0x00008100,63,2,2,3,50,1,12,{ bonus bAspdRate,-5; bonus bAspdRate,((getrefine()+1)/2); },{},{}
-1838,Half_BF_Knuckle1,Half BF Knuckle1,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{}
-1839,Crimson_Knuckles,Crimson Knuckles,5,20,,1000,100,,1,2,0x00008100,63,2,2,3,70,1,12,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; },{},{}
-1840,Requiem_Knuckle,Requiem Knuckle,5,20,,500,150:100,,1,0,0x00008100,63,2,2,4,100,1,12,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; },{},{}
-1841,Claw_Of_Flash_,Claw of Flash,5,60000,,400,140,,1,3,0x00008100,63,2,2,4,105,1,12,{ bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); },{},{}
-1846,Illusion_Combo_Battle_Glove,Illusion Combo Battle Glove,5,0,,500,250,,1,2,0x00008000,56,2,2,4,120,1,12,{ .@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)); },{},{}
-1862,Burning_Knuckle-OS,Burning Knuckle-OS,5,20,,900,175,,1,2,0x00008000,63,2,2,4,130,1,12,{ .@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; } } } },{},{}
-1865,Raging_Dragon_Fist,Raging Dragon Fist,5,20,,700,210,,1,2,0x00008000,56,2,2,4,170,1,12,{ .@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; },{},{}
-1866,Dedicated_Bandage,Dedicated Bandage,5,20,,800,220,,1,2,0x00008000,56,2,2,4,170,1,12,{ .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; },{},{}
-//===================================================================
-// Instruments
-//===================================================================
-1900,Violin_of_Vicious_Mind,Violin of Vicious Mind,5,20,,1300,130:50,,1,1,0x00080000,63,1,2,4,160,1,13,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{}
-1901,Violin,Violin,5,4000,,700,50,,1,3,0x00080000,63,1,2,1,2,1,13,{},{},{}
-1902,Violin_,Violin,5,4000,,700,50,,1,4,0x00080000,63,1,2,1,2,1,13,{},{},{}
-1903,Mandolin,Mandolin,5,18000,,400,90,,1,2,0x00080000,63,1,2,2,14,1,13,{},{},{}
-1904,Mandolin_,Mandolin,5,18000,,400,90,,1,3,0x00080000,63,1,2,2,14,1,13,{},{},{}
-1905,Lute,Lute,5,24500,,500,105,,1,2,0x00080000,63,1,2,2,14,1,13,{},{},{}
-1906,Lute_,Lute,5,24500,,500,105,,1,3,0x00080000,63,1,2,2,14,1,13,{},{},{}
-1907,Guitar,Guitar,5,47000,,900,142,,1,0,0x00080000,63,1,2,3,27,1,13,{},{},{}
-1908,Guitar_,Guitar,5,47000,,900,142,,1,1,0x00080000,63,1,2,3,27,1,13,{},{},{}
-1909,Harp,Harp,5,62000,,900,114,,1,1,0x00080000,63,1,2,3,27,1,13,{ bonus bInt,2; },{},{}
-1910,Harp_,Harp,5,62000,,900,114,,1,2,0x00080000,63,1,2,3,27,1,13,{ bonus bInt,2; },{},{}
-1911,Guh_Moon_Goh,Gumoongoh,5,54000,,1300,126,,1,1,0x00080000,63,1,2,3,27,1,13,{},{},{}
-1912,Guh_Moon_Goh_,Gumoongoh,5,54000,,1300,126,,1,2,0x00080000,63,1,2,3,27,1,13,{},{},{}
-1913,Electronic_Guitar,Electric Guitar,5,20,,1800,110,,1,0,0x00080000,63,1,2,4,70,1,13,{ skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; },{},{}
-1914,Guitar_Of_Passion,Burning Passion Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Fire; },{},{}
-1915,Guitar_Of_Blue_Solo,Loner's Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Water; },{},{}
-1916,Guitar_Of_Vast_Land,Green Acre Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Earth; },{},{}
-1917,Guitar_Of_Gentle_Breeze,Gentle Breeze Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Wind; },{},{}
-1918,Oriental_Lute,Oriental Lute,5,20,,1200,150,,1,0,0x00080000,63,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{}
-1919,Base_Guitar,Bass Guitar,5,20,,1500,130,,1,1,0x00080000,18,1,2,3,70,1,13,{ bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; },{},{}
-1920,Berserk_Guitar,Berserk Guitar,5,20,,1800,10,,1,0,0x00080000,18,1,2,4,70,1,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{}
-1921,Guh_Moon_Gom,Gun Moon Gom,5,20,,0,120,,1,0,0x00080000,63,1,2,1,0,0,13,{ bonus2 bAddClass,Class_All,50; },{},{}
-1922,Oriental_Lute_,Oriental Lute,5,20,,1200,150,,1,2,0x00080000,63,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{}
-1923,BF_Instrument1,Valorous Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1924,BF_Instrument2,Brave Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{}
-1925,Cello,Cello,5,20,,700,110,,1,3,0x00080000,18,1,2,3,70,1,13,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{}
-1926,Harp_Of_Nepenthes,Harp of Nepenthes,5,20,,1000,120,,1,2,0x00080000,18,1,2,4,60,1,13,{ bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000); },{},{}
-1927,Krieger_Instrument1,Glorious Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,4,80,1,13,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{}
-1928,Berserk_Guitar_I,Spirited Guitar,5,0,,0,40,,1,0,0x00080000,18,1,2,4,0,0,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{}
-1929,Guitar_C,Guitar,5,0,,0,177,,1,0,0x00080000,63,1,2,3,1,0,13,{ bonus2 bAddSize,Size_All,40; },{},{}
-1930,Green_Whistle,Green Whistle,5,20,,800,170:50,,1,1,0x00080000,63,1,2,3,102,1,13,{ .@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; },{},{}
-1931,P_String_Inst1,Eden Guitar I,5,0,,0,125,,1,0,0x00080000,63,1,2,3,60,0,13,{},{},{}
-1932,TE_Woe_Guitar,TE Woe Guitar,5,0,,0,100,,1,0,0x00080000,63,1,2,3,40,1,13,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-1933,Thanos_Violin,Thanos Violin,5,10,,2000,200:130,,1,1,0x00080000,56,1,2,4,120,1,13,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1934,Contabass,Contrabass,5,20,,250,180:120,,1,2,0x00080000,63,1,2,3,130,1,13,{ bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20; },{},{}
-1935,Ukulele_Of_Newoz,Oz's New Ukulele,5,20,,2000,160,,1,2,0x00080000,63,1,2,4,130,1,13,{ bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20; },{},{}
-1936,Ru_Blue_Violin,Blue Violin,5,10,,1500,180,,2,1,0x00080000,63,1,2,3,100,1,13,{ bonus bDex,5; bonus bVit,5; },{},{}
-1937,Ru_Gold_Violin,Ru Gold Violin,5,0,,1500,180,,1,2,0x00080000,56,2,2,3,120,1,13,{ bonus bDex,8; bonus bVit,8; },{},{}
-1938,Infinity_Violin,Infinity Violin,5,10,,500,150,,2,1,0x00080000,56,1,2,4,100,1,13,{},{},{}
-1939,Crimson_Violin,Crimson Violin,5,20,,800,80,,2,2,0x00080000,63,1,2,3,70,1,13,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-1940,Trumpet_Shell,Trumpet Shell,5,0,,600,125,,1,1,0x00080000,56,1,2,4,130,1,13,{ .@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; },{},{}
-1941,Unity_Violin,Unity Violin,5,20,,400,76,,2,1,0x00080000,63,1,2,3,1,1,13,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-1942,Requiem_Violin,Requiem Violin,5,20,,500,160:120,,1,,0x00080000,63,1,2,4,100,1,13,{ .@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; },{},{}
-1944,Hippie_Guitar,Hippie Guitar,5,0,,1000,140,,2,2,0x00080000,56,1,2,3,100,1,13,{ .@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; },{},{}
-//===================================================================
-// Whips
-//===================================================================
-1950,Rope,Rope,5,2500,,400,45,,2,3,0x00080000,63,0,2,1,3,1,14,{},{},{}
-1951,Rope_,Rope,5,2500,,400,45,,2,4,0x00080000,63,0,2,1,3,1,14,{},{},{}
-1952,Line,Whip,5,12000,,300,80,,2,2,0x00080000,63,0,2,2,16,1,14,{},{},{}
-1953,Line_,Whip,5,12000,,300,80,,2,3,0x00080000,63,0,2,2,16,1,14,{},{},{}
-1954,Wire,Wire Whip,5,17500,,1000,95,,2,2,0x00080000,63,0,2,2,16,1,14,{},{},{}
-1955,Wire_,Wire Whip,5,17500,,1000,95,,2,3,0x00080000,63,0,2,2,16,1,14,{},{},{}
-1956,Rante,Rante Whip,5,32000,,900,135,,2,0,0x00080000,63,0,2,3,30,1,14,{},{},{}
-1957,Rante_,Rante Whip,5,32000,,900,135,,2,1,0x00080000,63,0,2,3,30,1,14,{},{},{}
-1958,Tail,Tail Whip,5,41000,,700,105,,2,1,0x00080000,63,0,2,3,30,1,14,{ bonus bLuk,3; },{},{}
-1959,Tail_,Tail Whip,5,41000,,700,105,,2,2,0x00080000,63,0,2,3,30,1,14,{ bonus bLuk,3; },{},{}
-1960,Whip,Whip,5,38000,,700,120,,2,1,0x00080000,63,0,2,3,30,1,14,{},{},{}
-1961,Whip_,Whip,5,38000,,700,120,,2,2,0x00080000,63,0,2,3,30,1,14,{},{},{}
-1962,Lariat,Lariat Whip,5,20,,400,100,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bDex,5; bonus bAgi,1; },{},{}
-1963,Rapture_Rose,Rapture Rose,5,20,,300,115,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; },{},{}
-1964,Chemeti,Chemeti Whip,5,20,,700,135,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; },{},{}
-1965,Whip_Of_Red_Flame,Red Flame Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Fire; },{},{}
-1966,Whip_Of_Ice_Piece,Icicle Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Water; },{},{}
-1967,Whip_Of_Earth,Gaia Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Earth; },{},{}
-1968,Jump_Rope,Skipping Rope,5,20,,400,120,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bCritical,20; },{},{}
-1969,Bladed_Whip,Blade Whip,5,20,,1200,140,,2,0,0x00080000,63,0,2,4,30,1,14,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{}
-1970,Queen's_Whip,Queen's Whip,5,20,,1100,150,,2,0,0x00080000,63,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-1971,Electric_Wire,Electric Wire,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Wind; },{},{}
-1972,Electric_Eel,Electric Eel,5,20,,2000,100,,2,2,0x00080000,18,0,2,4,70,1,14,{ 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; },{},{}
-1973,Sea_Witch_Foot,Sea Witch's Foot,5,20,,1500,110,,2,1,0x00080000,18,0,2,4,70,1,14,{ bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; },{},{}
-1974,Carrot_Whip,Carrot Whip,5,20,,1300,185,,2,0,0x00080000,18,0,2,4,70,1,14,{ .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10; },{},{}
-1975,Queen_Is_Whip,Queen Is Whip,5,20,,0,120,,2,0,0x00080000,63,0,2,1,0,0,14,{ bonus2 bAddClass,Class_All,50; },{},{}
-1976,Queen's_Whip_,Queen's Whip,5,20,,1100,150,,2,2,0x00080000,63,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-1977,BF_Whip1,Valorous Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-1978,BF_Whip2,Brave Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{}
-1979,Stem_Of_Nepenthes,Stem of Nepenthes,5,20,,1000,120,,2,2,0x00080000,18,0,2,4,60,1,14,{ bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000); },{},{}
-1980,Whip_Of_Balance,Whip of Balance,5,20,,700,110,,2,3,0x00080000,18,0,2,3,70,1,14,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{}
-1981,Krieger_Whip1,Glorious Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,4,80,1,14,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{}
-1982,Phenomena_Whip,Phenomena Whip,5,20,,0,160,,2,0,0x00080000,63,0,2,4,0,0,14,{ bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; },{},{}
-1983,Rante_C,Rante Whip,5,0,,0,170,,2,0,0x00080000,63,0,2,3,1,0,14,{ bonus2 bAddSize,Size_All,40; },{},{}
-1984,Stem_Whip,Stem Whip,5,20,,800,170:50,,1,1,0x00080000,63,0,2,3,102,1,14,{ .@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; },{},{}
-1985,Rosebine,Rosebine,5,20,,1000,100:130,,1,0,0x00080000,63,0,2,4,110,1,14,{ bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; },{},{}
-1986,P_Tail1,Eden Tail I,5,0,,0,125,,2,0,0x00080000,63,0,2,3,60,0,14,{},{},{}
-1987,TE_Woe_Rope,TE Woe Rope,5,0,,0,100,,2,0,0x00080000,63,0,2,3,40,1,14,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{}
-1988,Thanos_Whip,Thanos Whip,5,10,,2200,200:130,,2,1,0x00080000,56,0,2,4,120,1,14,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-1989,Gymnastics_Ribbon,Rhythmic Gymnastics Ribbon,5,20,,300,150:120,,2,2,0x00080000,63,0,2,3,130,1,14,{ bonus bAspdRate,20; },{},{}
-1990,Floral_Mic_Of_Igu,Bloody Floral Decoration Microphone,5,20,,1000,160,,2,2,0x00080000,63,0,2,4,130,1,14,{ bonus2 bSkillUseSP,"CG_MOONLIT",20; },{},{}
-1991,Ru_Blue_Whip,Blue Whip,5,10,,1500,180,,2,1,0x00080000,63,0,2,3,100,1,14,{ bonus bDex,5; bonus bVit,5; },{},{}
-1992,Ru_Gold_Whip,Ru Gold Whip,5,0,,1500,180,,2,2,0x00080000,56,2,2,3,120,1,14,{ bonus bDex,8; bonus bVit,8; },{},{}
-1994,Infinity_Whip,Infinity Whip,5,10,,500,150,,2,1,0x00080000,56,0,2,4,100,1,14,{},{},{}
-1995,Crimson_Whip,Crimson Whip,5,20,,800,80,,2,2,0x00080000,63,0,2,3,70,1,14,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-1996,Wire_of_Vicious_Mind,Wire of Vicious Mind,5,20,,1300,130:50,,2,1,0x00080000,63,,2,4,160,1,14,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{}
-1997,Unity_Whip,Unity Whip,5,20,,76,40,,2,1,0x00080000,63,0,2,3,1,1,14,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-//===================================================================
-// Additional 2-Handed Staffs
-//===================================================================
-2000,Destruction_Rod,Staff of Destruction,5,20,,2500,130:280,,1,1,0x00000200,18,2,34,4,80,1,23,{ .@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; },{},{}
-2001,Divine_Cross,Divine Cross,5,20,,1500,120:210,,1,0,0x00008100,63,2,34,4,70,1,23,{ bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{}
-2002,Krieger_Twohand_Staff1,Glorious Destruction Staff,5,20,,0,70:210,,1,0,0x00018314,63,2,34,4,80,1,23,{ .@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player,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; } },{},{}
-2003,Destruction_Rod_M,Staff of Destruction,5,20,,2500,130:280,,1,1,0x00000200,18,2,34,4,80,1,23,{ .@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; },{},{}
-2004,Kronos,Kronos,5,20,,1000,30:240,,1,0,0x00010204,18,2,34,4,50,1,23,{ .@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; }"; },{},{}
-2005,Dea_Staff,Dea Staff,5,20,,1000,30:220,,1,1,0x00008110,18,2,34,3,50,1,23,{ 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; }"; },{},{}
-2006,G_Staff_Of_Light,Staff Of Light,5,20,,1900,80:150,,1,0,0x00810204,63,2,34,4,60,1,23,{ bonus bAtkEle,Ele_Holy; bonus bInt,6; },{},{}
-2007,Golden_Rod_Staff,Golden Rod Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12; },{},{}
-2008,Aqua_Staff,Aqua Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12; },{},{}
-2009,Crimson_Staff,Crimson Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10; },{},{}
-2010,Forest_Staff,Forest Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; },{},{}
-2011,Golden_Rod_Staff2,Empowered Golden Rod Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; },{},{}
-2012,Aqua_Staff2,Empowered Aqua Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; },{},{}
-2013,Crimson_Staff2,Empowered Crimson Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; },{},{}
-2014,Forest_Staff2,Empowered Forest Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; },{},{}
-2015,Upg_Staff,Upg Staff,5,20,,1000,50:70,,1,1,0x00818314,63,2,34,3,1,1,23,{ .@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); },{},{}
-2016,Velum_Arc_Wand,Vellum Arc Wand,5,20,,800,110:220,,1,0,0x00818314,63,2,34,4,95,1,23,{ bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; } },{},{}
-2017,Divine_Cross_,Divine Cross,5,20,,1500,120:210,,1,1,0x00008100,63,2,34,4,70,1,23,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{}
-2018,Metal_Staff,Metal Staff,5,20,,0,50:70,,1,1,0x00818315,63,2,34,3,1,1,23,{ 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); },{},{}
-2019,TE_Woe_Two_Hand_Staff,TE Woe Two Hand Staff,5,0,,0,50:130,,1,0,0x00818315,63,2,34,3,40,1,23,{ bonus2 bMagicAddRace,RC_Player,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{}
-2020,Jormungand,Jormungand,5,10,,3000,200:280,,,0,0x810200,63,2,34,4,1,0,23,{ bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon; },{},{}
-2021,Ganbantein,Ganbantein,5,0,,2000,100:320,,1,0,0x00000200,56,2,2,4,100,1,10,{ bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon; },{},{}
-2022,Staff_Of_Geffen,Staff of Geffen,5,20,,1000,100:300,,1,1,0x00000200,18,2,34,1,150,1,23,{ bonus bInt,20; },{},{}
-2023,Thanos_Rod,Thanos Two-Handed Staff,5,10,,1400,120:250,,1,1,0x00018314,56,2,34,4,120,1,23,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-2024,Infinity_Two-handed_Stick,Infinity Two-handed Stick,5,10,,500,30:170,,,1,0x810200,56,2,34,4,100,1,23,{},{},{}
-2025,Crimson_Two-Handed_Staff,Crimson Two-Handed Staff,5,20,,1000,100,,1,2,0x800200,63,2,34,3,70,1,23,{ .@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-2026,Staff_of_Vicious_Mind,Staff of Vicious Mind,5,20,,1000,100:200,,1,1,0x00810204,63,2,34,4,160,1,23,{ bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon; },{},{}
-2027,Sunflower_Kid,Sunflower Kid,5,10,,1500,150:320,,,2,0x00000200,56,2,34,4,170,1,23,{ bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon; },{},{}
-2030,Unity_Two-Handed_Staff,Unity Two-Handed Staff,5,20,,500,95:135,,1,1,0x800200,63,2,34,3,1,1,23,{ bonus bMatk,pow(getrefine(),2)*125/100; },{},{}
-2032,Requiem_Wizardry_Staff,Requiem Wizardry Staff,5,20,,500,100:230,,1,,0xFFFFFFFF,63,2,2,4,100,1,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; },{},{}
-2039,Illusion_Wizardry_Staff,Illusion Wizardry Staff,5,0,,2400,150:250,,1,2,0x00810204,58,2,34,4,100,1,23,{ .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); },{},{}
-2049,Blue_Flame_Cane,Blue Flame Cane,5,20,,800,110:300,,1,2,0x00818314,63,2,34,4,175,1,23,{ .@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; },{},{}
-2051,Illusion_Survivor's_Staff,Illusion Survivor's Staff,5,0,,1200,100:240,,1,2,0x00818314,63,2,34,4,120,1,23,{ .@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; } } } },{},{}
-2055,Staff_of_Miracle,Staff of Miracle,5,20,,1200,100:270,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@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; } },{},{}
-2056,Gravitation_Staff,Gravitation Staff,5,20,,1300,110:280,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@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; } },{},{}
-2057,Adorare_Staff,Adorare Staff,5,20,,1200,100:240,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@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; } },{},{}
-//===================================================================
-// Shields
-//===================================================================
-2101,Guard,Guard,4,500,,300,,20,,0,0xFFFFFFFF,63,2,32,,0,1,1,{},{},{}
-2102,Guard_,Guard,4,500,,300,,20,,1,0xFFFFFFFF,63,2,32,,0,1,1,{},{},{}
-2103,Buckler,Buckler,4,14000,,600,,40,,0,0x000ED5F2,63,2,32,,0,1,2,{},{},{}
-2104,Buckler_,Buckler,4,14000,,600,,40,,1,0x000ED5F2,63,2,32,,0,1,2,{},{},{}
-2105,Shield,Shield,4,56000,,1300,,60,,0,0x00004082,63,2,32,,0,1,3,{},{},{}
-2106,Shield_,Shield,4,56000,,1300,,60,,1,0x00004082,63,2,32,,0,1,3,{},{},{}
-2107,Mirror_Shield,Mirror Shield,4,60000,,1000,,45,,0,0x00404082,63,2,32,,0,1,4,{ bonus bMdef,5; },{},{}
-2108,Mirror_Shield_,Mirror Shield,4,60000,,1000,,45,,1,0x00404082,63,2,32,,0,1,4,{ bonus bMdef,5; },{},{}
-2109,Memorize_Book,Memory Book,4,20,,1000,,25,,0,0x00810204,63,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{}
-2110,Holy_Guard,Holy Guard,4,85000,,1400,,110,,0,0x00004000,63,2,32,,68,0,4,{ bonus bVit,2; bonus bMdef,2; },{},{}
-2111,Herald_Of_GOD,Sacred Mission,4,128000,,1600,,120,,0,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{}
-2112,Novice_Guard,Novice Guard,4,1,,1,,20,,0,0x00000001,63,2,32,,0,0,1,{},{},{}
-2113,Novice_Shield,Novice Shield,4,5000,,1000,,20,,1,0x00000001,63,2,32,,40,1,3,{ bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20; },{},{}
-2114,Stone_Buckler,Stone Buckler,4,30000,,1500,,45,,1,0xFFFFFFFE,63,2,32,,65,1,2,{ bonus2 bSubSize,Size_Large,5; },{},{}
-2115,Valkyrja's_Shield,Valkyrja's Shield,4,30000,,500,,80,,1,0xFFFFFFFE,63,2,32,,65,1,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{}
-2116,Angel's_Safeguard,Angelic Guard,4,10000,,400,,30,,1,0x00000001,63,2,32,,20,1,1,{ bonus2 bSubRace,RC_Demon,5; },{},{}
-2117,Arm_Guard,Arm Guard,4,10000,,150,,50,,0,0x02000000,63,2,32,,20,1,1,{},{},{}
-2118,Arm_Guard_,Arm Guard,4,10000,,150,,50,,1,0x02000000,63,2,32,,20,1,1,{},{},{}
-2119,Improved_Arm_Guard,Advanced Arm Guard,4,40000,,150,,45,,0,0x02000000,63,2,32,,50,1,1,{ bonus bMdef,5; },{},{}
-2120,Improved_Arm_Guard_,Advanced Arm Guard,4,40000,,150,,45,,1,0x02000000,63,2,32,,50,1,1,{ bonus bMdef,5; },{},{}
-2121,Memorize_Book_,Memory Book,4,20,,1000,,25,,1,0x00810204,63,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{}
-2122,Platinum_Shield,Platinum Shield,4,20,,1200,,95,,0,0xFFFFFFFE,18,2,32,,68,1,4,{ 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; },{},{}
-2123,Orleans_Server,Orleans's Server,4,20,,1000,,75,,1,0xFFFFFFFE,18,2,32,,55,1,4,{ bonus bMdef,2; bonus bMagicDamageReturn,5; },{},{}
-2124,Thorny_Buckler,Thorny Buckler,4,20,,1000,,85,,1,0xFFFFFFFE,18,2,32,,55,1,2,{ bonus bMdef,2; },{},{}
-2125,Strong_Shield,Strong Shield,4,20,,2500,,90,,1,0xFFFFFFFE,18,2,32,,75,1,4,{ 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; },{},{}
-2126,Guyak_Shield,Guyak Shield,4,20,,700,,3,,0,0xFFFFFFFE,63,2,32,,1,1,2,{ bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; },{},{}
-2127,Secular_Mission,Secular Mission,4,20,,0,,10,,0,0xFFFFFFFF,63,2,32,,0,0,4,{ bonus2 bSubClass,Class_All,25; },{},{}
-2128,Herald_Of_GOD_,Sacred Mission,4,128000,,1600,,120,,1,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{}
-2129,Exorcism_Bible,Exorcism Bible,4,20,,600,,80,,0,0x00008100,63,2,32,,50,1,5,{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; },{},{}
-2130,Cross_Shield,Cross Shield,4,20,,2000,,130,,1,0x00004000,63,2,32,,80,1,4,{ bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; },{},{}
-2131,Magic_Study_Vol1,Magic Bible Vol1,4,20,,1000,,18,,1,0x00810204,18,2,32,,70,1,5,{ bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; },{},{}
-2132,Shelter_Resistance,Shell Of Resistance,4,20,,0,,9,,0,0xFFFFFFFF,63,2,32,,0,0,2,{ bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } },{},{}
-2133,Tournament_Shield,Tournament Shield,4,20,,1000,,105,,1,0x00004082,18,2,32,,50,1,4,{ bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5; },{},{}
-2134,Shield_Of_Naga,Shield of Naga,4,20,,500,,35,,1,0x00CFFF80,18,2,32,,70,1,2,{ .@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; }"; } },{},{}
-2135,Shadow_Guard,Shadow Guard,4,20,,800,,52,,1,0x00020000,18,2,32,,70,1,2,{},{},{}
-2136,Cracked_Buckler,Cracked Buckler,4,0,,0,,5,,0,0xFFFFFFFF,63,2,32,,0,0,2,{ bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1; },{},{}
-2137,Valkyrja's_Shield_C,Neo Valkyrja's Shield,4,0,,0,,5,,0,0xFFFFFFFE,18,2,32,,95,0,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{}
-2138,Bradium_Shield,Bradium Shield,4,20,,1800,,98,,1,0x00CFFF80,18,2,32,,65,1,3,{ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; },{},{}
-2139,Flame_Thrower,Flame Thrower,4,20000,,2000,,60,,0,0x00000400,63,2,32,,99,0,1,{},{},{}
-2140,Energy_Rune_Guard,Energy Rune Guard,4,20,,0,,70,,1,0x00000080,63,2,32,,99,1,4,{ bonus bMaxSPrate,2; },{},{}
-2141,Freyja_SShield7,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{}
-2142,Freyja_SShield30,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{}
-2143,Freyja_SShield60,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{}
-2144,Freyja_SShield90,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{}
-2145,Time_Keepr_Shield,Time Keeper Shield,4,30000,,0,,20,,0,0xFFFFFFFF,63,2,32,,0,1,3,{ bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25; },{},{}
-2146,Siver_Guard,Silver Guard,4,12500,,300,,60,,1,0xFFFFFFFF,63,2,32,,22,1,1,{},{},{}
-2147,Round_Buckler,Round Buckleer,4,24000,,600,,90,,1,0xFFFFFFFE,18,2,32,,22,1,2,{},{},{}
-2148,Rotha_Shield,Rosa Shield,4,56000,,1300,,130,,1,0x00004082,63,2,32,,100,1,3,{},{},{}
-2149,Upg_Guard,Upg Guard,4,20,,150,,25,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus bMaxHPrate,3; },{},{}
-2150,Upg_Buckler,Upg Buckler,4,20,,300,,45,,1,0x000ED5F2,63,2,32,,1,1,2,{ bonus bMaxHPrate,3; },{},{}
-2151,Upg_Shield,Upg Shield,4,20,,650,,65,,1,0x00004082,63,2,32,,1,1,3,{ bonus bMaxHPrate,3; },{},{}
-2152,Anti_Demon_Shield_C,Anti-Demon Shield,4,0,,0,,120,,0,0xFFFFFFFF,63,2,32,,1,0,3,{ bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400; },{},{}
-2153,Imperial_Guard,Imperial Guard,4,20,,2500,,120,,1,0x00004000,63,2,32,,102,1,4,{ .@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); },{},{}
-2154,Toy_Shield,Toy Shield,4,0,,500,,1,,1,0xFFFFFFFF,63,2,32,,10,1,1,{},{},{}
-2155,Academy_Shield,Academy Shield,4,0,,1500,,3,,1,0xFFFFFFFE,63,2,32,,0,1,4,{},{},{}
-2156,Bible_Of_Promise1,Bible of Promise(1st Vol.),4,20,,500,,10,,1,0x00000100,63,2,32,,110,1,5,{ bonus bMdef,2; skill "ALL_ODINS_POWER",1; },{},{}
-2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,3,{},{},{}
-2158,Ramor_Shield_Undead,Ramorushirudo,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubRace,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; },{},{}
-2159,Sharel_Shield,Sharerushirudo,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2160,Giant_Shield,Giant Shield,4,56000,,2800,,130,,1,0x00004082,63,2,32,,100,1,3,{ bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; } },{},{}
-2161,Geffenia_Book_Water,Geffenia Tomb of Water,4,56000,,1000,,30,,1,0x00000200,63,2,32,,100,1,5,{ bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; } },{},{}
-2162,Bible_Of_Promise2,Bible of Promise(2nd Vol.),4,20,,500,,20,,1,0x00000100,63,2,32,,140,1,5,{ bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5; },{},{}
-2163,Flow_Shield,Floor Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2164,Sombre_Shield,Bull Son Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Dark,5; bonus2 bSubDefEle,Ele_Fire,5; },{},{}
-2165,Sol_Shield,Sol Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2166,Exorcism_Bible_,Devil's Bible Drive,4,20,,600,,80,,1,0x00008100,63,2,32,,50,1,5,{ bonus bInt,1; },{},{}
-2167,Poison_Shield,Poison Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2168,Immuned_Shield,Immune Shield,4,20,,700,,55,,1,0xFFFFFFFF,63,2,32,,1,1,4,{ .@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; } },{},{}
-2169,Kalasak,Kalasag,4,20,,400,,40,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus2 bSubClass,Class_Boss,getrefine()/3; },{},{}
-2170,Bayani_Kalasak,Bayani Kalasag,4,20,,400,,40,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus2 bSubClass,Class_Boss,getrefine()/3; },{},{}
-2171,Fox_Armguard,Fox Wrist Guard,4,40000,,200,,45,,1,0x02000000,63,2,32,,100,1,1,{ bonus bFlee,5; },{},{}
-2172,Wolf_Armguard,Wolf Wrist Guard,4,45000,,250,,70,,1,0x02000000,63,2,32,,100,1,1,{ autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; },{},{}
-2173,Crescent_Armguard,Crescent Wrist Guard,4,45000,,250,,45,,1,0x02000000,63,2,32,,100,1,1,{ bonus bDelayRate,-(getrefine()*2); },{},{}
-2174,Lumiere_Shield,Lumiere Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2175,Esprit_Shield,Spirit Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{}
-2176,Dark_Book,Black Book,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,5,{ bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30)); },{},{}
-2177,Shield_Of_Death,Shield Of Death,4,20,,2000,,150,,1,0xFFFFFFFF,63,2,32,,90,1,3,{ bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10; },{},{}
-2178,TE_Woe_Buckler,TE Woe Buckler,4,0,,0,,15,,0,0xFFFFFFFF,63,2,32,,40,1,2,{ bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player,15; },{},{}
-2179,TE_Woe_Shield,TE Woe Shield,4,0,,0,,25,,0,0x000444A2,63,2,32,,40,1,3,{ bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player,20; },{},{}
-2180,TE_Woe_Magic_Guard,TE Woe Magic Guard,4,0,,0,,5,,0,0x00818315,63,2,32,,40,1,1,{ bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player,10; },{},{}
-2181,Hervor,Hervor,4,10,,1500,,100,,0,0xFFFFFFFF,63,2,32,,1,,2,{ bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; },{},{}
-2182,Hervor_Alvitr,Hervor Alvitr,4,0,,3000,,150,,0,0x000FDF80,56,2,32,,100,0,2,{ 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; },{},{}
-2183,Impr_Angel's_Safeguard,Advanced Angelic Guard,4,10000,,400,,30,,1,0x00000001,63,2,32,,99,1,1,{ bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; },{},{}
-2185,Magic_Reflector,Magic Reflect,4,10,,1000,,50,,1,0xFFFFFFFF,63,2,32,,99,1,3,{ bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); },{},{}
-2186,Encyclopedia_Revision,Great Encyclopedia Revision,4,10,,200,0:5,50,,1,0x00810100,63,2,32,,99,1,4,{ bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5; },{},{}
-2187,Shield_Of_Gray,Shield of Gray,4,10,,2000,,75,,1,0xFFFFFFFF,56,2,32,,120,1,3,{ .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; },{},{}
-2188,Svalinn_J,Svalinn,4,10,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ .@r = getrefine(); bonus bMaxHP,9+.@r/3; bonus2 bAddEle,Ele_Water,4+.@r/3*5; },{},{}
-2189,Mad_Bunny,Mad Bunny Shield,4,10,,100,,40,,1,0xFFFFFFFF,63,2,32,,30,1,6,{ bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; },{},{}
-2190,Ancient_Shield_Of_Aeon,Ancient Shield Of Aeon,4,0,,200,,5,,0,0x000FDF80,63,2,32,,130,1,2,{ 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; },{},{}
-2195,Lian_Shield,Lian Shield,4,0,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; },{},{}
-2196,White_Gold_Shield,White Gold Shield,4,0,,1800,,140,,1,0xFFFFFFFF,63,2,32,,,1,4,{ autobonus2 "{ bonus bMagicDamageReturn,20; }",100,2000,BF_MAGIC; /* Confirm: Success rate? */ },{},{}
-2198,Lapine_Shield,Lapine Shield,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,32,,100,1,3,{ bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; } },{},{}
-// GM Shield
-2199,Ahura_Mazda,Ahura Mazdah,4,1,,10,,10000,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player,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; },{},{}
-//===================================================================
-// Headgears
-//===================================================================
-2201,Sunglasses,Sunglasses,4,5000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-2202,Sunglasses_,Sunglasses,4,5000,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-2203,Glasses,Glasses,4,4000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,3,{},{},{}
-2204,Glasses_,Glasses,4,4000,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,3,{},{},{}
-2205,Diver's_Goggles,Diver Goggles,4,3500,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,10,{},{},{}
-2206,Wedding_Veil,Wedding Veil,4,23000,,100,,0,,0,0xFFFFFFFF,63,0,256,,0,1,44,{ bonus bMdef,5; },{},{}
-2207,Fancy_Flower,Fancy Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,4,{ bonus2 bSubRace,RC_Plant,10; },{},{}
-2208,Ribbon,Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,17,{ bonus bMdef,3; },{},{}
-2209,Ribbon_,Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,17,{ bonus bMdef,3; },{},{}
-2210,Hair_Band,Hair Band,4,500,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,9,{},{},{}
-2211,Bandana,Bandana,4,400,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,6,{},{},{}
-2212,Eye_Bandage,Eye Patch,4,1000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,13,{},{},{}
-2213,Cat_Hairband,Kitty Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,2,{},{},{}
-2214,Bunny_Band,Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bLuk,2; },{},{}
-2215,Flower_Hairband,Flower Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,5,{},{},{}
-2216,Biretta,Biretta,4,9000,,100,,8,,0,0x00008110,63,2,256,,0,1,11,{},{},{}
-2217,Biretta_,Biretta,4,9000,,100,,8,,1,0x00008110,63,2,256,,0,1,11,{},{},{}
-2218,Flu_Mask,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{}
-2219,Flu_Mask_,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{}
-2220,Hat,Hat,4,1000,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,16,{},{},{}
-2221,Hat_,Hat,4,1000,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,16,{},{},{}
-2222,Turban,Turban,4,4500,,300,,3,,0,0xFFFFFFFE,63,2,256,,0,1,7,{},{},{}
-2223,Turban_,Turban,4,4500,,300,,3,,1,0xFFFFFFFE,63,2,256,,0,1,7,{},{},{}
-2224,Goggle,Goggles,4,20,,300,,5,,0,0x000E5CEA,63,2,768,,0,1,1,{},{},{}
-2225,Goggle_,Goggles,4,20,,300,,5,,1,0x000E5CEA,63,2,768,,0,1,1,{},{},{}
-2226,Cap,Cap,4,12000,,400,,7,,0,0x000E5CEA,63,2,256,,0,1,14,{},{},{}
-2227,Cap_,Cap,4,12000,,400,,7,,1,0x000E5CEA,63,2,256,,0,1,14,{},{},{}
-2228,Helm,Helm,4,44000,,600,,13,,0,0x00004082,63,2,256,,0,1,40,{},{},{}
-2229,Helm_,Helm,4,44000,,600,,13,,1,0x00004082,63,2,256,,0,1,40,{},{},{}
-2230,Gemmed_Sallet,Gemmed Sallet,4,50000,,500,,8,,0,0x000654E2,63,2,256,,0,1,0,{ bonus bMdef,3; },{},{}
-2231,Gemmed_Sallet_,Gemmed Sallet,4,50000,,500,,8,,1,0x000654E2,63,2,256,,0,1,0,{ bonus bMdef,3; },{},{}
-2232,Circlet,Circlet,4,7500,,300,,6,,0,0x00818314,63,2,256,,0,1,18,{ bonus bMdef,3; },{},{}
-2233,Circlet_,Circlet,4,7500,,300,,6,,1,0x00818314,63,2,256,,0,1,18,{ bonus bMdef,3; },{},{}
-2234,Tiara,Tiara,4,20,,400,,7,,0,0xFFFFFFFE,63,0,256,,45,1,19,{ bonus bInt,2; },{},{}
-2235,Crown,Crown,4,20,,400,,7,,0,0xFFFFFFFE,63,1,256,,45,1,45,{ bonus bInt,2; },{},{}
-2236,Santa's_Hat,Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; },{},{}
-2237,Weird_Goatee,Bandit Beard,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,21,{},{},{}
-2238,Weird_Moustache,Moustache,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,22,{},{},{}
-2239,One_Eyed_Glass,Monocle,4,10000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,23,{},{},{}
-2240,Beard,Beard,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,24,{},{},{}
-2241,Granpa_Beard,Grampa Beard,4,5000,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,25,{},{},{}
-2242,Luxury_Sunglasses,Purple Glasses,4,24000,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,26,{ bonus2 bResEff,Eff_Blind,1000; },{},{}
-2243,Spinning_Eyes,Geek Glasses,4,20000,,100,,1,,0,0xFFFFFFFF,63,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,1500; },{},{}
-2244,Big_Sis'_Ribbon,Big Ribbon,4,15000,,200,,3,,0,0xFFFFFFFE,63,2,256,,0,1,28,{ bonus bMdef,3; },{},{}
-2245,Sweet_Gents,Sweet Gent,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,29,{},{},{}
-2246,Golden_Gear,Golden Gear,4,20,,900,,5,,0,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{}
-2247,Oldman's_Romance,Romantic Gent,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,31,{},{},{}
-2248,Western_Grace,Western Grace,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,32,{},{},{}
-2249,Coronet,Coronet,4,20,,300,,5,,0,0xFFFFFFFE,63,2,256,,0,1,33,{ bonus bInt,1; },{},{}
-2250,Fillet,Cute Ribbon,4,500,,100,,2,,0,0xFFFFFFFE,63,2,256,,0,0,34,{ bonus bMaxSP,20; },{},{}
-2251,Holy_Bonnet,Monk Hat,4,30000,,100,,10,,0,0x00008110,63,2,256,,0,1,35,{ bonus bMdef,3; },{},{}
-2252,Star_Sparkling,Wizard Hat,4,20,,300,,7,,0,0x00810204,63,2,256,,0,1,36,{ bonus bMaxSP,100; },{},{}
-2253,Sunflower,Sunflower,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{}
-2254,Angelic_Chain,Angel Wing,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,38,{ bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; },{},{}
-2255,Satanic_Chain,Evil Wing,4,20,,100,,6,,0,0xFFFFFFFE,63,2,256,,0,1,39,{ bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; },{},{}
-2256,Magestic_Goat,Majestic Goat,4,20,,800,,9,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,1; },{},{}
-2257,Snowy_Horn,Unicorn Horn,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,42,{},{},{}
-2258,Sharp_Gear,Spiky Band,4,20,,1000,,12,,0,0x0066D5F2,63,2,256,,50,1,43,{},{},{}
-2259,Mini_Propeller,Mini Propeller,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,46,{},{},{}
-2260,Mini_Glasses,Mini Glasses,4,28000,,100,,1,,0,0xFFFFFFFE,63,2,512,,0,0,47,{},{},{}
-2261,Prontera_Army_Cap,Army Cap,4,20,,400,,8,,0,0x000654E2,63,2,256,,0,1,48,{},{},{}
-2262,Pierrot_Nose,Clown Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{},{},{}
-2263,Gangster_Patch,Zorro Masque,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,50,{},{},{}
-2264,Munak_Turban,Munak Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{}
-2265,Ganster_Mask,Gangster Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,52,{ bonus2 bResEff,Eff_Silence,1500; },{},{}
-2266,Iron_Cane,Iron Cain,4,20,,300,,4,,0,0x00004082,63,2,1,,50,0,53,{},{},{}
-2267,Cigar,Cigarette,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,54,{ bonus2 bSubRace,RC_Insect,3; },{},{}
-2268,Smoking_Pipe,Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus2 bSubRace,RC_Insect,3; },{},{}
-2269,Centimental_Flower,Romantic Flower,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-2270,Centimental_Leaf,Romantic Leaf,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,57,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-2271,Jack_A_Dandy,Jack be Dandy,4,45000,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,58,{},{},{}
-2272,Stop_Post,Stop Post,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,0,1,59,{},{},{}
-2273,Doctor_Cap,Doctor Band,4,20,,100,,5,,0,0xFFFFFFFE,63,2,256,,0,1,60,{ bonus bInt,1; },{},{}
-2274,Ghost_Bandana,Ghost Bandana,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,0,1,61,{ bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15; },{},{}
-2275,Red_Bandana,Red Bandana,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,62,{},{},{}
-2276,Eagle_Eyes,Angled Glasses,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,63,{},{},{}
-2277,Nurse_Cap,Nurse Cap,4,20,,100,,4,,0,0x00008110,63,2,256,,0,1,64,{ bonus bInt,1; },{},{}
-2278,Mr_Smile,Mr. Smile,4,60,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,65,{},{},{}
-2279,Bomb_Wick,Bomb Wick,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,66,{},{},{}
-2280,Sahkkat,Sakkat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,67,{ bonus bAgi,1; },{},{}
-2281,Phantom_Of_Opera,Opera Masque,4,20,,200,,2,,0,0xFFFFFFFE,63,2,513,,0,0,68,{},{},{}
-2282,Spirit_Chain,Halo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,69,{ bonus2 bSubEle,Ele_Holy,15; },{},{}
-2283,Ear_Mufs,Ear Muffs,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,70,{ bonus2 bResEff,Eff_Curse,1000; },{},{}
-2284,Antler,Antlers,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,0,1,71,{},{},{}
-2285,Apple_Of_Archer,Apple of Archer,4,20,,200,,1,,0,0xFFFFFFFE,63,2,256,,30,1,72,{ bonus bDex,3; },{},{}
-2286,Elven_Ears,Elven Ears,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,70,0,73,{},{},{}
-2287,Pirate_Bandana,Pirate Bandana,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,74,{ bonus bStr,1; },{},{}
-2288,Mr_Scream,Mr. Scream,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,75,{},{},{}
-2289,Poo_Poo_Hat,Poo Poo Hat,4,20,,700,,0,,0,0xFFFFFFFF,63,2,256,,0,0,76,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-2290,Funeral_Costume,Funeral Hat,4,3000,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,77,{},{},{}
-2291,Masquerade,Masquerade,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-2292,Welding_Mask,Welding Mask,4,20,,300,,2,,0,0x00040420,63,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; },{},{}
-2293,Pretend_Murdered,Pretend Murdered,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,80,{},{},{}
-2294,Star_Dust,Stellar,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,81,{},{},{}
-2295,Blinker,Blinker,4,1500,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-2296,Binoculars,Binoculars,4,20,,100,,2,,0,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; },{},{}
-2297,Goblini_Mask,Goblin Mask,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,84,{},{},{}
-2298,Green_Feeler,Green Feeler,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,85,{},{},{}
-2299,Viking_Helm,Orc Helm,4,20,,500,,9,,0,0x000654E2,63,2,256,,0,1,86,{},{},{}
-//===================================================================
-// Armors
-//===================================================================
-2301,Cotton_Shirt,Cotton Shirt,4,10,,100,,10,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2302,Cotton_Shirt_,Cotton Shirt,4,10,,100,,10,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2303,Leather_Jacket,Jacket,4,200,,200,,15,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2304,Leather_Jacket_,Jacket,4,200,,200,,15,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2305,Adventure_Suit,Adventurer's Suit,4,1000,,300,,20,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2306,Adventurere's_Suit_,Adventurer's Suit,4,1000,,300,,20,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2307,Mantle,Mantle,4,10000,,600,,37,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2308,Mantle_,Mantle,4,10000,,600,,37,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2309,Coat,Coat,4,22000,,1200,,42,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2310,Coat_,Coat,4,22000,,1200,,42,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2311,Mink_Coat,Mink Coat,4,20,,2300,,30,,1,0xFFFFFFFE,63,2,16,,30,1,0,{},{},{}
-2312,Padded_Armor,Padded Armor,4,48000,,2800,,35,,0,0x000654E2,63,2,16,,0,1,0,{},{},{}
-2313,Padded_Armor_,Padded Armor,4,48000,,2800,,35,,1,0x000654E2,63,2,16,,0,1,0,{},{},{}
-2314,Chain_Mail,Chain Mail,4,65000,,3300,,55,,0,0x000654E2,63,2,16,,0,1,0,{},{},{}
-2315,Chain_Mail_,Chain Mail,4,65000,,3300,,55,,1,0x000654E2,63,2,16,,0,1,0,{},{},{}
-2316,Plate_Armor,Full Plate,4,80000,,4500,,70,,0,0x00004082,63,2,16,,40,1,0,{},{},{}
-2317,Plate_Armor_,Full Plate,4,80000,,4500,,70,,1,0x00004082,63,2,16,,40,1,0,{},{},{}
-2318,Clothes_Of_The_Lord,Lord's Clothes,4,20,,2500,,59,,1,0x00040420,63,2,16,,70,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2319,Glittering_Clothes,Glittering Jacket,4,20,,2500,,58,,1,0xFFFFFFFE,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; },{},{}
-2320,Formal_Suit,Formal Suit,4,20,,300,,40,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2321,Silk_Robe,Silk Robe,4,8000,,400,,20,,0,0x0085C7B6,63,2,16,,0,1,0,{ bonus bMdef,10; },{},{}
-2322,Silk_Robe_,Silk Robe,4,8000,,400,,20,,1,0x0085C7B6,63,2,16,,0,1,0,{ bonus bMdef,10; },{},{}
-2323,Scapulare,Scapulare,4,6500,,400,,24,,0,0x00008110,63,2,16,,0,1,0,{},{},{}
-2324,Scapulare_,Scapulare,4,6500,,400,,24,,1,0x00008110,63,2,16,,0,1,0,{},{},{}
-2325,Saint_Robe,Saint's Robe,4,54000,,600,,50,,0,0x00048530,63,2,16,,0,1,0,{ bonus bMdef,5; },{},{}
-2326,Saint_Robe_,Saint's Robe,4,54000,,600,,50,,1,0x00048530,63,2,16,,0,1,0,{ bonus bMdef,5; },{},{}
-2327,Holy_Robe,Holy Robe,4,20,,1700,,57,,0,0x00008110,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{}
-2328,Wooden_Mail,Wooden Mail,4,5500,,1000,,25,,0,0x000444A2,63,2,16,,0,1,0,{},{},{}
-2329,Wooden_Mail_,Wooden Mail,4,5500,,1000,,25,,1,0x000444A2,63,2,16,,0,1,0,{},{},{}
-2330,Tights,Tights,4,71000,,500,,27,,0,0x00080808,63,2,16,,45,1,0,{ bonus bDex,1; },{},{}
-2331,Tights_,Tights,4,71000,,500,,27,,1,0x00080808,63,2,16,,45,1,0,{ bonus bDex,1; },{},{}
-2332,Silver_Robe,Silver Robe,4,7000,,700,,23,,0,0x00810204,63,2,16,,0,1,0,{},{},{}
-2333,Silver_Robe_,Silver Robe,4,7000,,700,,23,,1,0x00810204,63,2,16,,0,1,0,{},{},{}
-2334,Mage_Coat,Mage Coat,4,20,,600,,40,,0,0x00810204,63,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2335,Thief_Clothes,Thief Clothes,4,74000,,100,,40,,0,0x02021040,63,2,16,,0,1,0,{ bonus bAgi,1; },{},{}
-2336,Thief_Clothes_,Thief Clothes,4,74000,,100,,40,,1,0x02021040,63,2,16,,0,1,0,{ bonus bAgi,1; },{},{}
-2337,Ninja_Suit,Ninja Suit,4,20,,1500,,58,,0,0x02021040,63,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{}
-2338,Wedding_Dress,Wedding Dress,4,43000,,500,,10,,0,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMdef,15; },{},{}
-2339,G_Strings,Pantie,4,1000,,100,,22,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2340,Novice_Breast,Novice Breastplate,4,89000,,500,,4,,1,0x00000001,63,2,16,,10,1,0,{},{},{}
-2341,Full_Plate_Armor,Legion Plate Armor,4,94000,,5500,,79,,0,0x00004000,63,2,16,,70,1,0,{},{},{}
-2342,Full_Plate_Armor_,Legion Plate Armor,4,102500,,5500,,79,,1,0x00004000,63,2,16,,70,1,0,{},{},{}
-2343,Robe_Of_Casting,Robe of Cast,4,124800,,1100,,40,,0,0x00810200,63,2,16,,75,1,0,{ bonus bVariableCastrate,-3; bonus bMdef,4; },{},{}
-2344,Flame_Sprits_Armor,Lucius's Fierce Armor of Volcano,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{}
-2345,Flame_Sprits_Armor_,Lucius's Fierce Armor of Volcano,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{}
-2346,Water_Sprits_Armor,Saphien's Armor of Ocean,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{}
-2347,Water_Sprits_Armor_,Saphien's Armor of Ocean,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{}
-2348,Wind_Sprits_Armor,Aebecee's Raging Typhoon Armor,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{}
-2349,Wind_Sprits_Armor_,Aebecee's Raging Typhoon Armor,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{}
-2350,Earth_Sprits_Armor,Claytos Cracking Earth Armor,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{}
-2351,Earth_Sprits_Armor_,Claytos Cracking Earth Armor,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{}
-2352,Novice_Plate,Tattered Novice Ninja Suit,4,1,,1,,25,,0,0x00000001,63,2,16,,0,0,0,{},{},{}
-2353,Odin's_Blessing,Odin's Blessing,4,30000,,2500,,53,,1,0xFFFFFFFE,63,2,16,,65,1,0,{},{},{}
-2354,Goibne's_Armor,Goibne's Armor,4,50000,,3500,,58,,0,0xFFFFFFFE,63,2,16,,54,1,0,{ bonus bVit,2; bonus bMaxHPrate,10; },{},{}
-2355,Angel's_Protection,Angelic Protection,4,10000,,600,,25,,1,0x00000001,63,2,16,,40,1,0,{ bonus bMdef,20; },{},{}
-2356,Vestment_Of_Grace,Blessed Holy Robe,4,20,,2500,,45,,1,0x00008100,63,2,16,,70,1,0,{ bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; },{},{}
-2357,Valkyrie_Armor,Valkyrian Armor,4,0,,2800,,55,,1,0xFFFFFFFE,18,2,16,,1,1,0,{ 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; },{},{}
-2358,Dress_Of_Angel,Angel's Dress,4,20,,1000,,5,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bLuk,4; },{},{}
-2359,Ninja_Suit_,Ninja Suit,4,20,,1500,,58,,1,0x02021040,63,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{}
-2360,Robe_Of_Casting_,Robe of Cast,4,124800,,1100,,40,,1,0x00810200,63,2,16,,75,1,0,{ bonus bVariableCastrate,-3; bonus bMdef,4; },{},{}
-2361,Blue_Aodai,Blue Robe,4,20,,500,,0,,0,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-2362,Red_Aodai,Red Robe,4,20,,500,,0,,0,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-2363,White_Aodai,White Robe,4,20,,500,,0,,0,0x00000001,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{}
-2364,Meteo_Plate_Armor,Meteo Plate Armor,4,20,,3000,,85,,1,0x000444A2,18,2,16,,55,1,0,{ bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; },{},{}
-2365,Orleans_Gown,Orleans's Gown,4,20,,300,,15,,1,0xFFFFFFFE,18,2,16,,55,1,0,{ bonus bVariableCastrate,15; bonus bNoCastCancel; },{},{}
-2366,Divine_Cloth,Divine Cloth,4,20,,1500,,50,,1,0xFFFFFFFE,18,2,16,,55,1,0,{ 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; },{},{}
-2367,Sniping_Suit,Sniping Suit,4,20,,750,,42,,1,0x00000800,18,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{}
-2368,Golden_Armor,Golden Armor,4,20,,2000,,4,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMdef,4; },{},{}
-2369,Freyja_Overcoat,Freyja Overcoat,4,0,,500,,12,,0,0xFFFFFFFE,63,2,16,,0,0,0,{ bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-2370,Used_Mage_Coat,Used Mage Coat,4,0,,0,,15,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAgi,1; },{},{}
-2371,G_Strings_,Pantie,4,1000,,100,,22,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-2372,Mage_Coat_,Mage Coat,4,20,,600,,40,,1,0x00810204,63,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{}
-2373,Holy_Robe_,Holy Robe,4,20,,1700,,57,,1,0x00008110,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{}
-2374,Diabolus_Robe,Diabolus Robe,4,20,,300,,57,,1,0x00098B1C,18,2,16,,55,1,0,{ bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; },{},{}
-2375,Diabolus_Armor,Diabolus Armor,4,20,,600,,79,,1,0x000654E2,18,2,16,,55,1,0,{ bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; },{},{}
-2376,Assaulter_Plate,Assaulter Plate,4,10,,0,,57,,1,0x006444A2,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2377,Elite_Engineer_Armor,Elite Engineer Armor,4,10,,0,,50,,1,0x00040420,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2378,Assassin_Robe,Assassin Robe,4,10,,0,,41,,1,0x02021040,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2379,Warlock_Battle_Robe,Warlock's Battle Robe,4,10,,0,,36,,1,0x00810204,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2380,Medic_Robe,Medic's Robe,4,10,,0,,25,,1,0x00008110,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2381,Elite_Archer_Suit,Elite Archer Suit,4,10,,0,,35,,1,0x00080808,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2382,Elite_Shooter_Suit,Elite Shooter Suit,4,10,,0,,25,,1,0x41000000,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2383,Brynhild,Brynhild,4,20,,400,,120,,0,0xFFFFFFFF,63,2,16,,94,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback; },{},{}
-2384,Spritual_Tunic,Spiritual Tunic,4,20,,0,,10,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ 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; },{},{}
-2385,Recuperative_Armor,Recuperative Armor,4,20,,0,,12,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; },{},{ heal 0,-100; }
-2386,Chameleon_Armor,Chameleon Armor,4,20,,1700,,55,,0,0x00CFFF80,18,2,16,,70,1,0,{ 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; },{},{}
-2387,Sprint_Mail,Sprint Mail,4,20,,1000,,20,,1,0x00CFFF80,18,2,16,,70,1,0,{ bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; },{},{}
-2388,Kandura,Kandura,4,20,,300,,36,,1,0x00001000,18,2,16,,70,1,0,{ bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; },{},{}
-2389,Armor_Of_Naga,Armor of Naga,4,20,,1000,,45,,1,0x00CFFF80,18,2,16,,70,1,0,{ bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-2390,Improved_Tights,Improved Tights,4,20,,400,,38,,1,0x00080808,18,2,16,,75,1,0,{ bonus bMdef,2; bonus bFlee2,3; },{},{}
-2391,Life_Link,Life Link,4,20,,3500,,75,,1,0x00004082,18,2,16,,82,1,0,{ bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; },{},{}
-2392,Old_Pant,Old Green Pantie,4,0,,0,,10,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; },{},{}
-2393,N_Adventurer's_Suit,Novice Adventurer's Suit,4,0,,0,,45,,1,0xFFFFFFFF,63,2,16,,0,0,0,{},{},{}
-2394,Krieger_Suit1,Glorious Suit,4,20,,0,,10,,0,0xFFFFFFFE,63,2,16,,81,1,0,{ bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; },{},{}
-2395,Krieger_Suit2,Glorious Popularized Suit,4,20,,0,,10,,0,0xFFFFFFFE,63,2,16,,61,1,0,{ bonus bMaxHP,600; bonus bSPrecovRate,10; },{},{}
-2396,Krieger_Suit3,Glorious Mass-Production Suit,4,20,,0,,0,,0,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMaxHP,500; },{},{}
-2397,Incredible_Coat,Incredible Event Resignation Coat,4,10,,900,,2,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{}
-2398,Sniping_Suit_M,Sniping Suit,4,20,,750,,42,,1,0x00000800,18,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{}
-2399,Dragon_Vest,Dragon Vest,4,20,,500,,20,,1,0xFFFFFFFE,18,2,16,,0,1,0,{ bonus bMdef,3; },{},{}
-//===================================================================
-// Footgears
-//===================================================================
-2401,Sandals,Sandals,4,400,,200,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{}
-2402,Sandals_,Sandals,4,400,,200,,5,,1,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{}
-2403,Shoes,Shoes,4,3500,,400,,10,,0,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{}
-2404,Shoes_,Shoes,4,3500,,400,,10,,1,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{}
-2405,Boots,Boots,4,18000,,600,,16,,0,0x416E5CEA,63,2,64,,0,1,0,{},{},{}
-2406,Boots_,Boots,4,18000,,600,,16,,1,0x416E5CEA,63,2,64,,0,1,0,{},{},{}
-2407,Chrystal_Pumps,Crystal Pumps,4,20,,100,,5,,0,0xFFFFFFFE,63,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{}
-2408,Cuffs,Shackles,4,5000,,3000,,18,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{}
-2409,Spiky_Heel,High Heels,4,8500,,600,,4,,0,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMdef,5; },{},{}
-2410,Sleipnir,Sleipnir,4,20,,3500,,40,,0,0xFFFFFFFF,63,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25; },{},{}
-2411,Grave,Greaves,4,48000,,750,,27,,0,0x00004080,63,2,64,,65,1,0,{},{},{}
-2412,Grave_,Greaves,4,54000,,750,,15,,1,0x00004080,63,2,64,,65,1,0,{},{},{}
-2413,Safty_Boots,Safety Boots,4,34000,,350,,6,,0,0x00004082,63,2,64,,30,0,0,{},{},{}
-2414,Novice_Boots,Novice Slippers,4,1,,1,,5,,0,0x00000001,63,2,64,,0,0,0,{},{},{}
-2415,Slipper,Bunny Slipper,4,34000,,300,,3,,1,0xFFFFFFFE,63,0,64,,30,1,0,{ bonus bLuk,3; bonus bMdef,3; },{},{}
-2416,Novice_Shoes,Novice Shoes,4,35000,,500,,8,,1,0x00000001,63,2,64,,40,1,0,{ bonus bMaxHPrate,5; },{},{}
-2417,Fricco_Shoes,Fricco's Shoes,4,30000,,500,,12,,0,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{}
-2418,Vidar's_Boots,Vidar's Boots,4,30000,,650,,13,,0,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{}
-2419,Goibne's_Combat_Boots,Goibne's Greaves,4,30000,,700,,13,,0,0xFFFFFFFE,63,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-2420,Angel's_Arrival,Angel's Reincarnation,4,10000,,300,,8,,1,0x00000001,63,2,64,,25,1,0,{ bonus bMaxHP,100; },{},{}
-2421,Valkyrie_Shoes,Valkyrian Shoes,4,0,,500,,13,,1,0xFFFFFFFE,18,2,64,,1,1,0,{ 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); },{},{}
-2422,High_Fashion_Sandals,High Fashion Sandals,4,24000,,200,,7,,1,0x00818314,63,2,64,,40,1,0,{ bonus bMdef,10; },{},{}
-2423,Variant_Shoes,Variant Shoes,4,20,,500,,13,,0,0xFFFFFFFE,18,2,64,,85,1,0,{ .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; },{},{}
-2424,Tidal_Shoes,Tidal Shoes,4,20,,300,,13,,1,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-2425,Black_Leather_Boots,Black Leather Boots,4,20,,500,,16,,0,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus bAgi,(getrefine()>=9?3:1); },{},{}
-2426,Shadow_Walk,Shadow Walk,4,20,,2000,,0,,0,0xFFFFFFFE,18,2,64,,75,1,0,{ bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; },{},{}
-2427,Golden_Shoes,Golden Shoes,4,20,,300,,4,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMdef,4; },{},{}
-2428,Freyja_Boots,Freyja Boots,4,0,,300,,10,,0,0xFFFFFFFE,63,2,64,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-2429,Iron_Boots01,Iron Boots,4,0,,1500,,5,,0,0x000E5CEA,63,2,64,,0,1,0,{},{},{}
-2430,Iron_Boots02,Iron Boots,4,0,,800,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{}
-2431,Valley_Shoes,Valley Shoes,4,20,,0,,10,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; },{},{}
-2432,Spiky_Heel_,High Heels,4,8500,,600,,10,,1,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMdef,5; },{},{}
-2433,Diabolus_Boots,Diabolus Boots,4,20,,250,,15,,1,0x00CFFF80,18,2,64,,0,1,0,{ bonus bMaxHP,(BaseLevel*10); },{},{}
-2434,Black_Leather_Boots_,Black Leather Boots,4,20,,500,,16,,1,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus bAgi,(getrefine()>=9?3:1); },{},{}
-2435,Battle_Greave,Battle Greaves,4,10,,0,,15,,1,0x026654E2,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2436,Combat_Boots,Combat Boots,4,10,,0,,9,,1,0x00898B1C,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2437,Battle_Boots,Battle Boots,4,10,,0,,9,,1,0x41000000,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2438,Paw_Of_Cat,Paw Of Cat,4,10,,300,,0,,0,0xFFFFFFFF,63,2,64,,80,1,0,{ bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */ },{},{}
-2439,Refresh_Shoes,Refresh Shoes,4,20,,0,,9,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; },{},{}
-2440,Sprint_Shoes,Sprint Shoes,4,20,,300,,10,,1,0x00CFFF80,18,2,64,,70,1,0,{ bonus bAgi,1; bonus bSPrecovRate,5; },{},{}
-2441,Beach_Sandal,Beach Sandals,4,20,,200,,0,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; },{},{}
-2442,Boots_Perforated,Red Stocking Boots,4,0,,0,,7,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1; },{},{}
-2443,Fish_Shoes,Fisher's Boots,4,10,,250,,0,,0,0xFFFFFFFF,63,2,64,,0,0,0,{},{},{}
-2444,Krieger_Shoes1,Glorious Shoes,4,20,,0,,0,,0,0xFFFFFFFE,63,2,64,,81,1,0,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; },{},{}
-2445,Krieger_Shoes2,Glorious Popularized Shoes,4,20,,0,,0,,0,0xFFFFFFFE,63,2,64,,61,1,0,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-2446,Krieger_Shoes3,Glorious Mass-Production Shoes,4,20,,0,,10,,0,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMaxHPrate,5; },{},{}
-2447,Military_Boots,Army Boots,4,0,,1000,,5,,0,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{}
-2448,Air_Boss,Air Boss,4,0,,500,,2,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bAgi,1; },{},{}
-2449,Variant_Shoes_M,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,18,2,64,,85,1,0,{ .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; },{},{}
-2450,Vital_Tree_Shoes,Vital Tree Shoes,4,20,,500,,16,,0,0xFFFFFFFE,18,2,64,,60,1,0,{ bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; },{},{}
-2451,Freyja_SSandal7,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-2452,Freyja_SSandal30,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-2453,Freyja_SSandal60,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-2454,Freyja_SSandal90,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-2455,Time_Keepr_Boots,Time Keeper's Boots,4,30000,,0,,17,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{}
-2456,Para_Team_Boots1,Eden Team Boots I,4,0,,0,,14,,0,0xFFFFFFFF,63,2,64,,7,0,0,{ bonus bHPrecovRate,10; bonus bSPrecovRate,2; },{},{}
-2457,Para_Team_Boots2,Eden Team Boots II,4,0,,0,,16,,0,0xFFFFFFFF,63,2,64,,26,0,0,{ bonus bHPrecovRate,12; bonus bSPrecovRate,4; },{},{}
-2458,Para_Team_Boots3,Eden Team Boots III,4,0,,0,,18,,0,0xFFFFFFFF,63,2,64,,40,0,0,{ bonus bHPrecovRate,14; bonus bSPrecovRate,6; },{},{}
-2459,Upg_Shoes,Upg Shoes,4,20,,200,,15,,1,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2460,Upg_Boots,Upg Boots,4,20,,300,,21,,1,0x416E5CEA,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2461,Upg_Greave,Upg Greaves,4,20,,400,,32,,1,0x00004080,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2462,Sleipnir_C,Sleipnir,4,20,,0,,40,,0,0xFFFFFFFF,63,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; },{},{}
-2463,Feral_Boots,Feral Boots,4,20,,0,,12,,0,0xFFFFFFFF,63,2,64,,75,0,0,{},{},{}
-2464,No_Fear_Shoes,No Fear Shoes,4,0,,0,,6,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-2465,Dance_Shoes,Dance Shoes,4,20,,300,,15,,1,0x00080000,63,2,64,,105,1,0,{ bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32; },{},{}
-2466,Training_Shoes,Training Shoes,4,20,,300,,0,,1,0xFFFFFFFF,63,2,64,,1,1,0,{},{},{}
-2467,Golden_Rod_Shoes,Golden Rod Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15; },{},{}
-2468,Aqua_Shoes,Aqua Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15; },{},{}
-2469,Crimson_Shoes,Crismons Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15; },{},{}
-2470,Forest_Shoes,Forest Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15; },{},{}
-2471,Shoes_Of_Affection,Shoes Of Affection,4,20,,300,,12,,0,0x00000100,63,2,64,,100,1,0,{ bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-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; },{},{}
-2472,Shoes_Of_Judgement,Shoes Of Judgement,4,20,,300,,12,,0,0x00000100,63,2,64,,100,1,0,{ bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150; },{},{}
-2473,Para_Team_Boots4,Eden Team Boots IV,4,0,,0,,20,,0,0xFFFFFFFF,63,2,64,,60,0,0,{ bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12; },{},{}
-2474,Lehmannza_Shoes,Lehmannza Shoes,4,20,,500,,3,,1,0xFFFFFFFF,63,2,64,,60,1,0,{ bonus bMdef,3; },{},{}
-2475,Ur_Greave,Ur's Greaves,4,20,,900,,32,,1,0x00000080,56,2,64,,100,1,0,{ bonus bMaxSP,40; .@r = getrefine(); bonus bMaxHPrate,(.@r<=7?.@r-7:1); },{},{}
-2476,Peuz_Greave,Peuz's Greaves,4,20,,900,,32,,1,0x00000080,56,2,64,,100,1,0,{ bonus bMaxSP,40; .@r = getrefine(); bonus bAgi,(.@r<=7?.@r-7:1); },{},{}
-2477,Sabah_Shoes,Sapha Shoes,4,20,,400,,18,,1,0x00001000,63,2,64,,100,1,0,{ bonus bMaxSP,30; bonus bLuk,3; },{},{}
-2478,Nab_Shoes,Nab Shoes,4,20,,400,,18,,1,0x00001000,63,2,64,,100,1,0,{ bonus bFlee,3; bonus bInt,2; },{},{}
-2479,White_Wing_Boots,White Wing Boots,4,20,,400,,18,,1,0x00000800,63,2,64,,100,1,0,{ bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; },{},{}
-2480,Black_Wing_Boots,Black Wing Boots,4,20,,400,,18,,1,0x00000800,56,2,64,,100,1,0,{ bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-2481,Rune_Boots,Rune Boots,4,20,,100,,5,,0,0xFFFFFFFF,63,2,64,,0,1,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)); },{},{}
-2482,Shoes_Of_Valor,Shoes Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ skill "AL_INCAGI",1; bonus bUseSPrate,10; },{},{}
-2483,Siege_Greave,Siege Greaves,4,10,,750,,30,,1,0x006444A2,63,2,64,,95,1,0,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2484,Siege_Boots,Siege Boots,4,10,,500,,20,,1,0x636E5CEA,63,2,64,,95,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2485,Siege_Shoes,Siege Shoes,4,10,,350,,15,,1,0x00818315,63,2,64,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2486,Shadow_Walk_,Shadow Walk,4,20,,2000,,0,,1,0xFFFFFFFE,63,2,64,,75,1,0,{ bonus bMdef,10; },{},{}
-2487,Vital_Tree_Shoes_,Vital Tree Shoes,4,20,,500,,16,,1,0xFFFFFFFE,63,2,64,,60,1,0,{ bonus bVit,2; bonus bMdef,3; },{},{}
-2488,Fricco_Shoes_,Fricco Shoes,4,30000,,500,,12,,1,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{}
-2489,Vidar's_Boots_,Vidar's Boots,4,30000,,650,,13,,1,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{}
-2491,Bangungot_Boots,Bangungot Boots of Nightmare,4,20,,600,,10,,0,0xFFFFFFFF,63,2,64,,1,1,0,{ .@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; } },{},{}
-2492,Bayani_Bangungot_Boots,Bayani Bangungot Boots of Nightmare,4,20,,600,,10,,1,0xFFFFFFFF,63,2,64,,1,1,0,{ .@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; } },{},{}
-2493,Goibne's_Combat_Boots_,Goibne's Greaves,4,30000,,700,,13,,1,0xFFFFFFFE,63,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-2494,Chrystal_Pumps_,Crystal Pumps,4,20,,100,,5,,1,0xFFFFFFFE,63,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{}
-2495,Egir_Shoes,Egir Shoes,4,200000,,300,,13,,1,0xFFFFFFFF,63,2,64,,110,1,0,{ 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; },{},{}
-2496,TE_Woe_Shoes,TE Woe Shoes,4,0,,0,,5,,0,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{}
-2497,TE_Woe_Boots,TE Woe Boots,4,0,,0,,10,,0,0x000444A2,63,2,64,,40,1,,{ bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{}
-2498,TE_Woe_Magic_Sandal,TE Woe Magic Sandal,4,0,,0,,5,,0,0x00818315,63,2,64,,40,1,,{ bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{}
-2499,Temporal_Boots,Temporal Boots,4,400,,600,,20,,0,0xFFFFFFFF,63,2,64,,10,1,,{ .@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3); },{},{}
-//===================================================================
-// Garments
-//===================================================================
-2501,Hood,Hood,4,1000,,200,,4,,0,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{}
-2502,Hood_,Hood,4,1000,,200,,4,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{}
-2503,Muffler,Muffler,4,5000,,400,,8,,0,0xFFFFFFFE,63,2,4,,0,1,0,{},{},{}
-2504,Muffler_,Muffler,4,5000,,400,,8,,1,0xFFFFFFFE,63,2,4,,0,1,0,{},{},{}
-2505,Manteau,Manteau,4,32000,,600,,13,,0,0x006654E2,63,2,4,,0,1,0,{},{},{}
-2506,Manteau_,Manteau,4,32000,,600,,13,,1,0x006654E2,63,2,4,,0,1,0,{},{},{}
-2507,Cape_Of_Ancient_Lord,Ancient Cape,4,82000,,600,,9,,0,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bAgi,1; },{},{}
-2508,Ragamuffin_Cape,Ragamuffin Manteau,4,56000,,500,,4,,0,0xFFFFFFFE,63,2,4,,0,1,0,{ bonus bUnbreakableGarment; bonus bMdef,10; },{},{}
-2509,Clack_Of_Servival,Survivor's Manteau,4,20000,,550,,10,,0,0x00810204,63,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{}
-2510,Novice_Hood,Somber Novice Hood,4,1,,1,,4,,0,0x00000001,63,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,20; },{},{}
-2511,Skeleton's_Cape,Skeleton Manteau,4,5000,,700,,1,,0,0xFFFFFFFE,63,2,4,,75,1,0,{ bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; },{},{}
-2512,Novice_Manteau,Novice Manteau,4,50000,,500,,7,,1,0x00000001,63,2,4,,40,1,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2513,Celestial_Robe,Heavenly Maiden Robe,4,20,,500,,18,,1,0xFFFFFFFE,63,2,4,,80,1,0,{},{},{}
-2514,Pauldron,Pauldron,4,20,,800,,25,,1,0x000654E2,63,2,4,,80,1,0,{},{},{}
-2515,Wing_Of_Eagle,Eagle Wing,4,20000,,300,,12,,1,0x00810204,63,2,4,,85,1,0,{},{},{}
-2516,Falcon_Robe,Falcon Muffler,4,30000,,400,,8,,0,0xFFFFFFFE,63,2,4,,65,1,0,{ bonus bFlee,15; bonus bFlee2,5; },{},{}
-2517,Vali's_Manteau,Vali's Manteau,4,30000,,600,,13,,0,0xFFFFFFFE,63,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2518,Morpheus's_Shawl,Morpheus's Shawl,4,30000,,600,,8,,0,0xFFFFFFFE,63,2,4,,33,1,0,{ bonus bMaxSPrate,10; bonus bMdef,3; },{},{}
-2519,Morrigane's_Manteau,Morrigane's Manteau,4,30000,,600,,9,,0,0xFFFFFFFE,63,2,4,,61,1,0,{ bonus bLuk,2; bonus bFlee2,8; },{},{}
-2520,Goibne's_Shoulder_Arms,Goibne's Spaulders,4,30000,,700,,11,,0,0xFFFFFFFE,63,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{}
-2521,Angel's_Warmth,Angelic Cardigan,4,10000,,400,,5,,1,0x00000001,63,2,4,,20,1,0,{ bonus bHPrecovRate,5; },{},{}
-2522,Undershirt,Undershirt,4,20000,,150,,5,,0,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,1; },{},{}
-2523,Undershirt_,Undershirt,4,20000,,150,,5,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,1; },{},{}
-2524,Valkyrie_Manteau,Valkyrian Manteau,4,0,,500,,10,,1,0xFFFFFFFE,18,2,4,,0,1,0,{ 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); },{},{}
-2525,Cape_Of_Ancient_Lord_,Ancient Cape,4,82000,,600,,9,,1,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bAgi,1; },{},{}
-2526,Dragon_Scale_Coat,Coat of Dragon Scale,4,20,,10,,14,,0,0xFFFFFFFF,63,2,4,,50,1,0,{ bonus bMaxHP,300; },{},{}
-2527,Dragon_Breath,Dragon Breath,4,20,,600,,16,,1,0xFFFFFFFE,18,2,4,,48,1,0,{ bonus2 bSubRace,RC_Dragon,15; },{},{}
-2528,Wool_Scarf,Wool Scarf,4,20,,500,,11,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bMdef,4; },{},{}
-2529,Rider_Insignia,Rider Insignia,4,20,,500,,13,,0,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2530,Rider_Insignia_,Rider Insignia,4,20,,500,,13,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2531,Ulfhedinn,Ulfhedinn,4,20,,700,,13,,1,0x000654E2,18,2,4,,70,1,0,{ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; },{},{}
-2532,Mithril_Magic_Cape,Mithril Magic Cape,4,20,,400,,8,,1,0x00098B1C,18,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{}
-2533,Freyja_Cape,Freyja Cape,4,0,,200,,10,,0,0xFFFFFFFE,63,2,4,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; },{},{}
-2534,Ruffler,Ruffler,4,20,,0,,10,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; },{},{}
-2535,Cloak_Of_Survival_C,Cloak Of Survival,4,1,,0,,5,,0,0x00810204,63,2,4,,0,0,0,{ bonus bVit,10; bonus bMdef,10; },{},{}
-2536,Skin_Of_Ventus,Skin of Ventus,4,20,,250,,7,,1,0xFFFFFFFE,63,2,4,,60,1,0,{ bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; },{},{}
-2537,Diabolus_Manteau,Diabolus Manteau,4,20,,250,,15,,1,0x00CFFF80,18,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{}
-2538,Commander_Manteau,Captain's Manteau,4,10,,0,,28,,1,0x026654E2,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2539,Commander_Manteau_,Commander's Manteau,4,10,,0,,20,,1,0x00898B1C,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2540,Sheriff_Manteau,Sheriff's Manteau,4,10,,0,,20,,1,0x41000000,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-2541,Asprika,Asprika,4,20,,400,,40,,0,0xFFFFFFFF,63,2,4,,94,0,0,{ 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; },{},{}
-2542,Flame_Manteau,Flame Manteau of Naght Sieger,4,20,,700,,16,,1,0xFFFFFFFE,18,2,4,,70,1,0,{ bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; },{},{}
-2543,Sylphid_Manteau,Sylphid Manteau,4,20,,0,,9,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; },{},{}
-2544,Leather_Of_Tendrilion,Leather of Tendrilion,4,20,,300,,14,,1,0x00CFDF80,18,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; },{},{}
-2545,Musika,Musika,4,20,,500,,10,,1,0x00008100,18,2,4,,70,1,0,{ bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; },{},{}
-2546,Beach_Manteau,Beach Manteau,4,20,,600,,0,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; },{},{}
-2547,Cheap_Running_Shirts,Cheap Undershirt,4,0,,0,,8,,0,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; },{},{}
-2548,Muffler_C,Neo Muffler,4,0,,0,,5,,0,0xFFFFFFFE,18,2,4,,95,0,0,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; },{},{}
-2549,Krieger_Muffler1,Glorious Muffler,4,20,,0,,3,,0,0xFFFFFFFE,63,2,4,,81,1,0,{ bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-2550,Fisher's_Muffler,Fisher's Muffler,4,20,,200,,0,,0,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{}
-2551,Rider_Insignia_M,Crest of the Rider,4,20,,500,,4,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{}
-2552,Mithril_Magic_Cape_M,Mithril Magic Manteau,4,20,,400,,3,,1,0x00098B1C,18,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{}
-2553,Dragon_Manteau,Dragon Manteau,4,20,,1000,,14,,1,0xFFFFFFFE,18,2,4,,0,1,0,{ bonus bAgi,1; bonus bMdef,5; },{},{}
-2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,25,,1,0xFFFFFFFE,18,2,4,,90,1,0,{ bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; },{},{}
-2555,Freyja_SScarf7,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2556,Freyja_SScarf30,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2557,Freyja_SScarf60,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2558,Freyja_SScarf90,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{}
-2559,Time_Keepr_Manteau,Time Keeper's Manteau,4,30000,,0,,9,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2560,Para_Team_Manteau,Eden Team Manteau I,4,0,,0,,14,,0,0xFFFFFFFF,63,2,4,,7,0,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2561,Upg_Hood,Upg Hood,4,0,,100,,9,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2562,Upg_Muffler,Upg Muffler,4,20,,200,,13,,1,0xFFFFFFFE,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2563,Upg_Manteau,Upg Manteau,4,20,,300,,18,,1,0x006654E2,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{}
-2564,Feral_Tail,Feral Tail,4,20,,0,,16,,0,0xFFFFFFFF,63,2,4,,75,0,0,{},{},{}
-2565,Beach_Towel,Beach Towel,4,20,,100,,2,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,3; bonus bFlee,7; },{},{}
-2566,Half_Asprika,Half Asprika,4,20,,0,,20,,0,0xFFFFFFFF,63,2,4,,47,0,0,{ 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; },{},{}
-2567,Academy_Manteau,Academy Manteau,4,0,,600,,3,,1,73,7,2,4,,0,1,0,{},{},{}
-2568,Muffler_Of_Roki,Loki's Muffler,4,20,,400,,10,,0,0xFFFFFFFF,63,2,4,,100,0,0,{ bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5; },{},{}
-2569,Shawl_Of_Affection,Shawl Of Affection,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,0,{ bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC; },{},{}
-2570,Shawl_Of_Judgement,Shawl Of Judgement,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,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; },{},{}
-2571,Para_Team_Manteau2,Eden Team Manteau II,4,0,,0,,18,,0,0xFFFFFFFF,63,2,4,,60,0,0,{ bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2572,Katabart_Sholder,Katabart Sholder,4,20,,3000,,4,,1,0xFFFFFFFF,63,2,4,,70,1,0,{},{},{}
-2573,Archangel_Wing,Archangel Wings,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,0,1,1,{},{},{}
-2574,Ur_Manteau,Ur's Manteau,4,20,,600,,20,,0,0x00000080,56,2,4,,100,1,0,{ bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10; },{},{}
-2575,Peuz_Manteau,Peuz's Manteau,4,20,,600,,16,,0,0x00000080,56,2,4,,100,1,0,{ bonus bFlee,10; bonus bCritical,10; },{},{}
-2576,Bravery_Bag,Adventurer's Backpack,4,0,,200,,20,,1,0xFFFFFFFF,63,2,4,,0,1,2,{ 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; } } },{},{}
-2577,Sabah_Hood,Sapha Hood,4,20,,100,,13,,0,0x00001000,63,2,4,,100,1,0,{ bonus bFlee,12; bonus bCritical,getrefine(); },{},{}
-2578,Nab_Hood,Nab Hood,4,20,,100,,13,,0,0x00001000,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2; },{},{}
-2579,Magic_Stole,Magic Stole,4,20,,700,,8,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3); },{},{}
-2580,White_Wing_Manteau,White Wing Manteau,4,20,,200,,15,,0,0x00000800,63,2,4,,100,1,0,{ bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }"; },{},{}
-2581,Black_Wing_Manteau,Black Wing Manteau,4,20,,200,,15,,0,0x00000800,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6; },{},{}
-2582,Salvage_Cape,Salvage Cape,4,56000,,400,,1,,0,0x00000300,63,2,4,,130,1,0,{ skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100; },{},{ heal 0,-1200; }
-2583,Holy_Cape,Holy Cape,4,20,,100,,5,,1,0xFFFFFFFF,63,2,4,,50,1,0,{ bonus bDex,-5; bonus bMdef,5; },{},{}
-2584,Wanderer_Outer,Wanderer Outer,4,20,,500,,8,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{}
-2585,Muffler_Of_Valor,Muffler Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus bSPrecovRate,10; },{},{}
-2586,Siege_Manteau,Siege Manteau,4,10,,600,,32,,1,0xFFFFFFFE,63,2,4,,95,1,0,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2587,Siege_Muffler,Siege Muffler,4,10,,400,,15,,1,0xFFFFFFFF,63,2,4,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-2588,Ragamuffin_Cape_,Ragamuffin Cape,4,56000,,500,,4,,1,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bMdef,10; },{},{}
-2589,Fallen_Angel_Wing,Fallen Angel Wing,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,0,1,3,{ 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; },{},{}
-2590,Buwaya_Cloth,Buwaya Sack Cloth,4,20,,200,,8,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ .@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; },{},{}
-2591,Bayani_Buwaya_Cloth,Bayani Buwaya Sack Cloth,4,20,,200,,8,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@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; },{},{}
-2592,Boss_Brownie_Manteau,Boss Brownie Manteau,4,20,,100,,3,,1,0xFFFFFFFF,63,2,4,,50,1,0,{},{},{}
-2593,Flow_Manteau,Flow Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{},{},{}
-2594,Wrapping_Manteau,Wrapping Manteau,4,20,,100,,0,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{}
-2597,Scarlet_Poncho,Scarlet Poncho,4,0,,500,,10,,1,0xFFFFFFFF,63,2,4,,,1,0,{ bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */ },{},{}
-2598,Ramor_Manteau,Ramor Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/ },{},{}
-2599,Goibne's_Shoulder_Arms_,Goibne's Spaulders,4,30000,,700,,11,,1,0xFFFFFFFE,63,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{}
-//===================================================================
-// Accessories
-//===================================================================
-2601,Ring,Ring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bStr,2; },{},{}
-2602,Earring,Earring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bInt,2; },{},{}
-2603,Necklace,Necklace,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bVit,2; },{},{}
-2604,Glove,Glove,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bDex,2; },{},{}
-2605,Brooch,Brooch,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bAgi,2; },{},{}
-2607,Clip,Clip,4,30000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{}
-2608,Rosary,Rosary,4,15000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bMdef,5; bonus bLuk,2; },{},{}
-2609,Skul_Ring,Skull Ring,4,10000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2610,Gold_Ring,Gold Ring,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2611,Silver_Ring,Silver Ring,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2612,Flower_Ring,Flower Ring,4,1500,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2613,Diamond_Ring,Diamond Ring,4,45000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2614,An_Eye_Of_Dullahan,Eye of Dullahan,4,90000,,100,,0,,0,0xFFFFFFFE,63,2,136,,50,0,0,{ bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; },{},{}
-2615,Safety_Ring,Safety Ring,4,75000,,100,,5,,0,0xFFFFFFFE,63,2,136,,40,0,0,{ bonus bMdef,5; },{},{}
-2616,Critical_Ring,Critical Ring,4,75000,,100,,0,,0,0xFFFFFFFE,63,2,136,,40,0,0,{ bonus bCritical,5; },{},{}
-2617,Mitten_Of_Presbyter,Celebrant's Mitten,4,2,,100,,1,,0,0xFFFFFFFE,63,2,136,,35,0,0,{ bonus bInt,1; },{},{}
-2618,Matyr's_Flea_Guard,Matyr's Leash,4,2,,100,,1,,0,0xFFFFFFFE,63,2,136,,35,0,0,{ bonus bAgi,1; },{},{}
-2619,Thimble_Of_Archer,Bow Thimble,4,10000,,100,,0,,0,0x00080808,63,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{}
-2620,Ring_Of_Rogue,Rogue's Treasure,4,10000,,100,,0,,0,0x02021040,63,2,136,,70,0,0,{ if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } },{},{}
-2621,Ring_,Ring,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bStr,1; },{},{}
-2622,Earring_,Earring,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bInt,1; },{},{}
-2623,Necklace_,Necklace,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bVit,1; },{},{}
-2624,Glove_,Glove,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bDex,1; },{},{}
-2625,Brooch_,Brooch,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bAgi,1; },{},{}
-2626,Rosary_,Rosary,4,15000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bLuk,1; },{},{}
-2627,Belt,Belt,4,20000,,1200,,0,,1,0xFFFFFFFF,63,2,136,,25,0,0,{},{},{}
-2628,Novice_Armlet,Novice Armlet,4,400,,200,,0,,1,0x00000001,63,2,136,,0,0,0,{},{},{}
-2629,Magingiorde,Megingjard,4,20,,8000,,2,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10; },{},{}
-2630,Brysinggamen,Brisingamen,4,20,,1500,,1,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6; },{},{}
-2631,First_Age_Ring,Celebration Ring,4,1,,10,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,5; },{},{}
-2632,Korean_Trinket,Korean Trinket,4,125000,,100,,1,,0,0xFFFFFFFE,63,2,136,,65,0,0,{ bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{}
-2633,Jade_Ring,Jade Ring,4,204000,,100,,0,,0,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bStr,2; bonus bInt,1; },{},{}
-2634,Bridegroom_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,1,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; },{},{}
-2635,Bride_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,0,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; },{},{}
-2636,Gold_Ring_,Gold Christmas Ring,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bLuk,1; },{},{}
-2637,Silver_Ring_,Silver Christmas Ring,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bLuk,1; },{},{}
-2638,Exorcize_Sachet,Sacred Incense,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,1; bonus bLuk,1; },{},{}
-2639,Purification_Sachet,Occult Incense,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; bonus bAgi,1; },{},{}
-2640,Kafra_Ring,Kafra Ring,4,40000,,200,,1,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; },{},{}
-2641,Fashionable_Sack,Fashion Hip Sack,4,20,,700,,0,,0,0x00040420,63,2,136,,50,0,0,{ bonus bStr,2; },{},{}
-2642,Serin's_Gold_Ring,Serin's Gold Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2643,Serin's_Gold_Ring_,Serin's Gold Ring,4,45000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2644,The_Sign_,The Sign,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; },{},{}
-2645,Moonlight_Ring,Moonlight Ring,4,40000,,200,,0,,0,0x02021040,63,2,136,,60,0,0,{ bonus bMdef,2; },{},{}
-2646,Bunch_Of_Carnation,Bunch of Carnations,4,2,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{}
-2647,Nile_Rose,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,5; },{},{}
-2648,Morpheus's_Ring,Morpheus's Ring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{}
-2649,Morpheus's_Armlet,Morpheus's Bracelet,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{}
-2650,Morrigane's_Belt,Morrigane's Belt,4,30000,,200,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bBaseAtk,5; bonus bCritical,3; },{},{}
-2651,Morrigane's_Pendant,Morrigane's Pendant,4,30000,,200,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bStr,2; bonus bCritical,3; },{},{}
-2652,Cursed_Lucky_Brooch,Goddess of Fortune's Cursed Brooch,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,40,0,0,{ bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; },{},{}
-2653,Sacrifice_Ring,Sacrifice Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,90,0,0,{},{},{}
-2654,Shinobi's_Sash,Shinobi Sash,4,20000,,300,,1,,0,0x02021040,63,2,136,,30,0,0,{ bonus bStr,1; bonus bAgi,1; bonus bMdef,1; },{},{}
-2655,Bloody_Iron_Ball,Bloodied Shackle Ball,4,50000,,4000,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{},{},{}
-2656,Hyper_Changer,Armor Charm,4,20000,,1000,,1,,0,0x000654E2,63,2,136,,1,0,0,{ bonus bMaxHP,50; },{},{}
-2657,Lab_Passport,Laboratory Permit,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{}
-2658,Nile_Rose_,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{}
-2659,Vesper_Core01,Vesper Core 01,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-2660,Vesper_Core02,Vesper Core 02,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{}
-2661,Vesper_Core03,Vesper Core 03,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{}
-2662,Vesper_Core04,Vesper Core 04,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{}
-2663,Gauntlet_Of_Accuracy,Gauntlet of Hit,4,20,,900,,0,,0,0xFFFFFFFF,63,2,136,,75,0,0,{ bonus bHit,15; bonus bStr,1; },{},{}
-2664,Scarf_Belt,Belcarf,4,20,,200,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bDex,2; bonus bInt,1; },{},{}
-2665,Ring_Of_Exorcism,Exorcising Ring,4,20,,500,,0,,0,0x00008110,63,2,136,,60,0,0,{ bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; },{},{}
-2666,Lamp_Of_Hope,Lantern of Hope,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; },{},{}
-2667,Glove_Of_Archer,Renown Archer's Gloves,4,20,,300,,0,,0,0xFFFFFFFE,63,2,136,,60,0,0,{ bonus bHit,5; bonus bCritical,5; bonus bDex,1; },{},{}
-2668,Women's_Glory,Woman Glory,4,0,,500,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3; },{},{}
-2669,Golden_Necklace_,RJC Necklace,4,30000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{}
-2670,Ring_Of_Longing,Ring of Longing,4,20,,100,,1,,0,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bFlee,5; },{},{}
-2671,Thimble_Of_Archer_,Bow Thimble,4,10000,,100,,0,,1,0x00080808,63,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{}
-2672,Anniversary_Ring,3rd Anniversary Celebration Ring,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5; },{},{}
-2673,Shining_Ring,Warrior's Shining Ring,4,0,,100,,0,,0,0xFFFFFFFE,63,2,136,,48,0,0,{ bonus bBaseAtk,10; bonus bSPrecovRate,3; },{},{}
-2674,Honor_Ring,Ring of Honor,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{}
-2675,Lord_Ring,Lord Ring,4,0,,10,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,3; },{},{}
-2676,Hunter_Earring,Hunter's Earring,4,20,,300,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddMonsterDropItem,7618,100; },{},{}
-2677,Spiritual_Ring,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{}
-2678,Ring_Of_Flame_Lord,Ring Of Flame Lord,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,0,0,0,{ 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; },{},{}
-2679,Ring_Of_Resonance,Ring Of Resonance,4,20,,100,,2,,0,0x00CFFF80,18,2,136,,0,0,0,{ 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; },{},{}
-2680,Lesser_Elemental_Ring,Lesser Elemental Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ 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; },{},{}
-2681,Republic_Ring,Republic Anniversary Ring,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{}
-2682,Ring_Of_Water,Ring of Water,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Water,5; },{},{}
-2683,Ring_Of_Fire,Ring of Fire,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Fire,5; },{},{}
-2684,Ring_Of_Wind,Ring of Wind,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Wind,5; },{},{}
-2685,Ring_Of_Earth,Ring of Earth,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Earth,5; },{},{}
-2686,Elven_Ears_C,Elven Ears,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-2687,Steel_Flower_C,Steel Flower,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{ bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30; },{},{}
-2688,Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCriticalRate,10; },{},{}
-2689,Earring_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bInt,3; },{},{}
-2690,Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{}
-2691,Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{}
-2692,Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{}
-2693,Brooch_C,Brooch,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/ },{},{}
-2694,Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; bonus bLuk,4; },{},{}
-2695,Safety_Ring_C,Safety Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; bonus bDef,5; /*Gold PC Room bonus bAllStats,1;*/ },{},{}
-2696,Vesper_Core01_C,Vesper Core 01,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-2697,Vesper_Core02_C,Vesper Core 02,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{}
-2698,Vesper_Core03_C,Vesper Core 03,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{}
-2699,Vesper_Core04_C,Vesper Core 04,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{}
-2700,Red_Silk_Seal,Red Silk Seal,4,20,,100,,0,,0,0x00004082,18,2,136,,60,0,0,{},{},{}
-2701,Orleans_Glove,Orleans's Glove,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{}
-2702,Bison_Horn,Bison Horn,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bAgi,2; },{},{}
-2703,Expert_Ring,Expert Ring,4,20,,150,,0,,1,0xFFFFFFFE,18,2,136,,50,0,0,{ bonus bDelayRate,-5; bonus bUseSPrate,5; },{},{}
-2704,Golden_Accessory,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,4; },{},{}
-2705,Golden_Accessory2,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddMonsterDropItem,12018,500; },{},{}
-2706,Handcuff,Arrest Handcuffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2707,Gusli,GUSLI,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2708,Chinese_Handicraft,Chinese Handicraft,4,0,,50,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAutoSpell,"MG_FIREBOLT",5,50; },{},{}
-2709,5_Anniversary_Coin,5th Anniversary Coin,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{}
-2710,Bloody_Iron_Ball_C,Bloody Iron Ball,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bBaseAtk,30; },{},{}
-2711,Spiritual_Ring_C,Spiritual Ring,4,1,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,2; },{},{}
-2712,Ragnarok_Limited_Ed,Ragnarok Limited Edition,4,0,,300,,0,,0,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bVit,3; bonus bAgi,3; bonus bLuk,3; },{},{}
-2713,Certificate_TW,Certificate,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2714,Marvelous_Pandent,Marvelous Pendant,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2715,Skul_Ring_,Skull Ring,4,10000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bSubRace,RC_Undead,1; },{},{}
-2716,Librarian_Glove,Librarian Glove,4,20,,100,,0,,1,0x00810200,63,2,136,,80,0,0,{ bonus bMaxSP,20; },{},{}
-2717,Pocket_Watch_,Pocket Watch,4,20,,200,,0,,0,0x00010204,63,2,136,,80,0,0,{},{},{}
-2718,Lunatic_Brooch,Lunatic Brooch,4,20,,200,,0,,1,0x00080808,63,2,136,,65,0,0,{},{},{}
-2719,Iron_Wrist,Iron Wrist,4,20,,700,,1,,0,0x000444A2,63,2,136,,50,0,0,{ bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; },{},{}
-2720,Medal_Swordman,Medal of Honor,4,20,,0,,1,,0,0x00404082,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; },{},{}
-2721,Medal_Thief,Medal of Honor,4,20,,0,,1,,0,0x02021040,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; },{},{}
-2722,Medal_Acolyte,Medal of Honor,4,20,,0,,1,,0,0x00008110,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; },{},{}
-2723,Medal_Mage,Medal of Honor,4,20,,0,,1,,0,0x00810204,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; },{},{}
-2724,Medal_Archer,Medal of Honor,4,20,,0,,1,,0,0x00080808,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{}
-2725,Medal_Merchant,Medal of Honor,4,20,,0,,1,,0,0x00040420,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; },{},{}
-2726,Icarus_Wing,Icarus Wings,4,20,,100,,0,,0,0x00000800,18,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{}
-2727,Bowman_Scarf,Bowman Scarf,4,20,,200,,0,,0,0x00000800,18,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{}
-2728,Cursed_Hand,Cursed Hand,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; },{},{}
-2729,Diabolus_Ring,Diabolus Ring,4,20,,50,,0,,1,0x00CFFF80,18,2,136,,0,0,0,{ bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{}
-2730,Morroc_Seal,Seal of Continental Guard,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bMaxHP,50; bonus bAspdRate,3; },{},{}
-2731,Morroc_Charm_Stone,Rune Spellstone,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bMaxSP,50; bonus bVariableCastrate,-1; },{},{}
-2732,Morroc_Ring,Death Loop,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bCritical,5; },{},{}
-2733,Medal_Gunner,Sheriff Badge,4,20,,0,,1,,0,0x41000000,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{}
-2734,Directive_A,Directive,4,0,,0,,1,,0,0x00000001,63,2,136,,0,0,0,{},{},{}
-2735,Directive_B,Directive,4,0,,0,,1,,0,0x00000001,63,2,136,,0,0,0,{},{},{}
-2736,Navel_Ring,Navel Ring,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bDex,3; bonus bLuk,3; bonus bMdef,2; },{},{}
-2737,Foot_Ring,Foot Ring,4,20,,150,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bVit,3; bonus bMaxHPrate,10; },{},{}
-2738,Shiny_Coin,Shiny Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; },{},{}
-2739,Ordinary_Coin,Ordinary Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{}
-2740,Rusty_Coin,Rusty Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; },{},{}
-2741,All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{}
-2742,Lucky_Clip,Lucky Clip,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bDropAddRace,RC_All,50; },{},{}
-2743,Angelic_Ring,Angelic Ring,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,70,0,0,{ 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; }"; },{},{}
-2744,Sprint_Ring,Sprint Ring,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,70,0,0,{ bonus bVariableCastrate,-10; bonus bDelayRate,5; },{},{}
-2745,Pinguicula_Corsage,Pinguicula Corsage,4,20,,200,,0,,1,0x00CFFF80,18,2,136,,70,0,0,{ bonus bMdef,2; bonus bMaxSP,25; },{},{}
-2746,Cold_Heart,Cold Heart,4,20,,100,,1,,0,0x00001000,18,2,136,,80,0,0,{ bonus bAgi,3; },{},{}
-2747,Black_Cat,Black Cat,4,20,,100,,1,,0,0x00020000,18,2,136,,80,0,0,{ bonus bDex,3; },{},{}
-2748,Cursed_Star,Cursed Star,4,20,,200,,0,,0,0x00080808,18,2,136,,84,0,0,{ bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; },{},{ heal -300,0; }
-2749,Linen_Glove,Linen Glove,4,20,,120,,1,,1,0x00CFFF80,18,2,136,,90,0,0,{ bonus bMdef,2; bonus bAgi,2; bonus bDex,1; },{},{}
-2750,Summer_Night_Dream,Summer Night Dream,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ /* skill "ALL_DREAM_SUMMERNIGHT",1; */ },{},{}
-2751,Academy_Badge,Academy Of Badge,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } },{},{}
-2752,Praxinus_C,Praccsinos,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; },{},{}
-2753,Beholder_Ring,Beholder Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Formless,15; },{},{}
-2754,Hallow_Ring,Hallow Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Undead,15; },{},{}
-2755,Clamorous_Ring,Clamorous Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Brute,15; },{},{}
-2756,Chemical_Ring,Chemical Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Plant,15; },{},{}
-2757,Insecticide_Ring,Insecticide Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Insect,15; },{},{}
-2758,Fisher_Ring,Fischer Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Fish,15; },{},{}
-2759,Decussate_Ring,Decussate Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Demon,15; },{},{}
-2760,Bloody_Ring,Bloody Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_DemiHuman,15; },{},{}
-2761,Satanic_Ring,Satanic Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Angel,15; },{},{}
-2762,Dragoon_Ring,Dragon Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Dragon,15; },{},{}
-2763,Skul_Ring_C,Neo Skull Ring,4,0,,0,,0,,0,0xFFFFFFFE,18,2,136,,95,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1; },{},{}
-2764,Small_Fishing_Rod,Small Fishing Rod,4,10,,250,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2765,Novice_Figure,Novice Figure,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; },{},{}
-2766,Swordman_Figure,Swordman Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; },{},{}
-2767,Acolyte_Figure,Acolyte Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; },{},{}
-2768,Mage_Figure,Mage Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; },{},{}
-2769,Archer_Figure,Archer Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; },{},{}
-2770,Thief_Figure,Thief Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; },{},{}
-2771,Merchant_Figure,Merchant Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; },{},{}
-2772,Krieger_Ring1,Glorious Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,81,0,0,{ 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; },{},{}
-2773,Krieger_Ring2,Glorious Mass-Production Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bAllStats,2; },{},{}
-2774,Krieger_Ring3,Glorious Popularized Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{}
-2775,Lure,Lure,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2776,Cool_Towel,Adventurer's Trusty Towel,4,20,,100,,,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{ sc_start SC_SUMMER,INFINITE_TICK,0; },{ sc_end SC_SUMMER; }
-2777,Shaman_Ring,Shaman Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bMaxHP,50; bonus bSPrecovRate,3; },{},{}
-2778,Shaman_Earing,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bInt,2; },{},{}
-2779,Dark_Knight_Belt,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,2; bonus bAgi,1; },{},{}
-2780,Dark_Knight_Glove,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,80,0,0,{ autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-2781,Aumdura's_Grace,Aumdura's Benefit,4,0,,100,,1,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,1; },{},{}
-2782,Ring_Of_Wise_King,Ring of the Ancient Wise King,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,50; bonus bMaxSP,20; },{},{}
-2783,Eyes_Stone_Ring,Eye Stone Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,70,0,0,{ bonus bCritical,2; bonus bMaxSP,25; },{},{}
-2784,Oh_Holy_Night,Christmas Musicbox,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ skill "ALL_WEWISH",1; },{},{}
-2785,Orleans_Glove_M,Orlean's Gloves,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{}
-2786,Spiritual_Ring_M,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{}
-2787,Waterdrop_Brooch,Waterdrop Brooch,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,1,0,0,{ bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5; },{},{}
-2788,Bradium_Earing,Bradium Earring,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bInt,1; bonus bDex,1; bonus bMatk,5; },{},{}
-2789,Bradium_Ring,Bradium Ring,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5; },{},{}
-2790,Bradium_Brooch,Bradium Brooch,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4; },{},{}
-2791,Just_Got_Fish,Fresh Fish,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bHit,3; },{},{}
-2792,Ring_Of_Flame_Lord_I,Ring of Flame Lord,4,0,,0,,0,,0,0x00CFFF80,18,2,136,,0,0,0,{ 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; },{},{}
-2793,Ring_Of_Resonance_I,Ring of Resonance,4,0,,0,,2,,0,0x00CFFF80,18,2,136,,0,0,0,{ 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; },{},{}
-2794,Magic_Stone_Ring,Magic Stone Ring,4,0,,0,,0,,1,0x00000080,63,2,136,,99,0,0,{ bonus bStr,2; },{},{}
-2795,Green_Apple_Ring,Green Apple Ring,4,0,,0,,0,,0,0xFFFFFFFE,63,2,136,,99,0,0,{ if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); } },{},{}
-2796,Magical_Stone,Rocks,4,0,,200,,0,,0,0x00810204,63,2,136,,99,0,0,{ bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; },{},{}
-2797,Magical_Stone_,Rocks,4,0,,200,,0,,0,0x00810204,63,2,136,,99,0,0,{ bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; },{},{}
-2798,Will_Of_Exhausted_Angel,Will Of Exhausted Angel,4,0,,200,,0,,0,0x00008100,63,2,136,,99,0,0,{ if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } },{},{}
-2799,Kuirpenring,Kuirpenring,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,1; },{},{}
-2800,Accelerator,Accelerator,4,100000,,100,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,2; },{},{}
-2801,Hovering_Booster,Hovering Booster,4,100000,,2000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,1; },{},{}
-2802,Suicidal_Device,Suicidal Device,4,500000,,1000,,0,,1,0x00000400,56,2,136,,99,0,0,{},{},{}
-2803,Shape_Shifter,Shape Shifter,4,100000,,500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bInt,3; },{},{}
-2804,Cooling_Device,Cooling Device,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2805,Mag_Field_Generator,Magnetic Field Generator,4,100000,,6000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2806,Barrier_Builder,Barrier Builder,4,150000,,8000,,3,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2807,Repair_Kit,Repair Kit,4,200000,,400,,0,,1,0x00000400,56,2,136,,99,0,0,{},{},{}
-2808,Camouflage_Generator,Camouflague Generator,4,250000,,1000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,3; },{},{}
-2809,High_Quality_Cooler,High Quality Cooler,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2810,Special_Cooler,Special Cooler,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{}
-2811,Freyja_SBracelet7,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{}
-2812,Freyja_SBracelet30,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{}
-2813,Freyja_SBracelet60,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{}
-2814,Freyja_SBracelet90,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{}
-2815,Th_Ring_Of_Water,Ring Of Water,4,20,,10,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bMdef,2; },{},{}
-2816,Radar_Ring1,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400; },{},{}
-2817,Radar_Ring2,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400; },{},{}
-2818,Radar_Ring3,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400; },{},{}
-2819,Swordman_Manual,Swordsman Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; },{},{}
-2820,Thief_Manual,Thief Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; },{},{}
-2821,Acolyte_Manual,Acolyte Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; },{},{}
-2822,Archer_Manual,Archer Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; },{},{}
-2823,Merchant_Manual,Merchant Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; },{},{}
-2824,Mage_Manual,Mage Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; },{},{}
-2825,Shaman_EaringB,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bInt,2; },{},{}
-2826,Dark_Knight_BeltB,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bDex,2; bonus bAgi,1; },{},{}
-2827,Dark_Knight_GloveB,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-2828,Upg_Clip,Upg Clip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bMaxSP,50; bonus bMaxHPrate,3; },{},{}
-2829,Greed_Clip,Greed Clip,4,0,,0,,0,,0,0xFFFFFFFE,63,2,136,,10,0,0,{ skill "BS_GREED",1; },{},{}
-2830,Magingiorde_C,Megingjard,4,20,,0,,2,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,40; bonus bMdef,7; },{},{}
-2831,Brysinggamen_C,Brisingamen,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5; },{},{}
-2832,Freyja_Ring,Freyja's Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{}
-2833,Odin's_Recall,Odin's Recall,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; skill "ALL_ODINS_RECALL",1; },{},{}
-2834,F_All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{}
-2835,F_Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCritical,10; },{},{}
-2836,F_Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{}
-2837,F_Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; },{},{}
-2838,F_Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{}
-2839,F_Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{}
-2840,F_Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bLuk,4; bonus bMdef,5; },{},{}
-2841,Caracas_Ring,Caracas Ring,4,0,,0,,2,,0,0xFFFFFFFE,63,2,136,,99,0,0,{ bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; },{},{}
-2842,F_Earing_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bInt,3; },{},{}
-2843,Gold_Trickle,Gold Trickle,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,75,0,0,{ bonus bMaxSP,50; },{},{}
-2844,El_Dicastes_Light,Light Of El Discastes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,80,0,0,{ skill "RETURN_TO_ELDICASTES",1; },{},{}
-2845,No_Fear_Belt,No Fear Belt,4,0,,0,,2,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bMdef,2; },{},{}
-2846,E_All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{}
-2847,E_Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCritical,10; },{},{}
-2848,E_Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{}
-2849,E_Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; },{},{}
-2850,E_Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{}
-2851,E_Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{}
-2852,E_Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bLuk,4; bonus bMdef,5; },{},{}
-2853,Telekinetic_Orb,Telekinetic Orb,4,20,,200,,2,,0,0xFFFFFFFE,63,2,136,,110,0,0,{ 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; },{},{}
-2854,Alchemy_Glove,Alchemy Glove,4,20,,100,,1,,1,0xFFFFFFFE,63,2,136,,125,0,0,{ 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; },{},{}
-2855,Whike_Black_Tail,Whike Black Tail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,45,0,0,{ bonus bCritical,7; bonus bAspdRate,3; bonus2 bAddEff2,Eff_Curse,10; },{},{}
-2856,Half_Megin,Half Megingjard,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bMdef,3; bonus bStr,20; },{},{}
-2857,Half_Brysing,Half Brisingamen,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2; },{},{}
-2858,Pendant_Of_Guardian,Pendant Of Guardian,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,70,0,0,{ skill "ALL_GUARDIAN_RECALL",1; },{},{}
-2859,Golden_Rod_Orb,Golden Rod Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30; },{},{}
-2860,Aqua_Orb,Aqua Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30; },{},{}
-2861,Crimson_Orb,Crismon Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30; },{},{}
-2862,Forest_Orb,Forest Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; },{},{}
-2863,Ring_Of_Valkyrie,Ring Of Valkyrie,4,0,,0,,2,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-2864,Light_Of_Cure,Light Of Cure,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bVit,2; bonus bHealPower,2; },{},{}
-2865,Seal_Of_Cathedral,Seal Of Cathedral,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bInt,2; bonus bHealPower,2; },{},{}
-2866,Ring_Of_Archbishop,Ring Of Archbishop,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bDex,2; bonus bHealPower,2; },{},{}
-2867,Broken_Bamboo_Piece,Broken Bamboo Piece,4,20,,100,,2,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,2; },{},{}
-2868,Green_Batik,Green Batik,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,45,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1; },{},{}
-2869,Colorful_Ketupat,Colorful Ketupat,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,45,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-2870,Tw_8th_Anni_Ring,Tw 8th Anni Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5; },{},{}
-2871,Brazilian_Emblem,Brazilian Emblem,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,60,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20; },{},{}
-2872,G_Honor_Certificate,G Honor Certificate,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{}
-2873,Cat_Hand_Glove,Cat Hand Glove,4,20,,100,,5,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{}
-2874,Buffalo_Horn,Buffalo Horn,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bAspd,1; },{},{}
-2875,RO_Appreciation_Ring,RO Appreciation Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{}
-2876,Necklace_Spica,Necklace Spica,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{}
-2877,Glove_Sabik,Glove Sabik,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{}
-2878,Bracelet_Arunairi,Bracelet Arunairi,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{}
-2879,Badge_Giorredart,Badge Giorredart,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{}
-2880,Ring_Lupak,Ring Lupak,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{}
-2881,Orleans_Necklace,Orleans Necklace,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,2; bonus bMatk,20; },{},{}
-2882,Ecoro_Cardslip,Ecoro Cardslip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVit,1; bonus bLuk,1; },{},{}
-2883,Ur_Seal,Ur's Seal,4,20,,200,,4,,1,0x00000080,56,2,136,,100,0,0,{ bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; },{},{}
-2884,Peuz_Seal,Peuz's Seal,4,20,,200,,3,,1,0x00000080,56,2,136,,100,0,0,{ bonus bBaseAtk,20; bonus bMaxSP,20; },{},{}
-2885,Mother_Heart,Mother Heart,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15; },{},{}
-2886,Sabah_Ring,Sapha Ring,4,20,,100,,0,,0,0x00001000,63,2,136,,100,0,0,{ bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5; },{},{}
-2887,Nab_Ring,Nab Ring,4,20,,100,,0,,0,0x00001000,63,2,136,,100,0,0,{ bonus bBaseAtk,10; bonus bMatk,20; },{},{}
-2888,School_Bag,School Bag,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; } },{},{}
-2889,Endure_Ring,Endure Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,60,0,0,{},{},{}
-2890,White_Wing_Brooch,White Wing Brooch,4,20,,100,,0,,0,0x00000800,63,2,136,,100,0,0,{ bonus bDex,2; bonus bLongAtkRate,3; },{},{}
-2891,Black_wing_Brooch,Black Wing Brooch,4,20,,100,,0,,0,0x00000800,56,2,136,,100,0,0,{ bonus bInt,2; bonus bFlee2,3; },{},{}
-2892,Assassin_Handcuffs,Assassin's Glove,4,56000,,400,,3,,1,0x00001000,63,2,136,,100,0,0,{ bonus bMaxSP,20; bonus bCritical,3; },{},{}
-2893,Cursed_Heart,Cursed Heart,4,20,,50,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{},{},{}
-2894,Glove_Of_Shura,Sura Gauntlet,4,20,,400,,1,,0,0x00008000,63,2,136,,130,0,0,{ bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; } },{},{}
-2895,Medal_Of_Valor1,Medal Of Valor1,4,0,,0,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVariableCastrate,-2; },{},{}
-2896,Medal_Of_Valor2,Medal Of Valor2,4,0,,0,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAspdRate,3; },{},{}
-2897,2011RWC_Necklace_J,2011RWC Necklace J,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1; },{},{}
-2898,Black_Rosary,Dark Rosary,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,15; },{},{}
-2899,Sound_Amplifier,Sound Amplification Device,4,20,,100,,0,,1,0x00080800,63,2,136,,90,0,0,{ bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50; },{},{}
-2900,Morrigane's_Belt_,Morrigane's Belt,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,61,0,0,{},{},{}
-2901,Morrigane's_Pendant_,Morrigane's Pendant,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bStr,2; },{},{}
-2902,Morpheus's_Ring_,Morpheus's Ring,4,30000,,100,,0,,1,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; },{},{}
-2903,Morpheus's_Armlet_,Morpheus's Armlet,4,30000,,100,,0,,1,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; },{},{}
-2904,Naqsh,Naqsi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ 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; },{},{}
-2905,Super_Ora_Ora,Super Ora Ora,4,0,,1000,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2906,Happy_Gauntlet,Happy Gauntlet,4,20,,1000,,3,,1,0xFFFFFFFF,63,2,136,,70,0,0,{ bonus bMdef,3; },{},{}
-2907,Buwaya_Tattoo,Bawaya Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bMatkRate,7; bonus bFixedCastrate,-7; },{},{}
-2908,Light_Ring,Light Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2909,Darkness_Ring,Darkness Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2910,Bakonawa_Tattoo,Bakunawa Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,7; bonus bAspdRate,10; },{},{}
-2911,Bangungot_Tattoo,Bangungot Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bHealPower,4; bonus bHealPower2,7; },{},{}
-2912,Xylitol_2011,Xylitol 2011,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{}
-2913,Thief_Handcuff,Thief Handcuff,4,20,,1400,,0,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bBaseAtk,5; },{},{}
-2914,Wizard_Left_Eye,Wizard Left Eye,4,20,,100,,1,,1,0x00CFDF80,63,2,136,,0,0,0,{ bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3; },{},{}
-2915,Ettlang_Keepsake,Ettlang Keepsake,4,20,,50,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,10; },{},{}
-2916,Fairy_Wing,Fairy Wing,4,0,,10,,0,,0,0xFFFFFFFF,63,2,136,,90,0,0,{ skill "ECLAGE_RECALL",1; },{},{}
-2917,Str_Glove,Str Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; },{},{}
-2918,Int_Glove,Int Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; },{},{}
-2919,Agi_Glove,Agi Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; },{},{}
-2920,Vit_Glove,Vit Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; },{},{}
-2921,Dex_Glove,Dex Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; },{},{}
-2922,Luk_Glove,Luk Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; },{},{}
-2923,Str_Glove_,Str Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; },{},{}
-2924,Int_Glove_,Int Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; },{},{}
-2925,Agi_Glove_,Agi Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; },{},{}
-2926,Vit_Glove_,Vit Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; },{},{}
-2927,Dex_Glove_,Dex Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; },{},{}
-2928,Luk_Glove_,Luk Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; },{},{}
-2935,Sprint_Gloves,Sprint Gloves,4,20,,100,,0,,1,0x000FDF80,58,2,136,,1,0,0,{ bonus bVariableCastrate,-1; bonus bDelayrate,-1; },{},{}
-2936,Recovery_Ring,Recovery Ring,4,20,,100,,5,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5; },{},{}
-2940,Ninja_Manual,Ninja Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1; },{},{}
-2941,Gunslinger_Manual,Gunslinger Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1; },{},{}
-2942,Taekwon_Manual,Taekwon Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5; },{},{}
-2943,Critical_Ring_,Critical Ring,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,,0,,{ bonus bCritical,5;},{},{}
-2944,TE_Ring_Of_Protection,TE Ring Of Protection,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,40,0,,{ bonus bMaxHP,100; bonus2 bSubRace,RC_Player,5; },{},{}
-2945,TE_Ring_Of_Rage,TE Ring Of Rage,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,40,0,,{ bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; },{},{}
-2946,TE_Ring_Of_Defiance,TE Ring Of Defiance,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,40,0,,{ bonus bMdef,5; bonus2 bSubRace,RC_Player,5; },{},{}
-2948,Demon_Wing,Demon Wing,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,70,,,{ bonus bFlee,5; },{},{}
-2949,Silversmith_Bracelet,Silversmith Bracelet,4,10,,100,,3,,1,0xFFFFFFFF,63,2,136,,60,,,{ bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5; },{},{}
-2950,Rune_Ring,Rune Ring,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bExpAddClass,Class_Normal,10; },{},{}
-2951,Kvasir_Ring_Blue,Kvasir Ring Blue,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bMaxSP,30; skill "ECL_SNOWFLIP",1; },{},{}
-2952,Kvasir_Ring_Red,Kvasir Ring Red,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; },{},{}
-2953,Kvasir_Ring_Green,Kvasir Ring Green,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bMaxHP,100; skill "ECL_SADAGUI",1; },{},{}
-2954,Kvasir_Ring_Brown,Kvasir Ring Brown,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,1,,,{ bonus bMaxHP,100; },{},{}
-2956,Safety_Ring_,Advanced Safety Ring,4,75000,,100,,10,,1,0xFFFFFFFE,63,2,136,,50,0,0,{ bonus bMdef,5; bonus bAllStats,1; },{},{}
-2957,Good_Ring_Of_Flame_Lord,Advanced Ring Of Flame Lord,4,20,,100,,0,,0,0x7CCFDF80,63,2,136,,85,0,0,{ 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; },{},{}
-2958,Good_Ring_Of_Resonance,Advanced Ring Of Resonance,4,20,,100,,2,,0,0x7CCFDF80,63,2,136,,85,0,0,{ 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; },{},{}
-2959,Fidelity_Necklace,Fidelity Necklace,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; },{},{}
-2960,Badge_Of_Manny,Badge Of Manny,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{}
-2963,Body_Power_Up_Ring,Physical Enhancer Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus2 bAddClass,Class_All,5; },{},{}
-2964,Ring_Of_Spell_Explosion,Magic Intensifier Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMatkRate,5; },{},{}
-2966,RWC_2012_Ring,RWC 2012 Ring,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,1; },{},{}
-2967,RWC_2012_Ring_,Chambered RWC 2012 Ring,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,1; },{},{}
-2968,RWC_2012_Pendant,RWC 2012 Pendant,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMatkRate,1; },{},{}
-2969,RWC_2012_Pendant_,Chambered RWC 2012 Pendant,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMatkRate,1; },{},{}
-2971,Pocket_Watch,Pocket Watch,4,10,,200,,1,,1,0x800200,63,2,136,,80,0,,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; },{},{}
-2976,Red_Lantern,Red Lantern,4,10,,200,,0,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bMaxSP,-300; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; }
-2977,Hurt_Mind,Hurt Mind,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,200; skill "DC_SCREAM",3; },{},{}
-2978,KindHeart,Kind Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; },{},{}
-2979,Strawberry_Decoration,Strawberry Decoration,4,20,,500,,1,,1,0xFFFFFFFE,63,2,136,,1,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ },{},{}
-2980,Evilspirit_Gloves,Evil Spirit Gloves,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,110,,,{ 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_WEAPON|BF_MAGIC,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; },{},{}
-2981,RingOfHero,Warrior's Ring,4,10,,200,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{},{},{}
-2983,Greed_Brooch,Greed Brooch,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,50,,,{ bonus2 bHPLossRate,10,5000; },{},{}
-2984,Glove_Save_Rimnil,Glove Save Rimnil,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,30,,,{ bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; },{},{}
-2985,Gyges_Ring,Gyges Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,50,,,{ bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-2986,Snake_Ring,Snake Ring,4,20,,100,,2,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,3; bonus bMdef,2; },{},{}
-2987,Snake_Pendant,Snake Pendant,4,20,,100,,3,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAgi,3; bonus bLuk,2; bonus bMdef,3; },{},{}
-2988,Winged_Ring_Of_Newoz,Oz's New Wing Ring,4,20,,100,,0,,1,0x00080000,56,1,136,,130,,,{ bonus bVariableCastrate,-25; },{},{}
-2989,Floral_Bracelet_Of_Igu,Bloody Floral Decoration Bracelet,4,20,,100,,0,,1,0x00080000,56,0,136,,130,,,{ bonus bVariableCastrate,-25; },{},{}
-2990,Pendant_Of_Harmony,Pendant of Harmony,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ 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; },{},{}
-2991,Pendant_Of_Chaos,Pendant of Chaos,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ 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; },{},{}
-2992,Pendant_Of_Maelstorm,Pendant of Maelstrom,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,130,,,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; },{},{}
-2995,Supplement_Part_Dex,Supplement Part Dex,4,25000,,100,,0,,1,0x00000400,56,2,136,,100,0,0,{ bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000; },{},{}
-2996,Upgrade_Part_Gun_Barrel,Reinforced Parts - Gun Barrel,4,10,,500,,,,1,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; },{},{}
-2997,RWC_Gold_Brooch,RWC Gold Brooch,4,10,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,,{ bonus bBaseAtk,25; bonus bMatk,20; },{},{}
-2998,Shining_Trapezohedron,Shining Trapezohedron,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,90,,,{ bonus2 bSubEle,Ele_Holy,10; },{},{}
-2999,RWC_Brooch,RWC Brooch,4,10,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,,{ bonus bMaxHP,300; bonus bMaxSP,30; },{},{}
-//===================================================================
-// Cards
-//===================================================================
-4001,Poring_Card,Poring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bFlee2,1; },{},{}
-4002,Fabre_Card,Fabre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{}
-4003,Pupa_Card,Pupa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,700; },{},{}
-4004,Drops_Card,Drops Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDex,1; bonus bHit,3; },{},{}
-4005,Poring__Card,Santa Poring Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Dark,20; },{},{}
-4006,Lunatic_Card,Lunatic Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; },{},{}
-4007,Pecopeco_Egg_Card,Peco Peco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,20; },{},{}
-4008,Picky_Card,Picky Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,1; bonus bBaseAtk,10; },{},{}
-4009,Chonchon_Card,Chonchon Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus bFlee,2; },{},{}
-4010,Wilow_Card,Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxSP,80; },{},{}
-4011,Picky__Card,Picky Egg Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{}
-4012,Thief_Bug_Egg_Card,Thief Bug Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHP,400; },{},{}
-4013,Andre_Egg_Card,Andre Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHPrate,5; },{},{}
-4014,Roda_Frog_Card,Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,400; bonus bMaxSP,50; },{},{}
-4015,Condor_Card,Condor Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; },{},{}
-4016,Thief_Bug_Card,Thief Bug Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,1; },{},{}
-4017,Savage_Babe_Card,Savage Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Stun,500; },{},{}
-4018,Andre_Larva_Card,Andre Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMaxSP,10; },{},{}
-4019,Hornet_Card,Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bStr,1; bonus bBaseAtk,3; },{},{}
-4020,Farmiliar_Card,Familiar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; },{},{}
-4021,Rocker_Card,Rocker Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,1; bonus bBaseAtk,5; },{},{}
-4022,Spore_Card,Spore Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,2; },{},{}
-4023,Desert_Wolf_Babe_Card,Baby Desert Wolf Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; },{},{}
-4024,Plankton_Card,Plankton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; },{},{}
-4025,Skeleton_Card,Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; },{},{}
-4026,Thief_Bug_Female_Card,Female Thief Bug Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAgi,1; bonus bFlee,1; },{},{}
-4027,Kukre_Card,Kukre Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,2; },{},{}
-4028,Tarou_Card,Tarou Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,2; },{},{}
-4029,Wolf_Card,Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bCritical,1; },{},{}
-4030,Mandragora_Card,Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Wind,20; },{},{}
-4031,Pecopeco_Card,Peco Peco Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; },{},{}
-4032,Ambernite_Card,Ambernite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; },{},{}
-4033,Poporing_Card,Poporing Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_DETOXIFY",1; },{},{}
-4034,Worm_Tail_Card,Wormtail Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,2; },{},{}
-4035,Hydra_Card,Hydra Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; },{},{}
-4036,Muka_Card,Muka Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,10; },{},{}
-4037,Snake_Card,Snake Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; },{},{}
-4038,Zombie_Card,Zombie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,20; },{},{}
-4039,Stainer_Card,Stainer Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; },{},{}
-4040,Creamy_Card,Creamy Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_TELEPORT",1; },{},{}
-4041,Coco_Card,Coco Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; },{},{}
-4042,Steel_Chonchon_Card,Steel Chonchon Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; },{},{}
-4043,Andre_Card,Andre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; },{},{}
-4044,Smokie_Card,Smokie Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-4045,Horn_Card,Horn Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLongAtkDef,35; },{},{}
-4046,Martin_Card,Martin Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; },{},{}
-4047,Ghostring_Card,Ghostring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; },{},{}
-4048,Poison_Spore_Card,Poison Spore Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_POISON",3; },{},{}
-4049,Vadon_Card,Vadon Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Fire,20; },{},{}
-4050,Thief_Bug_Male_Card,Male Thief Bug Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,2; },{},{}
-4051,Yoyo_Card,Yoyo Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee2,5; bonus bAgi,1; },{},{}
-4052,Elder_Wilow_Card,Elder Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; },{},{}
-4053,Vitata_Card,Vitata Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_HEAL",1; bonus bUseSPrate,25; },{},{}
-4054,Angeling_Card,Angeling Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Holy; },{},{}
-4055,Marina_Card,Marina Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; },{},{}
-4056,Dustiness_Card,Dustiness Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; },{},{}
-4057,Metaller_Card,Metaller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; },{},{}
-4058,Thara_Frog_Card,Thara Frog Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player,30; },{},{}
-4059,Soldier_Andre_Card,Soldier Andre Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Plant,30; },{},{}
-4060,Goblin_Card,Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,20; },{},{}
-4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor; bonus bDef,1; },{},{}
-4062,Anacondaq_Card,Anacondaq Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Poison,20; },{},{}
-4063,Caramel_Card,Caramel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Insect,20; },{},{}
-4064,Zerom_Card,Zerom Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,3; },{},{}
-4065,Kaho_Card,Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Earth,20; },{},{}
-4066,Orc_Warrior_Card,Orc Warrior Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,30; },{},{}
-4067,Megalodon_Card,Megalodon Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; },{},{}
-4068,Scorpion_Card,Scorpion Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Plant,20; },{},{}
-4069,Drainliar_Card,Drainliar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Water,20; },{},{}
-4070,Eggyra_Card,Eggyra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSPrecovRate,15; },{},{}
-4071,Orc_Zombie_Card,Orc Zombie Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; },{},{}
-4072,Golem_Card,Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon; bonus bBaseAtk,5; },{},{}
-4073,Pirate_Skel_Card,Pirate Skeleton Card,6,20,,10,,,,,,,,136,,,,,{ skill "MC_DISCOUNT",5; },{},{}
-4074,BigFoot_Card,Bigfoot Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Insect,30; },{},{}
-4075,Argos_Card,Argos Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; },{},{}
-4076,Magnolia_Card,Magnolia Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; },{},{}
-4077,Phen_Card,Phen Card,6,20,,10,,,,,,,,136,,,,,{ bonus bNoCastCancel; bonus bVariableCastrate,25; },{},{}
-4078,Savage_Card,Savage Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; },{},{}
-4079,Mantis_Card,Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{}
-4080,Flora_Card,Flora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Fish,20; },{},{}
-4081,Hode_Card,Hode Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; },{},{}
-4082,Desert_Wolf_Card,Desert Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; },{},{}
-4083,Rafflesia_Card,Rafflesia Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Fish,30; },{},{}
-4084,Marine_Sphere_Card,Marine Sphere Card,6,20,,10,,,,,,,,136,,,,,{ skill "SM_MAGNUM",3; },{},{}
-4085,Orc_Skeleton_Card,Orc Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Holy,20; },{},{}
-4086,Soldier_Skeleton_Card,Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,9; },{},{}
-4087,Giearth_Card,Giearth Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; },{},{}
-4088,Frilldora_Card,Frilldora Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",1; },{},{ sc_end SC_CLOAKING; }
-4089,Sword_Fish_Card,Swordfish Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus bDef,1; },{},{}
-4090,Munak_Card,Munak Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; },{},{}
-4091,Kobold_Card,Kobold Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,1; bonus bCritical,4; },{},{}
-4092,Skel_Worker_Card,Skeleton Worker Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; },{},{}
-4093,Obeaune_Card,Obeaune Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_CURE",1; },{},{}
-4094,Archer_Skeleton_Card,Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{}
-4095,Marse_Card,Marse Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; },{},{}
-4096,Zenorc_Card,Zenorc Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; },{},{}
-4097,Matyr_Card,Matyr Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bAgi,1; },{},{}
-4098,Dokebi_Card,Dokebi Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Wind; bonus bDef,1; },{},{}
-4099,Pasana_Card,Pasana Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Fire; bonus bDef,1; },{},{}
-4100,Sohee_Card,Sohee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,15; bonus bSPrecovRate,3; },{},{}
-4101,Sand_Man_Card,Sandman Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Earth; bonus bDef,1; },{},{}
-4102,Whisper_Card,Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; },{},{}
-4103,Horong_Card,Horong Card,6,20,,10,,,,,,,,136,,,,,{ skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; }
-4104,Requiem_Card,Requiem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Confusion,500; },{},{}
-4105,Marc_Card,Marc Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; },{},{}
-4106,Mummy_Card,Mummy Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,20; },{},{}
-4107,Verit_Card,Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{}
-4108,Myst_Card,Myst Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; },{},{}
-4109,Jakk_Card,Jakk Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; },{},{}
-4110,Ghoul_Card,Ghoul Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; },{},{}
-4111,Strouf_Card,Strouf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Demon,20; },{},{}
-4112,Marduk_Card,Marduk Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,10000; },{},{}
-4113,Marionette_Card,Marionette Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; },{},{}
-4114,Argiope_Card,Argiope Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Poison; bonus bDef,1; },{},{}
-4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,30,15; },{},{}
-4116,Isis_Card,Isis Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; },{},{}
-4117,Side_Winder_Card,Sidewinder Card,6,20,,10,,,,,,,,2,,,,,{ skill "TF_DOUBLE",1; bonus bDoubleRate,5; },{},{}
-4118,Petit_Card,Earth Petite Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Dragon,20; },{},{}
-4119,Bathory_Card,Bathory Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Dark; },{},{}
-4120,Petit__Card,Sky Petite Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; },{},{}
-4121,Phreeoni_Card,Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,100; },{},{}
-4122,Deviruchi_Card,Deviruchi Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; },{},{}
-4123,Eddga_Card,Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-25; bonus bNoWalkDelay; },{},{}
-4124,Medusa_Card,Medusa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; },{},{}
-4125,Deviace_Card,Deviace Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; },{},{}
-4126,Minorous_Card,Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; },{},{}
-4127,Nightmare_Card,Nightmare Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; },{},{}
-4128,Golden_Bug_Card,Golden Thief Bug Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoMagicDamage,100; bonus bUseSPrate,100; },{},{}
-4129,Baphomet__Card,Bapho Jr. Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,3; bonus bCritical,1; },{},{}
-4130,Scorpion_King_Card,Scorpion King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Undead,20; },{},{}
-4131,Moonlight_Flower_Card,Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSpeedRate,25; },{},{}
-4132,Mistress_Card,Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone; bonus bUseSPrate,25; },{},{}
-4133,Daydric_Card,Raydric Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,20; },{},{}
-4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,100,5; },{},{}
-4135,Orc_Load_Card,Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,30; },{},{}
-4136,Khalitzburg_Card,Khalitzburg Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,30; },{},{}
-4137,Drake_Card,Drake Card,6,20,,10,,,,,,,,2,,,,,{ bonus bNoSizeFix; },{},{}
-4138,Anubis_Card,Anubis Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Angel,30; },{},{}
-4139,Joker_Card,Joker Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_STEAL",1; },{},{}
-4140,Knight_Of_Abyss_Card,Abysmal Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_Boss,25; },{},{}
-4141,Evil_Druid_Card,Evil Druid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; },{},{}
-4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; },{},{}
-4143,Orc_Hero_Card,Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; },{},{}
-4144,Osiris_Card,Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bRestartFullRecover; },{},{}
-4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-30; },{},{}
-4146,Maya_Card,Maya Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMagicDamageReturn,50; },{},{}
-4147,Baphomet_Card,Baphomet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,-10; bonus bSplashRange,1; },{},{}
-4148,Pharaoh_Card,Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-30; },{},{}
-4149,Gargoyle_Card,Gargoyle Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12028,RC_Insect,100; },{},{}
-4150,Goat_Card,Goat Card,6,20,,10,,,,,,,,16,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } },{},{}
-4151,Gajomart_Card,Gajomart Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; },{},{}
-4152,Galapago_Card,Galapago Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; },{},{}
-4153,Crab_Card,Crab Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; },{},{}
-4154,Rice_Cake_Boy_Card,Dumpling Child Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; },{},{}
-4155,Goblin_Leader_Card,Goblin Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Goblin,30; },{},{}
-4156,Steam_Goblin_Card,Goblin Steamrider Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; },{},{}
-4157,Goblin_Archer_Card,Goblin Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; },{},{}
-4158,Flying_Deleter_Card,Sky Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHPrecovRate,-100; bonus bHPGainValue,100; },{},{}
-4159,Nine_Tail_Card,Nine Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; },{},{}
-4160,Antique_Firelock_Card,Firelock Soldier Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{}
-4161,Grand_Peco_Card,Grand Peco Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; },{},{}
-4162,Grizzly_Card,Grizzly Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,300; },{},{}
-4163,Gryphon_Card,Gryphon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; },{},{}
-4164,Gullinbursti_Card,Gullinbursti Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; },{},{}
-4165,Gig_Card,Gig Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Insect,5; },{},{ heal 0,-5; }
-4166,Nightmare_Terror_Card,Nightmare Terror Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,300; },{},{}
-4167,Neraid_Card,Nereid Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Brute,5; },{},{ heal 0,-5; }
-4168,Dark_Lord_Card,Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; },{},{}
-4169,Dark_Illusion_Card,Dark Illusion Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10; },{},{}
-4170,Dark_Frame_Card,Dark Frame Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,600; },{},{}
-4171,Dark_Priest_Card,Dark Priest Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; },{},{}
-4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus bSPDrainValue,-1; },{},{}
-4173,Demon_Pungus_Card,Demon Pungus Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,600; },{},{}
-4174,Deviling_Card,Deviling Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4175,Poison_Toad_Card,Poisonous Toad Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; },{},{}
-4176,Dullahan_Card,Dullahan Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; },{},{}
-4177,Dryad_Card,Dryad Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; },{},{}
-4178,Dragon_Tail_Card,Dragon Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; },{},{}
-4179,Dragon_Fly_Card,Dragon Fly Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; },{},{}
-4180,Driller_Card,Driller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Dragon,5; },{},{ heal 0,-5; }
-4181,Disguise_Card,Disguise Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); },{},{}
-4182,Diabolic_Card,Diabolic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Demon,5; },{},{ heal 0,-5; }
-4183,Vagabond_Wolf_Card,Vagabond Wolf Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,1; },{},{}
-4184,Lava_Golem_Card,Lava Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Golem,30; },{},{}
-4185,Rideword_Card,Rideword Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } },{},{}
-4186,Raggler_Card,Raggler Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,1; bonus bVit,1; },{},{}
-4187,Raydric_Archer_Card,Raydric Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12030,RC_Demon,100; },{},{}
-4188,Leib_Olmai_Card,Leib Olmai Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; },{},{}
-4189,Wraith_Dead_Card,Wraith Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,600; },{},{}
-4190,Wraith_Card,Wraith Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12027,RC_Undead,100; },{},{}
-4191,Loli_Ruri_Card,Loli Ruri Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{}
-4192,Rotar_Zairo_Card,Rotar Zairo Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; },{},{}
-4193,Lude_Card,Lude Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; },{},{}
-4194,Rybio_Card,Rybio Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); },{},{}
-4195,Leaf_Cat_Card,Leaf Cat Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{}
-4196,Marin_Card,Marin Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; },{},{}
-4197,Mastering_Card,Mastering Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLuk,1; },{},{}
-4198,Maya_Puple_Card,Maya Purple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; },{},{}
-4199,Merman_Card,Merman Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{}
-4200,Megalith_Card,Megalith Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<6) bonus bMdef,7; },{},{}
-4201,Majoruros_Card,Majoruros Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,600; },{},{}
-4202,Civil_Servant_Card,Mao Guai Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Ghost,20; },{},{}
-4203,Mutant_Dragon_Card,Mutant Dragonoid Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50; },{},{}
-4204,Mini_Demon_Card,Mini Demon Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Brute,-20; bonus2 bExpAddRace,RC_Brute,10; },{},{}
-4205,Mimic_Card,Mimic Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,603,10; },{},{}
-4206,Mystcase_Card,Myst Case Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddMonsterDropItem,644,30; },{},{}
-4207,Mysteltainn_Card,Mysteltainn Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,25; bonus bDef,1; },{},{}
-4208,Miyabi_Ningyo_Card,Miyabi Doll Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; },{},{}
-4209,Violy_Card,Violy Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; },{},{}
-4210,Wander_Man_Card,Wanderer Card,6,20,,10,,,,,,,,4,,,,,{ if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; },{},{}
-4211,Vocal_Card,Vocal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,3; },{},{}
-4212,Bon_Gun_Card,Bongun Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; },{},{}
-4213,Brilight_Card,Brilight Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,600; },{},{}
-4214,Bloody_Murderer_Card,Bloody Murderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; },{},{}
-4215,Blazzer_Card,Blazer Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Food,600; },{},{}
-4216,Sasquatch_Card,Sasquatch Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,600; },{},{}
-4217,Live_Peach_Tree_Card,Enchanted Peach Tree Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; },{},{}
-4218,Succubus_Card,Succubus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; },{},{}
-4219,Sageworm_Card,Sage Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; },{},{}
-4220,Solider_Card,Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,2; bonus bMdef,2; },{},{}
-4221,Skeleton_General_Card,Skeleton General Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; },{},{}
-4222,Skel_Prisoner_Card,Skeleton Prisoner Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,300; },{},{}
-4223,Stalactic_Golem_Card,Stalactic Golem Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; },{},{}
-4224,Stem_Worm_Card,Stem Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12032,RC_Brute,100; },{},{}
-4225,Stone_Shooter_Card,Stone Shooter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus bHit,10; },{},{}
-4226,Sting_Card,Sting Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; if(getrefine()>8) bonus bMdef,5; },{},{}
-4227,Spring_Rabbit_Card,Spring Rabbit Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; },{},{}
-4228,Sleeper_Card,Sleeper Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12031,RC_Fish,100; },{},{}
-4229,C_Tower_Manager_Card,Tower Keeper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bVariableCastrate,-5; },{},{}
-4230,Shinobi_Card,Shinobi Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; },{},{}
-4231,Increase_Soil_Card,Mi Gao Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace2,RC2_Guardian,50; },{},{}
-4232,Wild_Ginseng_Card,Hermit Plant Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; },{},{}
-4233,Baby_Leopard_Card,Baby Leopard Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; },{},{}
-4234,Anolian_Card,Anolian Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; },{},{}
-4235,Cookie_XMAS_Card,Christmas Cookie Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; },{},{}
-4236,Amon_Ra_Card,Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); },{},{}
-4237,Owl_Duke_Card,Owl Duke Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{}
-4238,Owl_Baron_Card,Owl Baron Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; },{},{}
-4239,Iron_Fist_Card,Iron Fist Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; },{},{}
-4240,Arclouse_Card,Arclouze Card,6,20,,10,,,,,,,,32,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } },{},{}
-4241,Archangeling_Card,Arc Angeling Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } },{},{}
-4242,Apocalips_Card,Apocalipse Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; },{},{}
-4243,Antonio_Card,Antonio Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; },{},{}
-4244,Alarm_Card,Alarm Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; },{},{}
-4245,Am_Mut_Card,Am Mut Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player,-20; bonus2 bExpAddRace,RC_DemiHuman,10; },{},{}
-4246,Assulter_Card,Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player,7; },{},{}
-4247,Aster_Card,Aster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; },{},{}
-4248,Ancient_Mummy_Card,Ancient Mummy Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; },{},{}
-4249,Ancient_Worm_Card,Ancient Worm Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; },{},{}
-4250,Executioner_Card,Executioner Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Large,25; bonus bDef,1; },{},{}
-4251,Elder_Card,Elder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Guardian,40; },{},{}
-4252,Alligator_Card,Alligator Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLongAtkDef,5; },{},{}
-4253,Alice_Card,Alice Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; },{},{}
-4254,Tirfing_Card,Ogretooth Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus bDef,1; },{},{}
-4255,Orc_Lady_Card,Orc Lady Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Orc,30; },{},{}
-4256,Orc_Archer_Card,Orc Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; },{},{}
-4257,Wild_Rose_Card,Wild Rose Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; },{},{}
-4258,Wicked_Nymph_Card,Evil Nymph Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bMaxSP,50; },{},{}
-4259,Wooden_Golem_Card,Wooden Golem Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,1; bonus bHPrecovRate,30; },{},{}
-4260,Wootan_Shooter_Card,Wootan Shooter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; },{},{}
-4261,Wootan_Fighter_Card,Wootan Fighter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; },{},{}
-4262,Evil_Cloud_Hermit_Card,Cloud Hermit Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12029,RC_Plant,100; },{},{}
-4263,Incant_Samurai_Card,Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; },{},{ 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; } }
-4264,Wind_Ghost_Card,Wind Ghost Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; },{},{}
-4265,Li_Me_Mang_Ryang_Card,Jing Guai Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12033,RC_Angel,100; },{},{}
-4266,Eclipse_Card,Eclipse Card,6,20,,10,,,,,,,,4,,,,,{ bonus bVit,1; },{},{}
-4267,Explosion_Card,Explosion Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-4268,Injustice_Card,Injustice Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"AS_SONICBLOW",1,50; },{},{}
-4269,Incubus_Card,Incubus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; },{},{}
-4270,Giant_Spider_Card,Giant Spider Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,600; },{},{}
-4271,Giant_Honet_Card,Giant Hornet Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; },{},{}
-4272,Dancing_Dragon_Card,Zhu Po Long Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus bCritical,3; },{},{}
-4273,Shellfish_Card,Shell Fish Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; },{},{}
-4274,Zombie_Master_Card,Zombie Master Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Undead,5; },{},{ heal 0,-5; }
-4275,Zombie_Prisoner_Card,Zombie Prisoner Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; },{},{}
-4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ 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; },{},{}
-4277,Zherlthsh_Card,Zealotus Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{}
-4278,Gibbet_Card,Gibbet Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<6) bonus bMdef,5; },{},{}
-4279,Deleter_Card,Earth Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bSPrecovRate,-100; bonus bSPGainValue,10; },{},{ heal 0,-100; }
-4280,Geographer_Card,Geographer Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; },{},{}
-4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; },{},{}
-4282,Tengu_Card,Tengu Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; },{},{}
-4283,Greatest_General_Card,Greatest General Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); },{},{}
-4284,Chepet_Card,Chepet Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAutoSpell,"AL_HEAL",5,50,1; },{},{}
-4285,Choco_Card,Choco Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,5; bonus bFlee,10; },{},{}
-4286,Karakasa_Card,Karakasa Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); },{},{}
-4287,Kapha_Card,Kapha Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<6) bonus bMdef,8; },{},{}
-4288,Carat_Card,Carat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; },{},{}
-4289,Caterpillar_Card,Caterpillar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Plant,5; },{},{ heal 0,-5; }
-4290,Cat_O_Nine_Tail_Card,Cat O' Nine Tails Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMdef,3; bonus bMagicDamageReturn,5; },{},{}
-4291,Kobold_Leader_Card,Kobold Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Kobold,30; },{},{}
-4292,Kobold_Archer_Card,Kobold Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; },{},{}
-4293,Cookie_Card,Cookie Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; },{},{}
-4294,Quve_Card,Quve Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{}
-4295,Kraben_Card,Kraben Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,600; },{},{}
-4296,Cramp_Card,Cramp Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bGetZenyNum,500,1; },{},{}
-4297,Cruiser_Card,Cruiser Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; },{},{}
-4298,Cremy_Fear_Card,Creamy Fear Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,600; },{},{}
-4299,Clock_Card,Clock Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; },{},{ sc_end SC_AUTOGUARD; }
-4300,Chimera_Card,Chimera Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); },{},{}
-4301,Killer_Mantis_Card,Killer Mantis Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Bleeding,600; },{},{}
-4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; },{},{}
-4303,Whisper_Boss_Card,Giant Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; },{},{}
-4304,Tamruan_Card,Tamruan Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; },{},{}
-4305,Turtle_General_Card,Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; },{},{}
-4306,Toad_Card,Toad Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,1; },{},{}
-4307,Kind_Of_Beetle_Card,Beetle King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Fish,5; },{},{ heal 0,-5; }
-4308,Tri_Joint_Card,Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Formless,5; },{},{ heal 0,-5; }
-4309,Parasite_Card,Parasite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus2 bSubRace,RC_Formless,5; },{},{}
-4310,Panzer_Goblin_Card,Panzer Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; },{},{}
-4311,Permeter_Card,Permeter Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; },{},{}
-4312,Fur_Seal_Card,Seal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } },{},{}
-4313,Punk_Card,Punk Card,6,20,,10,,,,,,,,4,,,,,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; },{},{}
-4314,Penomena_Card,Penomena Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Formless,30; },{},{}
-4315,Pest_Card,Pest Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); },{},{}
-4316,Fake_Angel_Card,False Angel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Angel,5; },{},{ heal 0,-5; }
-4317,Mobster_Card,Mobster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; },{},{}
-4318,Knight_Windstorm_Card,Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000; },{},{}
-4319,Freezer_Card,Freezer Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; },{},{}
-4320,Bloody_Knight_Card,Bloody Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_METEOR",1,20; },{},{}
-4321,Hylozoist_Card,Hylozoist Card,6,20,,10,,,,,,,,136,,,,,{ bonus bClassChange,100; },{},{}
-4322,High_Orc_Card,High Orc Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus bShortWeaponDamageReturn,5; },{},{}
-4323,Garm_Baby_Card,Hatii Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; },{},{}
-4324,Garm_Card,Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,5000; },{},{}
-4325,Harpy_Card,Harpy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; },{},{}
-4326,See_Otter_Card,Sea-Otter Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; },{},{}
-4327,Blood_Butterfly_Card,Bloody Butterfly Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; },{},{}
-4328,Hyegun_Card,Yao Jun Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,15; bonus bCritical,1; },{},{}
-4329,Phendark_Card,Phendark Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player,5; },{},{ heal 0,-5; }
-4330,Dark_Snake_Lord_Card,Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; },{},{}
-4331,Heater_Card,Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; },{},{}
-4332,Waste_Stove_Card,Waste Stove Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,5; bonus bInt,1; },{},{}
-4333,Venomous_Card,Venomous Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; },{},{}
-4334,Noxious_Card,Noxious Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; },{},{}
-4335,Pitman_Card,Pitman Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; },{},{ heal 0,-50; }
-4336,Ungoliant_Card,Ungoliant Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; },{},{}
-4337,Porcellio_Card,Porcellio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,25; bonus bDef,-5; },{},{}
-4338,Obsidian_Card,Obsidian Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,readparam(bDex)/18; },{},{}
-4339,Mineral_Card,Mineral Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,-25; bonus bDef,3; },{},{}
-4340,Teddy_Bear_Card,Teddy Bear Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Undead,30; },{},{}
-4341,Metaling_Card,Metaling Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; },{},{}
-4342,Rsx_0806_Card,RSX-0806 Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; },{},{}
-4343,Mole_Card,Holden Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,2; },{},{}
-4344,Anopheles_Card,Anopheles Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12058,RC_Insect,50; },{},{}
-4345,Hill_Wind_Card,Hill Wind Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; },{},{ heal 0,-50; }
-4346,Ygnizem_Card,Egnigem Cenia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,readparam(bInt)/18; },{},{}
-4347,Armaia_Card,Armeyer Dinze Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12053,RC_Fish,50; },{},{}
-4348,Whikebain_Card,Wickebine Tres Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; },{},{}
-4349,Erend_Card,Errende Ebecee Card,6,20,,10,,,,,,,,136,,,,,{ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; },{},{}
-4350,Rawrel_Card,Laurell Weinder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; },{},{ heal 0,-50; }
-4351,Kavac_Card,Kavach Icarus Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } },{},{}
-4352,B_Ygnizem_Card,General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{}
-4353,Removal_Card,Remover Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; },{},{}
-4354,Gemini_Card,Gemini-S58 Card,6,20,,10,,,,,,,,769,,,,,{ 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; } },{},{}
-4355,Gremlin_Card,Gremlin Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12043,RC_Brute,50; },{},{}
-4356,Beholder_Card,Beholder Card,6,20,,10,,,,,,,,136,,,,,{ skill "SA_CASTCANCEL",1; },{},{}
-4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; },{},{}
-4358,Seyren_Card,Seyren Windsor Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,getrefine()-6; },{},{}
-4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",3; },{},{ sc_end SC_CLOAKING; }
-4360,Eremes_Card,Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; },{},{}
-4362,Harword_Card,Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,-5; bonus bHit,30; },{},{}
-4363,B_Magaleta_Card,High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0; },{},{}
-4364,Magaleta_Card,Margaretha Sorin Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; },{},{}
-4365,B_Katrinn_Card,High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100; },{},{ heal 0,-2000; }
-4366,Katrinn_Card,Kathryne Keyron Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; } },{},{}
-4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10; },{},{}
-4368,Shecil_Card,Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,5; bonus bHit,-30; },{},{}
-4369,Venatu_Card,Venatu Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,readparam(bAgi)/18; },{},{}
-4370,Dimik_Card,Dimik Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,getrefine()-5; },{},{}
-4371,Archdam_Card,Archdam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,10; bonus bVariableCastrate,20; },{},{}
-4372,Bacsojin_Card,White Lady Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,30; bonus bUseSPrate,15; },{},{}
-4373,Chung_E_Card,Green Maiden Card,6,20,,10,,,,,,,,4,,,,,{ .@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r; },{},{}
-4374,Apocalips_H_Card,Vesper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; },{},{}
-4375,Orc_Baby_Card,Orc Baby Card,6,20,,10,,,,,,,,4,,,,,{ .@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i; },{},{}
-4376,Lady_Tanee_Card,Lady Tanee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; },{},{}
-4377,Green_Iguana_Card,Grove Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12063,RC_Formless,50; },{},{}
-4378,Acidus_Card,Gold Acidus Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } },{},{}
-4379,Acidus__Card,Blue Acidus Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } },{},{}
-4380,Ferus_Card,Red Ferus Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; },{},{ heal 0,-50; }
-4381,Ferus__Card,Green Ferus Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,1; bonus bMaxHPrate,10; },{},{}
-4382,Novus__Card,Yellow Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,500; bonus bHPrecovRate,10; },{},{}
-4383,Novus_Card,Red Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; },{},{}
-4384,Hydro_Card,Hydrolancer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; },{},{}
-4385,Dragon_Egg_Card,Dragon Egg Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; },{},{}
-4386,Detale_Card,Detardeurus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; },{},{}
-4387,Ancient_Mimic_Card,Ancient Mimic Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,readparam(bLuk)/18; },{},{}
-4388,Deathword_Card,Death Word Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; },{},{ heal 0,-50; }
-4389,Plasma_Card,Plasma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; },{},{}
-4390,Breeze_Card,Breeze Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; },{},{}
-4391,Retribution_Card,Baroness of Retribution Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12068,RC_Angel,50; },{},{}
-4392,Observation_Card,Dame of Sentinel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,readparam(bVit)/18; },{},{}
-4393,Shelter_Card,Mistress of Shelter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,readparam(bStr)/18; },{},{}
-4394,Solace_Card,Lady Solace Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; },{},{}
-4395,Tha_Maero_Card,Maero of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; },{},{}
-4396,Tha_Odium_Card,Odium of Thanatos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,getrefine()-5; },{},{}
-4397,Tha_Despero_Card,Despero of Thanatos Card,6,20,,10,,,,,,,,32,,,,,{ bonus bInt,getrefine()-6; },{},{}
-4398,Tha_Dolor_Card,Dolor of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Angel,10; },{},{}
-4399,Thanatos_Card,Memory of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; },{},{}
-4400,Aliza_Card,Aliza Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); },{},{}
-4401,Alicel_Card,Alicel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bFlee,10; bonus bDef,-5; },{},{}
-4402,Aliot_Card,Aliot Card,6,20,,10,,,,,,,,4,,,,,{ 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; } },{},{}
-4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,-30; },{},{}
-4404,Skogul_Card,Skogul Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; },{},{}
-4405,Frus_Card,Frus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; },{},{}
-4406,Skeggiold_Card,Skeggiold Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Demon,2; },{},{}
-4407,Randgris_Card,Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; },{},{}
-4408,Gloom_Under_Night_Card,Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; },{},{}
-4409,Agav_Card,Agav Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; },{},{}
-4410,Echio_Card,Echio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; },{},{}
-4411,Vanberk_Card,Vanberk Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-4412,Isilla_Card,Isilla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-4413,Hodremlin_Card,Hodremlin Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; },{},{}
-4414,Seeker_Card,Seeker Card,6,20,,10,,,,,,,,32,,,,,{ skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; },{},{}
-4415,Snowier_Card,Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100; },{},{}
-4416,Siroma_Card,Siroma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25; },{},{}
-4417,Ice_Titan_Card,Ice Titan Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; },{},{}
-4418,Gazeti_Card,Gazeti Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MG_COLDBOLT",2,100; },{},{}
-4419,Ktullanux_Card,Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; },{},{}
-4420,Muscipular_Card,Muscipular Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{}
-4421,Drosera_Card,Drosera Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCriticalLong,15; },{},{}
-4422,Roween_Card,Roween Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; },{},{}
-4423,Galion_Card,Galion Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,5; bonus2 bAddEle,Ele_Water,5; },{},{}
-4424,Stapo_Card,Stapo Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; },{},{}
-4425,Atroce_Card,Atroce Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-4426,Byorgue_Card,Byorgue Card,6,20,,10,,,,,,,,16,,,,,{ if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } },{},{}
-4427,Sword_Guardian_Card,Sword Guardian Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } },{},{}
-4428,Bow_Guardian_Card,Bow Guardian Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; } },{},{}
-4429,Salamander_Card,Salamander Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; },{},{}
-4430,Ifrit_Card,Ifrit Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1; },{},{}
-4431,Kasa_Card,Kasa Card,6,20,,10,,,,,,,,4,,,,,{ bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; },{},{}
-4432,Magmaring_Card,Magmaring Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; },{},{}
-4433,Imp_Card,Imp Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25; },{},{}
-4434,Knocker_Card,Knocker Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; },{},{}
-4435,Zombie_Slaughter_Card,Zombie Slaughter Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player,1; bonus bHPGainValue,50; },{},{}
-4436,Ragged_Zombie_Card,Ragged Zombie Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player,1; bonus2 bAddEff2,Eff_Bleeding,10; },{},{}
-4437,Hell_Poodle_Card,Hell Poodle Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; },{},{}
-4438,Banshee_Card,Banshee Card,6,20,,10,,,,,,,,769,,,,,{ 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; } },{},{}
-4439,Flame_Skull_Card,Flame Skull Card,6,20,,10,,,,,,,,32,,,,,{ 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; },{},{}
-4440,Necromancer_Card,Necromancer Card,6,20,,10,,,,,,,,2,,,,,{ .@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; } },{},{}
-4441,Fallen_Bishop_Card,Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player,50; },{},{}
-4442,Tatacho_Card,Tatacho Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; },{},{}
-4443,Aqua_Elemental_Card,Aqua Elemental Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; },{},{}
-4444,Draco_Card,Draco Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; },{},{}
-4445,Luciola_Vespa_Card,Luciola Vespa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; },{},{}
-4446,Enhanced_Skeleton_Card,Enhanced Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200); },{},{}
-4447,Centipede_Card,Centipede Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; },{},{}
-4448,Cornus_Card,Cornus Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; },{},{}
-4449,Dark_Shadow_Card,Dark Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; },{},{}
-4450,Banshee_Master_Card,Banshee Master Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; bonus bMatk,10; },{},{}
-4451,Ant_Buyanne_Card,Entweihen Crothen Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,100; },{},{}
-4452,Centipede_Larva_Card,Centipede Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMatk,3; },{},{}
-4453,Hilsrion_Card,Hillsrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; },{},{}
-4454,Light_Up_Card1,Light Up Card,6,20,,10,,,,,,,,2,,,,,{},{},{}
-4455,Light_Up_Card2,Light Up Card,6,20,,10,,,,,,,,2,,,,,{},{},{}
-4456,Nidhogg_Shadow_Card,Nidhoggur Shadow Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50; },{},{}
-4457,Nahtzigger_Card,Naght Sieger Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAtkEle,Ele_Ghost,30; },{},{}
-4458,Duneirre_Card,Duneyrr Card,6,20,,10,,,,,,,,769,,,,,{ bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{}
-4459,Lata_Card,Rata Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-4460,Ringco_Card,Rhyncho Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15; },{},{}
-4461,Pillar_Card,Phylla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-4462,Hardrock_Mommos_Card,Hardrock Mammoth Card,6,20,,10,,,,,,,,16,,,,,{ .@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; } },{},{}
-4463,Tendrilion_Card,Tendrilrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; } },{},{}
-4464,Aunoe_Card,Aunoe Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; },{},{}
-4465,Panat_Card,Fanat Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-4466,Beholder_Master_Card,Beholder Master Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-4467,Heavy_Metaling_Card,Heavy Metaling Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; } },{},{}
-4468,Pinguicula_Dark_Card,Dark Pinguicula Card,6,20,,10,,,,,,,,769,,,,,{ 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; },{},{}
-4469,Naga_Card,Naga Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Fish,10; },{},{}
-4470,Nepenthes_Card,Nepenthes Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Plant,10; },{},{}
-4471,Egg_Of_Draco_Card,Draco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Dragon,10; },{},{}
-4472,Bradium_Goram_Card,Bradium Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,10; },{},{}
-4473,Ancient_Tree_Card,Ancient Tree Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Undead,10; },{},{}
-4474,Jakudam_Card,Zakudam Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player,10; },{},{}
-4475,Cobalt_Mineral_Card,Cobalt Mineral Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Formless,10; },{},{}
-4476,Pinguicula_Card,Pinguicula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Insect,10; },{},{}
-4477,Hell_Apocalips_Card,Hell Apocalypse Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Demon,10; },{},{}
-4478,Light_Up_Card3,Light Up Card,6,20,,10,,,,,,,,64,,,,,{},{},{}
-4479,Light_Up_Card4,Light Up Card,6,20,,10,,,,,,,,4,,,,,{},{},{}
-4480,Sealed_Kiel_Card,Sealed Kiel Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,((getrefine()>14)?-20:-15); },{},{}
-4481,Sealed_Ktullanux_Card,Sealed Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; },{},{}
-4482,Sealed_B_Ygnizem_Card,Sealed General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ .@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{}
-4483,Sealed_Dracula_Card,Sealed Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,((getrefine()>14)?70:50),5; },{},{}
-4484,Sealed_Mistress_Card,Sealed Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50); },{},{}
-4485,Sealed_Gloom_Card,Sealed Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ .@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; },{},{}
-4486,Sealed_Berz_Card,Sealed Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-15; },{},{}
-4487,Sealed_Ifrit_Card,Sealed Ifrit Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1; },{},{}
-4488,Sealed_D_Lord_Card,Sealed Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; },{},{}
-4489,Sealed_Pharaoh_Card,Sealed Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-15; },{},{}
-4490,Sealed_M_Flower_Card,Sealed Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ skill "AL_INCAGI",((getrefine()>14)?5:1); },{},{}
-4491,Sealed_B_Shecil_Card,Sealed Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10); },{},{}
-4492,Sealed_Orc_Hero_Card,Sealed Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000); },{},{}
-4493,Sealed_Tao_Card,Sealed Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50; },{},{}
-4494,Sealed_TurtleG_Card,Sealed Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ .@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15; },{},{}
-4495,Sealed_Amon_Ra_Card,Sealed Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99)); },{},{}
-4496,Sealed_Drake_Card,Sealed Drake Card,6,20,,10,,,,,,,,2,,,,,{ .@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate; },{},{}
-4497,Sealed_Knight_WS_Card,Sealed Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000); },{},{}
-4498,Sealed_Lady_Tanee_Card,Sealed Lady Tanee Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50); },{},{}
-4499,Sealed_Samurai_Card,Sealed Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; if (getrefine()>14) bonus2 bHPLossRate,777,8000; else bonus2 bHPLossRate,888,5000; },{},{ 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; } }
-4500,Sealed_Orc_Load_Card,Sealed Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15); },{},{}
-4501,Sealed_B_Magaleta_Card,Sealed High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0; },{},{}
-4502,Sealed_B_Harword_Card,Sealed MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500); },{},{}
-4503,Sealed_Apocalips_H_Card,Sealed Vesper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15); },{},{}
-4504,Sealed_Eddga_Card,Sealed Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,((getrefine()>14)?-35:-50); bonus bNoWalkDelay; },{},{}
-4505,Scaraba_Card,Scaraba Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMatk,20; bonus bMaxSPrate,-1; },{},{}
-4506,Dolomedes_Card,Dolomedes Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; } },{},{}
-4507,Q_Scaraba_Card,Queen Scaraba Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30; },{},{}
-4508,Gold_Scaraba_Card,Gold Scaraba Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,20; bonus bMaxHPrate,-1; },{},{}
-4509,Gold_Q_Scaraba_Card,Gold Queen Scaraba Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; } },{},{}
-4510,Miming_Card,Miming Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30; },{},{}
-4511,Little_Fatum_Card,Little Fatum Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC; },{},{}
-4512,Parus_Card,Parus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; } },{},{}
-4513,Angra_Mantis_Card,Angra Mantis Card,6,20,,10,,,,,,,,769,,,,,{ bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; } },{},{}
-4514,Pom_Spider_Card,Pom Spider Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Undead,20; },{},{}
-4515,Alnoldi_Card,Alnoldi Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Plant,30; },{},{}
-4516,Comodo_Card,Comodo Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,50; bonus bFlee,-25; },{},{}
-4517,Cendrawasih_Card,Cendrawasih Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; } },{},{}
-4518,Banaspaty_Card,Banaspaty Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Burning,500,ATF_TARGET; },{},{}
-4519,Butoijo_Card,Butoijo Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Angel,20; },{},{}
-4520,Leak_Card,Leak Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_TARGET; },{},{}
-4521,Sedora_Card,Sedora Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; },{},{}
-4522,Sropho_Card,Sropho Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000; },{},{}
-4523,Pot_Dofle_Card,Pot Dofle Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10; },{},{}
-4524,King_Dramoh_Card,King Dramoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); } },{},{}
-4525,Kraken_Card,Kraken Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1; },{},{ sc_end SC_HIDING; }
-4526,Odd_Coelacanth_Card,Weird Coelacanth Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSPrate,5; bonus bMdef,50; },{},{}
-4527,Black_Coelacanth_Card,Dark Coelacanth Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; bonus bDef,100; },{},{}
-4528,Mutant_Coelacanth_Card,Mutant Coelacanth Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2; },{},{}
-4529,Cruel_Coelacanth_Card,Violent Coelacanth Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2; },{},{}
-4530,Siorava_Card,Siorava Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); } },{},{}
-4531,Red_Eruma_Card,Red Eruma Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC; },{},{}
-4532,Wild_Rider_Card,Wild Rider Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{}
-4533,Mini_Octopus_Card,Octopus Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC; },{},{}
-4534,Giant_Octopus_Card,Giant Octopus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,12; skill "WZ_WATERBALL",5; },{},{}
-4535,Sealed_Rand_Card,Sealed Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon; },{},{}
-4536,Sealed_Atroce_Card,Sealed Atroce Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-4537,Sealed_Phreeoni_Card,Sealed Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,((getrefine()>14)?75:50); },{},{}
-4538,Sealed_Bacsojin_Card,Sealed White Lady Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30); },{},{}
-4539,Sealed_F_Bishop_Card,Sealed Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ .@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,.@rate; },{},{}
-4540,SLD_Lord_Of_Death_Card,Sealed Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ .@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; },{},{}
-4541,SLD_B_Katrinn_Card,Sealed High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate; },{},{ heal 0,((getrefine()>14)?-2000:-3000); }
-4542,SLD_Detale_Card,Sealed Detale Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20; },{},{}
-4543,SLD_Garm_Card,Sealed Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500); },{},{}
-4544,SLD_Dark_Snake_Card,Sealed Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i; },{},{}
-4545,Novice_Poring_Card,Novice Poring Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,1; },{},{}
-4546,Val'khiri_Card,Val'khiri Card,6,20,,10,,,,,,,,2,,,,,{},{},{}
-4547,Upd_Byorgue_Card,Enhanced Byorgue Card,6,20,,10,,,,,,,,16,,,,,{ 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. */ },{},{}
-4548,Upd_Salamander_Card,Enhanced Salamander Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; },{},{}
-4549,Upd_Maya_Puple_Card,Upd Maya Puple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; bonus bAllStats,1; skill "AL_RUWACH",1; },{},{}
-4550,Upd_Bow_Guardian_Card,Upd Bow Guardian Card,6,20,,10,,,,,,,,2,,,,,{ 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; } },{},{}
-4552,Manny_Card,Manny Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHP,10; },{},{}
-4553,Sid_Card,Sid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,100; },{},{}
-4554,Diego_Card,Diego Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHP,100; },{},{}
-4555,Scrat_Card,Scrat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,100; },{},{}
-4556,Fenrir_Card,Fenrir Card,6,10,,10,,,,,,,,769,,,,,{ bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70; },{},{}
-4557,Fenrir_Card_,Weakened Fenrir Card,6,10,,10,,,,,,,,769,,,,,{ bonus bMatk,25; },{},{}
-4559,M_Morocc_Card,Evil Morocc Card,6,20,,100,,,,,,,,64,,,,,{ bonus bAspd,1; bonus bMaxSPrate,-10; },{},{}
-4560,Clown_Card,Clown Alphoccio Card,6,20,,10,,,,,,,,16,,,,,{ skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20; },{},{}
-4561,Professor_Card,Professor Celia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0; },{},{}
-4562,Champion_Card,Champion Chen Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1; },{},{}
-4563,Creator_Card,Creator Flamel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1; },{},{}
-4564,Stalker_Card,Stalker Gertie Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1; },{},{}
-4565,Paladin_Card,Paladin Randel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0; },{},{}
-4566,Gypsy_Card,Gypsy Trentini Card,6,20,,10,,,,,,,,16,,,,,{ skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20; },{},{}
-4567,Alphoccio_Card,Alphoccio Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} },{},{}
-4568,Ceila_Card,Celia Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "SA_ABRACADABRA",1; },{},{}
-4569,Chen_Card,Chen Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "MO_CALLSPIRITS",2; },{},{}
-4570,Flamel_Card,Flamel Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200; },{},{}
-4571,Gertie_Card,Gertie Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "RG_CLOSECONFINE",1; },{},{}
-4572,Randel_Card,Randel Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "CR_AUTOGUARD",3; },{},{}
-4573,Trentini_Card,Trentini Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} },{},{}
-4574,Daehyon_Card,General Daehyon Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; } },{},{}
-4575,Soheon_Card,Armed Guard Soheon Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-4576,Gioia_Card,Gioia Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30; },{},{}
-4577,Elvira_Card,Elvira Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20; },{},{}
-4578,Pyuriel_Card,Angry Student Pyuriel Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player,10; },{},{}
-4579,Lora_Card,Warrior Lola Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r; },{},{}
-4580,Kades_Card,Dark Guardian Kades Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4581,Rudo_Card,Rudo Card,6,20,,10,,,,,,,,64,,,,,{ autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }"; },{},{}
-4582,Bungisngis_Card,Bungisngis Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,(getrefine()/2); },{},{}
-4583,Engkanto_Card,Engkanto Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30; },{},{}
-4584,Manananggal_Card,Manananggal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bSPDrainValue,1; bonus bMaxSPrate,-1; },{},{}
-4585,Mangkukulam_Card,Mangkukulam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSPrate,10; bonus bHPGainValue,-666; },{},{}
-4586,Tikbalang_Card,Tikbalang Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5; },{},{}
-4587,Tiyanak_Card,Tiyanak Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12; },{},{}
-4588,Wakwak_Card,Wakwak Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5*readparam(bStr)/10; },{},{}
-4589,Jejeling_Card,Jejeling Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHP,200*readparam(bVit)/10; },{},{}
-4590,Bangungot_Card,Bangungot Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0; },{},{}
-4591,Bakonawa_Card,Bakonawa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0; },{},{}
-4592,Buwaya_Card,Buwaya Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0; },{},{}
-4593,Menblatt_Card,Menblatt Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkRate,readparam(bDex)/10; },{},{}
-4594,Petal_Card,Petal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bCritAtkRate,2*(readparam(bLuk)/10); },{},{}
-4595,Cenere_Card,Cenere Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAspdRate,2*(readparam(bAgi)/10); },{},{}
-4596,AntiqueBook_Card,Antique Book Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMatk,5*(readparam(bInt)/10); },{},{}
-4597,LichternB_Card,Lichtern Blue Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5; },{},{}
-4598,LichternY_Card,Lichtern Green Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5; },{},{}
-4599,LichternR_Card,Lichtern Red Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5; },{},{}
-4600,LichternG_Card,Lichtern Yellow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5; },{},{}
-4601,Amdarais_Card,Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000; },{},{ heal -6666,-666; }
-4602,AmdaraisH_Card,Realized Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000; },{},{ heal -6666,-666; }
-4603,CorruptionRoot_Card,Corruption Root Card,6,20,,10,,,,,,,,2,,,,,{ 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; },{},{}
-4604,CorruptionRootH_Card,Realized Corruption Root Card,6,20,,10,,,,,,,,2,,,,,{ 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; },{},{}
-4605,UndeadKnightM_Card,Agony Of Royal Knight Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine(); },{},{}
-4606,UndeadKnightF_Card,Grudge of Royal Knight Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2); },{},{ heal 0,-444; }
-4607,FaithfulManager_Card,Faithful Manager Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-4608,White_Knight_Card,White Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; },{},{}
-4609,Khalitzburg_Knight_Card,Khalitzburg Knight Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; },{},{}
-4610,Sarah_Card,Sarah Card,6,10,,10,,,,,,,,16,,,,,{ bonus bAbsorbDmgMaxHP,100; },{},{}
-4625,Time_Holder_Card,Time Holder Card,6,10,,10,,,,,,,,2,,,,,{ bonus bMatkRate,20; bonus bUseSPrate,10; },{},{}
-4626,Big_Ben_Card,Big Ben Card,6,10,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Formless,5; bonus2 bMagicAddRace,RC_Demon,5; },{},{}
-4627,Big_Bell_Card,Big Bell Card,6,10,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10; },{},{}
-4628,Neo_Punk_Card,Neo Punk Card,6,10,,10,,,,,0xFFFFFFFF,63,2,32,,,,,{ bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20; },{},{}
-4629,Arc_Elder_Card,Arc Elder Card,6,10,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3; },{},{}
-4630,Nightmare_Timer_Keeper_Card,Nightmare Timer Keeper Card,6,10,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpell,"NPC_WIDECURSE",2,20; },{},{}
-4631,Owl_Viscount_Card,Owl Viscount Card,6,10,,10,,,,,,,,136,,,,,{ bonus bAspdRate,3; },{},{}
-4632,Owl_Marquees_Card,Owl Marquees Card,6,10,,10,,,,,,,,136,,,,,{ bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,0; },{},{}
-4633,Enhanced_Archer_Skeleton_Card,Enhanced Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,(BaseLevel>=100?12:10); },{},{}
-4634,Enhanced_Soldier_Skeleton_Card,Enhanced Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; } },{},{}
-4635,Enhanced_Amdarais_Card,Enhanced Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ .@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500; },{},{}
-4636,Bijou_Card,Bijou Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,10000; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; },{},{}
-4637,Immortal_Corps_Card,Immortal Corps Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2; },{},{ heal -1000,-100; }
-4638,Watcher_Card,Watcher Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-5; },{},{}
-4639,Taffy_Card,Taffy Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddClass,Class_All,1; },{},{}
-4640,Frozen_Wolf_Card,Frozen Wolf Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMatkRate,1; },{},{}
-4641,Zombie_Guard_Card,Zombie Guard Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoRegen,2; bonus bSPDrainValue,1; },{},{}
-4642,Min_Toad_Card,Infinite Toad Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b; },{},{}
-4643,Min_Vagabond_Wolf_Card,Infinite Vagabond Wolf Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b; },{},{}
-4644,Min_Vocal_Card,Infinite Vocal Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b; },{},{}
-4645,Min_Eclipse_Card,Infinite Eclipse Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b; },{},{}
-4646,Min_Chimera_Card,Infinite Chimera Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,4; },{},{}
-4647,Min_Osiris_Card,Infinite Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPGainValue,300; },{},{}
-4648,Min_Eddga_Card,Infinite Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1; },{},{}
-4649,Min_Phreeoni_Card,Infinite Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,100; },{},{}
-4650,Min_Orc_Hero_Card,Infinite Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC; },{},{}
-4651,Min_Tao_Gunka_Card,Infinite Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,10000; bonus bAgi,-10; },{},{}
-4652,N_Amon_Ra_Card,Nightmare Amon Ra Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50; },{},{}
-4653,N_Arclouse_Card,Nightmare Arclouse Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Undead,20; },{},{}
-4654,N_Mimic_Card,Nightmare Mimic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Undead,5; },{},{}
-4655,N_Minorous_Card,Nightmare Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Undead,10; },{},{}
-4656,N_Mummy_Card,Nightmare Mummy Card,6,20,,10,,,,,,,,64,,,,,{ /* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; },{},{}
-4657,N_Ancient_Mummy_Card,Nightmare Ancient Mummy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3; },{},{}
-4658,N_Verit_Card,Nightmare Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; } },{},{}
-4659,Eggring_Card,Eggring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bMaxHP,50; },{},{}
-4660,Scout_Basilisk_Card,Scout Basilisk Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5; },{},{}
-4661,Charge_Basilisk_Card,Charge Basilisk Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15; },{},{}
-4662,Big_Eggring_Card,Big Eggring Card,6,20,,10,,,,,,,,4,,,,,{ 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); },{},{}
-4663,Leaf_Lunatic_Card,Leaf Lunatic Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSP,5; },{},{}
-4664,Grass_Fabre_Card,Grass Fabre Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,1; bonus bMaxHP,100; },{},{}
-4665,Wild_Hornet_Card,Wild Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,5; },{},{}
-4666,Sweet_Roda_Frog_Card,Sweet Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSP,10; bonus bMaxHP,300; },{},{}
-4667,Hunter_Wolf_Card,Hunter Wolf Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSP,30; },{},{}
-4668,Trance_Spore_Card,Trance Spore Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,1; bonus bInt,1; },{},{}
-4669,Jungle_Mandragora_Card,Jungle Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3)); },{},{}
-4670,Fruit_Pom_Spider_Card,Fruit Pom Spider Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3)); },{},{}
-4671,V_Celia_Card,Sorcerer Celia Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4672,V_Chen_Card,Sura Chen Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4673,V_Alphoccio_Card,Minstel Alphoccio Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4674,V_Eremes_Card,Guillotine Cross Eremes Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4675,V_Magaleta_Card,Arch Bishop Magaleta Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4676,V_Shecil_Card,Ranger Cecil Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4677,V_Howard_Card,Mechanic Howard Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4678,V_Katrinn_Card,Warlock Kathryne Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4679,V_Seyren_Card,Rune Knight Seyren Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4680,V_Randel_Card,Royal Guard Randel Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4681,V_Flamel_Card,Genetic Flamel Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4682,V_Gertie_Card,Shadow Chaser Gertie Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4683,V_Trentini_Card,Wanderer Trentini Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-4684,V_B_Eremes_Card,True Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b; },{},{}
-4685,V_B_Magaleta_Card,True Margaretha Sorin Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b; },{},{}
-4686,V_B_Katrinn_Card,True Kathryne Keyron Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b; },{},{}
-4687,V_B_Shecil_Card,True Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b; },{},{}
-4688,V_B_Harword_Card,True Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b; },{},{}
-4689,V_B_Seyren_Card,True Seyren Windsor Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b; },{},{}
-4690,V_B_Randel_Card,True Randel Lawrence Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b; },{},{}
-4691,V_B_Flamel_Card,True Flamel Emure Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b; },{},{}
-4692,V_B_Celia_Card,True Celia Alde Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b; },{},{}
-4693,V_B_Chen_Card,True Chen Liu Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b; },{},{}
-4694,V_B_Gertie_Card,True Gertie Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b; },{},{}
-4695,V_B_Trentini_Card,True Trentini Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b; },{},{}
-4696,V_B_Alphoccio_Card,True Alphoccio Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b; },{},{}
-4697,Charleston3_Card,Charleston3 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */ },{},{}
-4698,Step_Card,Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30); },{},{}
-4699,Rock_Step_Card,Rock Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20); },{},{}
-//===================================================================
-// Armor Enchant System
-//===================================================================
-4700,Strength1,STR+1,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; },{},{}
-4701,Strength2,STR+2,6,20,,10,,,,,,,,,,,,,{ bonus bStr,2; },{},{}
-4702,Strength3,STR+3,6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{}
-4703,Strength4,STR+4,6,20,,10,,,,,,,,,,,,,{ bonus bStr,4; },{},{}
-4704,Strength5,STR+5,6,20,,10,,,,,,,,,,,,,{ bonus bStr,5; },{},{}
-4705,Strength6,STR+6,6,20,,10,,,,,,,,,,,,,{ bonus bStr,6; },{},{}
-4706,Strength7,STR+7,6,20,,10,,,,,,,,,,,,,{ bonus bStr,7; },{},{}
-4707,Strength8,STR+8,6,20,,10,,,,,,,,,,,,,{ bonus bStr,8; },{},{}
-4708,Strength9,STR+9,6,20,,10,,,,,,,,,,,,,{ bonus bStr,9; },{},{}
-4709,Strength10,STR+10,6,20,,10,,,,,,,,,,,,,{ bonus bStr,10; },{},{}
-4710,Inteligence1,INT+1,6,20,,10,,,,,,,,,,,,,{ bonus bInt,1; },{},{}
-4711,Inteligence2,INT+2,6,20,,10,,,,,,,,,,,,,{ bonus bInt,2; },{},{}
-4712,Inteligence3,INT+3,6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{}
-4713,Inteligence4,INT+4,6,20,,10,,,,,,,,,,,,,{ bonus bInt,4; },{},{}
-4714,Inteligence5,INT+5,6,20,,10,,,,,,,,,,,,,{ bonus bInt,5; },{},{}
-4715,Inteligence6,INT+6,6,20,,10,,,,,,,,,,,,,{ bonus bInt,6; },{},{}
-4716,Inteligence7,INT+7,6,20,,10,,,,,,,,,,,,,{ bonus bInt,7; },{},{}
-4717,Inteligence8,INT+8,6,20,,10,,,,,,,,,,,,,{ bonus bInt,8; },{},{}
-4718,Inteligence9,INT+9,6,20,,10,,,,,,,,,,,,,{ bonus bInt,9; },{},{}
-4719,Inteligence10,INT+10,6,20,,10,,,,,,,,,,,,,{ bonus bInt,10; },{},{}
-4720,Dexterity1,DEX+1,6,20,,10,,,,,,,,,,,,,{ bonus bDex,1; },{},{}
-4721,Dexterity2,DEX+2,6,20,,10,,,,,,,,,,,,,{ bonus bDex,2; },{},{}
-4722,Dexterity3,DEX+3,6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{}
-4723,Dexterity4,DEX+4,6,20,,10,,,,,,,,,,,,,{ bonus bDex,4; },{},{}
-4724,Dexterity5,DEX+5,6,20,,10,,,,,,,,,,,,,{ bonus bDex,5; },{},{}
-4725,Dexterity6,DEX+6,6,20,,10,,,,,,,,,,,,,{ bonus bDex,6; },{},{}
-4726,Dexterity7,DEX+7,6,20,,10,,,,,,,,,,,,,{ bonus bDex,7; },{},{}
-4727,Dexterity8,DEX+8,6,20,,10,,,,,,,,,,,,,{ bonus bDex,8; },{},{}
-4728,Dexterity9,DEX+9,6,20,,10,,,,,,,,,,,,,{ bonus bDex,9; },{},{}
-4729,Dexterity10,DEX+10,6,20,,10,,,,,,,,,,,,,{ bonus bDex,10; },{},{}
-4730,Agility1,AGI+1,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,1; },{},{}
-4731,Agility2,AGI+2,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,2; },{},{}
-4732,Agility3,AGI+3,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{}
-4733,Agility4,AGI+4,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,4; },{},{}
-4734,Agility5,AGI+5,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,5; },{},{}
-4735,Agility6,AGI+6,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,6; },{},{}
-4736,Agility7,AGI+7,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,7; },{},{}
-4737,Agility8,AGI+8,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,8; },{},{}
-4738,Agility9,AGI+9,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,9; },{},{}
-4739,Agility10,AGI+10,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,10; },{},{}
-4740,Vitality1,VIT+1,6,20,,10,,,,,,,,,,,,,{ bonus bVit,1; },{},{}
-4741,Vitality2,VIT+2,6,20,,10,,,,,,,,,,,,,{ bonus bVit,2; },{},{}
-4742,Vitality3,VIT+3,6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{}
-4743,Vitality4,VIT+4,6,20,,10,,,,,,,,,,,,,{ bonus bVit,4; },{},{}
-4744,Vitality5,VIT+5,6,20,,10,,,,,,,,,,,,,{ bonus bVit,5; },{},{}
-4745,Vitality6,VIT+6,6,20,,10,,,,,,,,,,,,,{ bonus bVit,6; },{},{}
-4746,Vitality7,VIT+7,6,20,,10,,,,,,,,,,,,,{ bonus bVit,7; },{},{}
-4747,Vitality8,VIT+8,6,20,,10,,,,,,,,,,,,,{ bonus bVit,8; },{},{}
-4748,Vitality9,VIT+9,6,20,,10,,,,,,,,,,,,,{ bonus bVit,9; },{},{}
-4749,Vitality10,VIT+10,6,20,,10,,,,,,,,,,,,,{ bonus bVit,10; },{},{}
-4750,Luck1,LUK+1,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,1; },{},{}
-4751,Luck2,LUK+2,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,2; },{},{}
-4752,Luck3,LUK+3,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{}
-4753,Luck4,LUK+4,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,4; },{},{}
-4754,Luck5,LUK+5,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,5; },{},{}
-4755,Luck6,LUK+6,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,6; },{},{}
-4756,Luck7,LUK+7,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,7; },{},{}
-4757,Luck8,LUK+8,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,8; },{},{}
-4758,Luck9,LUK+9,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,9; },{},{}
-4759,Luck10,LUK+10,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,10; },{},{}
-4760,Matk1,MATK+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,1; bonus bFixedCastrate,-1; },{},{}
-4761,Matk2,MATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,2; bonus bFixedCastrate,-1; },{},{}
-4762,Evasion6,FLEE+6,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,6; },{},{}
-4763,Evasion12,FLEE+12,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,12; },{},{}
-4764,Critical5,CRI+5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,5; },{},{}
-4765,Critical7,CRI+7,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,7; },{},{}
-4766,Atk2,ATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,2; },{},{}
-4767,Atk3,ATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; },{},{}
-4768,Str1_J,Str + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4769,Str2_J,Str + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4770,Str3_J,Str + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4771,Int1_J,Int + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4772,Int2_J,Int + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4773,Int3_J,Int + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4774,Vit1_J,Vit + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4775,Vit2_J,Vit + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4776,Vit3_J,Vit + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4777,Agi1_J,Agi + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4778,Agi2_J,Agi + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4779,Agi3_J,Agi + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4780,Dex1_J,Dex + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4781,Dex2_J,Dex + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4782,Dex3_J,Dex + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4783,Luk1_J,Luk + 1,6,20,,10,,,,,,,,,,,,,{},{},{}
-4784,Luk2_J,Luk + 2,6,20,,10,,,,,,,,,,,,,{},{},{}
-4785,Luk3_J,Luk + 3,6,20,,10,,,,,,,,,,,,,{},{},{}
-4786,Mdef2,MDEF+2,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,2; },{},{}
-4787,Mdef4,MDEF+4,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,4; },{},{}
-4788,Mdef6,MDEF+6,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,6; },{},{}
-4789,Mdef8,MDEF+8,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,8; },{},{}
-4790,Mdef10,MDEF+10,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,10; },{},{}
-4791,Def3,DEF+3,6,20,,10,,,,,,,,,,,,,{ bonus bDef,3; },{},{}
-4792,Def6,DEF+6,6,20,,10,,,,,,,,,,,,,{ bonus bDef,6; },{},{}
-4793,Def9,DEF+9,6,20,,10,,,,,,,,,,,,,{ bonus bDef,9; },{},{}
-4794,Def12,DEF+12,6,20,,10,,,,,,,,,,,,,{ bonus bDef,12; },{},{}
-4795,HP100,HP+100,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,100; },{},{}
-4796,HP200,HP+200,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,200; },{},{}
-4797,HP300,HP+300,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,300; },{},{}
-4798,HP400,HP+400,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,400; },{},{}
-4799,HP500,HP+500,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,500; },{},{}
-4800,SP50,SP+50,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,50; },{},{}
-4801,SP100,SP+100,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,100; },{},{}
-4802,SP150,SP+150,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,150; },{},{}
-4803,Highness_Heal_3sec,Cure1Lv.,6,20,,10,,,,,,,,,,,,,{ bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000; },{},{}
-4804,Coluceo_Heal30,Catholic1Lv.,6,20,,10,,,,,,,,,,,,,{ bonus2 bSkillUseSP,"AB_CHEAL",30; },{},{}
-4805,Heal_Amount2,Archbishop1Lv,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,3; },{},{}
-4806,Matk3,MATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,3; bonus bFixedCastrate,-1; },{},{}
-4807,Atk_Speed1,Atk Speed1,6,20,,10,,,,,,,,,,,,,{ bonus bAspd,1; },{},{}
-4808,Fighting_Spirit4,Fighting Spirit4,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,15; bonus bHit,5; },{},{}
-4809,Fighting_Spirit3,Fighting Spirit3,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,12; bonus bHit,4; },{},{}
-4810,Fighting_Spirit2,Fighting Spirit2,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,9; bonus bHit,3; },{},{}
-4811,Fighting_Spirit1,Fighting Spirit1,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,6; bonus bHit,2; },{},{}
-4812,Spell4,Spell4,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,15; bonus bVariableCastrate,-10; },{},{}
-4813,Spell3,Spell3,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,12; bonus bVariableCastrate,-8; },{},{}
-4814,Spell2,Spell2,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,9; bonus bVariableCastrate,-6; },{},{}
-4815,Spell1,Spell1,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,6; bonus bVariableCastrate,-4; },{},{}
-4816,Sharp3,Sharp3,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,12; bonus bHit,4; },{},{}
-4817,Sharp2,Sharp2,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,9; bonus bHit,3; },{},{}
-4818,Sharp1,Sharp1,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,6; bonus bHit,2; },{},{}
-4819,Atk1,Atk1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{}
-4820,Fighting_Spirit5,Fighting Spirit5,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,18; bonus bHit,5; },{},{}
-4821,Fighting_Spirit6,Fighting Spirit6,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,21; bonus bHit,5; },{},{}
-4822,Fighting_Spirit7,Fighting Spirit7,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,24; bonus bHit,5; },{},{}
-4823,Fighting_Spirit8,Fighting Spirit8,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,27; bonus bHit,5; },{},{}
-4824,Fighting_Spirit9,Fighting Spirit9,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,30; bonus bHit,5; },{},{}
-4825,Fighting_Spirit10,Fighting Spirit10,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,50; bonus bHit,15; },{},{}
-4826,Spell5,Spell5,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,18; bonus bVariableCastrate,-10; },{},{}
-4827,Spell6,Spell6,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,21; bonus bVariableCastrate,-10; },{},{}
-4828,Spell7,Spell7,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,24; bonus bVariableCastrate,-10; },{},{}
-4829,Spell8,Spell8,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,27; bonus bVariableCastrate,-10; },{},{}
-4830,Spell9,Spell9,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,30; bonus bVariableCastrate,-10; },{},{}
-4831,Spell10,Spell10,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,50; bonus bVariableCastrate,-20; },{},{}
-4832,Expert_Archer1,Expert Archer1,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,2; },{},{}
-4833,Expert_Archer2,Expert Archer2,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,4; },{},{}
-4834,Expert_Archer3,Expert Archer3,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,6; },{},{}
-4835,Expert_Archer4,Expert Archer4,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,8; },{},{}
-4836,Expert_Archer5,Expert Archer5,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,10; },{},{}
-4837,Expert_Archer6,Expert Archer6,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,12; },{},{}
-4838,Expert_Archer7,Expert Archer7,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,14; },{},{}
-4839,Expert_Archer8,Expert Archer8,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,16; },{},{}
-4840,Expert_Archer9,Expert Archer9,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,18; },{},{}
-4841,Expert_Archer10,Expert Archer10,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,20; bonus bAspd,1; },{},{}
-4842,Atk_Speed2,Atk Speed2,6,20,,10,,,,,,,,,,,,,{ bonus bAspd,2; },{},{}
-4843,Sharp4,Sharp4,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,14; bonus bHit,5; },{},{}
-4844,Sharp5,Sharp5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,15; bonus bHit,6; },{},{}
-4845,Sea_Energy,Strength Of Ocean,6,0,,0,,,,,,,,,,,,,{},{},{}
-4846,2011Valentin_Angel,Fully Loved Stone,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,10; bonus bMatk,10; },{},{}
-4847,2011Valentin_Devil,Spelled Stone,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,10; bonus bMatk,10; },{},{}
-4848,Immuned1,Immune Level 1,6,20,,10,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,5; },{},{}
-4849,Cranial1,Cranial Level 1,6,20,,10,,,,,,,,,,,,,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-4850,Heal_Amount3,Heal Amount2,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,6; bonus bUseSPrate,5; },{},{}
-4851,Heal_Amount4,Heal Amount3,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,12; bonus bUseSPrate,10; },{},{}
-4852,Heal_Amount5,Heal Amount4,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,20; bonus bUseSPrate,15; },{},{}
-4853,S_Str,Special Str,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4854,S_Agi,Special Agi,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4855,S_Vital,Special Vit,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4856,S_Int,Special Int,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4857,S_Dex,Special Dex,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4858,S_Luck,Special Luk,6,20,,10,,,,,,,,,,,,,{ 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; } },{},{}
-4859,Evasion1,Evasion1,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,1; },{},{}
-4860,Evasion3,Evasion3,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,3; },{},{}
-4861,MHP1,MHP+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,1; },{},{}
-4862,MHP2,MHP+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,2; },{},{}
-4863,Fatal1,Fatal1Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,4; bonus bCritical,1; },{},{}
-4864,Fatal2,Fatal2Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,6; bonus bCritical,2; },{},{}
-4865,Fatal3,Fatal3Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,8; bonus bCritical,3; },{},{}
-4866,Fatal4,Fatal4Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,4; },{},{}
-4867,MHP3,MHP+3%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,3; },{},{}
-4868,MHP4,MHP+4%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,4; },{},{}
-4869,Attack_Delay_1,DelayafterAttack1Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,4; },{},{}
-4870,SP25,SP+25,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,25; },{},{}
-4871,SP75,SP+75,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,75; },{},{}
-4872,Attack_Delay_2,DelayafterAttack2Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,6; },{},{}
-4873,Attack_Delay_3,DelayafterAttack3Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,8; },{},{}
-4875,Bear's_Power,Bear's Power,6,20,,10,,,,,,,,,,,,,{ autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \"Bigfoot Power !\"; }"; },{},{}
-4876,Runaway_Magic,Runaway Magic,6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }"; },{},{ heal 0,-2000; }
-4877,Speed_Of_Light,Speed of Light,6,20,,10,,,,,,,,,,,,,{ /*TODO: Confirm the rate*/ autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,50,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_AGIUP2; }"; },{},{ heal 0,-300; }
-4878,Muscle_Fool,Muscle Fool,6,20,,10,,,,,,,,,,,,,{ autobonus2 "{ bonus bVit,200; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD3; }"; },{},{ heal 0,-300; }
-4879,Hawkeye,Hawkeye,6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_BASH3D6; }"; },{},{ heal 0,-300; }
-4880,Lucky_Day,Lucky Day,6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bLuk,200; }",10,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_DANCE_BLADE_ATK; }"; },{},{ heal 0,-300; }
-4881,Attack_Delay_4,Attack Delay 4,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,10; },{},{}
-4882,Atk1p,ATK + 1%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{}
-4883,Matk1p,MATK + 1%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{}
-4884,HIT1,HIT + 1,6,10,,,,,,,,,,,,,,,{ bonus bHit,1; },{},{}
-4885,Conjure1,Spell 1,6,10,,,,,,,,,,,,,,,{ bonus bMatk,5; bonus bVariableCastrate,-3; },{},{}
-4886,Conjure2,Spell 2,6,10,,,,,,,,,,,,,,,{ bonus bMatk,10; bonus bVariableCastrate,-3; },{},{}
-4887,Conjure3,Spell 3,6,10,,,,,,,,,,,,,,,{ bonus bMatk,15; bonus bVariableCastrate,-3; },{},{}
-4888,Conjure4,Spell 4,6,10,,,,,,,,,,,,,,,{ bonus bMatk,20; bonus bVariableCastrate,-3; },{},{}
-4889,Conjure5,Spell 5,6,10,,,,,,,,,,,,,,,{ bonus bMatk,30; bonus bVariableCastrate,-5; },{},{}
-4890,Mdef1,MDEF+1,6,10,,,,,,,,,,,,,,,{ bonus bMdef,1; },{},{}
-4891,Mdef3,MDEF+3,6,10,,,,,,,,,,,,,,,{ bonus bMdef,3; },{},{}
-4892,Mdef5,MDEF+5,6,10,,,,,,,,,,,,,,,{ bonus bMdef,5; },{},{}
-4893,Def15,DEF+15,6,10,,,,,,,,,,,,,,,{ bonus bDef,15; },{},{}
-4894,Atk4p,ATK + 4%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,4; },{},{}
-4895,Atk5p,ATK + 5%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,5; },{},{}
-4896,Matk2p,MATK + 2%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,2; },{},{}
-4897,Matk3p,MATK + 3%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,3; },{},{}
-4898,Matk4p,MATK + 4%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,4; },{},{}
-4899,Matk5p,MATK + 5%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,5; },{},{}
-4900,MHP5,MHP+5%,6,10,,,,,,,,,,,,,,,{ bonus bMaxHPrate,5; },{},{}
-4902,Def18,DEF+18,6,10,,,,,,,,,,,,,,,{ bonus bDef,18; },{},{}
-4903,Def21,DEF+21,6,10,,,,,,,,,,,,,,,{ bonus bDef,21; },{},{}
-4904,Atk6p,ATK + 6%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,6; },{},{}
-4905,Atk7p,ATK + 7%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,7; },{},{}
-4906,Matk6p,MATK + 6,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,6; },{},{}
-4907,Matk7p,MATK + 7%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,7; },{},{}
-4908,Force1,Darklord Essence Force1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1;},{},{}
-4909,Force2,Darklord Essence Force2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2;},{},{}
-4910,Force3,Darklord Essence Force3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4;},{},{}
-4911,Intellect1,Darklord Essence Intelligence1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,1; bonus bMatk,3; bonus bStr,-1;},{},{}
-4912,Intellect2,Darklord Essence Intelligence2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,2; bonus bMatk,6; bonus bStr,-2;},{},{}
-4913,Intellect3,Darklord Essence Intelligence3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,4; bonus bMatk,12; bonus bStr,-4;},{},{}
-4914,Swiftness1,Darklord Essence Speed1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,1; bonus bFlee,2; bonus bVit,-1;},{},{}
-4915,Swiftness2,Darklord Essence Speed2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,2; bonus bFlee,4; bonus bVit,-2;},{},{}
-4916,Swiftness3,Darklord Essence Speed3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,4; bonus bFlee,8; bonus bVit,-4;},{},{}
-4917,Tough1,Darklord Essence Vitality1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1;},{},{}
-4918,Tough2,Darklord Essence Vitality2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2;},{},{}
-4919,Tough3,Darklord Essence Vitality3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4;},{},{}
-4920,Artful1,Darklord Essence Concentration1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,1; bonus bHit,2; bonus bLuk,-1;},{},{}
-4921,Artful2,Darklord Essence Concentration2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,2; bonus bHit,4; bonus bLuk,-2;},{},{}
-4922,Artful3,Darklord Essence Concentration3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,4; bonus bHit,8; bonus bLuk,-4;},{},{}
-4923,Fortune1,Darklord Essence Luck1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bDex,-1;},{},{}
-4924,Fortune2,Darklord Essence Luck2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,2; bonus bCritical,2; bonus bDex,-2;},{},{}
-4925,Fortune3,Darklord Essence Luck3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,4; bonus bCritical,4; bonus bDex,-4;},{},{}
-4926,Critical1,Cri 1Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritical,1; },{},{}
-4927,HP50,MaxHP50,6,10,,,,,,,,,,,,,,,{ bonus bMaxHP,50; },{},{}
-4928,SP10,MaxSP+10,6,10,,,,,,,,,,,,,,,{ bonus bMaxSP,10; },{},{}
-4929,MSP1,MSP+1%,6,10,,,,,,,,,,,,,,,{ bonus bMaxSPrate,1; },{},{}
-4930,HEAL2,Recovery UP,6,10,,0,,,,,,,,,,,,,{ bonus bHPrecovRate,2; bonus bSPrecovRate,2; },{},{}
-4931,HEALHP1,Heal 10,6,10,,,,,,,,,,,,,,,{ bonus2 bHPRegenRate,10,10000; },{},{}
-4932,HEALSP1,SP recovery1,6,10,,,,,,,,,,,,,,,{ bonus bSPGainValue,1; },{},{}
-4933,Tolerance_Not1,Neutral Resistance Lv1,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,1; },{},{}
-4934,Tolerance_Not2,Neutral Resistance Lv2,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,2; },{},{}
-4935,Tolerance_Not3,Neutral Resistance Lv3,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,3; },{},{}
-4936,ATK_BIG1,Attack big1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Large,1; },{},{}
-4937,ATK_MEDIUM1,Attack mid1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Medium,1; },{},{}
-4938,ATK_SMALL1,Attack small1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Small,1; },{},{}
-4939,Critical2,CRI Lv2,6,10,,,,,,,,,,,,,,,{ bonus bCritical,2; },{},{}
-4940,Critical3,CRI Lv3,6,10,,,,,,,,,,,,,,,{ bonus bCritical,4; },{},{}
-4941,Critical4,CRI Lv4,6,10,,,,,,,,,,,,,,,{ bonus bCritical,6; },{},{}
-4942,Dodge1,Parrying Lv1,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,2; },{},{}
-4943,Dodge2,Parrying Lv2,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,4; },{},{}
-4944,Dodge3,Parrying Lv3,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,5; },{},{}
-4945,Thrift1,Economy Lv1,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-2; },{},{}
-4946,Thrift2,Economy Lv2,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-4; },{},{}
-4947,Thrift3,Economy Lv3,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-6; },{},{}
-4948,Skill_Delay1,After Skill Delay Lv1,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-2; },{},{}
-4949,Skill_Delay2,After Skill Delay Lv2,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-4; },{},{}
-4950,Skill_Delay3,After Skill Delay Lv3,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-6; },{},{}
-4951,Darkness_Drop,Darkness Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1; },{},{}
-4952,Fire_Drop,Fire Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1; },{},{}
-4953,Water_Drop,Water Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1; },{},{}
-4954,Earth_Drop,Earth Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1; },{},{}
-4955,Holy_Drop,Holy Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1; },{},{}
-4956,Recovery_Drop,Recovery Drop,6,0,,,,,,,,,,,,,,,{ 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% */ },{},{}
-4957,Famitsus_Power,Famitsu's Power,6,0,,,,,,,,,,,,,,,{ bonus bMaxHP,832; },{},{}
-4958,Gemini,Gemini,6,0,,,,,,,,,,,,,,,{ bonus bDelayrate,-1; },{},{}
-4959,Sagittarius,Sagittarius,6,0,,,,,,,,,,,,,,,{ bonus bLongAtkRate,1; },{},{}
-4960,Aquarius,Aquarius,6,0,,,,,,,,,,,,,,,{ bonus bUseSPrate,-2; },{},{}
-4961,Aries,Aries,6,0,,,,,,,,,,,,,,,{ bonus bMatk,10; },{},{}
-4962,Cancer,Cancer,6,0,,,,,,,,,,,,,,,{ bonus bAtk,3; },{},{}
-4963,Taurus,Taurus,6,0,,,,,,,,,,,,,,,{ bonus bAtk,4; bonus bHit,1; },{},{}
-4964,Capricorn,Capricorn,6,0,,,,,,,,,,,,,,,{ bonus2 bMagicAddRace,RC_All,3; },{},{}
-4965,Pisces,Pisces,6,0,,,,,,,,,,,,,,,{ bonus bVariableCastrate,-2; },{},{}
-4966,Scorpio,Scorpio,6,0,,,,,,,,,,,,,,,{ bonus2 bAddRace,RC_All,1; },{},{}
-4967,Leo,Leo,6,0,,,,,,,,,,,,,,,{ bonus bAspdRate,3; },{},{}
-4968,Virgo,Virgo,6,0,,,,,,,,,,,,,,,{ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; } },{},{}
-4969,Libra,Libra,6,0,,,,,,,,,,,,,,,{ 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% */ },{},{}
-4970,Fire_Property_Reactor,Fire Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Fire; },{},{}
-4971,Water_Property_Reactor,Water Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Water; },{},{}
-4972,Earth_Property_Reactor,Earth Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Earth; },{},{}
-4973,Wind_Property_Reactor,Wind Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Wind; },{},{}
-4974,Fire_Resistance_Reactor,Fire Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25; },{},{}
-4975,Water_Resistance_Reactor,Water Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25; },{},{}
-4976,Earth_Resistance_Reactor,Earth Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25; },{},{}
-4977,Wind_Resistance_Reactor,Wind Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25; },{},{}
-4978,Recovery_Reactor_101,Recovery Reactor 101,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000; },{},{}
-4979,Recovery_Reactor_102,Recovery Reactor 102,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000; },{},{}
-4980,Recovery_Reactor_201,Recovery Reactor 201,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50; },{},{}
-4981,Recovery_Reactor_202,Recovery Reactor 202,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50; },{},{}
-4982,STR_Supplement_Reactor,STR Supplement Reactor,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10); },{},{}
-4983,INT_Supplement_Reactor,INT Supplement Reactor,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10); },{},{}
-4984,DEF_Supplement_Reactor,DEF SupplementReactor,6,0,,,,,,,,,,,,,,,{ bonus bDef,100; },{},{}
-4985,PD_Supplement_Reactor,PD Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bFlee2,3; },{},{}
-4986,Attack_Supplement_Reactor,Attack Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bBaseAtk,20; },{},{}
-4987,Magic_Supplement_Reactor,Magic Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMatk,20; },{},{}
-4988,HP_Supplement_Reactor,HP Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMaxHPrate,5; },{},{}
-4989,SP_Supplement_Reactor,SP Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMaxSPrate,3; },{},{}
-4990,Frozen_Supplement_Reactor,Frozen Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bResEff,Eff_Freeze,10000; },{},{}
-4991,ASPD_Supplement_Reactor,ASPD Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bAspd,1; },{},{}
-4992,HPAbsorb1_Supplement_Reactor,HP Absorb Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bHPDrainRate,10,1; },{},{}
-4993,SPAbsorb1_Supplement_Reactor,SP Absorb Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSPDrainRate,10,1; },{},{}
-4994,Rune_of_Strength_Lv_1,Rune of Strength Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; } },{},{}
-4995,Rune_of_Strength_Lv_2,Rune of Strength Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; } },{},{}
-4996,Rune_of_Strength_Lv_3,Rune of Strength_Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-4997,Rune_of_Agility_Lv_1,Rune of Agility Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; } },{},{}
-4998,Rune_of_Agility_Lv_2,Rune of Agility Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; } },{},{}
-4999,Rune_of_Agility_Lv_3,Rune of Agility Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-//===================================================================
-// More Headgears
-//===================================================================
-5001,Headset,Headset,4,20,,200,,6,,0,0xFFFFFFFE,63,2,256,,1,1,87,{ bonus2 bResEff,Eff_Curse,1000; },{},{}
-5002,Gemmed_Crown,Jewel Crown,4,20,,600,,9,,0,0x000654E2,63,2,256,,60,1,88,{ bonus bInt,2; bonus bLuk,1; bonus bMdef,3; },{},{}
-5003,Joker_Jester,Joker Jester,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; },{},{}
-5004,Oxygen_Mask,Oxygen Mask,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,0,0,90,{ bonus2 bResEff,Eff_Poison,2000; },{},{}
-5005,Gas_Mask,Gas Mask,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{}
-5006,Machoman_Glasses,Machoman's Glasses,4,36000,,100,,1,,0,0xFFFFFFFE,63,2,512,,0,0,92,{},{},{}
-5007,Loard_Circlet,Grand Circlet,4,20,,200,,7,,0,0xFFFFFFFE,63,2,256,,55,1,93,{ bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; },{},{}
-5008,Puppy_Love,Puppy Love,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,94,{},{},{}
-5009,Safety_Helmet,Safety Helmet,4,20,,500,,7,,0,0xFFFFFFFE,63,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm; },{},{}
-5010,Indian_Hair_Piece,Indian Fillet,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,96,{},{},{}
-5011,Antenna,Aerial,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,97,{},{},{}
-5012,Ph.D_Hat,Ph.D Hat,4,20,,200,,5,,0,0xFFFFFFFE,63,2,256,,0,1,98,{},{},{}
-5013,Horn_Of_Lord_Kaho,Lord Kaho's Horn,4,20,,100,,30,,0,0xFFFFFFFF,63,2,256,,0,1,99,{ bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; },{},{}
-5014,Fin_Helm,Fin Helm,4,20,,300,,5,,0,0x00004082,63,2,512,,65,0,100,{},{},{}
-5015,Egg_Shell,Egg Shell,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,0,0,101,{},{},{}
-5016,Boy's_Cap,Boy's Cap,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,102,{},{},{}
-5017,Bone_Helm,Bone Helm,4,20,,800,,15,,0,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{}
-5018,Feather_Bonnet,Feather Bonnet,4,20,,300,,8,,0,0x00080808,63,2,256,,0,1,104,{ bonus bAgi,1; },{},{}
-5019,Corsair,Corsair,4,20,,500,,11,,0,0xFFFFFFFE,63,2,256,,0,1,105,{ bonus bVit,1; },{},{}
-5020,Kafra_Band,Kafra Band,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,106,{ bonus bMdef,3; },{},{}
-5021,Bankruptcy_Of_Heart,Grief for Greed,4,20,,1200,,8,,0,0x00040420,63,2,256,,38,1,107,{ bonus bInt,1; bonus bDex,1; },{},{}
-5022,Helm_Of_Sun,Hat of the Sun God,4,20,,2400,,4,,0,0x00CFDF80,63,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{}
-5023,Hat_Of_Bundle,Parcel Hat,4,20,,1000,,0,,0,0x00040420,63,2,256,,0,1,108,{},{},{}
-5024,Hat_Of_Cake,Cake Hat,4,20,,1000,,2,,0,0xFFFFFFFF,63,2,256,,0,1,109,{},{},{}
-5025,Helm_Of_Angel,Helm of Angel,4,20,,1600,,10,,0,0x00CFDF80,63,2,256,,74,1,110,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; },{},{}
-5026,Hat_Of_Cook,Chef Hat,4,20,,300,,3,,0,0xFFFFFFFE,63,2,256,,50,1,111,{ bonus bDex,1; },{},{}
-5027,Wizardry_Hat,Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5028,Candle,Candle,4,20,,150,,0,,0,0xFFFFFFFF,63,2,256,,0,1,113,{},{},{}
-5029,Spore_Hat,Spore Hat,4,20,,900,,6,,0,0xFFFFFFFE,63,2,256,,20,1,114,{},{},{}
-5030,Panda_Cap,Panda Hat,4,20,,800,,6,,0,0xFFFFFFFE,63,2,256,,40,1,115,{},{},{}
-5031,Mine_Helm,Mine Hat,4,20,,1500,,9,,0,0x0006D5F2,63,2,256,,55,1,116,{ bonus bDex,2; },{},{}
-5032,Picnic_Hat,Sunday Hat,4,20,,800,,1,,0,0xFFFFFFFE,63,2,256,,0,1,117,{},{},{}
-5033,Smokie_Hat,Raccoon Hat,4,20,,900,,6,,0,0xFFFFFFFE,63,2,256,,50,1,118,{},{},{}
-5034,Light_Bulb_Band,Bulb Band,4,20,,500,,0,,0,0xFFFFFFFE,63,2,256,,0,1,119,{},{},{}
-5035,Poring_Hat,Poring Hat,4,20,,700,,3,,0,0xFFFFFFFE,63,2,256,,38,1,120,{},{},{}
-5036,Cross_Band,Cross Hat,4,20,,250,,2,,0,0xFFFFFFFE,63,2,256,,10,1,121,{},{},{}
-5037,Fruit_Shell,Nut Shell,4,20,,150,,8,,0,0xFFFFFFFF,63,2,256,,5,0,122,{},{},{}
-5038,Deviruchi_Cap,Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,123,{ bonus bStr,1; bonus bInt,1; },{},{}
-5039,Mottled_Egg_Shell,Rainbow Eggshell,4,20,,400,,8,,0,0xFFFFFFFF,63,2,256,,19,0,124,{},{},{}
-5040,Blush,Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,125,{},{},{}
-5041,Heart_Hair_Pin,Heart Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,126,{},{},{}
-5042,Hair_Protector,Bao Bao,4,20,,150,,0,,0,0xFFFFFFFE,63,2,256,,14,1,127,{},{},{}
-5043,Opera_Ghost_Mask,Opera Phantom Mask,4,20,,200,,2,,0,0xFFFFFFFE,63,2,512,,20,0,128,{},{},{}
-5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,4,,0,0xFFFFFFFF,63,2,256,,45,1,129,{ bonus bVit,1; },{},{}
-5045,Magician_Hat,Magician Hat,4,20,,500,,6,,0,0x00818314,63,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; },{},{}
-5046,Bongun_Hat,Bongun Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,769,,0,0,139,{},{},{}
-5047,Fashion_Sunglass,Fashionable Glasses,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,0,1,131,{},{},{}
-5048,First_Moon_Hair_Pin,Cresent Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,132,{},{},{}
-5049,Stripe_Band,Striped Hairband,4,20,,150,,1,,0,0xFFFFFFFF,63,2,256,,0,0,133,{},{},{}
-5050,Mystery_Fruit_Shell,Wonder Nutshell,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,30,0,134,{},{},{}
-5051,Kitty_Bell,Pussy Cat Bell,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,135,{},{},{}
-5052,Blue_Hair_Band,Blue Hairband,4,20,,150,,2,,0,0xFFFFFFFF,63,2,256,,0,1,136,{},{},{}
-5053,Spinx_Helm,Sphinx Hat,4,20,,3000,,5,,0,0x00004082,63,2,257,,65,0,137,{ bonus bStr,2; },{},{}
-5054,Assassin_Mask,Assassin Mask,4,20,,100,,0,,0,0x00001100,63,2,1,,70,0,180,{},{},{}
-5055,Novice_Egg_Cap,Novice False Eggshell,4,1,,1,,6,,0,0x00000001,63,2,256,,0,0,101,{},{},{}
-5056,Love_Berry,Fruit of Love,4,1,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,0,140,{},{},{}
-5057,Ear_Of_Black_Cat,Black Cat Ears,4,16000,,200,,4,,0,0xFFFFFFFF,63,2,256,,45,1,141,{},{},{}
-5058,Drooping_Kitty,Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{}
-5059,Brown_Bear_Cap,Teddybear Hat,4,20,,800,,6,,0,0xFFFFFFFF,63,2,256,,50,1,143,{},{},{}
-5060,Party_Hat,Party Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bLuk,1; },{},{}
-5061,Flower_Hairpin,Flower Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,145,{},{},{}
-5062,Straw_Hat,Straw Hat,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,50,1,146,{ bonus bAgi,1; },{},{}
-5063,Plaster,Giant Band Aid,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,1,147,{},{},{}
-5064,Leaf_Headgear,Smokie Leaf,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,148,{},{},{}
-5065,Fish_On_Head,Blue Fish,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus2 bAddRace,RC_Fish,10; },{},{}
-5066,Horn_Of_Succubus,Succubus Horn,4,20,,800,,7,,0,0xFFFFFFFE,63,2,256,,70,1,150,{ bonus bInt,1; bonus bMdef,10; },{},{}
-5067,Sombrero,Sombrero,4,20,,350,,8,,0,0xFFFFFFFE,63,2,256,,0,1,151,{ bonus bAgi,1; },{},{}
-5068,Ear_Of_Devil's_Wing,Evil Wing Ears,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,70,0,152,{ bonus bStr,1; },{},{}
-5069,Mask_Of_Fox,Kitsune Mask,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,153,{ bonus bAgi,1; bonus bLuk,1; },{},{}
-5070,Headband_Of_Power,Hot-blooded Headband,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,154,{ bonus bStr,2; },{},{}
-5071,Indian_Headband,Indian Headband,4,20,,200,,2,,0,0xFFFFFFFE,63,2,256,,0,1,155,{ bonus bDex,1; },{},{}
-5072,Inccubus_Horn,Incubus Horn,4,20,,800,,7,,0,0xFFFFFFFE,63,2,256,,70,1,156,{ bonus bAgi,1; bonus bMdef,10; },{},{}
-5073,Cap_Of_Concentration,Model Training Hat,4,20,,700,,5,,0,0xFFFFFFFE,63,2,256,,0,1,157,{ bonus bDex,2; },{},{}
-5074,Ear_Of_Angel's_Wing,Angel Wing Ears,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,70,0,158,{ bonus bStr,1; },{},{}
-5075,Cowboy_Hat,Cowboy Hat,4,20,,500,,8,,0,0xFFFFFFFF,63,2,256,,0,1,159,{},{},{}
-5076,Fur_Hat,Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,160,{ bonus bLuk,1; },{},{}
-5077,Tulip_Hairpin,Tulip Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,161,{},{},{}
-5078,Sea_Otter_Cap,Sea-Otter Hat,4,20,,800,,6,,0,0xFFFFFFFF,63,2,256,,50,1,162,{ bonus bVit,1; },{},{}
-5079,Crossed_Hair_Band,X Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,163,{},{},{}
-5080,Headgear_Of_Queen,Crown of Ancient Queen,4,20,,400,,8,,0,0xFFFFFFFF,63,2,256,,45,1,164,{},{},{}
-5081,Mistress_Crown,Crown of Mistress,4,20,,100,,2,,0,0xFFFFFFFE,63,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; },{},{}
-5082,Mushroom_Band,Decorative Mushroom,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,166,{},{},{}
-5083,Red_Tailed_Ribbon,Red Ribbon,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,45,1,167,{ bonus bMdef,10; },{},{}
-5084,Lazy_Raccoon,Lazy Smokie,4,20,,500,,2,,0,0xFFFFFFFE,63,2,256,,0,1,168,{ bonus2 bResEff,Eff_Sleep,2000; },{},{}
-5085,Pair_Of_Red_Ribbon,Small Ribbons,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{}
-5086,Alarm_Mask,Alarm Mask,4,20,,100,,2,,0,0xFFFFFFFE,63,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,5000; },{},{}
-5087,Goblin_Mask_01,Poker Face,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,171,{},{},{}
-5088,Goblin_Mask_02,Surprised Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,172,{},{},{}
-5089,Goblin_Mask_03,Annoyed Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,173,{},{},{}
-5090,Goblin_Mask_04,Goblin Leader Mask,4,20,,100,,2,,0,0xFFFFFFFF,63,2,513,,0,0,174,{},{},{}
-5091,Big_Golden_Bell,Decorative Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,63,2,768,,35,1,175,{},{},{}
-5092,Blue_Coif,Coif,4,150000,,300,,5,,0,0x00001100,63,2,768,,65,1,176,{},{},{}
-5093,Blue_Coif_,Coif,4,150000,,300,,5,,1,0x00001100,63,2,768,,65,1,177,{ bonus bMaxSP,100; },{},{}
-5094,Orc_Hero_Helm,Helmet of Orc Hero,4,500000,,900,,5,,0,0xFFFFFFFE,63,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; },{},{}
-5095,Orc_Hero_Helm_,Helmet of Orc Hero,4,800000,,1000,,5,,1,0xFFFFFFFE,63,2,768,,55,1,179,{ bonus bStr,2; bonus bVit,1; },{},{}
-5096,Assassin_Mask_,Assassin Mask,4,20,,100,,1,,0,0x00001100,63,2,1,,70,0,180,{},{},{}
-5097,Cone_Hat_,Holiday Hat,4,0,,400,,0,,0,0xFFFFFFFF,63,2,256,,0,1,144,{},{},{}
-5098,Tiger_Mask,Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; bonus bMaxHP,100; },{},{}
-5099,Cat_Hat,Neko Mimi,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; },{},{}
-5100,Sales_Signboard,Sales Banner,4,20,,800,,0,,0,0xFFFFFFFF,63,2,256,,75,1,183,{ bonus bStr,1; bonus bAgi,1; bonus bLuk,1; },{},{}
-5101,Takius_Blindfold,Takius's Blindfold,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,0,0,184,{},{},{}
-5102,Round_Eyes,Blank Eyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,185,{},{},{}
-5103,Sunflower_Hairpin,Sunflower Hairpin,4,20,,600,,2,,0,0xFFFFFFFE,63,2,256,,30,0,186,{ bonus bAgi,2; bonus bCritical,5; },{},{}
-5104,Dark_Blindfold,Dark Blinder,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{}
-5105,Hat_Of_Cake_,2nd Anniversary Hat,4,20,,1000,,2,,0,0xFFFFFFFF,63,2,256,,24,1,109,{ bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; },{},{}
-5106,Cone_Hat_INA,2nd Anniversary Hat,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,1,0,144,{ bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3; },{},{}
-5107,Well_Baked_Toast,Crunch Toast,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,188,{},{},{}
-5108,Detective_Hat,Renown Detective's Cap,4,20,,350,,6,,1,0xFFFFFFFF,63,2,256,,0,1,189,{},{},{}
-5109,Red_Bonnet,Red Bonnet,4,20,,400,,4,,0,0xFFFFFFFF,63,2,256,,0,1,190,{},{},{}
-5110,Baby_Pacifier,Baby Pacifier,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,191,{},{},{}
-5111,Galapago_Cap,Galapago Cap,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,55,1,192,{ bonus2 bAddMonsterDropItem,605,100; },{},{}
-5112,Super_Novice_Hat,Super Novice Hat,4,8500,,400,,8,,0,0x00000001,63,2,256,,40,1,193,{ bonus bAllStats,1; },{},{}
-5113,Angry_Mouth,Angry Snarl,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,194,{},{},{}
-5114,Fedora,Bucket Hat,4,6000,,300,,6,,0,0xFFFFFFFF,63,2,256,,0,1,195,{},{},{}
-5115,Winter_Hat,Winter Hat,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,196,{ bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5116,Banana_Hat,Banana Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,197,{ bonus3 bAutoSpell,"SM_PROVOKE",3,30; },{},{}
-5117,Mistic_Rose,Mystic Rose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,198,{ bonus2 bSubRace,RC_Plant,2; },{},{}
-5118,Ear_Of_Puppy,Puppy Headband,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,199,{},{},{}
-5119,Super_Novice_Hat_,Super Novice Hat,4,8500,,400,,8,,1,0x00000001,63,2,256,,40,1,193,{ bonus bAllStats,1; },{},{}
-5120,Fedora_,Bucket Hat,4,6000,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,195,{},{},{}
-5121,Zherlthsh_Mask,Zealotus Mask,4,20,,400,,3,,0,0xFFFFFFFE,63,2,768,,70,1,200,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5122,Magni_Cap,Magni's Cap,4,30000,,1000,,9,,0,0xFFFFFFFE,63,2,256,,65,1,250,{ bonus bStr,2; },{},{}
-5123,Ulle_Cap,Ulle's Cap,4,30000,,500,,6,,1,0xFFFFFFFE,63,2,256,,65,1,254,{ bonus bDex,2; bonus bAgi,1; },{},{}
-5124,Fricca_Circlet,Fricca's Circlet,4,30000,,300,,6,,0,0xFFFFFFFE,63,2,256,,65,1,251,{ bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; },{},{}
-5125,Kiss_Of_Angel,Angel's Kiss,4,10000,,300,,6,,1,0x00000001,63,2,256,,50,1,255,{ bonus bSPrecovRate,3; },{},{}
-5126,Morpheus's_Hood,Morpheus's Hood,4,30000,,200,,3,,0,0xFFFFFFFE,63,2,256,,33,1,256,{ bonus bInt,2; },{},{}
-5127,Morrigane's_Helm,Morrigane's Helm,4,30000,,500,,8,,0,0xFFFFFFFE,63,2,256,,61,1,257,{ bonus bLuk,2; bonus bBaseAtk,3; },{},{}
-5128,Goibne's_Helmet,Goibne's Helm,4,30000,,500,,10,,0,0xFFFFFFFE,63,2,256,,54,1,258,{ bonus bVit,3; bonus bMdef,3; },{},{}
-5129,Bird_Nest,Bird Nest,4,20,,400,,2,,0,0xFFFFFFFF,63,2,256,,55,0,201,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; },{},{}
-5130,Lion_Mask,Lion Mask,4,20,,700,,0,,0,0x00CFDF80,63,2,768,,75,1,202,{ bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; },{},{}
-5131,Close_Helmet,Close Helmet,4,20,,1200,,8,,0,0x00004082,63,2,769,,75,1,203,{ bonus bVit,3; bonus bMaxHPrate,3; },{},{}
-5132,Angeling_Hat,Angeling Hat,4,20,,700,,5,,0,0xFFFFFFFF,63,2,256,,0,0,204,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5133,Sheep_Hat,Sheep Hat,4,20,,150,,3,,0,0x00008110,63,2,256,,0,0,205,{ bonus bShortWeaponDamageReturn,5; },{},{}
-5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,206,{},{},{}
-5135,Cyclops_Visor,Cyclop's Eye,4,0,,200,,0,,0,0xFFFFFFFE,63,2,512,,75,0,207,{ bonus bMaxSP,50; },{},{}
-5136,Santa's_Hat_,Antonio's Santa Hat,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; },{},{}
-5137,Alice_Doll,Alice Doll,4,20,,500,,1,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{}
-5138,Magic_Eyes,Magic Eyes,4,20,,300,,3,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; },{},{}
-5139,Hibiscus,Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bDex,1; bonus bInt,1; bonus bMdef,5; },{},{}
-5140,Charming_Ribbon,Charming Ribbon,4,20,,400,,2,,1,0xFFFFFFFF,63,2,256,,10,1,211,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; },{},{}
-5141,Marionette_Doll,Marionette Doll,4,20,,400,,1,,1,0xFFFFFFFE,63,2,256,,30,1,212,{ bonus bStr,1; },{},{}
-5142,Crescent_Helm,Crescent Helm,4,20,,3000,,20,,1,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5143,Kabuki_Mask,Kabuki Mask,4,20,,1000,,5,,1,0xFFFFFFFE,63,1,769,,30,1,214,{ bonus2 bResEff,Eff_Silence,3000; },{},{}
-5144,Gambler_Hat,Gambler Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,16,{ bonus bLuk,5; },{},{}
-5145,Carnival_Joker_Jester,Carnival Joker Jester,4,10,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,89,{ bonus bAllStats,3; },{},{}
-5146,Elephant_Hat,Elephant Hat,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,215,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1; },{},{}
-5147,Baseball_Cap,Baseball Cap,4,0,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{}
-5148,Phrygian_Cap,Phrygian Cap,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bInt,2; },{},{}
-5149,Silver_Tiara,Silver Tiara,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,218,{ bonus bInt,2; },{},{}
-5150,Joker_Jester_,Joker Jester,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,219,{ bonus bSpeedRate,25; },{},{}
-5151,Headset_OST,Note Headphones,4,20,,200,,4,,1,0xFFFFFFFF,63,2,768,,0,1,220,{ bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5152,Chinese_Crown,Chinese Crown,4,20,,2000,,2,,0,0xFFFFFFFF,63,2,768,,1,1,221,{ bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; },{},{}
-5153,Angeling_Hairpin,Angeling Hairpin,4,20,,700,,5,,0,0xFFFFFFFF,63,2,256,,0,1,222,{ bonus bFlee,5; },{},{}
-5154,Sunglasses_F,Father's Sunglasses,4,20,,100,,4,,0,0xFFFFFFFF,63,2,512,,0,0,12,{},{},{}
-5155,Granpa_Beard_F,Father's White Moustache,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus bBaseAtk,20; },{},{}
-5156,Flu_Mask_F,Father's Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus bMatkRate,1; },{},{}
-5157,Viking_Helm_,Orc Helm,4,20,,500,,9,,1,0x000654E2,63,2,256,,0,1,86,{},{},{}
-5158,Holy_Bonnet_,Monk Hat,4,30000,,100,,10,,1,0x00008110,63,2,256,,0,1,35,{ bonus bMdef,3; },{},{}
-5159,Golden_Gear_,Golden Gear,4,20,,900,,9,,1,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{}
-5160,Magestic_Goat_,Majestic Goat,4,20,,800,,9,,1,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,1; },{},{}
-5161,Sharp_Gear_,Spiky Band,4,20,,1000,,12,,1,0x0066D5F2,63,2,256,,50,1,43,{},{},{}
-5162,Bone_Helm_,Bone Helm,4,20,,800,,15,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{}
-5163,Corsair_,Corsair,4,20,,500,,10,,1,0xFFFFFFFE,63,2,256,,0,1,105,{ bonus bVit,1; },{},{}
-5164,Tiara_,Tiara,4,20,,400,,7,,1,0xFFFFFFFE,63,0,256,,45,1,19,{ bonus bInt,1; },{},{}
-5165,Crown_,Crown,4,20,,400,,7,,1,0xFFFFFFFE,63,1,256,,45,1,45,{ bonus bInt,1; },{},{}
-5166,Spinx_Helm_,Sphinx Hat,4,20,,3000,,5,,1,0x00004082,63,2,257,,65,0,137,{ bonus bStr,2; },{},{}
-5167,Munak_Turban_,Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{}
-5168,Bongun_Hat_,Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,139,{},{},{}
-5169,Bride_Mask,Bride Mask,4,30000,,500,,4,,1,0xFFFFFFFF,63,2,768,,40,1,223,{ if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } },{},{}
-5170,Feather_Beret,Feather Beret,4,30000,,600,,1,,0,0xFFFFFFFE,63,2,256,,0,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5171,Valkyrie_Helm,Valkyrie Helm,4,100000,,1000,,10,,1,0xFFFFFFFE,18,2,256,,0,1,225,{ bonus bMdef,5; },{},{}
-5172,Beret,Beret,4,30000,,700,,0,,0,0xFFFFFFFF,63,2,256,,0,0,226,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5173,Satto_Hat,Magistrate Hat,4,30000,,400,,6,,1,0xFFFFFFFF,63,2,256,,60,1,227,{ if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } },{},{}
-5174,Ayam,Ayam,4,30000,,400,,6,,1,0xFFFFFFFF,63,2,256,,60,1,228,{ if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } },{},{}
-5175,Censor_Bar,Censor Bar,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,229,{ bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; },{},{}
-5176,Hahoe_Mask,Hahoe Mask,4,30000,,100,,2,,0,0xFFFFFFFF,63,2,513,,30,0,230,{ if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } },{},{}
-5177,Guardian_Lion_Mask,Mythical Lion Mask,4,30000,,500,,5,,1,0xFFFFFFFF,63,2,768,,40,1,231,{ if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } },{},{}
-5178,Candle_,Candle,4,20,,150,,0,,0,0xFFFFFFFF,63,2,256,,0,1,113,{ bonus bAllStats,1; },{},{}
-5179,Gold_Tiara,Golden Tiara,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bInt,2; },{},{}
-5180,Phrygian_Cap_,France Holiday Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bVit,1; },{},{}
-5181,Helm_Of_Darkness,Helm of Darkness,4,20,,500,,3,,1,0x000654E2,63,2,768,,50,1,233,{ bonus bStr,2; },{},{}
-5182,Puppy_Hat,Puppy Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); },{},{}
-5183,Bird_Nest_Hat,Bird Nest Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,10,1,235,{ bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; },{},{}
-5184,Captain_Hat,Captain's Hat,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,30,1,236,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-5185,Laurel_Wreath,Laurel Wreath,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,10,1,237,{ bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; },{},{}
-5186,Geographer_Band,Geographer Band,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,238,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; },{},{}
-5187,Twin_Ribbon,Twin Ribbon,4,20,,200,,6,,1,0xFFFFFFFF,63,2,256,,30,1,239,{ bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; },{},{}
-5188,Minstrel_Hat,Wandering Minstrel Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,240,{ bonus bInt,1; bonus bDex,1; },{},{}
-5189,Fallen_Leaves,Autumn Leaves,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,241,{ bonus bMaxHP,40; bonus bMaxSP,40; },{},{}
-5190,Baseball_Cap_,Independence Memorial Hat,4,20,,20,,3,,1,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{}
-5191,Ribbon_Black,Black Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,242,{ bonus bInt,1; bonus bMdef,3; },{},{}
-5192,Ribbon_Yellow,Yellow Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,243,{ bonus bMdef,3; },{},{}
-5193,Ribbon_Green,Green Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-5194,Ribbon_Pink,Pink Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,245,{ bonus bMdef,3; },{},{}
-5195,Ribbon_Red,Red Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,246,{ bonus bMdef,3; },{},{}
-5196,Ribbon_Orange,Orange Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,247,{ bonus bMdef,3; },{},{}
-5197,Ribbon_White,White Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,248,{ bonus bMdef,3; },{},{}
-5198,Drooping_Bunny,Drooping Bunny,4,10,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5199,Baseball_Cap_I,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{}
-5200,Coppola,Coppola,4,10,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,252,{},{},{}
-5201,Party_Hat_B,Party Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bAllStats,3; },{},{}
-5202,Pumpkin_Hat_,Fantastic Pumpkin-Head,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; },{},{}
-5203,Tongue_Mask,Smiling Mask,4,20,,200,,2,,0,0xFFFFFFFF,63,2,513,,0,0,253,{ bonus bSpeedRate,25; },{},{}
-5204,Event_Pierrot_Nose,Rudolph's Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{}
-5205,Wreath,Emperor's Laurel Crown,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,768,,0,1,261,{ bonus bAllStats,1; bonus bMdef,3; },{},{}
-5206,Romantic_White_Flower,Romantic White Flower,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-5207,Gold_Spirit_Chain,Angel Blessing,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,260,{ bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; },{},{}
-5208,Rideword_Hat,Rideword Hat,4,20,,300,,3,,1,0xFFFFFFFE,63,2,256,,40,1,262,{ .@i = (getrefine()>8)?2:1; bonus2 bHPDrainRate,50,8*.@i; bonus2 bSPDrainRate,10,4*.@i; bonus2 bHPLossRate,10,5000; },{},{}
-5209,Yellow_Baseball_Cap,Love Dad Cap,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,263,{},{},{}
-5210,Flying_Angel,Flapping Angel Wing,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; },{},{}
-5211,Dress_Hat,Dress Hat,4,0,,200,,3,,1,0xFFFFFFFF,63,2,256,,20,1,265,{ 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; } },{},{}
-5212,Satellite_Hairband,Satellite Hairband,4,0,,1000,,6,,1,0xFFFFFFFF,63,2,256,,30,1,266,{ bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; },{},{ sc_end SC_RUWACH; }
-5213,Black_Bunny_Band,Sheila Hairnet,4,0,,200,,4,,0,0xFFFFFFFF,63,2,256,,1,1,267,{ bonus bAgi,2; bonus bMdef,3; },{},{}
-5214,Moonlight_Flower_Hat,Moonlight Flower Hat,4,0,,200,,3,,0,0xFFFFFFFF,63,2,768,,1,1,268,{ bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{}
-5215,Angelic_Chain_,Evolved Angel Wing,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,38,{ bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; },{},{}
-5216,Satanic_Chain_,Evolved Evil Wing,4,20,,100,,6,,0,0xFFFFFFFE,63,2,256,,0,1,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{}
-5217,Magestic_Goat_TW,Evolved Majestic Goat,4,20,,800,,10,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-5218,Bunny_Band_,Evolved Bunny Band,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-5219,Drooping_Kitty_,Evolved Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,142,{ bonus bMdef,18; bonus bFlee,3; },{},{}
-5220,Smoking_Pipe_,Evolved Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,5; },{},{}
-5221,Pair_Of_Red_Ribbon_,Evolved Pair of Red Ribbon,4,20,,100,,2,,0,0xFFFFFFFF,63,0,512,,45,0,169,{ bonus bFlee,5; },{},{}
-5222,Fish_On_Head_,Evolved Blue Fish,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bAgi,1; bonus bDex,1; },{},{}
-5223,Big_Golden_Bell_,Evolved Big Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,63,2,768,,35,1,175,{ bonus bAgi,2; },{},{}
-5224,Orc_Hero_Helm_TW,Evolved Orc Hero Helm,4,500000,,900,,5,,0,0xFFFFFFFE,63,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; },{},{}
-5225,Marcher_Hat,Parade Hat,4,20,,200,,4,,1,0xFFFFFFFF,63,2,256,,10,1,269,{ 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; },{},{}
-5226,Mini_Propeller_,Mini Propeller,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,270,{ bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); },{},{}
-5227,Red_Deviruchi_Cap,Red Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,271,{ bonus bStr,1; bonus bInt,1; },{},{}
-5228,White_Deviruchi_Cap,Gray Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-5229,Gray_Deviruchi_Cap,Brown Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,273,{ bonus bStr,1; bonus bInt,1; },{},{}
-5230,White_Drooping_Kitty,Gray Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,274,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5231,Gray_Drooping_Kitty,Brown Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,275,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5232,Pink_Drooping_Kitty,Pink Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,276,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5233,Blue_Drooping_Kitty,Blue Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,277,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5234,Yellow_Drooping_Kitty,Yellow Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,278,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{}
-5235,Gray_Fur_Hat,Brown Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,279,{ bonus bLuk,1; },{},{}
-5236,Blue_Fur_Hat,Blue Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,280,{ bonus bLuk,1; },{},{}
-5237,Pink_Fur_Hat,Pink Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-5238,Red_Wizardry_Hat,Red Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,282,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5239,White_Wizardry_Hat,Gray Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,283,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5240,Gray_Wizardry_Hat,Brown Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5241,Blue_Wizardry_Hat,Blue Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,285,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5242,Yellow_Wizardry_Hat,Yellow Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5243,Chullos,Shafka,4,20,,800,,2,,1,0xFFFFFFFF,63,2,768,,0,1,287,{ bonus2 bResEff,Eff_Freeze,1000; },{},{}
-5244,Elven_Blindfold,Elven Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,288,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5245,Elven_Sunglasses,Elven Sunglasses,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,289,{ bonus2 bResEff,Eff_Blind,500; },{},{}
-5246,Angelic_Helm,Angelic Helm,4,20,,700,,7,,0,0xFFFFFFFF,63,2,256,,0,1,290,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{}
-5247,Satanic_Helm,Satanic Helm,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,0,1,291,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{}
-5248,Robotic_Blindfold,Robotic Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,292,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5249,Human_Blindfold,Human Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,293,{ bonus2 bResEff,Eff_Blind,10000; },{},{}
-5250,Robotic_Ears,Robotic Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,0,0,294,{},{},{}
-5251,Round_Ears,Round Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,0,0,295,{},{},{}
-5252,Drooping_Nine_Tail,Drooping Ninetail,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,20,1,296,{ bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; },{},{}
-5253,Lif_Doll_Hat,Lif Doll Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,297,{ bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1; },{},{}
-5254,Deviling_Hat,Deviling Hat,4,20,,500,,6,,1,0xFFFFFFFF,63,2,256,,20,1,298,{ bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1; },{},{}
-5255,Triple_Poring_Hat,Triple Poring Hat,4,20,,600,,6,,0,0xFFFFFFFF,63,2,256,,20,0,299,{ bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; },{},{}
-5256,Valkyrie_Feather_Band,Valkyrie Feather Band,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,20,1,300,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; },{},{}
-5257,Soulless_Wing,Soul Ring,4,20,,300,,3,,0,0xFFFFFFFE,63,2,256,,20,1,301,{ bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; },{},{}
-5258,Afro_Wig,Afro Wig,4,20,,100,,0,,1,0xFFFFFFFF,63,2,768,,10,1,302,{ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; },{},{}
-5259,Elephant_Hat_,Elephant Hat,4,20,,500,,6,,0,0xFFFFFFFF,63,2,256,,0,1,215,{ bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; },{},{}
-5260,Cookie_Hat,Cookie Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; },{},{}
-5261,Silver_Tiara_,Silver Tiara,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,218,{ 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); },{},{}
-5262,Gold_Tiara_,Golden Tiara,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; },{},{}
-5263,Ati_Atihan_Hat,Pagdayaw,4,20,,100,,1,,0,0xFFFFFFFE,63,2,769,,20,1,303,{ bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300; },{},{}
-5264,Aussie_Flag_Hat,Australian Flag Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,304,{ bonus bAllStats,2; },{ specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2; },{}
-5265,Apple_Of_Archer_C,Apple of Archer,4,1,,0,,12,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-5266,Bunny_Band_C,Bunny Band,4,1,,0,,13,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5267,Sahkkat_C,Sakkat,4,1,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,67,{ bonus bAgi,3; },{},{}
-5268,Lord_Circlet_C,Grand Circlet,4,1,,0,,14,,0,0xFFFFFFFE,63,2,256,,1,0,93,{ bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; },{},{}
-5269,Flying_Angel_,Flapping Angel Wing,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; },{},{}
-5270,Fallen_Leaves_,Autumn Leaves,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,241,{ bonus bFlee2,5; },{},{}
-5271,Chinese_Crown_,Phoenix Crown,4,20,,500,,4,,1,0xFFFFFFFF,63,2,768,,0,1,221,{ bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); },{},{}
-5272,Tongue_Mask_,Tongue Mask,4,20,,100,,2,,0,0xFFFFFFFF,63,2,513,,0,0,253,{ bonus3 bAutoSpell,"SM_PROVOKE",5,50; },{},{}
-5273,Happy_Wig,Happy Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,305,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5274,Shiny_Wig,Shiny Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,306,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5275,Marvelous_Wig,Marvelous Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,307,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5276,Fantastic_Wig,Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5277,Yellow_Bandana,Yellow Bandana,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,20,1,309,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{}
-5278,Yellow_Ribbon,Yellow Ribbon,4,20,,100,,2,,0,0xFFFFFFFE,63,2,256,,20,1,310,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{}
-5279,Drooping_Kitty_C,Refined Drooping Cat,4,2,,0,,3,,0,0xFFFFFFFE,63,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{}
-5280,Magestic_Goat_C,Baphomet Horns,4,2,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-5281,Deviruchi_Cap_C,Refined Deviruchi Hat,4,2,,0,,4,,0,0xFFFFFFFE,63,2,256,,0,0,123,{ bonus bStr,1; bonus bInt,1; },{},{}
-5282,euRO_Baseball_Cap,Europe Baseball Cap,4,0,,200,,5,,1,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{}
-5283,Chick_Hat,Chick Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ 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,3; },{},{}
-5284,Water_Lily_Crown,Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; },{},{}
-5285,Vane_Hairpin,Vane Hairpin,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-5286,Pecopeco_Hairband,Pecopeco Hairband,4,20,,0,,6,,0,0xFFFFFFFF,63,2,256,,70,0,314,{ bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5; },{},{}
-5287,Vacation_Hat,Vacation Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-5288,Red_Glasses,Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-5289,Vanilmirth_Hat,Vanilmirth Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5; },{},{}
-5290,Drooping_Bunny_,Drooping Bunny,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5291,Kettle_Hat,Kettle Hat,4,20,,600,,8,,0,0xFFFFFFFF,63,2,256,,30,1,318,{ bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; },{},{}
-5292,Dragon_Skull,Dragon Skull,4,20,,800,,10,,0,0xFFFFFFFF,63,2,256,,50,1,319,{ bonus2 bSubRace,RC_Dragon,5; },{},{}
-5293,Ramen_Hat,Ramen Hat,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; },{},{}
-5294,Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{}
-5295,Golden_Bandana,Golden Bandana,4,20,,2400,,4,,0,0xFFFFFFFF,63,2,768,,0,0,138,{ bonus bMdef,4; },{},{}
-5296,Drooping_Nine_Tail_,Drooping Nine Tail,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,296,{ bonus bAgi,1; bonus bCritical,1; },{},{}
-5297,Soulless_Wing_,Soul Wing,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,0,1,301,{ bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; },{},{}
-5298,Marvelous_Wig_,Dokebi's Wig,4,20,,100,,1,,1,0xFFFFFFFF,63,2,768,,0,1,307,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; },{},{}
-5299,Ati_Atihan_Hat_,Pagdayaw,4,20,,100,,1,,1,0xFFFFFFFF,63,2,769,,1,0,303,{ bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{}
-5300,Bullock_Helm,Bullock Helm,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,45,1,322,{ bonus bMaxHP,100; },{},{}
-5301,Russian_Ribbon,Victory Hairband,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,323,{},{},{}
-5302,Lotus_Flower_Hat,Flower Lily,4,0,,100,,2,,0,0xFFFFFFFF,63,2,256,,30,1,324,{},{},{}
-5303,Flower_Coronet,Flower Crown,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,325,{ bonus bMdef,3; bonus bMaxSP,50; },{},{}
-5304,Cap_Of_Blindness,Cap Of Blindness,4,20,,800,,4,,1,0xFFFFFFFF,63,2,769,,30,1,326,{ bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; },{},{}
-5305,Pirate_Dagger,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,327,{ bonus bBaseAtk,5; },{},{}
-5306,Freyja_Crown,Freya's Crown,4,0,,500,,20,,0,0xFFFFFFFE,63,2,256,,0,0,328,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5307,Carmen_Miranda's_Hat,Carmen Miranda's Hat,4,20,,400,,10,,1,0xFFFFFFFF,63,2,256,,0,1,329,{ 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; },{},{}
-5308,Brazilian_Flag_Hat,Brazil National Flag Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,0,1,330,{ bonus bSpeedAddRate,25; },{},{}
-5309,Mahican,Wool Mask,4,20,,200,,1,,0,0xFFFFFFFF,63,2,769,,0,1,331,{ skill "RG_GRAFFITI",1; },{},{}
-5310,Bulb_Hairband,Shining Electric Bulb Hairband,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,332,{ bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; }
-5311,Large_Hibiscus,Large Hisbiscus,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,333,{ bonus bMdef,15; },{},{}
-5312,Ayothaya_Hat,Ayothaya King's Hat,4,20,,100,,5,,1,0x000654E2,63,2,256,,0,1,334,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5313,Diadem,Diadem,4,20,,100,,3,,1,0xFFFFFFFF,63,2,768,,0,1,335,{ bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3; },{},{}
-5314,Hockey_Mask,Hockey Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5315,Observer,Observer,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,35,0,337,{ skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/},{},{}
-5316,Umbrella_Hat,Umbrella Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,50,1,338,{ bonus2 bSubEle,Ele_Water,3; },{},{}
-5317,Fisherman_Hat,Fisherman's Hat,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,50,1,339,{ bonus3 bAutoSpell,"WZ_WATERBALL",3,50; },{},{}
-5318,Poring_Party_Hat,Poring Party Hat,4,20,,0,,2,,0,0xFFFFFFFF,63,2,256,,0,1,340,{ bonus bFlee,6; },{},{}
-5319,Hellomother_Hat,Hello Mother Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,341,{ bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine()); },{},{}
-5320,Champion_Wreath,Champion Wreath,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,0,1,261,{ bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; },{},{}
-5321,Indonesian_Bandana,Bandana Merah Putih,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,342,{ bonus2 bAddMonsterDropItem,518,300; },{},{}
-5322,Scarf,Kerchief,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,24,1,343,{ bonus bMdef,2; bonus bFlee,5; },{},{}
-5323,Misstrance_Crown,Misstrance Crown,4,20,,0,,14,,0,0xFFFFFFFF,63,2,256,,0,0,165,{ bonus bAllStats,2; },{},{}
-5324,Little_Angel_Doll,Little Angel Doll,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,10,1,344,{ bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; },{},{}
-5325,Robo_Eye,Robo Eye,4,20,,200,,2,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; },{},{}
-5326,Masquerade_C,Masquerade C,4,1,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; },{},{}
-5327,Orc_Hero_Helm_C,Refined Helmet of Orc Hero,4,1,,0,,10,,0,0xFFFFFFFE,63,2,768,,0,0,178,{ bonus bStr,5; bonus bVit,3; },{},{}
-5328,Evil_Wing_Ears_C,Evil Wing Ears C,4,1,,0,,4,,0,0xFFFFFFFF,63,2,512,,0,0,152,{ bonus bStr,1; },{},{}
-5329,Dark_Blindfold_C,Dark Blindfold C,4,1,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; },{},{}
-5330,kRO_Drooping_Kitty_C,kRO Drooping Kitty C,4,1,,0,,9,,0,0xFFFFFFFE,63,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000; },{},{}
-5331,Corsair_C,Corsair C,4,1,,0,,14,,0,0xFFFFFFFE,63,2,256,,0,0,105,{ bonus bVit,3; bonus bInt,3; },{},{}
-5332,Loki_Mask,Loki Mask,4,0,,200,,2,,0,0xFFFFFFFF,63,2,513,,20,0,346,{ bonus bFlee2,3; },{},{}
-5333,Radio_Antenna,Radio Antenna,4,0,,1500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,347,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; },{},{}
-5334,Angeling_Wanna_Fly,Flapping Angeling,4,0,,700,,5,,1,0xFFFFFFFF,63,2,256,,1,1,348,{ bonus bLuk,2; bonus bDex,1; },{},{}
-5335,Jumping_Poring,Jumping Poring,4,0,,300,,3,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm; },{},{}
-5336,Guildsman_Recruiter,Guildsman Recruiter Hat,4,,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,350,{},{},{}
-5337,Party_Recruiter_Hat,Party Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,351,{},{},{}
-5338,Bf_Recruiter_Hat,BF Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,352,{},{},{}
-5339,Friend_Recruiter_Hat,Friend Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,353,{},{},{}
-5340,Deprotai_Doll_Hat,Defolty Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,354,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0; },{},{}
-5341,Claris_Doll_Hat,Glaris Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,355,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bMagicHPGainValue,50; },{},{}
-5342,Sorin_Doll_Hat,Sorin Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,356,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-5343,Tayelin_Doll_Hat,Telling Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,357,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; },{},{}
-5344,Binit_Doll_Hat,Bennit Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,358,{ bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{}
-5345,Debril_Doll_Hat,W Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,359,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; },{},{}
-5346,Gf_Recruiter_Hat,GF Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,360,{},{},{}
-5347,Ph.D_Hat_,Ph.D Hat,4,20,,100,,5,,1,0xFFFFFFFE,63,2,256,,0,1,98,{},{},{}
-5348,Big_Sis'_Ribbon_,Big Ribbon,4,15000,,200,,3,,1,0xFFFFFFFE,63,2,256,,0,1,28,{ bonus bMdef,3; },{},{}
-5349,Boy's_Cap_,Boy's Cap,4,20,,100,,3,,1,0xFFFFFFFE,63,2,256,,0,1,102,{},{},{}
-5350,Pirate_Bandana_,Pirate Bandana,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,74,{ bonus bStr,1; },{},{}
-5351,Sunflower_,Sunflower,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{}
-5352,Poporing_Cap,Poporing Cap,4,20,,700,,4,,0,0xFFFFFFFE,63,2,256,,38,1,361,{},{},{}
-5353,Helm_Of_Sun_,Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,63,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,BF_WEAPON|BF_MAGIC,0; },{},{}
-5354,Muslim_Hat_M,Muslim Hat M,4,0,,100,,4,,0,0xFFFFFFFF,63,1,256,,0,0,362,{ bonus bVariableCastrate,-5; },{},{}
-5355,Muslim_Hat_F,Selendang,4,0,,100,,4,,0,0xFFFFFFFF,63,0,256,,0,0,363,{ bonus bVariableCastrate,-5; },{},{}
-5356,Pumpkin_Hat_H,Festival Pumpkin Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; },{},{}
-5357,Wings_Of_Victory,Wings Of Victory,4,20,,200,,10,,0,0xFFFFFFFF,63,2,768,,0,0,365,{ bonus bMdef,10; bonus bUnbreakableHelm; },{},{}
-5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{}
-5359,J_Captain_Hat,Ship Captain Hat,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,60,1,367,{ bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7; },{},{}
-5360,Whikebain_Ears,Hyuke's Black Cat Ears,4,20,,200,,4,,0,0xFFFFFFFE,63,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefRaceRate,RC_ALL,25; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_AGIUP; }"; },{},{}
-5361,Gang_Scarf,Gangster Scarf,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,369,{ bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; },{},{}
-5362,Ninja_Scroll,Ninja Scroll,4,20,,200,,0,,0,0xFFFFFFFF,63,2,1,,0,0,370,{ bonus bMatkRate,1; },{},{}
-5363,Helm_Of_Abyss,Helm Of Abyss,4,20,,1000,,9,,1,0x000654E2,63,2,256,,70,1,371,{ bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10; },{},{}
-5364,Dark_Snake_Lord_Hat,Evil Snake Lord Hat,4,20,,500,,4,,1,0xFFFFFFFF,63,2,256,,60,1,372,{ bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30; },{},{}
-5365,Fried_Egg,Magnolia Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,1,0,373,{ bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5; },{},{}
-5366,Hat_0f_King,Love Dad Bandana,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,374,{ bonus bAllStats,5; },{},{}
-5367,Hyegun_Hat,Hyegun Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,769,,10,0,375,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; },{},{}
-5368,White_Wing,White Wing,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,38,{ bonus2 bAddMonsterDropItem,12280,300; },{},{}
-5369,Dark_Wing,Dark Wing,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,39,{ bonus2 bAddMonsterDropItem,12279,300; },{},{}
-5370,Orchid_Hairband,Orchid Hairband,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,376,{ bonus bInt,1; },{},{}
-5371,Hat_Of_Judge,Judge Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,768,,0,1,377,{ bonus bLuk,1; bonus bMaxSP,30; },{},{}
-5372,Drooping_White_Kitty,Koneko Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,378,{ bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; },{},{}
-5373,Darkness_Helm,Dark Randgris Helm,4,20,,300,,2,,1,0xFFFFFFFF,63,2,768,,0,1,379,{ bonus bDex,3; bonus bMdef,1; },{},{}
-5374,L_Magestic_Goat,Gigantic Majestic Goat,4,20,,800,,10,,0,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-5375,L_Orc_Hero_Helm,Orc Hero Headdress,4,20,,900,,5,,1,0xFFFFFFFF,63,2,768,,0,1,381,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; },{},{}
-5376,Satanic_Chain_P,Flying Evil Wing,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,0,1,382,{ bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10; },{},{}
-5377,Antique_Pipe,Gentleman's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,383,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-5378,Rabbit_Ear_Hat,Bunny Top Hat,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,384,{ bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{}
-5379,Balloon_Hat,Tam,4,0,,800,,5,,1,0xFFFFFFFF,63,2,256,,50,1,385,{ bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); },{},{}
-5380,Fish_Head_Hat,Fish Head Hat,4,20,,400,,2,,0,0xFFFFFFFF,63,2,256,,0,1,386,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; },{},{}
-5381,Santa_Poring_Hat,Santa Poring Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,0,387,{ bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; },{},{}
-5382,Bell_Ribbon,Bell Ribbon,4,20,,200,,5,,1,0xFFFFFFFF,63,2,256,,0,1,388,{ bonus bVit,1; skill "AL_ANGELUS",1; },{},{ sc_end SC_ANGELUS; }
-5383,Hunting_Cap,Hunter's Cap,4,20,,250,,6,,1,0xFFFFFFFE,63,2,256,,50,1,389,{ bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,390,{ bonus bLuk,3; },{},{}
-5385,Yoyo_Hat,Yoyo Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,20,1,391,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; }
-5386,Ayam_,Ayam,4,0,,70,,7,,0,0xFFFFFFFF,63,2,256,,1,0,228,{ bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; },{},{}
-5387,Neko_Mimi_Kafra,Neko Mimi Kafra,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,1,392,{ 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; },{},{}
-5388,Snake_Head,Snake Head Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,30,1,393,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; },{},{}
-5389,Angel_Spirit,Angel Spirit,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,0,0,394,{ bonus bStr,2; bonus bHit,15; },{},{}
-5390,Santa_Hat_2,Frozen Twin Pompom,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,395,{ bonus2 bResEff,Eff_Freeze,3000; },{},{}
-5391,Toast_C,Toast,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,0,0,188,{ bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; },{},{}
-5392,Louyang_Cap,Luoyang NewYear Hat,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,396,{ bonus bLuk,2; },{},{}
-5393,Valentine_Hat,Love Valentine's Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,0,397,{ bonus bMaxSPrate,7; bonus bMaxHPrate,7; },{},{}
-5394,Bubblegum_Lower,Bubblegum,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,0,0,572,{ bonus2 bExpAddClass,Class_All,100; },{},{}
-5395,Tiraya_Bonnet,Striped Hat,4,20,,500,,6,,1,0xFFFFFFFF,63,2,256,,50,1,398,{ bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; },{},{}
-5396,Jasper_Crest,Jasper Crest,4,20,,700,,6,,1,0xFFFFFFFF,63,2,256,,0,1,399,{ 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; } },{},{}
-5397,Scuba_Mask,Scuba Gear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,400,{ bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm; },{},{}
-5398,Bone_Head,Bone Head,4,20,,1200,,10,,1,0x000444A2,18,2,256,,85,1,401,{ bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; },{},{}
-5399,Mandragora_Cap,Mandragora Cap,4,20,,300,,5,,1,0x00CFFF80,18,2,256,,85,0,402,{ bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; },{},{}
-5400,Fox_Hat,Fox Hat,4,20,,200,,0,,0,0xFFFFFFFF,63,0,769,,0,0,403,{ bonus bLuk,1; },{},{}
-5401,Black_Glasses,Black Frame Glasses,4,20,,200,,2,,0,0xFFFFFFFF,63,2,512,,70,0,404,{ bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{}
-5402,Mischievous_Fairy,Mischievous Fairy,4,10,,200,,2,,0,0xFFFFFFFF,63,2,512,,70,0,405,{ bonus bUnbreakableHelm; bonus bFlee2,3; },{},{}
-5403,Fish_In_Mouth,Fish In Mouth,4,10,,200,,0,,0,0xFFFFFFFF,63,2,1,,30,0,406,{ bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; },{},{}
-5404,Blue_Ribbon,Blue Ribbon,4,10,,100,,2,,1,0xFFFFFFFF,63,2,256,,45,1,407,{ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; },{},{}
-5405,Filir_Hat,Filir Hat,4,10,,200,,2,,0,0xFFFFFFFF,63,2,256,,80,0,408,{ bonus bShortWeaponDamageReturn,1; },{},{}
-5406,Academy_Freshman_Hat,Academy Freshman Hat,4,0,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,409,{ bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5; },{},{}
-5407,Academy_Graduating_Cap,Academy Completion Hat,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,410,{ bonus bMaxSP,30; },{},{}
-5408,Old_Bandanna,Old Bandana,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,6,{ bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10; },{},{}
-5409,New_Cowboy_Hat,Purple Cowboy Hat,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,0,1,411,{ bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; },{},{}
-5410,Bread_Bag2,Brown Paperbag Hat,4,20,,200,,6,,0,0xFFFFFFFF,63,2,769,,0,0,412,{ bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; },{},{}
-5411,White_Snake_Hat,White Snake Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,413,{ bonus bDex,2; },{},{}
-5412,Sweet_Candy,Sweet Candy,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,0,0,414,{ bonus bUnbreakableHelm; },{},{}
-5413,Popcorn_Hat,Pop Corn Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,0,415,{ bonus2 bSubEle,Ele_Wind,10; },{},{}
-5414,Campfire_Hat,Camp Fire Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,0,416,{ bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; },{},{}
-5415,Poring_Cake_Cap,Poring Cake Hat,4,20,,1000,,10,,0,0xFFFFFFFF,63,2,256,,40,1,417,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; },{},{}
-5416,Beer_Cap,Beer Hat,4,20,,600,,4,,0,0xFFFFFFFE,63,2,256,,18,1,418,{ bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; },{},{}
-5417,Crown_Parrot,Crown Parrots,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,0,419,{ bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{}
-5418,Soldier_Hat,Legionnaire Hat,4,20,,400,,8,,1,0xFFFFFFFF,63,2,256,,0,1,420,{ bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; },{},{}
-5419,Evolved_Leaf,Leaves Of Grass,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,57,{ bonus bVit,1; bonus2 bSubRace,RC_Plant,5; },{},{}
-5420,Mask_Of_Ifrit,Mask Of Ifrit,4,20,,800,,12,,1,0xFFFFFFFE,63,2,769,,50,0,421,{ 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; },{},{}
-5421,Ifrit's_Ear,Ears Of Ifrit,4,20,,300,,0,,0,0xFFFFFFFE,63,2,512,,50,0,422,{ 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; },{},{}
-5422,Linguistic_Book_Cap,Linguistic Book Hat,4,20,,70,,0,,0,0xFFFFFFFF,63,2,256,,0,1,423,{ bonus bInt,1; bonus bMdef,2; },{},{}
-5423,Lovecap_China,I Love China,4,20,,250,,10,,0,0xFFFFFFFF,63,2,256,,0,0,424,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5424,Fanta_Orange_Can,Fanta Orange Can Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,425,{},{},{}
-5425,Fanta_Grape_Can,Fanta Grape Can Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,426,{},{},{}
-5426,Karada_Meguri_Tea_Hat,Karada Meguricha Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,427,{ bonus bLuk,1; },{},{}
-5427,Royal_Milk_Tea_Hat,Black Tea Kochakaden Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,428,{ bonus bAgi,1; },{},{}
-5428,Bread_Bag1,RWC Anniversary Bread Envelope,4,,,100,,0,,0,0xFFFFFFFF,63,2,769,,0,1,429,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player,12; },{},{}
-5429,Bogy_Cap,Bogy Cap,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,430,{ bonus bHPrecovRate,5; bonus bSPrecovRate,5; },{},{}
-5430,Sacred_Torch_Coronet,Torch Cap,4,20,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,0,431,{ bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; },{},{}
-5431,Chicken_Hat,Chicken Hat,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,30,1,432,{ bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; },{},{}
-5432,Brazil_Baseball_Cap,bRO 4th Anniversary Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,433,{ if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4; },{},{}
-5433,Golden_Wreath,Golden Laurel,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,434,{},{},{}
-5434,Cola_Can,Cola Can,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,435,{},{},{}
-5435,Coke_Hat,Red Minstrel Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,40,1,436,{ bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if(.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-5)*10; } },{},{}
-5436,Bride's_Corolla,Bride's Corolla,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,437,{ bonus bLuk,3; bonus bMdef,2; },{},{}
-5437,Flower_Of_Fairy,Fairy Flower,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,438,{ bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; },{},{}
-5438,Fillet_Green,Cute Green Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,439,{ bonus bMaxSP,20; },{},{}
-5439,Fillet_Red,Cute Red Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,440,{ bonus bMaxSP,20; },{},{}
-5440,Fillet_Blue,Cute Blue Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,441,{ bonus bMaxSP,20; },{},{}
-5441,Fillet_White,Cute White Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,442,{ bonus bMaxSP,20; },{},{}
-5442,Necktie,Necktie,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,70,1,443,{ bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; },{},{}
-5443,Status_Of_Baby_Angel,Statue Of Baby Angel,4,20,,600,,6,,1,0xFFFFFFFF,63,2,256,,70,1,444,{ bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; },{},{}
-5444,Hair_Brush,Hair Brush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,445,{ bonus bCritical,6; },{},{}
-5445,Candy_Cane_In_The_Mouth,Candy Cane In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,446,{ bonus bMaxSP,5; },{},{}
-5446,Cat_Foot_Hairpin,Catfoot Hairpin,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,0,1,447,{ bonus bFlee,5; bonus bFlee2,3; },{},{}
-5447,Frog_Cap,Frog Hat,4,20,,500,,6,,0,0xFFFFFFFF,63,2,256,,70,1,448,{ bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; },{},{}
-5448,Solo_Play_Box1,Indifferent Solo Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,769,,0,1,449,{ skill "RG_GRAFFITI",1; },{},{}
-5449,Solo_Play_Box2,Angry Solo Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,769,,0,1,450,{ skill "RG_GRAFFITI",1; },{},{}
-5450,Sun_Cap,Solar Hat,4,20,,1000,,0,,0,0xFFFFFFFE,63,2,256,,20,1,451,{},{},{}
-5451,Dragonhelm_Gold,RWC 2008 Dragon Helm Gold,4,20,,2500,,14,,1,0xFFFFFFFF,63,2,256,,1,0,452,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5452,Dragonhelm_Silver,RWC 2008 Dragon Helm Silver,4,20,,2500,,10,,1,0xFFFFFFFF,63,2,256,,1,0,453,{ bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-5453,Dragonhelm_Copper,RWC 2008 Dragon Helm Copper,4,20,,2500,,5,,1,0xFFFFFFFF,63,2,256,,1,0,454,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; },{},{}
-5454,Dog_Cap_,Puppy Hat,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,0,1,234,{ 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; }"; },{},{}
-5455,Geographer_Band_,Decorative Geographer,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,0,1,238,{ bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; },{},{}
-5456,Vacation_Hat_,Summer Hat,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,1,315,{ bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; },{},{}
-5457,Spring_Rabbit_Hat,Moon Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,1,1,455,{ bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; } },{},{}
-5458,Pinwheel_Cap,Pinwheel Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,456,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-5459,Drooping_Bunny_Chusuk,Drooping Bunny,4,0,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{}
-5460,Adv_Dragon_Skull,Evolved Dragon Skull Hat,4,20,,1000,,14,,0,0xFFFFFFFF,63,2,256,,60,1,457,{ bonus bAllStats,2; bonus bMaxHPrate,3; },{},{}
-5461,Adv_Whisper_Mask,Evolved Whisper Mask,4,20,,300,,1,,0,0xFFFFFFFF,63,2,769,,50,1,458,{ bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20; },{},{}
-5462,Spiked_Scarf,Spiked Scarf,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,90,0,459,{ bonus bAtk,30; bonus bMaxHPrate,-2; },{},{}
-5463,Rainbow_Scarf,Rainbow Scarf,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,90,0,460,{ bonus bMatk,30; bonus bMaxSPrate,-2; },{},{}
-5464,Zaha_Doll_Hat,Zaha Doll Hat,4,20,,0,,1,,1,0xFFFFFFFF,63,2,256,,0,1,461,{ bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddRace,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 !\"; }"; },{},{}
-5465,Celestial_Hat,Hat Of Fortune,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,40,1,462,{ bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4; },{},{}
-5466,Wind_Milestone,Wind Milestone,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,463,{ bonus bAgi,2; skill "AL_TELEPORT",1; },{},{}
-5467,Helm_Of_Dragoon,Helm Of Dragon,4,20,,1000,,10,,1,0xFFFFFFFF,63,2,256,,1,1,464,{ 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; },{},{}
-5468,Parade_Cap,Parade Hat,4,20,,800,,3,,1,0xFFFFFFFF,63,2,256,,0,1,465,{ bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5); },{},{}
-5469,Noble_Hat,Musketeer Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,60,1,466,{ 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; } },{},{}
-5470,Eyes_Of_Darkness,Eye Of Darkness,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,50,0,467,{ bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; },{},{}
-5471,Hairband_Of_Reginleif,Hairband Of Reginleif,4,20,,800,,2,,0,0xFFFFFFFF,63,2,512,,50,0,468,{ bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; },{},{}
-5472,Red_White_Hat,Red Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,469,{ bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200; },{},{}
-5473,Forceps_Hairpin,Nipper Crab Hairpin,4,20,,500,,8,,0,0xFFFFFFFF,63,2,256,,30,1,470,{ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{}
-5474,Notice_Board,AFK Hat,4,20,,700,,2,,0,0xFFFFFFFF,63,2,256,,10,0,471,{},{},{}
-5475,Cube_Mask,Mask Cube,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,472,{ bonus bAllStats,1; },{},{}
-5476,Hairband_Of_Grandpeco,Grand Peco Hairband,4,20,,800,,5,,0,0xFFFFFFFF,63,2,768,,1,1,473,{ bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; },{},{}
-5477,Bro_Flag,Brazilian Flag Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,474,{ skill "SM_BASH",1; },{},{}
-5478,Classic_Hat,Classic Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,475,{ bonus bStr,2; bonus bMaxHP,300; },{},{}
-5479,Shaman's_Hair_Ornament,Shaman's Hair Decoration,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,1,1,476,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; },{},{}
-5480,Bizofnil_Wing_Deco,Bijofnil Wings,4,20,,1000,,6,,0,0xFFFFFFFF,63,2,256,,1,1,477,{ bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000; },{},{}
-5481,Hermose_Cap,Hermode Cap,4,20,,1000,,2,,1,0xFFFFFFFF,63,2,256,,1,1,478,{ bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; },{},{}
-5482,Dark_Knight_Mask,Dark Knight Mask,4,20,,3000,,5,,0,0xFFFFFFFF,63,2,769,,1,1,479,{ bonus bStr,3; },{},{}
-5483,Odin_Mask,Odin Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,1,0,480,{ bonus2 bSubClass,Class_Boss,2; },{},{}
-5484,Taiwan_Flag_Hat,Holidays Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,0,482,{ bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; },{},{}
-5485,Tiger_Face,Tiger Face,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,769,,60,1,483,{ bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; },{},{}
-5486,J_Anniversary_Hat,Anniversary Hat,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,0,1,395,{ bonus bAllStats,2; },{},{}
-5487,J_Poringcake_Hat,Poring Cake Hat,4,20,,500,,1,,0,0xFFFFFFFF,63,2,256,,0,1,417,{ bonus bLuk,2; },{},{}
-5488,J_Twin_Santahat,Twin Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,390,{ bonus bLuk,1; bonus bMdef,1; },{},{}
-5489,Love_Daddy,Love Daddy Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,484,{ bonus bDex,2; },{},{}
-5490,Anubis_Helm,Anubis Helm,4,20,,0,,8,,0,0xFFFFFFFF,63,2,768,,65,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{}
-5491,Hat_Of_Outlaw,Bandit Hat,4,20,,800,,3,,0,0xFFFFFFFF,63,2,256,,0,1,486,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,10; },{},{}
-5492,Boy's_Cap_I,Student Cap,4,0,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,102,{ bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5493,Ulle_Cap_I,Ulle's Cap,4,0,,0,,3,,0,0xFFFFFFFE,63,2,256,,0,0,254,{ bonus bDex,2; bonus bAgi,1; },{},{}
-5494,Spinx_Helm_I,Sphinx Hat,4,0,,0,,5,,0,0x00004082,63,2,257,,0,0,137,{ bonus bStr,5; },{},{}
-5495,Power_Of_Thor,Power Of Thor,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,0,1,493,{ bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; },{},{}
-5496,Dice_Hat,Dice Hat,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,50,0,494,{ bonus bLuk,4; },{},{}
-5497,King_Tiger_Doll_Hat,King Tiger Doll Hat,4,20,,400,,6,,1,0xFFFFFFFE,63,2,256,,1,1,495,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,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 !\"; }"; },{},{}
-5498,Wondering_Wolf_Helm,Wandering Wolf Helm,4,20,,600,,5,,1,0xFFFFFFFE,63,2,768,,1,1,490,{ bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; } },{},{}
-5499,Pizza_Hat,Pizza Hat,4,20,,600,,0,,0,0xFFFFFFFF,63,2,256,,0,0,487,{ skill "SM_PROVOKE",1; },{},{}
-5500,Icecream_Hat,Icecream Hat,4,0,,300,,6,,0,0xFFFFFFFF,63,2,256,,30,1,488,{ bonus bMdef,3; skill "MG_FROSTDIVER",3; },{},{}
-5501,Pirate's_Pride,Pirate's Pride,4,0,,100,,6,,0,0xFFFFFFFF,63,2,256,,10,0,496,{ bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; },{},{}
-5502,Necromencer's_Hood,Necromancer's Hood,4,0,,500,,6,,0,0xFFFFFFFF,63,2,768,,1,1,491,{ bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20; },{},{}
-5503,Rabbit_Magic_Hat,Rabbit Magic Hat,4,0,,800,,4,,0,0xFFFFFFFF,63,2,256,,0,1,497,{ bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; },{},{}
-5504,China_Wedding_Veil,Wedding Weil,4,20,,500,,5,,0,0xFFFFFFFF,63,2,768,,70,1,489,{ bonus bMdef,10; },{},{}
-5505,Asara_Fairy_Hat,Asara Fairy Hat,4,0,,500,,2,,0,0xFFFFFFFF,63,2,768,,50,1,492,{ skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; },{},{}
-5506,Blue_Pajamas_Hat,Blue Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,501,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{}
-5507,Pink_Pajamas_Hat,Pink Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,502,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{}
-5508,Shark_Hat,Shark Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,503,{ bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10; },{},{}
-5509,Sting_Hat,Sting hat,4,20,,1000,,10,,0,0xFFFFFFFF,63,2,256,,0,1,504,{ 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; },{},{}
-5510,Shower_Cap,Shower Cap,4,20,,0,,4,,0,0xFFFFFFFF,63,2,256,,0,1,507,{ bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; },{},{}
-5511,Samambaia,Samambaia,4,20,,200,,5,,1,0xFFFFFFFF,63,2,768,,1,1,508,{ bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10; },{},{}
-5512,Aquarius_Diadem,Aquarius Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,509,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } },{},{}
-5513,Aquarius_Crown,Aquarius Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,510,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } },{},{}
-5514,Pisces_Diadem,Pisces Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,511,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } },{},{}
-5515,Pisces_Crown,Pisces Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,512,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } },{},{}
-5516,Hawk_Eyes01,Hawk Eyes,4,10,,1000,,0,,0,0x00000800,18,2,512,,0,0,23,{ bonus bDex,1; bonus bLongAtkRate,3; },{},{}
-5517,Hawk_Eyes02,Hawk Eyes,4,10,,1000,,0,,0,0x00080808,63,2,512,,0,0,23,{ bonus bDex,1; },{},{}
-5518,L_Magestic_Goat2,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,513,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-5519,Peacock_Feather,Peacock Feather,4,20,,800,,4,,1,0xFFFFFFFF,63,2,256,,1,1,514,{ bonus bInt,2; },{},{}
-5520,Rabbit_Earplug,Rabbit Earplugs,4,,,400,,0,,1,0xFFFFFFFF,63,2,768,,1,1,515,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; },{},{}
-5521,Angry_Mouth_C,Angry Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,0,0,194,{ bonus bDelayRate,-3; },{},{}
-5522,Fanta_Zero_Lemon_Hat,Fanta Zero Lemon Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,516,{},{},{}
-5523,Sakura_Mist_Hat,Sakura Mist Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,517,{ bonus bDex,1; },{},{}
-5524,Sakura_Milk_Tea_Hat,Sakura Milk Tea Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,518,{ bonus bVit,1; },{},{}
-5525,First_Leaf_Tea_Hat,Flower Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,519,{ bonus bMaxHP,80; bonus bMaxSP,20; },{},{}
-5526,Lady_Tanee_Doll,Tanigumi Girl Doll,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,60,0,520,{ bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200; },{},{}
-5527,Lunatic_Hat,Lunatic Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,1,1,521,{ bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20; },{},{}
-5528,King_Frog_Hat,Frog King Hat,4,20,,500,,4,,1,0xFFFFFFFE,63,2,256,,30,0,522,{ bonus bAgi,1; },{},{}
-5529,Evil's_Bone_Hat,Satanic Bone Helm,4,20,,600,,6,,1,0xFFFFFFFF,63,2,768,,70,1,523,{ bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; },{},{}
-5530,Raven_Cap,Raven Cap,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,1,524,{},{},{}
-5531,B_Dragon_Hat,Baby Dragon Hat,4,45000,,100,,1,,1,0xFFFFFFFF,63,2,256,,0,1,525,{ bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; },{},{}
-5532,Pirate_Dagger_J,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,327,{ bonus bShortWeaponDamageReturn,1; },{},{}
-5533,Emperor_Wreath_J,Emperor Wreath,4,20,,800,,3,,1,0xFFFFFFFF,63,2,256,,80,1,261,{ bonus bAllStats,1; },{},{}
-5534,Fox_Hat_J,Fox Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,70,0,403,{ bonus bAgi,1; bonus bFlee2,2; },{},{}
-5535,Side_Cap,Side Cap,4,20,,500,,6,,0,0xFFFFFFFF,63,2,256,,0,1,529,{ bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-5536,Spare_Card,Spare Card,4,20,,10,,1,,0,0xFFFFFFFF,63,2,1,,1,0,526,{ bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30; },{},{}
-5537,Quati_Hat,Kwati Hat,4,20,,700,,2,,1,0xFFFFFFFF,63,2,256,,45,0,527,{ bonus bAgi,3; bonus2 bAddRace,RC_Plant,10; },{},{}
-5538,Tucan_Hat,Tucan Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,768,,45,0,528,{ bonus bDex,3; bonus bCritical,5; },{},{}
-5539,Jaguar_Hat,Jaguar Hat,4,20,,400,,4,,1,0xFFFFFFFF,63,2,769,,25,1,530,{ bonus bMdef,2; skill "MC_LOUD",1; },{},{}
-5540,Freyja_SCirclet7,Freyja SCirclet7,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5541,Freyja_SCirclet30,Freyja SCirclet30,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5542,Freyja_SCirclet60,Freyja SCirclet60,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5543,Freyja_SCirclet90,Freyja SCirclet90,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-5544,Time_Keeper_Hat,Time Keeper Hat,4,30000,,0,,6,,0,0xFFFFFFFF,63,2,256,,1,1,240,{ bonus bInt,2; bonus bMaxSP,50; },{},{}
-5545,Aries_Diadem,Aries Diadem,4,20,,400,,3,,1,0xFFFFFFFF,63,2,256,,1,1,531,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{}
-5546,Aries_Crown,Aries Crown,4,20,,400,,3,,1,0xFFFFFFFF,63,2,256,,1,1,532,{ bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; } },{},{}
-5547,RJC_Katusa,RJC Katusa Flower,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,0,1,533,{ 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; },{},{}
-5548,Scarlet_Rose,Scarlet Rose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,534,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30; },{},{}
-5549,Taurus_Diadem,Taurus Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,535,{ bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; } },{},{}
-5550,Taurus_Crown,Taurus Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,536,{ 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; } },{},{}
-5551,Holy_Egg_Hat,Holy Egg Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,1,537,{},{},{}
-5552,Fest_Lord_Circlet,Festival Grand Circlet,4,0,,0,,8,,0,0xFFFFFFFF,63,2,256,,0,0,93,{ bonus bStr,3; bonus bInt,3; bonus bMdef,3; },{},{}
-5553,Fest_Bunny_Band,Festival Bunny Band,4,0,,0,,7,,0,0xFFFFFFFF,63,2,256,,0,0,15,{ bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player,9; },{},{}
-5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,538,{ bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; },{},{}
-5555,Leaf_Cat_Hat,Leaf Cat Hat,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,1,539,{ bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{}
-5556,Fur_Seal_Hat,Seal Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,769,,55,1,540,{ bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100; },{},{}
-5557,Wild_Rose_Hat,Wild Rose Hat,4,20,,500,,6,,1,0xFFFFFFFE,63,2,256,,20,1,541,{ bonus bAgi,3; },{},{}
-5558,Saci_Hat,Luxury Hat,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,1,542,{ bonus3 bAddMonsterDropItem,510,RC_Plant,20; },{},{}
-5559,Piece_Of_White_Cloth_E,Piece Of White Cloth,4,0,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,1,543,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1; },{},{}
-5560,Bullock_Helm_J,Bullock Helm,4,20,,3000,,3,,0,0xFFFFFFFF,63,2,256,,75,1,322,{ 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; },{},{}
-5561,Rabbit_Magic_Hat_J,Magic Rabbit Hat,4,0,,800,,1,,0,0xFFFFFFFF,63,2,256,,0,1,497,{ 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; },{},{}
-5562,Good_Wedding_Veil_J,Luxurious Wedding Veil,4,0,,500,,0,,1,0xFFFFFFFF,63,2,768,,45,0,489,{ bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5; },{},{}
-5563,Dolor_Hat,Dolor Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,0,0,547,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,15; },{},{}
-5564,Crown_Of_Deceit,Crown of Deceit,4,20,,300,,3,,1,0xFFFFFFFF,63,2,768,,85,1,544,{ .@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; } },{},{}
-5565,Dragon_Arhat_Mask,Dragon Arhat Mask,4,0,,0,,5,,0,0xFFFFFFFF,63,2,513,,1,0,545,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; },{},{}
-5566,Tiger_Arhat_Mask,Tiger Arhat Mask,4,0,,0,,1,,0,0xFFFFFFFF,63,2,513,,1,0,546,{ bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player,2; },{},{}
-5567,Bright_Fury,Bright Fury,4,20,,300,,1,,1,0xFFFFFFFF,63,2,256,,1,1,548,{ bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; },{},{}
-5568,Rabbit_Bonnet,Rabbit Bonnet,4,20,,1000,,1,,0,0xFFFFFFFF,63,2,768,,0,1,549,{ bonus bInt,2; bonus bDelayRate,-3; },{},{}
-5569,Gemini_Diadem,Gemini Diadem,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,550,{ bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; } },{},{}
-5570,Gemini_Crown,Gemini Crown,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,551,{ bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; } },{},{}
-5571,Rasta_Wig,Rasta Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,552,{ bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50; },{},{}
-5572,Savage_Baby_Hat,Savage Babe Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,30,1,553,{ bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; },{},{}
-5573,Bogy_Horn,Dokebi Horn,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,75,1,554,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70; },{},{}
-5574,Pencil_In_Mouth,Well-Chewed Pencil,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,555,{ bonus bHit,3; },{},{}
-5575,Onigiri_Hat,Rice Ball Hat,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,0,556,{},{},{}
-5576,Japan_Winecup,Wine Cup,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,0,0,557,{},{},{}
-5577,Dark_Knight_MaskB,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,63,2,769,,80,1,479,{ bonus bDex,3; },{},{}
-5578,Voyage_Hat,Voyage Hat,4,200,,10,,1,,0,0xFFFFFFFF,63,2,256,,0,1,236,{ bonus bAgi,2; },{},{}
-5579,Wanderer's_Sakkat,Wanderer's Sakkat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,768,,1,1,558,{ bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,2; bonus bAgi,2; } if(.@r>=9){ bonus bCritical,10; bonus bAspdRate,8; } },{},{}
-5580,Red_Beret,Red Beret,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,559,{ bonus bAllStats,3; bonus bMdef,3; },{},{}
-5581,Cancer_Diadem,Cancer Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,560,{ bonus bInt,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower,3; bonus bMatkRate,2; } },{},{}
-5582,Cancer_Crown,Cancer Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,561,{ bonus bStr,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; bonus bFlee,10; } },{},{}
-5583,Para_Team_Hat,Eden Team Hat I,4,0,,0,,5,,0,0xFFFFFFFF,63,2,256,,7,1,465,{},{},{}
-5584,Majestic_Evil_Horn,Majestic Evil Horns,4,0,,400,,2,,0,0xFFFFFFFF,63,2,256,,1,1,562,{ 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;*/ },{},{}
-5585,Rune_Hairband,Rune Cloth Circlet,4,20,,400,,1,,1,0xFFFFFFFF,63,2,768,,1,1,564,{ bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5; },{},{}
-5586,Mosquito_Coil,Mosquito Coil,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,1,1,563,{ 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; },{},{}
-5587,Mosquito_Coil_1Use,Mosquito Coil,4,0,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,563,{},{},{}
-5588,Leo_Crown,Leo Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,565,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } },{},{}
-5589,Leo_Diadem,Leo Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,566,{ 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; }"; } },{},{}
-5590,K_Poring_Cake_Cap,Poring Cake Hat,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,417,{ bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50; },{},{}
-5591,Desert_Prince,Desert Prince,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,30,0,567,{ bonus bUnbreakableHelm; },{},{}
-5592,Sigrun's_Wing,Sigrun's Wings,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,80,0,568,{ 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; } },{},{}
-5593,K_Rabbit_Bonnet,Rabbit Bonnet,4,20,,200,,1,,1,0xFFFFFFFF,63,2,768,,1,1,549,{ bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubDefEle,Ele_All,5; } },{},{}
-5594,Donut_In_Mouth,Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,1,0,569,{ bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100; },{},{}
-5595,Eye_Of_Juno,Eye Of Juno,4,20,,400,,2,,1,0xFFFFFFFF,63,2,256,,1,1,570,{ 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; } },{},{}
-5596,4Leaf_Clover_In_Mouth,Four Leaf Clover,4,20,,0,,2,,0,0xFFFFFFFF,63,2,1,,1,0,571,{ bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */ },{},{}
-5597,Bubble_Gum_In_Mouth,Bubble Gum In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,63,2,1,,1,0,572,{ bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bDropAddClass,Class_All,5; */ },{},{}
-5598,Virgo_Crown,Virgo Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,573,{ 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; }"; } },{},{}
-5599,Virgo_Diadem,Virgo Diadem,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,70,1,574,{ bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; },{},{}
-5600,Br_Twin_Ribbon,Brazil Twin Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,575,{ bonus bAllStats,3; bonus bMdef,1; },{},{}
-5601,Br_Beret,Brazil Beret,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,576,{ bonus bAllStats,3; bonus bMdef,1; },{},{}
-5602,Jaguar_Hat_J,Jaguar Hat J,4,20,,300,,0,,1,0xFFFFFFFF,63,2,513,,50,0,530,{ bonus2 bAddEle,Ele_Fire,5; },{},{}
-5603,RTC_Winner_Only,RTC First Place,4,0,,250,,8,,1,0xFFFFFFFF,63,2,256,,1,1,577,{ bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-5604,RTC_Second_Best,RTC Second Place,4,0,,250,,6,,1,0xFFFFFFFF,63,2,256,,1,1,578,{ bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-5605,RTC_Third_Best,RTC Third Place,4,0,,250,,4,,1,0xFFFFFFFF,63,2,256,,1,1,579,{ bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player,1; },{},{}
-5606,Campume_Hat,Champune Hat,4,500,,1200,,4,,0,0xFFFFFFFF,63,2,256,,3,1,580,{ bonus bAllStats,1; },{},{}
-5607,Lyria_Doll_Hat,Lyria Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,63,2,256,,60,0,581,{ bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5608,Dorothy_Doll_Hat,Dorothy Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,63,2,256,,60,0,582,{ bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-5609,Chung_Hairband,Chung Hairband,4,0,,500,,5,,1,0xFFFFFFFF,63,2,256,,60,0,583,{ bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; },{},{}
-5610,Ice_Wing_Ear,Ice Wing Ear,4,0,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,584,{ bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; },{},{}
-5611,Turtle_Hat,Turtle Hat,4,0,,300,,0,,0,0xFFFFFFFF,63,2,256,,10,1,585,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; },{},{}
-5612,F_Blue_Drooping_Kitty,F Blue Drooping Kitty,4,250000,,500,,1,,0,0xFFFFFFFE,63,2,256,,0,1,277,{ bonus bMdef,15; },{},{}
-5613,F_Flying_Angel,F Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{}
-5614,F_Smoking_Pipe_,F Smoking Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus bVit,1; },{},{}
-5615,F_Pair_Of_Red_Ribbon_,F Pair Of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{}
-5616,F_Fish_On_Head_,F Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{}
-5617,F_Hibiscus,F Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{}
-5618,F_Cat_Hat,F Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{}
-5619,F_Bunny_Band_,F Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-5620,F_Magestic_Goat_TW,F Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-5621,F_Sheep_Hat,F Sheep Hat,4,20,,150,,1,,0,0x00008110,63,2,256,,0,0,205,{},{},{}
-5622,F_Mini_Propeller_,F Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{}
-5623,F_Alice_Doll,F Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; },{},{}
-5624,F_Red_Glasses,F Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-5625,F_Chick_Hat,F Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; },{},{}
-5626,F_White_Deviruchi_Cap,F White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-5627,F_Vane_Hairpin,F Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-5628,F_Pecopeco_Hairband,F Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,314,{},{},{}
-5629,F_Vacation_Hat,F Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-5630,F_Charming_Ribbon,F Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,10,1,211,{},{},{}
-5631,F_Water_Lily_Crown,F Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{}
-5632,F_Vanilmirth_Hat,F Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bMdef,5; },{},{}
-5633,F_Drooping_Bunny_,F Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; },{},{}
-5634,F_Kettle_Hat,F Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,63,2,256,,30,1,318,{},{},{}
-5635,F_Dragon_Skull,F Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,319,{},{},{}
-5636,F_Ramen_Hat,F Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; },{},{}
-5637,F_Pink_Fur_Hat,F Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-5638,F_Puppy_Hat,F Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; },{},{}
-5639,F_Magic_Eyes,F Magic Eyes,4,20,,300,,1,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; },{},{}
-5640,F_Jumping_Poring,F Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; },{},{}
-5641,F_Robo_Eye,F Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus bDex,1; },{},{}
-5642,F_Yellow_Wizardry_Hat,F Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; },{},{}
-5643,F_Crescent_Helm,F Crescent Helm,4,20,,3000,,8,,0,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; },{},{}
-5644,F_Tiger_Mask,F Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; },{},{}
-5645,F_Fantastic_Wig,F Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{},{},{}
-5646,F_Whisper_Mask,F Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; },{},{}
-5647,F_Bunny_Band_C,F Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; },{},{}
-5648,F_Centimental_Flower_C,F Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{},{},{}
-5649,F_Apple_Of_Archer_C,F Apple Of Archer C,4,1,,0,,7,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-5650,F_Elven_Ears_C,F Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-5651,F_Brooch_C,F Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; },{},{}
-5652,F_Magestic_Goat_C,F Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-5653,Darkness_Helm_J,Darkness Helm,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,70,1,586,{},{},{}
-5654,Holy_Marching_Hat_J,Holy Marching Hat,4,20,,200,,5,,1,0xFFFFFFFF,63,2,256,,1,1,587,{ 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; } },{},{}
-5655,Dark_Snake_Lord_Hat_J,Evil Snake Lord Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,60,1,372,{ bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-5656,Scooter_Hat_J,Scooter Helmet,4,20,,1000,,7,,1,0xFFFFFFFF,63,2,256,,50,1,588,{ bonus bUnbreakableHelm; },{},{}
-5657,Antique_Pipe_J,Captain's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,30,0,383,{},{},{}
-5658,Imp_Hat,Imp Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{}
-5659,Sleepr_Hat,Sleeper Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,1,1,590,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; },{},{}
-5660,Gryphon_Hat,Gryphon Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,591,{ bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; } },{},{}
-5661,Red_Pirate_Bandana,Red Pirate Bandana,4,0,,0,,3,,0,0xFFFFFFFF,63,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; },{},{}
-5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,593,{ 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;} },{},{}
-5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,594,{ bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; } },{},{}
-5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,1,595,{ bonus bAspdRate,2; },{},{}
-5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,596,{ 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; },{},{}
-5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{}
-5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,63,2,768,,30,1,598,{ 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; }"; },{},{}
-5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,63,2,256,,1,1,206,{ bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10; },{},{}
-5669,Poring_Party_Hat_J,Poring Party Hat J,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,1,1,340,{},{},{}
-5670,Aniv_Star_Hat,Aniv Star Hat,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,1,599,{},{},{}
-5671,Drooping_Morocc_Minion,Drooping Morocc Minion,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,70,0,600,{ bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2; },{},{}
-5672,Southern_Cross,Southern Cross,4,20,,600,,3,,1,0xFFFFFFFF,63,2,256,,50,1,601,{ bonus bInt,1; },{},{}
-5673,Home_Cherry_Blossom,Home Cherry Blossom,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,602,{ bonus bNoCastCancel; bonus bVariableCastrate,35; },{},{}
-5674,Pig_Moneybox,Pig Moneybox,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,256,,10,0,603,{},{},{}
-5675,Poring_Letter,Poring Letter,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,604,{ bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm; },{},{}
-5676,Scorpio_Crown,Scorpio Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,605,{ 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; } },{},{}
-5677,Scorpio_Diadem,Scorpio Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,606,{ bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; } },{},{}
-5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,607,{ bonus bUnbreakableHelm; },{},{}
-5679,Engineer_Cap,Engineer Cap,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,10,1,608,{ bonus2 bAddRace,RC_Formless,10; },{},{}
-5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,609,{ bonus bHit,10; bonus bUnbreakableHelm; },{},{}
-5681,F_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-5682,Triangle_Rune_Cap,Triangle Rune Cap,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,1,1,610,{ 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; } },{},{}
-5683,Majestic_Goat_Repl,Baphomet Horns,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,41,{},{},{}
-5684,Jewel_Crown_Repl,Ornate Crown,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,88,{},{},{}
-5685,Prontera_Army_Cap_Repl,Army Cap,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,48,{},{},{}
-5686,Feather_Bonnet_Repl,Nice Hat Feather,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,104,{},{},{}
-5687,Viking_Helm_Repl,Orc Helm,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,86,{},{},{}
-5688,2009Love_Daddy,2009 Love Dad,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,611,{ bonus bVit,2; },{},{}
-5689,Queen_Ant_Diadem,Queen Ant Diadem,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,75,1,612,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5; },{},{}
-5690,Red_Wing_Hat,Red Wing Hat,4,20,,600,,5,,0,0xFFFFFFFF,63,2,256,,1,1,613,{ bonus bHPrecovRate,20; bonus bSPrecovRate,20; },{},{}
-5691,Catain_Bandanna,Sailor's Bandana,4,20,,10,,1,,0,0xFFFFFFFF,63,2,256,,1,1,542,{ bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm; },{},{}
-5692,Sea_Cat_Hat,Sea Cat Hat,4,20,,10,,1,,0,0xFFFFFFFF,63,2,256,,1,1,539,{ bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm; },{},{}
-5693,No_Fear_Underware,No Fear Underwear,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,20,0,30,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-5694,No_Fear_P_Headgear,No Fear P Headgear,4,0,,0,,1,,0,0xFFFFFFFE,63,2,256,,20,0,614,{ bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{}
-5695,E_Blue_Drooping_Kitty,E Blue Drooping Kitty,4,250000,,500,,1,,0,0,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{}
-5696,E_Flying_Angel,E Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{}
-5697,E_Smoking_Pipe_,E Smoking Pipe,4,20,,100,,0,,0,0,7,2,1,,0,0,55,{ bonus bVit,1; },{},{}
-5698,E_Pair_OE_Red_Ribbon_,E Pair OE Red Ribbon,4,20,,100,,1,,0,0,7,2,512,,45,0,169,{},{},{}
-5699,E_Fish_On_Head_,E Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{}
-5700,E_Hibiscus,E Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{}
-5701,E_Cat_Hat,E Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{}
-5702,E_Bunny_Band_,E Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{}
-5703,E_Magestic_Goat_TW,E Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{}
-5704,E_Sheep_Hat,E Sheep Hat,4,20,,150,,1,,0,0x00008110,63,2,256,,0,0,205,{},{},{}
-5705,E_Mini_Propeller_,E Mini Propeller,4,20,,200,,2,,0,0,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{}
-5706,E_Alice_Doll,E Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; },{},{}
-5707,E_Red_Glasses,E Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{}
-5708,E_Chick_Hat,E Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; },{},{}
-5709,E_White_Deviruchi_Cap,E White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{}
-5710,E_Vane_Hairpin,E Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{}
-5711,E_Pecopeco_Hairband,E Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,314,{},{},{}
-5712,E_Vacation_Hat,E Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{}
-5713,E_Charming_Ribbon,E Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,10,1,211,{},{},{}
-5714,E_Water_Lily_Crown,E Water Lily Crown,4,20,,200,,0,,1,0,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{}
-5715,E_Vanilmirth_Hat,E Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bMdef,5; },{},{}
-5716,E_Drooping_Bunny_,E Drooping Bunny,4,20,,100,,1,,0,0,7,2,256,,0,1,249,{ bonus bDex,1; },{},{}
-5717,E_Kettle_Hat,E Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,63,2,256,,30,1,318,{},{},{}
-5718,E_Dragon_Skull,E Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,319,{},{},{}
-5719,E_Ramen_Hat,E Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; },{},{}
-5720,E_Pink_Fur_Hat,E Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{}
-5721,E_Puppy_Hat,E Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; },{},{}
-5722,E_Magic_Eyes,E Magic Eyes,4,20,,300,,1,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; },{},{}
-5723,E_Jumping_Poring,E Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; },{},{}
-5724,E_Robo_Eye,E Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus bDex,1; },{},{}
-5725,E_Yellow_Wizardry_Hat,E Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; },{},{}
-5726,E_Crescent_Helm,E Crescent Helm,4,20,,3000,,8,,0,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; },{},{}
-5727,E_Tiger_Mask,E Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; },{},{}
-5728,E_Fantastic_Wig,E Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{},{},{}
-5729,E_Bunny_Band_C,E Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; },{},{}
-5730,E_Centimental_Flower_C,E Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{},{},{}
-5731,E_Apple_OE_Archer_C,E Apple OE Archer C,4,1,,0,,7,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{}
-5732,E_Elven_Ears_C,E Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{}
-5733,E_Brooch_C,E Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; },{},{}
-5734,E_Magestic_Goat_C,E Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,41,{ bonus bStr,1; },{},{}
-5735,E_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{}
-5736,EF_Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{}
-5737,Cactus_Hat,Cactus Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,1,0,615,{ bonus3 bAddMonsterDropItem,952,RC_Plant,500; },{},{}
-5738,Snowman_Hat,Snowman Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,1,1,616,{ 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; },{},{}
-5739,Sagittarius_Crown,Sagittarius Crown,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,617,{ 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; }"; } },{},{}
-5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,618,{ 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; } },{},{}
-5741,Im_Egg_Shell_Hat,Eternal Egg Shell,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,10,1,101,{ bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10; },{},{}
-5742,Rudolf_Santa_Hat,Rudolph Santa Hat,4,20,,400,,5,,0,0xFFFFFFFF,63,2,256,,10,1,619,{ bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100; },{},{}
-5743,Orange_Stem_Hat,Orange Stem Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,0,620,{ bonus bLuk,3; },{},{}
-5744,Capricorn_Crown,Capricorn Crown,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,621,{ bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; } },{},{}
-5745,Capricorn_Diadem,Capricorn Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,622,{ 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; } },{},{}
-5746,Rune_Circlet,Rune Circlet,4,20,,100,,12,,1,0x00000080,56,2,256,,100,1,623,{ bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } },{},{}
-5747,Mitra,Mitra,4,20,,100,,12,,1,0x00000100,56,2,256,,100,1,624,{ bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } },{},{}
-5748,Sniper_Goggle,Sniper Goggles,4,20,,100,,12,,1,0x00000800,56,2,768,,100,1,625,{ bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } },{},{}
-5749,Driver_Band,Driver Band,4,20,,100,,12,,1,0x00000400,56,1,256,,100,1,626,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{}
-5750,Shadow_Handicraft,Shadow Crown,4,20,,100,,12,,1,0x00020000,56,2,256,,100,1,627,{ bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } },{},{}
-5751,Minstrel_Song_Hat,Minstrel Song Hat,4,20,,100,,12,,1,0x00080000,56,1,256,,100,1,628,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10; },{},{}
-5752,Midas_Whisper,Midas Whispers,4,20,,100,,12,,1,0x00040000,56,2,256,,100,1,629,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } },{},{}
-5753,Magic_Stone_Hat,Magic Stone Hat,4,20,,100,,12,,1,0x00000200,56,2,256,,100,1,630,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; } },{},{}
-5754,Blazing_Soul,Burning Spirit,4,20,,100,,12,,1,0x00008000,56,2,256,,100,1,631,{ bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } },{},{}
-5755,Silent_Executer,Silent Enforcer,4,20,,100,,12,,0,0x00001000,56,2,513,,100,0,632,{ bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } },{},{}
-5756,Wind_Whisper,Wispers of Wind,4,20,,100,,12,,1,0x00010000,56,2,256,,100,1,633,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; } },{},{}
-5757,Schmidt_Helm,Reissue Schmitz Helm,4,20,,100,,12,,1,0x00004000,56,2,768,,100,1,634,{ bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; } },{},{}
-5758,Dying_Swan,Resting Swan,4,20,,100,,17,,1,0x00080000,56,0,256,,100,1,635,{ 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; },{},{}
-5759,Noah_Hat,Noah Hat,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,1,1,636,{ bonus bMdef,3; },{},{}
-5760,Driver_Band_,Driver Band,4,20,,100,,12,,1,0x00000400,56,0,256,,100,1,637,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{}
-5761,Sloth_Hat,Sloth Hat,4,20,,800,,3,,0,0xFFFFFFFF,63,2,256,,1,1,638,{ bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; },{},{}
-5762,Duneyrr_Helm,Duneyrr Helm,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,639,{ bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; bonus2 bSubRace,RC_Brute,2; },{},{}
-5763,Red_Bunny_Band,Red Bunny Band,4,0,,200,,4,,0,0xFFFFFFFF,63,2,256,,1,1,640,{ bonus bAgi,2; bonus bMdef,3; },{},{}
-5764,Love_Rabbit_Hood,Love Rabbit Hood,4,20,,300,,1,,1,0xFFFFFFFF,63,2,769,,10,0,549,{ bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10); },{},{}
-5765,Black_Tail_Ribbon,Black Tail Ribbon,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,10,1,642,{ bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5; },{},{}
-5766,Amistr_Cap,Amistr Cap,4,20,,500,,4,,1,0xFFFFFFFF,63,2,256,,1,1,643,{ bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; },{},{}
-5767,Samurai_Mask,Samurai Mask,4,20,,300,,1,,0,0xFFFFFFFF,63,2,1,,50,0,644,{ bonus2 bAddClass,Class_All,1; },{},{}
-5768,Sakura_Coronet,Sakura Coronet,4,20,,800,,1,,1,0xFFFFFFFF,63,2,256,,1,1,645,{ bonus bMdef,3; bonus bMaxSP,25; },{},{}
-5769,Gold_Angel_Sculpture,Gold Angel Sculpture,4,100,,0,,2,,0,0xFFFFFFFF,63,2,256,,70,0,646,{ skill "RG_GRAFFITI",1; },{},{}
-5770,Splash_Hat,Splash Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,649,{ autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }"; },{},{}
-5771,Family_Hat,Family Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,650,{ bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1; },{},{}
-5772,Red_Navy_Hat,Red Navy Hat,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,651,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5773,Navy_Beret,Navy Beret,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,652,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5774,Red_Pirate_Hat,Red Pirate Hat,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,496,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5775,Choco_Donut_In_Mouth,Choco Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,1,0,653,{ bonus bMaxHP,50; },{},{}
-5776,Blazing_Sun,Blazing Sun,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,1,1,654,{ 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; },{},{}
-5777,Remover_Hat,Remover Hat,4,20,,800,,2,,0,0xFFFFFFFF,63,2,256,,30,0,655,{ bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10; },{},{}
-5778,Blue_Arara_Hat,Blue Arara Hat,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,656,{ bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-5779,Drooping_Boto,Drooping Boto,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,657,{ bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-5780,Tendrilion_Hat,Tendrilion Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,1,658,{ skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-5781,Persika,Persika,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,0,0,659,{ bonus bFlee,1; bonus bMaxSP,20; },{},{}
-5782,Hoplite_Helmet,Hoplite Helmet,4,20,,700,0,4,0,1,0xFFFFFFFF,63,2,769,,1,1,660,{ bonus bMaxHPrate,3; },{},{}
-5783,YellowBunny_Hairband,YellowBunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,662,{ bonus bStr,1; bonus bInt,1; bonus bDex,2; },{},{}
-5784,PinkBunny_Hairband,PinkBunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,663,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{}
-5785,Green_Bunny_Hairband,Green Bunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,664,{ bonus bStr,2; bonus bInt,1; bonus bDex,1; },{},{}
-5786,Ancient_Elven_Ear,Ancient Elven Ear,4,10,,200,,1,,0,0xFFFFFFFF,63,2,512,,1,0,665,{ bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30; },{},{}
-5787,Tha_Maero_Mask,Tha Maero Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,513,,30,0,666,{ bonus bMdef,2; },{},{}
-5788,3D_Glasses,3D Glasses,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,1,0,661,{ bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm; },{},{}
-5789,Thanatos_Mal_Mask,Thanatos Mal Mask,4,20,,100,,3,,0,0xFFFFFFFF,63,2,513,,30,0,667,{ bonus bVit,1; },{},{}
-5790,Holy_Mom_Love,TM,4,20,,500,,0,,1,0xFFFFFFFF,63,2,768,,45,1,610,{ bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20; },{},{}
-5791,Tenkaippin_Ramen,Tenkaippin Ramen,4,20,,500,,1,,0,0xFFFFFFFF,63,2,256,,30,0,668,{ bonus bInt,-1; bonus bDex,4; },{},{}
-5792,Fish_Pin,Fish Pin,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,669,{ bonus2 bSubRace,RC_Fish,1; },{},{}
-5793,Ribbon_Of_Life,Ribbon Of Life,4,20,,0,,2,,0,0xFFFFFFFF,63,2,512,,1,0,575,{ bonus bInt,1; bonus bMdef,2; },{},{}
-5794,3D_Glasses_,3D Glasses,4,20,,0,,1,,1,0xFFFFFFFF,63,2,512,,1,0,661,{ .@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); } },{},{}
-5795,Red_Dress_Hat,Bright Red Dress Hat,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,1,1,670,{ bonus bMdef,7+(getrefine()/2); },{},{}
-5796,Cheer_Scarf,Cheer Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50;},{},{}
-//5796,Rooting_Scarf,Rooting Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,10; },{},{}
-5797,Cheer_Scarf2,Cheer Scarf2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,20; },{},{}
-5798,Cheer_Scarf3,Cheer Scarf3,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,30; },{},{}
-5799,Cheer_Scarf4,Cheer Scarf4,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,40; },{},{}
-5800,Blush_Of_Groom,Blush of Groom,4,20,,50,,0,,0,0xFFFFFFFF,63,2,512,,0,0,125,{ bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; },{},{}
-5801,Ribbon_Of_Bride,Red Tailed Ribbon,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,167,{ bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL")==10?10:5),20; },{},{}
-5802,Upgrade_Elephant_Hat,Upgraded Elephant Hat,4,0,,500,,3,,1,0xFFFFFFFF,63,2,256,,0,1,215,{},{},{}
-5803,Flower_Love_Hat,Love Flower Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,5,{ bonus2 bAddMonsterDropItem,608,100; },{},{}
-5804,Pirate_Eyepatch,Pirate Eye Bandage,4,1000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,13,{},{},{}
-5805,Victorious_Coronet,Victorious Coronet,4,0,,150,,1,,0,0xFFFFFFFF,63,2,256,,70,0,43,{ bonus bMaxHPrate,15; bonus bSPrecovRate,5; },{},{}
-5806,Poem_Natalia_Hat,Poet Natalie's Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,0,0,67,{},{},{}
-5807,October_Fest_Cap,October Fest Cap,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,50,1,104,{},{},{}
-5808,Diabolus_Helmet,Dark Bacilium,4,20,,250,,5,,1,0x000FDF80,18,2,769,,0,1,364,{ .@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*200); },{},{}
-5809,Boom_Boom_Hat,Boom Boom Hat,4,0,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,0,216,{ bonus bAllStats,5; bonus bSpeedRate,25; },{},{}
-5810,Ph.D_Hat_V,Ph.D Hat V,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,98,{ bonus bInt,5; bonus bVit,3; bonus bDex,3; },{},{}
-5811,Santa_Beard,Santa's Beard,4,20,,100,,5,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus2 bSubRace,RC_Brute,5; },{},{}
-5812,Hat_Of_Expert,Hat Of Expert,4,0,,0,,2,,0,0xFFFFFFFF,63,2,256,,0,1,16,{ 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; },{},{}
-5813,Red_Ph.D_Hat,Red Ph.D Hat,4,1000,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,481,{ bonus bInt,1; },{},{}
-5814,Ati_Atihan_Hat3,Ati Atihan Hat3,4,20,,0,,2,,0,0xFFFFFFFF,63,2,769,,20,0,303,{},{},{}
-5815,Classic_Hat_J,Classic Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,475,{ bonus bStr,1; bonus2 bSubSize,Size_All,5; },{},{}
-5816,Cowboy_Hat_J,Purple Cowboy Hat,4,20,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,411,{ bonus bBaseAtk,15; bonus bFlee,-5; },{},{}
-5817,Valentine_Pledge,Valentine Pledge,4,20,,0,,3,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,2; bonus bMdef,3; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1; },{},{}
-5818,Carnival_Hat,Carnival Hat,4,0,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,1,505,{ bonus bAllStats,3; },{},{}
-5819,Carnival_Circlet,Carnival Circlet,4,0,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,1,506,{ bonus bAllStats,3; },{},{}
-5820,Black_Elven_Ears,Black Elven Ears,4,10,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,498,{},{},{}
-5821,Gold_Tulip_Hairpin,Gold Tulip Hairpin,4,10,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,499,{ bonus2 bExpAddClass,Class_All,5; },{},{}
-5822,Love_Chick_Hat,Love Chick Hat,4,10000,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,500,{ bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; },{},{}
-5823,Love_Arrow,Arrow of Love,4,5000,,100,,2,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,5; bonus bAgi,5; },{},{}
-5824,Fools_Day_Hat,Fools Day Hat,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,30,1,265,{},{},{}
-5825,Badge_Of_Order_Grace,Badge Of Order Grace,4,0,,0,,1,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500; },{},{}
-5826,Valkyrie_Helmet,Valkyrie Helmet,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,225,{ bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3; },{},{}
-5827,Book_File_Hat,Book File Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,423,{},{},{}
-5828,Honor_Gold_Ring,Honor Gold Ring,4,0,,50,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,5; },{},{}
-5829,Ordinary_Armor,Ordinary Armor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,16,,30,1,0,{},{},{}
-5830,Woe_Sahkkat,Woe Sahkkat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,67,{},{},{}
-5831,Woe_Big_Sis_Ribbon,Woe Big Sis Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,28,{},{},{}
-5832,Woe_Vane_Hairpin,Woe Vane Hairpin,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,313,{},{},{}
-5833,Woe_Picnic_Hat,Woe Picnic Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,117,{},{},{}
-5834,Woe_Crown,Woe Crown,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,45,{},{},{}
-5835,Woe_Tiara,Woe Tiara,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,19,{},{},{}
-5836,Woe_Boys_Cap,Woe Boys Cap,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,102,{},{},{}
-5837,Woe_Sunglass,Woe Sunglass,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,12,{},{},{}
-5838,Woe_Fin_Helm,Woe Fin Helm,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,100,{},{},{}
-5839,Woe_Blush,Woe Blush,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,125,{},{},{}
-5840,Woe_Elven_Ears,Woe Elven Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,73,{},{},{}
-5841,Shaman_Hat_,Shaman Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,30,1,596,{ 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; },{},{}
-5842,Loyal_Ring1,Loyal Ring1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{}
-5843,Loyal_Ring2,Loyal Ring2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,2; },{},{}
-5844,Loyal_Ring3,Loyal Ring3,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,3; },{},{}
-5845,Buzzy_Ball_Board,Buzzy Ball Board,4,50,,400,,0,,0,0xFFFFFFFF,63,2,256,,1,1,641,{},{},{}
-5846,Buzzy_Ball_Gum,Buzzy Ball Gum,4,50,,100,,1,,0,0xFFFFFFFF,63,2,1,,1,0,572,{ bonus bMdef,5; },{},{}
-5847,Fools_Day_hat_,Fools Day Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,256,,1,0,647,{ bonus bInt,5; bonus bVit,-3; },{},{}
-5848,Robin_Eyepatch,Robin Eyepatch,4,20,,0,,0,,0,0xFFFFFFFF,63,2,512,,1,0,50,{},{},{}
-5849,Doctor_Hairband,Doctor Hairband,4,20,,0,,0,,0,0xFFFFFFFF,63,2,256,,1,0,60,{},{},{}
-5850,Golden_Savage_Hat,Golden Savage Hat,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,50,1,648,{},{},{}
-5851,Summer_Knight,Summer Knight,4,20,,0,,1,,0,0xFFFFFFFF,63,2,768,,60,0,138,{},{},{}
-5852,Easter_Egg_Shell,Easter Egg Shell,4,20,,500,,0,,0,0xFFFFFFFF,63,2,256,,40,1,537,{ 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; },{},{}
-5853,IdRO_Crown,IdRO Crown,4,10,,0,,2,,0,0xFFFFFFFF,63,2,256,,1,1,165,{ bonus bHPrecovRate,7; bonus bSPrecovRate,7; if(getrefine()>7){ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bMdef,2; } },{},{}
-5855,Fishing_Rod,Fishing Rod,4,10,,0,,0,,,0xFFFFFFFF,63,2,136,,,,,{},{},{}
-5856,Passion_FB_Hat,Passion FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,671,{ bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-5857,Cool_FB_Hat,Cool FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,672,{ bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; },{},{}
-5858,Victory_FB_Hat,Victory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,673,{ bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{}
-5859,Glory_FB_Hat,Glory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,674,{ bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7; },{},{}
-5864,Shadow_Booster,Magical Booster,4,10,,300,,,,0,0xFFFFFFFF,63,2,512,,1,1,873,{ bonus bAspd,1; bonus bDelayrate,-1; },{},{}
-5868,Bushy_Moustache,Bushy Moustache,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,1004,{ bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10; },{},{}
-5869,Mimic_Egg_Shell,Mimic Egg Shell,4,10,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,999,{ bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25; },{},{}
-5870,Bunny_Egg_Shell,Bunny Egg Shell,4,10,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,1000,{ bonus bAgi,3; bonus bAspd,1; },{},{}
-5871,Picky_Egg_Shell,Picky Egg Shell,4,10,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,1001,{ bonus bVit,3; bonus bMdef,2; },{},{}
-5873,Helmet_Of_Siegfried,Helmet Of Siegfried,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1055,{ 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; },{},{}
-5874,Circlet_Of_Kriemhild,Circlet Of Kriemhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1056,{ 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; },{},{}
-5875,Diadem_Of_Bruenhild,Diadem Of Bruenhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1057,{ 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; },{},{}
-5881,Weissbier_Hat,Weissbier Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,0,1,1079,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if(getrefine()>6){ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; } },{},{}
-5882,Red_Wizardry_Hat_C,Red Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,282,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5883,White_Wizardry_Hat_C,Gray Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,283,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5884,Gray_Wizardry_Hat_C,Brown Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5885,Blue_Wizardry_Hat_C,Blue Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,285,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5886,Yellow_Wizardry_Hat_C,Yellow Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; bonus bMaxSP,150; },{},{}
-5887,Half_L_Magestic_Goat,Half L Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-5892,RCC2013_1ST_CROWN,RCC2013 1ST CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1106,{ bonus bAllStats,5; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; }
-5893,RCC2013_2ND_CROWN,RCC2013 2ND CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1107,{ bonus bAllStats,4; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; }
-5894,RCC2013_3RD_CROWN,RCC2013 3RD CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1108,{ bonus bAllStats,3; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; }
-5895,RCC2013_ANV_Hat,RCC2013 ANV Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1109,{ bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; },{},{}
-5900,Divine_Guard_Hat,Divine Guard Hat,4,0,,200,,10,,1,0x00004000,56,2,256,,100,1,1121,{ .@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; } },{},{}
-5901,Focus_Beret,Focus Beret,4,0,,200,,10,,1,0x00008000,56,2,256,,100,1,1122,{ .@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; } },{},{}
-5902,Harvester_Hat,Harvester Hat,4,0,,200,,10,,1,0x00040000,56,2,256,,100,1,1123,{ .@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; } },{},{}
-5903,Deadman_Bandana,Deadman Bandana,4,0,,200,,15,,1,0x00810204,63,2,256,,99,1,1124,{ .@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; } },{},{}
-5904,Inconspicuous_Hat,Inconspicuous Hat,4,0,,200,,10,,1,0x00020000,56,2,256,,100,1,1125,{ .@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; } },{},{}
-5905,Lyrica_Hat,Lyrica Hat,4,0,,200,,10,,1,0x00080000,56,2,256,,100,1,1126,{ .@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; } },{},{}
-5906,Oni_Horns_,Oni Horns,4,0,,20,,10,,1,0x00001000,56,2,256,,100,1,1127,{ 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; } },{},{}
-5907,Sea_Captain_Hat,Sea Captain Hat,4,0,,200,,20,,1,0x00000400,56,2,256,,100,1,1128,{ 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; },{},{}
-5914,Earmuff_Flowerform,C Flutter Butterfly,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1378,{ hateffect HAT_EF_FLUTTER_BUTTERFLY,true; },{},{ hateffect HAT_EF_FLUTTER_BUTTERFLY,false; }
-5917,Yellow_Scarf,Yellow Scarf,4,0,,100,,,,0,0xFFFFFFFF,63,2,1,,90,0,1170,{ bonus bLongAtkDef,3; },{},{}
-5918,Gambler_Seal,Gambler Seal,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,,70,0,1202,{ .@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; },{},{}
-5919,Camellia_Hair_Pin,Camellia Hair Pin,4,0,,1000,,,,1,0xFFFFFFFF,63,2,256,,50,1,1203,{ bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/ },{},{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); }
-5920,Medical_Boots,Medical Boots,4,0,,300,,10,,0,0xFFFFFFFF,63,2,64,,10,1,,{ .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); },{},{}
-5933,Crow_Tengu_Mask,Crow Tengu Mask,4,20,,300,,0,,0,0xFFFFFFFF,63,2,512,,80,0,1287,{ 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; } },{},{}
-5937,Flying_Helmet,Flying Helmet,4,1,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,820,{ 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; } },{},{}
-5938,Octopus_Hat_,Octopus Hat,4,20,,880,,8,,1,0xFFFFFFFF,63,2,256,,60,1,538,{ 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; } },{},{}
-5943,Owlviscount_Silk_Hat,Owl Viscount Silk Hat,4,0,,500,,15,,1,0xFFFFFFFF,63,2,256,,70,1,1323,{ 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; }"; },{},{}
-5945,Well_Chewed_Pencil,Well-Chewed Pencil,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,30,0,931,{ bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */ },{},{}
-5966,KarduiEar,KarduiEar,4,0,,300,,,,0,0xFFFFFFFF,63,2,512,,70,0,1357,{ .@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; } },{},{}
-5967,FlyingGalapago,Flying Galapago,4,0,,500,,,,0,0xFFFFFFFF,63,2,1,,110,0,1358,{ 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; },{},{}
-5968,DVAngelNurseCap,DVAngelNurseCap,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1359,{ if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0)); },{},{}
-5969,QueenAnzRevenge,QueenAnzRevenge,4,0,,400,,7,,1,0xFFFFFFFF,63,2,256,,100,1,1360,{ bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix; },{},{}
-5971,Moon_Eyepatch,Moon Eyepatch,4,0,,100,,,,1,0xFFFFFFFF,63,2,512,,10,0,1370,{ bonus2 bSubEle,Ele_Water,5; },{},{}
-5972,Chatty_Parrot,Chatty Parrot,4,0,,100,,,,0,0xFFFFFFFF,63,2,1,,80,0,1116,{ bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30; },{},{}
-5973,Ancient_Elven_Ear_J,Ancient Elven Ear J,4,0,,200,,,,0,0xFFFFFFFF,63,2,512,,70,0,665,{ bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2; },{},{}
-5978,Syringe_Toy,Toy Syringe,4,0,,100,,3,,0,0xFFFFFFFF,63,2,1,,70,0,842,{ bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150; },{},{}
-5979,C_Angel_Fluttering,C Angel Fluttering,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1380,{ hateffect HAT_EF_ANGEL_FLUTTERING,true; },{},{ hateffect HAT_EF_ANGEL_FLUTTERING,false; }
-5980,C_Classical_Fhat,C Classical Fhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1381,{},{},{}
-5985,Noble_Mask,Noble Mask,4,0,,200,,,,0,0xFFFFFFFF,63,2,512,,30,1,1409,{ 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; } },{},{}
-//===================================================================
-// More Etc Items
-//===================================================================
-6000,Dark_Ashes,Ashes of Darkness,3,0,,0,,,,,,,,,,,,,{},{},{}
-6001,Essence_Of_Fire,Essence of Fire,3,0,,10,,,,,,,,,,,,,{},{},{}
-6002,Token_Of_Apostle,Token of Apostle,3,0,,10,,,,,,,,,,,,,{},{},{}
-6003,Soul_Pendant,Pendant of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{}
-6004,Bapho_Doll,Cursed Baphomet Doll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6005,New_Year_Rice_Cake,New Year Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{}
-6006,Rice_Cake_Delivery_Box,Rice Cake Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-6007,New_Year_Rice_Cake_Soup,New Year Rice Cake Soup,3,0,,10,,,,,,,,,,,,,{},{},{}
-6008,Wood,Wood,3,0,,10,,,,,,,,,,,,,{},{},{}
-6009,Large_Magical_Fan,Big Fan Of Magic,3,0,,0,,,,,,,,,,,,,{},{},{}
-6010,Pickaxe,Hoe,3,0,,10,,,,,,,,,,,,,{},{},{}
-6011,Blue_Card_B,Blue B Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6012,Blue_Card_C,Blue C Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6013,Blue_Card_J,Blue J Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6015,Blue_Card_M,Blue M Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6016,Blue_Card_Q,Blue Q Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6017,Blue_Card_T,Blue T Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6018,Blue_Card_V,Blue V Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6019,Blue_Card_Z,Blue Z Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6020,Fur,Fur,3,704,,10,,,,,,,,,,,,,{},{},{}
-6021,Peaked_Hat,Peaked Hat,3,433,,10,,,,,,,,,,,,,{},{},{}
-6022,Hard_Skin,Hard Skin,3,884,,10,,,,,,,,,,,,,{},{},{}
-6023,Mystic_Horn,Mystic Horn,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6024,17Carat_Dia,17Carat Diamond,3,6000000,,10,,,,,,,,,,,,,{},{},{}
-6025,Towel_Of_Memory,Towel of Memory,3,0,,0,,,,,,,,,,,,,{},{},{}
-6026,Marriage_Covenant,Written Oath Of Marriage,3,0,,10,,,,,,,,,,,,,{},{},{}
-6027,Crystal_Of_Feardoom,Crystal Of Feardom,3,0,,0,,,,,,,,,,,,,{},{},{}
-6028,Seal_Scroll,Sealed Scroll,3,0,,0,,,,,,,,,,,,,{},{},{}
-6029,Morocc_Tracing_Log,Morocc Tracing Log,3,0,,0,,,,,,,,,,,,,{},{},{}
-6030,Glitering_PaperA,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-6031,Glitering_PaperB,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-6032,Horn_Of_Hilsrion,Horn of Hillslion,3,500,,10,,,,,,,,,,,,,{},{},{}
-6033,Horn_Of_Tendrilion,Horn of Tendrilion,3,500,,10,,,,,,,,,,,,,{},{},{}
-6034,Weird_Part,Weird Part,3,0,,0,,,,,,,,,,,,,{},{},{}
-6035,Decaying_Stem,Decaying Stem,3,0,,0,,,,,,,,,,,,,{},{},{}
-6036,Invite_To_Meeting,Meeting Invitation,3,0,,10,,,,,,,,,,,,,{},{},{}
-6037,Rough_File,Messy File,3,0,,0,,,,,,,,,,,,,{},{},{}
-6038,Neat_Report,Neat Report,3,0,,10,,,,,,,,,,,,,{},{},{}
-6039,Piece_Of_Fish,Piece of Fish,3,0,,10,,,,,,,,,,,,,{},{},{}
-6040,Some_Of_Report,Part of a Report,3,0,,0,,,,,,,,,,,,,{},{},{}
-6041,Strong_Bine,Strong Vine,3,30,,50,,,,,,,,,,,,,{},{},{}
-6042,Ordinary_Branch,Ordinary Branch,3,0,,10,,,,,,,,,,,,,{},{},{}
-6043,Letter_From_Lugen,Letter from Lugen,3,0,,10,,,,,,,,,,,,,{},{},{}
-6044,Letter_From_Otto,Letter from Otto,3,0,,10,,,,,,,,,,,,,{},{},{}
-6045,Supply_Box,Supply Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-6046,Clothing_Dye_Coupon,Clothing Dye Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-6047,Clothing_Dye_Coupon_II,Clothing Dye Coupon II,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-6048,Unidentified_Mineral,Unidentified Mineral,3,0,,10,,,,,,,,,,,,,{},{},{}
-6049,Marlin,Marlin,3,0,,10,,,,,,,,,,,,,{},{},{}
-6050,Mercenary_Contract,Mercenary Contract,3,0,,10,,,,,,,,,,,,,{},{},{}
-6051,Gray_Hollow,Gray Hollow,3,0,,10,,,,,,,,,,,,,{},{},{}
-6052,Ornamental_Hairpin,Ornament Hairpin,3,1,,0,,,,,,,,,,,,,{},{},{}
-6053,Yuanbao,Circle Step,3,100,,100,,,,,,,,,,,,,{},{},{}
-6054,Blue_Card_6,Number 6 Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6055,Blue_Card_Annyver,Character Week Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6056,Blue_Card_Sary,Character Year Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6057,Blue_Card_E,Character Lee Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6058,Blue_Card_Ven,Character Ben Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6059,Blue_Card_Nt,Character Project Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6060,Moon_Admin_Ticket,Month Viewing Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-6061,Plantain,Blood Beginner,3,100,,50,,,,,,,,,,,,,{},{},{}
-6062,Moon_Cake15,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6063,Moon_Cake16,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6064,Moon_Cake17,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6065,Moon_Cake18,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6066,Moon_Cake19,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6067,Moon_Cake20,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{}
-6068,Rabbit_Skin,Leather Rabbit,3,10,,10,,,,,,,,,,,,,{},{},{}
-6069,ABUNDANCE,Abundance,3,10,,10,,,,,,,,,,,,,{},{},{}
-6070,Shaman's_Old_Paper,Shaman's Document,3,0,,10,,,,,,,,,,,,,{},{},{}
-6071,Broken_Sword,Broken Sword,3,0,,10,,,,,,,,,,,,,{},{},{}
-6072,Wing_Of_Bizofnil,Bijofnil Feather,3,0,,10,,,,,,,,,,,,,{},{},{}
-6073,Dragon's_Mane,Dragon's Mane,3,0,,0,,,,,,,,,,,,,{},{},{}
-6074,Bazett's_Order,Bazett's Order,3,0,,0,,,,,,,,,,,,,{},{},{}
-6075,Crystalized_Teardrop,Crystalized Teardrop,3,0,,0,,,,,,,,,,,,,{},{},{}
-6076,Portable_Toolbox,Portable Toolbox,3,0,,0,,,,,,,,,,,,,{},{},{}
-6077,Rough_Mineral,Rough Mineral,3,0,,0,,,,,,,,,,,,,{},{},{}
-6078,Stone_Fragments,Stone Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6079,Flower_Of_Alfheim,Flower Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{}
-6080,Manuk_Coin,Manuk Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6081,Splendide_Coin,Splendide Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6082,Spirit_Of_Alfheim,Spirit Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{}
-6083,Dolly_Capsule,Capsule Dolls,3,0,,10,,,,,,,,,,,,,{},{},{}
-6084,Bradium_Fragments,Bradium Fragments,3,0,,0,,,,,,,,,,,,,{},{},{}
-6085,Shaggy_Muffler,Shaggy Muffler,3,0,,0,,,,,,,,,,,,,{},{},{}
-6086,Withered_Flower,Withered Flower,3,890,,10,,,,,,,,,,,,,{},{},{}
-6087,Crystal_Of_Soul_01,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{}
-6088,Crystal_Of_Soul_02,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{}
-6089,Piece_Of_Darkness,Dark Piece,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6090,Purified_Bradium,Refined Bradium,3,1100,,50,,,,,,,,,,,,,{},{},{}
-6091,Dark_Red_Scale,Darkred Scale Piece,3,200000,,10,,,,,,,,,,,,,{},{},{}
-6092,Singing_Crystal_Piece,Piece Of Singing Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-6093,Egg_Of_Draco,Draco's Egg,3,0,,0,,,,,,,,,,,,,{},{},{}
-6094,Traditional_Cookie,Traditional Sweets,3,20,,10,,,,,,,,,,,,,{},{},{}
-6095,Flavored_Alcohol,Flavored Alcohol,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6096,Fish_With_Blue_Back,Fish With Blue Back,3,20,,10,,,,,,,,,,,,,{},{},{}
-6097,Pumpkin_Pie_,Pumpkin Pie,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6098,Small_Snow_Flower,Small Snow Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6099,Grilled_Rice_Cake,Grilled Rice Cake,3,20,,10,,,,,,,,,,,,,{},{},{}
-6100,Damp_Darkness,Damp Darkness,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6101,Attendance_Card,Attendance Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-6102,Report_On_Splendide,Report On Splendide,3,0,,0,,,,,,,,,,,,,{},{},{}
-6103,Report_On_Manuk,Report On Manuk,3,0,,0,,,,,,,,,,,,,{},{},{}
-6104,Big_Cell,Big Cell,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6105,Morning_Dew,Morning Dew,3,20,,10,,,,,,,,,,,,,{},{},{}
-6106,Well_Ripened_Berry,Well Ripened Berry,3,20,,10,,,,,,,,,,,,,{},{},{}
-6107,Sunset_On_The_Rock,Sunset On The Rock,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6108,Apple_Pudding,Apple Pudding,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6109,Plant_Neutrient,Plant Neutrient,3,20,,10,,,,,,,,,,,,,{},{},{}
-6110,Vital_Flower,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6111,Mystic_Stone,Mystic Stone,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6112,Fresh_Plant,Fresh Plant,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6113,Vital_Flower_,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6114,Flame_Gemstone,Flame Gemstone,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6115,Bun_,Bun,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6116,Succu_Pet_Coupon,Succubus Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6117,Imp_Pet_Coupon,Imp Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6118,Chung_E_Pet_Coupon,Chung E Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6119,Natural_Leather,Cow Leather,3,0,,0,,,,,,,,,,,,,{},{},{}
-6120,Face_Paint,Face Paint,3,120,,20,,,,,,,,,,,,,{},{},{}
-6121,Makeover_Brush,Makeover Brush,3,10,,0,,,,,,,,,,,,,{},{},{}
-6122,Paint_Brush,Paint Brush,3,10,,0,,,,,,,,,,,,,{},{},{}
-6123,Surface_Paint,Surface Paint,3,200,,30,,,,,,,,,,,,,{},{},{}
-6124,Wolf's_Flute,Wolf Flute,3,10,,0,,,,,,,,,,,,,{},{},{}
-6125,Lucky_Box,Spring Time Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6126,Happy_Box,Summer Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6127,Purification_Stone,Purification Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6128,Guillotine_Antidote,Antidote,3,0,,0,,,,,,,,,,,,,{},{},{}
-6129,Ticket_Nightmare,Nightmare Terror Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6130,Ticket_Loli_Ruri,Loli Ruri Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6131,Ticket_Goblin_Leader,Goblin Leader Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6132,Ticket_Incubus,Incubus Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6133,Ticket_Miyabi_Ningyo,Miyabi Ningyo Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6134,Ticket_Whisper,Giant Whisper Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6135,Ticket_Wicked_Nymph,Evil Nymph Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6136,Ticket_Medusa,Medusa Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6137,Ticket_Stoneshooter,Stone Shooter Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6138,Ticket_Marionette,Marionette Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6139,Ticket_Leafcat,Leaf Cat Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6140,Ticket_Dullahan,Dullahan Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6141,Ticket_Shinobi,Shinobi Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6142,Ticket_Golem,Golem Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6143,Ticket_Civil_Servant,Civil Servant Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6144,Heartbroken_Tears,Regrettable Tears,3,1000,,2,,,,,,,,,,,,,{},{},{}
-6145,Vulcan_Bullet,Vulcan Bullet,3,10,,2,,,,,,,,,,,,,{},{},{}
-6146,Magic_Gear_Fuel,Magic Gear Fuel,3,300,,30,,,,,,,,,,,,,{},{},{}
-6147,Liquid_Condensed_Bullet,Liquid Condensed Bullet,3,100,,3,,,,,,,,,,,,,{},{},{}
-6148,Chocolate_Of_Eternity,Eternity Of Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6149,Plain_Chocolate,Simple Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6150,Key_Of_The_Mansion,Key of The Mansion,3,0,,0,,,,,,,,,,,,,{},{},{}
-6151,Peice_Of_Great_Bradium,Giant Bradium Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6152,Glittering_Crystal,Glittering Crystal,3,0,,0,,,,,,,,,,,,,{},{},{}
-6153,Special_Exchange_Coupon,Special Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6154,Broken_Horn_Pipe,Broken Horn Pipe,3,0,,10,,,,,,,,,,,,,{},{},{}
-6155,Coke_Membership_Card,Member Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-6156,Approval_Report,Approval Report,3,0,,10,,,,,,,,,,,,,{},{},{}
-6157,Poring_Ticket,Poring Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6158,Drops_Ticket,Drops Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6159,Poporing_Ticket,Poporing Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6160,Lunatic_Ticket,Lunatic Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6161,Picky_Ticket,Picky Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6162,Pecopeco_Ticket,Peco Peco Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6163,Savage_Baby_Ticket,Savage Babe Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6164,Spore_Ticket,Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6165,Poison_Spore_Ticket,Poison Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6166,Chonchon_Ticket,Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6167,Steel_Chonchon_Ticket,Steel Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6168,Petit_Ticket,Sky Petite Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6169,Deviruchi_Ticket,Deviruchi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6170,Isis_Ticket,Isis Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6171,Smokie_Ticket,Smokie Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6172,Dokebi_Ticket,Dokebi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6173,Desert_Wolf_B_Ticket,Baby Desert Wolf Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6174,Yoyo_Ticket,Yoyo Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6175,Sohee_Ticket,Sohee Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6176,Rocker_Ticket,Rocker Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6177,Hunter_Fly_Ticket,Hunter Fly Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6178,Orc_Warrior_Ticket,Orc Warrior Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6179,Bapho_Jr_Ticket,Bapho Jr. Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6180,Munak_Ticket,Munak Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6181,Bongun_Ticket,Bongun Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6182,Goblin_Ticket,Christmas Goblin Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6183,Hardtack_Ticket,Rice Cake Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6184,Zherlthsh_Ticket,Zherlthsh Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6185,Alice_Ticket,Alice Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6186,Monkey_Wrench,Monkey Wrench,3,500,,10,,,,,,,,,,,,,{},{},{}
-6187,Blank_Card,Blank Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6188,Slot_Coupon,Slotting Advertisement,3,20,,10,,,,,,,,,,,,,{},{},{}
-6189,Magic_Book_FB,Spell Book (Fire Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6190,Magic_Book_CB,Spell Book (Cold Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6191,Magic_Book_LB,Spell Book (Lightening Bolt),3,0,,0,,,,,,,,,,,,,{},{},{}
-6192,Magic_Book_SG,Spell Book (Storm Gust),3,0,,0,,,,,,,,,,,,,{},{},{}
-6193,Magic_Book_LOV,Spell Book (Lord Of Vermilion),3,0,,0,,,,,,,,,,,,,{},{},{}
-6194,Magic_Book_MS,Spell Book (Meteor Storm),3,0,,0,,,,,,,,,,,,,{},{},{}
-6195,Magic_Book_CM,Spell Book (Comet),3,0,,0,,,,,,,,,,,,,{},{},{}
-6196,Magic_Book_TV,Spell Book (Tetra Vortex),3,0,,0,,,,,,,,,,,,,{},{},{}
-6197,Magic_Book_TS,Spell Book (Thunder Storm),3,0,,0,,,,,,,,,,,,,{},{},{}
-6198,Magic_Book_JT,Spell Book (Jupitel Thunder),3,0,,0,,,,,,,,,,,,,{},{},{}
-6199,Magic_Book_WB,Spell Book (Water Ball),3,0,,0,,,,,,,,,,,,,{},{},{}
-6200,Magic_Book_HD,Spell Book (Heaven's Drive),3,0,,0,,,,,,,,,,,,,{},{},{}
-6201,Magic_Book_ES,Spell Book (Earth Spike),3,0,,0,,,,,,,,,,,,,{},{},{}
-6202,Magic_Book_ES_,Spell Book (Earth Strain),3,0,,0,,,,,,,,,,,,,{},{},{}
-6203,Magic_Book_CL,Spell Book (Chain Lightning),3,0,,0,,,,,,,,,,,,,{},{},{}
-6204,Magic_Book_CR,Spell Book (Crimson Rock),3,0,,0,,,,,,,,,,,,,{},{},{}
-6205,Magic_Book_DL,Spell Book (Drain Life),3,0,,0,,,,,,,,,,,,,{},{},{}
-6206,I_Love_You,I Love You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6207,Thank_You,Thank You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6208,I_Respect_You,I Respect You,3,0,,0,,,,,,,,,,,,,{},{},{}
-6209,Glory_Of_Knights,Knight's Honor,3,0,,0,,,,,,,,,,,,,{},{},{}
-6210,Seed_Of_Horny_Plant,Seed Of Thorny Plant,3,600,,1,,,,,,,,,,,,,{},{},{}
-6211,Bloodsuck_Plant_Seed,Bloodsuck Plant Seed,3,800,,1,,,,,,,,,,,,,{},{},{}
-6212,Bomb_Mushroom_Spore,Bomb Mushroom Spore,3,1000,,1,,,,,,,,,,,,,{},{},{}
-6213,Explosive_Powder,Explosive Powder,3,500,,1,,,,,,,,,,,,,{},{},{}
-6214,Smoke_Powder,Smoke Powder,3,500,,1,,,,,,,,,,,,,{},{},{}
-6215,Tear_Gas,Tear Gas,3,500,,1,,,,,,,,,,,,,{},{},{}
-6216,Oil_Bottle,Oil Bottle,3,1000,,1,,,,,,,,,,,,,{},{},{}
-6217,Mandragora_Flowerpot,Mandragora Flowerpot,3,2000,,1,,,,,,,,,,,,,{},{},{}
-6218,Disin_Delivery_Box,Delivery Daishin Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-6219,Para_Team_Mark,Eden Group Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6220,Mysterious_Dyestuff,Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6221,Mystic_Leaf_Cat_Ball,Mystic Leaf Cat Ball,3,0,,0,,,,,,,,,,,,,{},{},{}
-6222,Shining_Beads,Shining Beads,3,20,,0,,,,,,,,,,,,,{},{},{}
-6223,Carnium,Carnium,3,2000,,150,,,,,,,,,,,,,{},{},{}
-6224,Bradium,Bradium,3,2000,,150,,,,,,,,,,,,,{},{},{}
-6225,HD_Carnium,HD Carnium,3,0,,10,,,,,,,,,,,,,{},{},{}
-6226,HD_Bradium,HD Bradium,3,0,,10,,,,,,,,,,,,,{},{},{}
-6228,Guarantee_Weapon_9Up,+9 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6229,Guarantee_Weapon_8Up,+8 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6230,Guarantee_Weapon_7Up,+7 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6231,Guarantee_Weapon_6Up,+6 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6232,Guarantee_Armor_9Up,+9 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6233,Guarantee_Armor_8Up,+8 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6234,Guarantee_Armor_7Up,+7 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6235,Guarantee_Armor_6Up,+6 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6236,Blue_Card_7,Blue Card 7,3,0,,0,,,,,,,,,,,,,{},{},{}
-6237,Guarana_Fruit,Guarana Fruit,3,0,,0,,,,,,,,,,,,,{},{},{}
-6238,Guarantee_Weapon_11Up,+11 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6239,Guarantee_Armor_11Up,+11 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6240,HD_Oridecon,HD Oridecon,3,20,,10,,,,,,,,,,,,,{},{},{}
-6241,HD_Elunium,HD Elunium,3,20,,10,,,,,,,,,,,,,{},{},{}
-6242,Midgard_Coin,Midgard Coin,3,20,,10,,,,,,,,,,,,,{},{},{}
-6243,Exchange_Coupon,Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6244,Gun_Powder,Gun Powder,3,10,,1,,,,,,,,,,,,,{},{},{}
-6245,Black_Powder,Black Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6246,Yellow_Powder,Yellow Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6247,White_Powder,White Powder,3,100,,1,,,,,,,,,,,,,{},{},{}
-6248,Melange_Pot,Melange Pot,3,600,,10,,,,,,,,,,,,,{},{},{}
-6249,Savage_Meat,Savage Meat,3,100,,10,,,,,,,,,,,,,{},{},{}
-6250,Cooking_Skewer,Cooking Skewer,3,300,,10,,,,,,,,,,,,,{},{},{}
-6251,Black_Charcoal,Black Charcoal,3,300,,10,,,,,,,,,,,,,{},{},{}
-6252,Wolf_Blood,Blood Of Wolf,3,100,,10,,,,,,,,,,,,,{},{},{}
-6253,Cold_Ice,Cold Ice,3,100,,10,,,,,,,,,,,,,{},{},{}
-6254,Beef_Head_Meat,Beef Head,3,100,,10,,,,,,,,,,,,,{},{},{}
-6255,Large_Cookpot,Large Cookpot,3,500,,10,,,,,,,,,,,,,{},{},{}
-6256,Ice_Fragment,Ice Piece,3,100,,10,,,,,,,,,,,,,{},{},{}
-6257,Ice_Crystal,Ice Crystal,3,100,,10,,,,,,,,,,,,,{},{},{}
-6258,Comodo_Tropic_Fruit,Comodo Tropical Fruit,3,800,,10,,,,,,,,,,,,,{},{},{}
-6259,Drocera_Tentacle,Drosera Tentacle,3,100,,10,,,,,,,,,,,,,{},{},{}
-6260,Petti_Tail,Petite's Tail,3,100,,10,,,,,,,,,,,,,{},{},{}
-6261,Fine_Noodle,Fine Noodles,3,500,,10,,,,,,,,,,,,,{},{},{}
-6262,Cool_Gravy,Cool Gravy,3,400,,10,,,,,,,,,,,,,{},{},{}
-6263,Coconut_Fruit,Coconut Fruit,3,100,,10,,,,,,,,,,,,,{},{},{}
-6264,Melon,Melon,3,100,,10,,,,,,,,,,,,,{},{},{}
-6265,Pineapple,Pineapple,3,100,,10,,,,,,,,,,,,,{},{},{}
-6266,Cheat_Key,Key Of Deception,3,0,,0,,,,,,,,,,,,,{},{},{}
-6267,Virtual_Key,Key Of Illusion,3,0,,0,,,,,,,,,,,,,{},{},{}
-6268,Mirth_Key,Key Of Gaiety,3,0,,0,,,,,,,,,,,,,{},{},{}
-6269,Master_Brush,A Master's Blush,3,0,,0,,,,,,,,,,,,,{},{},{}
-6270,Mins_Picture,A Picture Of Minstrel Song,3,0,,0,,,,,,,,,,,,,{},{},{}
-6271,Mins_Receipt,Receipt,3,0,,0,,,,,,,,,,,,,{},{},{}
-6272,Experiment_Seed,Experiment Seed,3,0,,0,,,,,,,,,,,,,{},{},{}
-6273,Altered_Seed,Seed For Experiment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6274,Saint_Cloth_Piece,A Piece Of Cloth Of A Saint,3,0,,0,,,,,,,,,,,,,{},{},{}
-6275,King_Shield,Shield Of King,3,0,,0,,,,,,,,,,,,,{},{},{}
-6276,Clear_Reagent,Clear Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6277,Red_Reagent,Red Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6278,Black_Reagent,Black Reagent,3,0,,0,,,,,,,,,,,,,{},{},{}
-6279,Apple_Bomb_CB,Apple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6280,Pinepple_Bomb_CB,Pineapple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6281,Coconut_Bomb_CB,Coconut Fruit Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6282,Melon_Bomb_CB,Melon Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6283,Banana_Bomb_CB,Banana Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6284,Plant_Genetic_Grow,How To Grow Plant Genes,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6285,Quality_Potion_Book,Manual: How To Make High Quality Potion,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6286,F_Max_Weight_Up_Scroll,F Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6287,F_Clothing_Dye_Coupon,Omni Clothing Dye,3,0,,0,,,,,,,,,,,,,{},{},{}
-6288,F_Happy_Box,F Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6289,F_Mysterious_Dyestuff,F Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6290,F_New_Style_Coupon,F New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6291,F_Enriched_Elunium,F Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-6292,F_Enriched_Oridecon,F Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-6293,F_Token_Of_Siegfried,F Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-6294,F_Marriage_Covenant,F Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{}
-6295,F_Clothing_Dye_Coupon2,F Clothing Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{}
-6296,RF_Taining_Notice,Training Notice,3,20,,10,,,,,,,,,,,,,{},{},{}
-6297,Bottle_To_Throw,Throwing Bottle,3,300,,10,,,,,,,,,,,,,{},{},{}
-6298,Pumpkin_Head_Crushed,Pumpkin Head Crushed,3,20,,0,,,,,,,,,,,,,{},{},{}
-6299,Worn_Cloth_Piece,Worn Cloth Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-6300,J_7Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{}
-6301,J_Semi_Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{}
-6302,GM_Handwriting,GM Handwriting,3,20004,,0,,,,,,,,,,,,,{},{},{}
-6303,Changed_Hydra_Ball,Changed Hydra Ball,3,0,,0,,,,,,,,,,,,,{},{},{}
-6304,Sapa_Feat_Cert,Proof Of Sapha's Honor,3,0,,0,,,,,,,,,,,,,{},{},{}
-6305,Frozen_Skin_Piece,Frozen Piece Of Skin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6306,Solid_Bloodstain,Hard Bloodstain,3,0,,0,,,,,,,,,,,,,{},{},{}
-6307,Suspicious_Magic_Stone,Cursed Magical Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6308,Unidentified_Relic,Unidentified Relic,3,0,,0,,,,,,,,,,,,,{},{},{}
-6309,E_Max_Weight_Up_Scroll,E Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{}
-6310,E_Cloth_Dye_Coupon,E Cloth Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6311,E_Happy_Box,E Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6312,E_Mysterious_Dyestuff,E Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{}
-6313,E_New_Style_Coupon,E New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6314,E_Enriched_Elunium,E Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-6315,E_Enriched_Oridecon,E Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-6316,E_Token_Of_Siegfried,E Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-6317,E_Marriage_Covenant,E Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{}
-6318,E_Cloth_Dye_Coupon2,E Cloth Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{}
-6319,Small_Bradium,Small Bradium,3,324,,10,,,,,,,,,,,,,{},{},{}
-6320,Premium_Reset_Stone,Premium Reset Stone,3,20,,0,,,,,,,,,,,,,{},{},{}
-6321,Rakehorn_Helm,Rakehorn Helm,3,822,,10,,,,,,,,,,,,,{},{},{}
-6322,Antler_Helm,Antler Helmet,3,800,,10,,,,,,,,,,,,,{},{},{}
-6323,Twinhorn_Helm,Two-Horned Helmet,3,728,,10,,,,,,,,,,,,,{},{},{}
-6324,Singlehorn_Helm,Single Horned Helmet,3,702,,10,,,,,,,,,,,,,{},{},{}
-6325,White_Spider_Limb,White Spider Limb,3,1004,,10,,,,,,,,,,,,,{},{},{}
-6326,Queen_Wing_Piece,Queen Wing Piece,3,1630,,10,,,,,,,,,,,,,{},{},{}
-6327,Limited_High_Density_Bradium,(Limited)High Density Bradium,3,20,,10,,,,,,,,,,,,,{},{},{}
-6328,Calender_January,Calender January,3,20,,0,,,,,,,,,,,,,{},{},{}
-6329,Calender_February,Calender February,3,20,,0,,,,,,,,,,,,,{},{},{}
-6330,Calender_March,Calender March,3,20,,0,,,,,,,,,,,,,{},{},{}
-6331,Calender_April,Calender April,3,20,,0,,,,,,,,,,,,,{},{},{}
-6332,Calender_May,Calender May,3,20,,0,,,,,,,,,,,,,{},{},{}
-6333,Calender_June,Calender June,3,20,,0,,,,,,,,,,,,,{},{},{}
-6334,Calender_July,Calender July,3,20,,0,,,,,,,,,,,,,{},{},{}
-6335,Calender_August,Calender August,3,20,,0,,,,,,,,,,,,,{},{},{}
-6336,Calender_September,Calender September,3,20,,0,,,,,,,,,,,,,{},{},{}
-6337,Calender_October,Calender October,3,20,,0,,,,,,,,,,,,,{},{},{}
-6338,Calender_November,Calender November,3,20,,0,,,,,,,,,,,,,{},{},{}
-6339,Calender_December,Calender December,3,20,,0,,,,,,,,,,,,,{},{},{}
-6340,Fade_Notation_Green,Fade Notation Green,3,0,,10,,,,,,,,,,,,,{},{},{}
-6341,Fade_Notation_Red,Fade Notation Red,3,0,,10,,,,,,,,,,,,,{},{},{}
-6342,Fade_Notation_Purple,Fade Notation Purple,3,0,,10,,,,,,,,,,,,,{},{},{}
-6343,Fade_Notation_Blue,Fade Notation Blue,3,0,,10,,,,,,,,,,,,,{},{},{}
-6344,Muscle_Story,Muscle Story,3,0,,0,,,,,,,,,,,,,{},{},{}
-6345,Love_Ball,Love Lump,3,0,,0,,,,,,,,,,,,,{},{},{}
-6346,Seagate_Mark,Seagate Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6347,Bless_Word_Paper1,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6348,Bless_Word_Paper2,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6349,Bless_Word_Paper3,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6350,Bless_Word_Paper4,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6351,Bless_Word_Paper5,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6352,Bless_Word_Paper6,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6353,Bless_Word_Paper7,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6354,Bless_Word_Paper8,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6355,Bless_Word_Paper9,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6356,Bless_Word_Paper10,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{}
-6357,Fortune_Cookie_Fail,Fortune Cookie Fail,3,4020,,10,,,,,,,,,,,,,{},{},{}
-6358,Free_Cash_Coupon,Free Cash Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6359,Guidebook_Exchange,Guidebook Exchange,3,0,,0,,,,,,,,,,,,,{},{},{}
-6360,Scarlet_Pts,Scarlet Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6361,Indigo_Pts,Indigo Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6362,Yellow_Wish_Pts,Yellow Wish Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6363,Lime_Green_Pts,Lime Green Point,3,100,,5,,,,,,,,,,,,,{},{},{}
-6364,Woe_Coin,GvG Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6365,Arena_Coin,Arena Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6366,Turbo_Track_Coin,Turbo Track Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6367,Kafra_Coin,Kafra Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6368,Endless_Coin,Endless Tower Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6369,Amatsu_Bead_A,Amatsu Bead A,3,0,,0,,,,,,,,,,,,,{},{},{}
-6370,Amatsu_Bead_Ma,Amatsu Bead Ma,3,0,,0,,,,,,,,,,,,,{},{},{}
-6371,Amatsu_Bead_Tsu,Amatsu Bead Tsu,3,0,,0,,,,,,,,,,,,,{},{},{}
-6372,Amatsu_Bead_Jam,Amatsu Bead Jam,3,0,,0,,,,,,,,,,,,,{},{},{}
-6373,Amatsu_Bead_Bo,Amatsu Bead Bo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6374,Amatsu_Bead_Ree,Amatsu Bead Ree,3,0,,0,,,,,,,,,,,,,{},{},{}
-6375,Amatsu_Bead_!,Amatsu Bead !,3,0,,0,,,,,,,,,,,,,{},{},{}
-6376,KVM_Badge,KVM Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-6377,Buy_Market_Permit,Buy Market Permit,3,20,,10,,,,,,,,,,,,,{},{},{}
-6378,Winning_Mark,Winning Mark,3,0,,0,,,,,,,,,,,,,{},{},{}
-6379,Card_Coin,Card Coin,3,20,,10,,,,,,,,,,,,,{},{},{}
-6380,Mora_Coin,Mora Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6381,Field_Shovel,Field Shovel,3,20,,10,,,,,,,,,,,,,{},{},{}
-6382,Urn,Urn,3,20,,10,,,,,,,,,,,,,{},{},{}
-6383,Clue_Of_Lope,Lope's Clue,3,20,,10,,,,,,,,,,,,,{},{},{}
-6384,Ring_Of_Lope,Lope's Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-6385,Research_Tool_Bag,Research Tool Bag,3,0,,0,,,,,,,,,,,,,{},{},{}
-6386,Bathtub_R_Sample,Bath Water Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6387,Teeth_Sample,Teeth Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6388,Scale_Sample,Scale Sample,3,20,,0,,,,,,,,,,,,,{},{},{}
-6389,Puddle_R_Sample,Sample Of Puddle Research,3,20,,0,,,,,,,,,,,,,{},{},{}
-6390,Small_Pocket,Small Pocket,3,20,,0,,,,,,,,,,,,,{},{},{}
-6391,Splendid_Supply_Kit,Splendid Supply Kit,3,20,,2000,,,,,,,,,,,,,{},{},{}
-6392,Bradium_Box,Bradium Box,3,20,,10,,,,,,,,,,,,,{},{},{}
-6393,Round_Feather,Round Feather,3,525,,10,,,,,,,,,,,,,{},{},{}
-6394,Golden_Feather,Golden Feather,3,487,,10,,,,,,,,,,,,,{},{},{}
-6395,Angel_Magic_Power,Angel Magic Powder,3,615,,10,,,,,,,,,,,,,{},{},{}
-6396,Auger_Of_Spirit,Auger Of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{}
-6397,PR_Team_Ticket,PR Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6398,Develop_Team_Ticket,Develop Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6399,Marketing_Team_Ticket,Marketing Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6400,Operating_Team_Ticket,Operating Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6401,Palm_O,Palm Oil,3,0,,500,,,,,,,,,,,,,{},{},{}
-6402,Oil_Palm_F,Palm Oil Fruit,3,0,,50,,,,,,,,,,,,,{},{},{}
-6403,Comodo_L,Comodo Leather,3,5,,10,,,,,,,,,,,,,{},{},{}
-6404,Caress_H,Keris Hilt,3,0,,100,,,,,,,,,,,,,{},{},{}
-6405,Cendrawasih_F,Cendrawasih Feather,3,3,,10,,,,,,,,,,,,,{},{},{}
-6406,Cendrawasih_SF,Shining Cendrawasih Feather,3,10,,100,,,,,,,,,,,,,{},{},{}
-6407,Sang_Stone_Fragment,Raw Crystal Stone Fragment,3,10,,10,,,,,,,,,,,,,{},{},{}
-6408,Sang_Stone,Raw Crystal Stone,3,10,,10,,,,,,,,,,,,,{},{},{}
-6409,Sang_Stone_Mass,Raw Crystal Stone Mass,3,20,,10,,,,,,,,,,,,,{},{},{}
-6410,Idul_Fitri_Card,Idul Fitri Card,3,10,,10,,,,,,,,,,,,,{},{},{}
-6411,Ripe_Watermelon,Ripe Watermelon,3,20,,10,,,,,,,,,,,,,{},{},{}
-6412,Special_Medal,Special Medal,3,0,,0,,,,,,,,,,,,,{},{},{}
-6413,New_Insurance,New Insurance,3,2,,10,,,,,,,,,,,,,{},{},{}
-6414,Raganta_Card,Ragunta Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6415,Strange_Embryo,Strange Embryo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6416,Pet_Exchange,Pet Exchange,3,0,,0,,,,,,,,,,,,,{},{},{}
-6417,Silvervine,Silvervine Fruit,3,20,,0,,,,,,,,,,,,,{},{},{}
-6418,Agrade_Coin,A Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6419,Bgrade_Coin,B Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6420,Cgrade_Coin,C Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6421,Dgrade_Coin,D Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6422,Egrade_Coin,E Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-6423,Anger_Seagod,Sea God's Wrath,3,20,,0,,,,,,,,,,,,,{},{},{}
-6424,Halloween_Fragment,Spirit Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-6425,Halloween_Certificate,Halloween Certificate,3,20,,0,,,,,,,,,,,,,{},{},{}
-6426,Bad_Can,Bad Canned Food,3,20,,10,,,,,,,,,,,,,{},{},{}
-6427,Bad_Can_Sack,Bad Canned Food Sack,3,0,,0,,,,,,,,,,,,,{},{},{}
-6428,Bravery_Card_A,Adventure Card A,3,0,,0,,,,,,,,,,,,,{},{},{}
-6429,Bravery_Card_B,Adventure Card B,3,0,,0,,,,,,,,,,,,,{},{},{}
-6430,Picture_Piece,Picture Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-6431,Bucket,Pail,3,0,,100,,,,,,,,,,,,,{},{},{}
-6432,Full_Bucket,Full Pail,3,0,,3000,,,,,,,,,,,,,{},{},{}
-6433,Clean_Brush,Cleaning Brush,3,0,,300,,,,,,,,,,,,,{},{},{}
-6434,Fix_Kit,Fix Kit,3,0,,1000,,,,,,,,,,,,,{},{},{}
-6435,Fresh_Fruit,Fresh Fruit,3,0,,100,,,,,,,,,,,,,{},{},{}
-6436,Ptotection_Seagod,Sea God's Call,3,20,,0,,,,,,,,,,,,,{},{},{}
-6437,Scaraba_Perfume,Scaraba Perfume,3,0,,0,,,,,,,,,,,,,{},{},{}
-6438,Unbreakable_Weap,Unbreakable Weapon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6439,Unbreakable_Def,Unbreakable Armor,3,0,,10,,,,,,,,,,,,,{},{},{}
-6440,General_Lubricant,General Lubrication,3,20,,0,,,,,,,,,,,,,{},{},{}
-6441,High_RankLubricant,Advanced Lubrication,3,20,,0,,,,,,,,,,,,,{},{},{}
-6442,Octopus_Hunt_Stick,Octopus Hunting Skewer,3,0,,0,,,,,,,,,,,,,{},{},{}
-6443,Sillit_Pong_Bottle,Sillit Pong Bottle,3,20,,0,,,,,,,,,,,,,{},{},{}
-6444,Emperium_G,Emperium G,3,2,,1000,,,,,,,,,,,,,{},{},{}
-6445,Blue_Card_X,Blue Card X,3,0,,10,,,,,,,,,,,,,{},{},{}
-6446,Green_Paper,Green Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-6447,Red_Paper,Red Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-6448,White_Paper,White Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-6449,Casual_Diary,Casual Diary,3,0,,0,,,,,,,,,,,,,{},{},{}
-6450,Honest_Diary,Honest Diary,3,0,,0,,,,,,,,,,,,,{},{},{}
-6451,Unknown_Fish,Unknown Fish,3,20,,0,,,,,,,,,,,,,{},{},{}
-6452,Etoile_Ring,Etoile Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-6453,Undelivered_Gift,Undelivered Gift,3,2,,10,,,,,,,,,,,,,{},{},{}
-6454,Santa_Bag,Santa Bag,3,2,,10,,,,,,,,,,,,,{},{},{}
-6455,Tiny_Ticket,Tiny Ticket,3,20,,0,,,,,,,,,,,,,{},{},{}
-6456,Guarantee_Weapon_5Up,+5 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6457,Guarantee_Armor_5Up,+5 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6459,Jae_Sinho_Unpo,Jae Sinho Unpo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6460,Jae_Sinho_Undo,Jae Sinho Undo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6461,Mimong_Sungjin,Mimong Sungjin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6462,Gilsang_Yeoui,Gilsang Yeoui,3,0,,0,,,,,,,,,,,,,{},{},{}
-6463,Sin_Sun_Jeonsul,Sin Sun Jeonsul,3,0,,0,,,,,,,,,,,,,{},{},{}
-6464,Hate_Bundle,Hate Crate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6465,Guard_Coin,Guard Coin,3,0,,10,,,,,,,,,,,,,{},{},{}
-6466,Clean_Water,Clean Water,3,20,,10,,,,,,,,,,,,,{},{},{}
-6467,Perfume,Perfume,3,20,,10,,,,,,,,,,,,,{},{},{}
-6468,Thai_Perfume,Thai Perfume,3,20,,10,,,,,,,,,,,,,{},{},{}
-6469,Will_Of_Warrior,Warrior's Will,3,1000,,10,,,,,,,,,,,,,{},{},{}
-6470,Blood_Thirst,Blood Thirst,3,1200,,10,,,,,,,,,,,,,{},{},{}
-6471,Goast_Chill,Chills Of Death,3,1600,,10,,,,,,,,,,,,,{},{},{}
-6472,Holy_Mom_Blaze,Holy Mom Blaze,3,0,,0,,,,,,,,,,,,,{},{},{}
-6473,Amatsu_Orb01,Amatsu Orb01,3,0,,0,,,,,,,,,,,,,{},{},{}
-6474,Amatsu_Orb02,Amatsu Orb02,3,0,,0,,,,,,,,,,,,,{},{},{}
-6475,Amatsu_Orb03,Amatsu Orb03,3,0,,0,,,,,,,,,,,,,{},{},{}
-6476,Amatsu_Orb04,Amatsu Orb04,3,0,,0,,,,,,,,,,,,,{},{},{}
-6477,Amatsu_Orb05,Amatsu Orb05,3,0,,0,,,,,,,,,,,,,{},{},{}
-6478,Amatsu_Orb06,Amatsu Orb06,3,0,,0,,,,,,,,,,,,,{},{},{}
-6479,Amatsu_Orb07,Amatsu Orb07,3,0,,0,,,,,,,,,,,,,{},{},{}
-6480,Event_coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6481,Holy_Rock_Piece,Holy Rock Piece,3,0,,0,,,,,,,,,,,,,{},{},{}
-6482,Ancient_City_Key,Ancient City Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-6483,Dream_Scroll,Dream Scroll,3,0,,0,,,,,,,,,,,,,{},{},{}
-6484,Enchant_Book,Enchant Book,3,0,,10,,,,,,,,,,,,,{},{},{}
-6485,BlueCard_2,Blue 2 Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6486,BlueCard_0,Blue 0 Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6487,BlueCard_1,Blue 1 Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-6488,Thanks_Invest_Ticket,Thanks Invest Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-6489,Cats_Invest_Certif,Cats Invest Certificate,3,0,,10,,,,,,,,,,,,,{},{},{}
-6490,Magic_Clay_Fragment,Magic Clay Fragment,3,0,,10,,,,,,,,,,,,,{},{},{}
-6491,Magic_Clay,Magic Clay,3,0,,10,,,,,,,,,,,,,{},{},{}
-6492,Magic_Clay_Lump,Magic Clay Lump,3,0,,10,,,,,,,,,,,,,{},{},{}
-6493,Makibishi,Makibishi,3,30,,1,,,,,,,,,,,,,{},{},{}
-6494,Kafra_Coin2,Kafra Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6495,Para_Logro_Badge,Eden Merit Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-6496,Tikbalang_Thick_Spine,Tikbalang's Thick Spine,3,300,,10,,,,,,,,,,,,,{},{},{}
-6497,Lesser_Agimat,Lesser Agimat,3,20,,50,,,,,,,,,,,,,{},{},{}
-6498,Jejellopy,Jejellopy,3,200,,10,,,,,,,,,,,,,{},{},{}
-6499,Ancient_Grudge,Ancient Grudge,3,500,,10,,,,,,,,,,,,,{},{},{}
-6500,Sharp_Bamboo,Sharpened Bamboo,3,0,,0,,,,,,,,,,,,,{},{},{}
-6501,Salt_Bag,Salt Bag,3,0,,0,,,,,,,,,,,,,{},{},{}
-6502,Silver_Cross,The Cross,3,0,,0,,,,,,,,,,,,,{},{},{}
-6503,Soul_Protection,Spiritual Protection,3,0,,0,,,,,,,,,,,,,{},{},{}
-6504,Cast_Iron_Caldron,Cast-Iron Caldron,3,0,,0,,,,,,,,,,,,,{},{},{}
-6505,Purified_Bone,Purified Spirit Bone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6506,Memorial_Bouquet,Offering Bouquet,3,0,,0,,,,,,,,,,,,,{},{},{}
-6507,Evil_Bone,Evil Spirit Bone,3,0,,0,,,,,,,,,,,,,{},{},{}
-6508,Silver_Bracelet,Silver Bracelet,3,300,,10,,,,,,,,,,,,,{},{},{}
-6509,Mysterious_Flower,Mysterious Flower,3,500,,10,,,,,,,,,,,,,{},{},{}
-6510,Elegant_Flower,Elegant Flower,3,300,,10,,,,,,,,,,,,,{},{},{}
-6511,Beautiful_Flower,Beautiful Flower,3,300,,10,,,,,,,,,,,,,{},{},{}
-6512,Charm_Fire,Fire Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6513,Charm_Ice,Ice Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6514,Charm_Wind,Wind Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6515,Charm_Earth,Earth Amulet,3,100,,1,,,,,,,,,,,,,{},{},{}
-6516,Bakonawa_Doll,Bakonawa Doll,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6517,Bangungot_Doll,Bangungot Doll,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6518,Buwaya_Doll,Buwaya Doll,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6519,Collected_Samples,Collected Sample,3,0,,0,,,,,,,,,,,,,{},{},{}
-6520,Lost_Belongings,Lost Belongings,3,0,,0,,,,,,,,,,,,,{},{},{}
-6521,Royal_Certificate,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6522,Royal_Certificate_,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6523,Bakonawa_Spirit_Piece,Piece of Bakonawa's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6524,Bangungot_Spirit_Piece,Piece of Bangungot's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6525,Buwaya_Spirit_Piece,Piece of Buwaya's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6526,BlueCard_Happy,BlueCard Happy,3,0,,10,,,,,,,,,,,,,{},{},{}
-6527,BlueCard_Enjoy,BlueCard Enjoy,3,0,,10,,,,,,,,,,,,,{},{},{}
-6528,BlueCard_Light,BlueCard Light,3,0,,10,,,,,,,,,,,,,{},{},{}
-6529,BlueCard_Mid,BlueCard Mid,3,0,,10,,,,,,,,,,,,,{},{},{}
-6530,BlueCard_Fall,BlueCard Fall,3,0,,10,,,,,,,,,,,,,{},{},{}
-6531,Royal_Certificate__,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{}
-6532,Honey_Songpyun,Honey Songpyun,3,0,,10,,,,,,,,,,,,,{},{},{}
-6533,Torn_Document,Torn Document,3,2,,500,,,,,,,,,,,,,{},{},{}
-6534,Fruit_Sundae,Fruit Sundae,3,2,,50,,,,,,,,,,,,,{},{},{}
-6535,Red_Cloth,Red Cloth,3,0,,10,,,,,,,,,,,,,{},{},{}
-6536,Star_Decor,Star Decor,3,0,,10,,,,,,,,,,,,,{},{},{}
-6537,Sky_Medal,Sky Medal,3,20,,0,,,,,,,,,,,,,{},{},{}
-6538,Real_Blank_Card,Real Blank Card,3,20,,0,,,,,,,,,,,,,{},{},{}
-6539,Old_Left_Lapine,Old Left Lapine,3,0,,0,,,,,,,,,,,,,{},{},{}
-6540,Golden_Leaf,Golden Leaf,3,0,,0,,,,,,,,,,,,,{},{},{}
-6541,Avant_Research_Data,Avant Research Data,3,0,,0,,,,,,,,,,,,,{},{},{}
-6542,Star_Shape_Mushroom,Star Shape Mushroom,3,20,,100,,,,,,,,,,,,,{},{},{}
-6543,Lv110_Achieved_Coin,Lv110 Achieved Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6544,Lv120_Achieved_Coin,Lv120 Achieved Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6545,Firm_Hair,Firm Hair,3,0,,0,,,,,,,,,,,,,{},{},{}
-6546,Younger_Bro_Letter,Younger Bro Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-6547,Stained_Research_Book,Stained Research Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-6548,Piece_Of_Lapine_Wing,Piece Of Lapine Wing,3,0,,0,,,,,,,,,,,,,{},{},{}
-6549,Courtesy_Ticket,Courtesy Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-6550,Brownie_Ticket,Brownie Ticket,3,20,,0,,,,,,,,,,,,,{},{},{}
-6551,RWC_Spirit_Auger,RWC Spirit Auger,3,0,,10,,,,,,,,,,,,,{},{},{}
-6552,Mail_Package,Mail Package,3,0,,0,,,,,,,,,,,,,{},{},{}
-6553,Leaf_Made_Wood,Leaf Made Wood,3,0,,0,,,,,,,,,,,,,{},{},{}
-6554,Seed_Box,Seed Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-6555,Birthday_Candle,Birthday Candle,3,0,,0,,,,,,,,,,,,,{},{},{}
-6556,Nespresso_Ticket,Nespresso Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-6557,Fancy_Fairy_Wing,Fancy Fairy Wing,3,2350,,10,,,,,,,,,,,,,{},{},{}
-6558,Pile_Of_Acorn,Pile Of Acorn,3,1500,,10,,,,,,,,,,,,,{},{},{}
-6559,Eye_Drops,Eye Drops,3,1780,,10,,,,,,,,,,,,,{},{},{}
-6560,Leaf_Bookmark,Leaf Bookmark,3,3000,,10,,,,,,,,,,,,,{},{},{}
-6561,Dustball,Dustball,3,2000,,10,,,,,,,,,,,,,{},{},{}
-6562,Tiny_Mouse_Tail,Tiny Mouse Tail,3,0,,0,,,,,,,,,,,,,{},{},{}
-6563,Weeds,Weeds,3,0,,0,,,,,,,,,,,,,{},{},{}
-6564,Captive_Hatchling,Captive Hatchling,3,0,,10,,,,,,,,,,,,,{},{},{}
-6565,Racy_Spice,Racy Spice,3,20,,10,,,,,,,,,,,,,{},{},{}
-6566,Cacao99_Recipe,Cacao99 Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-6567,Choco_Drink_Recipe,Choco Drink Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-6581,Holy_Amulet,Holy Amulet,3,20,,10,,,,,,,,,,,,,{},{},{}
-6583,3rd_Test_Pass,3rd Test Pass,3,0,,0,,,,,,,,,,,,,{},{},{}
-6592,Small_Wooden_Chest,Small Wooden Chest,3,0,,10,,,,,,,,,,,,,{},{},{}
-6593,Cryptura_Hair_Coupon,Cryptura Hair Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-6594,Magic_Bronze_Bullion,Magic Bronze Bullion,3,0,,1000,,,,,,,,,,,,,{},{},{}
-6595,Hammer_Of_Velund,Hammer Of Velund,3,0,,500,,,,,,,,,,,,,{},{},{}
-6596,Anvil_Of_Velund,Anvil Of Velund,3,0,,2000,,,,,,,,,,,,,{},{},{}
-6597,Bracelet_Of_Velund,Bracelet Of Velund,3,0,,500,,,,,,,,,,,,,{},{},{}
-6598,Rib_Of_Jormungand,Rib Of Jormungand,3,0,,10000,,,,,,,,,,,,,{},{},{}
-6599,Spirit_Of_Hugin,Spirit Of Hugin,3,0,,100,,,,,,,,,,,,,{},{},{}
-6600,Spirit_Of_Munin,Spirit Of Munin,3,0,,100,,,,,,,,,,,,,{},{},{}
-6601,Chisel_Of_Giant,Chisel Of Giant,3,0,,1000,,,,,,,,,,,,,{},{},{}
-6602,Secret_Of_Rune,Secret Of Rune,3,0,,100,,,,,,,,,,,,,{},{},{}
-6603,Skin_Of_Hraesvelg,Skin Of Hraesvelg,3,0,,500,,,,,,,,,,,,,{},{},{}
-6604,Essence_Rune_Magic,Essence Rune Magic,3,0,,0,,,,,,,,,,,,,{},{},{}
-6605,Muspellium,Muspellium,3,0,,0,,,,,,,,,,,,,{},{},{}
-6606,P_Cart_C,Cute Cart Remodel Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-6607,Temporal_Crystal,Temporal Crystal,3,20,,10,,,,,,,,,,,,,{},{},{}
-6608,Coagulated_Spell,Coagulated Spell,3,20,,10,,,,,,,,,,,,,{},{},{}
-6609,Glast_Decayed_Nail,Glast Decayed Nail,3,2800,,10,,,,,,,,,,,,,{},{},{}
-6610,Glast_Horrendous_Mouth,Glast Horrendous Mouth,3,3200,,10,,,,,,,,,,,,,{},{},{}
-6611,Colorful_Key,Colorful Key,3,50000,,10,,,,,,,,,,,,,{},{},{}
-6612,Gold_Coin_Basket,Gold Coin Basket,3,300000,,200,,,,,,,,,,,,,{},{},{}
-6613,Colorful_Brooch,Colorful Brooch,3,100000,,10,,,,,,,,,,,,,{},{},{}
-6615,Siege_Guild_Coin,Siege Guild Coin,3,0,,10,,,,,,,,,,,,,{},{},{}
-6616,Lmtd_Manny_Card,Limited Manny Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6617,Lmtd_Sid_Card,Limited Sid Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6618,Lmtd_Diego_Card,Limited Diego Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6619,Lmtd_Scrat_Card,Limited Scrat Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-6623,Rough_Energy_Crystal,Rough Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-6624,Purified_Energy_Crystal,Purified Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-6625,High_Purity_Energy_Xtal,High Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-
-6635,Blacksmith_Blessing,Blacksmith Blessing,3,20,,0,,,,,,,,,,,,,{},{},{}
-6636,Floor_Str,Strength Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bStr,1; },{},{}
-6637,Floor_Int,Intelligence Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bInt,1; },{},{}
-6638,Floor_Agi,Agility Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bAgi,1; },{},{}
-6639,Floor_Dex,Dexterity Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bDex,1; },{},{}
-6640,Floor_Vit,Health Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bVit,1; },{},{}
-6641,Floor_Luk,Lucky Stone(Upper),3,10,,100,,,,,,,,,,,,,{ bonus bLuk,1; },{},{}
-6642,ATKStone_Middle,Attack Stone(Middle),3,10,,100,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{}
-6643,Floor_Matk,Magical Stone(Middle),3,10,,100,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{}
-6644,HITStone_Bottom,Hit Stone(Lower),3,10,,100,,,,,,,,,,,,,{ bonus bHit,1; },{},{}
-6645,FLEEStone_Bottom,Evasion Stone(Lower),3,10,,100,,,,,,,,,,,,,{ bonus bFlee,1; },{},{}
-
-6669,Jade_Leaf,Emerald Leaf,3,0,,10,,,,,,,,,,,,,{},{},{}
-
-6697,Costumes_Exchange_Coupons,Costumes Exchange Coupons,3,10,,10,,,,,,,,,,,,,{},{},{}
-6646,Poring_Badge,Poring Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-6648,Shabby_Crown,Old Crown,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6649,Broken_Horn,Broken Horn,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6650,Shabby_Ring,Old Ring,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6651,Rusty_Bracelet,Rusty Bracalet,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6652,Old_Photo_Album,Old Photo Album,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6653,Shabby_Pill,Old Pill,3,10,,10,,,,0,,,,,,,,,{},{},{}
-6654,Needle_And_Thread,Needle And Thread,3,0,,0,,,,,,,,,,,,,{},{},{}
-6655,Firm_Pumpkin,Firm Pumpkin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6656,Goast_Free_Charm,Goast Free Charm,3,0,,0,,,,,,,,,,,,,{},{},{}
-6657,Memory_Of_Jack,Memory Of Jack,3,0,,0,,,,,,,,,,,,,{},{},{}
-6658,Halloween_Coin,Halloween Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6665,RWC_Inicializer,RWC Inicializer,3,0,,10,,,,,,,,,,,,,{},{},{}
-6671,Geffen_Coin_Magic_Tournament,Geffen Coin Magic Tournament,3,10,,0,,,,,,,,,,,,,{},{},{}
-6672,Shard_of_Gray,Shard of Gray,3,10,,0,,,,,,,,,,,,,{},{},{}
-6673,Bossnia_Tickets,Bossnia Tickets,3,10,,0,,,,,,,,,,,,,{},{},{}
-6674,GM_Coin,GM Coin,3,0,,10,,,,,,,,,,,,,{},{},{}
-6681,XMAS_Cookie,Christmas Cookie,3,20,,10,,,,,,,,,,,,,{},{},{}
-6682,Bag_Of_Selling_Goods,Bag Of Selling Goods,3,20,,10,,,,,,,,,,,,,{},{},{}
-6683,Dried_Flower,Dried Flower,3,10,,10,,,,,,,,,,,,,{},{},{}
-6684,TokenOfHero,Token Of Hero,3,10,,0,,,,,,,,,,,,,{},{},{}
-6685,Morocc_Certification,Morocc Certification,3,10,,0,,,,,,,,,,,,,{},{},{}
-6686,Brick,Brick,3,10,,2000,,,,,,,,,,,,,{},{},{}
-6687,Rope__,Rope,3,10,,2000,,,,,,,,,,,,,{},{},{}
-6688,Wood_,Wood,3,10,,2000,,,,,,,,,,,,,{},{},{}
-6689,BurningSkin,Burning Bug Skin,3,10,,0,,,,,,,,,,,,,{},{},{}
-6690,YummyStem,Yummy Stem,3,10,,0,,,,,,,,,,,,,{},{},{}
-6691,BurningFeather,Burning Feather,3,10,,0,,,,,,,,,,,,,{},{},{}
-6692,PatrolLog,Patrol Log,3,10,,1,,,,,,,,,,,,,{},{},{}
-6693,Stone_Of_Blessing,Stone Of Blessing,3,10,,10,,,,,,,,,,,,,{},{},{}
-6694,Monster_Blood,Monster Blood,3,10,,10,,,,,,,,,,,,,{},{},{}
-6695,ToothOfFlameGolem,Golem's Fiery Stone Tooth,3,10,,100,,,,,,,,,,,,,{},{},{}
-6696,ToothOfFlameFrilldora,Frilldora's Fiery Nape,3,10,,10,,,,,,,,,,,,,{},{},{}
-6698,Wooden_Axe,Wooden Axe,3,10,,1000,,,,,,,,,,,,,{},{},{}
-6699,Faith_Silence,Faith Silence,3,10,,0,,,,,,,,,,,,,{},{},{}
-6700,White_Snake_Scale,White Snake Scale,3,10,,0,,,,,,,,,,,,,{},{},{}
-6701,Treasure_Dwarf,Treasure Dwarf,3,10,,0,,,,,,,,,,,,,{},{},{}
-6702,Sweat_Dwarf,Sweat Dwarf,3,10,,0,,,,,,,,,,,,,{},{},{}
-6703,Warrior_Tears,Warrior Tears,3,10,,0,,,,,,,,,,,,,{},{},{}
-6704,Warrior_Anger,Warrior Anger,3,10,,0,,,,,,,,,,,,,{},{},{}
-6705,Warrior_Certificate,Warrior Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6706,Guardian_Flowers,Guardian Flowers,3,10,,0,,,,,,,,,,,,,{},{},{}
-6707,Jeremy_Beauty_Coupon,Jeremy Beauty Coupon,3,10,,10,,,,,,,,,,,,,{},{},{}
-6708,Mana_crystal,Mana Crystal,3,10,,,,,,,,,,,,,,,{},{},{}
-6709,Crisp_Silk,Crisp Silk,3,10,,0,,,,,,,,,,,,,{},{},{}
-6710,Tied_Snake,Tied Snake,3,10,,0,,,,,,,,,,,,,{},{},{}
-6712,Lovely_Stick,Lovely Stick,3,0,,0,,,,,,,,,,,,,{},{},{}
-6713,Heart_of_Soul,Heart of Soul,3,0,,0,,,,,,,,,,,,,{},{},{}
-6714,Sheenas_Soul,Sheena's Soul,3,20,,0,,,,,,,,,,,,,{},{},{}
-6715,P_Of_Evil_Soul,Darklord Soulpiece,3,20,,0,,,,,,,,,,,,,{},{},{}
-6716,Cri_Stone,Critical Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bCritical,1; },{},{}
-6717,MHPStone_Middle,Fitness Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bMaxHP,50; },{},{}
-6718,MSPStone_Bottom,Magical Stone(Lower),6,10,,100,,,,,,,,,,,,,{ bonus bMaxSP,10; },{},{}
-6719,Jitterbug's_Tooth,Jitterbug's Tooth,3,10,,100,,,,,,,,,,,,,{},{},{}
-6720,Status_Reset_Coupon,Status Reset Coupon,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ resetstatus; },{},{}
-6721,Status_Reset_Coupon_,Status Reset Coupon,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ resetstatus; },{},{}
-6722,Delicious_Clam_Flesh,Delicious Clam Flesh,3,10,,0,,,,,,,,,,,,,{},{},{}
-6723,Delicious_Canned_Food,Delicious Canned Food,3,10,,0,,,,,,,,,,,,,{},{},{}
-6724,Savage_Box,Savage Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6725,Grand_Peco_Box,Grand Peco Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6726,Desert_Wolf_Box,Desert Wolf Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6727,Arranged_Photo_Album,Arranged Photo Album,3,10,,0,,,,,,,,,,,,,{},{},{}
-6732,Monster_Coin,Monster Coin,3,10,,0,,,,,,,,,,,,,{},{},{}
-6733,Tingly_Feather,Tingly Feather,3,10,,0,,,,,,,,,,,,,{},{},{}
-6734,Unknown_Meal,Unknown Meal,3,0,,0,,,,,,,,,,,,,{},{},{}
-6735,Special_Condiment,Special Condiment,3,0,,20,,,,,,,,,,,,,{},{},{}
-6736,Minced_Meat,Minced Meat,3,0,,20,,,,,,,,,,,,,{},{},{}
-6737,Fermented_Wheat_Flour,Fermented Wheat Flour,3,0,,20,,,,,,,,,,,,,{},{},{}
-6738,Rissole,Rissole,3,0,,0,,,,,,,,,,,,,{},{},{}
-6739,Recipe,Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-6740,HealStone_Top,Stone Recovery(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bAddItemHealRate,2; },{},{}
-6741,HealStone2_Top,Stone Recovery Skills(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bHealPower2,2; },{},{}
-6742,HealStone_Middle,Stone Recovery(Middle),6,10,,100,,,,,,,,,,,,,{ bonus2 bHPRegenRate,10,10000; },{},{}
-6743,HPStone_Middle,HP Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bMaxHPrate,1; },{},{}
-6744,SPStone_Middle,SP Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bMaxSPrate,1; },{},{}
-6745,HealStone_Bottom,Recovery Stone(Low),6,20,,10,,,,,,,,,,,,,{ bonus bSPGainValue,1; bonus bMagicHPGainValue,1; },{},{}
-6746,Iron_Artifacts,Steel Artifact,3,10,,0,,,,,,,,,,,,,{},{},{}
-6747,Iron_Artifacts_,Steel Artifact,3,10,,0,,,,,,,,,,,,,{},{},{}
-6748,Daily_Report_He_And_His_Team,Daily Report He And His Team,3,10,,0,,,,,,,,,,,,,{},{},{}
-6749,Operation_Control_Device,Operation Control Device,3,10,,0,,,,,,,,,,,,,{},{},{}
-6750,Failed_Engine,Failed Engine,3,10,,10,,,,,,,,,,,,,{},{},{}
-6751,Crushed_Can_Iron_Plate,Crushed Can Iron Plate,3,10,,10,,,,,,,,,,,,,{},{},{}
-6752,Charleston_Parts,Charleston Parts,3,10,,10,,,,,,,,,,,,,{},{},{}
-6753,Token_Of_Destruction,Token Of Destruction,3,10,,0,,,,,,,,,,,,,{},{},{}
-6754,Collected_Medicinal_Herbs,Collected Medicinal Herbs,3,10,,0,,,,,,,,,,,,,{},{},{}
-6755,Contaminated_Magic,Contaminated Magic,3,20,,10,,,,,,,,,,,,,{},{},{}
-6756,Cohesive_Energy,Cohesive Energy,3,20,,0,,,,,,,,,,,,,{},{},{}
-6757,The_Memory_Recorder,The Memory Recorder,3,20,,0,,,,,,,,,,,,,{},{},{}
-
-6762,Banana_Can,Banana Can,3,0,,10,,,,,,,,,,,,,{},{},{}
-6763,Spicy_Rice_Cake,Spicy Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{}
-6764,Hotdog,Hot Dog,3,0,,10,,,,,,,,,,,,,{},{},{}
-6765,Big_Wheel_Cracker,Ferris Wheel Biscuit,3,0,,10,,,,,,,,,,,,,{},{},{}
-6766,Ice_World_Ticket,Tickets Ice Kingdom,3,0,,0,,,,,,,,,,,,,{},{},{}
-6767,Summer_Fes_Coin,Summer Festival Coins,3,0,,0,,,,,,,,,,,,,{},{},{}
-6768,Red_Beans_Of_Ice,Shaved Ice For Red Beans,3,0,,0,,,,,,,,,,,,,{},{},{}
-6769,Sweet_Rice_Cake,Sweet Bread,3,0,,0,,,,,,,,,,,,,{},{},{}
-6770,Shark,Shark,3,1,,10,,,,,,,,,,,,,{},{},{}
-6771,Bluefin_Tuna,Bonito,3,1,,10,,,,,,,,,,,,,{},{},{}
-6772,Octopus,Octopus,3,1,,10,,,,,,,,,,,,,{},{},{}
-6773,Snapper,Sea Bream,3,1,,10,,,,,,,,,,,,,{},{},{}
-6774,Piranha,Piranha,3,1,,10,,,,,,,,,,,,,{},{},{}
-6775,Salmon,Salmon,3,1,,10,,,,,,,,,,,,,{},{},{}
-6776,Eels,Eel,3,1,,10,,,,,,,,,,,,,{},{},{}
-6777,Carp,Carp,3,1,,10,,,,,,,,,,,,,{},{},{}
-6778,Squid_2,Squid,3,1,,10,,,,,,,,,,,,,{},{},{}
-6779,Mackerel,Mackerel,3,1,,10,,,,,,,,,,,,,{},{},{}
-6780,Crucian_Carp,Crucian Carp,3,1,,10,,,,,,,,,,,,,{},{},{}
-6781,Living_Earthworm,Earthworms Alive,3,1,,10,,,,,,,,,,,,,{},{},{}
-6782,Fresh_Lobster,Fresh Shrimp,3,1,,10,,,,,,,,,,,,,{},{},{}
-6784,Squid_Skewer,Squid Skewer,3,0,,0,,,,,,,,,,,,,{},{},{}
-6785,Fantastic_Sauce,Source Of Fantasy,3,0,,0,,,,,,,,,,,,,{},{},{}
-6786,Squid_Of_Bbq,Squid Barbecue,3,0,,0,,,,,,,,,,,,,{},{},{}
-6787,Good_Firewood,Long Firewood,3,0,,0,,,,,,,,,,,,,{},{},{}
-6788,Rose_Knife,Rose Knife,3,0,,0,,,,,,,,,,,,,{},{},{}
-6789,Custom_Pan,Customized Plates,3,0,,0,,,,,,,,,,,,,{},{},{}
-6790,BigStone_Top,Large Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Large,1; },{},{}
-6791,MediumStone_Top,Medium Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Medium,1; },{},{}
-6792,SmallStone_Top,Small Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Small,1; },{},{}
-6795,Ticket_Special_RO2,Ticket Special RO2,3,10,,0,,,,,,,,,,,,,{},{},{}
-6796,RO2_Name_Card,RO2 Name Card,3,10,,0,,,,,,,,,,,,,{},{},{}
-6797,11th_Coin,11th Anniversary Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-6803,Fragments_Of_Gigan,Fragments Of Gigan,3,10,,10,,,,,,,,,,,,,{},{},{}
-6804,ORGANIC_PUMPKIN,Organic Pumpkin,3,20,,10,,,,,,,,,,,,,{},{},{}
-6805,INORGANIC_PUMPKIN,Inorganic Pumpkin,3,20,,10,,,,,,,,,,,,,{},{},{}
-6813,Kafra_Ticket,Kafra Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-6814,Swordman_Soul,Swordman Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6815,Merchant_Soul,Merchant Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6816,Thief_Soul,Thief Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6817,Mage_Soul,Mage Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6818,Archer_Soul,Archer Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6819,Acolyte_Soul,Acolyte Soul,3,10,,10,,,,,,,,,,,,,{},{},{}
-6820,Particles_Of_Energy,Energy Fragment,3,0,,10,,,,,,,,,,,,,{},{},{}
-6821,Solo_Troops_Badge,Single Union Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-6824,Experimental_Dong_Memory_Record,Experimental Dong Memory Record,3,10,,10,,,,,,,,,,,,,{},{},{}
-6825,Air_Cleaner_Box,Air Cleaner Box,3,10,,10000,,,,,,,,,,,,,{},{},{}
-6826,Fresh_Grapes,Fresh Grapes,3,10,,100,,,,,,,,,,,,,{},{},{}
-6827,Complete_Machine_Parts,Complete Machine Parts,3,10,,0,,,,,,,,,,,,,{},{},{}
-6828,Gravity_Safety_Device,Gravity Safety Device,3,10,,100,,,,,,,,,,,,,{},{},{}
-6832,Questioned_Parts,Questioned Parts,3,10,,10,,,,,,,,,,,,,{},{},{}
-6833,Limited_Token_of_Ziegfried,(Limited) Token of Ziegfried,3,10,,10,,,,,,,,,,,,,{},{},{}
-6834,Legendary_Fur,Legendary Fur,3,10,,10,,,,,,,,,,,,,{},{},{}
-6835,Legendary_Mane,Legendary Mane,3,10,,10,,,,,,,,,,,,,{},{},{}
-6836,Talisman_Of_Soul,Talisman Of Soul,3,10,,0,,,,,,,,,,,,,{},{},{}
-6837,Piece_Of_Soul_Mouse,Piece Of Soul Mouse,3,10,,0,,,,,,,,,,,,,{},{},{}
-6838,Secret_Orders_Of_Prophet_K,Secret Orders Of Prophet K,3,10,,0,,,,,,,,,,,,,{},{},{}
-6839,Gold_Choco_Coin,Gold Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{}
-6840,Silver_Choco_Coin,Silver Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{}
-6841,Bronze_Choco_Coin,Bronze Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{}
-6842,Huge_Jewery,Huge Jewery,3,10,,0,,,,,,,,,,,,,{},{},{}
-6843,Thin_Ring,Thin Ring,3,10,,0,,,,,,,,,,,,,{},{},{}
-6844,Mild_Stone,Mild Stone,3,10,,0,,,,,,,,,,,,,{},{},{}
-6845,That_Thing,That Thing,3,10,,0,,,,,,,,,,,,,{},{},{}
-6846,Limited_Gym_Membership_Card,(Limited)Gym Membership Card,6,10,,10,,,,,,,,,,,,,{},{},{}
-6847,Very_Small_Box,Very Small Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6848,Light_Box,Light Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6849,Request_Complete_Certificate,Request Complete Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6850,Questionable_Box,Questionable Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-6851,Questionable_Document,Questionable Document,3,10,,0,,,,,,,,,,,,,{},{},{}
-6852,Super_Corrector,Super Corrector,3,10,,0,,,,,,,,,,,,,{},{},{}
-6853,Thanks_Bouquet,Thanks Bouquet,3,10,,0,,,,,,,,,,,,,{},{},{}
-6854,Novus_Captured,Novus Captured,3,10,,0,,,,,,,,,,,,,{},{},{}
-6855,Tatacho_Captured,Tatacho Captured,3,10,,0,,,,,,,,,,,,,{},{},{}
-6856,Manuscript_Written_By_Pigoreum,Manuscript Written By Pigoreum,3,10,,0,,,,,,,,,,,,,{},{},{}
-6857,Very_Hard_Stone,Very Hard Stone,3,10,,0,,,,,,,,,,,,,{},{},{}
-6858,Lude_Captured,Lude Captured,3,10,,0,,,,,,,,,,,,,{},{},{}
-6859,Wanderer_Captured,Wanderer Captured,3,10,,0,,,,,,,,,,,,,{},{},{}
-6860,Piece_Of_Soul_Cow,Piece Of Soul Cow,3,10,,0,,,,,,,,,,,,,{},{},{}
-6862,Piece_Of_Soul_Tiger,Piece Of Soul Tiger,3,10,,0,,,,,,,,,,,,,{},{},{}
-6863,Strong_Piece_Of_Soul_Tiger,Strong Piece Of Soul Tiger,3,10,,0,,,,,,,,,,,,,{},{},{}
-6864,Safe_to_19_Weapon_Certificate,Safe to 19 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6865,Safe_to_19_Armor_Certificate,Safe to 19 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6866,Piece_Of_Soul_Rabbit,Piece Of Soul Rabbit,3,0,,0,,,,,,,,,,,,,{},{},{}
-6867,Large_Insect_Barrel,Large Insect Barrel,3,0,,0,,,,,,,,,,,,,{},{},{}
-6868,Medium_Insect_Barrel,Medium Insect Barrel,3,0,,0,,,,,,,,,,,,,{},{},{}
-6869,Dust,Dust,3,0,,0,,,,,,,,,,,,,{},{},{}
-6870,Safe_to_13_Weapon_Certificate,Safe to 13 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6871,Safe_to_14_Weapon_Certificate,Safe to 14 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6872,Safe_to_15_Weapon_Certificate,Safe to 15 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6873,Safe_to_16_Weapon_Certificate,Safe to 16 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6874,Safe_to_17_Weapon_Certificate,Safe to 17 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6875,Safe_to_18_Weapon_Certificate,Safe to 18 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6876,Safe_to_13_Armor_Certificate,Safe to 13 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6877,Safe_to_14_Armor_Certificate,Safe to 14 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6878,Safe_to_15_Armor_Certificate,Safe to 15 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6879,Safe_to_16_Armor_Certificate,Safe to 16 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6880,Safe_to_17_Armor_Certificate,Safe to 17 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6881,Safe_to_18_Armor_Certificate,Safe to 18 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-6882,Advanced_Bait,Advanced Bait,3,10,,0,,,,,,,,,,,,,{},{},{}
-6883,Pet_Snow_Bunny_Exchange_Ticket,Pet Snow Bunny Exchange Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-6884,Pet_Tikbalang_Exchange_Ticket,Pet Tikbalang Exchange Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-6885,Piece_Of_Soul_Dragon,Piece Of Soul Dragon,3,10,,0,,,,,,,,,,,,,{},{},{}
-6886,Strong_Piece_Of_Soul_Dragon,Strong Piece Of Soul Dragon,3,10,,0,,,,,,,,,,,,,{},{},{}
-6892,Invasion_Plan,Invasion Plan,3,10,,10,,,,,,,,,,,,,{},{},{}
-6893,Human's_Cookbook,Human's Cookbook,3,10,,10,,,,,,,,,,,,,{},{},{}
-6894,Champion_Badge,Champion Badge,3,10,,10,,,,,,,,,,,,,{},{},{}
-6895,Processed_Ancient_Rune,Processed Ancient Rune,3,10,,0,,,,,,,,,,,,,{},{},{}
-6896,Processed_Mystic_Rune,Processed Mystic Rune,3,10,,0,,,,,,,,,,,,,{},{},{}
-6897,Blue_Whale,Blue Whale,3,10,,0,,,,,,,,,,,,,{},{},{}
-6898,Whale,Whale,3,10,,0,,,,,,,,,,,,,{},{},{}
-6899,Giant_Octopus,Giant Octopus,3,10,,0,,,,,,,,,,,,,{},{},{}
-6900,Giant_Squid,Giant Squid,3,10,,0,,,,,,,,,,,,,{},{},{}
-6901,Sturgeon,Sturgeon,3,10,,0,,,,,,,,,,,,,{},{},{}
-6902,King_Lobster,King Lobster,3,10,,0,,,,,,,,,,,,,{},{},{}
-6903,King_Earthworm,King Earthworm,3,10,,0,,,,,,,,,,,,,{},{},{}
-6904,Piece_Of_Soul_Snake,Piece Of Soul Snake,3,10,,0,,,,,,,,,,,,,{},{},{}
-6905,Broken_Magic_Stone,Broken Magic Stone,3,10,,0,,,,,,,,,,,,,{},{},{}
-6906,Limited_High_Density_Kalunium,(Limited)High Density Kalunium,3,20,,10,,,,,,,,,,,,,{},{},{}
-6907,Piece_Of_Soul_Horse,Piece Of Soul Horse,3,10,,0,,,,,,,,,,,,,{},{},{}
-6908,ASPDStone_Robe,Stone ASPD (Garment),6,20,,100,,,,,,,,,,,,,{ bonus bAspd,1; },{},{}
-6909,Actinidia_Cat_Fruit,Actinidia Cat Fruit,3,10,,0,,,,,,,,,,,,,{},{},{}
-6910,Limited_Purified_Oridecon,(Limited) Purified Oridecon,3,10,,10,,,,,,,,,,,,,{},{},{}
-6911,Limited_Purified_Eluminium,(Limited) Purified Eluminium,3,10,,10,,,,,,,,,,,,,{},{},{}
-6912,Piece_Of_Soul_Sheep,Piece Of Soul Sheep,3,10,,0,,,,,,,,,,,,,{},{},{}
-6913,Holy_Rosary,Holy Rosary,3,10,,0,,,,,,,,,,,,,{},{},{}
-6914,Black_Horn,Black Horn,3,10,,0,,,,,,,,,,,,,{},{},{}
-6915,Captured_Soul,Captured Soul,3,10,,0,,,,,,,,,,,,,{},{},{}
-6916,Piece_Of_Soul_Monkey,Piece Of Soul Monkey,3,10,,0,,,,,,,,,,,,,{},{},{}
-6917,Piece_Of_Soul_Chicken,Piece Of Soul Chicken,3,10,,0,,,,,,,,,,,,,{},{},{}
-6919,Honor_Proof,Honor Token,3,10,,0,,,,,,,,,,,,,{},{},{}
-6920,Rune_Magic_Powder,Rune Magic Powder,3,10,,10,,,,,,,,,,,,,{},{},{}
-6921,Dehumidifiers,Dehumidifiers,3,10,,10,,,,,,,,,,,,,{},{},{}
-6922,Sandpaper,Sandpaper,3,10,,10,,,,,,,,,,,,,{},{},{}
-6923,Bright_Fire_Lights,Bright Fire Lights,3,10,,10,,,,,,,,,,,,,{},{},{}
-6924,Red_Eye,Red Eye,3,10,,10,,,,,,,,,,,,,{},{},{}
-6925,Letter_Of_Prisoner,Letter Of Prisoner,3,10,,0,,,,,,,,,,,,,{},{},{}
-6926,Midgards_Histories,Rune-Midgarts History Book,3,10,,0,,,,,,,,,,,,,{},{},{}
-6927,Stone_That_Contained_Sea,Stone That Contained Sea,3,10,,0,,,,,,,,,,,,,{},{},{}
-6928,Poring_Scourer,Poring Scourer,3,10,,0,,,,,,,,,,,,,{},{},{}
-6929,Letter_With_Stamped_Seal,Letter With Stamped Seal,3,10,,0,,,,,,,,,,,,,{},{},{}
-6930,Samples_New_Business_Items,Samples New Business Items,3,10,,0,,,,,,,,,,,,,{},{},{}
-6931,Secret_Documents,Secret Documents,3,10,,0,,,,,,,,,,,,,{},{},{}
-6932,Rare_Book,Rare Book,3,10,,0,,,,,,,,,,,,,{},{},{}
-6933,Banquet_Invitation_Letter,Banquet Invitation Letter,3,10,,0,,,,,,,,,,,,,{},{},{}
-6934,Magnificent_Dish,Magnificent Dish,3,10,,1000,,,,,,,,,,,,,{},{},{}
-6935,Advanced_Dish,Advanced Dish,3,10,,0,,,,,,,,,,,,,{},{},{}
-6936,Cold_Core,Cold Core,3,10,,10,,,,,,,,,,,,,{},{},{}
-6937,Silicone_Shell,Silicone Shell,3,10,,10,,,,,,,,,,,,,{},{},{}
-6938,Hedgehog_Picks,Hedgehog Picks,3,10,,10,,,,,,,,,,,,,{},{},{}
-6939,Old_Belt,Worn-Out Belt,3,10,,10,,,,,,,,,,,,,{},{},{}
-6940,Moving_Dark_Matter,Moving Black Material,3,10,,10,,,,,,,,,,,,,{},{},{}
-6941,Fragments_Valkyrie_Power,Fragments Valkyrie Power,3,10,,10,,,,,,,,,,,,,{},{},{}
-6942,Will_Master,Will Master,3,10,,10,,,,,,,,,,,,,{},{},{}
-6943,ATKStone_Top,Attack Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{}
-6944,MATKStone_Top,Magic Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{}
-6945,Floor_Str2,Strength Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bStr,1; },{},{}
-6946,Floor_Int2,Intelligence Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bInt,1; },{},{}
-6947,Floor_Agi2,Agility Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bAgi,1; },{},{}
-6948,Floor_Dex2,Dexterity Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bDex,1; },{},{}
-6949,Floor_Vit2,Vitality Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bVit,1; },{},{}
-6950,Floor_Luk2,Lucky Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bLuk,1; },{},{}
-6951,HPStone_Bottom,HP Stone(Lower),6,10,,100,,,,,,,,,,,,,{ bonus bMaxHPrate,1; },{},{}
-6953,Ramor_Refine_Ticket,Ramor Refine Ticket,3,10,,0,,,,,,,,,,,,,{/*Refine succeed guarantee until +9 for item 2598 only*/},{},{}
-6954,Piece_Of_Soul_Dog,Piece Of Soul Dog,3,10,,0,,,,,,,,,,,,,{},{},{}
-6955,Piece_Of_Soul_Pig,Piece Of Soul Pig,3,10,,0,,,,,,,,,,,,,{},{},{}
-6956,Captured_Sheep,Captured Sheep,3,10,,0,,,,,,,,,,,,,{},{},{}
-6957,Lamb_Fleece,Lamb Fleece,3,10,,0,,,,,,,,,,,,,{},{},{}
-6958,Lamb_Horns,Lamb Horns,3,10,,0,,,,,,,,,,,,,{},{},{}
-6960,Air_Stronghold_Key,Sky Fortress Key,3,10,,10,,,,,,,,,,,,,{},{},{}
-6961,Huge_Metal_Scrap,Huge Metal Scrap,3,10,0,1000,,,,,,,,,,,,,{},{},{}
-6962,Old_Fuel,Old Fuel,3,10,0,100,,,,,,,,,,,,,{},{},{}
-
-6965,Fire_Property_Reactor_Blueprint,Fire Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6966,Water_Property_Reactor_Blueprint,Water Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6967,Earth_Property_Reactor_Blueprint,Earth Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6968,Wind_Property_Reactor_Blueprint,Wind Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6969,Fire_Res_Reactor_Blueprint,Fire Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6970,Water_Res_Reactor_Blueprint,Water Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6971,Earth_Res_Reactor_Blueprint,Earth Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6972,Wind_Res_Reactor_Blueprint,Wind Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6973,Recovery101_Reactor_Blueprint,Recovery101 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6974,Recovery102_Reactor_Blueprint,Recovery102 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6975,Recovery201_Reactor_Blueprint,Recovery201 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6976,Recovery202_Reactor_Blueprint,Recovery202 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6977,STR_Reactor_Blueprint,STR Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6978,INT_Reactor_Blueprint,INT Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6979,DEF_Reactor_Blueprint,DEF Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6980,PD_Reactor_Blueprint,Perfect Dodge Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6981,ATK_Reactor_Blueprint,Attack Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6982,MATK_Reactor_Blueprint,Magical Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6983,HP_Reactor_Blueprint,HP Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6984,SP_Reactor_Blueprint,SP Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6985,Frozen_Reactor_Blueprint,Frozen Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-6986,ASPD_Reactor_Blueprint,ASPD Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{}
-
-//
-7001,Mould_Powder,Mould Powder,3,466,,10,,,,,,,,,,,,,{},{},{}
-7002,Ogre_Tooth,Ogre Tooth,3,658,,10,,,,,,,,,,,,,{},{},{}
-7003,Anolian_Skin,Anolian Skin,3,968,,10,,,,,,,,,,,,,{},{},{}
-7004,Mud_Lump,Mud Lump,3,876,,10,,,,,,,,,,,,,{},{},{}
-7005,Skull,Skull,3,1044,,10,,,,,,,,,,,,,{},{},{}
-7006,Wing_Of_Red_Bat,Wing of Red Bat,3,168,,10,,,,,,,,,,,,,{},{},{}
-7007,Claw_Of_Rat,Claw of Rat,3,748,,10,,,,,,,,,,,,,{},{},{}
-7008,Stiff_Horn,Stiff Horn,3,636,,10,,,,,,,,,,,,,{},{},{}
-7009,Glitter_Shell,Glitter Shell,3,528,,10,,,,,,,,,,,,,{},{},{}
-7010,Tail_Of_Steel_Scorpion,Tail of Steel Scorpion,3,548,,10,,,,,,,,,,,,,{},{},{}
-7011,Claw_Of_Monkey,Claw of Monkey,3,466,,10,,,,,,,,,,,,,{},{},{}
-7012,Tough_Scalelike_Stem,Tough Scalelike Stem,3,412,,10,,,,,,,,,,,,,{},{},{}
-7013,Coral_Reef,Coral Reef,3,772,,10,,,,,,,,,,,,,{},{},{}
-7014,Old_Portrait,Old Portrait,3,1500,,100,,,,,,,,,,,,,{},{},{}
-7015,Bookclip_In_Memory,Bookclip in Memory,3,3000,,20,,,,,,,,,,,,,{},{},{}
-7016,Spoon_Stub,Spoon Stub,3,2500,,20,,,,,,,,,,,,,{},{},{}
-7017,Executioner's_Mitten,Executioner's Mitten,3,4500,,30,,,,,,,,,,,,,{},{},{}
-7018,Young_Twig,Young Twig,3,50,,10,,,,,,,,,,,,,{},{},{}
-7019,Loki's_Whispers,Loki's Whispers,3,20,,10,,,,,,,,,,,,,{},{},{}
-7020,Mother's_Nightmare,Mother's Nightmare,3,20,,10,,,,,,,,,,,,,{},{},{}
-7021,Foolishness_Of_Blind,Foolishness of the Blind,3,20,,10,,,,,,,,,,,,,{},{},{}
-7022,Old_Hilt,Old Hilt,3,150,,30,,,,,,,,,,,,,{},{},{}
-7023,Blade_Lost_In_Darkness,Blade Lost in Darkness,3,12000,,40,,,,,,,,,,,,,{},{},{}
-7024,Bloody_Edge,Bloody Edge,3,10000,,40,,,,,,,,,,,,,{},{},{}
-7025,Lucifer's_Lament,Lucifer's Lament,3,30000,,50,,,,,,,,,,,,,{},{},{}
-7026,Key_Of_Clock_Tower,Key of Clock Tower,3,100,,30,,,,,,,,,,,,,{},{},{}
-7027,Underground_Key,Key of Underground,3,100,,30,,,,,,,,,,,,,{},{},{}
-7028,Invite_For_Duel,Invite for Duel,3,0,,0,,,,,,,,,,,,,{},{},{}
-7029,Admission_For_Duel,Admission for Duel,3,0,,0,,,,,,,,,,,,,{},{},{}
-7030,Claw_Of_Desert_Wolf,Claw of Desert Wolf,3,208,,10,,,,,,,,,,,,,{},{},{}
-7031,Old_Frying_Pan,Old Frying Pan,3,196,,10,,,,,,,,,,,,,{},{},{}
-7032,Piece_Of_Egg_Shell,Piece of Egg Shell,3,168,,10,,,,,,,,,,,,,{},{},{}
-7033,Poison_Spore,Poison Spore,3,114,,10,,,,,,,,,,,,,{},{},{}
-7034,Red_Socks_With_Holes,Red Stocking,3,100,,10,,,,,,,,,,,,,{},{},{}
-7035,Matchstick,Matchstick,3,100,,10,,,,,,,,,,,,,{},{},{}
-7036,Fang_Of_Garm,Fang of Hatii,3,100,,10,,,,,,,,,,,,,{},{},{}
-7037,Trade_Coupon,Coupon,2,100,,0,,,,,,,,,,,,,{ /*set pcroom,(gettimetick(2)+7200);*/ },{},{}
-7038,Yarn,Yarn,3,100,,10,,,,,,,,,,,,,{},{},{}
-7039,Novice_Nametag,Newbie Tag,3,0,,10,,,,,,,,,,,,,{},{},{}
-7040,Megaphone,Megaphone,3,1,,10,,,,,,,,,,,,,{},{},{}
-7041,Fine_Grit,Fine Grit,3,120,,10,,,,,,,,,,,,,{},{},{}
-7042,Leather_Bag_Of_Infinity,Leather Bag of Infinity,3,1,,10,,,,,,,,,,,,,{},{},{}
-7043,Fine_Sand,Fine Sand,3,100,,10,,,,,,,,,,,,,{},{},{}
-7044,Vigorgra,Vigorgra,3,1,,10,,,,,,,,,,,,,{},{},{}
-7045,Magic_Paint,Magic Paint,3,1,,10,,,,,,,,,,,,,{},{},{}
-7046,Cart_Parts,Cart Parts,3,1,,10,,,,,,,,,,,,,{},{},{}
-7047,Alice's_Apron,Alice's Apron,3,2424,,10,,,,,,,,,,,,,{},{},{}
-7048,Talon_Of_Griffin,Talon of Griffon,3,5418,,10,,,,,,,,,,,,,{},{},{}
-7049,Stone,Stone,3,0,,30,,,,,,,,,,,,,{},{},{}
-7050,Cotton_Mat,Cotton Mat,3,100,,10,,,,,,,,,,,,,{},{},{}
-7051,Silk_Mat,Silk Mat,3,100,,10,,,,,,,,,,,,,{},{},{}
-7052,Old_Magazine,Old Papers,3,100,,10,,,,,,,,,,,,,{},{},{}
-7053,Cyfar,Cyfar,3,772,,10,,,,,,,,,,,,,{},{},{}
-7054,Brigan,Brigan,3,746,,10,,,,,,,,,,,,,{},{},{}
-7055,Animal_Pooopoo,Animal Poop,3,100,,50,,,,,,,,,,,,,{},{},{}
-7056,Payroll_Of_Kafra,Payment Statement for Kafra Employee,3,1,,50,,,,,,,,,,,,,{},{},{}
-7057,Gallar_Horn,Gjallar,3,1,,500,,,,,,,,,,,,,{},{},{}
-7058,Gullraifnir,Gleipnir,3,1,,500,,,,,,,,,,,,,{},{},{}
-7059,Cargo_Free_Ticket,Free Ticket for Kafra Storage,3,1,,0,,,,,,,,,,,,,{},{},{}
-7060,Warp_Free_Ticket,Free Ticket for Kafra Transportation,3,1,,0,,,,,,,,,,,,,{},{},{}
-7061,Cart_Free_Ticket,Free Ticket for the Cart Service,3,1,,0,,,,,,,,,,,,,{},{},{}
-7062,Broken_Turtle_Shell,Broken Turtle Shell,3,280,,10,,,,,,,,,,,,,{},{},{}
-7063,Soft_Feather,Soft Feather,3,280,,10,,,,,,,,,,,,,{},{},{}
-7064,Dragon_Fly_Wing,Wing of Dragonfly,3,520,,10,,,,,,,,,,,,,{},{},{}
-7065,Sea_Otter_Leather,Sea-Otter Fur,3,820,,10,,,,,,,,,,,,,{},{},{}
-7066,Ice_Piece,Ice Cubic,3,660,,10,,,,,,,,,,,,,{},{},{}
-7067,Stone_Piece,Stone Fragment,3,640,,10,,,,,,,,,,,,,{},{},{}
-7068,Burn_Tree,Burnt Tree,3,722,,10,,,,,,,,,,,,,{},{},{}
-7069,Broken_Armor_Piece,Destroyed Armor,3,1042,,10,,,,,,,,,,,,,{},{},{}
-7070,Broken_Shell,Broken Shell,3,900,,10,,,,,,,,,,,,,{},{},{}
-7071,Tatters_Clothes,Tattered Clothes,3,1280,,10,,,,,,,,,,,,,{},{},{}
-7072,Rust_Suriken,Old Shuriken,3,1780,,10,,,,,,,,,,,,,{},{},{}
-7073,Jewel_Of_Prayer,Freya's Jewel,3,1,,500,,,,,,,,,,,,,{},{},{}
-7074,Iron_Glove,Thor's Gauntlets,3,1,,500,,,,,,,,,,,,,{},{},{}
-7075,Iron_Maiden,Iron Maiden,3,1,,500,,,,,,,,,,,,,{},{},{}
-7076,Mystery_Wheel,Wheel of the Unknown,3,1,,500,,,,,,,,,,,,,{},{},{}
-7077,Silver_Fancy,Silver Ornament,3,1,,500,,,,,,,,,,,,,{},{},{}
-7078,Anger_Of_Valkurye,Wrath of Valkyrie,3,1,,500,,,,,,,,,,,,,{},{},{}
-7079,Feather_Of_Angel,Feather of Angel Wing,3,1,,500,,,,,,,,,,,,,{},{},{}
-7080,Foot_Step_Of_Cat,Cat Tread,3,1,,500,,,,,,,,,,,,,{},{},{}
-7081,Beard_Of_Women,Woman's Moustache,3,1,,500,,,,,,,,,,,,,{},{},{}
-7082,Root_Of_Stone,Root of Stone,3,1,,500,,,,,,,,,,,,,{},{},{}
-7083,Soul_Of_Fish,Spirit of Fish,3,1,,500,,,,,,,,,,,,,{},{},{}
-7084,Saliva_Of_Bird,Sputum of Bird,3,1,,500,,,,,,,,,,,,,{},{},{}
-7085,Tendon_Of_Bear,Sinew of Bear,3,1,,500,,,,,,,,,,,,,{},{},{}
-7086,Symbol_Of_Sun,Emblem of the Sun God,3,1,,500,,,,,,,,,,,,,{},{},{}
-7087,Breath_Of_Soul,Breath of Spirit,3,1,,500,,,,,,,,,,,,,{},{},{}
-7088,Crystal_Of_Snow,Snow Crystal,3,1,,500,,,,,,,,,,,,,{},{},{}
-7089,Indication_Of_Tempest,Omen of Tempest,3,1,,500,,,,,,,,,,,,,{},{},{}
-7090,Slilince_Wave,Ripple,3,1,,500,,,,,,,,,,,,,{},{},{}
-7091,Rough_Billows,Billow,3,1,,500,,,,,,,,,,,,,{},{},{}
-7092,Air_Stream,Drifting Air,3,1,,500,,,,,,,,,,,,,{},{},{}
-7093,Wheel,Cogwheel,3,1512,,10,,,,,,,,,,,,,{},{},{}
-7094,Mystery_Piece,Fragment,3,1344,,10,,,,,,,,,,,,,{},{},{}
-7095,Broken_Steel_Piece,Metal Fragment,3,1075,,10,,,,,,,,,,,,,{},{},{}
-7096,Cold_Magma,Lava,3,1109,,10,,,,,,,,,,,,,{},{},{}
-7097,Burning_Heart,Burning Heart,3,924,,10,,,,,,,,,,,,,{},{},{}
-7098,Live_Coal,Live Coal,3,638,,10,,,,,,,,,,,,,{},{},{}
-7099,Old_Magic_Circle,Worn-out Magic Scroll,3,773,,10,,,,,,,,,,,,,{},{},{}
-7100,Sharp_Leaf,Sharp Leaf,3,806,,10,,,,,,,,,,,,,{},{},{}
-7101,Peco_Wing_Feather,Peco Peco Feather,3,454,,10,,,,,,,,,,,,,{},{},{}
-7102,Hideous_Dream,Nightmare,3,1075,,10,,,,,,,,,,,,,{},{},{}
-7103,Unknown_Liquid_Bottle,Unknown Liquid Bottle,3,10,,10,,,,,,,,,,,,,{},{},{}
-7104,Fake_Angel_Wing,False Angel Wing,3,756,,10,,,,,,,,,,,,,{},{},{}
-7105,Fake_Angel_Loop,False Heaven Ring,3,924,,10,,,,,,,,,,,,,{},{},{}
-7106,Goat's_Horn,Antelope Horn,3,672,,10,,,,,,,,,,,,,{},{},{}
-7107,Gaoat's_Skin,Antelope Skin,3,756,,10,,,,,,,,,,,,,{},{},{}
-7108,Boroken_Shiled_Piece,Piece of Shield,3,1680,,10,,,,,,,,,,,,,{},{},{}
-7109,Shine_Spear_Blade,Shining Spear Blade,3,840,,10,,,,,,,,,,,,,{},{},{}
-7110,Vroken_Sword,Broken Sword,3,588,,10,,,,,,,,,,,,,{},{},{}
-7111,Smooth_Paper,Slick Paper,3,706,,10,,,,,,,,,,,,,{},{},{}
-7112,Fright_Paper_Blade,Sharp Paper,3,907,,10,,,,,,,,,,,,,{},{},{}
-7113,Broken_Pharaoh_Symbol,Broken Pharaoh Emblem,3,2016,,10,,,,,,,,,,,,,{},{},{}
-7114,Tutankhamen's_Mask,Masque of Tutankhamen,3,10,,10,,,,,,,,,,,,,{},{},{}
-7115,Harpy's_Feather,Harpy Feather,3,1142,,10,,,,,,,,,,,,,{},{},{}
-7116,Harpy's_Claw,Harpy Talon,3,1210,,10,,,,,,,,,,,,,{},{},{}
-7117,Rent_Spell_Book,Torn Magic Book,3,1142,,10,,,,,,,,,,,,,{},{},{}
-7118,Rent_Scroll,Torn Scroll,3,1361,,10,,,,,,,,,,,,,{},{},{}
-7119,Spawns,Bacillus,3,1025,,10,,,,,,,,,,,,,{},{},{}
-7120,Burning_Horse_Shoe,Burning Horseshoe,3,823,,10,,,,,,,,,,,,,{},{},{}
-7121,Honey_Jar,Honey Pot,3,622,,10,,,,,,,,,,,,,{},{},{}
-7122,Hot_Hair,Burning Hair,3,974,,10,,,,,,,,,,,,,{},{},{}
-7123,Dragon's_Skin,Dragon Skin,3,1025,,10,,,,,,,,,,,,,{},{},{}
-7124,Sand_Lump,Sand Clump,3,706,,10,,,,,,,,,,,,,{},{},{}
-7125,Scropion's_Nipper,Scorpion Claw,3,706,,10,,,,,,,,,,,,,{},{},{}
-7126,Large_Jellopy,Large Jellopy,3,840,,10,,,,,,,,,,,,,{},{},{}
-7127,Alcol_Create_Book,Alcohol Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7128,FireBottle_Create_Book,Bottle Grenade Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7129,Acid_Create_Book,Acid Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7130,Plant_Create_Book,Plant Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7131,Mine_Create_Book,Marine Sphere Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7132,Coating_Create_Book,Glistening Coat Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7133,Slim_Potion_Create_Book,Condensed Potion Creation Guide,3,240000,,10,,,,,,,,,,,,,{},{},{}
-7134,Medicine_Bowl,Medicine Bowl,3,8,,10,,,,,,,,,,,,,{},{},{}
-7135,Fire_Bottle,Bottle Grenade,3,200,,10,,,,,,,,,,,,,{},{},{}
-7136,Acid_Bottle,Acid Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7137,MenEater_Plant_Bottle,Plant Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7138,Mini_Bottle,Marine Sphere Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
-7139,Coating_Bottle,Glistening Coat,3,200,,10,,,,,,,,,,,,,{},{},{}
-7140,Seed_Of_Life,Seed of Life,3,60000,,10,,,,,,,,,,,,,{},{},{}
-7141,Yggdrasilberry_Dew,Morning Dew of Yggdrasil,3,20000,,10,,,,,,,,,,,,,{},{},{}
-7142,Germination_Breed,Embryo,3,10,,10,,,,,,,,,,,,,{},{},{}
-7143,Life_Force_Pot,Glass Tube,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7144,Normal_Potion_Book,Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7145,Rag_T_Shirts,Ragnarok T-shirt,3,1,,10,,,,,,,,,,,,,{},{},{}
-7146,Vacance_Ticket,Vacation Ticket,3,1,,10,,,,,,,,,,,,,{},{},{}
-7147,Jasmin,Jasmine,3,1,,10,,,,,,,,,,,,,{},{},{}
-7148,Mother_Letter,Mother's Letter,3,1,,10,,,,,,,,,,,,,{},{},{}
-7149,Yellow_Plate,Yellow Plate,3,220,,10,,,,,,,,,,,,,{},{},{}
-7150,Bamboo_Cut,Piece of Bamboo,3,310,,10,,,,,,,,,,,,,{},{},{}
-7151,Oil_Paper,Oil Paper,3,210,,10,,,,,,,,,,,,,{},{},{}
-7152,Glossy_Hair,Glossy Hair,3,340,,10,,,,,,,,,,,,,{},{},{}
-7153,Old_Japaness_Clothes,Worn-out Kimono,3,590,,10,,,,,,,,,,,,,{},{},{}
-7154,Poison_Powder,Poisonous Powder,3,160,,10,,,,,,,,,,,,,{},{},{}
-7155,Poison_Toad's_Skin,Poisonous Toad Skin,3,280,,10,,,,,,,,,,,,,{},{},{}
-7156,Broken_Shuriken,Broken Shuriken,3,470,,10,,,,,,,,,,,,,{},{},{}
-7157,Black_Mask,Dark Mask,3,315,,10,,,,,,,,,,,,,{},{},{}
-7158,Broken_Wine_Vessel,Broken Liquor Jar,3,160,,10,,,,,,,,,,,,,{},{},{}
-7159,Tengu's_Nose,Tengu Nose,3,400,,10,,,,,,,,,,,,,{},{},{}
-7160,Lord's_Passable_Ticket,Feudal Lord Permit,3,1,,10,,,,,,,,,,,,,{},{},{}
-7161,Black_Bear's_Skin,Black Bear Skin,3,384,,10,,,,,,,,,,,,,{},{},{}
-7162,Cloud_Piece,Cloud Crumb,3,390,,10,,,,,,,,,,,,,{},{},{}
-7163,Sharp_Feeler,Hard Feeler,3,570,,10,,,,,,,,,,,,,{},{},{}
-7164,Hard_Peach,Solid Peach,3,400,,10,,,,,,,,,,,,,{},{},{}
-7165,Limpid_Celestial_Robe,Transparent Celestial Robe,3,650,,10,,,,,,,,,,,,,{},{},{}
-7166,Soft_Silk_Cloth,Soft Silk,3,1200,,10,,,,,,,,,,,,,{},{},{}
-7167,Mystery_Iron_Bit,Strange Steel Piece,3,430,,10,,,,,,,,,,,,,{},{},{}
-7168,Great_Wing,Giant Butterfly Wing,3,614,,10,,,,,,,,,,,,,{},{},{}
-7169,Taegeuk_Plate,Ba Gua,3,2800,,10,,,,,,,,,,,,,{},{},{}
-7170,Tuxedo,Tuxedo,3,43000,,10,,,,,,,,,,,,,{},{},{}
-7171,Leopard_Skin,Leopard Skin,3,282,,10,,,,,,,,,,,,,{},{},{}
-7172,Leopard_Talon,Leopard Claw,3,290,,10,,,,,,,,,,,,,{},{},{}
-7173,BurnBuster_Bag,iROGM02's Backpack,3,0,,10,,,,,,,,,,,,,{},{},{}
-7174,Packing_Ribbon,Wrapping Lace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7175,Packing_Paper,Wrapping Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7176,XMAS_Coupon,Royal Certificate,3,0,,10,,,,,,,,,,,,,{},{},{}
-7177,Part_Of_Star's_Sob,Crumb of Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{}
-7178,Star's_Sob,Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{}
-7179,Donation_Card,Proof of Donation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7180,Introduction_Of_Mr.Han,Hahn Sukbong's Recommendation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7181,Receipt_01,Receipt,3,0,,10,,,,,,,,,,,,,{},{},{}
-7182,Cacao,Cacao,3,200,,20,,,,,,,,,,,,,{},{},{}
-7183,Sister_Letter,Letter from Sister,3,0,,10,,,,,,,,,,,,,{},{},{}
-7184,Piano_Keyboard,Piano Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7185,Quiz_Ticket,Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7186,Thin_Stem,Thin Trunk,3,380,,10,,,,,,,,,,,,,{},{},{}
-7187,Festival_Mask,Festival Mask,3,100,,10,,,,,,,,,,,,,{},{},{}
-7188,Browny_Root,Brown Root,3,560,,10,,,,,,,,,,,,,{},{},{}
-7189,Heart_Of_Tree,Wooden Heart,3,680,,10,,,,,,,,,,,,,{},{},{}
-7190,Solid_Peeling,Solid Husk,3,140,,10,,,,,,,,,,,,,{},{},{}
-7191,Lamplight,Lamp,3,0,,10,,,,,,,,,,,,,{},{},{}
-7192,Blade_Of_Pinwheel,Vane,3,160,,10,,,,,,,,,,,,,{},{},{}
-7193,Germinating_Sprout,Sprout,3,230,,10,,,,,,,,,,,,,{},{},{}
-7194,Soft_Leaf,Soft Blade of Grass,3,400,,10,,,,,,,,,,,,,{},{},{}
-7195,Air_Rifle,Slingshot,3,210,,10,,,,,,,,,,,,,{},{},{}
-7196,Shoulder_Protection,Shoulder Protector,3,230,,10,,,,,,,,,,,,,{},{},{}
-7197,Tough_Vines,Tough Vines,3,500,,10,,,,,,,,,,,,,{},{},{}
-7198,Great_Leaf,Huge Leaf,3,610,,10,,,,,,,,,,,,,{},{},{}
-7199,Coupon,Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7200,Flexible_String,Elastic Band,3,380,,10,,,,,,,,,,,,,{},{},{}
-7201,Log,Log,3,250,,10,,,,,,,,,,,,,{},{},{}
-7202,Beetle_Nipper,Pincher of Beetle,3,290,,10,,,,,,,,,,,,,{},{},{}
-7203,Solid_Twig,Strong Branch,3,190,,10,,,,,,,,,,,,,{},{},{}
-7204,Gunpowder,Gunpowder,3,320,,10,,,,,,,,,,,,,{},{},{}
-7205,Piece_Of_Black_Cloth,Piece of Black Cloth,3,526,,10,,,,,,,,,,,,,{},{},{}
-7206,Black_Kitty_Doll,Black Cat Doll,3,1440,,10,,,,,,,,,,,,,{},{},{}
-7207,Old_Manteau,Old Manteau,3,1050,,10,,,,,,,,,,,,,{},{},{}
-7208,Rusty_Cleaver,Rusty Kitchen Knife,3,1780,,10,,,,,,,,,,,,,{},{},{}
-7209,Dullahan's_Helm,Helm of Dullahan,3,1350,,10,,,,,,,,,,,,,{},{},{}
-7210,Dullahan_Armor,Armor Piece of Dullahan,3,790,,10,,,,,,,,,,,,,{},{},{}
-7211,Rojerta_Piece,Fragment of Rossata Stone,3,2600,,10,,,,,,,,,,,,,{},{},{}
-7212,Hanging_Doll,Hung Doll,3,1020,,10,,,,,,,,,,,,,{},{},{}
-7213,Needle_Pouch,Needle Packet,3,832,,10,,,,,,,,,,,,,{},{},{}
-7214,Bat_Cage,Bat Cage,3,880,,10,,,,,,,,,,,,,{},{},{}
-7215,Broken_Needle,Broken Needle,3,690,,10,,,,,,,,,,,,,{},{},{}
-7216,Red_Scarf,Red Muffler,3,660,,10,,,,,,,,,,,,,{},{},{}
-7217,Spool,Spool,3,424,,10,,,,,,,,,,,,,{},{},{}
-7218,Rotten_Rope,Decomposed Rope,3,390,,10,,,,,,,,,,,,,{},{},{}
-7219,Striped_Socks,Striped Sock,3,920,,10,,,,,,,,,,,,,{},{},{}
-7220,Ectoplasm,Ectoplasm,3,322,,10,,,,,,,,,,,,,{},{},{}
-7221,Tangled_Chain,Tangled Chains,3,740,,10,,,,,,,,,,,,,{},{},{}
-7222,Tree_Knot,Wooden Gnarl,3,468,,10,,,,,,,,,,,,,{},{},{}
-7223,Distorted_Portrait,Contorted Self-Portrait,3,2032,,10,,,,,,,,,,,,,{},{},{}
-7224,Stone_Of_Intelligence,Stone of Sage,3,0,,10,,,,,,,,,,,,,{},{},{}
-7225,Pumpkin_Bucket,Pumpkin Lantern,3,486,,10,,,,,,,,,,,,,{},{},{}
-7226,Pill,Pellet,3,2,,10,,,,,,,,,,,,,{},{},{}
-7227,TCG_Card,TCG Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7228,Gold_Bullion,Gold Bullion,3,100000,,300,,,,,,,,,,,,,{},{},{}
-7229,Silver_Bullion,Silver Bullion,3,50000,,300,,,,,,,,,,,,,{},{},{}
-7230,White_Gold_Bullion,Platinum Bullion,3,200000,,300,,,,,,,,,,,,,{},{},{}
-7231,Gold_Ore,Gold Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7232,Silver_Ore,Silver Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7233,Mithril_Ore,Mithril Ore,3,20,,150,,,,,,,,,,,,,{},{},{}
-7234,Soul_Of_Guild,Spirit of Guild,3,0,,10,,,,,,,,,,,,,{},{},{}
-7235,Soul_Of_Courage,Spirit of Charge,3,0,,10,,,,,,,,,,,,,{},{},{}
-7236,Soul_Of_Guard,Spirit of Protection,3,0,,10,,,,,,,,,,,,,{},{},{}
-7237,Soul_Of_Partnership,Spirit of Association,3,0,,10,,,,,,,,,,,,,{},{},{}
-7238,Soul_Of_Correspondence,Spirit of Coordination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7239,Soul_Of_Proceeding,Spirit of Advance,3,0,,10,,,,,,,,,,,,,{},{},{}
-7240,Soul_Of_Confidence,Spirit of Trust,3,0,,10,,,,,,,,,,,,,{},{},{}
-7241,Soul_Of_Agreement,Spirit of Union,3,0,,10,,,,,,,,,,,,,{},{},{}
-7242,Soul_Of_Harmony,Spirit of Combination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7243,Soul_Of_Cooperate,Spirit of Cooperation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7244,Soul_Of_Unity,Spirit of Solidarity,3,0,,10,,,,,,,,,,,,,{},{},{}
-7245,Soul_Of_Friendship,Spirit of Friendship,3,0,,10,,,,,,,,,,,,,{},{},{}
-7246,Soul_Of_Peace,Spirit of Peace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7247,Soul_Of_Spirit,Spirit of Determination,3,0,,10,,,,,,,,,,,,,{},{},{}
-7248,Soul_Of_Honor,Spirit of Honor,3,0,,10,,,,,,,,,,,,,{},{},{}
-7249,Soul_Of_Service,Spirit of Service,3,0,,10,,,,,,,,,,,,,{},{},{}
-7250,Soul_Of_Glory,Spirit of Glory,3,0,,10,,,,,,,,,,,,,{},{},{}
-7251,Soul_Of_Victory,Spirit of Victory,3,0,,10,,,,,,,,,,,,,{},{},{}
-7252,Herb_Medicine,Herbal Medicine,3,0,,10,,,,,,,,,,,,,{},{},{}
-7253,Taeguk_Flag,Golden Korean Flag,3,0,,10,,,,,,,,,,,,,{},{},{}
-7254,Digital_Print_Ticket,Digital Picture Printing Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7255,China_Marble01,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7256,China_Marble02,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7257,China_Marble03,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7258,China_Marble04,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7259,China_Marble05,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7260,China_Marble06,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7261,China_Marble07,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7262,Fan,Folding Fan of Cat Ghost,3,466,,10,,,,,,,,,,,,,{},{},{}
-7263,Cat_Eyed_Stone,Cat's Eye,3,954,,10,,,,,,,,,,,,,{},{},{}
-7264,Dried_Sand,Dry Sand,3,322,,10,,,,,,,,,,,,,{},{},{}
-7265,Dragon_Horn,Dragon Horn,3,544,,10,,,,,,,,,,,,,{},{},{}
-7266,Dragon_Fang,Denture from Dragon Mask,3,436,,10,,,,,,,,,,,,,{},{},{}
-7267,Tiger_Skin_Panties,Tiger Panty,3,298,,10,,,,,,,,,,,,,{},{},{}
-7268,Little_Blacky_Ghost,Little Ghost Doll,3,1210,,10,,,,,,,,,,,,,{},{},{}
-7269,Bib,Pinafore,3,960,,10,,,,,,,,,,,,,{},{},{}
-7270,Milk_Bottle,Nursing Bottle,3,1100,,10,,,,,,,,,,,,,{},{},{}
-7271,Figure,Novice Figure,3,10000,,10,,,,,,,,,,,,,{},{},{}
-7272,Meat_Dumpling_Doll,Rice Ball Doll,3,500,,10,,,,,,,,,,,,,{},{},{}
-7273,Golden_Necklace,RWC Necklace,3,2,,10,,,,,,,,,,,,,{},{},{}
-7274,Ancient_Translator,Translated Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{}
-7275,Ancient_Document,Record of Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{}
-7276,Picture_Letter,Doodled Message,3,0,,0,,,,,,,,,,,,,{},{},{}
-7277,Munak_Doll,Munak Doll,3,8900,,10,,,,,,,,,,,,,{},{},{}
-7278,Wellbeing_Letter,Letter to Wife,3,0,,10,,,,,,,,,,,,,{},{},{}
-7279,Vita500_Lid,Vita500 Lid,3,10,,10,,,,,,,,,,,,,{},{},{}
-7280,Quiz_Ticket01,1st Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7281,Quiz_Ticket02,2nd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7282,Quiz_Ticket03,3rd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7283,Quiz_Ticket04,4th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7284,Quiz_Ticket05,5th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{}
-7285,Thread_Skein,Holy Threads,3,2,,10,,,,,,,,,,,,,{},{},{}
-7286,Chilli,Red Chile,3,20,,10,,,,,,,,,,,,,{},{},{}
-7287,Thread_Skein_,Holier Threads,3,2,,10,,,,,,,,,,,,,{},{},{}
-7288,Thai_Ring,Engagement Ring,3,2,,10,,,,,,,,,,,,,{},{},{}
-7289,Olivine,Peridot,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7290,Phlogopite,Phlogopite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7291,Agate,Agate,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7292,Muscovite,Muscovite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7293,Rose_Quartz,Rose Quartz,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7294,Turquoise,Turquoise,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7295,Citrine,Citrin,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7296,Pyroxene,Pyroxene,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7297,Biotite,Biotite,3,3000,,100,,,,,,,,,,,,,{},{},{}
-7298,Leaf_Clothes,Fig Leaf,3,538,,10,,,,,,,,,,,,,{},{},{}
-7299,Bamboo_Basket,Straw Basket,3,632,,10,,,,,,,,,,,,,{},{},{}
-7300,Gemstone,Gemstone,3,1420,,10,,,,,,,,,,,,,{},{},{}
-7301,Sword_Accessory,Tassel,3,798,,10,,,,,,,,,,,,,{},{},{}
-7302,KRATHONG,Krathong,3,2,,10,,,,,,,,,,,,,{},{},{}
-7303,Bag_Of_Rice,Straw Rice Bag,3,0,,800,,,,,,,,,,,,,{},{},{}
-7304,Witch's_Spell_Book,Witch's Spell Scroll,3,0,,0,,,,,,,,,,,,,{},{},{}
-7305,Authority_Of_Nine_World,Symbol of the Nine Realms,3,0,,0,,,,,,,,,,,,,{},{},{}
-7306,Fragment_Of_Soul,Piece of Spirit,3,0,,0,,,,,,,,,,,,,{},{},{}
-7307,Whisper_Of_Soul,Spiritual Whispers,3,0,,0,,,,,,,,,,,,,{},{},{}
-7308,Witch's_Potion,Witch's Tonic,3,0,,0,,,,,,,,,,,,,{},{},{}
-7309,Wing_Of_Crow,Crow Wing,3,0,,0,,,,,,,,,,,,,{},{},{}
-7310,Free_Peco_Ticket,Free Ticket for Peco Ride,3,20,,10,,,,,,,,,,,,,{},{},{}
-7311,Free_Flying_Ship_Ticket,Free Ticket for Flyship,3,20,,0,,,,,,,,,,,,,{},{},{}
-7312,Jubilee,Jubilee,3,32,,10,,,,,,,,,,,,,{},{},{}
-7313,Seal_Of_Witch,Witch's Medal,3,2,,0,,,,,,,,,,,,,{},{},{}
-7314,The_Sign,The Sign,3,2,,0,,,,,,,,,,,,,{},{},{}
-7315,Dark_Crystal_Fragment,Dark Crystal Fragment,3,422,,10,,,,,,,,,,,,,{},{},{}
-7316,Long_Limb,Insect Leg,3,658,,10,,,,,,,,,,,,,{},{},{}
-7317,Screw,Rusty Screw,3,534,,10,,,,,,,,,,,,,{},{},{}
-7318,Old_Pick,Old Pick,3,512,,10,,,,,,,,,,,,,{},{},{}
-7319,Old_Steel_Plate,Used Iron Plate,3,1024,,10,,,,,,,,,,,,,{},{},{}
-7320,Air_Pollutant,Dust Pollutant,3,256,,10,,,,,,,,,,,,,{},{},{}
-7321,Fragment_Of_Crystal,Crystal Fragment,3,552,,10,,,,,,,,,,,,,{},{},{}
-7322,Poisonous_Gas,Toxic Gas,3,666,,10,,,,,,,,,,,,,{},{},{}
-7323,Battered_Kettle,Battered Kettle,3,256,,10,,,,,,,,,,,,,{},{},{}
-7325,Tube,Flexible Tube,3,102,,10,,,,,,,,,,,,,{},{},{}
-7326,Fluorescent_Liquid,Fluorescent Liquid,3,712,,10,,,,,,,,,,,,,{},{},{}
-7327,Headlamp,Flashlight,3,1024,,10,,,,,,,,,,,,,{},{},{}
-7328,Legendary_Scroll,Legend of Songkran,3,0,,10,,,,,,,,,,,,,{},{},{}
-7329,Old_Copper_Key,Old Bronze Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7330,2anny,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{}
-7331,Flower_Of_Heaven,Heaven Flower,3,500,,10,,,,,,,,,,,,,{},{},{}
-7332,Slate,Complete Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7333,Piece_Of_Slate_1,Prontera Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7334,Piece_Of_Slate_2,Payon Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7335,Piece_Of_Slate_3,Morocc Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7336,Piece_Of_Slate_4,Geffen Tablet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7337,Eye_Of_Hellion,Eye of Hellion,3,0,,0,,,,,,,,,,,,,{},{},{}
-7338,RO_Transportation_Card,One-way Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7339,RO_Transportation_Card_,Commemorative Travel Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-7340,Will_Of_Darkness,Will of the Darkness,3,734,,50,,,,,,,,,,,,,{},{},{}
-7341,Worn_Out_Pendant,Old Pendant,3,20,,0,,,,,,,,,,,,,{},{},{}
-7342,File01,File Folder,3,20,,0,,,,,,,,,,,,,{},{},{}
-7343,File02,Sealed File Folder,3,20,,0,,,,,,,,,,,,,{},{},{}
-7344,File03,Shinokas Case File,3,20,,0,,,,,,,,,,,,,{},{},{}
-7345,Armlet_Of_Prisoner,Handcuffs,3,724,,10,,,,,,,,,,,,,{},{},{}
-7346,Pile_Of_Ymir_Heart,Ymir's Heart Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-7347,Lab_Staff_Record,Research Chart,3,840,,10,,,,,,,,,,,,,{},{},{}
-7348,Indication_Of_Member01,Membership Card,3,20,,10,,,,,,,,,,,,,{},{},{}
-7349,Indication_Of_Member02,Archive Permit,3,20,,0,,,,,,,,,,,,,{},{},{}
-7350,Pass,Pass,3,20,,10,,,,,,,,,,,,,{},{},{}
-7351,Friend's_Diary,Friend's Diary,3,20,,0,,,,,,,,,,,,,{},{},{}
-7352,Transparent_Plate01,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7353,Transparent_Plate02,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7354,Transparent_Plate03,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7355,Transparent_Plate04,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{}
-7356,Piece_Of_Crest1,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7357,Piece_Of_Crest2,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7358,Piece_Of_Crest3,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7359,Piece_Of_Crest4,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{}
-7360,RO_Festival_Ticket,RO Festival Invitation,3,0,,10,,,,,,,,,,,,,{},{},{}
-7361,Lotto01,Lotto Ball 01,3,0,,10,,,,,,,,,,,,,{},{},{}
-7362,Lotto02,Lotto Ball 02,3,0,,10,,,,,,,,,,,,,{},{},{}
-7363,Lotto03,Lotto Ball 03,3,0,,10,,,,,,,,,,,,,{},{},{}
-7364,Lotto04,Lotto Ball 04,3,0,,10,,,,,,,,,,,,,{},{},{}
-7365,Lotto05,Lotto Ball 05,3,0,,10,,,,,,,,,,,,,{},{},{}
-7366,Lotto06,Lotto Ball 06,3,0,,10,,,,,,,,,,,,,{},{},{}
-7367,Lotto07,Lotto Ball 07,3,0,,10,,,,,,,,,,,,,{},{},{}
-7368,Lotto08,Lotto Ball 08,3,0,,10,,,,,,,,,,,,,{},{},{}
-7369,Lotto09,Lotto Ball 09,3,0,,10,,,,,,,,,,,,,{},{},{}
-7370,Lotto10,Lotto Ball 10,3,0,,10,,,,,,,,,,,,,{},{},{}
-7371,Lotto11,Lotto Ball 11,3,0,,10,,,,,,,,,,,,,{},{},{}
-7372,Lotto12,Lotto Ball 12,3,0,,10,,,,,,,,,,,,,{},{},{}
-7373,Lotto13,Lotto Ball 13,3,0,,10,,,,,,,,,,,,,{},{},{}
-7374,Lotto14,Lotto Ball 14,3,0,,10,,,,,,,,,,,,,{},{},{}
-7375,Lotto15,Lotto Ball 15,3,0,,10,,,,,,,,,,,,,{},{},{}
-7376,Lotto16,Lotto Ball 16,3,0,,10,,,,,,,,,,,,,{},{},{}
-7377,Lotto17,Lotto Ball 17,3,0,,10,,,,,,,,,,,,,{},{},{}
-7378,Lotto18,Lotto Ball 18,3,0,,10,,,,,,,,,,,,,{},{},{}
-7379,Lotto19,Lotto Ball 19,3,0,,10,,,,,,,,,,,,,{},{},{}
-7380,Lotto20,Lotto Ball 20,3,0,,10,,,,,,,,,,,,,{},{},{}
-7381,Lotto21,Lotto Ball 21,3,0,,10,,,,,,,,,,,,,{},{},{}
-7382,Lotto22,Lotto Ball 22,3,0,,10,,,,,,,,,,,,,{},{},{}
-7383,Lotto23,Lotto Ball 23,3,0,,10,,,,,,,,,,,,,{},{},{}
-7384,Lotto24,Lotto Ball 24,3,0,,10,,,,,,,,,,,,,{},{},{}
-7385,Lotto25,Lotto Ball 25,3,0,,10,,,,,,,,,,,,,{},{},{}
-7386,Lotto26,Lotto Ball 26,3,0,,10,,,,,,,,,,,,,{},{},{}
-7387,Lotto27,Lotto Ball 27,3,0,,10,,,,,,,,,,,,,{},{},{}
-7388,Lotto28,Lotto Ball 28,3,0,,10,,,,,,,,,,,,,{},{},{}
-7389,Lotto29,Lotto Ball 29,3,0,,10,,,,,,,,,,,,,{},{},{}
-7390,Lotto30,Lotto Ball 30,3,0,,10,,,,,,,,,,,,,{},{},{}
-7391,Lotto31,Lotto Ball 31,3,0,,10,,,,,,,,,,,,,{},{},{}
-7392,Lotto32,Lotto Ball 32,3,0,,10,,,,,,,,,,,,,{},{},{}
-7393,Lotto33,Lotto Ball 33,3,0,,10,,,,,,,,,,,,,{},{},{}
-7394,Lotto34,Lotto Ball 34,3,0,,10,,,,,,,,,,,,,{},{},{}
-7395,Lotto35,Lotto Ball 35,3,0,,10,,,,,,,,,,,,,{},{},{}
-7396,Lotto36,Lotto Ball 36,3,0,,10,,,,,,,,,,,,,{},{},{}
-7397,Lotto37,Lotto Ball 37,3,0,,10,,,,,,,,,,,,,{},{},{}
-7398,Lotto38,Lotto Ball 38,3,0,,10,,,,,,,,,,,,,{},{},{}
-7399,Word_Card01,Selamat,3,2,,10,,,,,,,,,,,,,{},{},{}
-7400,Word_Card02,Hari,3,2,,10,,,,,,,,,,,,,{},{},{}
-7401,Word_Card03,Kemerdekaan,3,2,,10,,,,,,,,,,,,,{},{},{}
-7402,Word_Card04,Republik,3,2,,10,,,,,,,,,,,,,{},{},{}
-7403,Word_Card05,Indonesia,3,2,,10,,,,,,,,,,,,,{},{},{}
-7404,Word_Card06,Ke-60,3,2,,10,,,,,,,,,,,,,{},{},{}
-7405,Crushed_Can,Crushed Can,3,2,,10,,,,,,,,,,,,,{},{},{}
-7406,Moon_Cake1,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7407,Moon_Cake2,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7408,Moon_Cake3,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7409,Moon_Cake4,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7410,Moon_Cake5,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7411,Moon_Cake6,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7412,Moon_Cake7,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7413,Moon_Cake8,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7414,Moon_Cake9,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{}
-7415,Stone_Of_Summons,Summoning Stone,3,2,,10,,,,,,,,,,,,,{},{},{}
-7416,Letter_Of_Recommend,Letter of Recommendation,3,0,,0,,,,,,,,,,,,,{},{},{}
-7417,Mission_ScrollA,Written Request(A),3,0,,0,,,,,,,,,,,,,{},{},{}
-7418,Mission_ScrollB,Written Request(B),3,0,,0,,,,,,,,,,,,,{},{},{}
-7419,Embryo_HandBook,Embryo Creation Guide,3,48000,,10,,,,,,,,,,,,,{},{},{}
-7420,Skull_,Skull,3,0,,0,,,,,,,,,,,,,{},{},{}
-7421,Key_Red,Red Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7422,Key_Yellow,Yellow Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7423,Key_Blue,Blue Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7424,Key_Green,Green Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7425,Key_Black,Black Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7426,Magic_Gem_Red,Red Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7427,Magic_Gem_Yellow,Yellow Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7428,Magic_Gem_Blue,Blue Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7429,Magic_Gem_Green,Green Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7430,Magic_Gem_Black,Black Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{}
-7431,Several_Books,Pile of Books,3,0,,0,,,,,,,,,,,,,{},{},{}
-7432,Leather_Pouch,Leather Pouch,3,0,,0,,,,,,,,,,,,,{},{},{}
-7433,Scroll,Blank Scroll,3,4000,,10,,,,,,,,,,,,,{},{},{}
-7434,Elemental_Potion_Book,Elemental Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{}
-7435,Golden_Bracelet,Golden Ornament,3,1907,,10,,,,,,,,,,,,,{},{},{}
-7436,Piece_Of_Memory_Green,Fragment of Agony,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7437,Piece_Of_Memory_Purple,Fragment of Misery,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7438,Piece_Of_Memory_Blue,Fragment of Hatred,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7439,Piece_Of_Memory_Red,Fragment of Despair,3,1506,,10,,,,,,,,,,,,,{},{},{}
-7440,Red_Feather,Red Feather,3,1335,,10,,,,,,,,,,,,,{},{},{}
-7441,Blue_Feather,Blue Feather,3,1408,,10,,,,,,,,,,,,,{},{},{}
-7442,Cursed_Seal,Cursed Seal,3,1332,,10,,,,,,,,,,,,,{},{},{}
-7443,Tri_Headed_Dragon_Head,Three-Headed Dragon's Head,3,956,,10,,,,,,,,,,,,,{},{},{}
-7444,Treasure_Box,Treasure Box,3,300000,,10,,,,,,,,,,,,,{},{},{}
-7445,Dragonball_Green,Green Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7446,Dragonball_Blue,Blue Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7447,Dragonball_Red,Red Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7448,Dragonball_Yellow,Yellow Bijou,3,887,,10,,,,,,,,,,,,,{},{},{}
-7449,Bloody_Page,Bloody Page,3,681,,10,,,,,,,,,,,,,{},{},{}
-7450,Piece_Of_Bone_Armor,Skeletal Armor Piece,3,2050,,10,,,,,,,,,,,,,{},{},{}
-7451,Scale_Of_Red_Dragon,Fire Dragon Scale,3,1852,,10,,,,,,,,,,,,,{},{},{}
-7452,Yellow_Spice,Yellow Spice,3,750,,10,,,,,,,,,,,,,{},{},{}
-7453,Sweet_Sauce,Sweet Sauce,3,525,,10,,,,,,,,,,,,,{},{},{}
-7454,Plain_Sauce,Savory Sauce,3,525,,10,,,,,,,,,,,,,{},{},{}
-7455,Hot_Sauce,Spicy Sauce,3,525,,10,,,,,,,,,,,,,{},{},{}
-7456,Red_Spice,Red Spice,3,750,,10,,,,,,,,,,,,,{},{},{}
-7457,Cooking_Oil,Cooking Oil,3,375,,10,,,,,,,,,,,,,{},{},{}
-7458,Baphomet's_Horn,Fortune Horn,3,2,,10,,,,,,,,,,,,,{},{},{}
-7459,RAMADAN_,Idul Fitri Card,3,2,,10,,,,,,,,,,,,,{},{},{}
-7460,Niflheim_Ticket,Niflheim Express Ticket,3,2,,10,,,,,,,,,,,,,{},{},{}
-7461,BlueCard_A,Blue A Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7462,BlueCard_E,Blue E Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7463,BlueCard_F,Blue F Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7464,BlueCard_H,Blue H Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7465,BlueCard_L,Blue L Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7466,BlueCard_N,Blue N Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7467,BlueCard_O,Blue O Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7468,BlueCard_P,Blue P Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7469,BlueCard_U,Blue U Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7470,BlueCard_W,Blue W Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7471,BlueCard_Y,Blue Y Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7472,Cookbook01,Level 1 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7473,Cookbook02,Level 2 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7474,Cookbook03,Level 3 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7475,Cookbook04,Level 4 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7476,Cookbook05,Level 5 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7477,Cookbook06,Level 6 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7478,Cookbook07,Level 7 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7479,Cookbook08,Level 8 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7480,Cookbook09,Level 9 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7481,Cookbook10,Level 10 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7482,Pot,Pot,3,150,,10,,,,,,,,,,,,,{},{},{}
-7483,Key_Of_Seal,Key of the Seal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7484,Warrior_Symbol,Symbol of a Brave Warrior,3,0,,10,,,,,,,,,,,,,{},{},{}
-7485,2nd_Floor_Pass,Cloud General,3,0,,10,,,,,,,,,,,,,{},{},{}
-7486,3rd_Floor_Pass,Wind General,3,0,,10,,,,,,,,,,,,,{},{},{}
-7487,Tavern_Wine,Culinary Wine,3,0,,0,,,,,,,,,,,,,{},{},{}
-7488,Delivery_Box,Delivery Package,3,0,,0,,,,,,,,,,,,,{},{},{}
-7489,Villa_Spare_Key,Cottage Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7490,Kyll_Hire_Letter,Letter to Elly,3,0,,0,,,,,,,,,,,,,{},{},{}
-7491,Iron_Box,Steel Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-7492,Yellow_Key_Card,Yellow Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7493,Golden_Key,Golden Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7494,Kiel_Button,Luxurious Button,3,0,,0,,,,,,,,,,,,,{},{},{}
-7495,Blue_Key_Card,Blue Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7496,Red_Key_Card,Red Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7497,Steel_Piece,Metal Fragment,3,0,,0,,,,,,,,,,,,,{},{},{}
-7498,Rosimier_Key,Rosimier Mansion Keys,3,0,,0,,,,,,,,,,,,,{},{},{}
-7499,Family_Portrait,Family Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7500,Elysia_Portrait,Woman's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7501,Kyll_Hire_Letter2,K.H's Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7502,Piece_Memo_Of_James,James's Note,3,0,,0,,,,,,,,,,,,,{},{},{}
-7503,Man_Portrait,Man's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{}
-7504,Toy_Motor,Power Device,3,0,,0,,,,,,,,,,,,,{},{},{}
-7505,Toy_Key,Toy Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7506,Black_Key_Card,Black Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7507,Sturdy_Iron_Piece,Solid Iron Piece,3,842,,10,,,,,,,,,,,,,{},{},{}
-7508,Elysia_Ring,Allysia's Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7509,Fancy_Key_Card,Luxurious Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7510,Valhalla_Flower,Valhalla's Flower,3,200000,,10,,,,,,,,,,,,,{},{},{}
-7511,Rune_Of_Darkness,Rune of Darkness,3,2526,,10,,,,,,,,,,,,,{},{},{}
-7512,Burnt_Parts,Burnt Part,3,1600,,10,,,,,,,,,,,,,{},{},{}
-7513,Pocket_Watch__,Pocket Watch,3,3420,,10,,,,,,,,,,,,,{},{},{}
-7514,Monster_Ticket,Monster Ticket,3,2,,0,,,,,,,,,,,,,{},{},{}
-7515,Marvelous_Medal,Prize Medal,3,2,,0,,,,,,,,,,,,,{},{},{}
-7516,Green_Key_Card,Green Keycard,3,0,,0,,,,,,,,,,,,,{},{},{}
-7517,Gold_Coin_,Gold Coin,3,1000,,100,,,,,,,,,,,,,{},{},{}
-7518,Women's_Medal,Women's Medal,3,0,,10,,,,,,,,,,,,,{},{},{}
-7519,Money_Envelope,Handsel,3,0,,10,,,,,,,,,,,,,{},{},{}
-7520,Chinese_Scroll,Please Be Rich,3,0,,10,,,,,,,,,,,,,{},{},{}
-7521,Flame_Stone,Flame Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7522,Ice_Stone,Ice Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7523,Wind_Stone,Wind Stone,3,150,,10,,,,,,,,,,,,,{},{},{}
-7524,Shadow_Orb,Shadow Orb,3,300,,20,,,,,,,,,,,,,{},{},{}
-7525,Summer_Feast_Ticket,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7526,Manuscript_Paper,Manuscript Paper,3,2,,0,,,,,,,,,,,,,{},{},{}
-7527,Life_Book,Book About True Life,3,0,,100,,,,,,,,,,,,,{},{},{}
-7528,Id_Lottery_Ticket,Lottery Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7529,Stolen_Sandals,Stolen Sandal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7530,Travel_Brochure_01,Travel Brochure [Amatsu],3,0,,0,,,,,,,,,,,,,{},{},{}
-7531,Travel_Brochure_02,Travel Brochure [Kunlun],3,0,,0,,,,,,,,,,,,,{},{},{}
-7532,Travel_Brochure_03,Travel Brochure [Luoyang],3,0,,0,,,,,,,,,,,,,{},{},{}
-7533,Travel_Brochure_04,Travel Brochure [Ayothaya],3,0,,0,,,,,,,,,,,,,{},{},{}
-7534,Photo_Album_01,Amatsu Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7535,Photo_Album_02,Kunlun Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7536,Photo_Album_03,Luoyang Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7537,Photo_Album_04,Ayothaya Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{}
-7538,Sifted_Sand,Sand for Work,3,0,,0,,,,,,,,,,,,,{},{},{}
-7539,Poring_Coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7540,Lotto39,Lotto Ball 39,3,0,,10,,,,,,,,,,,,,{},{},{}
-7541,Lotto40,Lotto Ball 40,3,0,,10,,,,,,,,,,,,,{},{},{}
-7542,Lotto41,Lotto Ball 41,3,0,,10,,,,,,,,,,,,,{},{},{}
-7543,Lotto42,Lotto Ball 42,3,0,,10,,,,,,,,,,,,,{},{},{}
-7544,Lotto43,Lotto Ball 43,3,0,,10,,,,,,,,,,,,,{},{},{}
-7545,Lotto44,Lotto Ball 44,3,0,,10,,,,,,,,,,,,,{},{},{}
-7546,Lotto45,Lotto Ball 45,3,0,,10,,,,,,,,,,,,,{},{},{}
-7547,Soccer_Ball,Soccer Ball,3,20,,10,,,,,,,,,,,,,{},{},{}
-7548,Soccer_Shoes,Soccer Shoes,3,20,,10,,,,,,,,,,,,,{},{},{}
-7549,Brazilian_Flag,Brazilian Flag,3,20,,10,,,,,,,,,,,,,{},{},{}
-7550,Ticket01,6.13 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7551,Ticket02,6.18 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7552,Ticket03,6.22 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7553,Lotus_Flower,Lotus Flower,3,0,,0,,,,,,,,,,,,,{},{},{}
-7554,Striped_Candle,Striped Candle,3,0,,0,,,,,,,,,,,,,{},{},{}
-7555,Green_Incense,Green Incense,3,0,,0,,,,,,,,,,,,,{},{},{}
-7556,Longing_Heart,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{}
-7557,Invitation_Letter,Invitation Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7558,Invitation_Ticket,Invitation Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7559,Key_Of_Flower_Garden,Key to the Secret Garden,3,0,,0,,,,,,,,,,,,,{},{},{}
-7560,Longing_Heart2,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{}
-7561,Ice_Heart,Glacial Heart,3,606,,10,,,,,,,,,,,,,{},{},{}
-7562,Ice_Scale,Ice Scale,3,3020,,10,,,,,,,,,,,,,{},{},{}
-7563,Bloody_Rune,Bloody Rune,3,2016,,10,,,,,,,,,,,,,{},{},{}
-7564,Rotten_Meat,Rotten Meat,3,102,,10,,,,,,,,,,,,,{},{},{}
-7565,Sticky_Poison,Sticky Poison,3,350,,10,,,,,,,,,,,,,{},{},{}
-7566,Will_Of_Darkness_,Will of Red Darkness,3,1530,,10,,,,,,,,,,,,,{},{},{}
-7567,Suspicious_Hat,Suspicious Hat,3,1290,,10,,,,,,,,,,,,,{},{},{}
-7568,White_Mask,White Mask,3,1060,,10,,,,,,,,,,,,,{},{},{}
-7569,Hammer_Of_Wind,Wind Hammer,3,0,,0,,,,,,,,,,,,,{},{},{}
-7570,Temple_Lottery_Ticket,Temple Lottery Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7571,Diary_Of_Blue,Bruspetti's Diary,3,0,,0,,,,,,,,,,,,,{},{},{}
-7572,Magic_Necklace,Ashy Necklace,3,0,,0,,,,,,,,,,,,,{},{},{}
-7573,Magic_Necklace_,Sparkling Necklace,3,0,,0,,,,,,,,,,,,,{},{},{}
-7574,Ice_Particle,Freezing Snow Powder,3,0,,0,,,,,,,,,,,,,{},{},{}
-7575,Red_Jewel_,Red Jewel,3,20,,0,,,,,,,,,,,,,{},{},{}
-7576,Blue_Jewel_,Blue Jewel,3,20,,0,,,,,,,,,,,,,{},{},{}
-7577,Golden_Jewel_,Yellow Jewel,3,20,,50,,,,,,,,,,,,,{},{},{}
-7578,Anti_Spell_Bead,Countermagic Crystal,3,20,,10,,,,,,,,,,,,,{},{},{}
-7579,Silk_Handkerchief,Silk Handkerchief of Zhi Nu,3,20,,10,,,,,,,,,,,,,{},{},{}
-7580,Black_Bead,Black Marble,3,20,,10,,,,,,,,,,,,,{},{},{}
-7581,Anniversary_Ticket,Celebration Document,3,20,,10,,,,,,,,,,,,,{},{},{}
-7582,Gem_Of_Ruin,Jewel of Destruction,3,10,,10,,,,,,,,,,,,,{},{},{}
-7583,Evil_Mind,Evil Mind,3,10,,10,,,,,,,,,,,,,{},{},{}
-7584,Proof_Of_Guard1,Guard's First Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7585,Proof_Of_Guard2,Guard's Second Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7586,Proof_Of_Guard3,Guard's Third Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7587,Proof_Of_Guard4,Guard's Fourth Proof,3,10,,10,,,,,,,,,,,,,{},{},{}
-7588,IPOD_Ticker,IPOD Coupon,3,10,,10,,,,,,,,,,,,,{},{},{}
-7589,Moon_Cake10,Lettered Moon Snack 01,3,20,,10,,,,,,,,,,,,,{},{},{}
-7590,Moon_Cake11,Lettered Moon Snack 02,3,20,,10,,,,,,,,,,,,,{},{},{}
-7591,Moon_Cake12,Lettered Moon Snack 03,3,20,,10,,,,,,,,,,,,,{},{},{}
-7592,Moon_Cake13,Lettered Moon Snack 04,3,20,,10,,,,,,,,,,,,,{},{},{}
-7593,Moon_Cake14,Lettered Moon Snack 05,3,20,,10,,,,,,,,,,,,,{},{},{}
-7594,Sonia's_Letter,Sonia's Letter,3,20,,10,,,,,,,,,,,,,{},{},{}
-7595,Unique_Sword,Special Sword,3,20,,10,,,,,,,,,,,,,{},{},{}
-7596,Unique_Shield,Special Shield,3,20,,10,,,,,,,,,,,,,{},{},{}
-7597,Magic_Stone,Magic Stone,3,20,,10,,,,,,,,,,,,,{},{},{}
-7598,BlueCard_I,Blue I Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7599,BlueCard_D,Blue D Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7600,BlueCard_K,Blue K Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7601,BlueCard_S,Blue S Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7602,BlueCard_R,Blue R Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7603,RO_Party_Ticket,RO Party Invitation Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7604,Flour,Flour,3,0,,10,,,,,,,,,,,,,{},{},{}
-7605,Chicken_Egg,Chicken Egg,3,0,,10,,,,,,,,,,,,,{},{},{}
-7606,Coin,Token of the Ox,3,0,,10,,,,,,,,,,,,,{},{},{}
-7607,Evil_Dragon_Head,Neck of Demon Dragon,3,10,,10,,,,,,,,,,,,,{},{},{}
-7608,Premium_Ticket,Premium Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7609,Pumpkin_Mojo,Pumpkin Mojo,3,0,,10,,,,,,,,,,,,,{},{},{}
-7610,Food_Ticket,Food Exchange Ticket,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7611,Fox_Symbol,Symbol of Fox,3,20,,10,,,,,,,,,,,,,{},{},{}
-7612,Heart_Of_Fox_Queen,Heart of Queen Fox,3,2,,10,,,,,,,,,,,,,{},{},{}
-7613,Small_Rice_Dough,Small Rice Cake Dough,3,0,,0,,,,,,,,,,,,,{},{},{}
-7614,Special_Packing_Paper,Wrapping Paper,3,10,,10,,,,,,,,,,,,,{},{},{}
-7615,MVP_Ticket,MVP Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7616,Mini_Boss_Ticket,Miniboss Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7617,Monster_Ticket_,Monster Voucher,3,10,,10,,,,,,,,,,,,,{},{},{}
-7618,Monster_Crystal,Monster Crystal,3,2,,100,,,,,,,,,,,,,{},{},{}
-7619,Enriched_Elunium,Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{}
-7620,Enriched_Oridecon,Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{}
-7621,Token_Of_Siegfried,Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{}
-7622,New_Style_Coupon,Hairstyle Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7623,Name_Change_Coupon,Ticket Of Identification,3,2,,0,,,,,,,,,,,,,{},{},{}
-7624,Spring_Stanza23,Spring Stanza23,3,2,,10,,,,,,,,,,,,,{},{},{}
-7625,Registration_Ticket,Registration Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7626,Bubble_Gum_Token,Bubble Gum Token,3,10,,10,,,,,,,,,,,,,{},{},{}
-7627,Sage_Key,Sage Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7628,Idiot_Key,Idiot Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7629,Pink_Gift_Box,Pink Gift Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-7630,Clean_Beach_Brush,Clean Beach Brush,3,0,,0,,,,,,,,,,,,,{},{},{}
-7631,Trash_Debris,Trash Debris,3,0,,0,,,,,,,,,,,,,{},{},{}
-7632,To_Afterworld_Record,Terrible Report Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-7633,To_Heaven_Record,Heavensent Report Card,3,0,,0,,,,,,,,,,,,,{},{},{}
-7634,Rose_Of_Father,Father Rose,3,0,,0,,,,,,,,,,,,,{},{},{}
-7635,Perfume_Pouch,Incense Bag,3,100,,0,,,,,,,,,,,,,{},{},{}
-7636,Magic_Potion_Bottle,Magic Potion Bottle,3,0,,0,,,,,,,,,,,,,{},{},{}
-7637,Father_Giftbox,Father Giftbox,3,0,,10,,,,,,,,,,,,,{},{},{}
-7638,TW_Green_Box,TW Green Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7639,TW_Red_Box,TW Red Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7640,Butterfly_Hair_Decoration,Butterfly Hair Decoration,3,10,,10,,,,,,,,,,,,,{},{},{}
-7641,Medical_Cure_Box,Medical Cure Box,3,10,,0,,,,,,,,,,,,,{},{},{}
-7642,Bloody_Coin,Bloody Coin,3,10,,0,,,,,,,,,,,,,{},{},{}
-7643,Bloody_Letter,Bloody Letter,3,10,,10,,,,,,,,,,,,,{},{},{}
-7644,Unsent_Letter,Unsent Letter,3,10,,0,,,,,,,,,,,,,{},{},{}
-7646,RO_Luk_Bookmark,RO Luk Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{}
-7647,Taiwan_Luk_Coin,Taiwan Luk Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7648,Snake_Bookmark,Snake Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{}
-7649,Big_Luk_Bookmark,Big Luk Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{}
-7651,Mystery_Egg,Mystery Egg,3,10,,10,,,,,,,,,,,,,{},{},{}
-7663,Full_Metal_Jacket,Full Metal Jacket,10,200,,2,10,,,,0x41000000,63,2,32768,,1,,3,{},{},{}
-7664,Mine_Projectile,Grenade Launcher,10,450,,3,10,,,,0x41000000,63,2,32768,,1,,5,{},{},{}
-7665,Dragon_Tail_Missile,Dragon Tail Missile,10,1500,,100,10,,,,0x41000000,63,2,32768,,1,,5,{},{},{}
-7666,TimeTravel_Scroll,Time Travel Scroll,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7667,Abandoned_Machine,Abandoned Machine,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7668,Clean_Bandage,Clean Bandage,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7669,Rubbing_Alchohol,Rubbing Alchohol,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7670,Sour_Grass,Sour Grass,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7671,Firstaid_Kit,First Aid Kit,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7672,Relief_Food,Relief Food,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-7674,Mysterious_Ingredient,Mysterious Ingredient,3,20,,0,,,,,,,,,,,,,{},{},{}
-7675,Mysterious_Doll,Mysterious Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-7676,Transmission_Coupon,Transmission Coupon,3,0,,0,,,,,,,,,,,,,{},{},{}
-7679,Oneclick_Weapon_7UP,One Click Weapon 7UP,3,0,,0,,,,,,,,,,,,,{},{},{}
-7680,Oneclick_Weapon_9UP,One Click Weapon 9UP,3,0,,0,,,,,,,,,,,,,{},{},{}
-7681,Oneclick_Armor_7UP,One Click Armor 7UP,3,0,,0,,,,,,,,,,,,,{},{},{}
-7682,Oneclick_Armor_9UP,One Click Armor 9UP,3,0,,0,,,,,,,,,,,,,{},{},{}
-7690,Special_Exchange_Coupons,Special Exchange Coupons,3,10,,0,,,,,,,,,,,,,{},{},{}
-7701,Dragon_Spirit,Soul,3,2,,10,,,,,,,,,,,,,{},{},{}
-7702,Special_Cogwheel,Special Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{}
-7703,Piece_Of_Cogwheel,Piece of Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{}
-7704,Broken_Thermometer,Broken Thermometer,3,2,,0,,,,,,,,,,,,,{},{},{}
-7705,Note_Of_Geologist,Note of Geologist,3,2,,0,,,,,,,,,,,,,{},{},{}
-7706,Spoiled_Carrot_Juice,Broken Carrot Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7707,Spoiled_Banana_Juice,Broken Banana Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7708,Spoiled_Apple_Juice,Broken Apple Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7709,Spoiled_Grape_Juice,Broken Grape Juice,3,20,,40,,,,,,,,,,,,,{},{},{}
-7710,Black_Gemstone,Black Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{}
-7711,Update_Ticket,Event Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7712,Nokia5500,Nokia 5500,3,0,,10,,,,,,,,,,,,,{},{},{}
-7713,BlueCard_A_,Blue A(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7714,BlueCard_R_,Blue R(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7715,Handmade_Choco_Recipe,Handmade Chocolate Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7716,Strawberry_Choco_Recipe,Chocolate Strawberry Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7717,Choco_Tart_Recipe,Chocolate Tart Recipe,3,0,,0,,,,,,,,,,,,,{},{},{}
-7718,Cacao_Bean,Cacao Bean,3,0,,10,,,,,,,,,,,,,{},{},{}
-7719,BlueCard_G,Blue G Card,3,0,,10,,,,,,,,,,,,,{},{},{}
-7720,Gold_Coin_US,Gold Coin,3,100,,10,,,,,,,,,,,,,{},{},{}
-7721,Treasure_Box_,Treasure Box,3,100,,500,,,,,,,,,,,,,{},{},{}
-7722,Debt_Note,Debt Note,3,20,,0,,,,,,,,,,,,,{},{},{}
-7723,Diamond_Of_Ruin,Diamond of Ruin,3,20,,0,,,,,,,,,,,,,{},{},{}
-7724,Forbidden_Secret_Art,Forbidden Secret Art,3,20,,0,,,,,,,,,,,,,{},{},{}
-7725,Unlucky_Emerald,Unlucky Emerald,3,20,,0,,,,,,,,,,,,,{},{},{}
-7726,Token_Of_King,Token of King,3,20,,0,,,,,,,,,,,,,{},{},{}
-7727,HP_Doctor_Ticket,HP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7728,SP_Doctor_Ticket,SP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{}
-7729,Rok_Star_Badge,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{}
-7730,Mission_Certificate1,Mission Ticket 1,3,0,,10,,,,,,,,,,,,,{},{},{}
-7731,Mission_Certificate2,Mission Ticket 2,3,0,,10,,,,,,,,,,,,,{},{},{}
-7732,Mission_Certificate3,Mission Ticket 3,3,0,,10,,,,,,,,,,,,,{},{},{}
-7733,Mission_Certificate4,Mission Ticket 4,3,0,,10,,,,,,,,,,,,,{},{},{}
-7734,Mission_Certificate5,Mission Ticket 5,3,0,,10,,,,,,,,,,,,,{},{},{}
-7735,Mission_Certificate6,Mission Ticket 6,3,0,,10,,,,,,,,,,,,,{},{},{}
-7736,Mission_Certificate7,Mission Ticket 7,3,0,,10,,,,,,,,,,,,,{},{},{}
-7737,Mission_Certificate8,Mission Ticket 8,3,0,,10,,,,,,,,,,,,,{},{},{}
-7738,Mission_Certificate9,Mission Ticket 9,3,0,,10,,,,,,,,,,,,,{},{},{}
-7739,Mission_Certificate10,Mission Ticket 10,3,0,,10,,,,,,,,,,,,,{},{},{}
-7740,Mission_Certificate11,Mission Ticket 11,3,0,,10,,,,,,,,,,,,,{},{},{}
-7741,Mission_Certificate12,Mission Ticket 12,3,0,,10,,,,,,,,,,,,,{},{},{}
-7742,Kaong,Kaong,3,2,,10,,,,,,,,,,,,,{},{},{}
-7743,Gulaman,Gulaman,3,2,,10,,,,,,,,,,,,,{},{},{}
-7744,Leche_Flan,Leche Flan,3,2,,10,,,,,,,,,,,,,{},{},{}
-7745,Ube_Jam,Ube Jam,3,2,,10,,,,,,,,,,,,,{},{},{}
-7746,Sago,Sago,3,2,,10,,,,,,,,,,,,,{},{},{}
-7747,Langka,Langka,3,2,,10,,,,,,,,,,,,,{},{},{}
-7748,Sweet_Bean,Sweet Beans,3,2,,10,,,,,,,,,,,,,{},{},{}
-7749,Sweet_Banana,Sweet Bananas,3,2,,10,,,,,,,,,,,,,{},{},{}
-7750,Macapuno,Macapuno,3,2,,10,,,,,,,,,,,,,{},{},{}
-7751,Old_White_Cloth,Old White Cloth,3,550,,10,,,,,,,,,,,,,{},{},{}
-7752,Clattering_Skull,Clattering Skull,3,840,,10,,,,,,,,,,,,,{},{},{}
-7753,Broken_Farming_Utensil,Broken Farming Utensil,3,330,,10,,,,,,,,,,,,,{},{},{}
-7754,Broken_Crown,Broken Crown,3,3000,,10,,,,,,,,,,,,,{},{},{}
-7755,Research_Note,Research Note,3,20,,0,,,,,,,,,,,,,{},{},{}
-7756,Sealed_Book,Sealed Book,3,2000,,10,,,,,,,,,,,,,{},{},{}
-7757,Mithril,Mithril,3,20,,100,,,,,,,,,,,,,{},{},{}
-7758,Star_Crystal,Star Crystal,3,20,,100,,,,,,,,,,,,,{},{},{}
-7759,Geology_Report,Geologist's Report,3,20,,0,,,,,,,,,,,,,{},{},{}
-7760,Yaga_Magic_Book,Yaga's Magic Book,3,20,,10,,,,,,,,,,,,,{},{},{}
-7761,Magic_Gourd_Bottle,Magic Gourd Bottle,3,20,,10,,,,,,,,,,,,,{},{},{}
-7762,Yaga_Pestle,Yaga's Pestle,3,20,,10,,,,,,,,,,,,,{},{},{}
-7763,Sticky_Herb,Sticky Herb,3,20,,10,,,,,,,,,,,,,{},{},{}
-7764,High_Strength_Adhesive,High Strength Adhesive,3,20,,10,,,,,,,,,,,,,{},{},{}
-7765,Yaga_Secret_Medicine,Baba Yaga's Secret Medicine,3,20,,10,,,,,,,,,,,,,{},{},{}
-7766,Bok_Choy,Bok Choy,3,20,,10,,,,,,,,,,,,,{},{},{}
-7767,Chung_E_Cake,Green Maiden's Cake,3,20,,10,,,,,,,,,,,,,{},{},{}
-7768,Squid,Squid,3,0,,10,,,,,,,,,,,,,{},{},{}
-7769,Egg_Yolk,Egg Yolk,3,0,,10,,,,,,,,,,,,,{},{},{}
-7770,Sweet_Rice,Sweet Rice,3,0,,10,,,,,,,,,,,,,{},{},{}
-7771,Lotus_Leaf,Lotus Leaf,3,0,,10,,,,,,,,,,,,,{},{},{}
-7772,String,String,3,0,,10,,,,,,,,,,,,,{},{},{}
-7773,War_Badge,Wat Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7774,Chung_E_Ticket,Green Maiden Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7775,Spring_Rabbit_Ticket,Spring Rabbit Ticket,3,0,,10,,,,,,,,,,,,,{},{},{}
-7776,Max_Weight_Up_Scroll,Gym Pass,3,0,,10,,,,,,,,,,,,,{},{},{}
-7777,Gold_Box,Sealed Golden Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7778,Silver_Box,Sealed Silver Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7779,Gold_Key_TW,Golden Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7780,Silver_Key,Silver Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7781,Heart_Box,Engrave Treasure Box,3,0,,10,,,,,,,,,,,,,{},{},{}
-7782,Gold_Key77,Episode 13.1 Poporing Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7783,Silver_Key77,Episode 13.2 Poring Key,3,0,,10,,,,,,,,,,,,,{},{},{}
-7784,Fawner_Coupon1,Free Coupon 1,3,0,,10,,,,,,,,,,,,,{},{},{}
-7785,Fawner_Coupon2,Free Coupon 2,3,0,,10,,,,,,,,,,,,,{},{},{}
-7786,Fawner_Coupon3,Free Coupon 3,3,0,,10,,,,,,,,,,,,,{},{},{}
-7787,Fawner_Coupon4,Free Coupon 4,3,0,,10,,,,,,,,,,,,,{},{},{}
-7788,Fawner_Coupon5,Free Coupon 5,3,0,,10,,,,,,,,,,,,,{},{},{}
-7789,Fawner_Coupon6,Free Coupon 6,3,0,,10,,,,,,,,,,,,,{},{},{}
-7790,Fawner_Coupon7,Free Coupon 7,3,0,,10,,,,,,,,,,,,,{},{},{}
-7791,Fawner_Coupon8,Free Coupon 8,3,0,,10,,,,,,,,,,,,,{},{},{}
-7792,Guyak,Guyak,3,0,,10,,,,,,,,,,,,,{},{},{}
-7793,Golden_Apple,Golden Apple,3,0,,0,,,,,,,,,,,,,{},{},{}
-7794,Fate_Of_Crow,The Crow of Destiny,3,0,,0,,,,,,,,,,,,,{},{},{}
-7795,Mami_Photo_Album,Mammi's Photo Album,3,2,,10,,,,,,,,,,,,,{},{},{}
-7796,Author_Autograph,Author's Autograph,3,2,,10,,,,,,,,,,,,,{},{},{}
-7797,Author_Memo,Author's Memo,3,2,,10,,,,,,,,,,,,,{},{},{}
-7798,Dark_Debris,Fragment of Darkness,3,500,,10,,,,,,,,,,,,,{},{},{}
-7799,Dark_Crystal,Crystal of Darkness,3,10,,10,,,,,,,,,,,,,{},{},{}
-7800,Golden_Apple_,Golden Charm Apple,3,0,,0,,,,,,,,,,,,,{},{},{}
-7801,Girl_Fan_Letter,Girl's Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7802,Autograph_Book,Signature Notebook,3,0,,0,,,,,,,,,,,,,{},{},{}
-7803,Battle_Manual_TW,Beginner's Field Manual,3,0,,10,,,,,,,,,,,,,{},{},{}
-//7804,????_???,????_???,3,,,10,,,,,,,,,,,,,{},{},{}
-7805,Brown_Ring,Brown Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7806,Black_Anvil,God Anvil,3,0,,10,,,,,,,,,,,,,{},{},{}
-7807,Ore,God Mineral,3,0,,10,,,,,,,,,,,,,{},{},{}
-7808,Gold_Hammer,God Hammer,3,0,,10,,,,,,,,,,,,,{},{},{}
-7809,Gold_Furnace,God Furnace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7810,Yellow_Cat_Eyed_Stone,Symbol of Richness,3,0,,10,,,,,,,,,,,,,{},{},{}
-7811,Gold_Anvil,Anvil,3,0,,10,,,,,,,,,,,,,{},{},{}
-7812,Red_Cat_Eyed_Stone,Symbol of Bravery,3,0,,10,,,,,,,,,,,,,{},{},{}
-7813,Th_Red_Ring,Red Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7814,Green_Ring,Green Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7815,Blue_Ring,Blue Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{}
-7816,Blue_Cat_Eyed_Stone,Symbol of Faith,3,0,,10,,,,,,,,,,,,,{},{},{}
-7817,White_Cat_Eyed_Stone,Symbol of Peace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7818,RJC_Golden_Necklace,Jessur's Necklace,3,0,,10,,,,,,,,,,,,,{},{},{}
-7819,Nokia5300,Nokia 5300,3,0,,10,,,,,,,,,,,,,{},{},{}
-7820,Morroc_Skin,Piece of Morocc Skin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7821,Green_Apple,Green Apple,3,20,,10,,,,,,,,,,,,,{},{},{}
-7822,Whole_Barbecue,Whole Barbecue,3,20,,10,,,,,,,,,,,,,{},{},{}
-7823,Meat_Veg_Skewer,Meat Veg Skewer,3,20,,10,,,,,,,,,,,,,{},{},{}
-7824,Spirit_Liquor,Spirit Liquor,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7825,Heroic_Stone,Heroic Stone,3,20,,10,,,,,,,,,,,,,{},{},{}
-7826,Continental_Guard_Paper,Continental Guard Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7827,Mineral_Report,Mineral Evals,3,0,,0,,,,,,,,,,,,,{},{},{}
-7828,BF_Badge1,Bravery Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7829,BF_Badge2,Valor Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7830,Goddess_Tear,Goddess Tear,3,1,,500,,,,,,,,,,,,,{},{},{}
-7831,Valkyrie_Token,Valkyrie's Token,3,1,,500,,,,,,,,,,,,,{},{},{}
-7832,Brynhild_Armor_Piece,Brynhild Armor Piece,3,1,,500,,,,,,,,,,,,,{},{},{}
-7833,Hero_Remains,Hero's Remains,3,1,,500,,,,,,,,,,,,,{},{},{}
-7834,Andvari_Ring,Andvari's Ring,3,1,,500,,,,,,,,,,,,,{},{},{}
-7835,Dusk_Glow,Dusk Glow,3,1,,500,,,,,,,,,,,,,{},{},{}
-7836,Dawn_Essence,Dawn Essence,3,1,,500,,,,,,,,,,,,,{},{},{}
-7837,Cold_Moonlight,Cold Moonlight,3,1,,500,,,,,,,,,,,,,{},{},{}
-7838,Hazy_Starlight,Hazy Starlight,3,1,,500,,,,,,,,,,,,,{},{},{}
-7839,Crystal_Key,Crystal Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7840,Valkyrie_Gift,Valkyrie's Gift,3,0,,0,,,,,,,,,,,,,{},{},{}
-7841,Spotted_Paper,Stained Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7842,Torn_Paper,Torn Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7843,Old_Paper,Old Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7844,Burnt_Paper,Burnt Pieces Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{}
-7845,Copy_Of_Spotted_Paper,Copy Of Spotted Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7846,Copy_Of_Torn_Paper,Copy Of Torn Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7847,Copy_Of_Old_Paper,Copy Of Old Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7848,Copy_Of_Burnt_Paper,Copy Of Burnt Paper,3,0,,10,,,,,,,,,,,,,{},{},{}
-7849,Soul_Crystal,Soul Crystal,3,0,,10,,,,,,,,,,,,,{},{},{}
-7850,Wooden_Block_,Wooden Block,3,20,,100,,,,,,,,,,,,,{},{},{}
-7851,Pass_F1,Wii Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7852,Pass_F2,Divx Player Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7853,Pass_F3,iPod nano Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7854,Pass_CF,Comodo Festival Ticket,3,20,,10,,,,,,,,,,,,,{},{},{}
-7855,Heart,Heart,3,20,,10,,,,,,,,,,,,,{},{},{}
-7856,Girl_Bunch_Of_Flower_,Girl's Bouquet,3,20,,50,,,,,,,,,,,,,{},{},{}
-7857,Handmade_Kitty_Doll,Hand-made Kitty Doll,3,20,,30,,,,,,,,,,,,,{},{},{}
-7858,Dragonball_Yellow_,Dragonball Yellow,3,20,,10,,,,,,,,,,,,,{},{},{}
-7859,Game_Ticket,Game Ticket,3,20,,100,,,,,,,,,,,,,{},{},{}
-7860,Peeps,Peeps,3,0,,50,,,,,,,,,,,,,{},{},{}
-7861,Jelly_Bean,Jelly Bean,3,0,,50,,,,,,,,,,,,,{},{},{}
-7862,Marshmallow,Marshmallow,3,0,,50,,,,,,,,,,,,,{},{},{}
-7863,GOLD_ID4,Special Gold,3,20,,200,,,,,,,,,,,,,{},{},{}
-7864,Love_Flower,Love Flower,3,20,,10,,,,,,,,,,,,,{},{},{}
-7865,Gold_Pouch,Gold Pouch,3,10,,0,,,,,,,,,,,,,{},{},{}
-7866,Certificate,Certificate,3,10,,0,,,,,,,,,,,,,{},{},{}
-7867,SesamePouch,Sesame Bag,3,10,,100,,,,,,,,,,,,,{},{},{}
-7868,Water,Fresh Water,3,10,,100,,,,,,,,,,,,,{},{},{}
-7869,RicePouch,Rice Pouch,3,10,,100,,,,,,,,,,,,,{},{},{}
-7870,Corn,Corn,3,5,,20,,,,,,,,,,,,,{},{},{}
-7871,BeanPouch,Bean Bag,3,10,,20,,,,,,,,,,,,,{},{},{}
-7872,Grass,Herb,3,10,,30,,,,,,,,,,,,,{},{},{}
-7873,MVP_Monster_Scroll,MVP Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{}
-7874,Monster_Scroll,Create Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{}
-7875,Pirate_Box,Pirate Treasure,3,300000,,0,,,,,,,,,,,,,{},{},{}
-7876,Gold_Key,Golden Key,3,0,,50,,,,,,,,,,,,,{},{},{}
-7877,Red_Ring,Red Ring,3,0,,100,,,,,,,,,,,,,{},{},{}
-7878,Lusalka_Hair,Lusalka's Hair,3,0,,10,,,,,,,,,,,,,{},{},{}
-7879,Golden_Thread,Golden Thread,3,0,,10,,,,,,,,,,,,,{},{},{}
-7880,Babayaga_Silver_Spoon,Baba Yaga's Silver Spoon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7881,Book_Of_Magic,Mystery Magic Book,3,0,,50,,,,,,,,,,,,,{},{},{}
-7882,Pointed_Branch,Sharp Branch,3,0,,0,,,,,,,,,,,,,{},{},{}
-7883,Pointed_Wooden_Flute,Wooden Flute,3,0,,0,,,,,,,,,,,,,{},{},{}
-7884,Jade_Plate,Jade Plate,3,0,,0,,,,,,,,,,,,,{},{},{}
-7885,Sacred_Arrow,Sacred Arrow,3,0,,0,,,,,,,,,,,,,{},{},{}
-7886,Bean_Paste,Bean Paste,3,0,,10,,,,,,,,,,,,,{},{},{}
-7887,Dried_Fruit_Box,Dried Fruit Box,3,0,,30,,,,,,,,,,,,,{},{},{}
-7888,Bag_Of_Nuts,Bag of Nuts,3,0,,30,,,,,,,,,,,,,{},{},{}
-7889,Chicken_Feed,Chicken Feed,3,0,,20,,,,,,,,,,,,,{},{},{}
-7891,Mug,Mug,3,2,,100,,,,,,,,,,,,,{},{},{}
-7892,Charcoal,Charcoal,3,10,,10,,,,,,,,,,,,,{},{},{}
-7893,Sulfur,Sulphur,3,10,,10,,,,,,,,,,,,,{},{},{}
-7894,Nitrate,Nitrogen Acid,3,10,,10,,,,,,,,,,,,,{},{},{}
-7895,TRO_Memory_Book01,Rama5 Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7896,TRO_Memory_Book02,Loykrathong Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7897,TRO_Memory_Book03,Constitution Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-7898,VVS_Balmung,VV Strong Balmung,3,0,,0,,,,,,,,,,,,,{},{},{}
-7899,Spiritualist_Dagger,Dagger Of Psychic,3,0,,0,,,,,,,,,,,,,{},{},{}
-7900,Jenoss_Ring1,Jonathan Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7901,Jenoss_Ring2,Jillberriel Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7902,Jenoss_Ring3,Jessur Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7903,Jenoss_Ring4,Jenoss Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-7904,Piano_Key,Piano Key,3,0,,0,,,,,,,,,,,,,{},{},{}
-7905,Rok_Star_Badge_,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{}
-7906,Poppy_Wreath,Poppy Wreath,3,0,,0,,,,,,,,,,,,,{},{},{}
-7907,Bobbin_Of_Goddess,Bobbin Of Goddess,3,20,,10,,,,,,,,,,,,,{},{},{}
-7908,Louis_Hair_Coupon,Louise's Beauty Coupon,3,0,,10,,,,,,,,,,,,,{},{},{}
-7909,Stolen_Cookie,Stolen Cookie,3,0,,10,,,,,,,,,,,,,{},{},{}
-7910,Stolen_Candy,Stolen Candy,3,0,,10,,,,,,,,,,,,,{},{},{}
-7911,Yulia_Hat,Yulia's Hat,3,0,,10,,,,,,,,,,,,,{},{},{}
-7912,Portable_Snowman,Portable Snowman Machine,3,0,,0,,,,,,,,,,,,,{},{},{}
-7913,Test_Certificate,Battle Test Certificate,3,0,,0,,,,,,,,,,,,,{},{},{}
-7914,Ancient_Document_TW,Ancient Language Document,3,10,,0,,,,,,,,,,,,,{},{},{}
-7915,Copper_Coin_,Bronze Coin,3,0,,10,,,,,,,,,,,,,{},{},{}
-7916,Silver_Coin_,Silver Coin,3,0,,10,,,,,,,,,,,,,{},{},{}
-7917,Magic_Potion,Magic Potion,3,0,,0,,,,,,,,,,,,,{},{},{}
-7918,Particle_Of_Memory,Fragment Of Memory,3,2000,,100,,,,,,,,,,,,,{},{},{}
-7919,Festival_Ticket,Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7920,Hero's_Arsenal,He's Arsenal,3,0,,0,,,,,,,,,,,,,{},{},{}
-7921,Essence_Of_Dragon,Essence Of Dragon,3,1000,,10,,,,,,,,,,,,,{},{},{}
-7922,RWC_Ticket,RWC Voucher Items,3,2,,10,,,,,,,,,,,,,{},{},{}
-7923,KRATHONG_,Krathong,3,0,,0,,,,,,,,,,,,,{},{},{}
-7924,Gold_Paper,Gold Paper,3,20,,10,,,,,,,,,,,,,{},{},{}
-7925,Silver_Paper,Silver Paper,3,20,,10,,,,,,,,,,,,,{},{},{}
-7926,Incense,Incense,3,20,,10,,,,,,,,,,,,,{},{},{}
-7927,Candle_TW,Candle TW,3,20,,10,,,,,,,,,,,,,{},{},{}
-7928,Brazilian_Flag_,Brazil National Flag,3,10,,10,,,,,,,,,,,,,{},{},{}
-7929,Golden_Coin_,Gold Coin,3,10,,10,,,,,,,,,,,,,{},{},{}
-7930,Cowking's_Nose_Ring,Devil's Cattle Ring,3,0,,1000,,,,,,,,,,,,,{},{},{}
-7931,Poison_Kit,Poison Kit,3,1,,10,,,,,,,,,,,,,{},{},{}
-7932,Poison_Herb_Nerium,Poison Herb Nerium,3,1,,10,,,,,,,,,,,,,{},{},{}
-7933,Poison_Herb_Rantana,Poison Herb Rantana,3,1,,10,,,,,,,,,,,,,{},{},{}
-7934,Poison_Herb_Makulata,Poison Herb Makulata,3,1,,10,,,,,,,,,,,,,{},{},{}
-7935,Poison_Herb_Seratum,Poison Herb Seratum,3,1,,10,,,,,,,,,,,,,{},{},{}
-7936,Poison_Herb_Scopolia,Poison Herb Scoporia,3,1,,10,,,,,,,,,,,,,{},{},{}
-7937,Poison_Herb_Amoena,Poison Herb Amoena,3,1,,10,,,,,,,,,,,,,{},{},{}
-7938,Light_Granule,Light Granule,3,1500,,10,,,,,,,,,,,,,{},{},{}
-7939,Elder_Branch,Elder Branch,3,1500,,10,,,,,,,,,,,,,{},{},{}
-7940,Special_Alloy_Trap,Special Alloy Trap,3,300,,2,,,,,,,,,,,,,{},{},{}
-7941,Halloween_Ticket,Halloween Ticket,3,10,,0,,,,,,,,,,,,,{},{},{}
-7942,Letter_From_Chico,Chico Cesar Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7943,Caskinya,Caskinya,3,0,,0,,,,,,,,,,,,,{},{},{}
-7944,Sealed_Box,Sealed Box,3,10,,10,,,,,,,,,,,,,{},{},{}
-7945,Almighty_Charm,Universal Amulet,3,0,,10,,,,,,,,,,,,,{},{},{}
-7946,Valentine_Gold_Ring,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-7947,Valentine_Silver_Ring,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{}
-7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{}
-7949,Woven_Wool,Woven Wool,3,10,,0,,,,,,,,,,,,,{},{},{}
-7950,Ayothaya_Ticket,Ayothaya Fest Ticket,3,10,,0,,,,,,,,,,,,,{},{},{}
-7951,Gold_Tulip,Golden Tulip Flower,3,10,,0,,,,,,,,,,,,,{},{},{}
-7952,Gift_From_Romiros,Gift Of Lomi Ross,3,0,,0,,,,,,,,,,,,,{},{},{}
-7953,Gift_From_Juliedge,Gift Of Juliet,3,0,,0,,,,,,,,,,,,,{},{},{}
-7954,Festival_Ticket_,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{}
-7955,Lost_Card1,Lost Card1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7956,Lost_Card2,Lost Card2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7957,Lost_Card3,Lost Card3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7958,Lost_Card4,Lost Card4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7959,Ancient_Gold_Coin,Ancient Gold Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7960,Ancient_Silver_Coin,Ancient Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-7961,Weapon_Exchange,Weapon Exchange,3,0,,0,,,,,,,,,,,,,{},{},{}
-7962,Treasure_Map1,Treasure Map1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7963,Treasure_Map2,Treasure Map2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7964,Treasure_Map3,Treasure Map3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7965,Treasure_Map4,Treasure Map4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7966,Weird_Parchment1,Weird Parchment1,3,10,,0,,,,,,,,,,,,,{},{},{}
-7967,Weird_Parchment2,Weird Parchment2,3,10,,0,,,,,,,,,,,,,{},{},{}
-7968,Weird_Parchment3,Weird Parchment3,3,10,,0,,,,,,,,,,,,,{},{},{}
-7969,Weird_Parchment4,Weird Parchment4,3,10,,0,,,,,,,,,,,,,{},{},{}
-7970,Unwritten_Letter1,Unwritten Letter1,3,0,,0,,,,,,,,,,,,,{},{},{}
-7971,Unwritten_Letter2,Unwritten Letter2,3,0,,0,,,,,,,,,,,,,{},{},{}
-7972,Oath_Day_Letter,Oath Day Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-7973,Immortality_Egg,Immortality Egg,3,20,,0,,,,,,,,,,,,,{},{},{}
-7974,Illusion_Piece,Illusion Piece,3,20,,0,,,,,,,,,,,,,{},{},{}
-7975,Cupid_Choco,Cupid Choco,3,0,,0,,,,,,,,,,,,,{},{},{}
-7976,Gf_Magic_Coin,Gf Magic Coin,3,20,,0,,,,,,,,,,,,,{},{},{}
-7977,Hunting_Medal_Badge,Hunting Medal Badge,3,0,,0,,,,,,,,,,,,,{},{},{}
-7978,Spring_Stanza1,Spring Stanza1,3,2,,10,,,,,,,,,,,,,{},{},{}
-7979,Spring_Stanza2,Spring Stanza2,3,2,,10,,,,,,,,,,,,,{},{},{}
-7980,Spring_Stanza3,Spring Stanza3,3,2,,10,,,,,,,,,,,,,{},{},{}
-7981,Spring_Stanza4,Spring Stanza4,3,2,,10,,,,,,,,,,,,,{},{},{}
-7982,Spring_Stanza5,Spring Stanza5,3,2,,10,,,,,,,,,,,,,{},{},{}
-7983,Spring_Stanza6,Spring Stanza6,3,2,,10,,,,,,,,,,,,,{},{},{}
-7984,Spring_Stanza7,Spring Stanza7,3,2,,10,,,,,,,,,,,,,{},{},{}
-7985,Spring_Stanza8,Spring Stanza8,3,2,,10,,,,,,,,,,,,,{},{},{}
-7986,Spring_Stanza9,Spring Stanza9,3,2,,10,,,,,,,,,,,,,{},{},{}
-7987,Spring_Stanza10,Spring Stanza10,3,2,,10,,,,,,,,,,,,,{},{},{}
-7988,Spring_Stanza11,Spring Stanza11,3,2,,10,,,,,,,,,,,,,{},{},{}
-7989,Spring_Stanza12,Spring Stanza12,3,2,,10,,,,,,,,,,,,,{},{},{}
-7990,Spring_Stanza13,Spring Stanza13,3,2,,10,,,,,,,,,,,,,{},{},{}
-7991,Spring_Stanza14,Spring Stanza14,3,2,,10,,,,,,,,,,,,,{},{},{}
-7992,Spring_Stanza15,Spring Stanza15,3,2,,10,,,,,,,,,,,,,{},{},{}
-7993,Spring_Stanza16,Spring Stanza16,3,2,,10,,,,,,,,,,,,,{},{},{}
-7994,Spring_Stanza17,Spring Stanza17,3,2,,10,,,,,,,,,,,,,{},{},{}
-7995,Spring_Stanza18,Spring Stanza18,3,2,,10,,,,,,,,,,,,,{},{},{}
-7996,Spring_Stanza19,Spring Stanza19,3,2,,10,,,,,,,,,,,,,{},{},{}
-7997,Spring_Stanza20,Spring Stanza20,3,2,,10,,,,,,,,,,,,,{},{},{}
-7998,Spring_Stanza21,Spring Stanza21,3,2,,10,,,,,,,,,,,,,{},{},{}
-7999,Spring_Stanza22,Spring Stanza22,3,2,,10,,,,,,,,,,,,,{},{},{}
-// Pet Eggs
-//===================================================================
-9001,Poring_Egg,Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9002,Drops_Egg,Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9003,Poporing_Egg,Poporing Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9004,Lunatic_Egg,Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9005,Picky_Egg,Picky Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9006,Chonchon_Egg,Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9007,Steel_Chonchon_Egg,Steel Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9008,Hunter_Fly_Egg,Hunter Fly Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9009,Savage_Bebe_Egg,Savage Babe Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9010,Baby_Desert_Wolf_Egg,Baby Desert Wolf Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9011,Rocker_Egg,Rocker Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9012,Spore_Egg,Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9013,Poison_Spore_Egg,Poison Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9014,PecoPeco_Egg,Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9015,Smokie_Egg,Smokie Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9016,Yoyo_Egg,Yoyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9017,Orc_Warrior_Egg,Orc Warrior Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9018,Munak_Egg,Munak Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9019,Dokkaebi_Egg,Dokebi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9020,Sohee_Egg,Sohee Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9021,Isis_Egg,Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9022,Green_Petite_Egg,Green Petite Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9023,Deviruchi_Egg,Deviruchi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9024,Bapho_Jr._Egg,Bapho Jr. Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9025,Bongun_Egg,Bongun Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9026,Zherlthsh_Egg,Zealotus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9027,Alice_Egg,Alice Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9028,Rice_Cake_Egg,Hard Rice Cake,7,20,,0,,,,,,,,,,,,,{},{},{}
-9029,Santa_Goblin_Egg,Christmas Goblin's Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9030,Chung_E_Egg,Green Maiden Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9031,Spring_Rabbit_Egg,Spring Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9032,Knife_Goblin_Egg,Knife Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9033,Flail_Goblin_Egg,Flail Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9034,Hammer_Goblin_Egg,Hammer Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9035,Red_Deleter_Egg,Red Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9036,Diabolic_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9037,Wanderer_Egg,Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9038,New_Year_Doll_Egg,New Year Doll Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9039,Bacsojin_Egg,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9040,Civil_Servant_Egg,Civil Servant Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9041,Leaf_Cat_Egg,Leaf Cat Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9042,Loli_Ruri_Egg,Loli Ruri Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9043,Marionette_Egg,Marionette Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9044,Shinobi_Egg,Shinobi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9045,Whisper_Egg,Whisper Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9046,Goblin_Leader_Egg,Goblin Leader Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9047,Wicked_Nymph_Egg,Wicked Nymph Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9048,Miyabi_Ningyo_Egg,Miyabi Ningyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9049,Dullahan_Egg,Dullahan Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9050,Medusa_Egg,Medusa Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9051,Stone_Shooter_Egg,Stone Shooter Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9052,Incubus_Egg,Incubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9053,Golem_Egg,Golem Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9054,Nightmare_Terror_Egg,Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9055,Succubus_Egg,Succubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9056,Imp_Egg,Imp Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9057,Egg_Of_Tiny,Egg Of Tiny,7,20,,0,,,,,,,,,,,,,{},{},{}
-9058,Snow_Rabbit_Egg,Christmas Snow Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9059,Tikbalang_Pet,Tikbalang Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9060,Brownie_Egg,Domovoi Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9061,Marin_Egg,Marin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9062,Novice_Poring_Egg,Novice Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9063,Woodie_Egg,Woodie Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9064,Elephant_Egg,Elephant Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9065,Gorilla_Egg,Gorilla Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9066,Lion_Egg,Lion Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9067,Rhino_Egg,Rhino Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9068,Blue_Unicorn_Egg,Blue Unicorn Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9069,Mastering_Egg,Mastering Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9070,Savage_Egg,Savage Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9071,Grand_Peco_Peco_Egg,Grand Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9072,Orc_Hero_Egg,Orc Hero Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9073,Orc_Lord_Egg,Orc Lord Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9074,Rubylit_Egg,Rubylit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9075,Sapphilit_Egg,Sapphilit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9076,Emelit_Egg,Emelit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9077,Topalit_Egg,Topalit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9078,Amelit_Egg,Amelit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9079,Mythlit_Egg,Mythlit Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9080,Tamadora_Egg,Tamadora Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-
-9087,High_Orc_Egg,High Orc Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9088,Angeling_Egg,Angeling Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9089,Am_Mut_Egg,Am Mut Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9090,Little_Isis_Egg,Little Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9091,Choco_Egg,Choco Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9092,Eggring_Egg,Eggring Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9093,Hyegun_Egg,Hyegun Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9094,Dr_Lunatic_Egg,Leaf Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9095,Nine_Tail_Egg,Nine Tail Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9096,Cat_o_Nine_Tail_Egg,Cat o Nine Tail Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9097,Diabolic_2_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9098,Fire_Deleter_Egg,Fire Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9099,Teddy_Bear_Egg,Teddy Bear Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9100,Gremlin_Egg,Gremlin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9101,Scatletoncarrier,Scatleton's Cage,7,20,,0,,,,,,,,,,,,,{},{},{}
-9102,Mummy_Egg,Mummy Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9103,Willow_Egg,Willow Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9104,Roween_Egg,Roween Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9105,Hodremlin_Egg,Hodremlin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9106,Metaller_Egg,Metaller Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9107,Ancient_Mummy_Egg,Ancient Mummy Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9108,Xm_Teddy_Bear_Egg,Xmas Teddy Bear Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9109,Sweet_Drops_Egg,Sweet Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-
-9111,Phreeoni_Egg,Phreeoni Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9112,Moonlight_Egg,Moonlight Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9113,Roost_Of_Skelion,Roost Of Skelion,7,20,,0,,,,,,,,,,,,,{},{},{}
-9114,Pouring_Egg,Pouring Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9115,Bacsojin2_Egg_,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9116,Rigid_Nightmare_Terror_Egg,Rigid Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9117,Contaminated_Wanderer_Egg,Contaminated Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9118,Aliot_Egg,Aliot Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9119,Alicel_Egg,Alicel Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9120,Aliza_Egg,Aliza Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-9121,Orc_Hero_Egg_,Orc Hero Egg,7,20,,0,,,,,,,,,,,,,{},{},{}
-//===================================================================
-// Pet Accessories
-//===================================================================
-10001,Skull_Helm,Skull Helm,8,20,,0,,,,,,,,,,,,,{},{},{}
-10002,Monster_Oxygen_Mask,Monster Oxygen Mask,8,20,,0,,,,,,,,,,,,,{},{},{}
-10003,Transparent_Headgear,Transparent Head Protector,8,20,,0,,,,,,,,,,,,,{},{},{}
-10004,Pacifier,Pacifier,8,20,,0,,,,,,,,,,,,,{},{},{}
-10005,Wig,Wig,8,20,,0,,,,,,,,,,,,,{},{},{}
-10006,Queen's_Hair_Ornament,Queen's Hair Ornament,8,20,,0,,,,,,,,,,,,,{},{},{}
-10007,Silk_Ribbon,Silk Ribbon,8,20,,0,,,,,,,,,,,,,{},{},{}
-10008,Punisher,Punisher,8,20,,0,,,,,,,,,,,,,{},{},{}
-10009,Wild_Flower,Wild Flower,8,20,,0,,,,,,,,,,,,,{},{},{}
-10010,Battered_Pot,Battered Pot,8,20,,0,,,,,,,,,,,,,{},{},{}
-10011,Stellar_Hairpin,Stellar Hairpin,8,20,,0,,,,,,,,,,,,,{},{},{}
-10012,Tiny_Egg_Shell,Tiny Egg Shell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10013,Backpack,Backpack,8,1500,,0,,,,,,,,,,,,,{},{},{}
-10014,Rocker_Glasses,Rocker Glasses,8,2000,,0,,,,,,,,,,,,,{},{},{}
-10015,Green_Lace,Green Lace,8,20,,0,,,,,,,,,,,,,{},{},{}
-10016,Golden_Bell,Golden Bell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10017,Bark_Shorts,Bark Shorts,8,20,,0,,,,,,,,,,,,,{},{},{}
-10018,Monkey_Circlet,Monkey Circlet,8,20,,0,,,,,,,,,,,,,{},{},{}
-10019,Red_Muffler,Red Scarf,8,20,,0,,,,,,,,,,,,,{},{},{}
-10020,Sword_Of_Grave_Keeper,Grave Keeper's Sword,8,20,,0,,,,,,,,,,,,,{},{},{}
-10021,Round_Hair_Ornament,Circular Headgear,8,20,,0,,,,,,,,,,,,,{},{},{}
-10022,Golden_Earing,Gold Earring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10023,Green_Lucky_Bag,Green Jewel Bag,8,20,,0,,,,,,,,,,,,,{},{},{}
-10024,Fashionable_Glasses,Fashion Glasses,8,20,,0,,,,,,,,,,,,,{},{},{}
-10025,Star_Hairband,Hairband Of Stars,8,20,,0,,,,,,,,,,,,,{},{},{}
-10026,Wine_On_Sleeve,Tassel for Durumagi,8,20,,0,,,,,,,,,,,,,{},{},{}
-10027,Spirit_Chain_,Pet Soul Ring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10028,Nice_Badge,Beautiful Badges,8,20,,0,,,,,,,,,,,,,{},{},{}
-10029,Jade_Trinket,Jade Trinket,8,20,,0,,,,,,,,,,,,,{},{},{}
-10030,Summer_Fan,Summer Fan,8,20,,0,,,,,,,,,,,,,{},{},{}
-10031,Death_Coil,Ring Of Death,8,20,,0,,,,,,,,,,,,,{},{},{}
-10032,Queen's_Coronet,Queen's Coronet,8,20,,0,,,,,,,,,,,,,{},{},{}
-10033,Apro_Hair,Afro,8,20,,0,,,,,,,,,,,,,{},{},{}
-10034,Ball_Mask,Masked Ball,8,20,,0,,,,,,,,,,,,,{},{},{}
-10035,Windup_Spring,Spring,8,20,,0,,,,,,,,,,,,,{},{},{}
-10036,Hell_Horn,Horn Of Hell,8,20,,0,,,,,,,,,,,,,{},{},{}
-10037,Black_Butterfly_Mask,Black Butterfly Mask,8,20,,0,,,,,,,,,,,,,{},{},{}
-10038,Horn_Protector,Horn Barrier,8,20,,0,,,,,,,,,,,,,{},{},{}
-10039,Tw_Backpack,Tw Backpack,8,20,,0,,,,,,,,,,,,,{},{},{}
-10040,Red_Bell_Necklace,Red Bell Necklace,8,20,,0,,,,,,,,,,,,,{},{},{}
-10041,Shiny_Star_Button,Shiny Star Button,8,20,,0,,,,,,,,,,,,,{},{},{}
-10042,Dark_Mane,Dark Mane,8,20,,0,,,,,,,,,,,,,{},{},{}
-//===================================================================
-// Misc "Etc" Books
-//===================================================================
-11000,Prontera_Book_01,History book of Prontera,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11001,Adventure_Story01,Adventure Story Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11002,Great_Chef_Orleans01,Chef King Orleans Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11003,Legend_Of_Kafra01,Kafra Legend Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11004,Mercenary_Rebellion,Old Book,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11005,Tyrant_Schmidt,Rune Royal Family Book,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11006,Blood_Flower01,Blood Flower Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11007,Blood_Flower02,Blood Flower Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11008,Barmund,Biographical Dictionary Copy Edition,3,10000,,10,,,,,,,,,,,,,{},{},{}
-11009,Adventure_Story02,Adventure Story Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{}
-11010,Reward_List_Book,Battlegrounds Catalog,3,0,,10,,,,,,,,,,,,,{},{},{}
-11011,Barmund_Note,Varmunt's Note,3,0,,0,,,,,,,,,,,,,{},{},{}
-11012,Expedition_Report,Expedition Report,3,0,,0,,,,,,,,,,,,,{},{},{}
-11013,Expedition_Report_Vol1,Expedition Report Vol1,3,0,,0,,,,,,,,,,,,,{},{},{}
-11014,Expedition_Report_Vol2,Expedition Report Vol2,3,0,,0,,,,,,,,,,,,,{},{},{}
-11015,Expedition_Report_Vol3,Expedition Report Vol3,3,0,,0,,,,,,,,,,,,,{},{},{}
-11016,Expedition_Report_Vol4,Expedition Report Vol4,3,0,,0,,,,,,,,,,,,,{},{},{}
-11017,Reward_List_Book2,KVM Reward Items Catalog,3,0,,10,,,,,,,,,,,,,{},{},{}
-11018,Splendide_Selling_Item,Splendide Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{}
-11019,Manuk_Selling_Item,Manuk Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{}
-11020,Japan_Book1,Japan Book1,3,20,,10,,,,,,,,,,,,,{},{},{}
-11021,Japan_Book2,Japan Book2,3,20,,10,,,,,,,,,,,,,{},{},{}
-11022,Mix_Cook_Book,Mix Cook Book,3,10,,10,,,,,,,,,,,,,{},{},{}
-11023,Increase_Stamina_Study,Increase Stamina Study,3,10,,50,,,,,,,,,,,,,{},{},{}
-11024,Vital_Drink_CB,Vital Drink CB,3,10,,50,,,,,,,,,,,,,{},{},{}
-11025,Swordman_Book_Basic,Swordman Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11026,Swordman_Book_Practice,Swordman Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11027,Swrodman_Book_Misc,Swrodman Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11028,Thief_Book_Basic,Thief Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11029,Thief_Book_Practice,Thief Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11030,Thief_Book_Misc,Thief Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11031,Archer_Book_Basic,Archer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11032,Archer_Book_Practice,Archer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11033,Archer_Book_Misc,Archer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11034,Acol_Book_Basic,Acol Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11035,Acol_Book_Practice,Acol Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11036,Acol_Book_Misc,Acol Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11037,Mage_Book_Basic,Mage Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11038,Mage_Book_Practice,Mage Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11039,Mage_Book_Misc,Mage Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11040,Mer_Book_Basic,Mer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11041,Mer_Book_Practice,Mer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11042,Mer_Book_Misc,Mer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11043,TK_Book_Basic,TK Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11044,TK_Book_Practice,TK Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11045,TK_Book_Misc,TK Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11046,Ninja_Book_Basic,Ninja Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11047,Ninja_Book_Practice,Ninja Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11048,Ninja_Book_Misc,Ninja Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11049,Gun_Book_Basic,Gun Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11050,Gun_Book_Practice,Gun Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11051,Gun_Book_Misc,Gun Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11052,SN_Book_Basic,SN Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{}
-11053,SN_Book_Practice,SN Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{}
-11054,SN_Book_Misc,SN Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{}
-11055,Basic_Adventure,Basic Adventure,3,20,,10,,,,,,,,,,,,,{},{},{}
-11056,Elemental_Spirit_Guide,Elemental Spirit Guide,3,1000,,10,,,,,,,,,,,,,{},{},{}
-11057,Feb_Sweets,February Sweets,3,20,,50,,,,,,,,,,,,,{},{},{}
-11058,Novice_Combi_Book,Novice Combi Book,3,0,,10,,,,,,,,,,,,,{},{},{}
-11059,WoE_TE_Rental_List,WoE TE Rental List,3,0,,10,,,,,,,,,,,,,{},{},{}
-11060,Energy_Xtal_Combi_Book,Energy Crystal Book,3,0,,10,,,,,,,,,,,,,{},{},{}
-11061,Honor_Proof_Exchange_List,Honor Proof Exchange List,3,20,,10,,,,,,,,,,,,,{},{},{}
-//===================================================================
-// More Usable Items
-//===================================================================
-11500,Light_Yellow_Pot,Light Yellow Potion,0,550,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-11501,Light_White_Pot,Light White Potion,0,1200,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-11502,Light_Blue_Pot,Light Blue Potion,0,5000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
-11503,Siege_White_Potion,WoE White Potion,0,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,500),0; },{},{}
-11504,Siege_Blue_Potion,WoE Blue Potion,0,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(50,70); },{},{}
-11505,Iris,Iris,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,150; },{},{}
-11506,Fanta_Orange,Fanta Orange,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11507,Fanta_Grape,Fanta Grape,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11508,Karada_Meguri_Tea,Karada Meguricha,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11509,Royal_Milk_Tea,Black Tea Kochakaden,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11510,Coke_Zero,Coca Cola Zero,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11511,Coke_No_Cal,Diet Coca Cola,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11512,Coca_Cola,Coca Cola,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11513,Protect_Neck_Candy,Protect Neck Candy,0,200,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(5,25),0; },{},{}
-11514,Enriched_Slim_Pot,Enriched Slim Pot,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(335,415),0; },{},{}
-11515,Coconut,Coconut,0,1500,,120,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(300,400),0; },{},{}
-11516,Asai_Fruit,Asai Fruit,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(16,22),0; },{},{}
-11517,Puri_Potion,Puri Potion,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,600),0; },{},{}
-11518,N_Blue_Potion,Blue Potion,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,5; },{},{}
-11519,Beef_Toast,Beef Toast,0,1200,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(170,250),0; },{},{}
-11520,Mora_Mandarin,Mora Mandar,0,500,,20,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal 0,rand(50,80); },{},{}
-11521,Pingui_Berry_Juice,Pingui Berry Juice,0,500,,50,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal rand(400,800),rand(50,80); },{},{}
-11522,Red_Raffle_Sap,Red Raffle Sap,0,2500,,100,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal rand(400,800),0; },{},{}
-11523,Yellow_Raffle_Sap,Yellow Raffle Sap,0,3000,,120,,,,,0xFFFFFFFF,63,2,,,110,,,{ itemheal rand(600,1000),0; },{},{}
-11524,White_Raffle_Sap,White Raffle Sap,0,3500,,140,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal rand(800,1200),0; },{},{}
-11525,Mora_Hip_Tea,Mora Hip Tea,0,20,,150,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal rand(1500,2000),0; },{},{}
-11526,Rafflecino,Rafflecino,0,20,,100,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal 0,rand(120,160); },{},{}
-11527,Baklava,Baklava,0,3500,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 1200,440; },{},{}
-11528,Kanafeh,Kanafeh,0,1500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 300,240; },{},{}
-11529,MAAMOUL_,Maamoul,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 120,60; },{},{}
-11530,Jujube,Jujube,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 30,0; },{},{}
-11531,Coffee,Coffee,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,10; },{},{}
-11532,Nasi_Goreng,Nasi Goreng,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{}
-11533,Satay,Satay,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{}
-11534,Coco_Juice,Coconut Juice,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{}
-11535,Almond_Chocolate,Almond Chocolate,0,190,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(8,16); },{},{}
-11536,Cat_Hard_Biscuit,Cat Biscuit,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit"; },{},{}
-11537,Rice_weevil_Bug,Rice Weevil Bug,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug"; },{},{}
-11538,Octupus_Leg,Fresh Octopus Legs,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(35,60),rand(5,10); },{},{}
-11539,Athale_Choco,Athale Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11540,Shyai_Choco,Shyai Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11541,Mid_Choco,Mid Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11542,Zonda_Choco,Zonda Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11543,Goedo_Choco,Goedo Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11544,Huike_Choco,Huike Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11545,Rune_Choco,Rune Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11546,Pope_Choco,Pope Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11547,Woe_Violet_Potion,Siege Purple Potion,0,0,,120,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(500,700),rand(60,85); },{},{}
-11548,Woe_White_Potion,Siege White Potion,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,0; },{},{}
-11549,Woe_Blue_Potion,Siege Blue Potion,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,10; },{},{}
-11550,Pumpkin_Cake,Pumpkin Cake,0,10,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-11551,Savory_Herb_Salad,Savory Herb Salad,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1; },{},{}
-11552,Apple_Carrot_Salad,Apple Carrot Salad,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1; },{},{}
-11553,Casual_Stew,Casual Stew,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1; },{},{}
-11554,Golden_Roasted_Apple,Golden Roasted Apple,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1; },{},{}
-11555,Red_Potion_RG,Red Potion RG,0,0,,40,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{}
-11557,TE_White_Potion,TE White Potion,0,200,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{}
-11558,TE_White_Slim_Potion,TE White Slim Potion,0,275,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{}
-11563,Hot_Tee,Hot Tea,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,100; },{},{}
-11564,Sweet_Canape,Sweet Canape,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 1000,0; },{},{}
-11565,White_Potion_B,White Potion,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-11566,Yellow_Potion_,Yellow Potion,0,10,,130,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-11567,Novice_Potion_B,Novice Potion,0,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(44,66),0; },{},{}
-11568,Red_Slim_Potion_B,Red Slim Potion,0,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-11569,Orange_Potion_,Orange Potion,0,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-11570,Red_Potion_,Red Potion,0,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-11571,Green_Potion_,Green Potion,0,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; },{},{}
-11572,Blue_Potion_B,Blue Potion,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
-11573,White_Slim_Potion_B,White Slim Potion,0,10,,50,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{}
-11574,Yellow_Slim_Potion_,Yellow Slim Potion,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{}
-11575,Lucky_Cookie_B,Lucky Cookie,3,10,,30,,,,,,,,,,,,,{},{},{}
-11576,Lucky_Candy_Cane_B,Lucky Lollipop,3,10,,30,,,,,,,,,,,,,{},{},{}
-11577,Rice_Ball_B,Rice Ball,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 200,0; },{},{}
-11578,Candy_Striper_B,Candy Bar,0,10,,40,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-11579,Lucky_Candy_B,Lucky Candy,3,10,,30,,,,,,,,,,,,,{},{},{}
-11580,Candy_B,Candy,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{}
-11581,Piece_Of_Cake_B,Piece of Cake,0,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{}
-11582,Well_Baked_Cookie_B,Well-baked Cookie,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{}
-11583,Chocolate_Drink_B,Chocolate Drink,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-11584,White_Chocolate_B,White Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11585,HandMade_Chocolate_B,Hand-made Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11586,HandMade_Chocolate_B_,Hand-made White Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{}
-11587,Chocolate_B,Chocolate,0,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 1,1; },{},{}
-11588,Fresh_Strawberries,Fresh Strawberries,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(32,56),rand(16,28); },{},{}
-11589,Iceflake,Cold Snow Cone,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-11590,Meat_Skewer5,Skewer No.5,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(760,810),10; },{},{}
-11592,Trance_Candy_R,Trans Candy Red,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000; },{},{}
-11593,Trance_Candy_B,Trans Candy Blue,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100; },{},{}
-11594,Trance_Candy_Y,Trans Candy Yellow,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000; },{},{}
-11595,Trance_Candy_G,Trans Candy Green,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20; },{},{}
-11596,Blood_In_Skull,Blood In Skull,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(600,800),0; },{},{}
-11597,Iron_Bug,Iron Worm,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-11598,Bitter_Cacao_Bean,Bitter Cacao Bean,0,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-11599,Superstar_Potion,Superstar Potion,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-11600,Shining_Holy_Water,Shining Holy Water,0,10,,15,,,,0,0xFFFFFFFF,63,2,,,,,,{ 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; } },{},{}
-11602,Catnip_Fruit,Catnip Fruit,0,15,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,40),0; },{},{}
-11601,Delicious_Anchovy,Delicious Anchovy,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(30,46),0; },{},{}
-11605,Cookies_Bat,Cookie Bat,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,100),0; /*TODO*/ },{},{}
-
-11616,Yummy_Meat,Delicious Meat,0,1400,700,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; },{},{}
-
-11621,Red_Syrup,Red Syrup,0,800,400,7,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 325,0; },{},{}
-11622,Yellow_Syrup,Yellow Syrup,0,1200,600,10,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 900,0; },{},{}
-11623,White_Syrup,White Syrup,0,1500,750,14,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 1800,0; },{},{}
-11624,Blue_Syrup,Blue Syrup,0,7000,3500,10,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 0,180; },{},{}
-//
-11701,Girl_Bunch_Of_Flower,Girl's Bouquet,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{}
-11702,Moon_Cookie,Moon Cookie,0,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-11703,Mysterious_Blood,Mystery Blood,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(25,35); },{},{}
-11704,KETUPAT_F,Ketupat,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,90),0; },{},{}
-11705,Special_White_Potion,Children's Potion,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(425,425),0; },{},{}
-11706,Steak,Steak,0,1,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(700,1000),0; },{},{}
-11707,Roasted_Beef,Roast Beef,0,1,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(100,200); },{},{}
-11708,Fore_Flank_Sirloin,Fore Flank Sirloin,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(30,50),rand(1,5); },{},{}
-11709,Fanta_Zero_Lemon,Fanta Zero Lemon,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11710,Sakura_Mist,Sakura Mist,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11711,Sakura_Milk_Tea,Sakura Milk Tea,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11712,First_Leaf_Tea,Flower,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{}
-11713,Julia's_Candy,Julia's Candy,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,45),0; },{},{}
-//
-12000,Cold_Scroll_2_5,Level 5 Frost Diver,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FROSTDIVER",5; },{},{}
-12001,Holy_Scroll_1_3,Level 3 Heal,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_HEAL",3; },{},{}
-12002,Holy_Scroll_1_5,Level 5 Heal,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_HEAL",5; },{},{}
-12003,Holy_Scroll_2_1,Level 1 Teleport,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-12004,Arrow_Container,Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1750,500; },{},{}
-12005,Iron_Arrow_Container,Iron Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1770,500; },{},{}
-12006,Steel_Arrow_Container,Steel Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1753,500; },{},{}
-12007,Ori_Arrow_Container,Oridecon Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1765,500; },{},{}
-12008,Fire_Arrow_Container,Fire Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1752,500; },{},{}
-12009,Silver_Arrow_Container,Silver Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1751,500; },{},{}
-12010,Wind_Arrow_Container,Wind Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1755,500; },{},{}
-12011,Stone_Arrow_Container,Stone Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1756,500; },{},{}
-12012,Crystal_Arrow_Container,Crystal Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1754,500; },{},{}
-12013,Shadow_Arrow_Container,Shadow Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1767,500; },{},{}
-12014,Imma_Arrow_Container,Immaterial Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1757,500; },{},{}
-12015,Rusty_Arrow_Container,Rusty Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1762,500; },{},{}
-12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{}
-12017,Slow_Down_Potion,Slow Potion,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SLOWDOWN,5000,100; },{},{}
-12018,Fire_Cracker,Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12019,Holy_Egg,Holy Egg,11,2,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_RESURRECTION",2; },{},{}
-12020,Water_Of_Darkness,Cursed Water,11,2,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",8; },{},{}
-12021,Pork_Belly,Pork,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,99),0; },{},{}
-12022,Spareribs,Galbi,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,99),0; },{},{}
-12023,Giftbox_China,Wrapped Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBoxChina,1); },{},{}
-12024,Red_Pouch_Of_Surprise,Red Pouch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,""; },{},{}
-12025,Egg_Boy,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_EggBoy,1); },{},{}
-12026,Egg_Girl,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_EggGirl,1); },{},{}
-12027,Giggling_Box,Giggling Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0; },{},{}
-12028,Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,20000,25; },{},{}
-12029,Gloomy_Box,Box of Gloom,11,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AC_CONCENTRATION",1; },{},{}
-12030,Box_Of_Grudge,Box of Resentment,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,20; },{},{}
-12031,Sleepy_Box,Box of Drowsiness,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,60000,20; },{},{}
-12032,Box_Of_Storm,Box of Storms,11,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{}
-12033,Box_Of_Sunlight,Box of Sunlight,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_Intravision,30000,0; },{},{}
-12034,Painting_Box,Box of Panting,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0; },{},{}
-12035,Lotto_Box01,Lotto Box 01,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox1,1); },{},{}
-12036,Lotto_Box02,Lotto Box 02,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox2,1); },{},{}
-12037,Lotto_Box03,Lotto Box 03,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox3,1); },{},{}
-12038,Lotto_Box04,Lotto Box 04,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox4,1); },{},{}
-12039,Lotto_Box05,Lotto Box 05,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox5,1); },{},{}
-12040,Stone_Of_Intelligence_,Stone of Sage,2,100000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ homevolution; },{},{}
-12041,Str_Dish01,Fried Grasshopper Legs,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{}
-12042,Str_Dish02,Seasoned Sticky Webfoot,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{}
-12043,Str_Dish03,Bomber Steak,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{}
-12044,Str_Dish04,Herb Marinade Beef,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,4; percentheal 5,0; },{},{}
-12045,Str_Dish05,Lutie Lady's Pancake,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{}
-12046,Int_Dish01,Grape Juice Herbal Tea,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{}
-12047,Int_Dish02,Autumn Red Tea,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{}
-12048,Int_Dish03,Honey Herbal Tea,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{}
-12049,Int_Dish04,Morocc Fruit Wine,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,4; percentheal 0,5; },{},{}
-12050,Int_Dish05,Mastela Fruit Wine,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{}
-12051,Vit_Dish01,Steamed Crab Nippers,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{}
-12052,Vit_Dish02,Assorted Seafood,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{}
-12053,Vit_Dish03,Clam Soup,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{}
-12054,Vit_Dish04,Seasoned Jellyfish,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,4; percentheal 5,0; },{},{}
-12055,Vit_Dish05,Spicy Fried Bao,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{}
-12056,Agi_Dish01,Frog Egg Squid Ink Soup,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{}
-12057,Agi_Dish02,Smooth Noodle,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{}
-12058,Agi_Dish03,Tentacle Cheese Gratin,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{}
-12059,Agi_Dish04,Lutie Cold Noodle,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; },{},{}
-12060,Agi_Dish05,Steamed Bat Wing in Pumpkin,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{}
-12061,Dex_Dish01,Honey Grape Juice,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{}
-12062,Dex_Dish02,Chocolate Mousse Cake,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{}
-12063,Dex_Dish03,Fruit Mix,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{}
-12064,Dex_Dish04,Cream Sandwich,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; },{},{}
-12065,Dex_Dish05,Green Salad,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{}
-12066,Luk_Dish01,Fried Monkey Tails,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{}
-12067,Luk_Dish02,Mixed Juice,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{}
-12068,Luk_Dish03,Fried Sweet Potato,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{}
-12069,Luk_Dish04,Steamed Ancient Lips,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; },{},{}
-12070,Luk_Dish05,Fried Scorpion Tails,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{}
-12071,Str_Dish06,Shiny Marinade Beef,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,6; percentheal 10,2; },{},{}
-12072,Str_Dish07,Whole Roast,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,7; percentheal 10,4; },{},{}
-12073,Str_Dish08,Bearfoot Special,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,8; percentheal 15,6; },{},{}
-12074,Str_Dish09,Tendon Satay,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,9; percentheal 15,8; },{},{}
-12075,Str_Dish10,Steamed Tongue,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,10; percentheal 20,20; },{},{}
-12076,Int_Dish06,Red Mushroom Wine,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,6; percentheal 2,10; },{},{}
-12077,Int_Dish07,Special Royal Jelly Herbal Tea,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,7; percentheal 4,10; },{},{}
-12078,Int_Dish08,Royal Family Tea,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,8; percentheal 6,10; },{},{}
-12079,Int_Dish09,Tristan XII,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,9; percentheal 8,15; },{},{}
-12080,Int_Dish10,Dragon Breath Cocktail,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,10; percentheal 10,20; },{},{}
-12081,Vit_Dish06,Awfully Bitter Bracer,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,6; percentheal 13,0; },{},{}
-12082,Vit_Dish07,Sumptuous Feast,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,7; percentheal 16,0; },{},{}
-12083,Vit_Dish08,Giant Burito,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,8; percentheal 19,0; },{},{}
-12084,Vit_Dish09,Ascending Dragon Soup,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,9; percentheal 22,0; },{},{}
-12085,Vit_Dish10,Immortal Stew,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,10; percentheal 25,0; },{},{}
-12086,Agi_Dish06,Chile Shrimp Gratin,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; },{},{}
-12087,Agi_Dish07,Steamed Alligator with Vegetable,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; },{},{}
-12088,Agi_Dish08,Incredibly Spicy Curry,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; },{},{}
-12089,Agi_Dish09,Special Meat Stew,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; },{},{}
-12090,Agi_Dish10,Steamed Desert Scorpions,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; },{},{}
-12091,Dex_Dish06,Peach Cake,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; },{},{}
-12092,Dex_Dish07,Soul Haunted Bread,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; },{},{}
-12093,Dex_Dish08,Special Toast,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; },{},{}
-12094,Dex_Dish09,Heavenly Fruit Juice,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; },{},{}
-12095,Dex_Dish10,Hwergelmir's Tonic,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; },{},{}
-12096,Luk_Dish06,Lucky Soup,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; },{},{}
-12097,Luk_Dish07,Assorted Shish Kebob,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; },{},{}
-12098,Luk_Dish08,Strawberry Flavored Rice Ball,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; },{},{}
-12099,Luk_Dish09,Blood Flavored Soda,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; },{},{}
-12100,Luk_Dish10,Cooked Nine Tail's Tails,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; },{},{}
-12101,Citron,Citron,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{}
-12102,Meat_Skewer,Grilled Skewer,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{}
-12103,Bloody_Dead_Branch,Bloody Branch,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,""; },{},{}
-12104,Random_Quiver,Random Quiver,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Quiver,1); },{},{}
-12105,Set_Of_Taiming_Item,Taming Gift Set,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); },{},{}
-12106,Accessory_Box,Jewelry Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Accesory,1); },{},{}
-12107,Wrapped_Mask,Wrapped Mask,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Mask,1); },{},{}
-12108,Bundle_Of_Magic_Scroll,Scroll Package,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); },{},{}
-12109,Poring_Box,Poring Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,""; },{},{}
-12110,First_Aid_Kit,First Aid Kit,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); },{},{}
-12111,Food_Package,Bundle of Food,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); },{},{}
-12112,Tropical_Sograt,Tropical Sograt,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_CURSE,10000,1; },{},{}
-12113,Vermilion_The_Beach,Vermilion on the Beach,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STUN,10000,1; },{},{}
-12114,Elemental_Fire,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",4; },{},{}
-12115,Elemental_Water,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{}
-12116,Elemental_Earth,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",3; },{},{}
-12117,Elemental_Wind,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",5; },{},{}
-12118,Resist_Fire,Fireproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; },{},{}
-12119,Resist_Water,Coldproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; },{},{}
-12120,Resist_Earth,Earthproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; },{},{}
-12121,Resist_Wind,Thunderproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; },{},{}
-12122,Sesame_Pastry,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{}
-12123,Honey_Pastry,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{}
-12124,Rainbow_Cake,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; },{},{}
-12125,Outdoor_Cooking_Kits,Outdoor Cooking Kit,2,500,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 11; },{},{}
-12126,Indoor_Cooking_Kits,Home Cooking Kit,2,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 12; },{},{}
-12127,High_end_Cooking_Kits,Professional Cooking Kit,2,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 13; },{},{}
-12128,Imperial_Cooking_Kits,Royal Cooking Kit,2,5000,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 14; },{},{}
-12129,Fantastic_Cooking_Kits,Fantastic Cooking Kit,2,10000,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 15; },{},{}
-12130,Cookie_Bag,Cookie Bag,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); },{},{}
-12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ /* sc_start SC_LUKFOOD,180000,15; */ },{},{}
-12132,Red_Bag,Santa's Bag,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25; },{},{}
-12133,Ice_Cream_,McDonald's Ice Cone,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ if(gettime(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); percentheal 50,50; } },{},{}
-12134,Red_Envelope,Red Envelope,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,10000); },{},{}
-12135,Green_Ale,Green Ale,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0; },{},{}
-12136,Women's_Bundle,Women's Bundle,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",558,529,2668,7518),1; },{},{}
-12137,1st_Stage_Prize,First Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12138,2nd_Stage_Prize,Second Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12139,3rd_Stage_Prize,Third Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12140,4th_Stage_Prize,Fourth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12141,5th_Stage_Prize,Fifth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12142,Magic_Book,Book of Magic,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{}
-12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,25; },{},{}
-12144,Sphere_Case_Wind,Lightning Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13204,500; },{},{}
-12145,Sphere_Case_Darkness,Blind Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13206,500; },{},{}
-12146,Sphere_Case_Poison,Poison Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13205,500; },{},{}
-12147,Sphere_Case_Water,Freezing Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13207,500; },{},{}
-12148,Sphere_Case_Fire,Flare Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13203,500; },{},{}
-12149,Bullet_Case,Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13200,500; },{},{}
-12150,Bullet_Case_Blood,Blood Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13202,500; },{},{}
-12151,Bullet_Case_Silver,Silver Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13201,500; },{},{}
-12152,Special_Box,Special Present,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Special_Box); },{},{}
-12153,Bow_Mercenary_Scroll1,Bowman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6017,1800000; },{},{}
-12154,Bow_Mercenary_Scroll2,Bowman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6018,1800000; },{},{}
-12155,Bow_Mercenary_Scroll3,Bowman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6019,1800000; },{},{}
-12156,Bow_Mercenary_Scroll4,Bowman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6020,1800000; },{},{}
-12157,Bow_Mercenary_Scroll5,Bowman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6021,1800000; },{},{}
-12158,Bow_Mercenary_Scroll6,Bowman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6022,1800000; },{},{}
-12159,Bow_Mercenary_Scroll7,Bowman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6023,1800000; },{},{}
-12160,Bow_Mercenary_Scroll8,Bowman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6024,1800000; },{},{}
-12161,Bow_Mercenary_Scroll9,Bowman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6025,1800000; },{},{}
-12162,Bow_Mercenary_Scroll10,Bowman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6026,1800000; },{},{}
-12163,SwordMercenary_Scroll1,Fencer Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6037,1800000; },{},{}
-12164,SwordMercenary_Scroll2,Fencer Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6038,1800000; },{},{}
-12165,SwordMercenary_Scroll3,Fencer Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6039,1800000; },{},{}
-12166,SwordMercenary_Scroll4,Fencer Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6040,1800000; },{},{}
-12167,SwordMercenary_Scroll5,Fencer Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6041,1800000; },{},{}
-12168,SwordMercenary_Scroll6,Fencer Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6042,1800000; },{},{}
-12169,SwordMercenary_Scroll7,Fencer Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6043,1800000; },{},{}
-12170,SwordMercenary_Scroll8,Fencer Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6044,1800000; },{},{}
-12171,SwordMercenary_Scroll9,Fencer Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6045,1800000; },{},{}
-12172,SwordMercenary_Scroll10,Fencer Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6046,1800000; },{},{}
-12173,SpearMercenary_Scroll1,Spearman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6027,1800000; },{},{}
-12174,SpearMercenary_Scroll2,Spearman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6028,1800000; },{},{}
-12175,SpearMercenary_Scroll3,Spearman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6029,1800000; },{},{}
-12176,SpearMercenary_Scroll4,Spearman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6030,1800000; },{},{}
-12177,SpearMercenary_Scroll5,Spearman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6031,1800000; },{},{}
-12178,SpearMercenary_Scroll6,Spearman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6032,1800000; },{},{}
-12179,SpearMercenary_Scroll7,Spearman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6033,1800000; },{},{}
-12180,SpearMercenary_Scroll8,Spearman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6034,1800000; },{},{}
-12181,SpearMercenary_Scroll9,Spearman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6035,1800000; },{},{}
-12182,SpearMercenary_Scroll10,Spearman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6036,1800000; },{},{}
-12183,Holy_Arrow_Quiver,Holy Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1772,500; },{},{}
-12184,Mercenary_Red_Potion,Mercenary Red Potion,2,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_heal 1000,0; },{},{}
-12185,Mercenary_Blue_Potion,Mercenary Blue Potion,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_heal 0,100; },{},{}
-12186,Red_Box,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_RedBox,1); },{},{}
-12187,Green_Box,Old Green Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GreenBox,1); },{},{}
-12188,Magical_Moon_Cake,Grace Moon Cake,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-12189,Red_Box_,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_RedBox_2,1); },{},{}
-12190,Moon_Cake,Moon Cake,2,2,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{}
-12191,Special_Moon_Cake,Special Moon Cake,2,2,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25; },{},{}
-12192,Pumpkin_Pie,Pumpkin Pie,0,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-12193,Brezel,Pretzel,2,20,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-12194,Hometown_Gift,Hometown Gift,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); },{},{}
-12195,Plain_Rice_Cake,Plain Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{}
-12196,Hearty_Rice_Cake,Hearty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,0; },{},{}
-12197,Salty_Rice_Cake,Salty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-12198,Lucky_Rice_Cake,Lucky Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,1200000,21; },{},{}
-12199,Rice_Scroll,Scroll of Magic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12200,Event_Cake,X-mas Cake,11,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; itemskill "PR_MAGNIFICAT",3; },{},{}
-12201,Red_Box_C,Commonplace Red Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//===================================================================
-// Cash Shop Usable Items
-//===================================================================
-12202,Str_Dish10_,Steamed Tongue,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; },{},{}
-12203,Agi_Dish10_,Steamed Scorpion,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; },{},{}
-12204,Int_Dish10_,Dragon Breath Cocktail,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; },{},{}
-12205,Dex_Dish10_,Hwergelmir's Tonic,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; },{},{}
-12206,Luk_Dish10_,Cooked Nine Tail's Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; },{},{}
-12207,Vit_Dish10_,Stew Of Immortality,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; },{},{}
-12208,Battle_Manual,Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{}
-12209,Insurance,Life Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{}
-12210,Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{}
-12211,Kafra_Card,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashStore"; },{},{}
-12212,Giant_Fly_Wing,Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashPartyCall"; },{},{}
-12213,Neuralizer,Neuralizer,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{}
-12214,Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{}
-12215,Blessing_10_Scroll,LV10 Blessing Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{}
-12216,Inc_Agi_10_Scroll,LV10 Agil Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } },{},{}
-12217,Aspersio_5_Scroll,LV5 Aspersio Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } },{},{}
-12218,Assumptio_5_Scroll,LV5 Assumptio Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; },{},{}
-12219,Wind_Walk_10_Scroll,LV10 Wind Walker Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; },{},{}
-12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@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; } },{},{}
-12221,Megaphone_,Megaphone,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; },{},{}
-12225,Sweet_Candy_Striper,Sweet Candy Cane,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1245; },{},{}
-12226,Examination1,Examination 1,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12227,Examination2,Examination 2,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12228,Examination3,Examination 3,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12229,Examination4,Examination 4,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12230,Examination5,Examination 5,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12231,Examination6,Examination 6,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12232,Gingerbread,Ginger Bread,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; },{},{}
-12233,Kvass,Kvass,0,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{}
-12234,Cacao99,Fierce Cacao 99%,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,0; },{},{}
-12235,Strawberry_Choco,Chocolate Strawberry,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{}
-12236,Choco_Tart,Chocolate Tart,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; itemskill "AL_ANGELUS",5; },{},{}
-12237,Choco_Lump,Junky Chocolate,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0; },{},{}
-12238,New_Year_Rice_Cake_1,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{}
-12239,New_Year_Rice_Cake_2,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{}
-12240,Old_Yellow_Box,Old Yellow Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_YellowBox,1); },{},{}
-12241,M_Center_Potion,Mercenary Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION0,1800000,0; },{},{}
-12242,M_Awakening_Potion,Mercenary Awakening Potion,2,1500,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION1,1800000,0; },{},{}
-12243,M_Berserk_Potion,Mercenary Berserk Potion,2,3000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION2,1800000,0; },{},{}
-12244,Old_Gift_Box,Old Gift Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_OldGiftBox,1); },{},{}
-12245,Green_Ale_US,Green Ale,0,5000,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{}
-12246,Magic_Card_Album,Mystical Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_MagicCardAlbum,1); },{},{}
-12247,Halohalo,Halo-Halo,2,2,,100,,,,,0xFFFFFFFF,63,2,,,20,,,{ sc_start SC_INCALLSTATUS,600000,3; },{},{}
-12248,Masquerade_Ball_Box,Fancy Ball Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Masquerade,1); },{},{}
-12249,Payroll_Of_Kafra_,Payment Statement for Kafra Employee,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12250,Str_Dish10_M,Steamed Tongue,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,3600000,10; percentheal 20,20; },{},{}
-12251,Agi_Dish10_M,Steamed Desert Scorpions,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; },{},{}
-12252,Int_Dish10_M,Dragon Breath Cocktail,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,3600000,10; percentheal 10,20; },{},{}
-12253,Dex_Dish10_M,Hwergelmir's Tonic,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; },{},{}
-12254,Luk_Dish10_M,Cooked Nine Tail,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; },{},{}
-12255,Vit_Dish10_M,Immortal Stew,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,3600000,10; percentheal 25,0; },{},{}
-12256,PRO_Gift_Box,PRO Gift Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12257,Cold_Medicine,Cold Medicine,0,20,,100,,,,,0xFFFFFFFF,63,2,,,50,,,{ percentheal 25,25; },{},{}
-12258,Bombring_Box,Bomb Poring Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } },{},{}
-12259,Miracle_Medicine,Miracle Tonic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getexp2(3000000,1500000); },{},{}
-12260,Cool_Summer_Outfit,Cool Summer Outfit,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SUMMER,600000,0; },{},{}
-12261,Secret_Medicine,Leap of Fantasy,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getexp2(2000000,1000000); },{},{}
-12262,Inspector_Certificate_,Authoritative Badge,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,540000,25; },{},{}
-12263,Comp_Battle_Manual,Field Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,200; },{},{}
-12264,Comp_Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{}
-12265,Comp_Insurance,Life Insurrance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{}
-12266,Sesame_Pastry_,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{}
-12267,Honey_Pastry_,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{}
-12268,Rainbow_Cake_,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,120000,10; },{},{}
-12269,Tasty_Colonel,Tasty Pink Ration,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,600000,15; },{},{}
-12270,Tasty_Major,Tasty White Ration,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,600000,15; },{},{}
-12271,Mre_A,Military Ration A,0,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; },{},{}
-12272,Mre_B,Military Ration B,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,600000,33; },{},{}
-12273,Mre_C,Military Ration C,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,600000,33; },{},{}
-12274,Gold_Pill_1,Daehwandan,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bMaxHPrate,5; bonus bHPrecovRate,10; }",3600; percentheal 10,0; },{},{}
-12275,Gold_Pill_2,Taecheongdan,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bMaxSPrate,5; bonus bSPrecovRate,10; }",3600; percentheal 0,10; },{},{}
-12276,Mimic_Scroll,Mimic Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2058,1800000; },{},{}
-12277,Disguise_Scroll,Disguise Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2059,1800000; },{},{}
-12278,Alice_Scroll,Alice Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2060,1800000; },{},{}
-12279,Undead_Element_Scroll,Undead Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; },{},{}
-12280,Holy_Element_Scroll,Holy Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; },{},{}
-12281,Tresure_Box_WoE,Event Treasure Box,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tresure_Box_WoE_); },{},{}
-12282,Internet_Cafe1,Internet Cafe1,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; },{},{}
-12283,Internet_Cafe2,Internet Cafe2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12284,Internet_Cafe3,Internet Cafe3,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; },{},{}
-12285,Internet_Cafe4,Internet Cafe4,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12286,Masquerade_Ball_Box2,Masquerade Ball Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Masquerade_2,1); },{},{}
-12287,Love_Angel,Love Angel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 1; },{},{ setfont 0; }
-12288,Squirrel,Squirrel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 2; },{},{ setfont 0; }
-12289,Gogo,Gogo Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 3; },{},{ setfont 0; }
-12290,Mysterious_Can,Mysterious Can Magic Powder,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; },{},{}
-12291,Mysterious_PET_Bottle,Mysterious PET Bottle,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; },{},{}
-12292,Unripe_Fruit,Unripe Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,0; },{},{}
-12293,Dried_Yggdrasilberry,Dried Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{}
-12294,PC_Bang_Coin_Box1,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2740,1; },{},{}
-12295,PC_Bang_Coin_Box2,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2739,1; },{},{}
-12296,PC_Bang_Coin_Box3,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2738,1; },{},{}
-12297,PC_Bang_Coin_Box4,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2738,2; },{},{}
-12298,SP_Potion,SP Consumption Reduction Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPCOST_RATE,3600000,15; },{},{}
-12299,Mega_Resist_Potion,Mega Resist Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_COMMONSC_RESIST,3600000,10; },{},{}
-12300,Wild_Rose_Scroll,Wild Rose Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1965,1800000; },{},{}
-12301,Doppelganger_Scroll,Doppelganger Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1966,1800000; },{},{}
-12302,Ygnizem_Scroll,Egnigem Cenia Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1967,1800000; },{},{}
-12303,Water_Of_Blessing,Blessing Of Water,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12304,Picture_Diary,Diary Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 4; },{},{ setfont 0; }
-12305,Mini_Heart,Mini Heart Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 5; },{},{ setfont 0; }
-12306,Newcomer,Freshman Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 6; },{},{ setfont 0; }
-12307,Kid,Kid Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 7; },{},{ setfont 0; }
-12308,Magic_Castle,Magic Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 8; },{},{ setfont 0; }
-12309,Bulging_Head,JJangu Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 9; },{},{ setfont 0; }
-12310,Spray_Of_Flowers,Spray Of Flowers,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,5; },{},{}
-12311,Large_Spray_Of_Flowers,Huge Spray Of Flowers,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_PARTYFLEE",5; },{},{}
-12312,Thick_Manual50,Thick Battle Manual,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,3600000,50; },{},{}
-12313,Protection_Of_Angel,Guardian Angel,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* itemskill "ALL_ANGEL_PROTECT",1; */ },{},{}
-12314,Noive_Box,Adventurer Returns Support Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Noive_Box); },{},{}
-12315,Goddess_Bless,Goddess Of Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12316,Angel_Bless,Angel Of Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12317,Powder_Snow,Snow Powder,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12318,Little_Heart,Small Hearts,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12319,Strawberry_Cake,Rune Strawberry Cake,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; },{},{}
-12320,Pineapple_Juice,Schwarzwald Pine Jubilee,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; },{},{}
-12321,Spicy_Sandwich,Arunafeltz Desert Sandwich,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCCRI,600000,7; },{},{}
-12322,Chocolate_Pie,Chocolate Pie,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-12323,N_Fly_Wing,Novice Fly Wing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-12324,N_Butterfly_Wing,Novice Butterfly Wing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{}
-12325,N_Magnifier,Novice Magnifier,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{}
-12326,J_Firecracker,Large Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12327,Charm_Of_Luck,Charm Of Luck,2,1000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{}
-12328,Charm_Of_Happiness,Charm Of Happiness,2,1800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{}
-12329,Recall_MaleGM,Summon Male GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2000,1800000; },{},{}
-12330,Recall_FemaleGM,Summon Female GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2001,1800000; },{},{}
-12331,Ginseng,Ginseng,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 6,0; },{},{}
-12332,Fruit_Juice,Fruit Juice,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,6; },{},{}
-12333,Ansila,Ancilla,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,15; sc_start SC_ANCILLA,60000,1; },{},{}
-12334,Cherish_Box,Treasure Edition Helm Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Cherish_Box,1); },{},{}
-12335,Yummy_Skewered_Dish,Grilled Delicious Skewer,0,1000,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 60,60; },{},{}
-12336,Baked_Mushroom,Grilled Mushroom,0,500,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; },{},{}
-12337,Grilled_Sausage,Grilled Sausages,0,300,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,20; },{},{}
-12338,Grilled_Corn,Grilled Corn,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; },{},{}
-12339,Cherish_Box_Ori,Treasure Edition Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Cherish_Box_Ori,1); },{},{}
-12340,Mysterious_Rice_Powder,Chewy Rice Powder,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1815; },{},{}
-12341,Special_Alloy_Trap_Box,Special Alloy Trap Box,2,30000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7940,100; },{},{}
-12342,Manuk's_Opportunity,Manuk's Opportunity,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; },{},{}
-12343,Manuk's_Courage,Manuk's Courage,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; },{},{}
-12344,Pinguicula's_fruit_Jam,Pinguicula's Fruit Jam,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; },{},{}
-12345,Luciola's_Honey_Jam,Luciola's Honey Jam,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; },{},{}
-12346,Unripe_Acorn,Unripe Acorn,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ heal -100,0; },{},{}
-12347,Acorn_Jelly,Acorn Jelly,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_REVERSEORCISH",1; },{},{}
-12348,Manuk's_Faith,Manuk's Faith,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; },{},{}
-12349,Cornus'_Tears,Cornus' Tears,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; },{},{}
-12350,Angeling_Potion,Angeling Potion,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; },{},{}
-12351,Shout_Megaphone,Scream Megaphone,11,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_LOUD",1; },{},{}
-12352,Dun_Tele_Scroll3,Dungeon Teleport Scroll 3,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",3; },{},{}
-12353,Tiny_Waterbottle,Small Bottle,2,800,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_WATERWEAPON,90000,1; },{},{}
-12354,Buche_De_Noel,Buche De Noel,2,2,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL; },{},{}
-12355,Xmas_Gift,Xmas Gift,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Xmas_Gift,1); },{},{}
-12356,Louise_Costume_Box,Louise Costume Box,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Louise_Costume_Box,1); },{},{}
-12357,Shiny_Wing_Gown,Shiny Wing Gown,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1630; },{},{}
-12358,Fan_Of_Wind,Fan Of Wind,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1513; },{},{}
-12359,Very_Soft_Plant,Very Soft Plant,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1586; },{},{}
-12360,Very_Red_Juice,Very Red Juice,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1505; },{},{}
-12361,Delicious_Shaved_Ice,Delicious Shaved Ice,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1143; },{},{}
-12362,Kuloren,Kuloren,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1401; },{},{}
-12363,Fit_Pipe,Fit Pipe,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1179; },{},{}
-12364,Staff_Of_Leader,Staff Of Leader,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1299; },{},{}
-12365,Charming_Lotus,Charming Lotus,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1416; },{},{}
-12366,Gril_Doll,Girl's Doll,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1404; },{},{}
-12367,Luxury_Whisky_Bottle,Luxury Whisky Bottle,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1504; },{},{}
-12368,Splendid_Mirror,Splendid Mirror,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1148; },{},{}
-12369,Oilpalm_Coconut,Oilpalm Coconut,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1495; },{},{}
-12370,Gril's_Naivety,Girl's Naivety,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1374; },{},{}
-12371,Magical_Lithography,Magical Lithography,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1040; },{},{}
-12372,Hell_Contract,Hell Contract,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1379; },{},{}
-12373,Boy's_Naivety,Boy's Pure Heart,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1370; },{},{}
-12374,Flaming_Ice,Ice Fireworks,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1837; },{},{}
-12375,Acaraje,Akaraje,2,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; },{},{}
-12376,Mysterious_Can2,Mysterious Can2,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 3,0; itemskill "PR_GLORIA",2; },{},{}
-12377,Mysterious_PET_Bottle2,Mysterious PET Bottle2,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,3; itemskill "PR_MAGNIFICAT",1; },{},{}
-12378,2009_Rice_Cake_Soup,Rice Cake Soup,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-12379,Pope's_Cookie,Pope Cookie,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12380,Desert_Wolf_Babe_Scroll,Job Change Flute,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2034,1800000; },{},{}
-12381,ValkyrieA_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } },{},{}
-12382,ValkyrieB_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } },{},{}
-12383,Vulcan_Bullet_Magazine,Vulcan Bullet Magazine,2,11000,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6145,1000; },{},{}
-12384,Rainbow_Ruby_Water,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } },{},{}
-12385,Rainbow_Ruby_Fire,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } },{},{}
-12386,Rainbow_Ruby_Wind,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } },{},{}
-12387,Rainbow_Ruby_Earth,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } },{},{}
-12388,Runstone_Crush,Rhydo Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } },{},{}
-12389,Runstone_Storm,Pertz Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } },{},{}
-12390,Runstone_Millennium,Verkana Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } },{},{}
-12391,Lucky_Egg_C,Lucky Egg C,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C); },{},{}
-12392,RepairA,Repair A,2,220,,100,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(200,300),0; } },{},{}
-12393,RepairB,Repair B,2,500,,140,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(300,400),0; } },{},{}
-12394,RepairC,Repair C,2,1100,,180,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(400,500),0; } },{},{}
-12395,Tantanmen,Tantan Noodle,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1519; },{},{}
-12396,Fools_Day_Box,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@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; },{},{}
-12397,Fools_Day_Box2,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@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; },{},{}
-12398,PCBang_Gift_Box,PCRoom Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12399,Castle_Treasure_Box,Castle Treasure Box,2,20,,1000,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += 1000000; },{},{}
-12400,Water_Of_Blessing_,Water Of Blessing,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12401,Rune_Kn_Test_Int,Rune Kn Test Int,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,300000,40; },{},{}
-12402,29Fruit,29Fruit,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-12403,Lucky_Egg_C2,Lucky Egg C2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C2); },{},{}
-12404,Acti_Potion,Acti Potion,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddDamageClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE; },{},{}
-12405,Underripe_Yggseed,Underripe Yggseed,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; },{},{}
-12406,Psychic_ArmorS,Psychic ArmorS,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0; },{},{}
-12407,PCBang_Coupon_Box,PC Cafe Coupon Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12408,Leaf_Cat_Ball,Hydra Ball,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2081; },{},{}
-12409,Pork_Belly_H,1st Class Pork Belly,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12410,Spareribs_H,Thick Pork Belly,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12411,HE_Battle_Manual,HE Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,900000,200; },{},{}
-12412,HE_Bubble_Gum,HE Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,900000,300; },{},{}
-12413,PCBang_Coupon_Box2,PC Cafe Coupon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12414,Guarana_Candy,Guarana Candy,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; },{},{}
-12415,Siege_Teleport_Scroll2,Siege Teleport Scroll Silver,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12416,Lucky_Egg_C3,Lucky Egg C3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C3); },{},{}
-12417,Boost500,Boost500,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOOST500,500000,10; },{},{}
-12418,Full_SwingK,Full SwingK,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FULL_SWING_K,500000,50; },{},{}
-12419,Mana_Plus,Mana Plus,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MANA_PLUS,500000,50; },{},{}
-12420,Stamina_Up_M,Stamina Up M,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MUSTLE_M,500000,5; },{},{}
-12421,Digestive_F,Falmons F,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{}
-12422,HP_Increase_PotionS,HP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; },{},{}
-12423,HP_Increase_PotionM,HP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; },{},{}
-12424,HP_Increase_PotionL,HP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; },{},{}
-12425,SP_Increase_PotionS,SP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; },{},{}
-12426,SP_Increase_PotionM,SP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; },{},{}
-12427,SP_Increase_PotionL,SP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; },{},{}
-12428,Enrich_White_PotionZ,Concentrated White Potion Z,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; },{},{}
-12429,Savage_BBQ,Savage Full Roast,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{}
-12430,Wug_Blood_Cocktail,Cocktail Warg Blood,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{}
-12431,Minor_Brisket,Minor Stew,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MINOR_BBQ,300000,20; },{},{}
-12432,Siroma_Icetea,Siroma Iced Tea,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{}
-12433,Drocera_Herb_Stew,Drosera Herb Salad,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{}
-12434,Petti_Tail_Noodle,Petite Tail Noodles,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{}
-12435,Black_Thing,Black Mass,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{}
-12436,Vitata500,Vitata 500,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; },{},{}
-12437,Enrich_Celermine_Juice,Concentrated Ceromain Soup,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{}
-12438,F_Giant_Fly_Wing,F Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12439,F_Battle_Manual,F Old Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12440,F_Insurance,F Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12441,F_Bubble_Gum,F Old Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12442,F_Kafra_Card,F Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12443,F_Neuralizer,F Neuralizer,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12444,F_Dun_Tele_Scroll1,WoE Telport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{}
-12445,F_Str_Dish10_,F Str Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1800000,10; },{},{}
-12446,F_Agi_Dish10_,F Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{}
-12447,F_Int_Dish10_,F Int Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1800000,10; },{},{}
-12448,F_Dex_Dish10_,F Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1800000,10; },{},{}
-12449,F_Luk_Dish10_,F Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,10; },{},{}
-12450,F_Vit_Dish10_,F Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1800000,10; },{},{}
-12451,F_WOB_Rune,F WOB Rune,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12452,F_WOB_Schwaltz,F WOB Schwarz,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12453,F_WOB_Rachel,F WOB Rachel,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12454,F_WOB_Local,F WOB Local,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12456,F_Greed_Scroll,F Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12457,F_Glass_Of_Illusion,F Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12458,F_Abrasive,F Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12459,F_Med_Life_Potion,F Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; },{},{}
-12460,F_Small_Life_Potion,F Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; },{},{}
-12461,F_Regeneration_Potion,F Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12462,F_B_Mdef_Potion,F B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF; },{},{}
-12463,F_S_Mdef_Potion,F S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF; },{},{}
-12464,F_B_Def_Potion,F B Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF; },{},{}
-12465,F_S_Def_Potion,F S Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF; },{},{}
-12466,F_Blessing_10_Scroll,F Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12467,F_Inc_Agi_10_Scroll,F Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12468,F_Aspersio_5_Scroll,F Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12470,F_Wind_Walk_10_Scroll,F Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12471,F_Adrenaline_Scroll,F Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12472,F_Convex_Mirror,F Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12473,RWC_Parti_Box,RWC Parti Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Parti_Box); },{},{}
-12474,RWC_Final_Comp_Box,RWC Final Comp Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Final_Comp_Box); },{},{}
-12475,Cure_Free,Cure Free,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12476,PCBang_Coupon_Box3,PCBang Coupon Box3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12477,Gift_Bundle,Gift Bundle,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1; },{},{}
-12478,Chance_Box,Chance Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12479,Caracas_Ring_Box,Caracas Ring Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000; },{},{}
-12480,Attend_3Day_Box,Attend 3Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12481,Attend_7Day_Box,Attend 7Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12482,Attend_10Day_Box,Attend 10Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12483,Attend_15Day_Box,Attend 15Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12484,Attend_20Day_Box,Attend 20Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12485,Attend_25Day_Box,Attend 25Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12486,GoldPC_First_Box,GoldPC First Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12487,PC_4Leaf_Clover_Box,PC 4Leaf Clover Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12488,Ticket_Gift_Box,Ticket Gift Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12489,Ticket_Gift_Box2,Ticket Gift Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12490,Vivid_Notation,Christmas Music Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ playbgm rand(53,58)+".mp3"; },{},{}
-12491,Curious_Snowball,Curious Snowball,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_Snowball"; },{},{}
-12492,Crumpled_Paper,Crumpled Paper,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Crumpled_Paper,1); },{},{}
-12493,Lucky_Egg_C4,Lucky Egg C4,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C4); },{},{}
-12494,E_Giant_Fly_Wing,E Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12495,E_Battle_Manual,E Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12496,E_Insurance,E Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12497,E_Bubble_Gum,E Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,100; },{},{}
-12498,E_Kafra_Card,E Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12499,E_Neuralizer,E Neuralizer,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12500,E_Dun_Tele_Scroll1,E Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12501,E_Str_Dish10_,Steamed Tongue,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1800000,10; },{},{}
-12502,E_Agi_Dish10_,Steamed Desert Scorpions,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{}
-12503,E_Int_Dish10_,Dragon Breath Cocktail,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1800000,10; },{},{}
-12504,E_Dex_Dish10_,Hwergelmir's Tonic,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1800000,10; },{},{}
-12505,E_Luk_Dish10_,Cooked Nine Tail,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,10; },{},{}
-12506,E_Vit_Dish10_,Immortal Stew,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1800000,10; },{},{}
-12507,E_WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",1; },{},{}
-12508,E_WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",2; },{},{}
-12509,E_WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",3; },{},{}
-12510,E_WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",5; },{},{}
-12511,E_Siege_Teleport_Scroll,E Siege Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12512,E_Greed_Scroll,E Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12513,E_Glass_Of_Illusion,E Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12514,E_Abrasive,E Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{}
-12515,E_Med_Life_Potion,E Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; },{},{}
-12516,E_Small_Life_Potion,E Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; },{},{}
-12517,E_Regeneration_Potion,E Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12518,E_B_Mdef_Potion,E B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12519,E_S_Mdef_Potion,E S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12520,E_B_Def_Potion,E B Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12521,E_S_Def_Potion,E S Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12522,E_Blessing_10_Scroll,Blessing Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_BLESSING",10; },{},{}
-12523,E_Inc_Agi_10_Scroll,Increase Agility Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_INCAGI",10; },{},{}
-12524,E_Aspersio_5_Scroll,Aspersio Scroll Lv 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{}
-12525,E_Assumptio_5_Scroll,Assumptio Scroll Lv 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "HP_ASSUMPTIO",5; },{},{}
-12526,E_Wind_Walk_10_Scroll,Wind Walk Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SN_WINDWALK",10; },{},{}
-12527,E_Adrenaline_Scroll,Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_ADRENALINE",5; },{},{}
-12528,E_Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{}
-12529,White_Slim_Potion_Box,White Slim Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 547,200; },{},{}
-12530,Mastela_Fruit_Box,Mastela Fruit Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 522,200; },{},{}
-12531,White_Potion_Box,White Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 504,100; },{},{}
-12532,Royal_Jelly_Box2,Royal Jelly Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,100; },{},{}
-12533,Blue_Herb_Box2,Blue Herb Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,100; },{},{}
-12534,Yggdrasil_Seed_Box,Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 608,30; },{},{}
-12535,Iggdrasilberry_Box,Iggdrasilberry Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,15; },{},{}
-12536,NY_Rice_Cake_Soup,NY Rice Cake Soup,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12537,Solo_Gift_Basket,Solo Gift Basket,2,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10; },{},{}
-12538,Couple_Event_Basket,Couple Event Basket,2,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10; },{},{}
-12539,Splendid_Box,Splendid Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splendid_Box); },{},{}
-12540,GM_Warp_Box,GM Warp Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_GM_Warp_Box); },{},{}
-12541,Fortune_Cookie1,Fortune Cookie1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Fortune_Cookie1,1); },{},{}
-12542,Fortune_Cookie2,Fortune Cookie2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fortune_Cookie2); },{},{}
-12543,Fortune_Cookie3,Fortune Cookie3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fortune_Cookie3); },{},{}
-12544,Mystic_Tree_Branch,Mystic Tree Branch,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12545,Lucky_Egg_C5,Lucky Egg C5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C5); },{},{}
-12546,Suspicious_Dish,Suspicious Dish,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_POISON,50000,0; },{},{}
-12547,Chalcenodny_Box,Chalcenodny Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12548,Buy_Market_Permit2,Shabby Purchase Street Stall License,2,500,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ buyingstore 2; },{},{}
-12549,White_Slim_Pot_Box2,White Slim Pot Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 547,100; },{},{}
-12550,Poison_Bottle_Box2,Deadly Poison Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,30; },{},{}
-12551,MVP_Tele_Scroll,MVP Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12552,Quest_Tele_Scroll,Quest Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12553,Brysinggamen_Piece_Box,Brysinggamen Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12554,Asprika_Piece_Box,Asprika Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12555,Brynhild_Piece_Box,Brynhild Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12556,Sleipnir_Piece_Box,Sleipnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12557,Mjolnir_Piece_Box,Mjolnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12558,Magingiorde_Piece_Box,Magingiorde Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12559,Tenkaippin_Strong,Tenkaippin Strong,2,650,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12560,Tenkaippin_Clean,Tenkaippin Clean,2,650,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12561,Mysterious_Seed,Mysterious Seed,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "bif_fild01",32,382; },{},{}
-12562,Bubble_Gum_Plus,Bubble Gum Plus,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12563,BM75,BM75,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12564,3D_Glasses_Box,3D Glasses Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12565,Cheer_Scarf_Box,Cheer Scarf Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12566,Cheer_Scarf2_Box,Cheer Scarf2 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12567,Cheer_Scarf3_Box,Cheer Scarf3 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12568,Cheer_Scarf4_Box,Cheer Scarf4 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12569,Cheer_Scarf6_Box,Cheer Scarf6 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12570,Cheer_Scarf8_Box,Cheer Scarf8 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12571,Cheer_Scarf10_Box,Cheer Scarf10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12572,Cheer_Scarf10_Box2,Cheer Scarf10 Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12573,Fruit_Basket,Fruit Basket,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); },{},{}
-12574,Mora_Berry,Mora Berry,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-12575,Arrow_Of_Elf_Cntr,Arrow Of Elf Cntr,2,500,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1773,500; },{},{}
-12576,Hunting_Arrow_Cntr,Hunting Arrow Cntr,2,500,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1774,500; },{},{}
-12577,Lucky_Egg_C6,Lucky Egg C6,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C6); },{},{}
-12578,Rapid_Life_Water,Rapid Life Water,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600; },{},{}
-12579,Ring_Of_Valkyrie_Box,Ring Of Valkyrie Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12580,Vending_Search_Scroll,Universal Catalog Silver,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,0; },{},{}
-12581,Vending_Search_Scroll2,Universal Catalog Gold,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,1; },{},{}
-12582,Siege_Supply_Box,WoE Supply Box,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12583,PR_Team_Box,Public Relations box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6397,1; },{},{}
-12584,Develop_Team_box,Development Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6398,1; },{},{}
-12585,Marketing_Team_Box,Marketing Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6399,1; },{},{}
-12586,Operating_Team_Box,Operation Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6400,1; },{},{}
-12587,Summer_Night_box,A Summer Night's Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{}
-12588,Summer_Night_box2,A Summer Night's Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12103,1; },{},{}
-12589,Summer_Night_box3,A Summer Night's Box3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12106,1; },{},{}
-12591,Uni_Catalog_Bz,Universal Catalog Bronze,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,1; },{},{}
-12592,Cyclops_Box1,Cyclops Box1,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12593,Cyclops_Box2,Cyclops Box2,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12594,Cyclops_Box3,Cyclops Box3,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12595,Lucky_Egg_C7,Lucky Egg C7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C7); },{},{}
-12596,Magic_Candy,Magic Candy,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY; },{},{}
-12597,Opor_Ayam,Opor Ayam,11,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12598,Dendeng_Balado,Dendeng Balado,11,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12599,Kurma,Kurma,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12600,Treasure_Box_Scroll,Treasure Chest Summoned,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12601,Cold_Watermelon_Juice,Fresh Watermelon Juice,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{}
-12602,Special_Box1,Special Box I,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12603,Special_Box2,Special Box II,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12604,Special_Box3,Special Box III,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12605,Special_Box4,Special Box IV,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12606,Special_Box5,Special Box V,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12607,Lolli_Pop_Box,Delicious Lollipop Box,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12608,Splendid_Box2,Splendid Box2,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12609,Old_Ore_Box,Old Ore Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Old_Ore_Box); },{},{}
-12610,Mysterious_Egg,Mysterious Egg,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1; },{},{}
-12612,Old_Coin_Pocket,Old Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Old_Coin_Pocket); },{},{}
-12613,High_Coin_Pocket,Improved Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_High_Coin_Pocket); },{},{}
-12614,Mid_Coin_Pocket,Intermediate Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mid_Coin_Pocket); },{},{}
-12615,Low_Coin_Pocket,Minor Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Low_Coin_Pocket); },{},{}
-12616,Sgrade_Pocket,S Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sgrade_Pocket); },{},{}
-12617,Agrade_Pocket,A Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Agrade_Pocket); },{},{}
-12618,Bgrade_Pocket,B Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bgrade_Pocket); },{},{}
-12619,Cgrade_Pocket,C Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Cgrade_Pocket); },{},{}
-12620,Dgrade_Pocket,D Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Dgrade_Pocket); },{},{}
-12621,Egrade_Pocket,E Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Egrade_Pocket); },{},{}
-12622,Boarding_Halter,Reins Of Mount,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setmounting(); },{},{ if (ismounting()) setmounting(); }
-12623,High_Weapon_Box,Advanced Weapons Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Advanced_Weapons_Box,1); },{},{}
-12624,Delicious_Jelly,Delicious Jelly,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 3,3; },{},{}
-12625,Sapa_Feat_Cert_Pack,Sapa Feat Cert Pack,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12626,Wander_Man_Scroll,Wander Man Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2213,1800000; },{},{}
-12627,Wicked_Nymph_Scroll,Wicked Nymph Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2214,1800000; },{},{}
-12628,Kasa_Scroll,Kasa Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2215,1800000; },{},{}
-12629,Salamander_Scroll,Salamander Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2216,1800000; },{},{}
-12630,Teddy_Bear_Scroll,Teddy Bear Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2217,1800000; },{},{}
-12631,Macro_Stone_A,Macro Stone A,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12632,Macro_Stone_B,Macro Stone B,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12633,Malang_Cat_Can,Malangdo Cat Can,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP; },{},{}
-12634,Macro_Stone_A1,Macro Stone A1,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12635,Macro_Stone_A2,Macro Stone A2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12636,Malang_Sp_Can,Malangdo Canned Specialties,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "malangdo",140,114; },{},{}
-12637,Gong_Bug_Pocket,Sow Bug Pocket,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13208,200; },{},{}
-12638,Dried_Squid_Box,Dried Squid Box,2,20,,2000,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13292,200; },{},{}
-12639,Flying_Fish_Box,Flying Fish Box,2,20,,2000,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13293,200; },{},{}
-12640,Starfish_Box,Starfish Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13291,200; },{},{}
-12641,Lucky_Egg_C8,Lucky Egg C8,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C8); },{},{}
-12642,Fruit_Of_Mastela_Box2,Fruit Of Mastela 100 Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 522,100; },{},{}
-12643,E_Coin_Pack50,E Coin Pack50,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6422,50; },{},{}
-12644,PCBang_Coupon_Box4,PCBang Coupon Box4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12645,J_Aspersio_5_Scroll_C,J Aspersio 5 Scroll C,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPERSIO,180000,1; },{},{}
-12646,Takoyaki,Fried Octopus Legs,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20; },{},{}
-12647,Ink_Ball,Sea Ink,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ink_Ball); },{},{}
-12648,Special_Potion_Set,Comprehensive Set Of Potions,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10; },{},{}
-12649,Lv70_Imperial_Gift,Level 70 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5; },{},{}
-12650,Lv90_Imperial_Gift,Level 90 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12263,5; },{},{}
-12651,Lv110_Imperial_Gift,Level 110 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1; },{},{}
-12652,Lv130_Imperial_Gift,Level 130 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12613,10; },{},{}
-12653,Lv150_Imperial_Gift,Level 150 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1; },{},{}
-12654,Lucky_Egg_C9,Lucky Egg C9,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C9); },{},{}
-12655,Brain_Powder,Brain Powder,2,2000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12656,Magical_Powder,Magical Powder,2,3000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12657,Madness_Powder,Madness Powder,2,4000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12658,Trans_Scroll_Devi,Transformation Scroll(Deviruchi),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!"; },{},{}
-12659,Trans_Scroll_Ray_Arch,Transformation Scroll(Raydric),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!"; },{},{}
-12660,Trans_Scroll_Mavka,Transformation Scroll(Mavka),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!"; },{},{}
-12661,Trans_Scroll_Marduk,Transformation Scroll(Marduk),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!"; },{},{}
-12662,Trans_Scroll_Banshee,Transformation Scroll(Banshee),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!"; },{},{}
-12663,Trans_Scroll_Poring,Transformation Scroll(Poring),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!"; },{},{}
-12664,Trans_Scroll_Golem,Transformation Scroll(Golem),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!"; },{},{}
-12665,Grovel_Buff,Grovel Buff,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12666,Thai_Perfume_MATK,Thai Perfume MATK,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK; },{},{}
-12667,Thai_Perfume_ATK,Thai Perfume ATK,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK; },{},{}
-12668,Thai_Perfume_ASPD,Thai Perfume ASPD,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD; },{},{}
-12669,Thai_Perfume_CAST,Thai Perfume CAST,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST; },{},{}
-12670,Beast_Powder,Beast Powder,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12671,99lv_Battle_Manual,99lv Battle Manual,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12672,Start_New_Box,Start New Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2; },{},{}
-12673,Lucky_Egg_C10,Lucky Egg C10,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C10); },{},{}
-12674,God_Material_Box,God Material Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_God_Material_Box); },{},{}
-12675,Sg_Weapon_Supply_Box,WoE Weapon Supply Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sg_Weapon_Supply_Box); },{},{}
-12676,Sg_Violet_Potion_Box,Siege Violet Potion Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11547,50; },{},{}
-12677,Siege_Arrow_Quiver_S,Siege Arrow Quiver S,2,2,,100,,,,,0xFFFFFFFF,63,2,,,130,,,{ getitem 1775,200; },{},{}
-12678,Siege_Arrow_Quiver_A,Siege Arrow Quiver A,2,2,,100,,,,,0xFFFFFFFF,63,2,,,95,,,{ getitem 1776,200; },{},{}
-12679,Sg_White_Potion_Box,Siege White Potion Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11548,30; },{},{}
-12680,Sg_Blue_Potion_Box,Siege Blue Potion Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11549,10; },{},{}
-12681,Nestea_Lemon,Nestea Lemon,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12682,Nestea_Blacktea,Nestea Black Tea,2,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12683,Sg_Vi_Potion_Box200,Siege Violet Potion Box (200),2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11547,200; },{},{}
-12684,ASPD_Potion,ASPD Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATTHASTE_CASH,900000,3; },{},{}
-12685,Gryphon_Egg_Scroll,Gryphon Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12686,Str_Dish20,Str Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12687,Int_Dish20,Int Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12688,Vit_Dish20,Vit Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12689,Dex_Dish20,Dex Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12690,Old_C_Album_Helm,Headgear Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Helm,1); },{},{}
-12691,Old_C_Album_Armor,Armor Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Armor,1); },{},{}
-12692,Old_C_Album_Shield,Shield Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Shield,1); },{},{}
-12693,Old_C_Album_Garment,Garment Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Garment,1); },{},{}
-12694,Old_C_Album_Shoes,Shoes Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Shoes,1); },{},{}
-12695,Old_C_Album_Acc,Accessory Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Acc,1); },{},{}
-12696,RWC_Cele_Fire,RWC Celebration Firecracker,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; },{},{}
-12697,RWC_Cele_Fire2,RWC Celebration Firecracker,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; },{},{}
-12698,Old_C_Album_Weapon,Weapon Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Weapon,1); },{},{}
-12699,Tikbalang_Belt,Tikbalang Harness,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2313; },{},{}
-12700,Insideout_Shirt,Inside-out Shirt,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "malaya",242,211; },{},{}
-12701,Old_Blue_Box_F,Old Blue Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12702,Old_Bleu_Box,Old Navy Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1); },{},{}
-12703,Holy_Egg_2,Holy Egg,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Holy_Egg_2,1); },{},{}
-12704,Elixir_Of_Life,Elixir of Life,0,0,,10,,,,,0xFFFFFFFF,63,2,,,85,,,{ percentheal 100,0; },{},{}
-12705,Noble_Nameplate,Noble Nameplate,2,0,,100,,,,,0xFFFFFFFF,63,2,,,90,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{}
-12706,Lucky_Cookie01,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_GLORIA",5; },{},{}
-12707,Lucky_Cookie02,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",1; },{},{}
-12708,Lucky_Cookie03,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_IMPOSITIO",3; },{},{}
-12709,Guyak_Candy,Guyak Candy,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; },{},{}
-12710,Guyak_Pudding,Guyak Pudding,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,300000,50; },{},{}
-12711,Pretzel,Pretzel,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{}
-12712,Green_Beer,Green Beer,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,50; },{},{}
-12713,Monster_Extract,Monster Extract,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12714,Easter_Scroll,Easter Scroll,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Easter_Scroll,1); },{},{}
-12715,Black_Treasure_Box,Black Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12716,Indian_Rice_Cake,Indian Rice Cake,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//===================================================================
-// Guillotine Cross Poisons
-//===================================================================
-12717,Poison_Paralysis,Paralyze,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12718,Poison_Leech,Leech End,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12719,Poison_Oblivion,Oblivion Curse,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12720,Poison_Contamination,Disheart,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12721,Poison_Numb,Toxin,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12722,Poison_Fever,Pyrexia,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12723,Poison_Laughing,Magic Mushroom,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12724,Poison_Fatigue,Venom Bleed,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//===================================================================
-// Rune Knight's Rune Stones
-//===================================================================
-12725,Runstone_Nosiege,Nauthiz Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; },{},{}
-12726,Runstone_Rhydo,Raido Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; },{},{}
-12727,Runstone_Verkana,Berkana Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; },{},{}
-12728,Runstone_Isia,Isa Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; },{},{}
-12729,Runstone_Asir,Othila Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; },{},{}
-12730,Runstone_Urj,Uruz Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; },{},{}
-12731,Runstone_Turisus,Thurisaz Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; },{},{}
-12732,Runstone_Pertz,Wyrd Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; },{},{}
-12733,Runstone_Hagalas,Hagalaz Rune,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; },{},{}
-//===================================================================
-// Rune Knight Rune Ores
-//===================================================================
-12734,Runstone_Quality,Luxurious Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 5; },{},{}
-12735,Runstone_Ancient,Ancient Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 11; },{},{}
-12736,Runstone_Mystic,Mystic Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 14; },{},{}
-12737,Runstone_Ordinary,General Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 2; },{},{}
-12738,Runstone_Rare,Rare Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 8; },{},{}
-//===================================================================
-// More usable items
-//===================================================================
-12739,Snow_Flower,Snow Flowers,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-12740,Inc_Str_Scroll,Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL; },{},{}
-12741,Inc_Int_Scroll,Intellect Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL; },{},{}
-12742,Valentine_Gift_Box1,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7946,1; },{},{}
-12743,Valentine_Gift_Box2,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7947,1; },{},{}
-12744,Chocotate_Box,Chocolate Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 558,1; },{},{}
-12745,Skull_Scroll,Skull Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12746,Destruction_Scroll,Destruction Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12747,Royal_Scroll,Royal Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12748,Immune_Scroll,Immune Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12749,Mystic_Scroll,Mystic Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12750,Battle_Scroll,Battle Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12751,Armor_Scroll,Armor Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12752,Prayer_Scroll,Prayer Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12753,Soul_Scroll,Soul Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12754,New_Year_Bun,Chinese Pastel,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-12755,Traditional_Firecrack,Chinese Fireworks,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ },{},{}
-12756,New_Gift_Envelope,Chinese New Year Envelope,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0); },{},{}
-12757,Loyal_Ring1_Box,Loyal Ring1 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12758,Loyal_Ring2_Box,Loyal Ring2 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12759,Loyal_Ring3_Box,Loyal Ring3 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12760,Bubble_Gum_Green,Bubble Gum Green,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,1200000,10; },{},{}
-12761,Bubble_Gum_Yellow,Bubble Gum Yellow,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,1200000,10; },{},{}
-12762,Bubble_Gum_Orange,Bubble Gum Orange,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCDEX,1200000,10; },{},{}
-12763,Bubble_Gum_Red,Bubble Gum Red,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCAGI,1200000,10; },{},{}
-12764,Fools_Day_Box_Tw,Fools Day Box Tw,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12765,Summer_Knight_Box,Summer Knight Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12766,Reward_Job_BM25,Reward Job BM25,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12767,Passion_FB_Hat_Box,Passion FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600; },{},{}
-12768,Cool_FB_Hat_Box,Cool FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600; },{},{}
-12769,Victory_FB_Hat_Box,Victory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600; },{},{}
-12770,Glory_FB_Hat_Box,Glory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400; },{},{}
-12771,Passion_Hat_Box2,Passion Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600; },{},{}
-12772,Cool_Hat_Box2,Cool Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600; },{},{}
-12773,Victory_Hat_Box2,Victory Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600; },{},{}
-12774,Empty_Potion_Bottle,Empty Potion Bottle,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12775,Ancient_Spirit_Agimat,Greater Agimat of Ancient Spirit,2,20,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200; },{},{}
-12776,Agi_Dish20,Agi Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12777,Luk_Dish20,Luk Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12778,Bapho_Jr_Scroll,Bapho Jr Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2325,1800000; },{},{}
-12779,Galapago_Scroll,Galapago Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2326,1800000; },{},{}
-12780,10M_Zeny_Check,10M Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12781,1M_Zeny_Check,1M Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12782,100T_Zeny_Check,100T Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12783,10000_Zeny_Check,10000 Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12784,1000_Zeny_Check,1000 Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12785,Dragon_Egg_Scroll,Dragon Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12786,Change_Slot_Card,Character Position Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ CharMoves++; },{},{}
-12787,Diabolic_Scroll,Diabolic Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2342,1800000; },{},{}
-12788,No100_Firecracker,No100 Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12789,Juicy_Fruit,Juicy Fruit,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12790,Change_Name_Card,Character Name Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ CharRename++; },{},{}
-12791,Combat_Pill,Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddDamageClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */ },{},{}
-12792,P_Combat_Pill,P Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddDamageClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE; },{},{}
-12793,Combat_Pill_Box10,Combat Pill Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12791,10; },{},{}
-12794,P_Combat_Pill_Box10,P Combat Pill Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12792,10; },{},{}
-12795,2011_RWC_Scroll_Kr,2011 RWC Scroll Kr,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12796,Red_Booster,Red Booster,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW"; },{},{}
-12797,Wish_Maiden_Scroll,Wish Maiden Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2344,1800000; },{},{}
-12798,Zealotus_Scroll,Zealotus Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2345,1800000; },{},{}
-12799,PCBang_Coupon_Box5,PCBang Coupon Box5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12800,Ktullanux_Scroll,Ktullanux Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2346,1800000; },{},{}
-12801,Eddga_Scroll,Eddga Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2347,1800000; },{},{}
-12802,Time_Guardian_Box,Time Guardian Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12803,Beginner_Kit_Box,Beginner Kit Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12804,Cru_Scroll,Cru Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12805,Mystic_Powder,Mystic Powder,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12806,Scaraba_Scroll,Scaraba Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2378,1800000; },{},{}
-12807,Mercenary_Casting_,Mercenary Casting,2,0,,0,,,,,0xFFFFFFFF,63,2,,,20,,,{ getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1; },{},{}
-12808,Mother_Love_Box,Mother Love Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,40,,,{},{},{}
-12809,Level_Up_Box,Level Up Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,120,,,{ getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1; },{},{}
-12810,Event_Gift_Box,Event Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12811,Event_Gift_Box_,Event Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; },{},{}
-12812,Snow_Flip,Snow Flip,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SNOWFLIP",1; },{},{}
-12813,Peony_Mommy,Peony Mamy,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_PEONYMAMY",1; },{},{}
-12814,Slapping_Herb,Slapping Herb,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SADAGUI",1; },{},{}
-12815,Yggdrasil_Dust,Yggdrasil Dust,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SEQUOIADUST",1; },{},{}
-12816,Old_Ore_Box_,Old Ore Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,60,,,{},{},{}
-12817,Old_Card_Album_,Old Card Album,2,0,,0,,,,,0xFFFFFFFF,63,2,,,80,,,{ getrandgroupitem(IG_CardAlbum,1); getitem 12818,1; },{},{}
-12818,High_Weapon_Box_,High Weapon Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,100,,,{ getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1; },{},{}
-12819,Zherlthsh_Tck_Box_,Zherlthsh Tck Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ getitem 6184,1; },{},{}
-12820,Mao_Guai_Scroll,Mao Guai Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2348,1800000; },{},{}
-12821,Loli_Ruri_Scroll,Loli Ruri Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2349,1800000; },{},{}
-12822,Songpyun_Box50,Songpyun Box50,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 663,50; },{},{}
-12823,Sedora_Scroll,Sedora Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2350,1800000; },{},{}
-12824,Chepet_Scroll,Chepet Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2351,1800000; },{},{}
-12826,Wind_Type_Scroll,Wind Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Wind_Type_Scroll); },{},{}
-12827,Water_Type_Scroll,Water Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Water_Type_Scroll); },{},{}
-12828,Fire_Type_Scroll,Fire Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fire_Type_Scroll); },{},{}
-12829,Earth_Type_Scroll,Earth Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Earth_Type_Scroll); },{},{}
-12831,Potion_Box,Potion Box,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100; },{},{}
-12834,Undead_Egg,Undead Egg,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12835,Girls_Heart,Girls Heart,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12837,Wooden_Treasure_Box,Wooden Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12838,Iron_Treasure_Box,Iron Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,10,,,{},{},{}
-12839,bronze_Treasure_Box,bronze Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,20,,,{},{},{}
-12840,Silver_Treasure_Box,Silver Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,30,,,{},{},{}
-12841,Golden_Treasure_Box,Golden Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,40,,,{},{},{}
-12842,Platinum_Treasure_Box,Platinum Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,50,,,{},{},{}
-12843,Pearl_Treasure_Box,Pearl Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,60,,,{},{},{}
-12844,Diamond_Treasure_Box,Diamond Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,70,,,{},{},{}
-12845,WOB_Amatsu,Amatsu_Butterfly_Wing,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12846,Unripe_Apple2,Little Unripe Apple,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2398; },{},{}
-12847,Old_Equipment_Box,Old Equipment Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12848,Falcon_Flute,Falcon Flute,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } },{},{}
-12849,Combination_Kit,Combination Kit,2,40,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 30; },{},{}
-12850,Heaven_Scroll,Heaven Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Heaven_Scroll); },{},{}
-12851,Vocation_Scroll,Vocation Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vocation_Scroll); },{},{}
-12852,Wisdom_Scroll,Wisdom Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Wisdom_Scroll); },{},{}
-12853,Patron_Scroll,Patron Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Patron_Scroll); },{},{}
-12860,Mommy_Day_Cake,Mommy Day Cake,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5; },{},{}
-12863,Treasure_Chest_Summoned_II,Treasure Chest Summoned II,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",rand(1324,1363),1,""; },{},{}
-12873,TE_Potion_Box,TE Potion Box,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem(11558,10); },{},{}
-12874,Frost_Giant_Blood,Frost Giant Blood,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100; },{},{}
-12875,Golem_Stone,Golem Stone,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50; },{},{}
-12876,Elf_Tear_Stun,Elf Tear Stun,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_STUN,10000,3000,0; },{},{}
-12877,Elf_Tear_Stone_Curse,Elf Tear Stone Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_STONE,10000,3000,0; },{},{}
-12878,Elf_Tear_Freezing,Elf Tear Freezing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_FREEZ,10000,3000,0; },{},{}
-12879,Elf_Tear_Sleep,Elf Tear Sleep,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_SLEEP,10000,3000,0; },{},{}
-12880,Elf_Tear_Curse,Elf Tear Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_CURSE,10000,3000,0; },{},{}
-12881,Elf_Tear_Silence,Elf Tear Silence,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_SILENCE,10000,3000,0; },{},{}
-12882,Elf_Tear_Blind,Elf Tear Blind,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_BLIND,10000,3000,0; },{},{}
-12883,Almighty,Almighty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10; },{},{}
-12884,Infinite_Concentration_Potion,Infinite Concentration Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{}
-12885,Infinite_Awakening_Potion,Infinite Awakening Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{}
-12886,Infinite_Berserk_Potion,Infinite Berserk Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{}
-12887,C_Wing_Of_Fly,Infinite Flywing,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-12888,Siege_Kit_Box,Siege Kit Box,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12889,Weapon_Box_Spear,Weapon Box(Spear),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12890,Weapon_Box_Mace,Weapon Box(Mace),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12891,Weapon_Box_Dagger,Weapon Box(Dagger),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12892,Weapon_Box_Axe,Weapon Box(Axe),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12893,Weapon_Box_Bow,Weapon Box(Bow),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12894,Weapon_Box_Sword,Weapon Box(Sword),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12895,Weapon_Box_Knuckle,Weapon Box(Knuckle),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12896,Weapon_Box_Book,Weapon Box(Book),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12897,Weapon_Box_Guitar,Weapon Box(Guitar),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12898,Weapon_Box_Whip,Weapon Box(Whip),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12899,Weapon_Box_Staff,Weapon Box(Staff),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-12900,Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,10; },{},{}
-12901,Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{}
-12902,Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{}
-12903,Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,10; },{},{}
-12904,Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,10; },{},{}
-12905,Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,10; },{},{}
-12906,Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,10; },{},{}
-12907,Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,10; },{},{}
-12908,Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,10; },{},{}
-12909,Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,10; },{},{}
-12910,Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,10; },{},{}
-12911,Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; },{},{}
-12912,Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,10; },{},{}
-12913,Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{}
-12914,Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{}
-12915,Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aspersio_5_Scroll_Box); },{},{}
-12916,Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,10; },{},{}
-12917,Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{}
-12918,Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{}
-12919,Megaphone_Box,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,10; },{},{}
-12920,Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,10; },{},{}
-12921,Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,10; },{},{}
-12922,Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,10; },{},{}
-12923,Pet_Egg_Scroll_Box1,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box1); },{},{}
-12924,Pet_Egg_Scroll_Box2,Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box2); },{},{}
-12925,Pet_Egg_Scroll1,Kafra Item Mall Prize Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll1); },{},{}
-12926,Pet_Egg_Scroll2,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll2); },{},{}
-12927,J_Aspersio_5_Scroll_Box,Aspersio Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12928,10; },{},{}
-12928,J_Aspersio_5_Scroll,Sacred Scroll,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{}
-12929,Pet_Egg_Scroll_Box3,Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box3); },{},{}
-12930,Pet_Egg_Scroll_Box4,Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box4); },{},{}
-12931,Pet_Egg_Scroll_Box5,Pet Egg Box 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box5); },{},{}
-12932,Pet_Egg_Scroll3,Episode 13.2 Key Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll3); },{},{}
-12933,Pet_Egg_Scroll4,Summer Hat Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll4); },{},{}
-12934,Pet_Egg_Scroll5,Pet Egg Scroll5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll5); },{},{}
-12935,Infiltrator_Box,Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Infiltrator_Box); },{},{}
-12936,Muramasa_Box,Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Muramasa_Box); },{},{}
-12937,Excalibur_Box,Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Excalibur_Box); },{},{}
-12938,Combat_Knife_Box,Combat Knife Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Combat_Knife_Box); },{},{}
-12939,Counter_Dagger_Box,Dagger of Counter Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Counter_Dagger_Box); },{},{}
-12940,Kaiser_Knuckle_Box,Kaiser Knuckle Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Kaiser_Knuckle_Box); },{},{}
-12941,Pole_Axe_Box,Poll Axe Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pole_Axe_Box); },{},{}
-12942,Mighty_Staff_Box,Mighty Staff Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mighty_Staff_Box); },{},{}
-12943,Right_Epsilon_Box,Light Epsilon Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Right_Epsilon_Box); },{},{}
-12944,Balistar_Box,Ballista Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Balistar_Box); },{},{}
-12945,Diary_Of_Great_Sage_Box,Sage's Diary Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Diary_Of_Great_Sage_Box); },{},{}
-12946,Asura_Box,Asura Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Asura_Box); },{},{}
-12947,Apple_Of_Archer_Box,Apple of Archer Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Apple_Of_Archer_Box); },{},{}
-12948,Bunny_Band_Box,Bunny Band Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bunny_Band_Box); },{},{}
-12949,Sahkkat_Box,Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sahkkat_Box); },{},{}
-12950,Lord_Circlet_Box,Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lord_Circlet_Box); },{},{}
-12951,Elven_Ears_Box,Elven Ears Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Elven_Ears_Box); },{},{}
-12952,Steel_Flower_Box,Steel Flower Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Steel_Flower_Box); },{},{}
-12953,Critical_Ring_Box,Critical Ring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Critical_Ring_Box); },{},{}
-12954,Earring_Box,Earring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Earring_Box); },{},{}
-12955,Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ring_Box); },{},{}
-12956,Necklace_Box,Necklace Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Necklace_Box); },{},{}
-12957,Glove_Box,Glove Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Glove_Box); },{},{}
-12958,Brooch_Box,Brooch Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Brooch_Box); },{},{}
-12959,Rosary_Box,Rosary Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Rosary_Box); },{},{}
-12960,Safety_Ring_Box,Safety Ring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Safety_Ring_Box); },{},{}
-12961,Vesper_Core01_Box,Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core01_Box); },{},{}
-12962,Vesper_Core02_Box,Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core02_Box); },{},{}
-12963,Vesper_Core03_Box,Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core03_Box); },{},{}
-12964,Vesper_Core04_Box,Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core04_Box); },{},{}
-12965,Emergency_Box1,Emergency Level 1 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12968,1; },{},{}
-12966,Emergency_Box2,Emergency Level 2 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12969,1; },{},{}
-12967,Emergency_Box3,Emergency Level 3 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12970,1; },{},{}
-12968,Emergency_Scroll1,Emergency Level 1 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; },{},{}
-12969,Emergency_Scroll2,Emergency Level 2 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; },{},{}
-12970,Emergency_Scroll3,Emergency Level 3 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; },{},{}
-12971,Teleport_Box1,Teleport Scroll Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12977,10; },{},{}
-12972,Teleport_Box2,Teleport Scroll Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12978,10; },{},{}
-12973,Teleport_Box3,Teleport Scroll Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12979,10; },{},{}
-12974,Teleport_Box4,Teleport Scroll Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12980,10; },{},{}
-12975,Teleport_Box5,Teleport Scroll Box 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12981,10; },{},{}
-12976,Teleport_Box6,Teleport Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12982,10; },{},{}
-12977,Teleport_Scroll1,Teleport Scroll 1,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",1; },{},{}
-12978,Teleport_Scroll2,Teleport Scroll 2,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",2; },{},{}
-12979,Teleport_Scroll3,Teleport Scroll 3,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",3; },{},{}
-12980,Teleport_Scroll4,Teleport Scroll 4,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",4; },{},{}
-12981,Teleport_Scroll5,Teleport Scroll 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",5; },{},{}
-12982,Teleport_Scroll6,Teleport Scroll 6,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",6; },{},{}
-12983,Pet_Egg_Scroll_Box6,Pet Egg Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box6); },{},{}
-12984,Pet_Egg_Scroll_Box7,Pet Egg Scroll Box 7,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box7); },{},{}
-12985,Pet_Egg_Scroll_Box8,Pet Egg Scroll Box 8,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box8); },{},{}
-12986,Pet_Egg_Scroll_Box9,Adventurer Pack Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box9); },{},{}
-12987,Pet_Egg_Scroll_Box10,Pet Egg Scroll Box 10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box10); },{},{}
-12988,Pet_Egg_Scroll_Box11,Pet Egg Scroll Box 11,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box11); },{},{}
-12989,Pet_Egg_Scroll6,Pet Egg Scroll 6,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll6); },{},{}
-12990,Pet_Egg_Scroll7,Pet Egg Scroll 7,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll7); },{},{}
-12991,Pet_Egg_Scroll8,Party Hard Pack,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll8); },{},{}
-12992,Pet_Egg_Scroll9,Adventurer Pack,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll9); },{},{}
-12993,Pet_Egg_Scroll10,Pet Egg Scroll 10,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll10); },{},{}
-12994,Pet_Egg_Scroll11,Pet Egg Scroll 11,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll11); },{},{}
-12995,White_Herb_Box,White Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 509,15; },{},{}
-12996,Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,15; },{},{}
-12997,Elunium_Box,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 985,5; },{},{}
-12998,Oridecon_Box,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,5; },{},{}
-12999,Branch_Of_Dead_Tree_Box,Dead Branch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,3; },{},{}
-//===================================================================
-// More Weapons
-//===================================================================
-// Daggers and Ninja Weapons
-//===================================================================
-13000,Jujube_Dagger,Jujube Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Wind; },{},{}
-13001,Dragon_Killer,Dragon Killer,5,20,,900,110,,1,0,0x3E9F7EEF,63,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-13002,Ginnungagap,Ginnungagap,5,20,,700,148,,1,0,0x3E9F7EEF,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{}
-13003,Coward,Cowardice Blade,5,52000,,700,80,,1,1,0x02021040,63,2,2,3,55,1,1,{ bonus bDef,5; },{},{}
-13004,Coward_,Cowardice Blade,5,52000,,700,80,,1,2,0x02021040,63,2,2,3,55,1,1,{ bonus bDef,5; },{},{}
-13005,Angelwing_Short_Sword,Angelic Wing Dagger,5,20,,600,120,,1,1,0x00000001,63,2,2,4,50,1,1,{},{},{}
-13006,Khukri,Khukri,5,240000,,600,150,,1,0,0x02000000,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; },{},{}
-13007,Jitte,Jitte,5,20000,,400,70,,1,0,0x02000000,63,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{}
-13008,Jitte_,Jitte,5,20000,,400,70,,1,1,0x02000000,63,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{}
-13009,Kamaitachi,Kamaitachi,5,48000,,900,125,,2,0,0x02000000,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; },{},{}
-13010,Asura,Asura,5,3000,,600,50:50,,1,2,0x02000000,63,2,2,1,12,1,1,{},{},{}
-13011,Asura_,Asura,5,3000,,600,50:50,,1,3,0x02000000,63,2,2,1,12,1,1,{},{},{}
-13012,Murasame,Murasame,5,20,,700,95,,1,1,0x02000000,63,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-13013,Murasame_,Murasame,5,20,,700,95,,1,2,0x02000000,63,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player,10; },{},{}
-13014,Hakujin,Hakujin,5,20,,800,120,,1,0,0x02000000,63,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{}
-13015,Hakujin_,Hakujin,5,20,,800,120,,1,1,0x02000000,63,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{}
-13016,Poison_Knife_,Poison Knife,5,20,,800,64,,1,2,0x028F5EEE,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-13017,House_Auger_,Ice Pick,5,20,,600,70,,1,1,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{}
-13018,Sucsamad_,Sucsamad,5,20,,800,140,,1,1,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{}
-13019,Ginnungagap_,Ginnungagap,5,20,,700,148,,1,1,0x3E9F7EEF,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{}
-13020,Warrior_Balmung_,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,63,2,2,4,48,1,1,{ bonus bAllStats,5; },{},{}
-13021,Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/},{},{}
-13022,Counter_Dagger_C,Dagger of Counter,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{ bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ },{},{}
-13023,Asura_C,Ashura,5,1,,0,120:98,,1,0,0x02000000,63,2,2,1,1,0,1,{ /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */ },{},{}
-13024,Sword_Breaker_C,Refined Swordbreaker,5,2,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bBreakWeaponRate,500; },{},{}
-13025,Mail_Breaker_C,Refined Mailbreaker,5,2,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bBreakArmorRate,500; },{},{}
-13026,Moonlight_Sword_C,Moonlight Dagger,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{}
-13027,Scalpel,Scalpel,5,20,,500,120,,1,3,0x028F5EEE,18,2,2,4,55,1,1,{ bonus2 bAddEff,Eff_Bleeding,500; },{},{}
-13028,Tooth_Blade,Tooth Blade,5,20,,700,130,,1,1,0x028F5EEE,18,2,2,4,55,1,1,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; },{},{}
-13029,Prinsence_Knife,Prinsense Knife,5,20,,0,120,,1,0,0x028F5EEE,63,2,2,1,0,0,1,{ bonus2 bAddClass,Class_All,50; },{},{}
-13030,Dragon_Killer_,Dragon Killer,5,20,,900,110,,1,2,0x3E9F7EEF,63,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{}
-13031,Sword_Breaker_,Swordbreaker,5,20,,1000,70,,1,3,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{}
-13032,Mail_Breaker_,Mailbreaker,5,20,,1000,70,,1,3,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{}
-13033,Assasin_Dagger_,Assassin Dagger,5,20,,600,140,,1,1,0x00001000,63,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{}
-13034,Twilight_Desert,Desert Twilight,5,20,,600,130,,1,2,0x00001000,18,2,2,2,70,1,1,{},{},{}
-13035,Sandstorm,Sandstorm,5,20,,600,50,,1,4,0x00001000,18,2,2,2,70,1,1,{},{},{}
-13036,BF_Dagger1,Brave Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{}
-13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,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; },{},{}
-13038,Dagger_Of_Hunter,Dagger of Hunter,5,20,,700,120,,1,3,0x00020000,18,2,2,3,70,1,1,{ bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20; },{},{}
-13039,Ivory_Knife,Ivory Knife,5,20,,700,130,,1,2,0x028F5EEE,18,2,2,3,50,1,1,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; },{},{}
-13040,N_Cutter,Novice Cutter,5,0,,0,50,,1,3,0x3E9F7EEF,63,2,2,1,1,0,1,{},{},{}
-13041,N_Main_Gauche,Novice Main Gauche,5,0,,0,63,,1,3,0x3E9F7EEF,63,2,2,1,1,0,1,{},{},{}
-13042,Krieger_Dagger1,Glorious Gladius,5,20,,0,120,,1,0,0x3E9F7EEF,63,2,2,4,80,1,1,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,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,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; },{},{}
-13043,Fortune_Sword_I,Fortune Sword,5,0,,0,120,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bLuk,5; },{},{}
-13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{}
-13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,63,2,2,4,0,0,1,{ bonus bAtkEle,Ele_Wind; },{},{}
-13046,Krieg,Krierg,5,20,,500,110,,1,3,0x00021040,18,2,2,2,50,1,1,{ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; },{},{}
-13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,18,2,2,3,50,1,1,{ autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-13048,Damascus_C,Damascus,5,0,,0,153,,1,0,0x028F5EEE,63,2,2,3,1,0,1,{ bonus2 bAddSize,Size_All,40; },{},{}
-13049,Lacma,Lacma,5,20,,650,45,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{},{},{}
-13050,P_Dagger1,Eden Dagger I,5,0,,0,124:60,,1,0,0x3E9F7EEF,63,2,2,2,26,0,1,{},{},{}
-13051,P_Dagger2,Eden Dagger II,5,0,,0,158:70,,1,0,0x3E9F7EEF,63,2,2,2,40,0,1,{},{},{}
-13052,Tourist_Dagger,Tourist Dagger,5,0,,500,51,,1,0,0x3E9F7EEF,63,2,2,1,1,0,1,{ bonus bAgi,2; },{},{}
-13053,F_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{}
-13054,F_Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{},{},{}
-13055,F_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{},{},{}
-13056,F_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{},{},{}
-13057,E_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{}
-13058,E_Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{},{},{}
-13059,E_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{},{},{}
-13060,E_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{},{},{}
-13061,Black_Wing,Black Wing,5,20,,600,142,,1,1,0x00020000,63,2,2,3,102,1,1,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30+(.@r*2); bonus bMatkRate,(.@r*3); },{},{}
-13062,Ancient_Dagger,Ancient Dagger,5,20,,600,107:120,,0,0,0x028F5EEE,18,2,2,4,120,1,1,{ bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; },{},{}
-13063,Adventure_Knife,Adventure Knife,5,0,,0,60,,1,0,0x02021040,63,2,2,1,1,0,1,{ bonus bUnbreakableWeapon; },{},{}
-13064,Academy_Knife,Academy Knife,5,0,,700,110,,1,1,0x02021040,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon; },{},{}
-13065,Academy_Eti_Knife,Academy Eti Knife,5,0,,1200,120,,1,1,0x00000001,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon; },{},{}
-13066,P_Dagger3,Eden Dagger III,5,0,,0,165:80,,1,0,0x3E9F7EEF,63,2,2,3,60,0,1,{},{},{}
-13067,Caress,Keris,5,20,,700,107:70,,1,1,0x3E9F7EEF,18,2,2,3,30,1,1,{ bonus2 bHPDrainRate,20,10; },{},{}
-13068,Saurel,Pompano,5,0,,0,160:100,,3,0,0x3E9F7EEF,63,2,2,1,50,0,1,{ 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; } },{},{}
-13069,Aztoe_Nail,As-nail,5,56000,,500,160:80,,1,0,0x000654E2,63,2,2,4,110,1,1,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); },{},{}
-13070,Scarletto_Nail,Scarlet-nail,5,56000,,500,160:80,,1,0,0x000654E2,63,2,2,4,110,1,1,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); },{},{}
-13071,Upg_Dagger,Upg Dagger,5,20,,600,55,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{}
-13072,Velum_Damascus,Vellum Damascus,5,20,,1000,180,,1,0,0x3E9F7EEF,63,2,2,4,95,1,1,{ bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,getrefine(); },{},{}
-13073,Counter_Dagger_,Counter Dagger,5,120000,,550,140,,1,1,0x00810204,63,2,2,4,55,1,1,{},{},{}
-13074,Ninja_Cutter,Ninja Sword Prototype,5,0,,0,0,,1,0,0x02000000,63,2,2,4,99,1,1,{},{},{}
-13075,Kurenai,Kurenai,5,5000,,700,130,,1,0,0x02000000,63,2,2,3,99,1,1,{ bonus bInt,3; },{},{}
-13076,Raksasa_Dagger,Nachal Sword,5,40000,,600,120:100,,1,1,0x02000000,63,2,2,3,110,1,1,{ bonus bInt,3; },{},{}
-13077,Kagekiri,Kagekiri,5,40000,,600,50:120,,1,0,74,7,2,2,4,100,1,1,{},{},{}
-13078,Mikatsuki,Mikacheuki,5,40000,,600,50:120,,1,1,0x02000000,63,2,2,4,100,1,1,{ bonus bUseSPrate,-5; bonus bVariableCastrate,-5; },{},{}
-13079,Metal_Dagger,Metal Dagger,5,20,,0,55,0,,1,0x02021040,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-13081,Octo_kitchen_Knife,Discount knife Octopus,5,200000,,700,140,0,,3,0x228F5EEE,63,2,2,4,105,1,1,{},{},{}
-13083,TE_Woe_Knife,TE Woe Knife,5,0,,0,100:100,,1,0,0x3E9F7EEF,63,2,2,3,40,1,1,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Silence,3000; },{},{}
-13085,Volcano_Knife,Volcano Knife,5,10,,200,80,,,0,0x280002E,63,2,2,4,60,,1,{ bonus bAgi,2; bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r==7){ bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Fire,3; } if (.@r>7) { bonus bMaxHPrate,.@r-7; bonus2 bSubEle,Ele_Fire,.@r-7; } },{},{}
-13086,Goldsmithing_Dagger,Goldsmithing Dagger,5,20,,500,35:25,,1,0,0x028756E6,63,2,2,1,1,1,1,{},{},{}
-13088,Greater_Lease,Greater Lease,5,10,,500,110:50,,,1,0x280006E,63,2,2,4,30,1,1,{ .@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,10; if (.@r >= 9) bonus bMatk,10; },{},{}
-13089,FaceWorm_Leg,Faceworm Leg,5,20,,500,110:50,,1,1,0x028F5EEF,63,2,2,3,24,1,1,{ bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; },{},{}
-13090,FaceWormQueen_Leg,Faceworm Queen Leg,5,20,,500,180:120,,1,2,0x028F5EEF,63,2,2,4,100,1,1,{ bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; },{},{}
-13092,RWC_Memory_Knife,RWC Memory Knife,5,1000,500,650,50,0,1,1,0x02800075,63,2,2,3,1,1,1,{ .@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; } },{},{}
-13093,Thanos_Dagger,Thanos Dagger,5,10,,800,100:130,,1,1,0x000E5CEA,56,2,2,4,120,1,1,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-13094,Devil_Pierced_Dagger,Evil Slayer Stabber Dagger,5,0,,900,120,,1,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{}
-13096,Half_BF_Dagger2,Half BF Dagger2,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,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; },{},{}
-13097,Ru_Blue_Dagger,Blue Dagger,5,10,,1000,160,,1,1,0x00020000,56,2,2,3,100,1,1,{ bonus bStr,5; bonus bInt,5; },{},{}
-13098,Ru_Blue_Ashura,Blue Ashura,5,10,,1000,150:120,,1,1,0x02000000,7,2,2,3,100,1,1,{},{},{}
-13099,Ru_Blue_Knife,Blue Knife,5,10,,500,160,,1,1,0x00010000,56,2,2,3,100,1,1,{ bonus bStr,5; bonus bInt,5; },{},{}
-//===================================================================
-// Guns
-//===================================================================
-13100,Six_Shooter,Six Shooter,5,4500,,400,30,,7,1,0x41000000,63,2,34,1,10,1,17,{ bonus bHit,-10; },{},{}
-13101,Six_Shooter_,Six Shooter,5,4500,,400,30,,7,2,0x41000000,63,2,34,1,10,1,17,{ bonus bHit,-10; },{},{}
-13102,Crimson_Bolt,Crimson Bolt,5,20000,,450,45,,7,1,0x41000000,63,2,34,2,35,1,17,{ bonus bHit,-10; },{},{}
-13103,Crimson_Bolt_,Crimson Bolt,5,20000,,450,45,,7,2,0x41000000,63,2,34,2,35,1,17,{ bonus bHit,-10; },{},{}
-13104,The_Garrison,Garrison,5,48000,,500,70,,7,1,0x41000000,63,2,34,2,55,1,17,{ bonus bHit,-10; },{},{}
-13105,The_Garrison_,Garrison,5,48000,,500,70,,7,2,0x41000000,63,2,34,2,55,1,17,{ bonus bHit,-10; },{},{}
-13106,Gold_Lux,Gold Lux,5,100000,,500,20,,7,0,0x41000000,63,2,34,3,12,1,17,{ bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; },{},{}
-13107,Wasteland_Outlaw,Wasteland's Outlaw,5,20,,580,68,,7,2,0x41000000,63,2,34,3,70,1,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; },{},{}
-13108,BF_Pistol1,Soldier Revolver,5,0,,0,70,,7,0,0x41000000,63,2,34,3,80,1,17,{ bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-13109,Wasteland_Outlaw_C,Wasteland Outlaw,5,20,,0,100,,7,0,0x41000000,63,2,34,3,0,0,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40; },{},{}
-13110,Krieger_Pistol1,Glorious Pistol,5,0,,0,80,,7,0,0x41000000,63,2,34,4,80,1,17,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; } },{},{}
-13111,Sharpshooter_Revolver,Sharpshooter Revolver,5,20,,0,105,,7,0,0x41000000,63,2,34,4,1,1,17,{ bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25; },{},{}
-13112,P_Revolver1,Eden Revlover I,5,0,,0,44,,7,0,0x41000000,63,2,34,1,26,0,17,{ bonus bHit,-5; },{},{}
-13113,P_Revolver2,Eden Revlover II,5,0,,0,60,,7,0,0x41000000,63,2,34,1,40,0,17,{ bonus bHit,-5; },{},{}
-13114,P_Revolver3,Eden Revolver III,5,0,,0,76,,7,0,0x41000000,63,2,34,3,60,0,17,{ bonus bHit,-5; },{},{}
-13115,Upg_Revolver,Upg Revolver,5,20,,500,35,,7,1,0x41000000,63,2,34,3,1,1,17,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{}
-13116,Novice_Revolver,Novice Revolver,5,0,,500,20,,7,0,0x41000000,63,2,34,1,1,0,17,{ bonus bHit,-5; },{},{}
-13117,TE_Woe_Pistol,TE Woe Pistol,5,0,,0,60,,7,0,0x41000000,63,2,34,3,40,1,17,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{}
-13118,Tiny_Flame,Fading Flame,5,1,,100,0,,7,0,0x41000000,63,2,34,1,1,1,17,{},{},{}
-13119,Freedom_Flame,Freedom Flame,5,1,,100,100,,7,2,0x41000000,63,2,34,3,99,1,17,{},{},{}
-13120,H_FEATHER_H_FIRE,Heaven's Feather & Hell's Fire,5,1200000,,800,150,,9,1,0x41000000,63,2,34,3,99,1,17,{ bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bSkillAtk,"RL_FALLEN_ANGEL",20; },{},{}
-13122,ALTAIR_ARES,Altair & Ares,5,1450000,,1000,200,,9,0,0x40000000,63,2,34,3,140,1,17,{ bonus bHit,5; bonus bDelayrate,10; bonus bLongAtkRate,30; },{},{}
-13124,ALTAIR_ARES_,Altair & Ares,5,1450000,,1000,200,,9,1,0x40000000,63,2,34,3,140,1,17,{ bonus bHit,5; bonus bDelayrate,10; bonus bLongAtkRate,30; },{},{}
-13125,Metal_Revolver,Metal Revolver,5,0,,0,30,,7,1,0x41000000,63,2,34,3,1,1,17,{ bonus bBaseAtk,getrefine(); bonus bLongAtkRate,1; if (BaseLevel >= 20 && BaseLevel <= 120) { bonus bBaseAtk,3*(BaseLevel/10); } },{},{}
-13126,Infinity_Pistol,Infinity Pistol,5,10,,500,175,,7,1,0x40000000,63,2,34,4,100,0,17,{},{},{}
-13127,Crimson_Revolver,Crimson Revolver,5,20,,1000,100,,7,2,0x41000000,63,2,34,3,70,1,17,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-13128,Revolver_of_Vicious_Mind,Revolver of Vicious Mind,5,20,,1500,150,,7,1,0x41000000,63,2,34,4,160,1,17,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-13129,Unity_Revolver,Unity Revolver,5,20,,500,95,,7,1,0x41000000,63,2,34,3,1,1,17,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-13138,Dark_Rose,Dark Rose,5,20,,1800,150,,7,2,0x40000000,63,2,34,3,120,1,17,{ .@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } } },{},{}
-13146,Calf_Deathadder,Calf Deathadder,5,0,0,1400,170,,7,2,0x40000000,63,2,34,4,150,1,17,{ .@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; } },{},{}
-13150,Branch,Branch,5,3000,,500,50,,9,3,0x41000000,63,2,34,1,1,1,18,{},{},{}
-13151,The_Cyclone,Cyclone,5,17500,,700,120,,9,1,0x41000000,63,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13152,The_Cyclone_,Cyclone,5,17500,,700,120,,9,2,0x41000000,63,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13153,Dusk,Dusk,5,23500,,750,150,,9,1,0x41000000,63,2,34,2,56,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{}
-13154,Rolling_Stone,Rolling Stone,5,12000,,900,135,,9,1,0x41000000,63,2,34,1,14,1,20,{ bonus bSplashRange,1; },{},{}
-13155,Black_Rose,Black Rose,5,32000,,900,180,,9,1,0x41000000,63,2,34,2,35,1,20,{ bonus bSplashRange,1; },{},{}
-13156,Gate_Keeper,Gate Keeper,5,56000,,1000,210,,9,0,0x41000000,63,2,34,2,24,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; },{},{}
-13157,Drifter,Drifter,5,80000,,2300,50,,9,1,0x41000000,63,2,34,2,55,1,19,{},{},{}
-13158,Butcher,Butcher,5,130000,,2500,75,,9,0,0x41000000,63,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; },{},{}
-13159,Butcher_,Butcher,5,130000,,2500,75,,9,1,0x41000000,63,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; },{},{}
-13160,Destroyer,Destroyer,5,110000,,1200,220,,9,0,0x41000000,63,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{}
-13161,Destroyer_,Destroyer,5,110000,,1200,220,,9,1,0x41000000,63,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{}
-13162,Inferno,Inferno,5,230000,,1250,280,,9,1,0x41000000,63,2,34,2,65,1,21,{},{},{}
-13163,Long_Barrel,Long Barrel,5,40000,,1000,150,,9,0,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{}
-13164,Long_Barrel_,Long Barrel,5,40000,,1000,150,,9,1,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{}
-13165,Jungle_Carbine,Jungle Carbine,5,56000,,700,170,,9,0,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{}
-13166,Jungle_Carbine_,Jungle Carbine,5,56000,,700,170,,9,1,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{}
-13167,Gate_KeeperDD,Gate Keeper-DD,5,72000,,1300,200,,9,0,0x41000000,63,2,34,4,70,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; },{},{}
-13168,Thunder_P,Thunder P,5,76000,,700,80,,9,1,0x41000000,63,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{}
-13169,Thunder_P_,Thunder P,5,76000,,700,80,,9,2,0x41000000,63,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{}
-13170,Lever_Action_Rifle,Lever Action Rifle,5,20,,770,138,,9,2,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; },{},{}
-13171,BF_Rifle1,Soldier Rifle,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13172,BF_Gatling_Gun1,Soldier Gatling Gun,5,0,,0,80,,9,0,0x41000000,63,2,34,3,80,1,19,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13173,BF_Shotgun1,Soldier Shotgun,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13174,BF_Launcher1,Soldier Grenade Launcher,5,0,,0,300,,9,0,0x41000000,63,2,34,3,80,1,21,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-13175,Lever_Action_Rifle_C,Lever Action Rifle,5,20,,0,170,,9,0,0x41000000,63,2,34,3,1,0,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40; },{},{}
-13176,Krieger_Rifle1,Glorious Rifle,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,18,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,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,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; } },{},{}
-13177,Krieger_Gatling1,Glorious Gatling Gun,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,19,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,10)-4,2); bonus2 bAddRace,RC_Player,pow(min(.@r,10)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; } },{},{}
-13178,Krieger_Shotgun1,Glorious Shotgun,5,0,,0,110,,9,0,0x41000000,63,2,34,4,80,1,20,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,10)-4,2); bonus2 bAddRace,RC_Player,pow(min(.@r,10)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } },{},{}
-13179,Krieger_Launcher1,Glorious Grenade Launcher,5,0,,0,330,,9,0,0x41000000,63,2,34,4,80,1,21,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,10)-4,2); bonus2 bAddRace,RC_Player,pow(min(.@r,10)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,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; }"; } },{},{}
-13180,Novice_Rifle,Novice Rifle,5,0,,500,50,,9,3,0x41000000,1,2,34,4,1,0,18,{},{},{}
-13181,Novice_Shotgun,Novice Shotgun,5,0,,1000,80,,9,0,0x41000000,1,2,34,4,1,0,20,{},{},{}
-13182,Novice_Gatling,Novice Gatling,5,0,,1500,40,,9,0,0x41000000,1,2,34,4,1,0,19,{},{},{}
-13183,Novice_Grenade_Launcher,Novice Grenade Launcher,5,0,,1500,40,,9,0,0x41000000,1,2,34,4,1,0,21,{},{},{}
-13184,TE_Woe_Rifle,TE Woe Rifle,5,0,,0,80,,9,0,0x41000000,63,2,34,3,40,1,18,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Silence,3000; },{},{}
-13185,TE_Woe_Gatling,TE Woe Gatling,5,0,,0,100,,7,0,0x41000000,63,2,34,3,40,1,19,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Stun,3000; },{},{}
-13186,TE_Woe_Shotgun,TE Woe Shotgun,5,0,,0,100,,7,0,0x41000000,63,2,34,3,40,1,20,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-13187,TE_Woe_Grenade,TE Woe Grenade,5,0,,0,100,,9,0,0x41000000,63,2,34,3,40,1,21,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{}
-13189,COLORSCOPE,Color Scope,5,1350000,,1200,240,,9,2,0x40000000,63,2,34,3,105,1,18,{ bonus bHit,20; bonus bCriticalRate,30; },{},{}
-13190,RAG203_,RAG203,5,1800000,,1300,260,,9,1,0x40000000,63,2,34,3,140,1,18,{ bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,500,1; },{},{}
-13192,DEATHFIRE,Death Fire,5,1250000,,2000,400,,9,1,0x40000000,63,2,34,3,108,1,20,{ bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10; },{},{}
-13193,R_THUNDER,Rolling Thunder,5,1350000,,1800,280,,9,1,0x40000000,63,2,34,3,120,1,20,{ bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; },{},{}
-13194,P_BREAKER,Peace Breaker,5,1950000,,1400,250,,9,0,0x41000000,63,2,34,3,140,1,20,{ bonus bHit,-25; bonus bAspdRate,25; },{},{}
-13195,RAG203,RAG203,5,1800000,,1300,260,,9,0,0x40000000,63,2,34,3,140,1,18,{ bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,10,1; },{},{}
-13196,P_BREAKER_,Peace Breaker,5,1950000,,1400,250,,9,1,0x41000000,63,2,34,3,140,1,20,{ bonus bHit,-25; bonus bAspdRate,25; },{},{}
-13197,MINIMAY,Mini Mei,5,1600000,,2500,220,,9,2,0x41000000,63,2,34,2,106,1,19,{},{},{}
-13198,TEMPEST,Tempest,5,2200000,,2500,250,,9,0,0x41000000,63,2,34,4,140,1,19,{ bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; },{},{}
-13199,TEMPEST_,Tempest,5,2200000,,2500,250,,9,1,0x41000000,63,2,34,4,140,1,19,{ bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; },{},{}
-//===================================================================
-// Bullets
-//===================================================================
-13200,Bullet,Bullet,10,1,,1,25,,,,0x41000000,63,2,32768,,1,,3,{},{},{}
-13201,Silver_Bullet,Surplus Silver Bullet,10,15,,2,15,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{}
-13202,Shell_Of_Blood,Surplus Bloody Shell,10,30,,2,30,,,,0x41000000,63,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13203,Flare_Sphere,Surplus Flare Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Fire; },{},{}
-13204,Lighting_Sphere,Surplus Lightning Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Wind; },{},{}
-13205,Poison_Sphere,Surplus Poison Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{}
-13206,Blind_Sphere,Surplus Blind Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{}
-13207,Freezing_Sphere,Surplus Freezing Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Water; },{},{}
-13208,Gong_Bug,Sow Bug,10,0,,5,50,,,,0x41000000,63,2,32768,,50,,3,{ bonus2 bAddEff,Eff_Stun,1000; },{},{}
-13210,Slug_Bullet_1,Slug Ammunition L,10,250,,250,30,,,,,,,32768,,,,3,{},{},{}
-13211,Slug_Bullet_2,Slug Ammunition M,10,500,,500,30,,,,,,,32768,,,,3,{},{},{}
-13212,Slug_Bullet_3,Slug Ammunition H,10,750,,750,30,,,,,,,32768,,,,3,{},{},{}
-13213,Slug_Bullet_4,Slug Ammunition SH,10,1000,,1000,30,,,,,,,32768,,,,3,{},{},{}
-13214,Slug_Bullet_5,Slug Ammunition XH,10,1200,,1200,30,,,,,,,32768,,,,3,{},{},{}
-13215,AP_Ammo,Armor-Piercing Bullet,10,15,,2,50,,,0,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Neutral; },{},{}
-13216,Blaze_Bullet,Blazing Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Fire; },{},{}
-13217,Freezing_Bullet,Freezing Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Water; },{},{}
-13218,Electric_Shock_Bullet,Lightning Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Wind; },{},{}
-13219,Magical_Stone_Bullet,Magic Stone Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Earth; },{},{}
-13220,Sanctified_Bullet,Purifying Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Holy; },{},{}
-13221,Silver_Bullet_,Silver Bullet,10,5,,2,15,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{}
-13222,Shell_Of_Blood_,Bloody Shell,10,10,,2,30,,,,0x41000000,63,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13223,Flare_Sphere_,Flare Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Fire; },{},{}
-13224,Lighting_Sphere_,Lightning Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Wind; },{},{}
-13225,Poison_Sphere_,Poison Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Poison; },{},{}
-13226,Blind_Sphere_,Blind Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Dark; },{},{}
-13227,Freezing_Sphere_,Freezing Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Water; },{},{}
-13228,Flare_Bullet,Flare Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Fire; },{},{}
-13229,Lightning_Bullet,Lightning Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Wind; },{},{}
-13230,Ice_Bullet,Ice Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Water; },{},{}
-13231,Poison_Bullet,Poison Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{}
-13232,Blind_Bullet,Blind Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{}
-//===================================================================
-// Shurikens & Kunais
-//===================================================================
-13250,Shuriken,Shuriken,10,4,,5,10,,,,0x02000000,63,2,32768,,1,,6,{},{},{}
-13251,Nimbus_Shuriken,Nimbus Shuriken,10,10,,5,30,,,,0x02000000,63,2,32768,,20,,6,{},{},{}
-13252,Flash_Shuriken,Flash Shuriken,10,20,,5,45,,,,0x02000000,63,2,32768,,40,,6,{},{},{}
-13253,Sharp_Leaf_Shuriken,Sharp Leaf Shuriken,10,40,,5,70,,,,0x02000000,63,2,32768,,60,,6,{},{},{}
-13254,Thorn_Needle_Shuriken,Thorn Needle Shuriken,10,100,,5,100,,,,0x02000000,63,2,32768,,80,,6,{},{},{}
-13255,Kunai_Of_Icicle,Icicle Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Water; },{},{}
-13256,Kunai_Of_Black_Soil,Black Earth Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Earth; },{},{}
-13257,Kunai_Of_Furious_Wind,High Wind Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Wind; },{},{}
-13258,Kunai_Of_Fierce_Flame,Heat Wave Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Fire; },{},{}
-13259,Kunai_Of_Deadly_Poison,Fell Poison Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{}
-//===================================================================
-// Genetic Created Bombs And Throwing Items
-//===================================================================
-13260,Apple_Bomb,Apple Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13261,Coconut_Bomb,Coconut Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13262,Melon_Bomb,Melon Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13263,Pineapple_Bomb,Pineapple Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13264,Banana_Bomb,Banana Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13265,Black_Lump,Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13266,Black_Hard_Lump,Hard Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13267,Very_Hard_Lump,Extremely Hard Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{}
-13268,Mysterious_Powder,Mysterious Powder,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MYSTERIOUS_POWDER,10000,2; },{},{}
-13269,Boost500_To_Throw,Throwing Boost 500,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_BOOST500,500000,10; },{},{}
-13270,Full_SwingK_To_Throw,Throwing Full Swing K,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_FULL_SWING_K,500000,50; },{},{}
-13271,Mana_Plus_To_Throw,Throwing Mana Plus,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MANA_PLUS,500000,50; },{},{}
-13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ 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; },{},{}
-13273,Stamina_Up_M_To_Throw,Throwing Muramura M,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MUSTLE_M,500000,5; },{},{}
-13274,Digestive_F_To_Throw,Throwing Falmons F,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{}
-13275,HP_Inc_PotS_To_Throw,Throwing Increase HP Potion (Small),10,100,,20,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{}
-13281,En_White_PotZ_To_Throw,Throwing Concentrated White Potion Z,10,100,,70,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; },{},{}
-13282,Vitata500_To_Throw,Throwing Vitata 500,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; },{},{}
-13283,En_Cel_Juice_To_Throw,Throwing Ceromain Soup,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{}
-13284,Savage_BBQ_To_Throw,Throwing Savage Full Roast,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{}
-13285,Wug_Cocktail_To_Throw,Throwing Cocktail Warg Blood,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{}
-13286,M_Brisket_To_Throw,Throwing Minor Stew,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MINOR_BBQ,300000,20; },{},{}
-13287,Siroma_Icetea_To_Throw,Throwing Siroma Iced Tea,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{}
-13288,Drocera_Stew_To_Throw,Throwing Drosera Herb Salad,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{}
-13289,Petti_Noodle_To_Throw,Throwing Petite Tail Soup,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{}
-13290,Black_Thing_To_Throw,Throwing Black Mass,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{}
-//===================================================================
-// More Shurikens & Kunais
-//===================================================================
-13291,Starfish,Starfish,10,0,,5,110,,,,0x02000000,63,2,32768,,50,,6,{ bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; },{},{}
-13292,Dried_Squid,Dried Squid,10,10,,20,50,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; },{},{}
-13293,Flying_Fish,Flying Fish,10,10,,20,50,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; },{},{}
-13294,Explosive_Kunai,Explosive Kunai,10,100,,30,50,,,,0x02000000,63,2,32768,,100,,7,{ bonus bAtkEle,Ele_Neutral; },{},{}
-13295,Light_Shuriken,Light Shuriken,10,0,,5,5,,,,0xFFFFFFFF,63,2,32768,,,,0,{},{},{}
-//===================================================================
-// Ninja Fuuma Shurikens
-//===================================================================
-13300,Huuma_Bird_Wing,Huuma Wing Shuriken,5,90000,,3000,150,,1,0,0x02000000,63,2,34,4,65,1,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; },{},{}
-13301,Huuma_Giant_Wheel,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,3,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13302,Huuma_Giant_Wheel_,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,4,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{}
-13303,Huuma_Blaze,Huuma Blaze Shuriken,5,78000,,1500,185,,1,0,0x02000000,63,2,34,4,55,1,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; },{},{}
-13304,Huuma_Calm_Mind,Huuma Calm Mind,5,20,,1550,112,,1,2,0x02000000,63,2,34,3,70,1,22,{ bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; },{},{}
-13305,BF_Huuma_Shuriken1,Brave Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13306,BF_Huuma_Shuriken2,Valorous Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-13307,Krieger_Huuma_Shuriken1,Glorious Shuriken,5,20,,0,55:90,,1,0,0x02000000,63,2,34,4,80,1,22,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bMatkRate,15; 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,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } },{},{}
-13308,Huuma_Blaze_I,Huuma Blaze Shuriken,5,0,,0,230,,1,0,0x02000000,63,2,34,4,0,0,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2; },{},{}
-13309,Huuma_Giant_Wheel_C,Huuma Giant Wheel Shuriken,5,0,,0,99,,1,0,0x02000000,63,2,34,4,1,0,22,{ bonus2 bAddSize,Size_All,80; },{},{}
-13310,P_Huuma_Shuriken1,P.Huuma Suriken I,5,0,,0,150:50,,1,0,0x02000000,63,2,34,3,60,0,22,{},{},{}
-13311,Huuma_Shadow,Sword Huuma Shuriken,5,5000,,1500,170,,1,0,0x02000000,63,2,34,3,99,1,22,{ bonus bStr,3; },{},{}
-13312,Huuma_Job_Test,Prototype Huuma Shuriken,5,0,,3000,0,,1,0,0x02000000,63,2,34,4,99,1,22,{},{},{}
-13313,Huuma_Swirling_Petal,Flower Huuma Shuriken,5,100000,,1500,150:50,,1,2,0x02000000,63,2,34,3,110,1,22,{ bonus2 bSkillAtk,"KO_HUUMARANKA",20; },{},{}
-13314,Huuma_Fluttering_Snow,Wave Huuma Shuriken,5,100000,,1500,200:50,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; },{},{}
-13315,Huuma_Thunderstorm,Thunderstorm Huuma Shuriken,5,100000,,1500,200:50,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; },{},{}
-13316,Upg_Huuma_Shuriken,Upg Huuma Shuriken,5,20,,1500,55,,1,1,0x02000000,63,2,34,3,1,1,22,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{}
-13317,TE_Woe_Huuma,TE Woe Huuma,5,0,,0,80:100,,1,0,0x22000000,63,2,2,3,40,1,22,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{}
-13321,Half_BF_Huuma_Shuriken2,Half BF Huuma Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{}
-13322,Huuma_Metal_Shuriken,Huuma Metal Shuriken,5,20,,0,50,,1,1,0x02000000,63,2,34,3,1,1,22,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; if(.@r>=2) bonus bNearAtkDef,1*.@r/2; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; },{},{}
-13323,Infinity_Shuriken,Infinity Shuriken,5,0,,500,150:40,,1,1,0x20000000,63,2,34,4,100,1,22,{},{},{}
-13327,Crimson_Huuma_Shuriken,Crimson Huuma Shuriken,5,20,,1000,100,,1,2,0x22000000,63,2,34,3,70,1,22,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{}
-13328,Huuma_Shuriken_of_Vicious_Mind,Huuma Shuriken of Vicious Mind,5,20,,1500,150:50,,1,1,0x22000000,63,2,34,4,160,1,22,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon; },{},{}
-13329,Unity_Huuma_Shuriken,Unity Huuma Shuriken,5,20,,500,95,,1,1,0x22000000,63,2,34,3,1,1,22,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-13332,Huuma_Shuriken_of_Dancing_Petals,Huuma Shuriken of Dancing Petals,5,0,,2000,250,,1,2,0x20000000,63,2,34,4,100,1,22,{ .@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus; },{},{}
-13337,Illusion_Huuma_Fluttering_Snow,Illusion Huuma Fluttering Snow,5,0,,1500,250:50,,1,2,0x02000000,63,2,34,4,120,1,22,{ .@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r); },{},{}
-13338,Illusion_Wing_Shuriken,Illusion Wing Shuriken,5,0,,1500,300,,1,2,0x02000000,63,2,34,4,120,1,22,{ bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); },{},{}
-13345,Huuma_Shuriken_Clearness,Huuma Shuriken Clearness,5,20,,1300,230,,1,2,0x22000000,63,2,34,4,100,1,22,{ .@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; } } } },{},{}
-//===================================================================
-// More 1-Handed Swords
-//===================================================================
-13400,Cutlas_,Cutlus,5,20,,900,150,,1,1,0x000654E2,63,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-13401,Excalibur_C,Excalibur,5,1,,0,199,,1,0,0x000654E2,63,2,2,4,1,0,2,{ bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; },{},{}
-13402,Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,63,2,2,4,0,0,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{}
-13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10; bonus2 bHPDrainRate,1000,1; },{},{}
-13404,Platinum_Shotel,Platinum Shotel,5,20,,1500,130,,1,1,0x000654E2,58,2,2,4,55,1,2,{ bonus bCritical,50; },{},{}
-13405,Curved_Sword,Curved Sword,5,20,,800,125,,1,2,0x000654E2,58,2,2,4,55,1,2,{ bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; },{},{}
-13406,Edger,Edger,5,20,,0,120,,1,0,0x000654E2,63,2,2,1,0,0,2,{ bonus2 bAddClass,Class_All,50; },{},{}
-13407,Nagan_C,Refined Nagan,5,1,,0,148,,1,0,0x000654E2,63,2,2,4,0,0,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; },{},{}
-13408,Fire_Brand_C,Refined Fireblend,5,1,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; },{},{}
-13409,Immaterial_Sword_C,Refined Immaterial Sword,5,1,,0,160,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon; },{},{}
-13410,BF_Sword1,Valorous Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; },{},{}
-13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115:74,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bMatkRate,10; bonus bUnbreakableWeapon; },{},{}
-13412,Twin_Edge_B,Twin Edge of Naght Sieger,5,20,,1500,150,,1,3,0x000654E2,18,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{}
-13413,Twin_Edge_R,Twin Edge of Naght Sieger,5,20,,1500,160,,1,3,0x000654E2,18,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{}
-13414,Elemental_Sword,Elemental Sword,5,20,,1200,105:95,,1,3,0x000654E2,18,2,2,3,70,1,2,{ 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; },{},{}
-13415,N_Falchion,Novice Falchion,5,0,,0,59,,1,3,0x000654E3,63,2,2,1,2,0,2,{},{},{}
-13416,Krieger_Onehand_Sword1,Glorious Flamberge,5,20,,0,130,,1,0,0x000654E3,63,2,2,4,80,1,2,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } },{},{}
-13417,Krieger_Onehand_Sword2,Glorious Rapier,5,20,,0,130:80,,1,0,0x000654E3,63,2,2,4,80,1,2,{ .@r = getrefine(); bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5; },{},{}
-13418,Krieger_Onehand_Sword3,Glorious Holy Avenger,5,20,,0,130:80,,1,0,0x000444A2,63,2,2,4,80,1,2,{ .@r = getrefine(); 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; },{},{}
-13419,Holy_Saber,Holy saber,5,20,,0,160,,1,0,0x000654E2,63,2,2,3,0,0,2,{ bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40; },{},{}
-13420,Honglyun's_Sword,Honglyun's Sword,5,20,,1200,160,,1,1,0x000654E2,63,2,2,4,70,1,2,{ bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5; },{},{}
-13421,Ruber,Ruber,5,20,,1500,170,,1,1,0x000444A2,18,2,2,3,50,1,2,{ autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{}
-13422,Flamberge_C,Flamberge,5,0,,0,185,,1,0,0x00004080,63,2,2,3,1,0,2,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{}
-13423,P_Sabre1,Eden Sabre I,5,0,,0,147,,1,0,0x000654E2,63,2,2,2,26,0,2,{},{},{}
-13424,P_Sabre2,Eden Sabre II,5,0,,0,170,,1,0,0x000654E2,63,2,2,2,40,0,2,{},{},{}
-13425,Tourist_Sword,Tourist Sword,5,0,,500,61,,1,0,0x000654E3,63,2,2,1,1,0,2,{ bonus bStr,1; bonus bDex,1; },{},{}
-13426,F_Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bStr,2; },{},{}
-13427,F_Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; },{},{}
-13428,Priest_Sword,Priest Sword,5,20,,1200,170,,1,3,0x000654E2,63,2,2,4,50,1,2,{},{},{}
-13429,E_Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bStr,2; },{},{}
-13430,E_Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; },{},{}
-13431,Chrome_Sword,Chrome Sword,5,20,,2200,180,,1,0,0x000444A2,18,2,2,3,110,1,2,{ bonus bAgi,1; bonus bMaxHPrate,-5; },{},{}
-13432,Adventure_Sword,Adventure Sword,5,0,,0,80,,1,0,0x00004082,63,2,2,1,1,0,2,{},{},{}
-13433,Academy_Sword,Academy Sword,5,0,,1200,120,,1,1,0x00004082,63,2,2,1,1,1,2,{},{},{}
-13434,P_Saber3,Eden Saber III,5,0,,0,185,,1,0,0x000654E2,63,2,2,3,60,0,2,{},{},{}
-13438,Magical_Blade,Magical Blade,5,60000,,2000,165:110,,1,2,0x000654E3,63,2,2,4,105,1,2,{},{},{}
-13439,TE_Woe_Sword,TE Woe Sword,5,0,,0,120:100,,1,0,0x000654E3,63,2,2,3,40,1,2,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{}
-13440,Ceremonial_Sword,Ceremonial Sword,5,20,,500,60,,1,0,0x00000063,5,2,2,1,1,1,2,{ bonus bAtkEle,Ele_Holy; },{},{}
-13441,Thanos_Sword,Thanos Sword,5,10,,700,150:100,,1,1,0x00004082,56,2,2,4,120,1,2,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-13442,Old_Parasol,Old Parasol,5,10,,500,120:80,,,3,0x000654E2,63,2,2,3,80,1,2,{ bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10; },{},{}
-13444,Pala,Pala,5,20,,700,190,,0,1,0x000654E2,63,2,2,3,0,1,2,{ bonus bAspdRate,8; },{},{}
-13445,Half_BF_Sword1,Half BF Sword1,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-13449,Gladius_Daemonicus,Gladius Daemonicus,5,20,,1200,130,,,2,0x000654E2,63,2,2,4,80,1,2,{ bonus bAtkEle,Ele_Dark; },{},{}
-13450,Saber__,Saber,5,10,,1000,115,,,2,0x000654E2,63,2,2,3,27,1,0,{},{},{}
-13451,Ru_Blue_Sword,Blue Sword,5,10,,1200,190,,1,1,0x00000080,56,2,2,3,100,1,2,{ bonus bStr,5; bonus bAgi,5; },{},{}
-13452,Ru_Gold_Sword,Ru Gold Sword,5,0,,1200,190,,1,2,0x00000080,56,2,2,3,120,1,2,{ bonus bStr,8; bonus bAgi,8; },{},{}
-13454,Crimson_Saber,Crimson Saber,5,20,,850,85,,1,2,0x000654E3,63,2,2,3,70,1,2,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-13455,Saber_of_Vicious_Mind,Saber of Vicious Mind,5,20,,1350,135,,1,1,0x000654E3,63,2,2,4,160,1,2,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-13456,Unity_Sword,Unity Sword,5,20,,420,80,,1,1,0x000654E3,56,2,2,3,1,1,2,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-13457,Unity_Dagger,Unity Dagger,5,20,,270,52,,1,1,0x028F5EEF,63,2,2,3,1,1,1,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-13460,Sealed_Magic_Sword,Sealed Magic Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@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; },{},{}
-13461,Sealed_Evil_Sword,Sealed Evil Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@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; },{},{}
-13462,Sealed_Maximum_Sword,Sealed Maximum Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@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; } },{},{}
-13469,Illusion_Immaterial_Sword,Illusion Immaterial Sword,5,0,,900,180,,1,2,0x000654E2,63,2,2,4,120,1,2,{ .@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); },{},{}
-13493,Cannon_Rapier-OS,Cannon Rapier-OS,5,20,,800,160:150,,1,2,0x000654E3,63,2,2,4,130,1,2,{ .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),1; /* unknown rate */ if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,1; /* unknown rate */ } } } },{},{}
-//===================================================================
-// More Cash Shop Items
-//===================================================================
-13500,Insurance60_Package,Life Insurrance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14500,10; },{},{}
-13501,Assorted_Scroll_Box,Experience Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13502,Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5279,604800; },{},{}
-13503,Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,604800; },{},{}
-13504,Deviruchi_Cap_Box,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5281,604800; },{},{}
-13505,Executioner_Box,Executioner Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{}
-13506,Brood_Axe_Box,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1373,604800; },{},{}
-13507,Tomahawk_Box,Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1374,604800; },{},{}
-13508,Bow_Of_Rudra_Box,Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{}
-13509,Cutlas_Box,Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{}
-13510,Solar_Sword_Box,Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{}
-13511,Sword_Breaker_Box,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13024,604800; },{},{}
-13512,Mail_Breaker_Box,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13025,604800; },{},{}
-13513,Moonlight_Sword_Box,Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{}
-13514,Spanner_Box,Wrench Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{}
-13515,Grape_Box,Grape Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 514,10; },{},{}
-13516,Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,5; },{},{}
-13517,Yggdrasilberry_Box,Yggdrasil Berry Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,3; },{},{}
-13518,Weapon_Card_Scroll_Box,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13558,1; },{},{}
-13519,Armor_Card_Scroll_Box,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13559,1; },{},{}
-13520,Helmet_Card_Scroll_Box,Helmet Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13560,1; },{},{}
-13521,Hood_Card_Scroll_Box,Garment Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13561,1; },{},{}
-13522,Hood_Card_Scroll_Box2,Shield Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13562,1; },{},{}
-13523,Shoes_Card_Scroll_Box,Shoes Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13563,1; },{},{}
-13524,Accy_Card_Scroll_Box,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13564,1; },{},{}
-13525,Zeny_Scroll_Box,Zeny Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14508,1; },{},{}
-13526,Pet_Egg_Scroll_Box1_,Pet Egg Scroll Box 12,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12925,30; },{},{}
-13527,Pet_Egg_Scroll_Box2_,Pet Egg Scroll Box 13,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12926,30; },{},{}
-13528,Pet_Egg_Scroll_Box3_,Pet Egg Scroll Box 14,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12932,30; },{},{}
-13529,Pet_Egg_Scroll_Box4_,Pet Egg Scroll Box 15,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12933,30; },{},{}
-13530,Pet_Egg_Scroll_Box5_,Pet Egg Scroll Box 16,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12934,30; },{},{}
-13531,Light_Red_Pot_Box,Light Red Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 598,50; },{},{}
-13532,Light_Orange_Pot_Box,Light Orange Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 599,50; },{},{}
-13533,Light_Yellow_Pot_Box,Light Yellow Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11500,50; },{},{}
-13534,Light_White_Pot_Box,Light White Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11501,50; },{},{}
-13535,Light_Center_Pot_Box,Light Concentration Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14509,20; },{},{}
-13536,Light_Awakening_Pot_Box,Light Awakening Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14510,20; },{},{}
-13537,Light_Berserk_Pot_Box,Light Berserk Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14511,20; },{},{}
-13538,Meteor_10_Scroll_Box,Meteor Storm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14512,10; },{},{}
-13539,Storm_10_Scroll_Box,Storm Gust Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14513,10; },{},{}
-13540,Vermilion_10_Scroll_Box,Lord of Vermilion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14514,10; },{},{}
-13541,Lex_Aeterna_Scroll_Box,Lex Aeterna Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14515,10; },{},{}
-13542,Magnificat_5_Scroll_Box,Magnificat Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14516,10; },{},{}
-13543,CP_Helm_Scroll_Box,Chemical Protection Helm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Helm_Scroll_Box); },{},{}
-13544,CP_Shield_Scroll_Box,Chemical Protection Shield Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Shield_Scroll_Box); },{},{}
-13545,CP_Armor_Scroll_Box,Chemical Protection Armor Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Armor_Scroll_Box); },{},{}
-13546,CP_Weapon_Scroll_Box,Chemical Protection Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Weapon_Scroll_Box); },{},{}
-13547,Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Repair_Scroll_Box); },{},{}
-13548,Big_Bun_Box,Big Bun Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,10; },{},{}
-13549,Pill__Box,Pill Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,10; },{},{}
-13550,Superb_Fish_Slice_Box,Fish Slice Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,10; },{},{}
-13551,Chewy_Ricecake_Box,Chewy Ricecake Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14525,10; },{},{}
-13552,Oriental_Pastry_Box,Pastry Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14526,10; },{},{}
-13553,Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,5; },{},{}
-13554,Weapon_Card_Scroll_Box2,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13565,1; },{},{}
-13555,Weapon_Card_Scroll_Box3,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13566,1; },{},{}
-13556,Armor_Card_Scroll_Box2,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13567,1; },{},{}
-13557,Accy_Card_Scroll_Box2,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13568,1; },{},{}
-13558,Weapon_Card_Scroll,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13559,Armor_Card_Scroll,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13560,Helmet_Card_Scroll,Helmet Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13561,Hood_Card_Scroll,Garment Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13562,Hood_Card_Scroll2,Shield Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13563,Shoes_Card_Scroll,Shoes Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13564,Accy_Card_Scroll,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13565,Weapon_Card_Scroll2,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13566,Weapon_Card_Scroll3,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13567,Armor_Card_Scroll2,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13568,Accy_Card_Scroll2,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13569,PVP_Tele_Scroll_Box,PVP Teleport Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14528,10; },{},{}
-13570,Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,50; },{},{}
-13571,Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,100; },{},{}
-13572,Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,30; },{},{}
-13573,Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,50; },{},{}
-13574,Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,30; },{},{}
-13575,Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,50; },{},{}
-13576,Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,30; },{},{}
-13577,Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,50; },{},{}
-13578,Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,30; },{},{}
-13579,Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,50; },{},{}
-13580,Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,30; },{},{}
-13581,Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,50; },{},{}
-13582,Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,5; },{},{}
-13583,Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,30; },{},{}
-13584,Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,30; },{},{}
-13585,Blessing10_Box50,Blessing Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,50; },{},{}
-13586,Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,30; },{},{}
-13587,Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,50; },{},{}
-13588,Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,30; },{},{}
-13589,Assumptio_5_Box50,Assumptio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,50; },{},{}
-13590,Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,30; },{},{}
-13591,Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,50; },{},{}
-13592,Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,30; },{},{}
-13593,Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,50; },{},{}
-13594,Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,30; },{},{}
-13595,Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,50; },{},{}
-13596,Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,30; },{},{}
-13597,Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,50; },{},{}
-13598,Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,1; },{},{}
-13599,Battle_Manual_Box5,Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,5; },{},{}
-13600,Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; },{},{}
-13601,Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,20; },{},{}
-13602,Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,30; },{},{}
-13603,Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,50; },{},{}
-13604,Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,30; },{},{}
-13605,Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,50; },{},{}
-13606,Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,1; },{},{}
-13607,Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,5; },{},{}
-13608,Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,1; },{},{}
-13609,Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,5; },{},{}
-13610,Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; },{},{}
-13611,Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,5; },{},{}
-13612,Handcuff_Box,Arrest Handcuffs Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2706,1; },{},{}
-13613,Super_Pet_Egg_Box1,Super Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13617,1; },{},{}
-13614,Super_Pet_Egg_Box2,Super Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13618,1; },{},{}
-13615,Super_Pet_Egg_Box3,Super Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13619,1; },{},{}
-13616,Super_Pet_Egg_Box4,Super Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13620,1; },{},{}
-13617,Super_Pet_Egg1,Super Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg1); },{},{}
-13618,Super_Pet_Egg2,Super Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg2); },{},{}
-13619,Super_Pet_Egg3,Super Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg3); },{},{}
-13620,Super_Pet_Egg4,Super Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg4); },{},{}
-13621,Greed_Box30,Greed Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,30; },{},{}
-13622,Greed_Box50,Greed Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,50; },{},{}
-13623,Greed_Box100,Greed Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,100; },{},{}
-13624,Flee_30_Scroll_Box,Evasion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14530,1; },{},{}
-13625,Accuracy_30_Scroll_Box,Concentration Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14531,1; },{},{}
-13626,Super_Card_Pet_Egg_Box1,Super Card Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13630,1; },{},{}
-13627,Super_Card_Pet_Egg_Box2,Super Card Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13631,1; },{},{}
-13628,Super_Card_Pet_Egg_Box3,Super Card Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13632,1; },{},{}
-13629,Super_Card_Pet_Egg_Box4,Super Card Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13633,1; },{},{}
-13630,Super_Card_Pet_Egg1,Super Card Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg1); },{},{}
-13631,Super_Card_Pet_Egg2,Super Card Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg2); },{},{}
-13632,Super_Card_Pet_Egg3,Super Card Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg3); },{},{}
-13633,Super_Card_Pet_Egg4,Super Card Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg4); },{},{}
-13634,Vigorgra_Package1,1 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package1); },{},{}
-13635,Vigorgra_Package2,1 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package2); },{},{}
-13636,Vigorgra_Package3,1 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package3); },{},{}
-13637,Vigorgra_Package4,1 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package4); },{},{}
-13638,Vigorgra_Package5,1 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package5); },{},{}
-13639,Vigorgra_Package6,1 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package6); },{},{}
-13640,Vigorgra_Package7,2 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package7); },{},{}
-13641,Vigorgra_Package8,2 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package8); },{},{}
-13642,Vigorgra_Package9,2 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package9); },{},{}
-13643,Vigorgra_Package10,2 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package10); },{},{}
-13644,Vigorgra_Package11,2 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package11); },{},{}
-13645,Vigorgra_Package12,2 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package12); },{},{}
-13646,Infiltrator_Box1,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1267,604800; },{},{}
-13647,Muramasa_Box1,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1173,604800; },{},{}
-13648,Excalibur_Box1,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13401,604800; },{},{}
-13649,Combat_Knife_Box1,Refined Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13021,604800; },{},{}
-13650,Counter_Dagger_Box1,Refined Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13022,604800; },{},{}
-13651,Kaiser_Knuckle_Box1,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1817,604800; },{},{}
-13652,Pole_Axe_Box1,Refined Pole Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1419,604800; },{},{}
-13653,Mighty_Staff_Box1,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1623,604800; },{},{}
-13654,Right_Epsilon_Box1,Refined Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1372,604800; },{},{}
-13655,Balistar_Box1,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1728,604800; },{},{}
-13656,Diary_Of_Sage_Box1,Refined Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1563,604800; },{},{}
-13657,Asura_Box1,Refined Ashura Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13023,604800; },{},{}
-13658,Apple_Of_Archer_Box1,Refined Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5265,1209600; },{},{}
-13659,Bunny_Band_Box1,Refined Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5266,1209600; },{},{}
-13660,Sahkkat_Box1,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5267,1209600; },{},{}
-13661,Lord_Circlet_Box1,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5268,1209600; },{},{}
-13662,Elven_Ears_Box1,Refined Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2686,1209600; },{},{}
-13663,Steel_Flower_Box1,Refined Romantic Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2687,1209600; },{},{}
-13664,Critical_Ring_Box1,Refined Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2688,604800; },{},{}
-13665,Earring_Box1,Refined Earring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2689,604800; },{},{}
-13666,Ring_Box1,Refined Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2690,604800; },{},{}
-13667,Necklace_Box1,Refined Necklace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2691,604800; },{},{}
-13668,Glove_Box1,Refined Glove Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2692,604800; },{},{}
-13669,Brooch_Box1,Refined Brooch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2693,604800; },{},{}
-13670,Rosary_Box1,Refined Rosary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2694,604800; },{},{}
-13671,Safety_Ring_Box1,Refined Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2695,604800; },{},{}
-13672,Vesper_Core01_Box1,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2696,604800; },{},{}
-13673,Vesper_Core02_Box1,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2697,604800; },{},{}
-13674,Vesper_Core03_Box1,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2698,604800; },{},{}
-13675,Vesper_Core04_Box1,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2699,604800; },{},{}
-13676,Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5279,1209600; },{},{}
-13677,Magestic_Goat_Box1,Refined Majestic Goat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,1209600; },{},{}
-13678,Deviruchi_Cap_Box1,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5281,1209600; },{},{}
-13679,Executioner_Box1,Refined Executioner Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{}
-13680,Brood_Axe_Box1,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1373,604800; },{},{}
-13681,Tomahawk_Box1,Refined Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1374,604800; },{},{}
-13682,Bow_Of_Rudra_Box1,Refined Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{}
-13683,Cutlas_Box1,Refined Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{}
-13684,Solar_Sword_Box1,Refined Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{}
-13685,Sword_Breaker_Box1,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13024,604800; },{},{}
-13686,Mail_Breaker_Box1,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13025,604800; },{},{}
-13687,Moonlight_Sword_Box1,Refined Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{}
-13688,Spanner_Box1,Refined Wrench Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{}
-13689,Bok_Choy_Box,Bok Choy Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7766,100; },{},{}
-13690,Chung_E_Cake_Box,Green Maiden Cake Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7767,100; },{},{}
-13691,Freyja_Overcoat_Box,Freya's Clothes Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2369,604800; },{},{}
-13692,Freyja_Boots_Box,Freya's Boots Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2428,604800; },{},{}
-13693,Freyja_Cape_Box,Freya's Manteau Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2533,604800; },{},{}
-13694,Freyja_Crown_Box,Freya's Crown Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5306,604800; },{},{}
-13695,Battle_Manual25_Box,Field Manual 25% Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,10; },{},{}
-13696,Battle_Manual100_Box,Field Manual 100% Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14533,10; },{},{}
-13697,J_Blessing10_Box,Blessing Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{}
-13698,J_Inc_Agi10_Box,Increase Agility Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{}
-13699,J_Wind_Walk10_Box,Wind Walk Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{}
-13700,J_Adrenaline10_Box,Adrenaline Rush Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{}
-13701,Pet_Egg_Scroll12,Pet Egg Scroll 12,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll12); },{},{}
-13702,Pet_Egg_Scroll13,Pet Egg Scroll 13,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll13); },{},{}
-13703,Pet_Egg_Scroll14,Pet Egg Scroll 14,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll14); },{},{}
-13704,Super_Pet_Egg5,Super Pet Egg 5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg5); },{},{}
-13705,Super_Pet_Egg6,Super Pet Egg 6,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg6); },{},{}
-13706,Super_Pet_Egg7,Super Pet Egg 7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg7); },{},{}
-13707,Super_Pet_Egg8,Super Pet Egg 8,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg8); },{},{}
-13708,Pet_Egg_Scroll_E,Pet Egg Scroll E,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_E); },{},{}
-13709,BRO_Package_1,BRO Package Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13710,Max_Weight_Up_Box,Gym Pass Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,10; },{},{}
-13711,Small_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,10; },{},{}
-13712,Small_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,30; },{},{}
-13713,Small_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,50; },{},{}
-13714,Med_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,10; },{},{}
-13715,Med_Life_Potion_Box30,Medium Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,30; },{},{}
-13716,Med_Life_Potion_Box50,Medium Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,50; },{},{}
-13717,Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,5; },{},{}
-13718,Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,10; },{},{}
-13719,Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,5; },{},{}
-13720,Regeneration_Box10,Regeneration 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,10; },{},{}
-13721,Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,10; },{},{}
-13722,Pecopeco_Hairband_Box,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5286,1; },{},{}
-13723,Red_Glasses_Box,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5288,1; },{},{}
-13724,Whisper_Mask_Box,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5294,1; },{},{}
-13725,Ramen_Hat_Box,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ramen_Hat_Box); },{},{}
-13726,Gold_Box_,Golden Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7777,1; },{},{}
-13727,Silver_Box_,Silver Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7778,1; },{},{}
-13728,Gold_Key1_Box,Golden Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7779,1; },{},{}
-13729,Gold_Key5_Box,Golden Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7779,5; },{},{}
-13730,Silver_Key1_Box,Silver Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7780,1; },{},{}
-13731,Silver_Key5_Box,Silver Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7780,5; },{},{}
-13734,Pecopeco_Hairband_Box1,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5286,1; },{},{}
-13735,Red_Glasses_Box1,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5288,1; },{},{}
-13736,Whisper_Mask_Box1,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5294,1; },{},{}
-13737,Ramen_Hat_Box1,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5293,1; },{},{}
-13738,Glass_Of_Illusion_Box5,Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,5; },{},{}
-13739,Glass_Of_Illusion_Box10,Glass of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,10; },{},{}
-13740,Shadow_Armor_S_Box5,Shadow Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,5; },{},{}
-13741,Shadow_Armor_S_Box10,Shadow Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,10; },{},{}
-13742,Shadow_Armor_S_Box30,Shadow Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,30; },{},{}
-13743,Holy_Armor_S_Box5,Holy Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,5; },{},{}
-13744,Holy_Armor_S_Box10,Holy Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,10; },{},{}
-13745,Holy_Armor_S_Box30,Holy Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,30; },{},{}
-13746,S_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,10; },{},{}
-13747,S_Def_Potion_Box30,Small Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,30; },{},{}
-13748,S_Def_Potion_Box50,Small Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,50; },{},{}
-13749,B_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,10; },{},{}
-13750,B_Def_Potion_Box30,Big Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,30; },{},{}
-13751,B_Def_Potion_Box50,Big Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,50; },{},{}
-13752,S_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,10; },{},{}
-13753,S_Mdef_Potion_Box30,Small Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,30; },{},{}
-13754,S_Mdef_Potion_Box50,Small Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,50; },{},{}
-13755,B_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,10; },{},{}
-13756,B_Mdef_Potion_Box30,Big Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,30; },{},{}
-13757,B_Mdef_Potion_Box50,Big Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,50; },{},{}
-13758,Battle_Manual_X3_Box,Field Manual 300% Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14545,20; },{},{}
-13759,In_Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,50; },{},{}
-13760,Honey_Box,Honey Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 518,100; },{},{}
-13761,Empty_Bottle_Box,Empty Bottle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,500; },{},{}
-13762,In_Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,70; },{},{}
-13763,5_Anniversary_Coin_Box,Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2709,1; },{},{}
-13764,Battle_Manual_Box_TW,Beginner's Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7803,5; },{},{}
-13765,Certificate_TW_Box,Certificate Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getitem 7804,1;*/ },{},{}
-13766,Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,604800; },{},{}
-13767,Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,604800; },{},{}
-13768,Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,604800; },{},{}
-13769,Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,604800; },{},{}
-13770,Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,604800; },{},{}
-13771,Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,604800; },{},{}
-13772,Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,604800; },{},{}
-13773,Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/ },{},{}
-13774,Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,604800; },{},{}
-13775,Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,604800; },{},{}
-13776,Cloak_Of_Survival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,1209600; },{},{}
-13777,Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,1209600; },{},{}
-13778,Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,1209600; },{},{}
-13779,Evil_Wing_Ears_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,1209600; },{},{}
-13780,Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,1209600; },{},{}
-13781,kRO_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,1209600; },{},{}
-13782,Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,1209600; },{},{}
-13783,Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,604800; },{},{}
-13784,Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,604800; },{},{}
-13785,Nagan_Box1,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,86400; },{},{}
-13786,Skewer_Box1,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,86400; },{},{}
-13787,Survival_Rod_Box1,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,86400; },{},{}
-13788,Quadrille_Box1,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,86400; },{},{}
-13789,Great_Axe_Box1,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,86400; },{},{}
-13790,Bloody_Roar_Box1,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,86400; },{},{}
-13791,Hardback_Box1,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,86400; },{},{}
-13792,Fire_Brand_Box1,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13408,86400; },{},{}
-13793,Immaterial_Sword_Box1,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,86400; },{},{}
-13794,Unholy_Touch_Box1,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,86400; },{},{}
-13795,Cloak_Of_Survival_Box1,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,86400; },{},{}
-13796,Masquerade_Box1,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,86400; },{},{}
-13797,Orc_Hero_Helm_Box1,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,86400; },{},{}
-13798,Evil_Wing_Ears_Box1,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,86400; },{},{}
-13799,Dark_Blindfold_Box1,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,86400; },{},{}
-13800,kRO_Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,86400; },{},{}
-13801,Corsair_Box1,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,86400; },{},{}
-13802,Bloody_Iron_Ball_Box1,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,86400; },{},{}
-13803,Spiritual_Ring_Box1,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,86400; },{},{}
-13804,Fire_Cracker_Love_Box,I Love You Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14546,10; },{},{}
-13805,Fire_Cracker_Wday_Box,Whiteday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14547,10; },{},{}
-13806,Fire_Cracker_Vday_Box,Valentine's Day Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14548,10; },{},{}
-13807,Fire_Cracker_Bday_Box,Birthday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14549,10; },{},{}
-13808,Fire_Cracker_Xmas_Box,Xmas Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14550,10; },{},{}
-13809,Blue_Gemstone_Box,Blue Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 717,100; },{},{}
-13810,Blue_Potion_Box,Light Blue Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11502,25; },{},{}
-13811,Food_Box_Lv1,Food Box Vol 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; },{},{}
-13812,Food_Box_Lv2,Food Box Vol 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; },{},{}
-13813,Food_Box_Lv3,Food Box Vol 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; },{},{}
-13814,Indonesia_Box,Healing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 503,100; getitem 12684,10; getitem 607,5; },{},{}
-13815,Knife_Goblin_Box,Knife Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14569,10; },{},{}
-13816,Flail_Goblin_Box,Flail Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14570,10; },{},{}
-13817,Hammer_Goblin_Box,Hammer Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14571,10; },{},{}
-13818,Red_Deleter_Box,Red Deleter Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14572,10; },{},{}
-13819,Diabolic_Box,Diabolic Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14573,10; },{},{}
-13820,Wanderer_Box,Wanderer Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14574,10; },{},{}
-13821,Green_Apple_Box,Green Apple Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7821,10; },{},{}
-13822,Whole_Barbecue_Box,Barbeque Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7822,10; },{},{}
-13823,Meat_Veg_Skewer_Box,Meat Skewer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7823,10; },{},{}
-13824,Spirit_Liquor_Box,Spirit Liquor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7824,10; },{},{}
-13825,Green_Box_,Old Green Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13826,Power_Box1,Power Box 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 682,1; getitem 12123,1; getitem 12122,1; },{},{}
-13827,Power_Box2,Power Box 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 683,1; getitem 12123,1; getitem 12122,1; },{},{}
-13828,Resist_Box1,Resist Box 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12118,1; getitem 12119,1; },{},{}
-13829,Resist_Box2,Resist Box 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12120,1; getitem 12121,1; },{},{}
-13830,Stat_Boost1,Stat Boost 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; },{},{}
-13831,Stat_Boost2,Stat Boost 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13832,Stat_Boost3,Stat Boost 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13833,Stat_Boost4,Stat Boost 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{}
-13834,Dun_Tele_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,5; },{},{}
-13835,Dun_Tele_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,10; },{},{}
-13836,Mbl_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,1; },{},{}
-13837,Mbl_Agi_Dish_Box,Steamed Desert Scorpions Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12251,1; },{},{}
-13838,Mbl_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,1; },{},{}
-13839,Mbl_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12253,1; },{},{}
-13840,Mbl_Luk_Dish_Box,Cooked Nine Tail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12254,1; },{},{}
-13841,Mbl_Vit_Dish_Box,Immortal Stew Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12255,1; },{},{}
-13842,Mbl_Kafra_Card_Box,Payment Statement for Kafra Employee Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12249,1; },{},{}
-13843,Mbl_Battle_Manual_Box,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,1; },{},{}
-13844,Heroic_Stone_Box,Heroic Stone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7825,1; },{},{}
-13845,Mysterious_Travel_Sack1,Mystery Travel Sack A,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack1); },{},{}
-13846,Mysterious_Travel_Sack2,Mystery Travel Sack B,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack2); },{},{}
-13847,Mysterious_Travel_Sack3,Mystery Travel Sack C,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack3); },{},{}
-13848,Mysterious_Travel_Sack4,Mystery Travel Sack D,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack4); },{},{}
-13849,WOB_Box_Rune5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,5; },{},{}
-13850,WOB_Box_Rune10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,10; },{},{}
-13851,WOB_Box_Schawaltz5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,5; },{},{}
-13852,WOB_Box_Schawaltz10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,10; },{},{}
-13853,WOB_Box_Rachel5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,5; },{},{}
-13854,WOB_Box_Rachel10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,10; },{},{}
-13855,WOB_Box_Local5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,5; },{},{}
-13856,WOB_Box_Local10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,10; },{},{}
-13857,Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,5; },{},{}
-13858,Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,10; },{},{}
-13859,Directive_A_Envelope,Directive Envelope A,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2734,1; },{},{}
-13860,Directive_B_Envelope,Directive Envelope B,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2735,1; },{},{}
-13861,Mini_Battle_Manual_Box,Small Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,4; },{},{}
-13862,Trial_Box,Trial Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; getitem 12215,15; getitem 12216,15; },{},{}
-13863,Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{}
-13864,Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5314,604800; },{},{}
-13865,Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5315,604800; },{},{}
-13866,Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5210,1; },{},{}
-13867,Neko_Mimi_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{}
-13868,MFH_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5214,1; },{},{}
-13869,Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5283,1; },{},{}
-13870,New_Style_Box,Beauty Gift Certificate Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7622,1; },{},{}
-13871,Magician_Card_Box,Mage Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/ },{},{}
-13872,Acolyte_Card_Box,Acolyte Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/ },{},{}
-13873,Archer_Card_Box,Archer Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/ },{},{}
-13874,Swordman_Card_Box,Swordman Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/ },{},{}
-13875,Thief_Card_Box,Thief Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/ },{},{}
-13876,Merchant_Card_Box,Merchant Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/ },{},{}
-13877,Clock_Tower_Card_Box,Clock Tower Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; },{},{}
-13878,Geffenia_Card_Box,Geffenia Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4218,1; getitem 4269,1; },{},{}
-13879,Owl_Card_Box,Owl Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4237,1; getitem 4238,1; },{},{}
-13880,Ghost_Card_Box,Ghost Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4193,1; getitem 4294,1; },{},{}
-13881,Nightmare_Card_Box,Nightmare Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4127,1; getitem 4166,1; },{},{}
-13882,Curse_Card_Box,Curse Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4076,4; },{},{}
-13883,Sleep_Card_Box,Sleep Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4024,4; },{},{}
-13884,Freeze_Card_Box,Freeze Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4055,4; },{},{}
-13885,Stun_Card_Box,Stun Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4017,4; },{},{}
-13886,Silence_Card_Box,Silence Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4057,4; },{},{}
-13887,Blind_Card_Box,Blind Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4020,4; },{},{}
-13888,Chaos_Card_Box,Chaos Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4104,4; },{},{}
-13889,Elunium_Box_,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 985,10; },{},{}
-13890,Oridecon_Box_,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,10; },{},{}
-13891,Fire_Converter_Box,Fire Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12114,10; },{},{}
-13892,Water_Converter_Box,Water Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12115,10; },{},{}
-13893,Wind_Converter_Box,Wind Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12117,10; },{},{}
-13894,Earth_Converter_Box,Earth Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12116,10; },{},{}
-13895,Starter_Pack,Starter Pack,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-13896,Mimic_Summon_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,5; },{},{}
-13897,Disguise_Summon_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,5; },{},{}
-13898,Alice_Summon_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,5; },{},{}
-13899,Mimic_Summon_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,10; },{},{}
-13900,Disguise_Summon_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,10; },{},{}
-13901,Alice_Summon_Box10,Alice Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,10; },{},{}
-13902,Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5380,1; },{},{}
-13903,Santa_Poring_Hat_Box,Santa Poring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5381,1; },{},{}
-13904,Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5382,1; },{},{}
-13905,Hard_Core_Set_Box,XM Hardcore Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/ },{},{}
-13906,Kitty_Set_Box,XM Kitty Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/ },{},{}
-13907,Soft_Core_Set_Box,XM Softcore Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/ },{},{}
-13908,Deviruchi_Set_Box,XM Deviruchi Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/ },{},{}
-13909,MVP_Hunt_Box,MVP Hunting Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/ },{},{}
-13910,Brewing_Box,XM Brewing Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/ },{},{}
-13911,Xmas_Pet_Scroll,Christmas Pet Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Xmas_Pet_Scroll); },{},{}
-13912,Party_Blessing_Box,Party Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14588,10; },{},{}
-13913,Party_Inc_Agi_Box,Party Increase Agi 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14589,10; },{},{}
-13914,Party_Assumptio_Box,Party Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14590,10; },{},{}
-13915,Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12287,604800; },{},{}
-13916,Squirrel_Box,Squirrel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12288,604800; },{},{}
-13917,Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12289,604800; },{},{}
-13918,Drooping_W_Kitty_Box,Koneko Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5372,1; },{},{}
-13919,L_Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5374,1; },{},{}
-13920,Satanic_Chain_P_Box,Flying Evil Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5376,1; },{},{}
-13921,Antique_Pipe_Box,Gentleman's Pipe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5377,1; },{},{}
-13922,Rabbit_Ear_Hat_Box,Bunny Top Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5378,1; },{},{}
-13923,Darkness_Helm_Box,Dark Randgris Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5373,1; },{},{}
-13924,L_Orc_Hero_Helm_Box,Orc Hero Headdress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5375,1; },{},{}
-13925,Lucky_Scroll08,Lucky Scroll08,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Scroll08); },{},{}
-13926,Crusader_Card_Box,Crusader Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; },{},{}
-13927,Alchemist_Card_Box,Alchemist Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; },{},{}
-13928,Rogue_Card_Box,Rogue Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; },{},{}
-13929,Bard_Dancer_Card_Box,Bard Dancer Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; },{},{}
-13930,Sage_Card_Box,Sage card box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; },{},{}
-13931,Monk_Card_Box,Monk Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; },{},{}
-13932,Sylph_Box,Sylph Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4345,4; },{},{}
-13933,Undine_Box,Undine Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4350,4; },{},{}
-13934,Salamander_Box,Salamander Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4380,4; },{},{}
-13935,Soul_Box,Soul Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4388,4; },{},{}
-13936,Noum_Bpx,Gnome Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4335,4; },{},{}
-13937,Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5325,1; },{},{}
-13938,Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5187,1; },{},{}
-13939,Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5313,1; },{},{}
-13940,Siege_Tele_Scroll_Box,WoE Teleport Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,100; },{},{}
-13941,Valentine_Scroll_TW,Taiwan Valentine Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13942,Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14009,1; },{},{}
-13943,Squirrel_Box_1m,Squirrel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14010,1; },{},{}
-13944,Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14011,1; },{},{}
-13945,Br_SwordPackage,Swordman Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_SwordPackage); },{},{}
-13946,Br_MagePackage,Magician Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_MagePackage); },{},{}
-13947,Br_AcolPackage,Acolyte Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_AcolPackage); },{},{}
-13948,Br_ArcherPackage,Archer Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_ArcherPackage); },{},{}
-13949,Br_MerPackage,Merchant Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_MerPackage); },{},{}
-13950,Br_ThiefPackage,Thief Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_ThiefPackage); },{},{}
-13951,Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13109,604800; },{},{}
-13952,Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13170,604800; },{},{}
-13953,All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/ },{},{}
-13954,Spiritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2384,604800; },{},{}
-13955,Recuperative_Armor_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2385,604800; },{},{}
-13956,Shelter_Resistance_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2132,604800; },{},{}
-13957,Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2543,604800; },{},{}
-13958,Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2439,604800; },{},{}
-13959,Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5391,604800; },{},{}
-13960,Name_Change_Coupon_Box,Identification Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7623,1; },{},{}
-13961,Mojji_Box,Mochi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 554,5; },{},{}
-13962,Deprotai_Doll_Hat_Box,Defolty Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5340,1; },{},{}
-13963,Claris_Doll_Hat_Box,Glaris Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5341,1; },{},{}
-13964,Sorin_Doll_Hat_Box,Sorin Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5342,1; },{},{}
-13965,Tayelin_Doll_Hat_Box,Tailring Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5343,1; },{},{}
-13966,Binit_Doll_Hat_Box,Vinit Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5344,1; },{},{}
-13967,Debril_Doll_Hat_Box,W Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5345,1; },{},{}
-13968,Bubblegum_Lower_Box,Bubble Gum Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5394,86400; },{},{}
-13969,Lucky_Clip_Box,Lucky Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2742,86400; },{},{}
-13970,Iron_10_Box,Iron Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 998,10; },{},{}
-13971,Steel_10_Box,Steel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 999,10; },{},{}
-13972,Coal_10_Box,Coal Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1003,10; },{},{}
-13973,Poison_Bottle_30_Box,Poison Bottle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,30; },{},{}
-13974,TW_Scroll01,Fisherman Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-13975,Picture_Diary_Box,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,604800; },{},{}
-13976,Mini_Heart_Box,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,604800; },{},{}
-13977,Newcomer_Box,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,604800; },{},{}
-13978,Kid_Box,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,604800; },{},{}
-13979,Magic_Castle_Box,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,604800; },{},{}
-13980,Bulging_Head_Box,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,604800; },{},{}
-13981,Picture_Diary_Box_1m,Diary Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,2592000; },{},{}
-13982,Mini_Heart_Box_1m,Mini Heart Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,2592000; },{},{}
-13983,Newcomer_Box_1m,Freshman Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,2592000; },{},{}
-13984,Kid_Box_1m,Kid Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,2592000; },{},{}
-13985,Magic_Castle_Box_1m,Magic Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,2592000; },{},{}
-13986,Bulging_Head_Box_1m,JJangu Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,2592000; },{},{}
-13987,Ori_Stone_5_Box,Rough Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 756,5; },{},{}
-13988,Ori_Stone_50_Box,Rough Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 756,50; },{},{}
-13989,Acidbomb_10_Box,Acid Bomb 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/ },{},{}
-13990,Job_Manual50_Box,JOB Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14592,10; },{},{}
-13991,Tiger_Mask_Box,Tiger Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{}
-13992,Cat_Hat_Box,Pussy Cat Bell Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{}
-13993,Alice_Doll_Box,Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5137,1; },{},{}
-13994,Speed_Up_Potion_Box5,Speed Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12016,5; },{},{}
-13995,Speed_Up_Potion_Box10,Speed Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12016,10; },{},{}
-13996,Big_Bun_Box100,Big Bun 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,100; },{},{}
-13997,Big_Bun_Box500,Big Bun 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,500; },{},{}
-13998,Giant_Fly_Wing_Box500,Giant Fly Wing 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,500; },{},{}
-13999,Pill__Box100,Pill 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,100; },{},{}
-14000,Pill__Box500,Pill 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,500; },{},{}
-14001,Basic_Siege_Supply_Box,Recruit Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/ },{},{}
-14002,Adv_Siege_Supply_Box,Veteran Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/ },{},{}
-14003,Elite_Siege_Supply_Box,Elite Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/ },{},{}
-14004,Poison_Bottle_10_Box,Poison Bottle 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,10; },{},{}
-14005,Poison_Bottle_5_Box,Poison Bottle 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,5; },{},{}
-14006,F_Drooping_W_Kitty_Box,Evolved Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5372,1; },{},{}
-14007,F_Rabbit_Ear_Hat_Box,Evolved Rabbits Headband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5378,1; },{},{}
-14008,F_L_Orc_Hero_Helm_Box,Evolved Helmet Of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5375,1; },{},{}
-14009,F_Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12287,604800; },{},{}
-14010,F_Squirrel_Box,Squillroll Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12288,604800; },{},{}
-14011,F_Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12289,604800; },{},{}
-14012,F_Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13915,2592000; },{},{}
-14013,F_Squirrel_Box_1m,Squillroll Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13916,2592000; },{},{}
-14014,F_Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13917,2592000; },{},{}
-14015,F_Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13107,604800; },{},{}
-14016,F_Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13170,604800; },{},{}
-14017,F_All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2741,604800; },{},{}
-14018,F_Spritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2384,604800; },{},{}
-14019,F_Recuperative_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2385,604800; },{},{}
-14020,F_Shelter_Resist_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2132,604800; },{},{}
-14021,F_Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2543,604800; },{},{}
-14022,F_Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2439,604800; },{},{}
-14023,F_Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5391,604800; },{},{}
-14024,F_Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5325,1; },{},{}
-14025,F_Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5187,1; },{},{}
-14026,F_Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5313,1; },{},{}
-14027,F_Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5380,1; },{},{}
-14028,F_Santa_Poring_Hat_Box,SantaPoring Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5381,1; },{},{}
-14029,F_Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5382,1; },{},{}
-14030,F_Mimic_Scroll_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,5; },{},{}
-14031,F_Disguise_Scroll_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,5; },{},{}
-14032,F_Alice_Scroll_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,5; },{},{}
-14033,F_Mimic_Scroll_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,10; },{},{}
-14034,F_Disguise_Scroll_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,10; },{},{}
-14035,F_Alice_Scroll_Box10,Alice Summoning 10 Box),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,10; },{},{}
-14036,F_New_Style_Coupon_Box,New Style Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7622,1; },{},{}
-14037,F_Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{}
-14038,F_Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{}
-14039,F_Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5314,604800; },{},{}
-14040,F_Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5315,604800; },{},{}
-14041,F_WOB_Rune_Box5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,5; },{},{}
-14042,F_WOB_Rune_Box10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,10; },{},{}
-14043,F_WOB_Schwaltz_Box5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,5; },{},{}
-14044,F_WOB_Schwaltz_Box10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,10; },{},{}
-14045,F_WOB_Rachel_Box5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,5; },{},{}
-14046,F_WOB_Rachel_Box10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,10; },{},{}
-14047,F_WOB_Local_Box5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,5; },{},{}
-14048,F_WOB_Local_Box10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,10; },{},{}
-14049,F_Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,5; },{},{}
-14050,F_Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,10; },{},{}
-14051,F_Dun_Tel_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,5; },{},{}
-14052,F_Dun_Tel_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,10; },{},{}
-14053,F_Little_Angel_Doll_Box,Little Angel Doll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5324,1; },{},{}
-14054,F_Triple_Poring_Hat_Box,Poring 3 Hats Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5255,1; },{},{}
-14055,F_Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,604800; },{},{}
-14056,F_Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,604800; },{},{}
-14057,F_Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,604800; },{},{}
-14058,F_Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,604800; },{},{}
-14059,F_Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,604800; },{},{}
-14060,F_Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,604800; },{},{}
-14061,F_Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,604800; },{},{}
-14062,F_Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13408,604800; },{},{}
-14063,F_Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,604800; },{},{}
-14064,F_Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,604800; },{},{}
-14065,F_Clack_Of_Servival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,1209600; },{},{}
-14066,F_Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,1209600; },{},{}
-14067,F_Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,1209600; },{},{}
-14068,F_Ear_Of_Devil_Wing_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,1209600; },{},{}
-14069,F_Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,1209600; },{},{}
-14070,F_K_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,1209600; },{},{}
-14071,F_Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,1209600; },{},{}
-14072,F_Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,604800; },{},{}
-14073,F_Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,604800; },{},{}
-14074,F_G_O_I_Box5,Wine Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,5; },{},{}
-14075,F_G_O_I_Box10,Glass Of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,10; },{},{}
-14076,F_Shadow_Armor_S_Box5,Scroll of Shadow Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,5; },{},{}
-14077,F_Shadow_Armor_S_Box10,Scroll of Shadow Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,10; },{},{}
-14078,F_Shadow_Armor_S_Box30,Scroll of Shadow Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,30; },{},{}
-14079,F_Holy_Armor_S_Box5,Scroll of Holy Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,5; },{},{}
-14080,F_Holy_Armor_S_Box10,Scroll of Holy Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,10; },{},{}
-14081,F_Holy_Armor_S_Box30,Scroll of Holy Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,30; },{},{}
-14082,FS_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,10; },{},{}
-14083,FS_Def_Potion_Box30,Small Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,30; },{},{}
-14084,FS_Def_Potion_Box50,Small Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,50; },{},{}
-14085,FB_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,10; },{},{}
-14086,FB_Def_Potion_Box30,Large Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,30; },{},{}
-14087,FB_Def_Potion_Box50,Large Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,50; },{},{}
-14088,FS_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,10; },{},{}
-14089,FS_Mdef_Potion_Box30,Small Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,30; },{},{}
-14090,FS_Mdef_Potion_Box50,Small Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,50; },{},{}
-14091,FB_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,10; },{},{}
-14092,FB_Mdef_Potion_Box30,Large Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,30; },{},{}
-14093,FB_Mdef_Potion_Box50,Large Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,50; },{},{}
-14094,F_Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5210,1; },{},{}
-14095,F_Cat_Hat_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{}
-14096,F_M_F_H_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5214,1; },{},{}
-14097,F_Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5283,1; },{},{}
-14098,F_Pecopeco_Hairband_Box,Peco Peco Hairband Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5286,1209600; },{},{}
-14099,F_Red_Glasses_Box,Red Glasses Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5288,1209600; },{},{}
-14100,F_Whisper_Mask_Box,Whisper Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5294,1209600; },{},{}
-14101,F_Ramen_Hat_Box,Ramen Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5293,1209600; },{},{}
-14102,F_Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,5; },{},{}
-14103,F_Max_Weight_Up_Box,Gym Membership Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,1; },{},{}
-14104,F_S_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,10; },{},{}
-14105,F_S_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,30; },{},{}
-14106,F_S_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,50; },{},{}
-14107,F_M_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,10; },{},{}
-14108,F_M_Life_Potion_Box30,Large Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,30; },{},{}
-14109,F_M_Life_Potion_Box50,Large Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,50; },{},{}
-14110,F_Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,5; },{},{}
-14111,F_Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,10; },{},{}
-14112,F_Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,5; },{},{}
-14113,F_Regeneration_Box10,Regeneration Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,10; },{},{}
-14114,F_Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,10; },{},{}
-14115,F_Infiltrator_Box,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1267,604800; },{},{}
-14116,F_Muramasa_Box,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1173,604800; },{},{}
-14117,F_Excalibur_Box,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13401,604800; },{},{}
-14118,F_Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13021,604800; },{},{}
-14119,F_Counter_Dagger_Box,Counter Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13022,604800; },{},{}
-14120,F_Kaiser_Knuckle_Box,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1817,604800; },{},{}
-14121,F_Mighty_Staff_Box,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1623,604800; },{},{}
-14122,F_Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1372,604800; },{},{}
-14123,F_Balistar_Box,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1728,604800; },{},{}
-14124,F_Diary_Of_Great_Sage,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1563,604800; },{},{}
-14125,F_Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13023,604800; },{},{}
-14126,F_Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5265,1209600; },{},{}
-14127,F_Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5266,1209600; },{},{}
-14128,F_Sahkkat_Box,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5267,1209600; },{},{}
-14129,F_Lord_Circlet_Box,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5268,1209600; },{},{}
-14130,F_Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2686,1209600; },{},{}
-14131,F_Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2687,1209600; },{},{}
-14132,F_Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2688,604800; },{},{}
-14133,F_Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2689,604800; },{},{}
-14134,F_Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2690,604800; },{},{}
-14135,F_Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2691,604800; },{},{}
-14136,F_Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2692,604800; },{},{}
-14137,F_Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2693,604800; },{},{}
-14138,F_Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2694,604800; },{},{}
-14139,F_Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2695,604800; },{},{}
-14140,F_Vesper_Core_Box01,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2696,604800; },{},{}
-14141,F_Vesper_Core_Box02,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2697,604800; },{},{}
-14142,F_Vesper_Core_Box03,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2698,604800; },{},{}
-14143,F_Vesper_Core_Box04,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2699,604800; },{},{}
-14144,F_Vigorgra_Package1,Vigorgra Box1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14145,F_Vigorgra_Package2,Vigorgra Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14146,F_Vigorgra_Package3,Vigorgra Box3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14147,F_Vigorgra_Package4,Vigorgra Box4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14148,F_Vigorgra_Package5,Vigorgra Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{}
-14149,F_Vigorgra_Package6,Vigorgra Box6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{}
-14150,F_Vigorgra_Package7,Vigorgra Box7,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14151,F_Vigorgra_Package8,Vigorgra Box8,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14152,F_Vigorgra_Package9,Start your Journey Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14153,F_Vigorgra_Package10,Siege Mode Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14154,F_Vigorgra_Package11,1 Hour Survival Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{}
-14155,F_Vigorgra_Package12,Weekend Hunting Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{}
-14156,F_Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,10; },{},{}
-14157,F_Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{}
-14158,F_Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{}
-14159,F_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,10; },{},{}
-14160,F_Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,10; },{},{}
-14161,F_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,10; },{},{}
-14162,F_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,10; },{},{}
-14163,F_Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,10; },{},{}
-14164,F_Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,10; },{},{}
-14165,F_Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,10; },{},{}
-14166,F_Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,10; },{},{}
-14167,F_Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; },{},{}
-14168,F_Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,10; },{},{}
-14169,F_Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{}
-14170,F_Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{}
-14171,F_Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,10; getitem 523,10; },{},{}
-14172,F_Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,10; },{},{}
-14173,F_Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{}
-14174,F_Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{}
-14175,F_Megaphone_Box,Megaphone 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,10; },{},{}
-14176,F_Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,10; },{},{}
-14177,F_Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,10; },{},{}
-14178,F_Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,10; },{},{}
-14179,F_Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,50; },{},{}
-14180,F_Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,100; },{},{}
-14181,F_Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,30; },{},{}
-14182,F_Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,50; },{},{}
-14183,F_Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,30; },{},{}
-14184,F_Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,50; },{},{}
-14185,F_Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,30; },{},{}
-14186,F_Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,50; },{},{}
-14187,F_Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,30; },{},{}
-14188,F_Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,50; },{},{}
-14189,F_Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,30; },{},{}
-14190,F_Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,50; },{},{}
-14191,F_Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,5; },{},{}
-14192,F_Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,30; },{},{}
-14193,F_Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,30; },{},{}
-14194,F_Blessing10_Box50,Lv10 Blessing Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,50; },{},{}
-14195,F_Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,30; },{},{}
-14196,F_Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,50; },{},{}
-14197,F_Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,30; },{},{}
-14198,F_Assumptio_5_Box50,Lv5 Assumptio Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,50; },{},{}
-14199,F_Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,30; getitem 523,30; },{},{}
-14200,F_Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,50; getitem 523,50; },{},{}
-14201,F_Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,30; },{},{}
-14202,F_Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,50; },{},{}
-14203,F_Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,30; },{},{}
-14204,F_Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,50; },{},{}
-14205,F_Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,30; },{},{}
-14206,F_Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,50; },{},{}
-14207,F_Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,1; },{},{}
-14208,F_Battle_Manual_Box5,Battle Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,5; },{},{}
-14209,F_Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; },{},{}
-14210,F_Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,20; },{},{}
-14211,F_Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,30; },{},{}
-14212,F_Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,50; },{},{}
-14213,F_Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,30; },{},{}
-14214,F_Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,50; },{},{}
-14215,F_Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,1; },{},{}
-14216,F_Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,5; },{},{}
-14217,F_Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,1; },{},{}
-14218,F_Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,5; },{},{}
-14219,F_Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; },{},{}
-14220,F_Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,5; },{},{}
-14221,MP_Scroll_Box,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,10; },{},{}
-14222,MP_Scroll_Box30,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,30; },{},{}
-14223,MP_Scroll_Box50,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,50; },{},{}
-14224,Quagmire_Scroll_Box,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,10; },{},{}
-14225,Quagmire_Scroll_Box30,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,30; },{},{}
-14226,Quagmire_Scroll_Box50,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,50; },{},{}
-14227,Healing_Staff_Box,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1638,604800; },{},{}
-14228,Praxinus_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2752,604800; },{},{}
-14229,Cherry_Blossom_Scroll,Cherry Blossom Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sakura_Scroll); },{},{}
-14230,Note_Headphones_Box,Note Headphones Box,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5151,1; },{},{}
-14231,Novice_Breastplate_Boxes,Novice Breastplate Boxes,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14232,Yggdrasilberry_Box_,Yggdrasil Berry 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,10; },{},{}
-14233,Dead_Tree_Branch_Box1,Dead Branch 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,10; },{},{}
-14234,Dead_Tree_Branch_Box2,Dead Branch 25 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,25; },{},{}
-14235,Field_Manual_Box_2,Field Manual 2 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; },{},{}
-14236,Steamed_Tongue_Box_20,Steamed Tongue 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,20; },{},{}
-14237,Steamed_Desert_Scorpions_Box_20,Steamed Desert Scorpions Box(20),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,20; },{},{}
-14238,Stew_Of_Immortality_Box_20,Immortal Stew 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,20; },{},{}
-14239,Dragon_Breath_Cocktail_Box_20,Dragon Breath Cocktail 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,20; },{},{}
-14240,Hwergelmir's_Tonic_Box_20,Hwergelmir's Tonic 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,20; },{},{}
-14241,Nine_Tail_Dish_Box_20,Nine Tail Dish 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,20; },{},{}
-14242,Beholder_Ring_Box,Beholder Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/ },{},{}
-14243,Hallow_Ring_Box,Hallow Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/ },{},{}
-14244,Clamorous_Ring_Box,Clamorous Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/ },{},{}
-14245,Chemical_Ring_Box,Chemical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/ },{},{}
-14246,Insecticide_Ring_Box,Insecticide Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/ },{},{}
-14247,Fisher_Ring_Box,Fisher Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/ },{},{}
-14248,Decussate_Ring_Box,Decussate Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/ },{},{}
-14249,Bloody_Ring_Box,Bloody Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/ },{},{}
-14250,Satanic_Ring_Box,Satanic Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/ },{},{}
-14251,Dragoon_Ring_Box,Dragon Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/ },{},{}
-14252,Beholder_Ring_Box2,Beholder Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2753,1; },{},{}
-14253,Hallow_Ring_Box2,Hallow Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2754,1; },{},{}
-14254,Clamorous_Ring_Box2,Clamorous Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2755,1; },{},{}
-14255,Chemical_Ring_Box2,Chemical Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2756,1; },{},{}
-14256,Insecticide_Ring_Box2,Insecticide Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2757,1; },{},{}
-14257,Fisher_Ring_Box2,Fisher Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2758,1; },{},{}
-14258,Decussate_Ring_Box2,Decussate Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2759,1; },{},{}
-14259,Bloody_Ring_Box2,Bloody Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2760,1; },{},{}
-14260,Satanic_Ring_Box2,Satanic Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2761,1; },{},{}
-14261,Dragoon_Ring_Box2,Dragon Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2762,1; },{},{}
-14262,Diary_Magic_Powder_Box,Diary Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,604800; },{},{}
-14263,Mini_Heart_Magic_Powder_Box,Mini Heart Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,604800; },{},{}
-14264,Freshman_Magic_Powder_Box,Freshman Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,604800; },{},{}
-14265,Kid_Magic_Powder_Box,Kid Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,604800; },{},{}
-14266,Magic_Magic_Powder_Box,Magic Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,604800; },{},{}
-14267,JJangu_Magic_Powder_Box,JJangu Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,604800; },{},{}
-14268,Diary_Magic_Powder_Box4,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14269,Mini_Heart_Magic_Powder_Box4,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14270,Freshman_Magic_Powder_Box4,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14271,Kid_Magic_Powder_Box4,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14272,Magic_Magic_Powder_Box4,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14273,JJangu_Magic_Powder_Box4,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14274,Amplification_10_Scroll_Box2,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,10; },{},{}
-14275,Amplification_30_Scroll_Box2,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,30; },{},{}
-14276,Amplification_50_Scroll_Box2,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,50; },{},{}
-14277,Quagmire_10_Scroll_Box2,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,10; },{},{}
-14278,Quagmire_30_Scroll_Box2,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,30; },{},{}
-14279,Quagmire_50_Scroll_Box2,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,50; },{},{}
-14280,Healing_Staff_Box2,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1638,1; },{},{}
-14281,Praccsinos_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2752,1; },{},{}
-14282,Emperium_Box,Emperium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 714,1; },{},{}
-14283,Marriage_Certificate_Box,Written Oath Of Marriage Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6026,1; },{},{}
-14284,Muffler_Box,Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2548,1; },{},{}
-14285,Balkiriah_Shield_Box,Balkiriah Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2137,1; },{},{}
-14286,Skull_Ring_Box,Skull Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2763,1; },{},{}
-14287,Baricade_Repair_Kit,Barricade Repair Kit,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; },{},{}
-14288,Guardian_Stone_Repair_Kit,Guardian Stone Repair Kit,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; },{},{}
-14289,Cloth_Dye_Coupon_Box,New Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6046,1; },{},{}
-14290,Cloth_Dye_Coupon2_Box,Original Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6047,1; },{},{}
-14291,Cloth_Dye_Coupon3_Box,Clothing Dye Coupon Box,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6046,1; },{},{}
-14292,Cloth_Dye_Coupon4_Box,Clothing Dye Coupon Box II,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6047,1; },{},{}
-14293,Mercenary_Contract_Box,Mercenary Contract Box,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,1; },{},{}
-14294,Mercenary_Contract_Box5,Mercenary Contract Box 5ea,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,5; },{},{}
-14295,Mercenary_Contract_Box10,Mercenary Contract Box 10ea,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,10; },{},{}
-14296,Angel_Scroll,Angel Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Angel_Scroll); },{},{}
-14297,Devil_Scroll,Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Devil_Scroll); },{},{}
-14298,Surprise_Scroll,Surprise Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Surprise_Scroll); },{},{}
-14300,Mask_Of_Ifrit_Box,Mask Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5420,1; },{},{}
-14301,Ifrit's_Ear_Box,Ears Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5421,1; },{},{}
-14304,Scuba_Mask_Box,Scuba Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5397,1; },{},{}
-14306,RWC_Special_Scroll,RWC Special Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Special_Scroll); },{},{}
-14307,RWC_Limited_Scroll,RWC Limited Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Limited_Scroll); },{},{}
-14308,Ardor_Scroll,Ardor Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14314,PhreeoniS_Box,Phreeoni Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14597,10; },{},{}
-14315,GhostringS_Box,Ghostring Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14598,10; },{},{}
-14316,July7_Scroll,July7 Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_July7_Scroll); },{},{}
-14317,Bacsojin_Scroll,Bacsojin Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bacsojin_Scroll); },{},{}
-14321,Holy_Sabre_Box,Holy Sabre Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13419,86400; },{},{}
-14322,Book_Of_Prayer_Box,Book of Prayer Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1578,86400; },{},{}
-14323,Phenomena_Whip_Box,Phenomena Whip Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1982,86400; },{},{}
-14324,Staff_Of_Darkness_Box,Staff of Darkness Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1642,86400; },{},{}
-14325,Monk_Knuckle_Box,Monk Knuckle Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1828,86400; },{},{}
-14326,Mace_Of_Madness_Box,Mace of Madness Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1547,86400; },{},{}
-14327,Spear_Of_Excellent_Box,Spear of Excellent Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1427,86400; },{},{}
-14328,Bow_Of_Evil_Box,Bow of Evil Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1744,86400; },{},{}
-14329,Katar_Of_Speed_Box,Katar of Speed Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1283,86400; },{},{}
-14330,Sharpshooter_Revolver_Box,Sharpshooter Revolver Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13111,86400; },{},{}
-14343,Spiked_Scarf_Box,Spiked Scarf Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5462,1; },{},{}
-14344,Rainbow_Scarf_Box,Rainbow Scarf Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5463,1; },{},{}
-14345,Animal_Scroll,Animal Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Animal_Scroll); },{},{}
-14349,Mental_Potion20_Box,Mental Potion 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14600,20; },{},{}
-14350,Mental_Potion50_Box,Mental Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14600,50; },{},{}
-14351,Tyr's_Blessing20_Box,Tyr's Blessing 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14601,20; },{},{}
-14352,Tyr's_Blessing50_Box,Tyr's Blessing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14601,50; },{},{}
-14361,Orc_HeroS_Box,Orc HeroS Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14604,10; },{},{}
-14362,Orc_LoadS_Box,Orc LoadS Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14605,10; },{},{}
-14363,Heart_Scroll,Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Heart_Scroll); },{},{}
-14372,Powder_Snow_Box,Powder Snow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12317,1; },{},{}
-14375,Holy_Celestial_Axe_Box,Celestial Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1383,1; },{},{}
-14376,Angeling_Pot_Box,Angeling Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12350,1; },{},{}
-14377,Shout_Megaphone_Box,Scream Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12351,1; },{},{}
-14379,Love_Daddy_Box,Love Daddy Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5489,1; },{},{}
-14380,Anubis_Helm_Box,Anubis Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5490,1; },{},{}
-14381,Piercing_Box_M,Piercing Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1644,1; },{},{}
-14382,Lich_Bone_Box_M,Lich Bone Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1645,1; },{},{}
-14383,Long_Horn_Box_M,Long Horn Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1428,1; },{},{}
-14384,Hunting_Spear_Box_M,Hunting Spear Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1429,1; },{},{}
-14385,Death_Note_Box_M,Death Note Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1579,1; },{},{}
-14386,Destruction_Box_M,Destruction Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2003,1; },{},{}
-14387,Rider_Insignia_Box_M,Rider Insignia Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2551,1; },{},{}
-14388,Mithril_Cape_Box_M,Mithril Cape Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2552,1; },{},{}
-14389,Sniping_Box_M,Sniping Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2398,1; },{},{}
-14390,Orleans_Box_M,Orleans Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2785,1; },{},{}
-14391,Spiritual_Box_M,Spiritual Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2786,1; },{},{}
-14392,Variant_Box_M,Variant Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2449,1; },{},{}
-14393,Almighty_Charm_Box,Universal Amulet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7945,1; },{},{}
-14407,Xmas_Scroll,Xmas Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14408,New_Year_Scroll,New Year Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_New_Year_Scroll); },{},{}
-//
-14426,Fortune_Sword_Box,Neo Fortune Sword Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13043,86400; },{},{}
-14427,House_Auger_Box,Neo House Auger,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13044,86400; },{},{}
-14428,Kamaitachi_Box,Neo Kamaitachi Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13045,86400; },{},{}
-14429,Berserk_Guitar_Box,Neo Berserk Guitar Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1928,86400; },{},{}
-14430,Doom_Slayer_Box,Neo Doom Slayer Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1386,86400; },{},{}
-14431,Huuma_Blaze_Shuriken_Box,Neo Huuma Blaze Shuriken Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13308,86400; },{},{}
-14432,Odin's_Blessing_Box,Neo Odin's Blessing Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 15001,86400; },{},{}
-14433,Ring_Of_Flame_Lord_Box,Neo Ring of Flame Lord Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2792,86400; },{},{}
-14434,Ring_Of_Resonance_Box,Neo Ring of Resonance Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2793,86400; },{},{}
-14435,Boys_Cap_Box,Neo Boys Cap Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5492,86400; },{},{}
-14436,Ulle's_Cap_Box,Neo Ulle's Cap Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5493,86400; },{},{}
-14437,Sphinx_Helm_Box,Neo Sphinx Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5494,86400; },{},{}
-14438,Honglyun's_Sword_Box,Honglyun's Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13420,1; },{},{}
-14439,Power_Of_Thor_Box,Power Of Thor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5495,1; },{},{}
-14440,Dice_Hat_Box,Dice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5496,1; },{},{}
-14441,King_Tiger_Doll_Hat_Box,King Tiger Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5497,1; },{},{}
-14442,Wondering_Wolf_Helm_Box,Wondering Wolf Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5498,1; },{},{}
-14443,Pizza_Hat_Box,Pizza Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5499,1; },{},{}
-14444,Icecream_Hat_Box,Icecream Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5500,1; },{},{}
-14447,Pirate's_Pride_Box,Pirate's Pride Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5501,1; },{},{}
-14448,Necromencer's_Hood_Box,Necromancer's Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5502,1; },{},{}
-14459,Rabbit_Magic_Hat_Box,Magic Rabbit Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5503,1; },{},{}
-14460,China_Wedding_Veil_Box,RO 5th Wedding Anniversary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5504,1; },{},{}
-14461,Asara_Fairy_Hat_Box,Ashura Fairy Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5505,1; },{},{}
-14466,Valentine_Pledge_Box,Valentine's Emblem Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/ },{},{}
-14469,Ox_Tail_Scroll,Ox Tail Egg,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ox_Tail_Scroll); },{},{}
-//14470,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14471,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14472,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14473,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14474,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14475,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14476,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14477,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14478,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14479,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14480,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14481,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14482,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14483,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//14484,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14485,Academy_Badge_Box,Academy Badge Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2751,1; },{},{}
-14486,Academy_Fresh_Hat_Box,Academy Fresh Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5406,1; },{},{}
-14487,Academy_Gradu_Cap_Box,Academy Gradu Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5407,1; },{},{}
-14488,Blue_Pajamas_Hat_Box,Blue Pajamas Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5506,1; },{},{}
-14489,Pink_Pajamas_Hat_Box,Pink Pajamas Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5507,1; },{},{}
-14490,Shark_Hat_Box,Shark Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5508,1; },{},{}
-14494,Samambaia_Box,Samambaia Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5511,1; },{},{}
-14495,Aquarius_Diadem_Box,Aquarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5512,1; },{},{}
-14496,Aquarius_Crown_Box,Aquarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5513,1; },{},{}
-14497,Pisces_Diadem_Box,Pisces Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5514,1; },{},{}
-14498,Pisces_Crown_Box,Pisces Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5515,1; },{},{}
-14499,Peacock_Feather_Box,Peacock Feather Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5519,1; },{},{}
-14500,Insurance60,Life Insurrance Certificate,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,3600000,0; },{},{}
-14505,Dungeon_1_hour_Ticket,Dungeon 1 Hour Ticket,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "1@sthb",0,0; /*No map+coord info*/ },{},{}
-14506,Dungeon_Ticket,Dungeon Ticket,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "1@sthc",0,0; /*No map+coord info*/ },{},{}
-14508,Zeny_Scroll,Zeny Pet Egg Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,77777);},{},{}
-14509,Light_Center_Pot,Light Concentration Potion,2,800,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{}
-14510,Light_Awakening_Pot,Light Awakening Potion,2,1500,,20,,,,,0xFFF7FEEF,63,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{}
-14511,Light_Berserk_Pot,Light Berserk Potion,2,3000,,20,,,,,0x41E646A6,63,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{}
-14512,Meteor_10_Scroll,Meteor Storm Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_METEOR",10; },{},{}
-14513,Storm_10_Scroll,Storm Gust Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_STORMGUST",10; },{},{}
-14514,Vermilion_10_Scroll,Lord of Vermilion Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_VERMILION",10; },{},{}
-14515,Lex_Aeterna_Scroll,Lex Aeterna Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_LEXAETERNA",1; },{},{}
-14516,Magnificat_5_Scroll,Magnificat Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",5; },{},{}
-14517,CP_Helm_Scroll,Chemical Protection Helm Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_HELM",5; },{},{}
-14518,CP_Shield_Scroll,Chemical Protection Shield Scrol,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_SHIELD",5; },{},{}
-14519,CP_Armor_Scroll,Chemical Protection Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_ARMOR",5; },{},{}
-14520,CP_Weapon_Scroll,Chemical Protection Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_WEAPON",5; },{},{}
-14521,Repair_Scroll,Repair Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; },{},{}
-14522,Big_Bun,Big Bun,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{}
-14523,Pill_,Pill,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,100; },{},{}
-14524,Superb_Fish_Slice,Superb Fish Slice,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{}
-14525,Chewy_Ricecake,Chewy Ricecake,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,1800000,10; },{},{}
-14526,Oriental_Pastry,Oriental Pastry,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,1800000,10; },{},{}
-14527,Dun_Tele_Scroll1,Dungeon Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",1; },{},{}
-14528,PVP_Tele_Scroll,PVP Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "pvp_n_room",52,25; },{},{}
-14529,Greed_Scroll,Greed Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_GREED",1; },{},{}
-14530,Flee_30_Scroll,Evasion Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,1800000,30; },{},{}
-14531,Accuracy_30_Scroll,Concentration Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,1800000,30; },{},{}
-14532,Battle_Manual25,Field Manual 25%,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,25; },{},{}
-14533,Battle_Manual100,Field Manual 100%,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{}
-14534,Small_Life_Potion,Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; },{},{}
-14535,Med_Life_Potion,Medium Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; },{},{}
-14536,Abrasive,Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{}
-14537,Regeneration_Potion,Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; },{},{}
-14538,Glass_Of_Illusion,Glass of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; },{},{}
-14539,Shadow_Armor_S,Shadow Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; },{},{}
-14540,Holy_Armor_S,Holy Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; },{},{}
-14541,S_Def_Potion,Small Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; },{},{}
-14542,B_Def_Potion,Big Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; },{},{}
-14543,S_Mdef_Potion,Small Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; },{},{}
-14544,B_Mdef_Potion,Big Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; },{},{}
-14545,Battle_Manual_X3,Field Manual 300%,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,300; },{},{}
-14546,Fire_Cracker_Love,I Love You Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14547,Fire_Cracker_Wday,Whiteday Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14548,Fire_Cracker_Vday,Valentine's Day Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14549,Fire_Cracker_Bday,Birthday Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14550,Fire_Cracker_Xmas,Xmas Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14551,Str_Dish01_,Fried Grasshopper Legs,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{}
-14552,Str_Dish02_,Seasoned Sticky Webfoot,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{}
-14553,Str_Dish03_,Bomber Steak,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{}
-14554,Int_Dish01_,Grape Juice Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{}
-14555,Int_Dish02_,Autumn Red Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{}
-14556,Int_Dish03_,Honey Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{}
-14557,Vit_Dish01_,Steamed Crab Nippers,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{}
-14558,Vit_Dish02_,Assorted Seafood,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{}
-14559,Vit_Dish03_,Clam Soup,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{}
-14560,Agi_Dish01_,Frog Egg Squid Ink Soup,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{}
-14561,Agi_Dish02_,Smooth Noodle,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{}
-14562,Agi_Dish03_,Tentacle Cheese Gratin,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{}
-14563,Dex_Dish01_,Honey Grape Juice,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{}
-14564,Dex_Dish02_,Chocolate Mousse Cake,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{}
-14565,Dex_Dish03_,Fruit Mix,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{}
-14566,Luk_Dish01_,Fried Monkey Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{}
-14567,Luk_Dish02_,Mixed Juice,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{}
-14568,Luk_Dish03_,Fried Sweet Potato,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{}
-14569,Knife_Goblin_Ring,Knife Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1122; },{},{}
-14570,Flail_Goblin_Ring,Flail Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1123; },{},{}
-14571,Hammer_Goblin_Ring,Hammer Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1125; },{},{}
-14572,Holy_Marble,Holy Marble,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1385; },{},{}
-14573,Red_Burning_Stone,Red Burning Stone,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1382; },{},{}
-14574,Skull_Of_Vagabond,Vagabond's Skull,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1208; },{},{}
-14575,Str_Dish05_,Lutie Lady's Pancake,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{}
-14576,Int_Dish05_,Mastela Fruit Wine,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{}
-14577,Vit_Dish05_,Spicy Fried Bao,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{}
-14578,Agi_Dish05_,Steamed Bat Wing in Pumpkin,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{}
-14579,Dex_Dish05_,Green Salad,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{}
-14580,Luk_Dish05_,Fried Scorpion Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{}
-14581,Dun_Tele_Scroll2,Dungeon Teleport Scroll II,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",2; },{},{}
-14582,WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",1; },{},{}
-14583,WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",2; },{},{}
-14584,WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",3; },{},{}
-14585,WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",4; },{},{}
-14586,Spark_Candy,Jumping Candy,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK; },{},{}
-14587,Repair_Scroll_,Equipment Repair Spell Book,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_REPAIRWEAPON",1; },{},{}
-14588,Pty_Blessing_Scroll,Party Blessing 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_BLESSING",10; },{},{}
-14589,Pty_Inc_Agi_Scroll,Party Increase Agi 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_INCAGI",10; },{},{}
-14590,Pty_Assumptio_Scroll,Party Assumptio 5 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_ASSUMPTIO",5; },{},{}
-14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{}
-14592,Job_Manual50,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_JEXPBOOST,1800000,50; },{},{}
-14593,Magic_Power_Scroll,Mystical Amplification Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "HW_MAGICPOWER",10; },{},{}
-14594,Quagmire_Scroll,Quagmire Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_QUAGMIRE",5; },{},{}
-14595,Unsealed_Magic_Spell,Unsealed Magic Spell,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "yuno_fild09",255,127; },{},{}
-14596,Pierre_Treasurebox,Pierre's Treasure Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ 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); },{},{}
-14597,PhreeoniS,Phreeoni Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; },{},{}
-14598,GhostringS,Ghostring Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; },{},{}
-14599,Greed_Scroll_C,Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_GREED",1; },{},{}
-14600,Mental_Potion,Mental Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800; },{},{}
-14601,Tyr's_Blessing,Tyr's Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{}
-14602,TaogunkaS,Tao Gunka Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA; },{},{}
-14603,MistressS,Mistress Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS; },{},{}
-14604,Orc_HeroS,Orc Hero Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO; },{},{}
-14605,Orc_LoadS,Orc Lord Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD; },{},{}
-14606,Job_Manual25,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14607,Luxurious_Dinner_W,Luxurious Western Food,2,10000,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,3; },{},{}
-14608,Luxurious_Dinner_E,Manchu-Han Imperial Feast,2,20000,,1200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,6; },{},{}
-14609,Spoiled_Cuisine,Spoiled Cuisine,2,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-14611,M_Def_Potion,M Def Potion,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3; },{},{}
-14612,M_Mdef_Potion,M Mdef Potion,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3; },{},{}
-14613,RWC_Scroll_2012,RWC Scroll 2012,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Scroll_2012); },{},{}
-14614,Ex_Def_Potion,Ex Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3; },{},{}
-14616,STR_Biscuit_Stick,Bar Cookie Of Strength,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111); },{},{}
-14617,VIT_Biscuit_Stick,Bar Cookie Of Vitality,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; },{},{}
-14618,AGI_Biscuit_Stick,Bar Cookie Of Agility,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); },{},{}
-14619,INT_Biscuit_Stick,Bar Cookie Of Intelligence,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); },{},{}
-14620,DEX_Biscuit_Stick,Bar Cookie Of Dexterity,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); },{},{}
-14621,LUK_Biscuit_Stick,Bar Cookie Of Lucky,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33); },{},{}
-14623,Golden_Treasure_Box_,Golden Treasure Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getitem callfunc("F_Rand",Devilring card, Angeling card, 11 weapons smelting ticket, armor smelting 11 ticket , horns of the buffalo, ring of recovery, pink bunny costume hair band)*/ },{},{}
-14624,Blue_Scroll,Blue Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blue_Scroll); },{},{}
-14626,Indigo_Scroll,Indigo Scroll,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Indigo_Scroll); },{},{}
-14627,Christmas_Scroll,Christmas Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14628,Costume_Festival_Box,Costume Festival Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14629,Costume_Enchantment_Stone_Box,Costume Enchantment Stone Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1; },{},{}
-//
-14643,Violet_Scroll,Violet Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Violet_Scroll); },{},{}
-14663,Scroll_Sealed_Dark_Lord,Scroll Sealed Dark Lord,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; },{},{}
-14664,Bi_Hwang_Scroll,Bi Hwang Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bi_Hwang_Scroll); },{},{}
-14665,Jung_Bi_Scroll,Jung Bi Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Jung_Bi_Scroll); },{},{}
-14666,Je_Un_Scroll,Je Un Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Je_Un_Scroll); },{},{}
-14667,Yong_Kwang_Scroll,Yong Kwang Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Yong_Kwang_Scroll); },{},{}
-14672,Steel_Fighter_Scroll_Lv20,Steel Fighter Scroll (Lv20),0,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14673,Steel_Fighter_Scroll_Lv25,Steel Fighter Scroll (Lv25),0,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14674,Cup_Of_Boza,Cup Of Boza,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/ },{},{}
-14675,Shadow_Box_II,Shadow Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14679,Article_Sealed_Storm_Scroll,Article Sealed Storm Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14681,Costume_Enchantment_Stone_Box_II,Costume Enchantment Stone Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14682,Sealed_Beelzebub_Scroll,Sealed Beelzebub Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14689,Sealed_Kiel-D-01_Scroll,Sealed Kiel-D-01 Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14695,Costume_Enchant_Stone_Box_3,Costume Enchant Stone Box III,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1; },{},{}
-14696,Sealed_Gloom_Under_Night_Gachapon,Sealed Gloom Under Night Gachapon,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /* 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); */ },{},{}
-14699,Garuda_Scroll,Memorial Garuda Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Garuda_Scroll); },{},{}
-14701,TW_13y_Lucky_Egg_06,Midgard Immortal Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_TW_13y_Lucky_Egg_06); },{},{}
-14704,Gemstone_Shadow_Box,Gemstone Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1; },{},{}
-14705,Sealed_Fallen_Bishop_Hibram_Scroll,Sealed Fallen Bishop Hibram Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; },{},{}
-14713,Sealed_Ifrit_Scroll,Sealed Ifrit Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */ },{},{}
-14717,2013_RWC_Scroll,2013 RWC Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_2013_RWC_Scroll); },{},{}
-14718,Scroll_Turtle_General_Sealed,Scroll Turtle General Sealed,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1; },{},{}
-14723,Limited_Neuralizer_I,(Limited)Neuralizer I,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{}
-14724,Limited_Neuralizer_II,(Limited)Neuralizer II,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{}
-14725,Sealed_Bacsojin_Scroll,Sealed Bacsojin Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; },{},{}
-14726,Grid_Shadow_Box,Grid Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1; },{},{}
-14727,Heal_Shadow_Box,Heal Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1; },{},{}
-14728,Hiding_Shadow_Box,Hiding Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1; },{},{}
-14729,Cloaking_Shadow_Box,Cloaking Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1; },{},{}
-14730,Costume_Festival_Box_II,Costume Festival Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: No clue yet*/ },{},{}
-14731,Teleport_Shadow_Box,Teleport Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1; },{},{}
-14732,Steal_Shadow_Box,Steal Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1; },{},{}
-14733,Sealed_Pharaoh_Scroll,Sealed Pharaoh Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; },{},{}
-14735,Costama_Egg22,Shapeshifter Costume,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Shapeshifter_Costume); },{},{}
-14739,Sealed_General_Egnigem_Cenia_Scroll,Sealed General Egnigem Cenia Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; },{},{}
-14740,Sealed_Vesper_Scroll,Sealed Vesper Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-14741,Imortal_Midgard_Scroll,Midgard Celebration Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Imortal_Midgard_Scroll); },{},{}
-14753,Hero_Midgard_Egg,Hero Midgard Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hero_Midgard_Egg); },{},{}
-14758,Safe_To_Smelting_Scroll,Safe To Smelting Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1; },{},{}
-14765,Limited_Edition_JOB_Battle_Manual,Limited Edition JOB Battle Manual,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_JEXPBOOST,3600000,35; },{},{}
-14766,Limited_Power_Booster,Limited Power Booster,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1; },{},{}
-14805,July_Lucky_Scroll,Almighty Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_July_Lucky_Scroll); },{},{}
-//===================================================================
-// More Armors
-//===================================================================
-15000,Bone_Plate,Bone Plate,4,20,,1000,,60,,1,0x000654E2,18,2,16,,85,1,0,{ bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; },{},{}
-15001,Odin's_Blessing_I,Odin's Blessing,4,0,,0,,10,,0,0xFFFFFFFE,63,2,16,,0,0,0,{},{},{}
-15002,Rune_Plate,Rune Plate,4,0,,0,,95,,1,0x00000080,63,2,16,,99,1,0,{},{},{}
-15003,Freyja_SRobe7,Freyja Soul Robe7,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{}
-15004,Freyja_SRobe30,Freyja Soul Robe30,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{}
-15005,Freyja_SRobe60,Freyja Soul Robe60,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{}
-15006,Freyja_SRobe90,Freyja Soul Robe90,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{}
-15007,Time_Keepr_Robe,Time Keeper Robe,4,30000,,0,,62,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200; },{},{}
-15008,Flame_Sprits_Armor__,Flame Sprits Armor,4,20,,1000,,25,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4; },{},{}
-15009,Para_Team_Uniform1,Eden Team Uniform I,4,0,,0,,35,,0,0xFFFFFFFF,63,2,16,,7,0,0,{ bonus bMaxHP,100; bonus bMaxSP,10; },{},{}
-15010,Para_Team_Uniform2,Eden Team Uniform II,4,0,,0,,46,,0,0xFFFFFFFF,63,2,16,,26,0,0,{ bonus bMaxHP,200; bonus bMaxSP,20; },{},{}
-15011,Para_Team_Uniform3,Eden Team Uniform III,4,0,,0,,58,,0,0xFFFFFFFF,63,2,16,,40,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5; },{},{}
-15012,Puente_Robe,Puente Robe,4,12000,,400,,42,,1,0xFFFFFFFF,63,2,16,,22,1,0,{ bonus bFixedCastrate,-3; bonus bHealPower,5; },{},{}
-15013,Claire_Suits,Claire Suits,4,28000,,2800,,58,,1,0xFFFFFFFE,18,2,16,,22,1,0,{},{},{}
-15014,Ebone_Armor,Ebon Armor,4,40000,,4500,,93,,1,0x00004080,56,2,16,,100,1,0,{},{},{}
-15015,Upg_Adv_Suit,Upg Adv Suit,4,20,,150,,25,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{}
-15016,Upg_Coat,Upg Coat,4,20,,600,,47,,1,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{}
-15017,Upg_Saint_Robe,Upg Saint Robe,4,20,,300,,55,,1,0x00048530,63,2,16,,1,1,0,{ bonus bMdef,5; bonus bMaxHPrate,3; },{},{}
-15018,Upg_Tights,Upg Tights,4,20,,250,,32,,1,0x00080808,63,2,16,,1,1,0,{ bonus bDex,1; bonus bMaxHPrate,3; },{},{}
-15019,Upg_Thief_Cloth,Upg Thief Cloth,4,20,,100,,45,,1,0x02021040,63,2,16,,1,1,0,{ bonus bAgi,1; bonus bMaxHPrate,3; },{},{}
-15020,Upg_Mail,Upg Mail,4,20,,1650,,60,,1,0x000654E2,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{}
-15021,Upg_Formal_Dress,Upg Formal Dress,4,20,,150,,45,,1,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{}
-15022,Brazil_Swimsuit,Brazil Swimsuit,4,20,,100,,1,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20; },{},{}
-15023,Half_Brynhild,Half Brynhild,4,20,,0,,60,,0,0xFFFFFFFF,63,2,16,,47,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback; },{},{}
-15024,Army_Padding,Army Padding,4,0,,10,,10,,0,0xFFFFFFFF,63,2,16,,1,1,0,{},{},{}
-15025,Golden_Rod_Robe,Golden Rod Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{}
-15026,Aqua_Robe,Aqua Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{}
-15027,Crimson_Robe,Crimson Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{}
-15028,Forest_Robe,Forest Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{}
-15029,Robe_Of_Affection,Robe Of Affection,4,20,,300,,22,,0,0x00000100,56,2,16,,100,1,0,{ bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50; },{},{}
-15030,Robe_Of_Judgement,Robe Of Judgement,4,20,,300,,22,,0,0x00000100,56,2,16,,100,1,0,{ 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; },{},{}
-15031,Para_Team_Armor,Paradise Uniform IV,4,0,,0,,70,,0,0xFFFFFFFF,63,2,16,,60,0,0,{ bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{}
-15032,Tidung,Tidung,4,10,,500,,2,,1,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5; },{},{}
-15033,Tutorial_Mattle,Tutorial Mantle,4,0,,600,,37,,0,0x00000000,63,2,16,,1,0,0,{},{},{}
-15034,Tutorial_Mattle_,Tutorial Mantle,4,0,,600,,37,,1,0x00000000,63,2,16,,1,0,0,{},{},{}
-15035,2010_Love_Daddy,2010 Love Dad,4,10,,100,,6,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ 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; },{},{}
-15036,Ur_Plate,Ur's Plate,4,20,,3000,,110,,0,0x00000080,56,2,16,,100,1,0,{ bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bSubEle,Ele_Neutral,5; },{},{}
-15037,Peuz_Plate,Peuz's Plate,4,20,,3000,,110,,0,0x00000080,56,2,16,,100,1,0,{ bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17; },{},{}
-15038,Sabah_Cloth,Sapha's Cloth,4,20,,100,,45,,1,0x00001000,63,2,16,,100,1,0,{ bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20; },{},{}
-15039,Nab_Cloth,Nab's Cloth,4,20,,100,,45,,1,0x00001000,63,2,16,,100,1,0,{ bonus bStr,2; bonus bInt,2; },{},{}
-15040,Prison_Uniform,Prison Uniform,4,10,,1500,,5,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); .@rate = min(.@r,10); bonus bHit,.@rate; bonus bFlee,.@rate; },{},{}
-15041,Boitata_Armor,Boitata Armor,4,20,,600,,45,,1,0xFFFFFFFF,63,2,16,,60,1,0,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5; },{},{}
-15042,White_Wing_Suits,White Wing Suits,4,20,,100,,45,,1,0x00000800,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r; },{},{}
-15043,Black_Wing_Suits,Black Wing Suits,4,20,,100,,45,,1,0x00000800,56,2,16,,100,1,0,{ bonus bInt,2; bonus bBaseAtk,getrefine()*3; },{},{}
-15044,Green_Operation_Coat,Green Surgical Gown,4,56000,,660,,66,,1,0x00040000,63,2,16,,100,1,0,{ bonus bDex,1; bonus bMaxSP,30; },{},{}
-15045,Armor_Of_Valor,Armor Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bHPrecovRate,10; },{},{}
-15046,Siege_Plate,Siege Plate,4,0,,3300,,85,,1,0x006444A2,63,2,16,,95,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; } },{},{}
-15047,Siege_Suits,Siege Suit,4,0,,750,,50,,1,0x636E5CEA,63,2,16,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; } },{},{}
-15048,Siege_Robe,Siege Robe,4,0,,500,,40,,1,0x00818315,63,2,16,,95,1,0,{ bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; .@r = getrefine(); if(.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if(.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; } },{},{}
-15049,Armor_Of_Faith,Armor Of Faith,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; },{},{}
-15050,Armor_Of_Sanctity,Armor Of Sanctity,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; },{},{}
-15051,Bakonawa_Armor,Bakunawa Scale Armor,4,20,,500,,55,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1; },{},{}
-15052,Bayani_Bakonawa_Armor,Bayani Bakunawa Scale Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2; },{},{}
-15053,Special_Ninja_Suit,Special Ninja Suit,4,10000,,1200,,70,,0,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1+(getrefine()/3); },{},{}
-15054,Ninja_Scale_Armor,Ninja Scale Armor,4,10000,,1800,,90,,1,0x02000000,63,2,16,,100,1,0,{ bonus bMaxHPrate,15; bonus bMaxSPrate,-30; },{},{}
-15055,Tenebris_Latitantes,Armor of Nothingness,4,10000,,1500,,60,,1,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; },{},{}
-15056,Special_Ninja_Suit_,Special Ninja Suit,4,10000,,1200,,70,,1,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1+(getrefine()/3); },{},{}
-15057,Pure_White_Apron,Pure White Apron,4,20,,600,0,50,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-15058,Rider_Suit,Rider Suit,4,20,,1000,0,40,0,1,75,7,2,16,,1,1,0,{ bonus bAgi,1+(getrefine()/2); },{},{}
-15059,2011Love_Daddy,2011Love Daddy,4,20,,100,0,80,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-15060,Sky_Blue_Smock,Sky Blue Smock,4,20,,300,0,1,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; } },{},{}
-15061,Egir_Armor,Egir Armor,4,200000,,2600,,55,,1,0xFFFFFFFF,63,2,16,,110,1,0,{ 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; },{},{}
-15062,TE_Woe_Coat,TE Woe Coat,4,0,,0,,15,,0,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{}
-15063,TE_Woe_Chain_Mail,TE Woe Chain Mail,4,0,,0,,25,,0,0x000444A2,63,2,16,,40,1,,{ bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player,15; bonus2 bResEff,Eff_Freeze,25; },{},{}
-15064,TE_Woe_Mage_Coat,TE Woe Mage Coat,4,0,,0,,5,,0,0x00818315,63,2,16,,40,1,,{ bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{}
-15066,Engraved_Armor,Engraved Plate Armor,4,100000,,3000,,120,,1,0x00004082,63,2,16,,150,1,,{ bonus bMdef,25; },{},{}
-15067,Rune_Suit,Rune Suit,4,0,,0,,,,0,0xFFFFFFFF,63,2,16,,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{}
-15068,Im_Angel's_Protection,Advanced Angelic Protection,4,10000,,600,,40,,1,0x00000001,63,2,16,,99,1,0,{ bonus bMdef,30; },{},{}
-15069,Suit_Of_Sid,Suit Of Sid,4,20,,1000,,30,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{}
-15070,Clothes_of_Happiness,Clothes of Happiness,4,10,,1000,,5,,1,0xFFFFFFFF,63,2,16,,1,1,,{ bonus bMdef,5; bonus bLuk,getrefine(); },{},{}
-15071,Valkyrian_Robe,Valkyrian Robe,4,20,,2800,,55,,1,0x000FFF80,58,2,16,,1,1,0,{ 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; },{},{}
-15072,Nectar_Suit,Nectar Suit,4,20,,300,,35,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2); },{},{}
-15073,Anti_Magic_Suit,Anti-Magic Suits,4,10,,1500,,50,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ .@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0); },{},{}
-15074,Geffen_Mage_Robe,Geffen Magic Robe,4,10,,1000,,40,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ .@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2; },{},{}
-15087,Azure_Dragon_Armor,Azure Dragon Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10; },{},{}
-15088,School_Uniform,School Uniform,4,20,,500,,25,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2; },{},{}
-15089,Menswear,Menswear,4,10,,300,,40,,0,0xFFFFFFFE,63,2,16,,80,1,,{ .@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0); },{},{}
-15090,Armor_Of_Gray,Armor of Gray,4,10,,2400,,90,,1,0x000654E2,56,2,16,,120,1,0,{ bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2; },{},{}
-15091,Gray_Robe,Gray Robe,4,20,,1300,,55,,1,0x00018314,56,2,16,,120,1,0,{ bonus2 bSubEle,Ele_Holy,10+getrefine()*2; },{},{}
-15093,Hero_Plate,Hero Plate,4,10,,4000,,120,,1,0x00004082,63,2,16,,160,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_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1; },{},{}
-15094,Hero_Magic_Coat,Hero Magic Coat,4,10,,800,,50,,1,0x00010204,63,2,16,,160,1,,{ 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; } },{},{}
-15095,Hero_Judgement_Shawl,Hero Judgement Shawl,4,10,,500,,77,,1,0x00008110,63,2,16,,160,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(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1; },{},{}
-15096,Hero_Trade_Mail,Hero Trade Mail,4,10,,500,,100,,1,0x00040420,56,2,16,,160,1,,{ 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; },{},{}
-15097,Hero_Hidden_Cloth,Hero Hidden Cloth,4,10,,200,,70,,1,0x00021040,63,2,16,,160,1,0,{ 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; },{},{}
-15098,Hero_Taget_Suits,Hero Target Suit,4,10,,200,,60,,1,0x00080808,56,2,16,,160,1,,{ 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; },{},{}
-15100,Frozen_Breastplate,Frozen Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ bonus bDefEle,Ele_Water; },{},{}
-15101,Harden_Breastplate,Hardened Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ bonus bDefEle,Ele_Earth; },{},{}
-15102,Hunter_Mail,Hunter Mail,4,20,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; },{},{}
-15103,Kirin_Armor,Kirin Armor,4,10,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,,,{ bonus bDefEle,Ele_Holy; },{},{}
-15104,FishingMan_Mail,FishingMan Mail,4,10,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,,,{ 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; } },{},{}
-15105,Kaftan,Kaftan,4,20,,400,,13,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; },{},{}
-15106,Engineer_Mail,Engineer Mail,4,20,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,1,0,{ .@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; } },{},{}
-15108,Venomous_Insect_Armor,Venomous Insect Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10; },{},{}
-15110,Supplement_Part_Str,Supplement Part Str,4,25000,,2000,,80,,,0x00000400,56,2,16,,100,1,0,{ bonus2 bAddClass,Class_All,5+getrefine()/4; },{},{}
-15111,Upgrade_Part_Plate,Reinforced Parts - Gloves,4,10,,3000,,110,,,0x00000400,56,2,16,,100,1,,{ 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; } },{},{}
-15116,Airship_Armor,Airship's Armor,4,10,,700,,100,,0,0xFFFFFFFF,63,2,16,,125,0,,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; },{},{}
-15117,Felock_Armor,Felrock's Armor,4,10,,750,,70,,0,0xFFFFFFFF,63,2,16,,125,1,,{ 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; } },{},{}
-15121,Robe_Of_Sarah,Sarah's Battle Robe,4,10,,800,,35,,1,0xFFFFFFFF,63,2,16,,145,1,,{ autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC; },{},{}
-15123,Whikebain_Suit,Whikebain Suit,4,0,,900,,56,,1,0x00001000,56,2,16,,105,1,,{ .@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */ },{},{}
-15125,Female_Diver_Suit,Female Diver's Suit,4,20,,300,,20,,1,0xFFFFFFFF,63,2,16,,80,1,0,{ bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; } },{},{}
-15126,Female_Poring_Balloon,Private Doram Suits,4,20,,700,,80,,1,0x80000000,7,2,16,,100,1,,{ bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r; },{},{}
-15128,Excelion_Suit,Excelion Suit,4,20,,1000,,100,,0,0xFFFFFFFF,63,2,16,,99,1,,{ bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor; },{},{}
-15129,Blue_Bellflower_Hat,Luxury Doram Suit,4,20,,800,,100,,1,0x80000000,7,2,16,,140,1,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r; },{},{}
-15138,Aegir_Armor,Aegir Armor,4,10,,1600,,25,,1,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor; },{},{}
-15141,Rift_Ancient_Armor,Rift Ancient Armor,4,10,,500,,30,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100; },{},{}
-15143,Vermin_Cloth,Vermin Cloth,4,10,,1200,,30,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r); },{},{}
-15144,Agriculture_Clothes,Agriculture Clothes,4,10,,1200,,30,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r; },{},{}
-15145,EvilDragon_Armor,Evil Dragon Armor,4,0,,4000,,60,,1,0xFFFFFFFF,63,2,16,,,1,,{ .@r = getrefine(); bonus2 bHPDrainRate,100,(.@r>=10)?(3):((.@r>=9)?(4):((.@r>=8)?(6):(0))); bonus2 bSPDrainRate,100,(.@r>=10)?(5):((.@r>=9)?(3):((.@r>=8)?(2):(0))); /* Confirm: Success rate and it says no effect if with Rideword, Vanargandr Helm, or Piece Of Angent Skin */ },{},{}
-15146,Flattery_Robe,Flattery Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); },{},{}
-15147,Invective_Robe,Invective Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; },{},{}
-15150,White_Shirt,White Shirt,4,20,,50,,25,,1,0x80000000,7,2,16,,6,1,,{ bonus bMaxHP,70; bonus bFlee,5; },{},{}
-15151,White_Eco-Shirt,White Eco-Shirt,4,20,,100,,40,,1,0x80000000,7,2,16,,15,1,,{ bonus bMaxHP,150; bonus bFlee,10; },{},{}
-15152,Unity_Mail,Unity Mail,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); } },{},{}
-15153,Unity_Mantle,Unity Mantle,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); } },{},{}
-15154,Unity_Suit,Unity Suit,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); } },{},{}
-15155,Unity_Robe,Unity Robe,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); } },{},{}
-15156,Elegant_Doram_Suit,Elegant Doram Suit,4,20,,900,,120,,1,0x80000000,7,2,16,,175,1,,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5; },{},{}
-15162,Lounge_Suit,Lounge Suit,4,20,,300,,40,,1,0xFFFFFFFE,63,2,16,,80,1,,{ bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; } },{},{}
-15163,Fictitious_Robe,Agenda Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val; },{},{}
-15164,Consultative_Robe,Consultation Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3; },{},{}
-15165,Pure_White_Marching_Hat,Pure White Marching Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,60,1,1470,{ .@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */ },{},{}
-15166,Rosary_Necklace,Rosary Necklace,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,60,0,1471,{ bonus bFlee2,2; bonus bHealPower,3; },{},{}
-15169,Kardui_Robe,Kardui Robe,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; if(getrefine()>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if(getrefine()>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; bonus bUnbreakableArmor,1; } if(getrefine()>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } },{},{}
-15174,Surfer_Swimsuit,Surfer Swimsuit,4,20,,100,,1,,1,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5; },{},{}
-15175,Flame_Dragon_Armor,Flame Dragon Armor,4,20,,400,,100,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ .@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; },{},{}
-15176,Vigilante_Suit,Vigilante Suit,4,0,,500,,50,,0,0x00020000,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; },{},{}
-15177,Elemental_Robe,Elemental Robe,4,0,,500,,40,,0,0x00010000,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50; },{},{}
-15178,Golden_Ninja_Suit,Golden Ninja Suit,4,0,,500,,50,,0,0x20000000,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; },{},{}
-15179,Mine_Worker's_Vest,Mine Worker's Vest,4,0,,1500,,80,,0,0x00000400,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5; },{},{}
-15180,Hippie_Clothes,Hippie Clothes,4,0,,50,,50,,0,0x00080000,56,2,16,,100,1,0,{ bonus bBaseAtk,20; if (.@r >= getrefine()) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; },{},{}
-15181,Para_Team_Uniform100,Awakened Eden Group Uniform I,4,20,,0,,80,,0,0xFFFFFFFF,63,2,16,,100,,,{ bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7; },{},{}
-15182,Para_Team_Uniform115,Awakened Eden Group Uniform II,4,20,,0,,85,,0,0xFFFFFFFF,63,2,16,,115,,,{ bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; },{},{}
-15183,Para_Team_Uniform130,Awakened Eden Group Uniform III,4,20,,0,,90,,0,0xFFFFFFFF,63,2,16,,130,,,{ bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; },{},{}
-15184,Para_Team_Uniform145,Awakened Eden Group Uniform IV,4,20,,0,,100,,0,0xFFFFFFFF,63,2,16,,145,,,{ bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; },{},{}
-15185,Para_Team_Uniform160,Awakened Eden Group Uniform V,4,20,,0,,100,,0,0xFFFFFFFF,63,2,16,,160,,,{ bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; },{},{}
-15186,Kafra_Uniform,Kafra Uniform,4,20,,500,,40,,1,0xFFFFFFFF,63,2,16,,1,1,,{ 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; } },{},{}
-15189,Einherjar_Armor,Einherjar Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,90,1,,{ bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if(.@r>=8){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; } },{},{}
-15191,Khalitzburg_Knight_Armor,Khalitzburg Knight Armor,4,20,,100,,45,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{}
-15195,Illusion_Puente_Robe,Illusion Puente Robe,4,20,,400,,52,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r); },{},{}
-15204,Abyss_Dress,Abyss Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@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; } },{},{}
-15205,Medical_Scrubs,Medical Scrubs,4,20,,1000,,50,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@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,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; },{},{}
-15209,Drake_Coat,Drake Coat,4,20,,1200,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15212,YSF01_Plate,YSF01 Plate,4,0,,2100,,78,,1,0xFFFFFFFF,63,2,16,,170,1,0,{ .@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; } },{},{}
-15280,S_Cri_Hit_Armor,Critical Hit Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; },{},{}
-15283,Mighty_Black_Threaded_Armor,Mighty Black Threaded Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15348,Illusion_Goibne_Armor,Illusion Goibne Armor,4,0,,3500,,158,,1,0xFFFFFFFE,63,2,16,,130,1,0,{ bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } },{},{}
-15352,Nature_Dress,Nature Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@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 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player,.@a; bonus2 bMagicAddRace,RC_Player,.@a; },{},{}
-15376,Illusion_Armor_A-type,Illusion Armor A-type,4,0,,1000,,105,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ .@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; } },{},{}
-15377,Illusion_Armor_B-type,Illusion Armor B-type,4,0,,1000,,105,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ .@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; } },{},{}
-15378,Lava_Leather_Armor,Lava Leather Armor,4,20,,1500,,85,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50; },{},{}
-15379,Lava_Leather_Suit,Lava Leather Suit,4,20,,1000,,70,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10; },{},{}
-15380,Lava_Leather_Robe,Lava Leather Robe,4,20,,750,,55,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25; },{},{}
-15384,Ritual_Robes,Ritual Robes,4,10,,400,,0,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15405,Fafnir_Scale,Fafnir Scale,4,20,,1500,,120,,0,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15409,Bloody_Doll's_Dress,Bloody Doll's Dress,4,10,,500,,40,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor; },{},{}
-15417,Armor_of_Purple_Thread,Armor of Purple Thread,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15419,Mighty_White_Threaded_Armor,Mighty White Threaded Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@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; } },{},{}
-15420,Ice_Prison_Dress,Ice Prison Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@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,.@a; bonus2 bMagicAddRace,RC_Player,.@a; },{},{}
-//===================================================================
-// More Maces
-//===================================================================
-15388,King_Schmidt_Suit,King Schmidt's Suit,4,0,0,900,,150,,1,0xFFFFFFFF,63,2,16,,130,1,,{ .@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; } },{},{}
-15389,King_Schmidt_Manteau,King Schmidt's Manteau,4,0,0,600,,70,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@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; } },{},{}
-16000,Erde,Erde,5,20,,500,130,,1,2,0x0004C5B2,18,2,2,3,50,1,8,{ bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; },{},{}
-16001,Red_Square_Bag,Red Square Bag,5,20,,500,130,,1,2,0x0004C5B2,18,2,2,3,50,1,8,{ 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; },{},{}
-16002,Stunner_C,Stunner,5,0,,0,175,,1,0,0x00008110,63,2,2,3,1,0,8,{ bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; },{},{}
-16003,Carga_Mace,Carga Mace,5,20,,1500,175,,1,2,0x0004C5B2,63,2,2,3,100,1,8,{},{},{}
-16004,P_Mace1,Eden Mace I,5,0,,0,142,,1,0,0x0004C5B2,63,2,2,2,26,0,8,{},{},{}
-16005,P_Mace2,Eden Mace II,5,0,,0,163,,1,0,0x0004C5B2,63,2,2,2,40,0,8,{},{},{}
-16006,Tourist_Mace,Tourist Mace,5,0,,500,45,,1,0,0x0004C5B3,63,2,2,1,1,0,8,{ bonus bInt,1; bonus bAgi,1; },{},{}
-16007,Mjolnir_C,Mjolnir,5,20,,0,250,,1,0,0x000444A2,63,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40; },{},{}
-16008,F_Spanner_C,Spanner,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{},{},{}
-16009,E_Spanner_C,Spanner,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{},{},{}
-16010,Red_Ether_Bag,Red Ether Bag,5,20,,1000,15:100,,1,1,0x0004C5B2,63,2,2,3,102,1,8,{ .@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; } },{},{}
-16011,Adventure_Mace,Adventure Mace,5,0,,0,60,,1,0,0x00008110,63,2,2,1,1,0,8,{},{},{}
-16012,Academy_Mace,Academy Mace,5,0,,1000,110,,1,1,0x00008110,63,2,2,1,1,1,8,{},{},{}
-16013,Mace_Of_Judgement,Mace Of Judgement,5,20,,1200,140:180,,1,2,0x00000100,56,2,2,3,100,1,8,{ 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; }"; },{},{}
-16014,P_Mace3,Eden Mace III,5,0,,0,172,,1,0,0x0004C5B3,63,2,2,3,60,0,8,{},{},{}
-16015,Cat_Club,Cat Club,5,20,,700,88,,1,3,0x0004C5B3,63,2,2,1,1,1,8,{ bonus2 bAddRace,RC_Brute,15; },{},{}
-16016,Tuna,Tuna,5,0,,0,180,,1,0,0x0004C5B3,63,2,2,1,50,0,8,{ 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; },{},{}
-16017,Bloody_Cross,Bloody Cross,5,20,,1500,170,,1,0,0x00008110,63,2,2,4,100,1,8,{ bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20); },{},{}
-16018,Mace_Of_Judgement2,Empowered Mace Of Judgement,5,20,,1200,170:180,,1,1,0x00000100,56,2,2,3,130,1,8,{ 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; }"; },{},{}
-16019,Upg_Mace,Upg Mace,5,20,,800,80,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{}
-16020,Velum_Stunner,Vellum Stunner,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,.@r; },{},{}
-16021,Velum_Flail,Vellum Flail,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r; },{},{}
-16022,Nemesis_,Nemesis,5,20,,900,120,,1,2,0x00008110,63,2,2,4,60,1,8,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; },{},{}
-16023,Metal_Mace,Metal Mace,5,20,,0,80,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-16024,Quadrille_,Quadrille,5,10,,900,165,,,2,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{}
-16025,TE_Woe_Mace,TE Woe Mace,5,0,,0,120,,1,0,0x0004C5B3,63,2,2,3,40,1,8,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{}
-16026,RWC_Memory_Mace,RWC Memory Mace,5,20,,800,100,,1,1,0x0004C5B2,63,2,2,3,1,1,8,{ 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; } },{},{}
-16027,Hammer_Of_Evil_Slayer,Evil Slayer Destroyer Hammer,5,10,,1350,125,,1,1,0x0004C5B3,63,2,2,3,100,1,8,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); },{},{}
-16028,Thanos_Hammer,Thanos Hammer,5,10,,3000,180:120,,1,1,0x0004C5B2,56,2,2,4,120,1,8,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-16029,Noble_Cross,Noble Cross,5,10,,1500,195:150,,,1,0x00000010,58,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; },{},{}
-16030,Pilebuncker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{}
-16031,Pilebuncker_P,Pile Bunker P,5,20,,4000,450,,1,,0x00000400,56,2,2,4,130,1,8,{ bonus bBaseAtk,getrefine()*5; },{},{}
-16032,Pilebuncker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{}
-16033,Robot's_Arm,Robot's Mechanical Arm,5,20,,3000,195,,1,2,0x00000400,56,2,2,4,130,1,8,{ bonus bUnbreakableWeapon; bonus bCritical,20; },{},{}
-16034,Half_Mjolnir,Half Mjolnir,5,20,,6000,350,,1,0,0x000444A2,63,2,2,4,95,0,8,{ 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; },{},{}
-16035,Half_BF_Morning_Star1,Half BF Morning Star1,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-16036,Ru_Blue_Mace,Blue Mace,5,10,,1500,170,,1,1,0x00008000,56,2,2,3,100,1,8,{ bonus bVit,5; bonus bInt,5; },{},{}
-16037,Ru_Gold_Mace,Ru Gold Mace,5,0,,1500,170,,1,2,0x00008000,56,2,2,3,120,1,8,{ bonus bVit,8; bonus bInt,8; },{},{}
-16038,Infinity_Mace,Infinity Mace,5,10,,500,155,,1,1,0x0004C780,56,2,2,4,100,1,8,{},{},{}
-16039,Spoon,Spoon,5,10,,1000,80,,1,1,0x0004C5B3,63,2,2,3,40,1,8,{ bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000; },{},{}
-16040,Crimson_Mace,Crimson Mace,5,20,,800,80,,1,2,0x0004C5B3,63,2,2,3,70,1,8,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-16041,Mace_of_Vicious_Mind,Mace of Vicious Mind,5,20,,1300,130,,1,1,0x0004C5B3,63,2,2,4,160,1,8,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{}
-16043,Meteor_Strike,Meteor Strike,5,0,,20000,1,,1,2,0x00000001,63,2,2,4,110,1,8,{ 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; },{},{}
-16048,Unity_Mace,Unity Mace,5,20,,400,76,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-16051,Valkyrie_Hammer_,Valkyrie Hammer,5,0,,100,50,,1,4,0x0004C5B3,63,2,2,4,70,1,8,{ .@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; } },{},{}
-16060,Liquor_Bottle,Liquor Bottle,5,0,,700,120,,1,3,0x0004C5B3,63,2,2,3,100,1,8,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine()); },{},{}
-16063,Illusion_Long_Mace,Illusion Long Mace,5,20,,800,185,,3,2,0x00008110,63,2,2,4,99,1,8,{ bonus bLongAtkDef,(10+3*(getrefine()/2)); },{},{}
-16065,Illusion_Iron_Driver,Illusion Iron Driver,5,0,,2000,210,,2,2,0x00000100,56,2,2,4,120,1,8,{ .@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r); },{},{}
-16088,Sapphire_Mace-OS,Sapphire Mace-OS,5,20,,800,185,,1,2,0x00040000,56,2,2,4,130,1,8,{ .@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; } } } },{},{}
-16089,Ultio-OS,Ultio-OS,5,20,,1200,150:170,,1,2,0x00000100,56,2,2,4,130,1,8,{ .@r = getrefine(); bonus bMatkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } },{},{}
-16092,Engine_Pilebuncker,Engine Pilebuncker,5,0,,3200,450,,1,2,0x00000400,56,2,2,4,170,1,8,{ .@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; },{},{}
-16093,Coolant_Injection,Coolant Injection,5,0,,1400,210,,1,2,0x00040000,56,2,2,4,170,1,8,{ .@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; },{},{}
-16094,Gene_Rod,Gene Rod,5,0,,1400,195,,1,2,0x00040000,56,2,2,4,170,1,8,{ .@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; },{},{}
-16095,Lucis_Flail,Lucis Flail,5,,,1000,180:160,,1,2,0x00000100,56,2,2,4,170,1,8,{ .@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 */ },{},{}
-16096,Bright_Pendulum,Bright Pendulum,5,0,,1300,210,,1,2,0x00008000,56,2,2,4,170,1,8,{ .@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; },{},{}
-//===================================================================
-// More Rental Boxes
-//===================================================================
-16131,Lady_Tanee_Doll_Box,Lady Tanee Doll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5526,1; },{},{}
-16132,Lunatic_Hat_Box,Lunatic Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5527,1; },{},{}
-16133,G_Staff_Of_Light_Box,Staff Of Light Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2006,1; },{},{}
-16134,King_Frog_Hat_Box,Frog King Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5528,1; },{},{}
-16135,Evil's_Bone_Hat_Box,Satanic Bone Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5529,1; },{},{}
-16185,Raven_Cap_Box,Raven Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5530,1; },{},{}
-16186,B_Dragon_Hat_Box,Baby Dragon Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5531,1; },{},{}
-16192,Quati_Hat_Box,Kwati Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5537,1; },{},{}
-16193,Tucan_Hat_Box,Tucan Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5538,1; },{},{}
-16194,Jaguar_Hat_Box,Jaguar Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5539,1; },{},{}
-16195,Tw_March_Scroll,Tw March Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16226,Aries_Diadem_Box,Aries Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5545,1; },{},{}
-16227,Aries_Crown_Box,Aries Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5546,1; },{},{}
-16228,RJC_Katusa_Box,RJC Katusa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5547,1; },{},{}
-16229,Scarlet_Rose_Box,Scarlet Rose Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5548,1; },{},{}
-16230,Taurus_Diadem_Box,Taurus Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5549,1; },{},{}
-16231,Taurus_Crown_Box,Taurus Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5550,1; },{},{}
-16232,Reginleif_Box,Reginleif Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5471,1; },{},{}
-16235,Octopus_Hat_Box,Octopus Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5554,1; },{},{}
-16236,Leaf_Cat_Hat_Box,Leaf Cat Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5555,1; },{},{}
-16237,Fur_Seal_Hat_Box,Fur Seal Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5556,1; },{},{}
-16238,Wild_Rose_Hat_Box,Wild Rose Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5557,1; },{},{}
-16239,Saci_Hat_Box,Saci Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5558,1; },{},{}
-16244,Dolor_Hat_Box,Dolor Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5563,1; },{},{}
-16245,Tw_April_Scroll,Tw April Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_April_Scroll); },{},{}
-16246,Crown_Of_Deceit_Box,Crown Of Deceit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5564,1; },{},{}
-16247,Dragon_Arhat_Mask_Box,Dragon Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5565,1; },{},{}
-16248,Tiger_Arhat_Mask_Box,Tiger Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5566,1; },{},{}
-16249,Knight_Gift_Box,Knight Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16250,Valkyrie's_Gift_Box,Valkyrie's Gift Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5826,1; },{},{}
-16251,Gemini_Diadem_Box,Gemini Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5569,1; },{},{}
-16252,Gemini_Crown_Box,Gemini Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5570,1; },{},{}
-16253,Rabbit_Scroll,Rabbit Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16254,Energizing_Potion_Box,Energizing Potion Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16257,Buddah_Scroll,Buddah Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Buddah_Scroll); },{},{}
-16258,HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,5; },{},{}
-16259,HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,5; },{},{}
-16260,HD_Bradium_Box10,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,10; },{},{}
-16261,HD_Carnium_Box10,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,10; },{},{}
-16262,F_HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,5; },{},{}
-16263,F_HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,5; },{},{}
-16264,HD_Bradium_10_Box2,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,10; },{},{}
-16265,HD_Carnium_10_Box2,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,10; },{},{}
-16266,Indonesia_Beret_Box,Indonesia Beret Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5580,1; },{},{}
-16267,HE_Battle_Manual_Box,HE Battle Manual Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12411,10; },{},{}
-16268,HE_Bubble_Gum_Box,HE Bubble Gum Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12412,10; },{},{}
-16269,Cancer_Diadem_Box,Cancer Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5581,1; },{},{}
-16270,Cancer_Crown_Box,Cancer Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5582,1; },{},{}
-16304,Evil_Incarnation_Disable,Evil Incarnation,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Evil_Incarnation); },{},{}
-16305,Upg_Guard_Box,Upg Guard Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2149,1; },{},{}
-16306,F_Upg_Guard_Box,F Upg Guard Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2149,1; },{},{}
-16307,Upg_Buckler_Box,Upg Buckler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{}
-16308,F_Upg_Buckler_Box,F Upg Buckler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{}
-16309,Upg_Shield_Box,Upg Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2151,1; },{},{}
-16310,F_Upg_Shield_Box,F Upg Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2151,1; },{},{}
-16311,Upg_Shoes_Box,Upg Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2459,1; },{},{}
-16312,F_Upg_Shoes_Box,F Upg Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2459,1; },{},{}
-16313,Upg_Boots_Box,Upg Boots Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2460,1; },{},{}
-16314,F_Upg_Boots_Box,F Upg Boots Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2460,1; },{},{}
-16315,Upg_Greave_Box,Upg Greave Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2461,1; },{},{}
-16316,F_Upg_Greave_Box,F Upg Greave Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2461,1; },{},{}
-16317,Upg_Hood_Box,Upg Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2561,1; },{},{}
-16318,F_Upg_Hood_Box,F Upg Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2561,1; },{},{}
-16319,Upg_Muffler_Box,Upg Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2562,1; },{},{}
-16320,F_Upg_Muffler_Box,F Upg Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2562,1; },{},{}
-16321,Upg_Manteau_Box,Upg Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2563,1; },{},{}
-16322,F_Upg_Manteau_Box,F Upg Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2563,1; },{},{}
-16323,Upg_Clip_Box,Upg Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2828,1; },{},{}
-16324,F_Upg_Clip_Box,F Upg Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2828,1; },{},{}
-16327,Upg_Adv_Suit_Box,Upg Adv Suit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15015,1; },{},{}
-16328,F_Upg_Adv_Suit_Box,F Upg Adv Suit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15015,1; },{},{}
-16329,Upg_Coat_Box,Upg Coat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15016,1; },{},{}
-16330,F_Upg_Coat_Box,F Upg Coat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15016,1; },{},{}
-16331,Upg_Saint_Robe_Box,Upg Saint Robe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15017,1; },{},{}
-16332,F_Upg_Saint_Robe_Box,F Upg Saint Robe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15017,1; },{},{}
-16333,Upg_Tights_Box,Upg Tights Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15018,1; },{},{}
-16334,F_Upg_Tights_Box,F Upg Tights Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15018,1; },{},{}
-16335,Upg_Thief_Cloth_Box,Upg Thief Cloth Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15019,1; },{},{}
-16336,F_Upg_Thief_Cloth_Box,F Upg Thief Cloth Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15019,1; },{},{}
-16337,Upg_Mail_Box,Upg Mail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15020,1; },{},{}
-16338,F_Upg_Mail_Box,F Upg Mail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15020,1; },{},{}
-16339,Upg_Formal_Dress_Box,Upg Formal Dress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15021,1; },{},{}
-16340,F_Upg_Formal_Dress_Box,F Upg Formal Dress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15021,1; },{},{}
-16341,Greed_Clip_Box,Greed Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2829,1; },{},{}
-16342,F_Greed_Clip_Box,F Greed Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2829,1; },{},{}
-16343,Leo_Crown_Box,Leo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5588,1; },{},{}
-16344,Leo_Diadem_Box,Leo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5589,1; },{},{}
-16345,F_Leo_Crown_Box,F Leo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5588,1; },{},{}
-16346,F_Leo_Diadem_Box,F Leo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5589,1; },{},{}
-16360,Desert_Prince_Box,Desert Prince Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5591,1; },{},{}
-16361,FDesert_Prince_Box,FDesert Prince Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5591,1; },{},{}
-16362,Sigrun's_Wing_Box,Sigrun's Wing Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5592,1; },{},{}
-16363,FSigrun's_Wing_Box,FSigrun's Wing Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5592,1; },{},{}
-16368,Virgo_Crown_Box,Virgo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5598,1; },{},{}
-16371,Tw_Aug_Scroll,Tw Aug Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Aug_Scroll); },{},{}
-16372,F_Clover_Box_Mouth,F Clover Box Mouth,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/ },{},{}
-16374,Mouth_Bubble_Gum_Box,Mouth Bubble Gum Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/ },{},{}
-16378,Siege_Tele_Scroll_Box_30,Siege Teleport Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{}
-16379,Siege_Teleport_Scroll_Silver_10Box,Siege Teleport Scroll Silver 10Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12415,10; },{},{}
-16380,Siege_Teleport_Scroll_Silver_30Box,Siege Teleport Scroll Silver 30Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12415,30; },{},{}
-16381,WoE_Teleport_Scroll_100_Box,WoE Teleport Scroll 100 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12444,100; },{},{}
-16382,WoE_Teleport_Scroll_30_Box,WoE Teleport Scroll 30 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12444,30; },{},{}
-16385,F_Clover_Box_Mouth2,F Clover Box Mouth2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/ },{},{}
-16386,F_Clover_Box_Mouth4,F Clover Box Mouth4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/ },{},{}
-16389,BGum_Box_In_Mouth2,BGum Box In Mouth2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/ },{},{}
-16390,BGum_Box_In_Mouth4,BGum Box In Mouth4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/ },{},{}
-16393,HD_Ori_Box5,HD Oridecon 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,5; },{},{}
-16394,HD_Ori_Box10,HD Oridecon 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,10; },{},{}
-16395,HD_Elu_Box5,HD Elunium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,5; },{},{}
-16396,HD_Elu_Box10,HD Elunium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,10; },{},{}
-16397,Virgo_Diadem_Box,Virgo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5599,1; },{},{}
-16398,Virgo_Crown_Box_,Virgo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5598,1; },{},{}
-16399,Virgo_Diadem_Box_,Virgo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5599,1; },{},{}
-16405,Midgard_Coin_Box_,Midgard Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6242,1; },{},{}
-16406,FMidgard_Coin_Box,FMidgard Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6242,1; },{},{}
-16409,Tw_Sep_Scroll,Tw Sep Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Sep_Scroll); },{},{}
-16410,Chung_Hairband_Box,Chung Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5609,1; },{},{}
-16411,FChung_Hairband_Box,FChung Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5609,1; },{},{}
-16412,Ice_Wing_Ear_Box,Ice Wing Ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5610,1; },{},{}
-16413,FIce_Wing_Ear_Box,FIce Wing Ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5610,1; },{},{}
-16414,Turtle_Hat_Box,Turtle Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5611,1; },{},{}
-16415,FTurtle_Hat_Box,FTurtle Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5611,1; },{},{}
-16418,Giant_Fly_Wing_Box_500,Giant Fly Wing Box 500,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,500; },{},{}
-16419,Greed_Scroll_Box_30,Greed Scroll Box 30,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,30; },{},{}
-16420,Adventurer_Pack,Adventurer Pack,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ 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;},{},{}
-16421,Written_Oath_Of_Marriage_Box,Written Oath Of Marriage Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6026,1; },{},{}
-16422,Magestic_Goat_Box_,Magestic Goat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,604800; },{},{}
-16423,Episode_13.1_Key_Package,Episode 13.1 Key Package,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7782,1; getitem 12208,2; getitem 14582,10; },{},{}
-16424,Executioner_Box_,Executioner Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{}
-16425,Cutlus_Box,Cutlus Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{}
-16426,Moonlight_Dagger_Box,Moonlight Dagger Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{}
-16427,Wrench_Box,Wrench Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{}
-16428,Solar_Sword_Box_,Solar Sword Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{}
-16429,Tomahawk_Box_,Tomahawk Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{rentitem 1374,604800;},{},{}
-16430,Rudra_Bow_Box,Rudra Bow Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{}
-16431,Pole_Axe_Box_,Pole Axe Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1419,604800; },{},{}
-16436,Libra_Crown_Box,Libra Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5662,1; },{},{}
-16437,Libra_Crown_Box_,Libra Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5662,1; },{},{}
-16438,Libra_Diadem_Box,Libra Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5663,1; },{},{}
-16439,Libra_Diadem_Box_,Libra Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5663,1; },{},{}
-16440,Filir_Wing_Box,Filir Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5664,1; },{},{}
-16446,Tw_October_Scroll,Tw October Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_October_Scroll); },{},{}
-16447,Scorpio_Crown_Box,Scorpio Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5676,1; },{},{}
-16448,Scorpio_Diadem_Box,Scorpio Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5677,1; },{},{}
-16449,Scorpio_Crown_Box_,Scorpio Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5676,1; },{},{}
-16450,FScorpio_Diadem_Box,FScorpio Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5677,1; },{},{}
-16456,My_Scroll1,My Scroll1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_My_Scroll1); },{},{}
-16457,Tw_Nov_Scroll,Tw Nov Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Nov_Scroll); },{},{}
-16461,Red_Wing_Hat_Box,Red Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5690,1; },{},{}
-16462,FRed_Wing_Hat_Box,FRed Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5690,1; },{},{}
-16466,My_Scroll2,My Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_My_Scroll2); },{},{}
-//
-16481,Small_Life_Potion_Box_10,Small Life Potion Box (10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12516,10; },{},{}
-16483,Abrasive_Box_10,Abrasive Box (10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12514,10; },{},{}
-//
-16503,E_Insurance_Package,E Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{}
-16504,Bubble_Gum_Box_10,Bubble Gum Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{}
-16505,Steamed_Tongue_Box_10,Steamed Tongue Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12501,10; },{},{}
-16506,Steamed_Desert_Scorpions_Box_10,Steamed Desert Scorpions Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12502,10; },{},{}
-16507,Dragon_Breath_Cocktail_Box_10,Dragon Breath Cocktail Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12503,10; },{},{}
-16508,Hwergelmir's_Tonic_Box_10,Hwergelmir's Tonic Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12504,10; },{},{}
-16509,Cooked_Nine_Tail_Box_10,Cooked Nine Tail Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12505,10; },{},{}
-16510,Immortal_Stew_Box_10,Immortal Stew Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12506,10; },{},{}
-16514,Blessing_Scroll_Box_10,Blessing Scroll Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12522,10; },{},{}
-16515,Increase_Agility_Scroll_Box_10,Increase Agility Scroll Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12523,10; },{},{}
-//
-16542,Xmas_Bless,Xmas Bless,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Xmas_Bless); },{},{}
-16543,Snowman_Hat_Box,Snowman Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5738,1; },{},{}
-16544,FSnowman_Hat_Box,FSnowman Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5738,1; },{},{}
-16548,Sagittarius_Crown_Box,Sagittarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5739,1; },{},{}
-16549,Sagittarius_Diadem_Box,Sagittarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5740,1; },{},{}
-16550,Sagittarius_Crown_Box_,Sagittarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5739,1; },{},{}
-16551,Sagittarius_Diadem_Box_,Sagittarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5740,1; },{},{}
-16554,Elven_Sunglasses_Box,Elven Sunglasses Box,2,20,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5245,1; },{},{}
-16555,Pr_Reset_Stone_Box,Pr Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1; },{},{}
-16556,FPremium_Reset_Stone_Box,Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1; },{},{}
-16557,CP_Helm_Scroll10,CP Helm Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14517,10; },{},{}
-16558,CP_Shield_Scroll10,CP Shield Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14518,10; },{},{}
-16559,CP_Armor_Scroll10,CP Armor Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14519,10; },{},{}
-16560,CP_Weapon_Scroll10,CP Weapon Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14520,10; },{},{}
-16561,CP_Scroll_Package,CP Scroll Package,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16562,Majestic_Devil_Scroll,Majestic Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Majestic_Devil_Scroll); },{},{}
-16563,BM100_Box_5,BM100 Box 5,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14533,5; },{},{}
-16565,Capricorn_Crown_Box,Capricorn Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5744,1; },{},{}
-16566,Capricorn_Crown_Box_,Capricorn Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5744,1; },{},{}
-16567,Capricorn_Diadem_Box,Capricorn Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5745,1; },{},{}
-16568,FCapricorn_Diadem_Box,FCapricorn Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5745,1; },{},{}
-16569,Summer_Scroll,Summer Scroll,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16570,Muscles_Story_J_Box,Muscle Knights Summertime Guide Box,3,0,,0,,,,,,,,,,,,,{},{},{}
-16571,Rice_Ball_Hat_Box,Rice Ball Hat Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5575,1; },{},{}
-16576,Illusion_Nothing,Illusion Nothing,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Illusion_Nothing); },{},{}
-16577,Dragon_Captain,Dragon Captain,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16582,Red_Bunny_Band_Box,Red Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5763,1; },{},{}
-16584,Sloth_Hat_Box,Sloth Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5761,1; },{},{}
-16585,F_Sloth_Hat_Box,F Sloth Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5761,1; },{},{}
-16586,Duneyrr_Helm_Box,Duneyrr Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5762,1; },{},{}
-16587,F_Duneyrr_Helm_Box,F Duneyrr Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5762,1; },{},{}
-16588,Thoughtful_Hat_Box,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{}
-16589,Thoughtful_Hat_Box_,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{}
-16590,Thoughtful_Hat_Box__,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{}
-16598,Activation_Potion_Box_II,Activation Potion Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-//
-16659,Zodiac_Diadem_Pack,Zodiac Diadem Box,2,20,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1; },{},{}
-16600,Spring_Flower_Scr_Tw,Spring Flower Scr Tw,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16601,Blue_Arara_Hat_Box,Blue Arara Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5778,1; },{},{}
-16602,F_Blue_Arara_Hat_Box,F Blue Arara Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5778,1; },{},{}
-16603,Drooping_Votto_Box,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem drooping votto hat,1; */ },{},{}
-16604,Drooping_Votto_Box_,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem drooping votto hat[1],1; */ },{},{}
-16606,Tendrilrion_Hat_Box,Tendrilrion Hat Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5780,1; },{},{}
-16619,Yellow_Bunnyband_Box,Yellow Bunnyband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5783,1; },{},{}
-16620,Yellow_Bunny_Headband_Box,Yellow Bunny Headband Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5783,1; },{},{}
-16622,Pink_Bunny_Band_Box,Pink Bunny Band Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5784,1; },{},{}
-16623,Green_Bunny_Band_Box,Green Bunny Band Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5785,1; },{},{}
-16625,Half_Asprika_box7,Half Asprika Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2566,604800; },{},{}
-16628,Brynhild_Box,Half Brynhild Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,47,,,{ rentitem 15023,604800; },{},{}
-16631,Aributa_Scroll,Aributa Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16638,Ribbon_Of_Life_Box,Life Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box); },{},{}
-16639,Ribbon_Of_Life_Box2,Life Ribbon Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box2); },{},{}
-16640,Ribbon_Of_Life_Box3,Life Ribbon Box3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box3); },{},{}
-//
-16652,Flame_Light,Flame Light,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Flame_Light); },{},{}
-16653,BM75_10Box,BM75 10Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12563,10; },{},{}
-16654,Valiant_Will,Valiant Will,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16655,Rapid_Life_Potion_10_Box,Rapid Life Potion 10 Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12578,10; },{},{}
-16658,Rapid_Water_Box_10,Rapid Water Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12578,10; },{},{}
-16664,Leo_Scroll,Leo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16665,Virgo_Scroll,Virgo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16666,Magic_Candy_Box10,Magic Candy Box10,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/ },{},{}
-16668,Kotak_Ketupat_Warna_Warni,Kotak Ketupat Warna Warni,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ rentitem 2869,20160000; },{},{}
-16670,Field_Manual_Box_A,Field Manual Box A,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1; },{},{}
-16673,Libra_Scroll,Libra Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Libra_Scroll); },{},{}
-16675,Splash_Scroll,Splash Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splash_Scroll); },{},{}
-16676,Zodiac_Crown_Pack,Zodiac Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1; },{},{}
-16677,Universal_Catalog_Gold_Box10,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{}
-16678,Universal_Catalog_Gold_Box50,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{}
-16679,Universal_Catalog_Gold_Box10_,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{}
-16680,Universal_Catalog_Gold_Box50_,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{}
-16681,BR_Independence_Scroll,BR Independence Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BR_Independence_Scroll); },{},{}
-16682,Boarding_Halter_Box,Boarding Halter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/ },{},{}
-16683,B_Halter_Box_30Days,B Halter Box 30Days,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12622,2592000; },{},{}
-16684,Wing_Of_Fly_Box10,Wing Of Fly Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,10; },{},{}
-16685,Wing_Of_Fly_Box50,Wing Of Fly Box50,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,50; },{},{}
-16686,Wing_Of_Fly_Box100,Wing Of Fly Box100,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,100; },{},{}
-16687,RWC2010_SuitcaseA,RWC2010 SuitcaseA,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC2010_SuitcaseA); },{},{}
-16688,RWC2010_SuitcaseB,RWC2010 SuitcaseB,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC2010_SuitcaseB); },{},{}
-16691,Scorpius_Scroll,Scorpius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16692,Alice_Hat_Box,Alice Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5137,1; },{},{}
-16693,Crescent_Helm_Box,Crescent Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5142,1; },{},{}
-16694,Crescent_Helm_Box_,Crescent Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5142,1; },{},{}
-16695,Dragon_Skull_Box,Dragon Skull Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5292,1; },{},{}
-16696,Dragon_Skull_Box_,Dragon Skull Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5292,1; },{},{}
-16697,Drooping_Bunny_Box,Drooping Bunny Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5290,1; },{},{}
-16698,Drooping_Bunny_Box_,Drooping Bunny Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5290,1; },{},{}
-16699,Evolved_Blue_Fish_Box,Evolved Blue Fish Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5222,1; },{},{}
-16701,Evolved_Pair_of_Red_Ribbon_Box,Evolved Pair of Red Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5221,1; },{},{}
-16702,Evolved_Pair_of_Red_Ribbon_Box_,Evolved Pair of Red Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5221,1; },{},{}
-16703,Evolved_Pipe_Box,Evolved Pipe Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5220,1; },{},{}
-16704,Evolved_Pipe_Box_,Evolved Pipe Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5220,1; },{},{}
-16705,Hibiscus_Box,Hibiscus Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5139,1; },{},{}
-16706,Hibiscus_Box_,Hibiscus Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5139,1; },{},{}
-16707,Jumping_Poring_Box,Jumping Poring Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5335,1; },{},{}
-16708,Jumping_Poring_Box_,Jumping Poring Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5335,1; },{},{}
-16709,Kettle_Hat_Box,Kettle Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5291,1; },{},{}
-16710,Kettle_Hat_Box_,Kettle Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5291,1; },{},{}
-16711,Magic_Eyes_Box,Magic Eyes Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5138,1; },{},{}
-16712,Magic_Eyes_Box_,Magic Eyes Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5138,1; },{},{}
-16713,Mini_Propeller_Box,Mini Propeller Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5226,1; },{},{}
-16714,Mini_Propeller_Box_,Mini Propeller Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5226,1; },{},{}
-16715,Puppy_Hat_Box,Puppy Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5182,1; },{},{}
-16716,Puppy_Hat_Box_,Puppy Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5182,1; },{},{}
-16717,Sheep_Hat_Box,Sheep Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5133,1; },{},{}
-16718,Sheep_Hat_Box_,Sheep Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5133,1; },{},{}
-16719,Tiger_Mask_Box_,Tiger Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{}
-16720,Tiger_Mask_Box__,Tiger Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{}
-16721,Vaccation_Hat_Box,Vacation Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5629,1; },{},{}
-16722,Vane_Hairpin_Box,Vane Hairpin Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5285,1; },{},{}
-16723,Vane_Hairpin_Box_,Vane Hairpin Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5285,1; },{},{}
-16724,Vanilmirth_Hat_Box,Vanilmirth Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5289,1; },{},{}
-16725,Vanilmirth_Hat_Box_,Vanilmirth Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5289,1; },{},{}
-16726,Water_Lily_Crown_Box,Water Lily Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5284,1; },{},{}
-16727,Water_Lily_Crown_Box_,Water Lily Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5284,1; },{},{}
-16728,Pink_Beanie_Hat_Box,Pink Beanie Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5237,1; },{},{}
-16729,Pink_Beanie_Hat_Box_,Pink Beanie Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5237,1; },{},{}
-16730,Green_Ribbon_Box,Green Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5193,1; },{},{}
-16731,Green_Ribbon_Box_,Green Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5193,1; },{},{}
-16732,Gray_Deviruchi_Hat_Box,Gray Deviruchi Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5229,1; },{},{}
-16733,Gray_Deviruchi_Hat_Box_,Gray Deviruchi Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5229,1; },{},{}
-16734,Blue_Drooping_Cat_Box,Blue Drooping Cat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5233,1; },{},{}
-16735,Blue_Drooping_Cat_Box_,Blue Drooping Cat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5233,1; },{},{}
-16736,Fantastic_Wig_Box,Fantastic Wig Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5276,1; },{},{}
-16737,Fantastic_Wig_Box_,Fantastic Wig Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5276,1; },{},{}
-16738,Yellow_Mage_Hat_Box,Yellow Mage Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5242,1; },{},{}
-16739,Yellow_Mage_Hat_Box_,Yellow Mage Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5242,1; },{},{}
-16740,Ptotection_Seagod_Box,The Sea God's Call 23 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 6436,86400; },{},{}
-16741,Hairtail_Box1,Cutlass 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600; },{},{}
-16742,Hairtail_Box2,Cutlass 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800; },{},{}
-16743,Spearfish_Box1,Marlin 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600; },{},{}
-16744,Spearfish_Box2,Marlin 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800; },{},{}
-16745,Saurel_Box1,Pompano 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600; },{},{}
-16746,Saurel_Box2,Pompano 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800; },{},{}
-16747,Tuna_Box1,Tuna 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600; },{},{}
-16748,Tuna_Box2,Tuna 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800; },{},{}
-16749,Malang_Crab_Box1,Malangdo Crab 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600; },{},{}
-16750,Malang_Crab_Box2,Malangdo Crab 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800; },{},{}
-16751,Brindle_Eel_Box1,Zebra Eel 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600; },{},{}
-16752,Brindle_Eel_Box2,Zebra Eel 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800; },{},{}
-16753,Unbreak_Weap_Box,Unbreakable Weapon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6438,1; },{},{}
-16754,F_Unbreak_Weap_Box,Unbreakable Weapon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6438,1; },{},{}
-16755,Unbreak_Def_Box,Unbreakable Armor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6439,1; },{},{}
-16756,F_Unbreak_Def_Box,Unbreakable Armor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6439,1; },{},{}
-16757,Hallo_Scroll,Hallo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hallo_Scroll); },{},{}
-16760,Umbala_Spirit_Box2,Umbala Spirit Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ },{},{}
-16761,F_Umbala_Spirit_Box2,F Umbala Spirit Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ },{},{}
-16763,Ptotection_Seagod_Box2,The Sea God's Call 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800; },{},{}
-16764,Ptotection_Seagod_Box3,The Sea God's Call 15 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600; },{},{}
-16765,Octo_Hstick_Box,Octopus Hunting Skewer 23 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400; },{},{}
-16766,Octo_Hstick_Box2,Octopus Hunting Skewer 3 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200; },{},{}
-16767,Octo_Hstick_Box3,Octopus Hunting Skewer 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800; },{},{}
-16770,Silvervine_Fruit_Box10,Silvervine 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30; },{},{}
-16771,Silvervine_Fruit_Box40,Silvervine 40 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120; },{},{}
-16774,Asgard_Scroll,Asgard Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Asgard_Scroll); },{},{}
-16775,Sagittarius_Scroll,Sagittarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittarius_Scroll); },{},{}
-16776,Universal_Catalog_Gold_Box10__,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{}
-16777,Universal_Catalog_Gold_Box50__,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{}
-//
-16821,Dungeon_Teleport_Scroll_Box_5,Dungeon Teleport Scroll Box(5),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16822,Dungeon_Teleport_Scroll_Box_10,Dungeon Teleport Scroll Box(10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16826,Sagittarius_Scr_Box,Sagittarius Scr Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittarius_Scr_Box); },{},{}
-16837,Dungeon_Teleport_Scroll_II_Box_5,Dungeon Teleport Scroll II Box(5),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16838,Dungeon_Teleport_Scroll_II_Box_10,Dungeon Teleport Scroll II Box(10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-16864,Siege_Map_Teleport_Scroll_Box_10,Siege Map Teleport Scroll Box(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,10; },{},{}
-16865,Siege_Map_Teleport_Scroll_Box_30,Siege Map Teleport Scroll Box(30),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{}
-16866,Siege_Map_Teleport_Scroll_II_Box_10,Siege Map Teleport Scroll II Box(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,10; },{},{}
-16867,Siege_Map_Teleport_Scroll_II_Box_30,Siege Map Teleport Scroll II Box(30),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{}
-//
-16972,Weather_Report_Box,Weather Report Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1; },{},{}
-16973,Yellow_Hat_Box,Yellow Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19515,1; },{},{}
-16974,Comin_Actor_Box,Comin Actor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1; },{},{}
-16975,Singing_Bird_Box,Singing Bird Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19516,1; },{},{}
-16976,Hen_Set_Box,Hen Set Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1; },{},{}
-16977,Red_Minicrown_Box,Red Minicrown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19522,1; },{},{}
-16979,Silvervine_Fruit_Box4,Silvervine 4 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12; },{},{}
-//
-16990,Sagittar_Diadem_Scroll,Sagittar Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittar_Diadem_Scroll); },{},{}
-16991,Sagittar_Di_Scroll_Box,Sagittar Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittar_Di_Scroll_Box); },{},{}
-16992,Butterfly_Wing_Box20,Butterfly Wing Box20,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,20; },{},{}
-16993,Butterfly_Wing_Box50,Butterfly Wing Box50,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,50; },{},{}
-16995,Old_Hat_Box,Old Hat Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{},{},{}
-16996,Capri_Crown_Scroll,Capri Crown Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capri_Crown_Scroll); },{},{}
-16997,Capri_Crown_Scroll_Box,Capri Crown Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capri_Crown_Scroll_Box); },{},{}
-16998,Archangel_Wing_Box,Archangel Wings Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2573,1; },{},{}
-16999,Bravery_Bag_Box,Bravery Bag Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2576,1; },{},{}
-17000,Wander_Man_Box5,Wander Man Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12626,5; },{},{}
-17001,Wander_Man_Box10,Wander Man Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12626,10; },{},{}
-17002,Wicked_Nymph_Box5,Wicked Nymph Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12627,5; },{},{}
-17003,Wicked_Nymph_Box10,Wicked Nymph Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12627,10; },{},{}
-17004,Kasa_Scroll_Box5,Kasa Scroll Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12628,5; },{},{}
-17005,Kasa_Scroll_Box10,Kasa Scroll Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12628,10; },{},{}
-17006,Salamander_Box5,Salamander Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12629,5; },{},{}
-17007,Salamander_Box10,Salamander Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12629,10; },{},{}
-17008,Teddy_Bear_Box5,Teddy Bear Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12630,5; },{},{}
-17009,Teddy_Bear_Box10,Teddy Bear Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12630,10; },{},{}
-17011,Capricon_Di_Scroll,Capricon Di Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capricon_Di_Scroll); },{},{}
-17012,Capricon_Di_Scroll_Box,Capricon Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capricon_Di_Scroll_Box); },{},{}
-17013,Malang_Woe_Encard_Box,Malang Woe Encard Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1; },{},{}
-17014,Butterfly_ear_Box,Butterfly ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19509,1; },{},{}
-17015,Stuckhead_Screw_Box,Stuckhead Screw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19510,1; },{},{}
-17016,Aquarius_Diadem_Scroll,Aquarius Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aquarius_Diadem_Scroll); },{},{}
-17017,Aquarius_Di_Scroll_Box,Aquarius Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aquarius_Di_Scroll_Box); },{},{}
-17018,Libra_Scroll2,Libra Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17019,Scorpio_Scroll2,Scorpio Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17020,Tw_Nov_Scroll2,Tw Nov Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Nov_Scroll2); },{},{}
-17021,Summer_Scroll3,Summer Scroll3,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Summer_Scroll3); },{},{}
-17022,Super_Pet_Egg1_2,Super Pet Egg1 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg1_2); },{},{}
-17023,Super_Pet_Egg4_2,Super Pet Egg4 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg4_2); },{},{}
-17024,Lovely_Aquarius_Scroll,Lovely Aquarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lovely_Aquarius_Scroll); },{},{}
-17025,Lovely_Aquarius_Box,Lovely Aquarius Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lovely_Aquarius_Box); },{},{}
-17026,Boitata_Scroll,Boitata Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Boitata_Scroll); },{},{}
-17028,Pisces_Diadem_Scroll,Pisces Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pisces_Diadem_Scroll); },{},{}
-17029,Pisces_Diadem_Box_,Pisces Diadem Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pisces_Diadem_Box); },{},{}
-17030,St_Pat_Hat_box,St Pat Hat box,18,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18565,1; },{},{}
-17035,Energetic_Pisces_Scroll,Energetic Pisces Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Energetic_Pisces_Scroll); },{},{}
-17036,Energetic_Pisces_Box,Energetic Pisces Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Energetic_Pisces_Box); },{},{}
-17037,Trans_Box_Devi,Trans Box Devi,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12658,10; },{},{}
-17038,Trans_Box_Ray_Arch,Trans Box Ray Arch,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12659,10; },{},{}
-17039,Trans_Box_Mavka,Trans Box Mavka,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12660,10; },{},{}
-17040,Trans_Box_Marduk,Trans Box Marduk,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12661,10; },{},{}
-17041,Trans_Box_Banshee,Trans Box Banshee,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12662,10; },{},{}
-17042,Trans_Box_Poring,Trans Box Poring,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12663,10; },{},{}
-17043,Trans_Box_Golem,Trans Box Golem,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12664,10; },{},{}
-17050,Aries_Scroll_,Aries Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aries_Scroll); },{},{}
-17051,Aries_Scroll_Box,Aries Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aries_Scroll_Box); },{},{}
-17052,Holy_Mom_Blaze_Box,Holy Mom Blaze Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6472,1; },{},{}
-17056,Wiz_Card_Album,Wiz Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17057,Swordman_Card_Album,Swordman Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17058,Thief_Card_Album,Thief Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17059,Acolyte_Card_Album,Acolyte Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17060,Merchant_Card_Album,Merchant Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17061,Archer_Card_Album,Archer Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17062,Taurus_Diadem_Scroll,Taurus Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Diadem_Scroll); },{},{}
-17063,Taurus_Di_Scroll_Box,Taurus Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Di_Scroll_Box); },{},{}
-17064,Tw_Sagitt_Scroll,Tw Sagitt Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17066,Poison_Bottle_Box50,Poison Bottle Box50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,50; },{},{}
-17067,Poison_Bottle_Box100,Poison Bottle Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,100; },{},{}
-17068,Acidbomb_Box50,Acidbomb Box50,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,50; getitem 7136,50; },{},{}
-17069,Acidbomb_Box100,Acidbomb Box100,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,100; getitem 7136,100; },{},{}
-17070,Acidbomb_Box500,Acidbomb Box500,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,500; getitem 7136,500; },{},{}
-17071,Superb_Fish_Box50,Superb Fish Box50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,50; },{},{}
-17072,Superb_Fish_Box100,Superb Fish Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,100; },{},{}
-17073,Superb_Fish_Box500,Superb Fish Box500,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,500; },{},{}
-17074,Empty_Bottle_Box10,Empty Bottle Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,10; },{},{}
-17075,Empty_Bottle_Box100,Empty Bottle Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,100; },{},{}
-17076,Empty_Bottle_Box500,Empty Bottle Box500,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,500; },{},{}
-17077,Taurus_Crown_Scroll,Taurus Crown Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Crown_Scroll); },{},{}
-17078,Taurus_Crown_Scroll_Box,Taurus Crown Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Crown_Scroll_Box); },{},{}
-17079,Indonesia_Box2,Indonesia Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3; },{},{}
-17080,Scorpio_Scroll3,Scorpio Scroll3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17081,Yggdrasil_Crown_Box,Yggdrasil Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18580,1; },{},{}
-17082,Gemi_Diadem_Scroll,Gemi Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Diadem_Scroll); },{},{}
-17083,Gemi_Diadem_Scroll_Box,Gemi Diadem Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Diadem_Scroll_Box); },{},{}
-17084,Upg_Katar_Box,Upg Katar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1292,1; },{},{}
-17085,Upg_Two_Handed_Axe_Box,Upg Two Handed Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1394,1; },{},{}
-17086,Upg_Lance_Box,Upg Lance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1491,1; },{},{}
-17087,Upg_Book_Box,Upg Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1585,1; },{},{}
-17088,Upg_Staff_Box,Upg Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2015,1; },{},{}
-17089,Upg_Dagger_Box,Upg Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13071,1; },{},{}
-17090,Upg_Revolver_Box,Upg Revolver,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13115,1; },{},{}
-17091,Upg_Mace_Box,Upg Mace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 16019,1; },{},{}
-17092,Upg_Bow_Box,Upg Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18112,1; },{},{}
-17093,Upg_Twohand_Sword_Box,Upg Two-Handed Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 21000,1; },{},{}
-17094,Upg_Katar_Box2,Upg Katar Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17095,Upg_Two_Handed_Axe_Box2,Upg Two-Hand Axe Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17096,Upg_Lance_Box2,Upg Lance Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17097,Upg_Book_Box2,Upg_Book_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17098,Upg_Staff_Box2,Upg_Staff_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17099,Upg_Dagger_Box2,Upg_Dagger_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17100,Upg_Revolver_Box2,Upg_Revolver_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17101,Upg_Mace_Box2,Upg_Mace_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17102,Upg_Bow_Box2,Upg_Bow_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17103,Upg_Twohand_Sword_Box2,Upg_Twohand_Sword_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17104,HD_Oridecon_50Box,HD Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,50; },{},{}
-17105,HD_Elunium_50Box,HD Elunium 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,50; },{},{}
-17106,Max_Weight_Up_10Box,Heavy Lifter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,10; },{},{}
-17107,Gemi_Crown_Scroll,Gemi Crown Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll); },{},{}
-17108,Gemi_Crown_Scroll_Box,Gemi Crown Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll_Box); },{},{}
-17109,Capri_Scroll,Capri Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17110,Aquarius_Scroll,Aquarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17113,Pisces_Scroll,Pisces Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17114,Horn_Of_Ancient_Box,Horn Of Ancient Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18595,1; },{},{}
-17115,Sprout_Hat_Box,Sprout Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18596,1; },{},{}
-17116,Mercury_Helm_Box,Mercury Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18597,1; },{},{}
-17117,Aries_Scroll,Aries Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17118,ASPD_Potion_Box10,ASPD Enhanced Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,10; },{},{}
-17120,Taurus_Scroll,Taurus Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17121,Starry_Scroll,Starry Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17122,Immuned_Shield_Box,Immuned Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2168,1; },{},{}
-17123,Black_Devil_Mask_Box,Black Devil Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18599,1; },{},{}
-17124,Cat_Ears_Beret_Box,Cat Ears Beret Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18600,1; },{},{}
-17125,Red_Bread_Hat_Box,Red Bread Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18601,1; },{},{}
-17126,ASPD_Potion_Box10_2,ASPD Enhanced Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{ getitem 12684,10; },{},{}
-17127,Leo_Scroll2,Leo Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17134,RWC_Scroll,RWC Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17138,Ms_Cancer_Scroll,Ms Cancer Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Cancer_Scroll); },{},{}
-17139,RWC_Super_Scroll,RWC Super Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Super_Scroll); },{},{}
-17140,Leo_Scroll_,Leo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Leo_Scroll); },{},{}
-17141,Ms_Virgo_Scroll,Ms Virgo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Virgo_Scroll); },{},{}
-17143,Ms_Scorpio_Scroll,Ms Scorpio Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Scorpio_Scroll); },{},{}
-17146,Dep_Alice_Hat_Box,Dep Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18630,1; },{},{}
-17147,Ribbon_Chef_Hat_Box,Ribbon Chef Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18631,1; },{},{}
-17152,Bridal_Ribbon_Box,Bridal Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18636,1; },{},{}
-17155,Upg_Huuma_Shuriken_Box,Upg Huuma Shuriken Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13316,86400; },{},{}
-17156,TCG_Card_Scroll,Bossnia Ticket Scroll,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_TCG_Card_Scroll); },{},{}
-17157,Vital_Flower_Box,Vital Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6113,10; },{},{}
-17158,Flame_Gemstone_Box,Flame Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6114,10; },{},{}
-17159,Change_Name_Card_Box,Name Change Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17160,Character_Name_Change_Card_Box,Character Name Change Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17162,Boarding_Halter_Box7,Boarding Halter Box7,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12622,604800; },{},{}
-17165,Challenge_Kit,Challenge Kit,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/ },{},{}
-17176,Boarding_Halter_Box3,Halter Lead Box[Trial],18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{},{},{}
-17181,Jan_Groove_Box,Jan Groove Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17184,3rd_Test_Pass_Box,3rd Test Pass Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6583,1; },{},{}
-17203,Free_Pass_Box,Free Pass Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17204,Shining_Egg,Shining Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Shining_Egg); },{},{}
-17207,Idn_Heart_Scroll,Idn Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Idn_Heart_Scroll); },{},{}
-17209,Tw_Rainbow_Scroll,Tw Rainbow Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Rainbow_Scroll); },{},{}
-17210,Tw_Red_Scroll,Tw Red Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Red_Scroll); },{},{}
-17211,Tw_Orange_Scroll,Tw Orange Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Orange_Scroll); },{},{}
-17212,Tw_Yellow_Scroll,Tw Yellow Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Yellow_Scroll); },{},{}
-17226,Infinite_Concentration_Potion_,Infinite Concentration Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12884,604800; },{},{}
-17227,Infinite_Awakening_Potion_,Infinite Awakening Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12885,604800; },{},{}
-17228,Infinite_Berserk_Potion_,Infinite Berserk Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12886,604800; },{},{}
-17229,Infinite_Flywing_Box,Infinite Flywing Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12887,604800; },{},{}
-17230,Valerian_Scroll,Valerian Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Valerian_Scroll); },{},{}
-17231,Refinement_Ore_Box,Refinement Ore Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,1; getitem 7620,1; },{},{}
-17232,Refinement_Box_7,Refinement box(7),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6230,1; getitem 6234,1; },{},{}
-17233,Scroll_Of_Death,Scroll Of Death,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Death); },{},{}
-17234,Scroll_Of_Life,Scroll Of Life,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Life); },{},{}
-17235,Scroll_Of_Magic,Scroll Of Magic,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Magic); },{},{}
-17236,Scroll_Of_Thews,Scroll Of Thews,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Thews); },{},{}
-17237,Scroll_Of_Darkness,Scroll Of Darkness,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Darkness); },{},{}
-17238,Scroll_Of_Holiness,Scroll Of Holiness,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Holiness); },{},{}
-17239,Horned_Scroll,Horned Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Horned_Scroll); },{},{}
-17240,Mercury_Scroll,Mercury Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mercury_Scroll); },{},{}
-17241,Amistr_Cap_Box,Amistir Cap Box,2,10,,10,,4,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5766,1; },{},{}
-17244,Event_Almighty_Box,Event Almighty Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12883,10; },{},{}
-17242,Immortal_Egg,Immortal Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Immortal_Egg); },{},{}
-17245,Idn_Independ_Scroll,Idn Independ Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17246,HD_Elunium_Box_30,HD Elunium Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,30; },{},{}
-17247,HD_Oridecon_Box_30,HD Oridecon Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,30; },{},{}
-17251,C_Wing_Of_Fly_3Day_Box,C Wing Of Fly 3Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_C_Wing_Of_Fly_3Day_Box); },{},{}
-17252,RWC_2012_Set_Box,RWC 2012 Set Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_2012_Set_Box); },{},{}
-17253,RWC_2012_Ring_Box,RWC 2012 Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2966,1; },{},{}
-17254,RWC_2012_Pendant_Box,RWC 2012 Pendant Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2968,1; },{},{}
-17255,Sapphire_Egg,Sapphire Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sapphire_Egg); },{},{}
-17256,Good_Student_Gift_Box,Good Student Gift Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Good_Student_Gift_Box); },{},{}
-17257,Bad_Student_Gift_Box,Bad Student Gift Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bad_Student_Gift_Box); },{},{}
-17262,Ex_Def_Potion_Box,Special Defense Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ },{},{}
-17263,Infinite_Concentration_Potion_3rd_Box,Infinite Concentration Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12884,259200; },{},{}
-17264,Infinite_Awakening_Potion_3rd_Box,Infinite Awakening Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12885,259200; },{},{}
-17265,Infinite_Berserk_Potion_3rd_Box,Infinite Berserk Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12886,259200; },{},{}
-17266,Limited_Battle_Manual_Package,Limited Battle Manual Package,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 17263,1; getitem 17264,1; getitem 17265,1; },{},{}
-17270,STR_Biscuit_Stick_Box,Bar Cookie Of Strength Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14616,20; },{},{}
-17271,VIT_Biscuit_Stick_Box,Bar Cookie Of Vitality Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14617,20; },{},{}
-17272,AGI_Biscuit_Stick_Box,Bar Cookie Of Agility Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14618,20; },{},{}
-17273,INT_Biscuit_Stick_Box,Bar Cookie Of Intellgence Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14619,20; },{},{}
-17274,DEX_Biscuit_Stick_Box,Bar Cookie Of Dexterity Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14620,20; },{},{}
-17275,LUK_Biscuit_Stick_Box,Bar Cookie Of Luck Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14621,20; },{},{}
-17277,Unlimited_Box,Unlimited Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box); },{},{}
-17278,Unlimited_Box_10,Unlimited Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_10); },{},{}
-17281,Refinement_Ore_Box_IV,Refinement Ore Box IV,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14627,1; },{},{}
-17282,Refinement_Ore_Box_IV_10,Refinement Ore Box IV(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14627,11; },{},{}
-17283,Refinement_Ore_Box_IV_20,Refinement Ore Box IV(20),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,100; getitem 7620,100; getitem 14627,23; },{},{}
-17285,Events_Beauty_Gift_Box,Events Beauty Gift Box,18,10,,10,,,,,,,,,,,,,{ /*TODO*/ },{},{}
-17292,Shadow_Box,Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1; },{},{}
-17293,Shadow_Physical_Package,Shadow Physical Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1; },{},{}
-17294,Shadow_Magical_Package,Shadow Magical Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1; },{},{}
-17298,Support_Package,Support Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package); },{},{}
-17299,Support_Package_10,Support Package(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_10); },{},{}
-17302,Shadow_Box_II_,Shadow Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17303,Shadow_Set_Box_II,Shadow Set Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-17304,Neuralizer_Box_3,Neuralizer Box 3,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,3; },{},{}
-17306,Status_Reset_Coupon_Box,Status Reset Coupon Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",6720,6721),1; },{},{}
-17307,Midgard_Scroll,Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Midgard_Scroll); },{},{}
-17308,Half_Asprika_box1,Half Asprika box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2566,86400; },{},{}
-17311,Half_Brynhild_box1,Half Brynhild box1,2,20,,0,,,,,0xFFFFFFFF,63,2,,,47,,,{ rentitem 15023,86400; },{},{}
-17314,Infinite_Giant_Fly_Wing_Box,Infinite Giant Fly Wing Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12212,86400; },{},{}
-17315,Lucky_Silvervine_Fruit_Box_10,Lucky Silvervine Fruit Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6417,10; },{},{}
-17316,Lucky_Silvervine_Fruit_Box_110,Lucky Silvervine Fruit Box(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6417,110; },{},{}
-17317,Sweet_Midgard_Scroll,Sweet Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sweet_Midgard_Scroll); },{},{}
-17320,IdRO10th_Scroll,Birthday IdRO10th Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_IdRO10th_Scroll); },{},{}
-17321,Three_Master_Package,Three Master Package,18,10,,10,,,,0,0x0,0,2,,,,,,{ /*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20; },{},{}
-17322,Three_Master_Package_10,Three Master Package(10),18,10,,10,,,,0,0x0,0,2,,,,,,{ /*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200; },{},{}
-17326,Requiem_Scroll,Requiem Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Requiem_Scroll); },{},{}
-17331,Event_Almighty_Box_,Event Almighty Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Event_Almighty_Box); },{},{}
-17332,Event_Almighty_Box_100,Event Almighty Box(100),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Event_Almighty_Box_100); },{},{}
-17337,Holy_Spirit_Scroll,Holy Spirit Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Holy_Spirit_Scroll); },{},{}
-17338,Ore_Box_V,Ore Box V,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14696,1; },{},{}
-17339,Ore_Box_V_10,Ore Box V(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14696,11; },{},{}
-17394,Event_Old_Headgear_Box,Event Old Headgear Box,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-17396,Half_L_Magestic_Goat_Box1,Half L Magestic Goat Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5887,86400; },{},{}
-17397,Half_L_Magestic_Goat_Box7,Half L Magestic Goat Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5887,604800; },{},{}
-17398,Half_BF_Spear1_Box1,Half BF Spear1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1439,86400; },{},{}
-17399,Half_BF_Spear1_Box7,Half BF Spear1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1439,604800; },{},{}
-17400,Half_BF_Book2_Box1,Half BF Book2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1597,86400; },{},{}
-17401,Half_BF_Book2_Box7,Half BF Book2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1597,604800; },{},{}
-17402,Half_BF_Staff4_Box1,Half BF Staff4 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1673,86400; },{},{}
-17403,Half_BF_Staff4_Box7,Half BF Staff4 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1673,604800; },{},{}
-17404,Half_BF_Staff2_Box1,Half BF Staff2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1674,86400; },{},{}
-17405,Half_BF_Staff2_Box7,Half BF Staff2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1674,604800; },{},{}
-17406,Half_BF_Knuckle1_Box1,Half BF Knuckle1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1838,86400; },{},{}
-17407,Half_BF_Knuckle1_Box7,Half BF Knuckle1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1838,604800; },{},{}
-17408,Half_BF_Dagger2_Box1,Half BF Dagger2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13096,86400; },{},{}
-17409,Half_BF_Dagger2_Box7,Half BF Dagger2 Box1s,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13096,604800; },{},{}
-17410,Half_BF_Huuma_Shuriken2_Box1,Half BF Huuma Shuriken2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13321,86400; },{},{}
-17411,Half_BF_Huuma_Shuriken2_Box7,Half BF Huuma Shuriken2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13321,604800; },{},{}
-17412,Half_BF_Sword1_Box1,Half BF Sword1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13445,86400; },{},{}
-17413,Half_BF_Sword1_Box7,Half BF Sword1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13445,604800; },{},{}
-17414,Half_Mjolnir_Box1,Half Mjolnir Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16034,86400; },{},{}
-17415,Half_Mjolnir_Box7,Half Mjolnir Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16034,604800; },{},{}
-17416,Half_BF_Morning_Star1_Box1,Half BF Morning Star1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16035,86400; },{},{}
-17417,Half_BF_Morning_Star1_Box7,Half BF Morning Star1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16035,604800; },{},{}
-17418,Half_BF_Bow1_Box1,Half BF Bow1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 18124,86400; },{},{}
-17419,Half_BF_Bow1_Box7,Half BF Bow1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 18124,604800; },{},{}
-17420,Half_BF_Katar2_Box1,Half BF Katar2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28002,86400; },{},{}
-17421,Half_BF_Katar2_Box7,Half BF Katar2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28002,604800; },{},{}
-17422,Half_BF_Two_Handed_Axe1Box1,Half BF Two Handed Axe1Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28102,86400; },{},{}
-17423,Half_BF_Two_Handed_Axe1Box7,Half BF Two Handed Axe1Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28102,604800; },{},{}
-17424,Half_BF_Rifle1_Box1,Half BF Rifle1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28203,86400; },{},{}
-17425,Half_BF_Rifle1_Box7,Half BF Rifle1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28203,604800; },{},{}
-17426,Half_BF_Shotgun1_Box1,Half BF Shotgun1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28204,86400; },{},{}
-17427,Half_BF_Shotgun1_Box7,Half BF Shotgun1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28204,604800; },{},{}
-17429,11_Anniversary_Shadow_Box,11 Anniversary Shadow Box,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */ },{},{}
-17430,11_Anniversary_Shadow_Package,11 Anniversary Shadow Package,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */ },{},{}
-17431,Thanks_Giving_Scroll,Miracle Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Thanks_Giving_Scroll); },{},{}
-17432,Lucky_Silvervine_Fruit_Box_II_10,Lucky Silvervine Fruit Box II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1; },{},{}
-17433,Lucky_Silvervine_Fruit_Box_II_110,Lucky Silvervine Fruit Box II(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11; },{},{}
-17435,Idn_Legend_Hero_Scroll,Legend Hero Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Idn_Legend_Hero_Scroll); },{},{}
-17438,Three_Master_Package_II,Three Master Package II,3,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-17439,Three_Master_Package_II10,Three Master Package II(10),3,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-17440,Name_Change_Card_Box,Name Change Card Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12790,1; },{},{}
-17441,Halter_Lead_Box,Halter Lead Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12622,1; },{},{}
-17443,Reinforcement_Buckler_Box,Reinforcement Buckler Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{}
-17442,Emperium_G_Box,Emperium G Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6444,1; },{},{}
-17447,Blessing_Midgard_Scroll,Blessing Midgard Lucky Egg,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Blessing_Midgard_Scroll); },{},{}
-17449,Cookies_Bar_Set,Set Bar Cookies,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1; },{},{}
-17455,Premium_Battle_Manual_Box,Premium Battle Manual Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22614,1; },{},{}
-17456,Support_Package_II,Support Package II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_II); },{},{}
-17457,Support_Package_II_10,Support Package II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_II_10); },{},{}
-17461,Costama_Egg18,Frozen Egg Costume,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg18); },{},{}
-17464,Winter_Midgard_Scroll,Winter Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Winter_Midgard_Scroll); },{},{}
-17465,Refinement_Ore_Box_VI,Refinement Ore Box VI,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14718,1; },{},{}
-17466,Refinement_Ore_Box_VI_10,Refinement Ore Box VI(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14718,11; },{},{}
-17467,Limited_Token_of_Ziegfried_Box_50,(Limited) Token of Ziegfried Box(50),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6833,50; },{},{}
-17468,Neuralizer_II_Box_3,Neuralizer II Box (3),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14724,3;},{},{}
-17469,Neuralizer_I_Box,Neuralizer I Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14723,1;},{},{}
-17470,Costama_Egg19,Headgear Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg19); },{},{}
-17471,Spring_Festival_Scroll,Spring Festival Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Spring_Festival_Scroll); },{},{}
-17472,Support_Package_III,Support Package III,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_III); },{},{}
-17473,Support_Package_III_10,Support Package III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_III_10); },{},{}
-17474,Infinite_Giant_Fly_Wing_Box_V,Infinite Giant Fly Wing Box V,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12212,86400; },{},{}
-17475,Limited_Gym_Membership_Card_Box_10,(Limited)Gym Membership Card Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 17475,10; },{},{}
-17477,Unlimited_Box_II,Unlimited Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_II); },{},{}
-17478,Unlimited_Box_II_10,Unlimited Box II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_II_10); },{},{}
-17479,Midgard_Fes_Scroll,Midgard Festival Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Fes_Scroll); },{},{}
-17481,Costama_Egg21,Flower Blossom Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg21); },{},{}
-17482,Solaris_Festival_Scroll,Solaris Festival Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Solaris_Festival_Scroll); },{},{}
-17483,Three_Master_Package_III,Three Master Package III,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III); },{},{}
-17484,Three_Master_Package_III_10,Three Master Package III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III_10); },{},{}
-17490,Time_Travel_Scroll,Time Travel Lucky Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Time_Travel_Scroll); },{},{}
-17491,Refinement_Ore_Box_VII,Refinement Ore Box VII,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 4482,1; },{},{}
-17492,Refinement_Ore_Box_VII_10,Refinement Ore Box VII(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 4482,11; },{},{}
-17493,Costama_Egg23,Burning Feather Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg23); },{},{}
-17494,Happy_Time_Scroll,Rise Midgard Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Happy_Time_Scroll); },{},{}
-17495,Lucky_Silvervine_Fruit_Box_III10,Lucky Silvervine Fruit Box III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10); },{},{}
-17496,Lucky_Silvervine_Fruit_Box_III110,Lucky Silvervine Fruit Box III(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110); },{},{}
-17497,Costama_Egg24,Seaside Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg24); },{},{}
-17498,Three_Master_Package_IV,Three Master Package IV,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1; },{},{}
-17499,Three_Master_Package_IV_10,Three Master Package IV(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11; },{},{}
-17501,Support_Package_IV,Support Package IV,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1; },{},{}
-17502,Support_Package_IV_10,Support Package IV(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11; },{},{}
-17507,Nyangvine_Box4,Actinidia Cat Fruit Box(4),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,4; },{},{}
-17508,Nyangvine_Box10,Actinidia Cat Fruit Box(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,10; },{},{}
-17509,Nyangvine_Box40,Actinidia Cat Fruit Box(40),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,40; },{},{}
-17510,Smelting_Ore_Box_VIII,Smelting Ore Box VIII,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 22828,1; },{},{}
-17511,Smelting_Ore_Box_VIII_10,Smelting Ore Box VIII(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 22828,11; },{},{}
-17512,Limited_Purified_Eluminium_Box_30,(Limited) Purified Eluminium Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6911,30; getitem 6635,1; },{},{}
-17513,Limited_Purified_Oridecon_Box_30,(Limited) Purified Oridecon Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6910,30; getitem 6635,1; },{},{}
-17515,Unlimited_Box_III,Unlimited Box III,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1; },{},{}
-17516,Unlimited_Box_III_10,Unlimited Box III(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11; },{},{}
-17517,Costama_Egg28,Animal Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg28); },{},{}
-17519,Epic_Heroes_Scroll,Epic Heroes Scroll,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Epic_Heroes_Lucky_Egg); },{},{}
-17520,Limited_Edition_Manual_Box,Limited Edition Manual Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14765,3; /*getitem (limited edition battle manual),2;*/ },{},{}
-17521,Three_Master_Package_V,Three Master Package V,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1; },{},{}
-17522,Three_Master_Package_V_10,Three Master Package V(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11; },{},{}
-17523,Costama_Egg29,Mystical Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg29); },{},{}
-17524,Limited_Power_Booster_Box,Limited Power Booster Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14766,1; getitem 22873,1; },{},{}
-17525,Limited_Power_Booster_Box_100,Limited Power Booster Box(100),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14766,100; getitem 22873,11; },{},{}
-17526,Majestic_Lucky_Scroll,Majestic Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Majestic_Lucky_Scroll); },{},{}
-17527,Nyangvine_Box200,Actinidia Cat Fruit Box(200),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/},{},{}
-17532,Blessing_Lucky_Scroll,Blessing Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blessing_Lucky_Scroll); },{},{}
-17544,Smelting_Ore_Box_IX,Smelting Ore Box IX,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 22888,1; },{},{}
-17545,Smelting_Ore_Box_IX_10,Smelting Ore Box IX(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 22888,11; },{},{}
-17547,Limited_2015_Neuralizer_Box,(Limited)2015 Neuralizer Box,2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22894,1; },{},{}
-17548,Limited_2015_Status_Initialization_Volume_Box,(Limited)2015 Status Initialization Volume Box,2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22895,1; },{},{}
-17549,Limited_High_Density_Bradium_Box_30,(Limited)High Density Bradium Box(30),2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6327,30; },{},{}
-17550,Limited_High_Density_Kalunium_Box_30,(Limited)High Density Kalunium Box(30),2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6906,30; },{},{}
-17552,Garnet_Lucky_Scroll,Garnet Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Garnet_Lucky_Scroll); },{},{}
-17567,Event_Almighty_Box__,Event Almighty Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; },{},{}
-17568,Event_Almighty_Box_100_,Event Almighty Box(100),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; },{},{}
-17569,Dungeon_1_hour_Ticket_Box,Dungeon 1 Hour Ticket Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14505,1; },{},{}
-17572,Erzulie_Lucky_Scroll,Erzulie Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Erzulie_Lucky_Scroll); },{},{}
-17584,Venus_Lucky_Scroll,Venus Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Venus_Lucky_Scroll); },{},{}
-17588,Amora_Lucky_Scroll,Amora Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Amora_Lucky_Scroll); },{},{}
-17598,Sograt_Lucky_Scroll,Sograt Lucky Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sograt_Lucky_Scroll); },{},{}
-17607,Sanctuary_Lucky_Scroll,Sanctuary Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sanctuary_Lucky_Scroll); },{},{}
-17613,Chronosian_Lucky_Scroll,Chronosian Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Chronosian_Lucky_Scroll); },{},{}
-17628,Cyborg_Lucky_Scroll,Cyborg Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Cyborg_Lucky_Scroll); },{},{}
-17633,Undine_Lucky_Scroll,Undine Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Undine_Lucky_Scroll); },{},{}
-17648,Smithy_Lucky_Scroll,Smithy Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Smithy_Lucky_Scroll); },{},{}
-17659,Ganymede_Lucky_Scroll,Ganymede Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ganymede_Lucky_Scroll); },{},{}
-17665,LastAngel_LuckyScroll,LastAngel LuckyScroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_LastAngel_LuckyScroll); },{},{}
-17671,Valkyrie_Lucky_Scroll,Valkyrie Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Valkyrie_Lucky_Scroll); },{},{}
-17674,Rainbow_Lucky_Scroll,Splash Rainbow Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splash_Rainbow_Lucky_Scroll); },{},{}
-17681,Midgard_Lucky_Scroll,Midgard Lucky Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Lucky_Scroll); },{},{}
-17692,June_Lucky_Scroll,Blessing Scarlet Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blessing_Scarlet_Scroll); },{},{}
-//===================================================================
-// Mechanic/Genetic Cannonballs
-//===================================================================
-18000,Cannon_Ball,Cannon Ball,10,100,,10,100,,,,0x00040400,56,2,32768,,99,,8,{},{},{}
-18001,Holy_Cannon_Ball,Holy Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Holy; },{},{}
-18002,Dark_Cannon_Ball,Dark Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Dark; },{},{}
-18003,Soul_Cannon_Ball,Soul Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Ghost; },{},{}
-18004,Iron_Cannon_Ball,Iron Cannon Ball,10,500,,10,250,,,,0x00040400,56,2,32768,,99,,8,{},{},{}
-//===================================================================
-// More Bows
-//===================================================================
-18100,Shooting_Star_C,Shooting Star,5,20,,0,190,,5,0,0x00080800,63,2,34,4,1,1,11,{ bonus bLongAtkRate,20; },{},{}
-18101,F_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,63,2,34,4,0,0,11,{ 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; },{},{}
-18102,E_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,63,2,34,4,0,0,11,{ 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; },{},{}
-18103,Mystic_Bow,Mystic Bow,5,0,,1700,75:100,,5,0,0x00080800,56,2,34,3,105,1,11,{ bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; },{},{}
-18104,Adventure_Bow,Adventure Bow,5,0,,0,60,,1,0,0x00080800,63,2,34,1,1,0,11,{ bonus bUnbreakableWeapon; },{},{}
-18105,Academy_Bow,Academy Bow,5,0,,1200,90,,5,1,0x00080800,63,2,34,1,1,1,11,{},{},{}
-18106,P_Bow3,Eden Bow III,5,0,,0,140,,5,0,0x000A0848,63,2,34,3,60,0,11,{},{},{}
-18107,Malang_Snow_Crab,Malangdo Crab,5,0,,0,120,,5,0,0x000A0848,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{}
-18108,Brindle_Eel,Zebra Eel,5,0,,0,180,,5,0,0x00080800,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{}
-18109,Catapult,Thief Crossbow,5,56000,,1100,150,,5,2,0x00020000,63,2,34,4,100,1,11,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2); },{},{}
-18110,Big_CrossBow,Giant Crossbow,5,56000,,900,160,,5,2,0x00000800,63,2,34,4,110,1,11,{ .@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; } },{},{}
-18111,Creeper_Bow,Creeper Bow,5,56000,,1500,150,,5,2,0x00080800,63,2,34,3,120,1,11,{ bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; },{},{}
-18112,Upg_Bow,Upg Bow,5,20,,600,60,,5,1,0x000A0848,63,2,34,3,1,1,11,{ .@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); },{},{}
-18113,Velum_Arbalest,Vellum Arbalest,5,20,,1100,50,,5,0,0x000A0848,63,2,34,4,95,1,11,{ bonus3 bSPVanishRaceRate,RC_Player,1000,4; bonus bAspd,-5; },{},{}
-18114,Velum_CrossBow,Vellum CrossBow,5,20,,1100,110,,5,0,0x000A0848,63,2,34,4,95,1,11,{ bonus2 bAddRace,RC_Player,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player,30; },{},{}
-18115,Orc_Archer_Bow_,Orc Archer Bow,5,20,,1600,120,,5,1,0x000A0848,63,2,34,3,65,1,11,{},{},{}
-18116,Metal_Bow,Metal Bow,5,20,,0,50,,5,1,0x00080800,63,2,34,3,1,1,11,{ .@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); },{},{}
-18117,Royal_Bow,Royal Bow,5,200000,,1500,80,,5,1,0x000A0808,63,2,34,4,105,1,11,{},{},{}
-18118,TE_Woe_Bow,TE Woe Bow,5,0,,0,120,,5,0,0x000A0848,63,2,34,3,40,1,11,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{}
-18119,Thanos_Bow,Thanos Bow,5,10,,1300,180:110,,5,1,0x00080808,56,2,34,4,120,1,11,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-18120,Bow_Of_Evil_Slayer,Evil Slayer Piercer Bow,5,10,,1350,115,,5,1,0x000A0808,63,2,34,3,100,1,11,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); },{},{}
-18121,Bow_of_Vicious_Mind,Bow of Vicious Mind,5,20,,1700,170,,5,1,0x000A0808,63,2,34,4,160,1,11,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-18122,Gigantic_Bow,Giant Bow,5,20,,3000,195,,5,1,0x00000800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50; },{},{}
-18123,Bow_Of_Storm,Bow of Storms,5,20,,1500,160,,5,1,0x00080800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15; },{},{}
-18124,Half_BF_Bow1,Half BF Bow1,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-18125,Arcus_Daemonicus,Arcus Daemonicus,5,20,,1000,130,,5,2,0x00020008,63,2,34,4,80,1,11,{ /*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; } },{},{}
-18126,Ru_Blue_Bow,Blue Bow,5,10,,1200,150,,5,1,0x00000800,56,2,34,3,100,1,11,{ bonus bAgi,5; bonus bDex,5; },{},{}
-18127,Ru_Gold_Bow,Ru Gold Bow,5,0,,1200,150,,5,2,0x00000800,56,2,34,3,120,1,11,{ bonus bAgi,8; bonus bDex,8; },{},{}
-18128,Infinity_Bow,Infinity Bow,5,20,,500,160,,5,1,0x00020800,56,2,34,4,100,1,11,{},{},{}
-18130,Crimson_Bow,Crimson Bow,5,20,,1200,120,,5,2,0x000A0848,63,2,34,3,70,1,11,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-18132,Unity_Bow,Unity Bow,5,20,,600,114,,5,2,0x000A0848,63,2,34,3,1,1,11,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-18137,Burning_Bow_,Burning Bow,5,20,,1400,95,,5,2,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{}
-18138,Frozen_Bow_,Frozen Bow,5,20,,1400,100,,5,2,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{}
-18139,Earth_Bow_,Earth Bow,5,20,,1400,105,,5,2,0x000A0808,63,2,34,3,55,1,11,{},{},{}
-18140,Gust_Bow_,Gust Bow,5,20,,1400,95,,5,2,0x000A0808,63,2,34,3,55,1,11,{},{},{}
-18145,Vigilante_Bow,Vigilante Bow,5,0,,1000,140,,5,2,0x00020000,56,2,34,3,100,1,11,{ .@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus; },{},{}
-18149,Illusion_Ballista,Illusion Ballista,5,0,,3500,200,,5,2,0x00080800,58,2,34,4,100,1,11,{ bonus bLongAtkRate,getrefine(); },{},{}
-18174,Illusion_Hunter_Bow,Illusion Hunter Bow,5,0,,1500,165,,5,2,0x00000800,56,2,34,4,120,1,11,{ .@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; } } } },{},{}
-18178,Virtual_Bow-OS,Virtual Bow-OS,5,20,,1200,200,,5,2,0x00000800,56,2,34,4,130,1,11,{ .@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; } } },{},{}
-18179,MH-P89-OS,MH-P89-OS,5,20,,1200,170,,5,2,0x00080000,56,2,34,4,130,1,11,{ .@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; } } } },{},{}
-18180,AC-B44-OS,AC-B44-OS,5,20,,600,190:135,,5,2,0x00020000,56,2,34,4,130,1,11,{ .@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; },{},{}
-18184,Rapid_Fire,Rapid Fire,5,20,,1500,185,,5,2,0x00020000,56,2,34,4,170,1,11,{ .@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; },{},{}
-18185,Sharp_Star_Bow,Sharp Star Bow,5,20,,1500,150,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; },{},{}
-18186,Aiming_Bow,Aiming Bow,5,20,,1000,210,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@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; } },{},{}
-18187,Falken_Shooter,Falken Shooter,5,20,,1000,210,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@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; },{},{}
-18188,Wind_Gale,Wind Gale,5,20,,1000,200,,5,2,0x00080000,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; },{},{}
-//===================================================================
-// More Headgears
-//===================================================================
-18500,Cheer_Scarf6,Cheer Scarf6,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,60; },{},{}
-18501,Cheer_Scarf8,Cheer Scarf8,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,80; },{},{}
-18502,Cheer_Scarf10,Cheer Scarf10,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,100; },{},{}
-18503,Small_Horn_Of_Devil,Small Devil Horns,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,1,0,562,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; },{},{}
-18504,Anubis_Helm_J,Anubis Helm J,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,769,,70,0,485,{ bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0; },{},{}
-18505,Umbala_Spirit,Umbala Spirit,4,0,,0,,1,,0,0xFFFFFFFF,63,2,1,,30,0,675,{ bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/},{},{}
-18506,Hattah_Black,Hattah Black,4,12000,,4000,,2,,1,0xFFFFFFFF,63,2,769,,1,1,676,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; },{},{}
-18507,Elven_Ears_,Elven Ears,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,70,0,73,{},{},{}
-18508,Garuda_Hat,Garuda Hat,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,30,1,677,{ 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); },{},{}
-18509,RWC2010_Indonesia,RWC2010 Indonesia,4,20,,100,,6,,1,0xFFFFFFFE,63,2,256,,15,1,678,{ bonus bLuk,5; bonus2 bSubRace,RC_Player,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; },{},{}
-18510,Blood_Angel_Hair_Band,Blood Angel Hair Band,4,0,,0,,1,,0,0xFFFFFFFF,63,2,256,,60,0,679,{ bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_DemiHuman,10; },{},{}
-18511,Blood_Angel_Wing_Ear,Blood Angel Wing Ear,4,0,,0,,1,,0,0xFFFFFFFF,63,2,512,,60,0,680,{},{},{}
-18512,Juho_Necktie,Juho Necktie,4,0,,0,,1,,1,0xFFFFFFFF,63,2,256,,20,1,443,{},{},{}
-18513,Shining_Sunflower,Shining Sunflower,4,20,,300,,0,,0,0xFFFFFFFE,63,2,256,,0,0,681,{ bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; },{},{}
-18514,Para_Team_Hat2,Eden Team Hat II,4,0,,0,,5,,1,0xFFFFFFFF,63,2,256,,60,1,682,{ autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; },{},{}
-18515,RTC_Winner_Headgear,RTC Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,683,{ bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; bonus2 bAddEff,Eff_Curse,50; },{},{}
-18516,RTC_2nd_Headgear,RTC 2nd Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,684,{ bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bAddEff,Eff_Curse,50; },{},{}
-18517,RTC_3rd_Headgear,RTC 3rd Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,685,{ bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bAddEff,Eff_Curse,50;},{},{}
-18518,Ear_Of_Angel's_Wing_,Angel Wing Ears,4,20,,100,,3,,1,0xFFFFFFFF,63,2,512,,70,0,158,{ bonus bStr,1; },{},{}
-18519,Ear_Of_Devil's_Wing_,Evil Wing Ears,4,20,,100,,3,,1,0xFFFFFFFF,63,2,512,,70,0,152,{ bonus bStr,1; },{},{}
-18520,Jaty_C,Jaty Crown,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,686,{ bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Brute,5; },{},{}
-18521,Lucky_Clover,Lucky Clover,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,50,0,571,{ bonus bLuk,1; bonus bMaxSP,20; },{},{}
-18522,Evil_Marcher_Hat,Evil Marcher Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,0,1,687,{ 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; }; },{},{}
-18523,Super_Scell,Thunderstorm Cloud,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,1,0,688,{ 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); },{},{}
-18524,Dokkebi_Mask,Dokkebi Mask,4,20,,700,,1,,0,0xFFFFFFFF,63,2,513,,50,0,689,{ bonus bStr,2; },{},{}
-18525,Watermelon_Hat,Watermelon Cap,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,30,1,690,{ bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; },{},{}
-18526,Yummy_Lollipop,Candy Cane In Mouth,4,20,,100,,2,,0,0xFFFFFFFF,63,2,1,,1,0,446,{ bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5; },{},{}
-18527,Gloomy_Pumpkin_Hat,Dark Pumpkin-head,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,45,1,691,{ bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5; },{},{}
-18528,Tare_Neko_Cru,Drooping Neko Crew,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,1,1,692,{ 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; },{},{}
-18529,Drooping_Wild_Rose,Accurate Wild Rose,4,20,,500,,5,,1,0xFFFFFFFF,63,2,768,,30,1,541,{ bonus bMaxHPrate,-10; bonus bAspdRate,3; },{},{}
-18530,Tha_Despero_Mask,Thanatos Despero Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,513,,30,0,693,{ bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4; },{},{}
-18531,Drooping_Permeter,Drooping Permeter,4,20,,1000,,8,,1,0xFFFFFFFF,63,2,256,,10,1,694,{ bonus2 bAddDefMonster,1314,-20; bonus2 bAddDefMonster,1316,-20; bonus2 bAddDefMonster,1319,-20; bonus2 bAddDefMonster,1315,-20; bonus2 bAddDefMonster,1318,-20; bonus2 bAddDefMonster,1312,-20; },{},{}
-18532,Heart_Ribbon_Band,Heart Ribbon Hairband,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,10,1,708,{ bonus bInt,2; },{},{}
-18533,Honeybee_Hat,Honey Bee Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,50,1,709,{ bonus bMdef,3; bonus2 bAddRace,RC_Insect,5; bonus2 bMagicAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,5; bonus3 bAddMonsterDropItem,518,RC_Insect,2; },{},{}
-18534,Fancy_Phantom_Mask,Fancy Phantom Mask,4,20,,1000,,5,,1,0xFFFFFFFF,63,2,768,,20,1,710,{ 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; },{},{}
-18535,Pumpkin_Hat_2010,Pumpkin Hat 2010,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,1,206,{},{},{}
-18536,Foxtail,Foxtail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,711,{ bonus bMatk,10; bonus bFixedCast,-100; },{},{}
-18537,Malangdo_Hat,Malangdo Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,726,{ bonus bFlee,6; },{},{}
-18538,Devil_Whisper,Spirit Whispers,4,20,,300,,3,,0,0xFFFFFFFF,63,2,512,,0,0,712,{ 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; },{},{}
-18539,Skull_Cap,Skull Cap,4,40,,200,,5,,1,0xFFFFFFFF,63,2,256,,10,1,713,{ bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; } },{},{}
-18540,Evil_Mask,Evil Mask,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,513,,10,0,714,{ bonus2 bSPLossRate,1,2000; bonus bAspdRate,1; },{},{}
-18541,Little_Feather_Hat,Little Feather Hat,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,30,1,715,{ bonus bDex,2; bonus bCritAtkRate,10; },{},{}
-18542,Love_Guard,Love Guard,4,20,,500,,10,,1,0xFFFFFFFF,63,2,768,,10,1,716,{ bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2; },{},{}
-18543,Witchs_Hat,Witchs Hat,4,20,,300,,7,,1,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5); },{},{}
-18544,Blrabbit_Hband,Blrabbit Hband,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,30,1,718,{},{},{}
-18545,Whrabbit_Hband,Whrabbit Hband,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,30,1,719,{},{},{}
-18546,Lover_In_Mouth,Lover In Mouth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,0,0,720,{},{},{}
-18547,Campus_Festival,Campus Festival,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,721,{},{},{}
-18548,Tiny_Hat,Tiny Hat,4,20,,30,,0,,0,0xFFFFFFFF,63,2,256,,0,1,722,{ bonus bInt,1; bonus bAgi,1; },{},{}
-18549,Nabi_Hair_Pin,Butterfly Hairpin,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,20,1,723,{ 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; },{},{}
-18550,Asgard_Blessing,Asgard Blessing,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,30,1,724,{ bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp/100),10000; },{},{}
-18551,Galaxy_Circlet,Galaxy Circlet,4,20,,1000,,5,,1,0xFFFFFFFF,63,2,256,,50,1,725,{ .@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; },{},{}
-18552,Proba_Angel_Blessing,Proba Angel Blessing,4,20,,1200,,0,,1,0xFFFFFFFF,63,2,256,,10,1,444,{ bonus bLuk,2; },{},{}
-18553,Mini_Tree,Mini Tree,4,20,,50,,5,,0,0xFFFFFFFF,63,2,256,,0,1,727,{ 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; },{},{}
-18554,King_Prawn_Hat,King Prawn Hat,4,20,,1000,,8,,0,0xFFFFFFFF,63,2,256,,0,0,728,{ bonus2 bAddItemGroupHealRate,IG_Fish,100; },{},{}
-18555,General_Helmet,General Helmet,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,729,{ bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2; },{},{}
-18556,Angel_Helmet,Angel Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,512,,0,0,3,{ bonus3 bAddMonsterIdDropItem,6464,2220,310; },{},{}
-18557,Devil_Helmet,Devil Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus3 bAddMonsterIdDropItem,6345,1812,310; },{},{}
-18558,Sinsuncho_Hat,Sinsuncho Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,0,730,{ bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10; },{},{}
-18559,Fafnir_Skin,Fafnir Skin,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,50,0,152,{ bonus bCritical,3; bonus bHPrecovRate,-100; },{},{}
-18560,Fafnir_Mask,Fafnir Mask,4,20,,300,,2,,0,0xFFFFFFFF,63,2,1,,50,0,180,{ bonus bCritical,2; },{},{}
-18561,B_Feather_Beret,B Feather Beret,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,40,1,731,{ bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-18562,Bone_Hat,Bone Hat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,732,{ bonus bMdef,3; },{},{}
-18563,Heart_Wing_Hairband,Heart Wing Hairband,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,50,1,733,{ .@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3); },{},{}
-18564,Love_Piece,Love Piece,4,20,,200,,0,,0,0xFFFFFFFF,63,2,1,,50,0,734,{ bonus bNoCastCancel; bonus bUseSPrate,15; },{},{}
-18565,Leprechaun_Hat,St Patrick's Hat,4,20,,300,,8,,1,0xFFFFFFFF,63,2,256,,40,1,735,{ bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; } },{},{}
-18566,Nut_Donut_In_Mouth,Nut Donut In Mouth,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,0,0,736,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{}
-18567,Stretched_Nose,Stretched Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,737,{},{},{}
-18568,Humming_Bird,Humming Bird,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,10,0,702,{ bonus bMdef,6; },{},{}
-18569,Soft_Sheep_Hat,Soft Sheep Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,1,738,{ bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; }; },{},{}
-18570,Ancient_Gold_Deco,Ancient Gold Ornament,4,20,,400,,7,,1,0xFFFFFFFE,63,2,256,,100,1,739,{ 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; } },{},{}
-18571,Lucky_Hat,Lucky Hat,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,0,0,740,{ bonus2 bExpAddRace,RC_All,3; },{},{}
-18572,Korean_Judge_Hat,Korean Judge Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,377,{ bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if(.@r>6){ bonus2 bSubRace,RC_DemiHuman,2;bonus2 bSubRace,RC_Player,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; },{},{}
-18573,White_Feather,White Feather,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,741,{ .@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; } },{},{}
-18574,Lord_of_Death,Lord of Death,4,20,,1000,,10,,1,0xFFFFFFFF,63,2,256,,70,1,742,{ 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; },{},{}
-18575,Wunderkammer,Wunderkammer,4,20,,500,,10,,1,0xFFFFFFFF,63,2,769,,20,0,743,{ 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; },{},{}
-18576,YinYang_Earring,YinYang Earring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,744,{ 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; },{},{}
-18577,24_Bolt,24 Bolt,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,696,{},{},{}
-18578,Helm_Of_Valor,Helm Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,0,0,258,{ bonus2 bAddRace,RC_All,3; },{},{}
-18579,9th_Anni_Hat,9th Anni Hat,4,0,,90,,0,,0,0xFFFFFFFF,63,2,256,,0,1,745,{ bonus bMdef,9; },{},{}
-18580,Yggdrasil_Crown,Yggdrasil Crown,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,1,1,746,{ bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealpower2,10; if(.@r >= 7){ bonus bHealPower,5; } if(.@r >= 9){ bonus bHealPower,3; } },{},{}
-18581,Red_Tiger_Mask,Red Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,747,{ bonus bStr,3; bonus bMaxHP,100; },{},{}
-18582,Blue_Tiger_Mask,Blue Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,748,{ bonus bStr,3; },{},{}
-18583,Navy_Drooping_Kitty,Navy Drooping Kitty,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,749,{ bonus bMdef,15; },{},{}
-18584,Brown_Drooping_Kitty,Brown Drooping Kitty,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,750,{ bonus bMdef,15; },{},{}
-18585,Orange_Bunny_Hairband,Orange Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,751,{ bonus bStr,1; bonus bInt,2; bonus bVit,3; },{},{}
-18586,Violet_Bunny_Hairband,Violet Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,752,{ bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; },{},{}
-18587,Blue_Bunny_Hairband,Blue Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,753,{ bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; },{},{}
-18588,Silver_Bunny_Hairband,Silver Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,754,{ bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; },{},{}
-18589,Strawberry_Hat,Strawberry Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,755,{ .@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10)); },{},{}
-18590,Gemma_Hairband,Gemma Hairband,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,564,{ bonus bMdef,3; },{},{}
-18591,Mini_Glasses_,Mini Glasses,4,20,,100,,2,,1,0xFFFFFFFE,63,2,512,,0,0,47,{},{},{}
-18592,Nestea_Hat,Nestea Hat,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,756,{ bonus bMdef,5; },{},{}
-18593,Fancy_Mini_Crown,Fancy Mini Crown,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,707,{ 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)); },{},{}
-18594,Magni_Cap_,Magni Cap,4,30000,,1000,,9,,1,0xFFFFFFFE,63,2,256,,0,1,250,{ bonus bStr,2; },{},{}
-18595,Horn_Of_Ancient,Horn of Ancient,4,40,,200,,8,,1,0xFFFFFFFF,63,2,256,,50,1,757,{ 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; } },{},{}
-18596,Sprout_Hat,Sprout Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,70,1,758,{ skill "WZ_HEAVENDRIVE",3; },{},{}
-18597,Mercury_Helm,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,63,2,256,,0,1,759,{ 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; }},{},{}
-18598,Mini_Tree_J,Mini Tree J,4,20,,50,,0,,1,0xFFFFFFFF,63,2,256,,0,0,727,{ bonus bMdef,20; },{},{}
-18599,Black_Devil_Mask,Black Devil Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,760,{ bonus bAllStats,2; },{},{}
-18600,Cat_Ears_Beret,Cat Ear Beret,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,761,{ 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,(.@r - 5); bonus2 bAddRace,RC_Player,(.@r - 5); },{},{}
-18601,Red_Bread_Hat,Red Bread Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,0,1,762,{ bonus bMdef,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5); },{},{}
-18602,Watermelon_Slice,Watermelon Bite,4,20,,100,,4,,0,0xFFFFFFFF,63,2,1,,30,0,763,{},{},{}
-18603,Black_Devil_Mask_,Black Devil Mask,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,760,{ bonus bAllStats,1; },{},{}
-18604,Falcon_Mask,Falcon Mask,4,10,,30,,0,,0,0xFFFFFFFF,63,2,513,,50,0,782,{ bonus2 bAddEle,Ele_Water,5; },{},{}
-18605,Dark_Age,Dark Age,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,766,{ bonus bMdef,3; },{},{}
-18606,Tear_Drop,Tear Drop,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,30,0,767,{},{},{}
-18607,Blush_,Blush,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,125,{},{},{}
-18608,Pair_Of_Red_Ribbon2,Small Ribbons,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{}
-18609,Dark_Blindfold_,Dark Blinder,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{}
-18610,7th_Anni_Hat_B,7th Anni Hat B,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,778,{ bonus bAllStats,5; bonus bMdef,4; },{},{}
-18611,Black_Glasses_,Black Glasses,4,20,,200,,2,,1,0xFFFFFFFF,63,2,512,,0,0,404,{ bonus bInt,1; bonus bMdef,2; },{},{}
-18612,White_Musang_Hat,White Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,770,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; },{},{}
-18613,Black_Musang_Hat,Black Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,771,{ bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; },{},{}
-18614,Grim_Reaper_Hat,Grim Reaper Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,732,{ bonus bFlee,3; },{},{}
-18615,Injured_Eyepatch,Injured Eyepatch,4,20,,200,,2,,0,0xFFFFFFFE,63,2,512,,20,0,772,{},{},{}
-18616,Long_Tongue,Long Tongue,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,773,{},{},{}
-18617,Onigiri_In_Mouth,Onigiri In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,774,{},{},{}
-18618,Airplane_Hat,Airplane Hat,4,20,,200,,8,,1,0xFFFFFFFE,63,2,256,,20,1,775,{},{},{}
-18619,Thief_Bandana,Thief Bandana,4,20,,200,,1,,0,0xFFFFFFFE,63,2,256,,20,1,776,{ bonus3 bAutoSpell,"TF_STEAL",1,20; },{},{}
-18620,Heart_Eyepatch,Heart Eyepatch,4,5,,50,,2,,0,0xFFFFFFFF,63,2,512,,20,1,779,{},{},{}
-18621,Gangster_Mask_A,Gangster Mask A,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,52,{},{},{}
-18622,Rocket_Helm1,Rocket Helm 1,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,764,{ bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm; },{},{}
-18623,Rocket_Helm2,Rocket Helm 2,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,765,{ bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm; },{},{}
-18624,Rocket_Helm3,Rocket Helm 3,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,768,{ bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm; },{},{}
-18625,Rocket_Helm_RWC,Rocket Helm RWC,4,10000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,769,{ bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25; },{},{}
-18626,Gelato_Hat,Gelato Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,40,1,777,{},{},{}
-18627,Dried_Leaf,Dried Leaf,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,711,{ bonus bUnbreakableHelm; },{},{}
-18628,Tare_Brownie,Tare Brownie,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,50,0,781,{ bonus bMdef,5; },{},{}
-18629,B_Desert_Wolf_Hat,Baby Desert Wolf Hat,4,10,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,1,783,{ bonus bMdef,5; bonus bLongAtkDef,5; },{},{}
-18630,Dep_Alice_Hat,Drooping Alicel,4,20,,500,,6,,0,0xFFFFFFFE,63,2,256,,70,1,784,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } },{},{}
-18631,Ribbon_Chef_Hat,Ribbon Chef Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,70,1,785,{ 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; } },{},{}
-18632,Yellow_Poring_Hairpin,Yellow Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,786,{},{},{}
-18633,Pink_Poring_Hairpin,Pink Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,787,{},{},{}
-18634,Green_Poring_Hairpin,Green Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,788,{},{},{}
-18635,Blue_Poring_Hairpin,Blue Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,789,{},{},{}
-18636,Bridal_Ribbon,Bridal Ribbon,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,30,1,790,{ bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; },{},{}
-18637,Ancient_Admiral_Helm,Ancient Admiral Helm,4,20,,700,,4,,1,0xFFFFFFFF,63,2,768,,0,1,660,{ bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25; },{},{}
-18638,Citron_Hat,Citron Hat,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,1,1,791,{ bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; },{},{}
-18639,Naval_Officer_Hat,Naval Officer Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,792,{ bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; },{},{}
-18640,Starfish_Headband,Starfish Headband,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,793,{},{},{}
-18641,Ribbon_Magic_Hat,Ribbon Magic Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,794,{ bonus bMaxSP,50; bonus bMatkRate,5; },{},{}
-18642,hand_Scissorhand_Model,Scissorhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,795,{ bonus bAgi,1; },{},{}
-18643,Rockhand_Model,Rockhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,796,{ bonus bStr,1; },{},{}
-18644,Paperhand_Model,Paperhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,797,{},{},{}
-18645,Sailor_Hat,Sailor Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,1,1,798,{ bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{}
-18646,Cow_Hat,Cow Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,1,1,799,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{}
-18647,Star_Eyepatch,Star Eyepatch,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,0,800,{ bonus2 bResEff,Eff_Stun,1500; },{},{}
-18648,Tongue_Charm,Tongue Charm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,801,{ bonus2 bSubRace,RC_Demon,3; },{},{}
-18649,Lude_Mask,Lude Mask,4,10,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,1,802,{},{},{}
-18650,RWC_Shouting_Mouth,RWC Shouting Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,1,0,194,{ 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!!\"; }"; },{},{}
-18651,Ignis_Cap,Ignis Cap,4,20,,800,,8,,1,0xFFFFFFFF,63,2,256,,40,1,803,{},{},{}
-18652,Vanargand_Helm,Vanargandr Helm,4,20,,1500,,10,,1,0xFFFFFFFF,63,2,256,,80,1,804,{ bonus bMdef,5; .@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; } },{},{}
-18653,Devi_Headphone,Deviruchi Headphone,4,20,,200,,8,,1,0xFFFFFFFF,63,2,256,,30,1,805,{ bonus bMdef,4; },{},{}
-18655,Lupin_One_Eyed_Glasses,Goedo Monocle,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,807,{ bonus bAgi,2; },{},{}
-18656,Wit_Pumpkin_Hat,Witch's Pumpkin Hat,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,20,1,717,{ 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; },{},{}
-18657,Pegasus_Wing_Ears,Pegasus Wing Ears,4,20,,500,,1,,0,0xFFFFFFFF,63,2,512,,80,0,568,{ bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0))); },{},{}
-18658,Holy_Santa_Beard,Holy Santa Beard,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,25,{},{},{}
-18659,Boitata_Hat,Boitata Hat,4,20,,0,,5,,1,0xFFFFFFFF,63,2,768,,0,1,808,{ autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10; },{},{}
-18660,Indi_Feather_Band,Indian Feather Headband,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,0,1,809,{ bonus bAgi,2; },{},{}
-18661,Trident_Helmet,Trident Helm,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,20,1,810,{ bonus bStr,2; },{},{}
-18662,Antler_Fedora,Antler Fedora,4,20,,400,,3,,0,0xFFFFFFFE,63,2,256,,1,1,811,{ bonus bInt,3; },{},{}
-18663,Sunglasses_Bball_Hat,Sunglasses Baseball Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,20,1,812,{ bonus bInt,3; },{},{}
-18664,Blind_Glasses,Blind Glasses,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,1,813,{},{},{}
-18665,Orange_In_Mouth,Orange In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,814,{},{},{}
-18666,CD_In_Mouth,CD In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,815,{ 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; },{},{}
-18667,Cat_Lace_Hairband,Cat Lace Hairband,4,20,,500,,2,,1,0xFFFFFFFE,63,2,256,,60,0,816,{ bonus bDex,3; },{},{}
-18668,Droopy_Turtle_Hat,Droopy Turtle Hat,4,20,,300,,1,,1,0xFFFFFFFE,63,2,256,,1,1,694,{ skill "AL_DECAGI",3; },{},{}
-18669,Cowhide_Hat,Cowhide Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,819,{ bonus bDex,2; bonus bMaxHPrate,1; },{},{}
-18670,Hankie_In_Mouth,Hankie In Mouth,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,12,0,818,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; },{},{}
-18671,Rudolf_Hairband,Rudolf Hairband,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,30,1,836,{},{},{}
-18672,Tare_Pope,Drooping Pope,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm; },{},{}
-18673,Tare_Pope_,Drooping Pope,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,1,817,{ bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); } },{},{}
-18674,Planewing_Hat,Planewing Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,820,{ bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000; },{},{}
-18675,Green_Apple_Hat,Green Apple Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,20,1,821,{ bonus bDex,2; bonus bHit,5; },{},{}
-18676,Hexagon_Spectacles,Hexagon Spectacles,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,0,822,{ bonus bFlee,2; },{},{}
-18677,Cherry_Twig_In_Mouth,Cherry Twig In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,823,{ bonus2 bAddRace,RC_Plant,2; },{},{}
-18678,Leek_In_Mouth,Leek In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,824,{ bonus2 bSubSize,Size_Small,2; },{},{}
-18679,Abacus_In_Mouth,Abacus In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,825,{ skill "MC_IDENTIFY",1; },{},{}
-18680,Tw_Frog_Hat,Tw Frog Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,35,0,826,{ bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5; },{},{}
-18681,Puppy_Ears_Hat,Puppy Ears Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,1,1,827,{ bonus bVit,2; bonus bMaxHp,100; },{},{}
-18682,Teardrop,Teardrop,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,1,1,828,{ bonus bMaxSP,15; },{},{}
-18683,Carrot_In_Mouth,Carrot In Mouth,4,20,,200,,1,,0,0xFFFFFFFF,63,2,1,,1,0,829,{ bonus2 bSubRace,RC_Plant,3; },{},{}
-18684,Showy_High_Cap,Showy High Cap,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,830,{ bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50; },{},{}
-18685,Stardust_Hairband,Stardust Hairband,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,0,831,{},{},{}
-18686,2011_RMSC_1,2011 RMSC 1,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; bonus bAllStats,5; },{},{}
-18687,2011_RMSC_2,2011 RMSC 2,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; bonus bAllStats,3; },{},{}
-18688,2011_RMSC_3,2011 RMSC 3,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; bonus bAllStats,1; },{},{}
-18689,2011_RMSC_4,2011 RMSC 4,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; },{},{}
-18690,Sirt_Evil_Eye,Sirt Evil Eye,4,20,,400,,0,,0,0xFFFFFFFF,63,2,512,,50,0,345,{ bonus bUnbreakableHelm; bonus bStr,1; },{},{}
-18691,Rising_Black_Dragon,Rising Black Dragon,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,863,{},{},{}
-18692,Mike_Hat,Mike Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,837,{ bonus bDex,2; bonus bLuk,1; },{},{}
-18693,Sleeping_Kitty_Cat,Sleeping Kitty Cat,4,20,,200,,4,,1,0xFFFFFFFE,63,2,256,,20,1,838,{ bonus2 bAddRace,RC_Brute,2; },{},{}
-18694,Red_Hood,Red Hood,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,20,1,839,{ bonus bCritical,10; },{},{}
-18695,Phoenix_Crown,Phoenix Crown,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,20,1,840,{ bonus bInt,2; },{},{}
-18696,Orange_Hat,Orange Hat,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,20,1,841,{ skill "MC_MAMMONITE",2; },{},{}
-18697,Syringe_In_Mouth,Syringe In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,842,{},{},{}
-18698,Cheesy_Snack_In_Mouth,Cheesy Snack In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,843,{},{},{}
-18699,Starving_Fish_Hat,Starving Fish Hat,4,20,,1200,,3,,0,0xFFFFFFFF,63,2,256,,1,0,844,{},{},{}
-18700,Rabbit_Ribbon,Rabbit Ribbon,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,50,1,845,{ bonus bInt,1; },{},{}
-18701,Ancient_Civil_Man,Ancient Civil Man,4,20,,500,,2,,0,0xFFFFFFFE,63,2,256,,70,0,846,{ bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3; },{},{}
-18702,Shaving_Cream,Shaving Cream,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,10,0,847,{},{},{}
-18703,Stem_In_Mouth,Stem In Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,1,0,848,{ bonus2 bResEff,Eff_Poison,2000; },{},{}
-18704,Drosera_Hairpin,Drosera Hairpin,4,20,,640,,6,,1,0xFFFFFFFF,63,2,256,,64,1,850,{ bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10; },{},{}
-18706,Can_Hat,Can Hat,4,20,,400,,3,,0,0xFFFFFFFE,63,2,256,,20,1,851,{ bonus bLuk,3; },{},{}
-18707,Maneater_Flower_Hat,Maneater Flower Hat,4,20,,500,,3,,0,0xFFFFFFFE,63,2,256,,20,1,852,{ bonus bFlee,20; },{},{}
-18708,Candy_Hat,Candy Hat,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,20,1,853,{ skill "AL_HEAL",3; },{},{}
-18709,Black_Knitted_Hat,Black Knitted Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,0,1,854,{ bonus bMaxSP,100; },{},{}
-18710,Sugared_Fruit_Stick,Sugared Fruit Stick,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,855,{},{},{}
-18711,Electric_Sunglass,Electric Sunglass,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,0,856,{},{},{}
-18712,Fan_In_Mouth,Fan In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,857,{},{},{}
-18713,Monkey_On_Fur_Hat,Monkey On Fur Hat,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,20,1,858,{ bonus bDex,1; bonus bAgi,1; bonus bFlee,10; },{},{}
-18714,Hippo_Hat,Hippo Hat,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,10,1,859,{ bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0; },{},{}
-18715,Helm_Of_Thoth,Helm Of Thoth,4,20,,2500,,2,,1,0xFFFFFFFE,63,2,768,,80,0,860,{ bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100; },{},{}
-18716,Strawberry_In_Mouth,Strawberry In Mouth,4,20,,50,,2,,0,0xFFFFFFFF,63,2,1,,10,0,861,{},{},{}
-18718,Rose_Hairband,Rose Hairband,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,30,0,864,{ bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; },{},{}
-18724,L_Magestic_Goat_,Gigantic Majestic Goat,4,20,,800,,5,,1,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{}
-18727,Sedora_Hat,Sedora Hat,4,20,,300,,13,,1,0xFFFFFFFF,63,2,256,,10,1,869,{},{},{}
-18728,Egir_Helm,Egir Helm,4,200000,,800,,10,,1,0xFFFFFFFF,63,2,256,,110,1,870,{ bonus bMdef,5; bonus bUnbreakableHelm; },{},{}
-18729,MVP_Basketball,MVP Basketball,4,20,,150,,6,,1,0xFFFFFFFF,63,2,256,,1,1,871,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3)); },{},{}
-18730,Cryptura_Academy_Hat,Cryptura Academy Hat,4,0,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,872,{ bonus bMaxHP,15; bonus bMaxSP,5; },{},{}
-18732,TE_Woe_Cap,TE Woe Cap,4,0,,0,,5,,0,0xFFFFFFFF,63,2,256,,40,1,14,{ bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player,10; bonus2 bMagicAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{}
-18733,TE_Woe_Bone_Helm,TE Woe Bone Helm,4,0,,0,,10,,0,0x000444A2,63,2,256,,40,1,103,{ bonus bBaseAtk,10; bonus2 bAddRace,RC_Player,20; bonus2 bResEff,Eff_Freeze,25; },{},{}
-18734,TE_Woe_Magic_Eyes,TE Woe Magic Eyes,4,0,,0,,5,,0,0x00818315,63,2,256,,40,1,209,{ bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player,20; bonus2 bResEff,Eff_Freeze,25; },{},{}
-18736,Censor_Bar_,Censor Bar,4,0,,100,,,,0,0xFFFFFFFF,63,2,512,,1,0,229,{},{},{}
-18737,Fortier_Mask,Fortier Masque,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,876,{ bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4; },{},{}
-18739,Carnation_Hairband,Carnation Hairband,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,878,{ bonus bLuk,1; },{},{}
-18740,C_Hair_Of_The_Strong,RMSC2012 Special Costume,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,879,{},{},{}
-18741,C_Will_O_Wisp,Costume Will O Wisp,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,,880,{},{ sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; },{ sc_end SC_STRANGELIGHTS; }
-18742,C_MoonStar_Accessory,Costume Moon and Stars,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,881,{},{ sc_start SC_MOONSTAR,INFINITE_TICK,0; },{ sc_end SC_MOONSTAR; }
-18743,C_Spirit_Of_Chung_E,Costume Spirit Of Chung E,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,882,{},{},{}
-18744,C_World_Star,Costume Twilight,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,883,{},{ sc_start SC_SUPER_STAR,INFINITE_TICK,0; },{ sc_end SC_SUPER_STAR; }
-18745,Choco_Stick_In_Mouth,Choco Stick In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,884,{ bonus bMaxSP,50; },{},{}
-18746,Chilly_Breath,Chilly Breath,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,885,{ bonus bInt,1; },{},{}
-18747,Eyes_Of_Ifrit,Eyes Of Ifrit,4,20,,100,,1,,1,0xFFFFFFFF,63,2,512,,0,0,886,{ bonus bDex,1; bonus2 bResEff,Eff_Curse,2500; },{},{}
-18748,Gold_Ingot_Poring_Hat,Gold Ingot Poring Hat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,0,1,887,{ bonus bDex,2; bonus bLuk,2; },{},{}
-18749,Majoruros_Horn,Majoruros Horn,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,0,1,888,{ bonus bStr,2; bonus bMaxHP,100; },{},{}
-18750,Poker_Card_In_Mouth,Poker Card In Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,889,{ bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player,2; },{},{}
-18752,Cursed_Book,Cursed Book,4,20,,300,,3,,1,0xFFFFFFFE,63,2,256,,99,1,890,{ .@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3); },{},{}
-18753,Tw_Rice_Ball,Tw Rice Ball,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,0,892,{ bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100; },{},{}
-18754,Blood_Sucker,Blood Sucker,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,40,0,893,{ bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{}
-18755,Feather_Beret_,Feather Beret,4,0,,600,,1,,1,0xFFFFFFFF,63,2,256,,1,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{}
-18756,Black_Shiba_Inu_Hat,Black Shiba Inu Hat,4,20,,400,,6,,1,0xFFFFFFFF,63,2,256,,50,1,894,{ bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; },{},{}
-18758,Hat_Of_Scrat,Hat Of Scrat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,0,1,896,{},{},{}
-18759,Stretched_Nose_M,Wood Goblin's Nose,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,50,0,737,{ bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; },{},{}
-18760,Remodel_Wizardry_Hat,Improved Mage Hat,4,20,,300,,2,,1,0x00810204,63,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6; },{},{}
-18761,Remodel_Magician_Hat,Improved Magician Hat,4,20,,500,,6,,1,0x00818314,63,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSP,.@r*5; if(.@r>=7) bonus bDex,.@r-6; },{},{}
-18762,Remodel_Mask_Of_Fox,Improved Kitsune Mask,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,153,{ bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4; },{},{}
-18763,Remodel_Joker_Jester,Improved Joker Jester,4,20,,100,,3,,1,0xFFFFFFFE,63,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5; },{},{}
-18764,Remodel_Bunny_Band,Improved Bunny Band,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5; },{},{}
-18765,Enhanced_Corsair,Enhanced Corsair,4,20,,500,,10,,1,0xFFFFFFFE,63,2,256,,99,1,105,{ bonus bVit,1; bonus bMaxHprate,5; .@r = getrefine(); if(.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if(.@r>=9) bonus bMaxHPrate,3; },{},{}
-18766,Enhanced_Helm_Of_Angel,Enhanced Helm of Angel,4,20,,1600,,10,,1,0x00CFDF80,63,2,256,,99,1,110,{ 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; },{},{}
-18767,Enhanced_Helm_Of_Sun,Enhanced Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,63,2,768,,99,1,138,{ 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); },{},{}
-18768,Enhanced_Bone_Helm,Enhanced Bone Helm,4,20,,800,,15,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; .@j = getrefine(); if(.@j>=7) .@i = 1; if(.@j>=9) .@i = 2; bonus2 bSubEle,Ele_Neutral,2+(2*.@i); },{},{}
-18769,Remodel_Munak_Turban,Improved Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,1,51,{ bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10; },{},{}
-18770,Remodel_Bongun_Hat,Improved Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,1,139,{ bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10; },{},{}
-18771,Remodel_Opera_Mask,Improved Opera Phantom Mask,4,20,,200,,2,,0,0xFFFFFFFF,63,2,512,,20,0,128,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{}
-18772,Improved_Binoculars,Advanced Binoculars,4,20,,100,,2,,0,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; bonus bLongAtkRate,1; },{},{}
-18773,Improved_Fin_Helm,Advanced Fin Helm,4,20,,300,,5,,0,0x00004082,63,2,512,,65,0,100,{ bonus bMaxHP,300+BaseLevel; /* unconfirmed */ },{},{}
-18774,Improved_Assassin_Mask,Advanced Assassin Mask,4,20,,100,,1,,0,0x00001100,63,2,1,,70,0,180,{ bonus bCritical,1; bonus bCritAtkRate,1; },{},{}
-18775,Improved_Welding_Mask,Advanced Welding Mask,4,20,,300,,2,,0,0x00040420,63,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5; },{},{}
-18776,Improved_Kiss_Of_Angel,Advanced Angel's Kiss,4,10000,,300,,6,,1,0x00000001,63,2,256,,99,1,255,{ bonus bSPrecovRate,30; },{},{}
-18779,RWC_Champ_Crown_Red,RWC Champ Crown First Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,902,{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; },{},{}
-18780,RWC_Champ_Crown_Blue,RWC Champ Crown Second Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,903,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; },{},{}
-18781,RWC_Champ_Crown_Black,RWC Champ Crown Third Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,904,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1; },{},{}
-18782,Butterfly_Wing_Ear_J,Butterfly Wing Ear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,695,{ bonus bDex,2; bonus bUnbreakableHelm; },{},{}
-18785,King_Poring_Hat,King Poring Hat,4,20,,600,,10,,1,0xFFFFFFFF,63,2,256,,10,1,905,{ bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); } },{},{}
-18786,Anemos_Mask,Anemos Mask,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,906,{ bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4; },{},{}
-18787,Goal_Tender_Mask,Goal Tender Mask,4,20,,200,,5,,0,0xFFFFFFFF,63,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player,8; },{},{}
-18790,Rainbow_Poring_Hat,Rainbow Poring Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,900,{},{},{}
-18791,Shrine_Maiden_Hat,Shrine Maiden Hat,4,20,,200,,30,,1,0xFFFFFFFF,63,2,256,,,,908,{},{},{}
-18792,Idn_Sakkat,Indonesian Independence Sakkat,4,10,,400,,,,0,0xFFFFFFFE,63,2,256,,45,1,901,{ bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; },{},{}
-18793,Sorc_Night_Cap,Sorcerer's Night Cap,4,20,,200,,25,,1,0x00010000,56,2,256,,100,1,911,{ .@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; },{},{}
-18796,RWC_Champ_Crown_QF,RWC Champ Crown Fourth Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,914,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2; },{},{}
-18803,Rose_Cascade,Rose Cascade,4,0,,500,,,,1,0xFFFFFFFF,63,2,256,,,1,920,{ .@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); },{},{}
-18805,Eclipse_Hat,Eclipse Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,922,{ bonus bLuk,3; bonus bMdef,5; },{},{}
-18806,Black_Rabbit_Hat,Black Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,923,{ bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{}
-18807,Yellow_Yuzu_Hat,Yellow Yuzu Hat,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,0,1,924,{ bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; },{},{}
-18808,Wing_Form_Spectacle,Wing Form Spectacle,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,0,1,925,{ bonus bAgi,1; },{},{}
-18810,Hell_Pumpkin_Hat,Hell Pumpkin Hat,4,20,,500,,12,,0,0xFFFFFFFF,63,2,256,,0,1,717,{ bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-18813,New_Wave_Sunglasses,New Wave Sunglasses,4,10,,100,,,,0,0xFFFFFFFF,63,2,512,,30,,856,{ bonus bDelayrate,-10; },{},{}
-18814,Angel_School_Cap,Angel School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,927,{ bonus bInt,2; bonus bVit,1; },{},{}
-18815,Devil_School_Cap,Devil School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,928,{ bonus bStr,2; bonus bVit,1; },{},{}
-18816,Adv_Angel_School_Cap,Evoked Angel School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,929,{ bonus bInt,2; bonus bVit,2; bonus bLuk,1; },{},{}
-18817,Adv_Devil_School_Cap,Evoked Devil School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,930,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; },{},{}
-18818,Red_Pencil_In_Mouth,Red Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,931,{ bonus bUnbreakableHelm; bonus bHit,3; },{},{}
-18819,Blue_Pencil_In_Mouth,Blue Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,932,{ bonus bUnbreakableHelm; bonus bHit,3; },{},{}
-18820,Gray_Helmet,Gray Helmet,4,20,,450,,35,,1,0xFFFFFFFF,56,2,256,,120,1,941,{ bonus2 bSubEle,Ele_Holy,3+getrefine()/2; },{},{}
-18821,Rainbow_Feather_Deco,Rainbow Feather Deco,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,1,1,934,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; },{},{}
-18823,Imperial_Feather,Imperial Feather,4,10,,500,,,,0,0xFFFFFFFF,63,2,512,,70,1,935,{ bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; } },{},{}
-18827,Valkyrie_Circlet,Valkyrie Circlet,4,0,,300,,10,,1,0xFFFFFFFF,63,2,256,,,1,940,{ bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; },{},{}
-18828,2012RMSCNO1,2012 RWC Winners Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,942,{ bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; },{},{}
-18829,2012RMSCNO2,2012 RWC Runners-Up Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,943,{ bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; },{},{}
-18830,2012RMSCNO3,2012 RWC 2nd Runner Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,944,{ bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; },{},{}
-18831,2012RMSCNO4,2012 RWC Special Helmet,4,0,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,0,945,{ bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10; },{},{}
-18832,Rolf_Von_Gigue_666,Rolf Von Gigue 666,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,946,{ bonus3 bAutoSpell,"BS_ADRENALINE",2,5; },{},{}
-18839,Poring_Sunglasses,Poring Sunglasses,4,0,,100,,10,,1,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus bDex,1; },{},{}
-18841,Small_Poring_Band,Small Poring Band,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,955,{ .@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; },{},{}
-18842,Hat_Of_Girl,Hat Of Girl,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,956,{ .@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3; },{},{}
-18843,Small_Deviling_Hat,Small Deviling Hat,4,20,,350,,7,,1,0xFFFFFFFF,63,2,256,,0,1,957,{ .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5; },{},{}
-18844,Blue_Poring_Bubble,Blue Poring Bubble,4,20,,50,,5,,0,0xFFFFFFFF,63,2,1,,0,0,958,{ bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee,20; },{},{}
-18845,Banshee_Master_Kiss,Banshee Master Kiss,4,20,,200,,5,,0,0xFFFFFFFF,63,2,1,,0,0,959,{ bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{}
-18846,Seagod_Protector,Seagod Protector,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,960,{ bonus2 bSubDefEle,Ele_Water,5; },{},{}
-18847,Jolly_Roger,Jolly Roger,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,1,1,962,{ 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; } },{},{}
-18848,Lush_Rose,Lush Rose,4,10,,200,0:20,0,,1,0xFFFFFFFF,63,2,256,,1,1,963,{ bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100; },{},{}
-18849,Celines_Ribbon,Celines Ribbon,4,10,,200,,,,1,0xFFFFFFFF,63,2,256,,1,1,967,{ bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000; },{},{}
-18850,Polar_Bear_Cap,Polar Bear Cap,4,20,,300,,7,,0,0xFFFFFFFF,63,2,256,,1,0,966,{ bonus bUnbreakableHelm; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100; },{},{}
-//18851,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,1,966,{ /*Is this correct item?*/ },{},{}
-18851,ValentineHeart,Valentine Heart,4,20,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,397,{ bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7; },{},{}
-18852,Berry_Hat_Decoration,Tasty Strawberry Hat,4,20,,150,,4,,,0xFFFFFFFF,63,2,256,,30,1,968,{ bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; },{},{}
-18853,Berry_Hat_Decoration_,Tasty Strawberry Hat,4,20,,150,,4,,,0xFFFFFFFF,63,2,256,,30,1,968,{ bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; },{},{}
-18854,ValentineYellowHeart,Yellow Valentine Heart,4,20,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,865,{ bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7; },{},{}
-18855,Aviator_Hat,Aviator Hat,4,10,,100,,10,,0,0xFFFFFFFF,63,2,256,,1,1,972,{ bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL; },{},{}
-18856,W_King_Tiger_Doll_Hat,W King Tiger Doll Hat,4,10,,0,,10,,0,0xFFFFFFFF,63,2,256,,1,1,973,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,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!!\"; }"; },{},{}
-18857,Curupira_Hat,Curupira Hat,4,10,,100,,20,,1,0xFFFFFFFF,63,2,256,,1,1,974,{ bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500; },{},{}
-18858,Pink_Angeling_Bubble,Pink Angeling Bubble,4,10,,50,,5,,0,0xFFFFFFFF,63,2,1,,1,,975,{ bonus bMaxHP,200; bonus bAspdRate,1; },{},{}
-18859,Angeling_Bubble,Angeling Bubble,4,10,,50,,5,,0,0xFFFFFFFF,63,2,1,,1,,976,{ bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; },{},{}
-18860,Red_Flower_Hat,Red Flower Hat,4,10,,200,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1033,{ bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; } },{},{}
-18861,Zaha_Doll_Hat_J,Zaha Doll J Hat,4,10,,100,,,,1,0xFFFFFFFF,63,2,256,,50,1,461,{ bonus bHealPower,15; bonus bUseSPrate,15; },{},{}
-18863,Exorcist_Robe,Exorcist Robe,4,10,,1700,,57,,1,0xFFFFFFFF,63,2,16,,60,1,,{ bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10; },{},{}
-18864,Earth_Goddess_Flower_J,Earth Goddess Flower,4,10,,250,,6,,0,0xFFFFFFFF,63,2,256,,1,1,864,{ bonus2 bAddEle,Ele_Earth,15; skill "WZ_EARTHSPIKE",5; },{},{}
-18865,Sword_Master_Crown,Sword Master Crown,4,10,,1000,,30,,1,0xFFFFFFFF,63,2,256,,50,1,981,{ .@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; },{},{}
-18867,Vajra,Vajra,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,48,0,983,{ bonus bDex,1; bonus bLongAtkRate,2; },{},{}
-18868,Assassin_Skull_Mask,Assassin Skull Mask,4,10,,500,,2,,0,0xFFFFFFFF,63,2,513,,70,,984,{ bonus bCritical,5; },{},{}
-18870,Very_Sweet_Candy_Bar,Very Sweet Candy Bar,4,10,,10,,,,0,0xFFFFFFFF,63,2,1,,1,1,446,{ bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2; },{},{}
-18871,Very_Sweet_Candy,Very Sweet Candy,4,10,,10,,,,0,0xFFFFFFFF,63,2,1,,1,1,446,{ bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5; },{},{}
-18872,Snake_Hat,Snake Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,986,{ bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm; },{},{}
-18873,Sweet_Valentine_Out,Sweet Valentine Out,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,865,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; },{},{}
-18874,One_Eyed_Glass_,Cyclops Glasses,4,10,,100,,,,1,0xFFFFFFFF,63,2,512,,1,,23,{},{},{}
-18877,Baron_Evil_Eye,Baron's Evil Eye,4,10,,300,,,,0,0xFFFFFFFF,63,2,512,,30,,989,{ bonus bDelayrate,-5; bonus bUseSPrate,5; },{},{}
-18878,Palace_Guard_Cap,Palace Guard Cap,4,10,,1000,,15,,1,0xFFFFFFFF,63,2,256,,50,1,991,{ .@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm; },{},{}
-18879,Angry_Scorpion_Hat,Angry Scorpion Hat,4,10,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,995,{ bonus bMdef,5; },{},{}
-18880,Advanced_Jao_King_Hat,Advanced Jao King Hat,4,10,,1500,,4,,1,0xFFFFFFFF,63,2,256,,175,1,996,{ bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{}
-18882,Kannam_On_Head,Kannam On Head,4,10,,200,,5,,0,0xFFFFFFFF,63,2,256,,20,1,1003,{ bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50; },{},{}
-18885,Jejecap,Jejecap,4,0,,100,,8,,0,0xFFFFFFFF,63,2,256,,70,1,1011,{ bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player,11; bonus2 bAddItemHealRate,522,70; },{},{}
-18887,Aqua_Bunny_Band,Aqua Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1012,{ bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10; },{},{}
-18888,Maroon_Bunny_Band,Maroon Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1013,{ 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; },{},{}
-18889,Golden_Bunny_Band,Golden Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1014,{ 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; },{},{}
-18890,Gray_Bunny_Band,Gray Bunny Band,4,0,,0,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1015,{ 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; },{},{}
-18891,Husky_Hat,Husky Hat,4,0,,500,,5,,1,0xFFFFFFFF,63,2,256,,70,1,1016,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3); },{},{}
-18892,Ufo_Poring_Hat,Ufo Poring Hat,4,0,,1000,,5,,1,0xFFFFFFFF,63,2,256,,10,1,1017,{ 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; },{},{}
-18893,Dragon_Claw_Helm,Dragon Claw Helm,4,0,,1000,,5,,1,0xFFFFFFFF,63,2,256,,10,1,1018,{ bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if(getrefine()>11){ bonus bMaxHPrate,7; bonus bMaxSPrate,3; } },{},{}
-18894,Rainbow_Star,Rainbow Star,4,0,,500,,5,,0,0xFFFFFFFF,63,2,512,,70,0,1019,{ bonus2 bSubRace,RC_Player,5; },{},{}
-18895,Celestial_Dark_Flame,Celestial Dark Flame,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1008,{ bonus2 bSubEle,Ele_Fire,8; },{},{}
-18896,Pterios_Fins,Pterios Fins,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1009,{ bonus2 bSubEle,Ele_Fire,8; },{},{}
-18897,Azure_Diadem,Azure Diadem,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1010,{ bonus2 bSubEle,Ele_Water,8; },{},{}
-18898,Yggdrasil_Herald_Crown,Yggdrasil Herald Crown,4,0,,200,,6,,1,0xFFFFFFFF,63,2,256,,60,1,997,{ bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-7; if(.@rate){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; } },{},{}
-18900,Weisswurst,Weisswurst,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,60,0,1022,{ bonus bMaxHP,50; },{},{}
-18901,Seppl_Hat,Seppl Hat,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,60,0,1023,{ bonus bVit,3; bonus bHPrecovRate,10; },{},{}
-18902,Shovel_Hat,Shovel Hat,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,50,0,1024,{ bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700; },{},{}
-18908,Isabella_Red_Ear,Isabella Red Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1030,{ bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if(.@r>=9) bonus bAspd,1+(.@r-9)/2; },{},{}
-18909,Isabella_Brown_Ear,Isabella Brown Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1031,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bMatk,getrefine()*2; },{},{}
-18910,Isabella_Blue_Ear,Isabella Blue Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1032,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; } },{},{}
-18917,LoveLove_Balloon,LoveLove Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,0,1039,{ bonus bAllStats,1; bonus bUnbreakableHelm; },{},{}
-18918,Long_Octopus_Balloon,Long Octopus Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,,1040,{ bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm; },{},{}
-18925,GodOfWinds_Fan,GodOfWinds Fan,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,,0,1051,{ bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5; },{},{}
-18929,Elephant_Model_Hat,Elephant Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1065,{ .@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50; },{},{}
-18930,Gorilla_Model_Hat,Gorilla Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1066,{ bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50; },{},{}
-18931,Lion_Model_Hat,Lion Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1067,{ .@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; },{},{}
-18932,Rhino_Model_Hat,Rhino Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1068,{ .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50; },{},{}
-18933,Mechanical_Plant_Hat,Mechanical Plant Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,45,1,1069,{ .@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r); },{},{}
-18934,Fox_Ears_Bell_Ribbon,Fox Ears Bell Ribbon,4,0,,400,,4,,1,0xFFFFFFFF,63,2,256,,50,1,1070,{ bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ .@r = getrefine(); bonus bCritical,100; bonus bLongAtkRate,5+(.@r > 6 ? .@r : 0); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }"; },{},{}
-18936,Golden_Fish,Golden Fish In Mouth,4,1,,10,,1,,0,0xFFFFFFFF,63,2,1,,1,0,1081,{ bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2; },{},{}
-18937,Memories_Of_Lovers,Memories Of Lovers,4,0,,100,,,,0,0xFFFFFFFF,63,2,512,,,1,1072,{ bonus bMdef,7; bonus bMaxHPrate,2; },{},{}
-18938,Astro_Circle,Astro Circle,4,0,,300,,1,,0,0xFFFFFFFF,63,2,256,,,1,1073,{ bonus bInt,1; .@r = getrefine(); .@t = (.@r > 6 ? (.@r*2) : -((.@r/3*5))); bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; },{},{}
-18940,10_Gallon_Hat_Of_Flame,10 Gallon Hat Of Flame,4,10,,1000,,0,,0,0xFFFFFFFF,63,2,256,,90,1,1075,{},{},{}
-18947,Pipe_Of_Jiraiya,Jiraiya's Pipe,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1088,{ bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20; },{},{}
-18948,Mask_Of_Orochimaru,Orochimaru's Mask,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1089,{ bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; },{},{}
-18949,Scroll_Of_Tsunade,Tsunade's Scroll,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1090,{ bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; },{},{}
-//
-18960,Love_Daddy_2013,Love Daddy 2013,4,10,,10,,10,,1,0xFFFFFFFF,63,2,256,,,1,1104,{ .@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; } },{},{}
-18970,Magical_Moon_Cat,Magical Moon Cat,4,20,,50,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2); },{},{}
-18971,Old_Rune_Circlet,Old Rune Circlet,4,10,,100,,10,,1,0x00000080,56,2,256,,170,1,623,{ 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; },{},{}
-18972,Old_Mitra,Old Mitra,4,10,,100,,10,,1,0x00000100,56,2,256,,170,1,624,{ 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; },{},{}
-18973,Old_Driver_Band_R,Old Driver Band,4,10,,100,,10,,1,0x00000400,56,2,256,,170,1,626,{ 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; },{},{}
-18974,Old_Driver_Band_Y,Old Driver Band(Yellow),4,10,,100,,10,,1,0x00000400,56,2,256,,170,1,637,{ 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); },{},{}
-18975,Old_Shadow_Handicraft,Old Shadow Handicraft,4,10,,100,,10,,1,0x00020000,56,2,256,,170,1,627,{ 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; } },{},{}
-18976,Old_Minstrel_Song_Hat,Old Minstrel Song's Hat,4,10,,100,,10,,1,0x00080000,56,1,256,,170,1,628,{ 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; },{},{}
-18977,Old_Midas_Whisper,Old Midas Whisper,4,10,,100,,10,,1,0x00040000,56,2,256,,170,1,629,{ 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; },{},{}
-18978,Old_Magic_Stone_Hat,Old Magic Stone Hat,4,10,,100,,10,,1,0x00000200,56,2,256,,170,1,630,{ 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); },{},{}
-18979,Old_Blazing_Soul,Old Blazing Soul,4,10,,100,,10,,1,0x00008000,56,2,256,,170,1,631,{ 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; },{},{}
-18980,Old_Wind_Whisper,Old Wind Whisper,4,10,,100,,10,,1,0x10000,56,2,256,,170,1,633,{ 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); },{},{}
-18981,Old_Dying_Swan,Old Dying Swan,4,10,,100,,10,,1,0x00080000,56,0,256,,170,1,635,{ 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; },{},{}
-18982,Old_Circlet_Of_Bone,Old Circlet Of Bones,4,10,,100,,10,,1,0x00001000,56,2,256,,170,1,1141,{ 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; },{},{}
-18983,Old_Protect_Of_Crown,Old Protect Of Crown,4,10,,100,,10,,1,0x00004000,56,2,256,,170,1,1140,{ 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; },{},{}
-18984,Old_Camo_RabbitHood,Old Camouflage Rabbit Hood,4,10,,100,,10,,1,0x0000800,56,2,256,,170,1,1142,{ 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; },{},{}
-18985,Falconer_Flute,Falconer Flute,4,0,,100,,,,0,0x0000800,63,2,1,,75,0,1143,{ 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); },{},{}
-18987,RWC13_Jormungandr_Hat,RWC13 Jormungandr Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,1,1149,{ bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,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; },{ sc_end SC_SpeedUp0; },{}
-18997,Riot_Chip,Runaway Chip,4,10,,300,,,,1,0xFFFFFFFF,63,2,256,,100,1,1201,{ bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; },{},{}
-19019,Elemental_Crown,Elemental Crown,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,,1,1219,{ .@r = getrefine(); bonus bDex,(3 + (.@r/2)+ (readparam(bDex) > 130 ? .@r : 0)); bonus bLongAtkRate,4; },{},{}
-19020,Survive_Circlet,Survive Circlet,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,,1,1220,{ .@r = getrefine(); bonus bInt,(3 + (.@r/2)+ (BaseLevel > 130 ? .@r : 0)); bonus bMatkRate,4; },{},{}
-19021,Gigant_Helm,Gigant Helm,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,,1,1221,{ bonus bStr,3+((BaseLevel > 130) ? getrefine() : 0); bonus2 bAddClass,Class_All,4; },{},{}
-19022,Floating_Stone_Of_Int,Floating Stone Of Intelligence,4,,,,,,,,0xFFFFFFFF,63,2,256,,,,1230,{},{ sc_start SC_FSTONE,INFINITE_TICK,0; },{ sc_end SC_FSTONE; } // jRO Item
-19024,Protect_Feathers,Protect Feathers,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,,70,0,1232,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; } },{},{}
-19026,Aegir_Helm,Aegir Helm,4,10,,800,,10,,1,0xFFFFFFFF,63,2,256,,40,1,870,{ bonus bVit,3; },{},{}
-19030,Pretty_Rabbit_Hood,Pretty Rabbit Hood,4,10,,100,,20,,1,0xFFFFFFFF,63,2,769,,1,1,1085,{ bonus bMaxHP,(15*BaseLevel); },{},{}
-19031,Fallen_Angel_Blessing,Fallen Angel Blessing,4,0,,200,,1,,0,0xFFFFFFFF,63,2,512,,,1,1250,{ bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; },{},{}
-19033,Rift_Ancient_Decoration,Rift Ancient Decoration,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,100,1,376,{ .@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); },{},{}
-19038,12_Anniversary_Crown_Of_Saint,12 Anniversary Crown of Saint,4,10,,120,,12,,1,0xFFFFFFFF,63,2,256,,0,1,1117,{ bonus bAllStats,2; bonus bMdef,12; },{},{}
-19039,12_Anniversary_Elf_Ears,12 Anniversary Elf Ears,4,10,,120,,0,,0,0xFFFFFFFF,63,2,512,,0,1,875,{ bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player,-4; },{},{}
-19047,Angeling_KnitCap,Angeling KnitCap,4,0,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,953,{ bonus2 bSPGainRace,RC_Angel,5; bonus bHPGainValue,100; .@r = getrefine(); if (.@r >= 5) { bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0); } },{},{}
-19048,Elemental_Clothe,Elemental Clothes,4,0,,500,,45,,1,0xFFFFFFFF,63,2,16,,80,1,,{ .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 7) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor; },{},{}
-19050,Loki_Nidhogg_Hat,Loki & Nidhoggur's Hat,4,0,,100,,0,,1,0xFFFFFFFF,63,2,256,,1,1,1304,{},{},{}
-19051,Warrior_Moon_Cat,Warrior Moon Cat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ /*Enables use of Level 1 Monster's Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2; },{},{}
-19052,Sigruns_Wing,Rental Sigrun's Wing,4,10,,0,,2,,0,0xFFFFFFFF,63,2,512,,1,0,568,{ 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; } },{},{}
-19053,Fighter_Moon_Cat,Fighter Moon Cat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ /*Enables use of Level 1 Monster's Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100); },{},{}
-19079,Celestial_Woman's_Flower,Celestial Woman's Flower,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,438,{ 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; } },{},{}
-19081,Faceworm_Egg_Shell,Faceworm Egg Shell,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,1356,{ 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; } },{},{}
-19082,Bio_Protector,Bio Protector,4,0,,500,,3,,0,0xFFFFFFFF,63,2,512,,50,1,1366,{ bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5; },{},{}
-19083,Mask_of_Hero,Mask of Hero,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,70,0,1367,{ bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1; },{},{}
-19084,Parfaille_Vigilante_Hat,Parfaille Vigilante Hat,4,0,,100,,2,,0,0x80000000,63,2,256,,20,1,1368,{ bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100; },{},{}
-19085,Sigrun's_Wings_,Sigrun's Wings,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,568,{ 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; } },{},{}
-19086,Robo_Eye_,Robo Eye,4,20,,200,,2,,1,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1; },{},{}
-19087,Angel_Spirit_,Angel Spirit,4,20,,200,,0,,1,0xFFFFFFFF,63,2,512,,0,0,394,{ bonus bStr,1; bonus bHit,8; },{},{}
-19088,Binoculars_,Binoculars,4,20,,100,,2,,1,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; },{},{}
-19089,Blinker_,Blinker,4,1500,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,5000; },{},{}
-19090,Alarm_Mask_,Alarm Mask,4,20,,100,,2,,1,0xFFFFFFFE,63,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,2500; },{},{}
-19091,Opera_Ghost_Mask_,Opera Phantom Mask,4,20,,200,,2,,1,0xFFFFFFFE,63,2,512,,20,0,128,{},{},{}
-19092,Machoman_Glasses_,Machoman's Glasses,4,36000,,100,,1,,1,0xFFFFFFFE,63,2,512,,0,0,92,{},{},{}
-19093,Spinning_Eyes_,Geek Glasses,4,20000,,100,,1,,1,0xFFFFFFFF,63,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,800; },{},{}
-19094,Mr_Smile_,Mr. Smile,4,60,,100,,1,,1,0xFFFFFFFF,63,2,513,,0,0,65,{},{},{}
-19095,Happy_Balloon,Happy Balloon,4,0,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1289,{ bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; },{},{}
-19101,Glastheim_Observer,Glastheim Observer,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,80,1,1041,{ bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5; },{},{}
-19102,Pale_Moon_Hat,Pale Moon Hat,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,913,{ 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; */ },{},{}
-19109,Valhalla_Idol,Valhalla Idol,4,0,,300,,2,,0,0xFFFFFFFF,63,2,512,,70,0,1423,{ bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); },{},{ hateffect(HAT_EF_VALHALLA_IDOL,false); }
-19111,Laser_Of_Eagle,Laser of Eagle,4,0,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1424,{ bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/ },{},{}
-19112,Tengu_Scroll,Tengu Scroll,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,40,0,1445,{ bonus2 bHPDrainRate,30,5; },{},{}
-19114,Sting_Silk_Ribbon,Sting Silk Ribbon,4,20,,300,,15,,1,0xFFFFFFFF,63,2,256,,70,1,1457,{ bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if(getrefine()>4) { bonus2 bSubSize,Size_All,2; } if(getrefine()>6) { bonus2 bSubSize,Size_All,3; } },{},{}
-19115,Republic_Hat,Republic Hat,4,0,,400,,3,,1,0xFFFFFFFF,63,2,256,,100,1,1458,{ .@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val; },{},{}
-19116,Red_Baby_Dragon,Red Baby Dragon,4,0,,700,,,1,1,0xFFFFFFFF,63,2,256,,90,1,1463,{ .@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)); },{},{}
-19117,Poring_Sunglasses_,Poring Sunglasses,4,0,,10,,0,,0,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; },{},{}
-19118,Poring_Sunglasses__,Poring Sunglasses,4,0,,10,,0,,1,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; },{},{}
-19125,Cylinder_Hairband,Cylinder Hairband,4,20,,300,,12,,1,0xFFFFFFFF,63,2,256,,90,1,1477,{ 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; } },{},{}
-19126,Shadow_Booster_,Magical Booster,4,10,,300,,,,1,0xFFFFFFFF,63,2,512,,1,1,873,{ bonus bAspd,1; bonus bDelayrate,-1; },{},{}
-19128,Ifrit's_Ear_,Ears Of Ifrit,4,20,,300,,0,,1,0xFFFFFFFE,63,2,512,,50,0,422,{ 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; },{},{}
-19129,Chick_Hat_,Chick Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,10,0,311,{ 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,3; },{},{}
-19130,Magic_Eyes_,Magic Eyes,4,20,,300,,3,,1,0x00810204,63,2,256,,54,1,209,{ bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; },{},{}
-19131,Radio_Antenna_,Radio Antenna,4,0,,1500,,2,,1,0xFFFFFFFF,63,2,256,,1,1,347,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; },{},{}
-19132,Masquerade_,Masquerade,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player,3; },{},{}
-19133,Odin_Mask_,Odin's Mask,4,20,,100,,1,,1,0xFFFFFFFF,63,2,513,,1,0,480,{ bonus2 bSubClass,Class_Boss,2; },{},{}
-19134,Wickebines_Black_Cat_Ears,Wickebine's Black Cat Ears,4,20,,200,,4,,1,0xFFFFFFFE,63,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefRaceRate,RC_ALL,25; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_AGIUP; }"; },{},{}
-19137,Strawberry_Mouth_Guard,Strawberry Mouth Guard,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,80,0,861,{ bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; } },{},{}
-19138,Seraphim_Coronet,Seraphim Coronet,4,20,,300,,0,,0,0xFFFFFFFF,63,2,512,,70,0,1487,{ 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; } },{},{}
-19139,SurviveOrb,Survive Orb,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,50,0,1488,{ skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3; },{},{}
-19140,Squirrel_Ear_Hat,Squirrel Ear Hat,4,0,,200,,10,,1,0xFFFFFFFF,63,2,256,,100,1,1486,{ .@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; } },{},{}
-19141,Dolor_Thanatos_Mask,Dolor Thanatos Mask,4,20,,200,,6,,0,0xFFFFFFFF,63,2,513,,100,0,666,{ bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; },{},{}
-19142,Drooping_Rebellion,Drooping Rebellion,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,1,0,1444,{ bonus bLongAtkRate,10; },{},{}
-19143,Poring_Balloon,Poring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1426,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19144,Ferlock's_Hat,Ferlock's Hat,4,20,,1000,,1,,1,0xFFFFFFFF,63,2,256,,50,0,1489,{},{},{}
-19145,Whistle,Whistle,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1478,{ bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3; },{},{}
-19146,Marin_Balloon,Marin Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1430,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19147,Drops_Balloon,Drops Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1427,{ bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19148,Santa_Poring_Balloon,Santa Poring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1428,{ bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19149,Poporing_Balloon,Poporing Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1429,{ bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19150,Metalring_Balloon,Metalring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1431,{ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19151,Devilring_Balloon,Devilring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1434,{ bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19152,Angelring_Balloon,Angelring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1435,{ bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19153,Ghostring_Balloon,Ghostring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1436,{ bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19154,Arch_Angelring_Balloon,Arch Angelring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1437,{ skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{}
-19155,Demons_Eyes,Demon's Eyes,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,60,0,1490,{ bonus2 bSubRace,RC_Player,3; bonus bFlee2,2; },{},{}
-19156,Lunar_Rainbow,Lunar Rainbow,4,20,,200,,10,,1,0xFFFFFFFF,63,2,256,,80,1,704,{ bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine()); },{},{}
-19157,Drooping_Rebellion_,Drooping Rebellion,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,1,1,1444,{ 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; },{},{}
-19158,C_GeminiS58_Eyes_Blue,Costume GeminiS58 Eyes Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,1456,{},{},{}
-19159,Barrel_Helm,Barrel Helm,4,20,,420,,59,,1,0xFFFFFFFF,63,2,769,,60,1,1498,{ 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,10; if(BaseJob==Job_SuperNovice) { skill "CR_AUTOGUARD",5; } } },{},{}
-19162,Scuba_Mask_,Scuba Mask,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,40,1,400,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{}
-19164,Para_Team_Hat100,Awakened Eden Group Hat I,4,20,,0,,10,,1,0xFFFFFFFF,63,2,256,,100,1,1529,{ 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; } } } },{},{}
-19165,Para_Team_Hat160,Awakened Eden Group Hat II,4,20,,0,,10,,1,0xFFFFFFFF,63,2,256,,160,1,1530,{ 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; } } } },{},{}
-19166,RO_Celebration_Hat,RO Celebration Hat,4,20,,140,,14,,1,0xFFFFFFFF,63,2,256,,14,1,1541,{ bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000; },{},{}
-19168,Band_Of_Kafra_,Kafra Staff Headband,4,20,,500,,0,,1,0xFFFFFFFF,63,2,256,,,1,106,{ bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r; },{},{}
-19171,Magician_Knit_Hat,Magician Knit Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,10,1,854,{ .@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; } },{},{}
-19172,Sitting_Pope_Casual,Sitting Pope Casual,4,1000,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1553,{ bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10; },{},{}
-19173,Floating_Ice,Floating Ice,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1562,{ bonus2 bAddItemHealRate,536,100; },{},{}
-19176,Fallen_Angel_Blessing_,Fallen Angel Blessing,4,20,,200,,1,,1,0xFFFFFFFF,63,2,512,,10,0,1250,{ bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; },{},{}
-19177,Elemental_Crown_,Elemental Crown,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,50,1,1219,{ .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; },{},{}
-19178,Elemental_Crown__,Elemental Crown,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1219,{ .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; },{},{}
-19179,Rabbit_Magic_Hat_,Magic Rabit Hat,4,0,,800,,4,,1,0xFFFFFFFF,63,2,256,,0,1,497,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; },{},{}
-19180,Anubis_Helm_,Anubis Helm,4,20,,0,,8,,1,0xFFFFFFFF,63,2,768,,65,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{}
-19181,New_Wave_Sunglasses_,New Wave Sunglasses,4,20,,100,,1,,1,0xFFFFFFFF,63,2,512,,30,0,856,{ bonus bDelayRate,-5; },{},{}
-//
-19189,Racing_Cap_MC,Racing Cap (Mechanic),4,20,,0,,10,,1,0x00000400,56,2,256,,100,1,1134,{ .@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; } },{},{}
-19190,Racing_Cap_GN,Racing Cap (Geneticist),4,20,,0,,10,,1,0x00040000,56,2,256,,100,1,1134,{ .@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 */ },{},{}
-19191,Racing_Cap_GC,Racing Cap (Guillotine Cross),4,20,,0,,10,,1,0x00001000,56,2,256,,100,1,1134,{ .@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 */ },{},{}
-19192,Racing_Cap_SC,Racing Cap (Shadow Chaser),4,20,,0,,10,,1,0x00020000,56,2,256,,100,1,1134,{ .@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 */ },{},{}
-19193,Racing_Cap_WL,Racing Cap (Warlock),4,20,,0,,10,,1,0x00000200,56,2,256,,100,1,1134,{ .@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; },{},{}
-19194,Racing_Cap_SO,Racing Cap (Sorcerer),4,20,,0,,10,,1,0x00010000,56,2,256,,100,1,1134,{ .@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; } },{},{}
-19195,Racing_Cap_RK,Racing Cap (Rune Knight),4,20,,0,,10,,1,0x00000080,56,2,256,,100,1,1134,{ .@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; } },{},{}
-19196,Racing_Cap_RG,Racing Cap (Royal Guard),4,20,,0,,10,,1,0x00004000,56,2,256,,100,1,1134,{ .@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; },{},{}
-19197,Racing_Cap_AB,Racing Cap (Archbishop),4,20,,0,,10,,1,0x00000100,56,2,256,,100,1,1134,{ .@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 */ },{},{}
-19198,Racing_Cap_SR,Racing Cap (Sura),4,20,,0,,10,,1,0x00008000,56,2,256,,100,1,1134,{ .@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; },{},{}
-19199,Racing_Cap_RA,Racing Cap (Ranger),4,20,,0,,10,,1,0x00000800,56,2,256,,100,1,1134,{ .@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; },{},{}
-19200,Racing_Cap_MI,Racing Cap (Minstrel),4,20,,0,,10,,1,0x00080000,56,1,256,,100,1,1134,{ .@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*/ },{},{}
-19201,Racing_Cap_WA,Racing Cap (Wanderer),4,20,,0,,10,,1,0x00080000,56,0,256,,100,1,1134,{ .@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*/ },{},{}
-19202,Racing_Cap_GS,Racing Cap (Gunslinger),4,20,,0,,10,,1,0x40000000,63,2,256,,100,1,1134,{ .@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; },{},{}
-19203,Racing_Cap_NJ,Racing Cap (Ninja),4,20,,0,,10,,1,0x20000000,63,2,256,,100,1,1134,{ .@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; },{},{}
-19204,Racing_Cap_SN,Racing Cap (Super Novice),4,20,,0,,10,,1,0x00000001,63,2,256,,100,1,1134,{ .@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; } },{},{}
-19205,Racing_Cap_SU,Racing Cap (Summoner),4,20,,0,,10,,1,0x80000000,63,2,256,,100,1,1134,{ .@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; },{},{}
-19209,Illusion_Nurse_Cap,Illusion Nurse Cap,4,20,,200,,1,,1,0x00008110,63,2,256,,99,1,64,{ .@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2)); },{},{}
-19210,Illusion_Apple_of_Archer,Illusion Apple of Archer,4,20,,200,,1,,1,0xFFFFFFFE,63,2,256,,99,1,72,{ bonus bDex,(3+(getrefine()/2)); },{},{}
-19223,Illusion_Cap,Illusion Cap,4,0,,400,,15,,1,0x000654E3,63,2,256,,120,1,14,{ bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine()); },{},{}
-19247,Illusion_Fancy_Flower,Illusion Fancy Flower,4,0,,100,,0,,1,0xFFFFFFFF,63,2,256,,120,0,4,{ bonus bMatkRate,1; bonus bMatk,(2*getrefine()); },{},{}
-//
-19246,Royal_Guard_Necklace,Royal Guard Necklace,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1629,{ bonus bAspd,1; },{},{}
-19269,Happy_Flapping_Wings,Happy Flapping Angel Wings,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,1251,{ .@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 */ },{},{}
-19272,Garden_of_Eden,Garden of Eden,4,20,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1653,{ .@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; } },{},{ sc_end SC_TELEKINESIS_INTENSE; }
-19273,Gemini_Red_Eyes,Gemini Red Eyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,100,0,1654,{ .@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val; },{},{}
-19274,Open_Air_Headset,Open Air Headset,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1655,{ bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5; },{},{}
-19285,Siegfried's_Helmet,Siegfried's Helmet,4,20,,500,,0,,1,0xFFFFFFFF,63,2,256,,100,1,1055,{ .@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; } },{},{}
-19299,Tree_Sprout,Tree Sprout,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,848,{ bonus bVariableCastrate,-5; },{},{}
-19306,Gambler_Card,Heart Card in Mouth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1679,{ bonus bCritAtkRate,5; },{},{}
-19326,Book_of_Soyga,Book of Soyga,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,90,1,423,{},{},{}
-19327,Seraphim_Feather,Seraphim Feather,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1704,{ bonus bHealPower,5; },{},{}
-19329,Devil's_Hand,Devil's Hand,4,10,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1018,{ .@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; },{},{}
-19337,Safety_Glasses,Safety Glasses,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,40,1,1721,{ .@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 */ },{},{}
-19342,Bull_Hat,Bull Hat,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,130,1,819,{ .@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; },{},{}
-19343,Circlet_Of_Phoenix,Circlet Of Phoenix,4,0,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1056,{ .@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; },{},{}
-19344,Illusion_Hot_blooded_Headband,Illusion Hot-blooded Headband,4,0,,100,,3,,1,0xFFFFFFFE,63,2,256,,120,1,154,{ .@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; } } },{},{}
-19366,Illusion_Goibne_Helm,Illusion Goibne Helm,4,0,,1000,,25,,1,0xFFFFFFFE,63,2,256,,130,1,258,{ .@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3; },{},{}
-19379,Striking_Hat,Striking Hat,4,20,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1759,{ .@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; } },{},{}
-19380,Floating_Ball,Floating Ball,4,10,,200,,,,0,0xFFFFFFFF,63,2,512,,100,,1760,{ 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; } },{},{}
-19381,Protect_Cloth,Protect Cloth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1761,{ bonus bMdef,5; bonus bMaxHPrate,5; },{},{}
-19387,Experimental_Goat_Cap,Experimental Goat Cap,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,40,1,1768,{ .@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,.@val; /*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 */ },{},{}
-19391,Eyes_Of_Illusion,Eyes Of Illusion,4,20,,500,,2,,0,0xFFFFFFFF,63,2,512,,100,0,1779,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player,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; },{},{}
-19396,Racing_Cap_SG,Racing Cap (Star Gladiator),4,20,,0,,10,,1,0x00400000,63,2,256,,100,1,1134,{ .@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"; },{},{}
-19397,Racing_Cap_SL,Racing Cap (Soul Linker),4,20,,0,,10,,1,0x00800000,63,2,256,,100,1,1134,{ .@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"; },{},{}
-19407,Work_Cap,Work Cap,4,200,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1793,{ .@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; },{},{}
-19409,Black_Feather_Hat,Black Feather Hat,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,731,{ .@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; },{},{}
-19426,Spirit_King's_Crown,Spirit King's Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1118,{ .@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; },{},{}
-19428,Illusion_Morpheus's_Hood,Illusion Morpheus's Hood,4,20,,200,,15,,1,0xFFFFFFFF,63,2,256,,130,1,256,{ .@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; } } },{},{}
-19453,Jeje_Cap,Jeje Cap,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1011,{ .@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; },{},{}
-19469,Saint_Crown,Saint Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1117,{ .@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,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; },{},{}
-//===================================================================
-// Costume System
-//===================================================================
-19433,C_Resonate_Taego,Costume Resonate Taego,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1823,{ hateffect(HAT_EF_RESONATETAEGO,true); },{},{ hateffect(HAT_EF_RESONATETAEGO,false); }
-19500,T_Mr_Smile,T Mr Smile,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,0,0,65,{ bonus bStr,2; },{},{}
-19501,T_Spinx_Helm,T Spinx Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,137,{},{},{}
-19502,T_Goggle,T Goggle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,1,{},{},{}
-19503,T_Munak_Hat,T Munak Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,0,0,51,{},{},{}
-19504,T_Sunglasses,T Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,12,{},{},{}
-19505,T_Cigarette,T Cigarette,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,0,0,54,{},{},{}
-19506,T_Valkyrie_Feather_Band,T Valkyrie Feather Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,300,{},{},{}
-19507,Fine_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{ bonus bUnbreakableHelm; },{},{}
-19508,T_Gemmed_Sallet,T Gemmed Sallet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,0,{ bonus bUnbreakableHelm; },{},{}
-19509,Butterfly_Wing_Ear,Butterfly Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{ bonus bUnbreakableHelm; },{},{}
-19510,Nut_On_Head,Screw Stuck in Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,696,{ bonus bUnbreakableHelm; },{},{}
-19511,Heart_Eye_Patch1,Heart Eye Patch 1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{ bonus bUnbreakableHelm; },{},{}
-19512,Heart_Eye_Patch2,Heart Eye Patch 2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{ bonus bUnbreakableHelm; },{},{}
-19513,Chicken_Beak,Chicken Bill,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,699,{ bonus bUnbreakableHelm; },{},{}
-19514,Charlie_Beard,Charlies Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,700,{ bonus bUnbreakableHelm; },{},{}
-19515,Yellow_Hat,Yellow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,701,{ bonus bUnbreakableHelm; },{},{}
-19516,Singing_Bird,Singing Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{ bonus bUnbreakableHelm; },{},{}
-19517,Cocks_Comb,Chicken Crest,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,703,{ bonus bUnbreakableHelm; },{},{}
-19518,Rainbow,Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,704,{ bonus bUnbreakableHelm; },{},{}
-19519,Lightning_Cloud,Thunderstorm Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,688,{ bonus bUnbreakableHelm; },{},{}
-19520,Rain_Cloud,Rain Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{ bonus bUnbreakableHelm; },{},{}
-19521,Charlie_Hat,Charlies Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,706,{ bonus bUnbreakableHelm; },{},{}
-19522,Mini_Crown1,Mini Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{ bonus bUnbreakableHelm; },{},{}
-19523,Donation_Ribbon,Green Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,244,{ bonus bUnbreakableHelm; },{},{}
-19524,C_Green_Feeler,Costume Green Feeler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,85,{ bonus bUnbreakableHelm; },{},{}
-19525,C_Jack_A_Dandy,Costume Jack A Dandy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,58,{ bonus bUnbreakableHelm; },{},{}
-19526,C_Helm,Costume Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,40,{ bonus bUnbreakableHelm; },{},{}
-19527,C_Sharp_Gear,Costume Spiky Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,43,{ bonus bUnbreakableHelm; },{},{}
-19528,C_Iron_Cane,Costume Iron Cain,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,53,{ bonus bUnbreakableHelm; },{},{}
-19529,C_Angelic_Chain,Costume Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,38,{ bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1; },{},{}
-19530,C_Wild_Rose,Costume Wild Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,541,{ bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2; },{},{}
-19531,C_Cube_Mask,Costume Cube Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,0,0,472,{ bonus bUnbreakableHelm; bonus bFlee,1; },{},{}
-19532,C_Red_Bunny_Band,Red Bunny Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,640,{ bonus bUnbreakableHelm; bonus bDex,1; },{},{}
-19533,C_Spore_Hat,Costume Spore Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,114,{ bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1; },{},{}
-19534,C_Tha_Despero_Mask,Costume Thanatos Despero Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,693,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; },{},{}
-19535,C_Sinsuncho_Hat,Costume Sinsuncho Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,730,{ bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1; },{},{}
-19536,C_Rose_Corsage,Costume Rose Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,533,{ bonus bUnbreakableHelm; bonus bInt,1; },{},{}
-19537,C_Gryphon_Hat,Costume Gryphon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,591,{ bonus bUnbreakableHelm; },{},{}
-19538,Full_Moon,Full Moon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,780,{ 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 */ }"; },{},{}
-19539,C_Reginleif_Hairband,Costume Hairband Of Reginleif,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,468,{ bonus bAllStats,1; },{},{}
-19540,C_Rabbit_Earplug,Costume Rabbit Earplugs,4,20,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,515,{ bonus bAgi,1; bonus bFlee,2; },{},{}
-19541,C_Romantic_White_Flower,Costume Romantic White Flower,4,20,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,259,{ bonus bUnbreakableHelm; },{},{}
-19542,C_Devil_Whisper,Costume Devil Whisper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,712,{ bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400; },{},{}
-19543,Oliver_Wolf_Hood,Oliver Wolf Hood,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1024,,70,0,849,{ bonus bUnbreakableHelm; },{},{}
-19544,C_Tare_Neko_Cru,Costume Tare Neko Cru,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,692,{ bonus bUnbreakableHelm; },{},{}
-19545,C_Boys_Cap,Costume Boy's Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,102,{ bonus bUnbreakableHelm; },{},{}
-19546,C_Valkyrie_Helm,Costume Valkyrie Helm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,225,{ bonus bUnbreakableHelm; },{},{}
-19547,C_Deviruchi_Cap,Costume Deviruchi Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,123,{ bonus bUnbreakableHelm; },{},{}
-19548,C_Frog_Cap,Costume Frog Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,448,{},{ bonus bUnbreakableHelm; },{}
-19549,C_Magestic_Goat,Costume Magestic Goat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,41,{ bonus bUnbreakableHelm; },{},{}
-19550,C_Blush,Costume Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,125,{ bonus bUnbreakableHelm; },{},{}
-19551,C_Elven_Ears,Costume Elven Ears,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,73,{ bonus bUnbreakableHelm; },{},{}
-19552,C_Centimental_Flower,Costume Centimental Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,56,{ bonus bUnbreakableHelm; },{},{}
-19553,C_Assassin_Mask_,Costume Assassin Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,180,{ bonus bUnbreakableHelm; },{},{}
-19554,C_Hahoe_Mask,Costume Hahoe Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,6144,,100,0,230,{ bonus bUnbreakableHelm; },{},{}
-19555,C_Crescent_Moon_Helm,Costume Crescent Moon Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,213,{ bonus bVit,1; },{},{}
-19556,C_Kabuki_Mask,Costume Kabuki Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,214,{ bonus bInt,1; },{},{}
-19557,C_Ayothaya_Hat,Costume Ayothaya Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,334,{ bonus bStr,1; },{},{}
-19558,C_Crow_Hat,Costume Crow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,524,{ bonus bVit,1; },{},{}
-19559,C_Baby_Dragon_Hat,Costume Baby Dragon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,525,{ bonus bAgi,1; },{},{}
-19560,C_Coati_Hat,Costume Coati Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,527,{ bonus bDex,1; },{},{}
-19561,C_Tucan_Hat,Costume Tucan Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,528,{ bonus bDex,1; },{},{}
-19562,C_Jaguar_Hat,Costume Jaguar Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,530,{ bonus bStr,1; },{},{}
-19563,C_Dragon_Arhat_Mask,Costume Dragon Arhat Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,545,{},{},{}
-19564,C_Tiger_Arhat_Mask,Costume Tiger Arhat Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,546,{},{},{}
-19565,C_Chung_Hairband,Costume Chung Hairpin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,583,{ bonus bInt,1; },{},{}
-19566,C_Samurai_Mask,Costume Samurai Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,644,{},{},{}
-19567,C_Hatta_Black,Costume Hatta Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,676,{ bonus bVit,1; },{},{}
-19568,C_Ancient_Horns,Costume Ancient Horns,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,757,{ bonus bStr,1; },{},{}
-19569,C_Sprout_Hat,Costume Sprout Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,758,{ bonus bInt,1; },{},{}
-19570,C_Mercury_Riser,Costume Mercury Riser,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,759,{ bonus bLuk,1; },{},{}
-19571,C_White_Musang_Hat,Costume White Musang Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,770,{ bonus bStr,1; },{},{}
-19572,C_Black_Musang_Hat,Costume Black Musang Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,771,{ bonus bInt,1; },{},{}
-19573,C_Heart_Wing_Hairband,Costume Heart Wing Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,733,{},{},{}
-19574,C_Lord_of_Death,Costume Lord of Death,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,742,{ bonus bUnbreakableHelm; },{},{}
-19575,C_Ascension_Black_Dragon,Costume Ascension Black Dragon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,863,{},{},{}
-19576,C_Tare_Pope,Costume Tare Pope,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,817,{},{},{}
-19577,10th_Anni_Poring_Hat,10th Anni Poring Hat,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1024,,1,0,874,{},{},{}
-19578,C_Goggle,Costume Googles,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1,{},{},{}
-19579,C_Red_Wind_Hat,Costume Red Wind Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,613,{ bonus bHPrecovRate,20; bonus bSPrecovRate,20; },{},{}
-19580,C_Sphinx_Helm,Costume Sphinx Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,5120,,1,0,137,{},{},{}
-19581,C_Adventurers_Hat,Costume Adventurer's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,891,{},{},{}
-19582,C_Cowboy_Hat,Costume Cowboy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,411,{},{},{}
-19583,C_Zorro_Mask,Costume Zorro Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,50,{},{},{}
-19584,C_Pirate_Dagger,Costume Dagger In Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,327,{},{},{}
-19585,C_Feather_Beret,Costume Feather Beret,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,224,{},{},{}
-19586,C_Pink_Bunny_Band_J,Costume Pink Bunny Hair Band,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,898,{},{},{}
-19587,C_King_Poring_Hat,Costume King Poring Hat,4,0,,100,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,905,{ bonus bUnbreakableHelm; },{},{}
-19588,C_Cat_Hat_J,Costume Cat Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,182,{ bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30; },{},{}
-19589,C_Fallen_Angel_Lost_J,Costume Fallen Angel Lost,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,907,{},{},{}
-19590,C_Twin_Ribbon_J,Costume Maiden's Twin Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,239,{},{},{}
-19591,C_Ribbon_Red,Costume Red Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,246,{},{},{}
-19592,C_Hibiscus,Costume Hibiscus,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,210,{},{},{}
-19593,C_Laurel_Wreath,Costume Laurel Wreath,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,237,{},{},{}
-19594,C_Decorative_Geographer,Costume Decorative Geographer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,238,{},{},{}
-19595,C_Dress_Hat_J,Costume April's Fool Day,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,265,{},{},{}
-19596,C_Flapping_Angel_Wing,Costume Flapping Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,264,{},{},{}
-19597,C_Magic_Eyes,Costume Magic Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,209,{},{},{}
-19598,C_Wondering_Wolf_Helm,Costume Wandering Wolf Hat,4,20,,0,,0,,0,0xFFFFFFFE,63,2,1024,,0,0,490,{},{},{}
-19599,C_Imp_Hat,Costume Imp Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,1024,,1,0,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{}
-19600,Drooping_Kiehl,Costume Drooping Kiehl,4,0,,40,,,,,0xFFFFFFFF,63,2,1024,,30,,909,{},{},{}
-19601,Drooping_Aliot,Costume Drooping Aliot,4,0,,10,,,,,0xFFFFFFFF,63,2,1024,,1,,910,{},{},{}
-19602,C_Invisible_Cap,Costume Invisible Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{},{},{}
-19603,C_Invisible_Sunglasses,Costume Invisible Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{},{},{}
-19604,C_Invisible_Mask,Costume Invisible Flu Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,0,{},{},{}
-19605,C_Gang_Scarf,Costume Gang Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,369,{},{},{}
-19606,C_Ninja_Scroll,Costume Ninja Scroll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,370,{},{},{}
-19607,C_Love_Chick_Hat,Costume Love Chick Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,500,{},{},{}
-19608,C_Chick_Hat,Costume Baby Chick,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,311,{},{},{}
-19609,C_Red_Glasses,Costume Red Glasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,316,{},{},{}
-19610,C_Whisper_Mask,Costume Whisper Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,321,{},{},{}
-19611,C_Peco_Ears,Costume Peco Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,366,{},{},{}
-19612,C_Note_Headphone,Costume Note Headphone,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,220,{},{},{}
-19613,C_Valkyrie_Feather_Band,Costume Valkyrie Feather Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,300,{},{},{}
-19614,C_Super_Novice_Hat,Costume Super Novice Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,193,{},{},{}
-19615,C_Loki_Mask,Costume Loki Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,346,{},{},{}
-19616,C_Wickebines_Black_Cat_Ears,Costume Wickebine's Black Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,368,{},{},{}
-19617,C_Puppy_Headband,Costume Puppy Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,199,{},{},{}
-19618,C_Mask_Of_Fox,Costume Kitsune Mask,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,153,{},{},{}
-19619,C_Corsair,Costume Corsair,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,0,0,105,{ bonus bVit,1; },{},{}
-19620,C_Dectective_Hat,Costume Detective Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,189,{},{},{}
-19621,C_Ear_Of_Devils_Wing,Costume Evil Wing Ear,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,,,152,{},{},{}
-19622,C_Crescent_Hairpin,Costume Crescent Hairpin,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,132,{},{},{}
-19623,C_Bijofnil_Wings,Costume Bijofnil Wings,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,477,{},{},{}
-19624,C_Round_Eyes,Costume Blank Eyes,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,,,185,{},{},{}
-19625,C_Bunny_Band,Costume Bunny Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,15,{},{},{}
-19627,C_Satellite_Hairband,Costume Satellite Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,266,{},{},{}
-19628,C_Headset,Costume Headset,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,97,{},{},{}
-19629,C_Tiara,Costume Tiara,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,19,{},{},{}
-19630,C_Crown,Costume Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,45,{},{},{}
-19631,C_Poring_Fedora_Hat,Costume Poring Fedora Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,919,{},{},{}
-19632,C_Hat,Costume Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,16,{},{},{}
-19633,C_Flower_Hairband,Costume Flower Band,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,5,{},{},{}
-19634,C_Flu_Mask,Costume Flu Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,8,{},{},{}
-19635,C_Mini_Propeller,Costume Mini Propeller,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,46,{},{},{}
-19636,C_Pierrot_Nose,Costume Clown Nose,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,49,{},{},{}
-19637,C_Nurse_Cap,Costume Nurse Cap,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,64,{},{},{}
-19638,C_Mr_Smile,Costume Mr. Smile,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,65,{},{},{}
-19639,C_Sahkkat,Costume Sakkat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,67,{},{},{}
-19640,C_Charming_Ribbon,Costume Charming Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,211,{},{},{}
-19641,C_Helm_of_Darkness,Costume Helm of Darkness,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,233,{},{},{}
-19642,C_Moonlight_Flower_Hat,Costume Moonlight Flower Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,268,{},{},{}
-19643,C_Whikebain_Ears,Costume Wickebine Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,368,{},{},{}
-19644,C_Takius_Blindfold,Costume Takius Blindfold,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,184,{},{},{}
-19645,C_Phoenix_Crown,Costume Phoenix Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,221,{},{},{}
-19646,C_Ramen_Hat,Costume Ramen Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,320,{},{},{}
-19647,C_Red_Deviruchi_Hat,Costume Red Deviruchi Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,271,{},{},{}
-19648,C_Autumn_Leaves,Costume Autumn Leaves,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,241,{},{},{}
-19649,C_White_Baby_Cat_Ears,Costume White Baby Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,926,{},{},{}
-19650,C_Rainbow_Feather_Deco,Costume Rainbow Feather Deco,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,934,{},{},{}
-19651,C_RWC_Shouting_Mouth,Costume RWC Shouting Mouth,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,194,{},{},{}
-19652,C_Rabbit_Magic_Hat,Costume Rabbit Magic Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,497,{},{},{}
-19653,C_Marcher_Hat,Costume Marcher Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,269,{},{},{}
-19654,C_J_Captain_Hat,Costume Ship Captain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,367,{},{},{}
-19655,C_Tiraya_Bonnet,Costume Tiraya Bonnet,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,398,{},{},{}
-19656,C_Minstrel_Hat,Wandering Minstrel Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,240,{},{},{}
-19657,C_Captain_Hat,Costume Captain Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,236,{},{},{}
-19658,C_Vacation_Hat,Costume Vacation Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,315,{},{},{}
-19659,C_Brown_Beanie,Costume Brown Beanie,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,279,{},{},{}
-19660,C_Coppola,Costume Coppola,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,252,{},{},{}
-19661,C_Sweet_Bonnet,Costume Sweet Bonnet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,938,{},{},{}
-19662,C_Magician_Hat,Costume Magician Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,130,{},{},{}
-19663,Wishing_Sky_Lantern,Costume Wish Lamp,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,947,{},{},{}
-19664,C_Campus_Festival,Costume Campus Festival,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,721,{},{},{}
-19665,C_Poring_Cake_Hat,Costume Poring Cake Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,417,{},{},{}
-19666,C_Cookie_Hat,Costume Cookie Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,217,{ bonus2 bAddItemHealRate,513,1100; },{},{}
-19667,C_Dragon_Helm,Costume Dragon Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,464,{},{},{}
-19668,C_Wind_Milestone,Costume Wind Milestone,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,463,{},{},{}
-19669,C_Reginleif_Hairband_,Costume Reginleif Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,214,{},{},{}
-19670,C_Southern_Cross,Costume Southern Cross,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,601,{},{},{}
-19671,C_Piggie_Bank,Costume Piggie Bank,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,603,{},{},{}
-19676,C_Rainbow_Poring_Hat,Costume Rainbow Poring Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,900,{},{},{}
-19677,C_Soulless_Wing,Costume Soulless Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,,301,{},{},{}
-19678,C_Bell_Ribbon,Costume Bell Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,388,{},{},{}
-19682,C_Santa_Poring_Hat,Costume SantaPoring Cap,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,1,0,387,{},{},{}
-19685,C_ShineSantaPoring,Costume Shining Santa Poring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,961,{},{},{}
-19686,C_SantaHairband,Costume Santa Hairband,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,964,{},{},{}
-19687,C_Lush_Rose,Costume Lush Rose,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,963,{},{},{}
-19689,C_Ati_Atihan_Hat,Costume Ati Atihan,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,303,{},{},{}
-19690,C_Dark_Snake_Lord_Hat_J,Costume Dark Snake Lord Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,372,{},{},{}
-19695,C_Kettle_Hat,Costume Kettle Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,318,{},{},{}
-19696,C_Friend_Mochiring_Hat,Costume Friend Mochiring Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,965,{},{},{}
-19697,C_Rudolph_Santa_Hat,Costume Rudolph Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,619,{},{},{}
-19701,C_Red_Bonnet,Costume Red Bonnet,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,1,0,190,{},{},{}
-19702,C_Santa_Hat_1,Costume Twin Pompom By JB,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,390,{},{},{}
-19706,C_Red_Dress_Hat,Costume Red Dress Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,670,{},{},{}
-19707,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,966,{ bonus bUnbreakableHelm; },{},{}
-19708,C_White_Snake_Hat,Costume White Snake Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,256,,1,0,413,{},{},{}
-19709,C_Yellow_Ribbon,Costume Yellow Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,310,{},{},{}
-19710,C_Wings_Of_Victory,Costume Wings Of Victory,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,365,{},{},{}
-19712,C_Little_Angel_Doll,Costume Little Angel Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,344,{},{},{}
-19713,C_Lucky_Clover,Costume Lucky Clover,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,571,{},{},{}
-19714,C_Lady_Tanee_Doll,Costume Lady Tanee Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,520,{},{},{}
-19715,C_Scarf,Costume Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,343,{},{},{}
-19716,C_Alice_Doll,Costume Alice Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,208,{},{},{}
-19717,C_Pink_Ribbon,Costume Pink Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,245,{},{},{}
-19718,C_Gothic_Head_Dress,Costume Gothic Headdress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,978,{},{},{}
-19719,C_Coronet,Costume Coronet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,33,{},{},{}
-19720,C_Romantic_Gent,Costume Romantic Gent,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,31,{},{},{}
-19721,C_Darkness_Helm,Costume Darkness Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,586,{},{},{}
-19722,C_Black_Glasses,Costume Black Glasses,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,404,{},{},{}
-19723,C_Sacred_Torch_Coronet,Costume Sacred Torch Coronet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,431,{},{},{}
-19724,C_Deprotai_Doll_Hat,Costume Deprote Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,354,{},{},{}
-19725,C_Bread_Bag,Costume Bread Bag,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,412,{},{},{}
-19726,C_Scarlet_Rose,Costume Scarlet Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,534,{},{},{}
-19727,C_Devilring_Hat,Costume Devilring Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,298,{},{},{}
-19728,C_Tare_Zonda,Costume Tare Zonda,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,985,{},{},{}
-19729,C_Neko_Mimi_Kafra,Costume Neko Mimi Kafra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,392,{},{},{}
-19730,C_Snake_Hat,Costume Snake Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,986,{},{},{}
-19731,C_Satanic_Chain,Costume Evolved Evil Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{}
-19732,C_Goblin_Mask_04,Costume Goblin Leader Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,174,{},{},{}
-19733,C_Panda_Cap,Costume Panda Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,115,{ bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; },{},{}
-19734,C_Binoculars,Costume Binoculars,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,83,{ bonus bDex,1; },{},{}
-19735,C_Fin_Helm,Costume Fin Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,100,{},{},{}
-19736,C_Gas_Mask,Costume Gas Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{}
-19737,C_Corsair_K,Costume Refined Corsair,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,105,{ bonus bVit,3; bonus bInt,3; },{},{}
-19738,C_Detective_Hat_K,Costume Renown Detective's Cap,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,189,{},{},{}
-19739,C_Sleeping_Kitty_Cat,Costume Sleeping Kitty Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,838,{ bonus2 bAddRace,RC_Brute,2; },{},{}
-19741,C_Majestic_Devil_Horns,Costume Majestic Devil Horns,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,562,{},{},{}
-19742,C_Small_Golden_Wings,Costume Small Golden Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,,,724,{ bonus2 bExpAddRace,RC_All,1; },{},{}
-19743,C_Anubis_Helm,Costume Anubis Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,485,{},{},{}
-19744,C_Black_Tail_Ribbon,Costume Black Tail Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,642,{},{},{}
-19745,C_Holy_Marching_Hat,Costume Holy Marching Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,587,{},{},{}
-19746,C_Cap_Of_Blindness,Costume Executioner Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,326,{},{},{}
-19747,C_Tha_Despero_Mask_,Costume Tha Despero Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,693,{},{},{}
-19748,C_Diadem,Costume Diadem,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,335,{},{},{}
-19749,C_Gold_Spirit_Chain,Costume Gold Spirit Chain,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,260,{},{},{}
-19750,C_Saint_Frill_Ribbon,Costume Saint Frill Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,987,{},{},{}
-19751,C_Light_Darkness_Crown,Costume Light Darkness Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,988,{},{},{}
-19752,C_Shelter_Wing_Ears,Costume Shelter Wing Ears,4,10,,300,,3,,0,0xFFFFFFFF,63,2,2048,,1,0,990,{},{},{}
-19753,C_Celestial_Hat,Costume Celestial Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,462,{},{},{}
-19754,C_Good_Wedding_Veil,Costume Good Wedding Veil,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,489,{},{},{}
-19755,C_YinYang_Earring,Costume YinYang Earring,4,10,,300,,3,,0,0xFFFFFFFF,63,2,2048,,1,0,744,{},{},{}
-19756,C_Holy_Mom_Love,Costume Holy Mom Love,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,610,{},{},{}
-19757,C_Water_Lily_Crown,Costume Water Lily Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,312,{},{},{}
-19758,C_Frog_King_Hat,Costume Frog King Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,522,{},{},{}
-19759,C_Umbrella_Hat,Costume Umbrella Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,338,{},{},{}
-19760,C_Rainbow_Veil,Costume Rainbow Veil,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,992,{},{},{}
-19761,C_White_Lily,Costume White Lily,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,993,{},{},{}
-19762,C_Happy_Peace_Proof,Costume Happy Peace Proof,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,994,{},{},{}
-19763,C_Leaf_Cat_Hat,Costume Leaf Cat Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,539,{},{},{}
-19764,C_Monster_Card,Costume Monster Card,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,526,{ bonus2 bExpAddRace,RC_All,10; },{},{}
-19765,C_Wing_Angels_Ears,Costume Wing Angels Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,158,{ bonus2 bExpAddRace,RC_All,10; },{},{}
-19767,C_Home_Cherry_Blossom,Costume Home Cherry Blossom,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,602,{},{},{}
-19768,C_Sakura_Coronet,Costume Sakura Coronet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,645,{},{},{}
-19769,C_Elf_Ears,Costume Elf Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,405,{},{},{}
-19770,C_Sake,Costume Sake,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,557,{},{},{}
-19771,C_Butterfly_Hairpin,Costume Buterfly Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,723,{},{},{}
-19772,C_Honeybee_Hat,Costume Honeybee Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,709,{},{},{}
-19773,C_Angeling_Pin,Costume Angeling Pin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,222,{},{},{}
-19774,C_Laurel,Costume Laurel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,261,{},{},{}
-19775,C_Marvelous_Wig,Costume Dokebi Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,307,{},{},{}
-19776,C_Tomboy_Fairy,Costume Tomboy Fairy,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,998,{},{},{}
-19777,C_Twinkle_Little_Star,Costume Shiny Small Star,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1005,{},{},{}
-19778,C_King_Berry,Costume King Berry,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,968,{},{},{}
-19779,C_Persika,Costume Persika,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,659,{ bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; },{},{}
-19780,C_Rabbit_Ear_Knit_Hat,Costume Knit Rabbit Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,867,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{}
-19781,C_Ear_Of_Angel's_Wing_,Costume Angel Wing Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,158,{},{},{}
-19782,C_Drooping_Kitty,Costume Refined Drooping Cat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,142,{},{},{}
-19783,C_Granpa_Beard,Costume Grampa Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,25,{},{},{}
-19784,C_Morrigane's_Helm,Costume Morrigane's Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,257,{},{},{}
-19785,C_Well_Baked_Toast,Costume Crunch Toast,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,188,{},{},{}
-19786,C_Mistress_Crown,Costume Crown of Mistress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,165,{},{},{}
-19787,C_Devoted_Eyes,Costume Devoted Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1021,{},{},{}
-19788,C_Heart_Eyebandage,Costume Heart Eyebandage,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,779,{},{},{}
-19789,C_Sweet_Gents,Costume Sweet Gent,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,29,{},{},{}
-19790,C_Wedding_Veil,Costume Wedding Veil,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,44,{},{},{}
-19791,C_Alarm_Mask,Costume Alarm Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,170,{},{},{}
-19792,C_Goblin_Mask_01,Costume Poker Face,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,171,{},{},{}
-19793,C_Goblin_Mask_02,Costume Surprised Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,172,{},{},{}
-19794,C_Goblin_Mask_03,Costume Annoyed Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,173,{},{},{}
-19795,C_Lord_Circlet,Costume Grand Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,93,{},{},{}
-19796,C_Bone_Helm,Costume Bone Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,103,{},{},{}
-19797,C_Apple_Of_Archer,Costume Apple of Archer,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,72,{},{},{}
-19798,C_Angry_Mouth,Costume Angry Snarl,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,194,{},{},{}
-19799,C_Golden_Gear,Costume Golden Gear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,30,{},{},{}
-19800,C_Carnation_Hairband,Costume Carnation Headband,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,878,{},{},{}
-19801,C_Foxhat,Costume Foxhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,403,{},{},{}
-19802,C_Lazy_Ninetail,Costume Lazy Ninetail,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,296,{},{},{}
-19803,C_Windtoy_Hat,Costume Windtoy Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,456,{},{},{}
-19804,C_Red_Vane_Hairpin,Costume Red Vane Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1044,{},{},{}
-19805,C_Taboo_Curse_Scroll,Costume Curse Scroll,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1045,{},{},{}
-19806,C_Full_Bloom_Hairpin,Costume Bloom Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1046,{},{},{}
-19807,C_Majestihelm,Costume Majestihelm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1047,{},{},{}
-19808,C_Blazing_Sun,Costume Blazing Sun,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{},{},{}
-19810,C_Ifrit_Ear,Costume Ifrit Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,422,{},{},{}
-19811,C_Beer_Hat,Costume Beer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,418,{},{},{}
-19812,C_Big_Hibiscus,Costume Big Hibiscus,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,333,{},{},{}
-19813,C_Icecream_Hat,Costume Icecream Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,488,{},{},{}
-19814,C_Bright_Wig,Costume Bright Wig,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,306,{},{},{}
-19815,C_Lolita_Ten_Gallon_Hat,Costume Lolita Ten Gallon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1048,{},{},{}
-19816,C_Pecopeco_Cap,Costume Pecopeco Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1049,{},{},{}
-19817,C_Ifrits_Breath,Costume Ifrits Breath,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1050,{},{},{}
-19818,C_Drooping_Morooc_Minion,Costume Drooping Morooc Minion,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,600,{},{},{}
-19819,C_Gang_Doogun,Costume Gang Doogun,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,491,{},{},{}
-19821,C_Hyegun_Hat,Costume Yao Jun,4,20,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,375,{},{},{}
-19822,C_Yellow_Doogun,Costume Yellow Doogun,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,309,{},{},{}
-19823,C_White_Cat_Hood,Costume White Cat Hood,4,20,,10,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1052,{},{},{}
-19824,C_Evil_Druid_Hat,Costume Evil Druid Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1053,{},{},{}
-19825,C_Vicious_Stop_Bandage,Costume Vicious Stop Bandage,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1054,{},{},{}
-19826,C_Ice_Wing_Ear,Costume Ice Wing Ear,4,20,,10,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,584,{},{},{}
-19827,C_Amistr_Cap,Costume Amistr,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,643,{},{},{}
-19828,C_Fedora,Costume Bucket Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,195,{},{},{}
-19829,C_Straw_Hat,Costume Straw Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,146,{},{},{}
-19830,C_Sunglasses,Costume Sunglasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,12,{},{},{}
-19831,C_Filir_Hat,Costume Filir Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,408,{},{},{}
-19832,C_Poring_Hat,Costume Poring Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,120,{},{},{}
-19833,C_Fillet,Costume Fillet,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,34,{},{},{}
-19834,C_Baseball_Cap,Costume Baseball Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,216,{},{},{}
-19835,C_Lif_Doll_Hat,Costume Lif Doll Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,297,{},{},{}
-19836,C_L_Magestic_Goat,Costume Majestic Goat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,380,{},{},{}
-19837,C_Asara_Fairy,Costume Asara Fairy Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,492,{},{},{}
-19839,C_Vanilmirth_Hat,Costume Vanilmirth Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,317,{},{},{}
-19841,C_Dragonhelm_Copper,Costume Dragon Helm Copper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,454,{},{},{}
-19842,C_Puppy_Hat,Costume Puppy Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,234,{},{},{}
-19843,C_Cat_Hairband,Costume Kitty Band,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,2,{},{},{}
-19844,C_Turban,Costume Turban,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,7,{},{},{}
-19845,C_Hair_Protector,Costume Bao Bao,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,127,{},{},{}
-19846,C_Opera_Ghost_Mask,Costume Opera Masque,4,20,,10,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,128,{},{},{}
-19847,C_Big_Sis_Ribbon,Costume Big Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,28,{},{},{}
-19848,C_Angeling_Hat,Costume Angeling Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,204,{},{},{}
-19849,C_Munak_Turban,Costume Munak Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,51,{},{},{}
-19850,C_Bongun_Hat,Costume Bongun Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,139,{},{},{}
-19851,C_Brown_Bear_Cap,Costume Teddybear Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,143,{},{},{}
-19852,C_Galapago_Cap,Costume Galapago Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,192,{},{},{}
-19853,C_Filir_Wing_Ears,Costume Filir Wings,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,595,{ bonus2 bExpAddClass,Class_All,5; },{},{}
-19854,C_Ear_Of_Black_Cat_,Costume Black Cat Ears,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,141,{},{},{}
-19856,C_Iceflake_Hat,Costume Snow Cone Hat,4,10,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1080,{ bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5; },{},{}
-19857,C_King_Prawn_Hat,Costume Crayfish Hat,4,10,,10,,0,,,0xFFFFFFFF,63,2,1024,,1,0,728,{},{},{}
-19858,C_Leaf_Headgear,Costume Smokie Leaf,4,20,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,148,{},{},{}
-19859,C_Flying_Angel,Costume Flying Angel,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,264,{},{},{}
-19860,C_Cryptura_Hair_Cap,Costume School Criatura Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,872,{},{},{}
-19861,C_Heart_Hair_Pin,Costume Heart Hairpin,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,126,{},{},{}
-19862,C_Horn_Of_Succubus,Costume Succubus Horn,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,150,{},{},{}
-19863,C_Inccubus_Horn,Costume Incubus Horn,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,156,{},{},{}
-19864,C_Dokebi's_Wig,Costume Dokebi's Wig,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,302,{},{},{}
-19865,C_Joker_Jester,Costume Joker Jester,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,89,{},{},{}
-19871,C_Music_Decoration,Costume Decoration of Music,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,1074,{},{ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; },{ sc_end SC_DECORATION_OF_MUSIC; }
-19876,C_Rabbit_Ear_Hat,Costume Bunny Top Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,384,{},{},{}
-19878,C_Drooping_Bunny,Costume Evolved Drooping Bunny,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,249,{},{},{}
-19882,C_Flowerpot_Mask,Costume Flowerpot Mask,4,0,,0,,,,,0xFFFFFFFF,63,2,4096,,1,,1086,{},{},{}
-19883,C_Piamette_Hood,Costume Piamette Hood,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1087,{},{},{}
-19884,C_Vanargandr_Helm,Costume Vanargand Helm,4,10,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,804,{},{},{}
-19885,C_Blinker,Costume Blinker,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,82,{},{},{}
-19886,C_Luxury_Sunglasses,Costume Purple Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,26,{},{},{}
-19887,C_One_Eyed_Glass,Costume Cyclops Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,23,{},{},{}
-19888,C_Glasses,Costume Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,3,{},{},{}
-19889,C_Pair_Of_Red_Ribbon,Costume Small Ribbons,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,,169,{},{},{}
-19902,C_Cigar,Costume Cigarette,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,54,{},{},{}
-19903,C_Witchs_Hat,Costume Witch's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,717,{ bonus bVariableCastrate,-10; },{},{}
-19910,C_Halloween_Hat,Costume Halloween Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1098,{},{},{}
-19913,C_Poo_Poo_Hat,Costume Poo Poo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,76,{},{},{}
-19914,Felock_Cap,Felrock's Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1101,{},{},{}
-19916,C_Black_Cat_Hat,Costume Black Cat Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1105,{},{},{}
-19917,C_Gloomy_Pumpkin_Hat,Costume Pumpkin Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,691,{ bonus bSpeedRate,25; },{},{}
-19918,C_Lude_Mask,Costume Lude Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,802,{ bonus bAddItemHealRate,20; },{},{}
-19919,C_Cube_Mask_,Costume Quve Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,472,{ bonus bAspdRate,10; },{},{}
-19920,C_Adv_Whisper_Mask,Costume Evolved Whisper Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,458,{ bonus bFlee,20; },{},{}
-19922,C_Noah_Hat,Costume Noah's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,636,{},{},{}
-19925,C_One_Eyed_Glasses,Costume Monocle,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,23,{},{},{}
-19928,C_Gothic_Heart_Wing,Costume Gothic Heart Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1111,{},{},{}
-19929,C_Classical_Ribbon,Costume Classical Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1112,{},{},{}
-19930,C_Angel_Mini_Silk_Hat,Costume Angel Mini Silk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1113,{},{},{}
-19931,C_Lazy_Raccoon,Costume Lazy Smokie,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,0,168,{},{},{}
-19932,C_Cap_Of_Concentration,Costume Model Training Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,0,157,{},{},{}
-19934,C_10Gallon_Hat_Of_Flame,Costume Alive Ten Gallon Hat Of Flame,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1075,{},{},{}
-19935,C_Hunting_Cap_Of_Gust,Costume Hunting Cap Of Gust,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1076,{},{},{}
-19936,C_Knit_Cap_Of_Water,Costume Knit Cap Of Water,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1077,{},{},{}
-19937,C_Silk_Hat_Of_Earth,Costume Silk Hat of Earth,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1078,{},{},{}
-19938,C_Love_Rabbit_Hood,Costume Love Rabbit Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,549,{},{},{}
-19939,C_Antler,Costume Antlers,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,71,{},{},{}
-19941,C_Ear_Mufs,Costume Ear Muffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,70,{},{},{}
-19949,C_RWC2013_Japan_Hat,Costume RWC2013 Japan Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1136,{},{},{}
-19952,C_Bubble_Gum_in_Mouth,Costume Bubble Gum in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,572,{},{},{}
-19953,C_Parade_Cap,Costume Parade Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,465,{},{},{}
-19954,C_3D_Glasses,Costume 3D Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,661,{},{},{}
-19955,C_Mini_Tree_J,Costume Mini Tree J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,727,{},{},{}
-19956,C_Soldier_Hat,Costume Soldier Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,420,{},{},{}
-19957,C_Scooter_Hat,Costume Scooter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,588,{},{},{}
-19958,C_Choir_Hat,Costume Choir Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1137,{},{},{}
-19959,C_Drooping_Argiope,Costume Drooping Argiope,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1138,{},{},{}
-19960,C_Chain_Puppet,Costume Chain Puppet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1139,{},{},{}
-19961,C_Rune_Circlet,Costume Rune Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,623,{},{},{}
-19962,C_Mitra,Costume Mitra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,624,{},{},{}
-19963,C_Driver_Band_R,Costume Driver Band(Red),4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,626,{},{},{}
-19964,C_Driver_Band_Y,Costume Driver Band(Yellow),4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,637,{},{},{}
-19965,C_Shadow_Handicraft,Costume Shadow Handicraft,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,627,{},{},{}
-19966,C_Minstrel_Song_Hat,Costume Minstrel Song's Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,628,{},{},{}
-19967,C_Midas_Whisper,Costume Midas Whisper,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,629,{},{},{}
-19968,C_Magic_Stone_Hat,Costume Magic Stone Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,630,{},{},{}
-19969,C_Blazing_Soul,Costume Blazing Soul,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,631,{},{},{}
-19970,C_Wind_Whisper,Costume Wind Whisper,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,633,{},{},{}
-19971,C_Dying_Swan,Costume Dying Swan,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,635,{},{},{}
-19972,C_Protect_Of_Crown,Costume Protect Of Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1140,{},{},{}
-19973,C_Circlet_Of_Bone,Costume Circlet Of Bones,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1141,{},{},{}
-19974,C_Camouflage_RabbitHood,Costume Camouflage Rabbit Hood,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1142,{},{},{}
-19976,C_Cat_Santa_Hat,Cat Santa Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1144,{ bonus bAspdRate,10; bonus bSpeedRate,25; },{},{}
-19977,C_Golden_Exclamation,Costume Golden Exclamation Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1145,{},{},{}
-19978,C_Silver_Exclamation,Costume Silver Exclamation Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1146,{},{},{}
-19979,C_Golden_Question,Costume Golden Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1147,{},{},{}
-19980,C_Silver_Question,Costume Silver Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1148,{},{},{}
-19982,C_Santa's_Hat,Costume Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,20,{},{},{}
-19983,C_Flower_Hairpin,Costume Flower Hairpin,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,145,{},{},{}
-19984,C_Winter_Hat,Costume Fashion Winter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,196,{},{},{}
-19985,C_Aura_Quartz_Crown,Costume Aura Quartz,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,866,{},{},{}
-19986,C_Lunatic_Hat,Costume Lunatic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,521,{},{},{}
-19987,C_Blue_Fur_Hat,Costume Blue Fur Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,280,{},{},{}
-19988,C_Elder_Crown,Costume Elder Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,933,{},{},{}
-19989,C_Mouton_Life,Costume Mouton Life,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1156,{},{},{}
-19990,C_Snow_Rabbit_Knit_Hat,Costume Rabbit Knit Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1157,{},{},{}
-19991,C_Galanthus_Guard,Costume Galanthus Guard,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1158,{},{},{}
-19992,C_Chilly_Breath,Costume Chilly Breath,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,885,{},{},{}
-19994,C_saLUsalo_Hat,Costume saLUsalo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1171,{},{},{}
-19997,C_Bomb_Hat,Costume Bomb Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1191,{},{},{}
-19998,C_Dragon_Turtle_Hat,Costume Dragon Turtle Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1192,{},{},{}
-19996,Horse_King,Horse King,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,,1189,{},{},{}
-19999,C_Mouse_Hat1,Costume Mouse Hat 1,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1193,{},{},{}
-20000,C_Mouse_Hat2,Costume Mouse Hat 2,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1194,{},{},{}
-20001,C_Mouse_Hat3,Costume Mouse Hat 3,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1195,{},{},{}
-20002,C_Mouse_Hat4,Costume Mouse Hat 4,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1196,{},{},{}
-20003,C_Mouse_Hat5,Costume Mouse Hat 5,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1197,{},{},{}
-20004,C_Big_Golden_Bell,Costume Big Golden Bell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,175,{},{},{}
-20005,C_Pegasus_Wing_Ears,Costume Sigrun Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,568,{},{},{}
-20006,C_Dark_Knight_Mask,Costume Dark Knight Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,479,{},{},{}
-20007,C_Bullock_Helm_J,Costume Horned Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,322,{},{},{}
-20008,C_General_Helmet,Costume Dragon General Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,729,{},{},{}
-20009,C_Dragon_Skull,Costume Dragon Skull Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,319,{},{},{}
-20010,C_Rainbow_Wing_Ears,Costume Rainbow Ears Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1198,{},{},{}
-20011,C_Lightning_Speed,Costume Lightning Speed,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1199,{},{},{}
-20012,C_Double_Horn_Helm,Costume Double Horn Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1200,{},{},{}
-20013,C_Chef_Hat,Costume Chef Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,111,{},{},{}
-20014,Lincoln_Hat,Costume Lincoln Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1204,{},{},{}
-20015,Lincoln_Beard,Costume Lincoln Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,0,1205,{},{},{}
-20016,Lobster_Hat,Costume Cool Dinner Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1206,{},{},{}
-20017,C_Marionette_Doll,Costume Marionette Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,212,{},{},{}
-20018,C_Holo_Ear,Costume Holo Ear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1208,{},{},{}
-20019,Beret_Of_Artist,Costume Beret Of Artist,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1209,{},{},{}
-20020,C_Zaha_Doll_Hat,Costume Zaha Doll Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,461,{},{},{}
-20021,C_Heart_Ribbon_Hairband,Costume Heart Ribbon Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,708,{},{},{}
-20022,C_Love_Fragment,Costume Love Fragment,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,734,{},{},{}
-20023,C_Red_Beret,Costume Red Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,559,{},{},{}
-20024,C_Orange_Ribbon,Costume Orange Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,247,{},{},{}
-20025,C_Cow_Hat1,Costume Cow Hat 1,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1211,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{}
-20026,C_Cow_Hat2,Costume Cow Hat 2,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1212,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{}
-20027,C_Cow_Hat3,Costume Cow Hat 3,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1213,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{}
-20028,C_Cow_Hat4,Costume Cow Hat 4,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1214,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{}
-20029,C_Donut_in_Mouth,Costume Donut in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,569,{},{},{}
-20030,C_Choco_Donut_in_Mouth,Costume Choco Donut in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,653,{},{},{}
-20031,C_Bunny_Head_Dress,Costume Bunny Headress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1215,{},{},{}
-20032,C_Firinto_Scarf,Costume Firinto Scarf,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1216,{},{},{}
-20033,C_Buddhist_Priest_Crown,Costume Monk Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1217,{},{},{}
-20034,C_Jack_Castle_Bat,Costume Jack Castle Bat,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1041,{},{},{}
-20035,C_Miracle_Blue_Rose,Costume Miracle Blue Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1064,{},{},{}
-20036,C_Sword_Master_Crown,Costume Sword Master Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,981,{},{},{}
-20037,C_Owlduke_Silk_Hat,Costume Owlduke Silk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,982,{},{},{}
-20038,C_Alphonse_Helmet,Costume Alphonse Helmet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1214,{},{},{}
-20039,C_Butterfly_Wing_Ear_J,Costume Butterfly Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{},{},{}
-20040,C_Rose_Crown,Costume Chung Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,583,{},{},{}
-20041,C_Earth_Goddess_Flower,Costume Rose Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,864,{},{},{}
-20042,C_Hermose_Cap,Costume Hermos Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,478,{},{},{}
-20043,C_Red_Cherry_Blossom,Costume Cherryblossom in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,823,{},{},{}
-20044,C_Carmen_Miranda_Hat,Costume Carmen Miranda's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,329,{},{},{}
-20045,C_Samambaia,Costume Samambaia,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,508,{},{},{}
-20046,C_Decoration_bluerose,Costume Blue Ribbon Band,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1222,{},{},{}
-20047,C_Pray_Cherry_Blossom,Costume Prayer Cherry Blossom,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1223,{},{},{}
-20048,C_Wind_Of_The_Prairie,Costume Wind Prairie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1224,{},{},{}
-20049,C_Plaster,Costume Giant Band Aid,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,147,{},{},{}
-20050,C_Ph.D_Hat,Costume Ph.D Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,98,{},{},{}
-20051,C_Stop_Post,Costume Stop Post,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,59,{},{},{}
-20052,C_AFK_Hat,Costume AFK Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,471,{},{},{}
-20053,C_W_King_Tiger_Doll_Hat,Costume White King Tiger Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,973,{},{},{}
-20054,C_Baby_Pacifier,Costume Baby Pacifier,4,0,,0,,,,,0xFFFFFFFF,63,2,4096,,1,,191,{},{},{}
-20055,C_Ghost_Bandana,Costume Ghost Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,61,{},{},{}
-20056,C_Bride_Corolla,Costume Bride's Corolla,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,437,{},{},{}
-20057,C_Feather_Bonnet,Costume Feather Bonnet,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,104,{},{},{}
-20058,C_Hot_Blood_Headband,Costume Hot Blood Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,154,{},{},{}
-20059,C_Welding_Mask,Costume Welding Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,79,{},{},{}
-20060,C_Construction_Helmet,Costume Construction Helmet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,95,{},{},{}
-20061,C_Demo_Mask,Costume Demo Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,52,{},{},{}
-20062,C_Angel_Stair,Costume Angel Stair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,,{},{ sc_start SC_HAT_EFFECT,INFINITE_TICK,0; },{ sc_end SC_HAT_EFFECT; }
-20063,C_Yellow_Brain_Hat,Costume Yellow Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1228,{},{},{}
-20064,C_Blue_Brain_Hat,Costume Blue Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1229,{},{},{}
-20065,C_Hairband_Of_Grandpeco,Costume Grand Peco Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,473,{},{},{}
-20066,C_Pecopeco_Hairband,Costume Pecopeco Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,314,{},{},{}
-20067,C_White_Rabbit_Headband,Costume White Rabbit Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,719,{},{},{}
-20068,C_Black_Rabbit_Headband,Costume Black Rabbit Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,718,{},{},{}
-20069,C_Gryphon_Hairband,Costume Gryphon Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1233,{},{},{}
-20070,C_Alpaca_Hood,Costume Alpaca Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1234,{},{},{}
-20071,C_Worg_In_Mouth,Costume Worg In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1235,{},{},{}
-20073,C_Hair_Band,Costume Hair Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,9,{},{},{}
-20074,C_Biretta,Costume Biretta,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,11,{},{},{}
-20075,C_Little_Fhat,Costume Little Feather Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,715,{},{},{}
-20076,C_Idun_Wing_Ears,Costume Idun Feather Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,724,{},{},{}
-20077,C_Wing_Form_Spectacle,Costume Wing Frame Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,925,{},{},{}
-20078,C_White_Feather,Costume White Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,741,{},{},{}
-20079,C_Love_Daddy_2013,Costume Forgotten Angel Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1104,{},{},{}
-20080,C_Shaman's_Hair_Orna,Costume Shaman Hair Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,476,{},{},{}
-20081,C_Metal_Dragon_Helm,Costume Metal Dragon Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1242,{},{},{}
-20082,C_Metal_Dragon_Hat,Costume Metal Dragon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1243,{},{},{}
-20083,C_Mythlit_Hat,Costume Mythlit Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1244,{},{},{}
-20084,C_Clover_Coronet,Costume Ceremonial Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,325,{},{},{}
-20085,C_Clover_Silkhat,Costume St Patrick's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,735,{},{},{}
-20086,C_Dragon_Cintamani_Hat1,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1245,{},{},{}
-20087,C_Dragon_Cintamani_Hat2,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1246,{},{},{}
-20088,C_Dragon_Cintamani_Hat3,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1247,{},{},{}
-20089,C_Dragon_Cintamani_Hat4,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1248,{},{},{}
-20090,C_Egg_Shell,Costume Egg Shell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,101,{},{},{}
-20091,C_Smoking_Pipe,Costume Pipe,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,55,{},{},{}
-20092,C_Sales_Signboard,Costume Sales Banner,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,183,{},{},{}
-20093,C_Star_Sparkling,Costume Wizard Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,36,{},{},{}
-20094,C_Fillet_Green,Costume Green Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,439,{},{},{}
-20095,C_Fillet_Red,Costume Red Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,440,{},{},{}
-20096,C_Fillet_Blue,Costume Blue Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,441,{},{},{}
-20097,C_Fillet_White,Costume White Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,442,{},{},{}
-20098,C_Vampire_Hairband,Costume Vampire Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1238,{},{},{}
-20099,C_Ljosalfar,Flying Ljosalfar,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1239,{},{ sc_start SC_LJOSALFAR,INFINITE_TICK,0; },{ sc_end SC_LJOSALFAR; }
-20100,C_Volume_Fhat,Costume Volume Fhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1240,{},{},{}
-20101,C_Bragi_Wing_Ears,Costume Bragi Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1241,{},{},{}
-20102,C_Horse_King_J,Costume Horse King J,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1189,{},{},{}
-20103,C_Drooping_Panda,Costume Drooping Panda,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1029,{},{},{}
-20104,C_Picky_Egg_Shell,Costume Picky Egg Shell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1001,{},{},{}
-20105,C_Fish_Head_Hat,Costume Fish Head,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,386,{},{},{}
-20106,C_Classic_Hat,Costume Classic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,475,{},{},{}
-20107,C_Fish_In_Mouth,Costume Fish In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,406,{},{},{}
-20108,C_Blind_Glasses,Costume Blind Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,813,{},{},{}
-20109,C_Jolly_Roger,Costume Jolly Roger Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,962,{},{},{}
-20110,C_Coiledup_Snake,Costume Coiledup Snake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1258,{},{},{}
-20111,C_Coiledup_Snake_Hat2,Costume Coiledup Snake Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1259,{},{},{}
-20112,C_Aqua_Ten_Gallon_Hat,Costume Aqua Ten Gallon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1256,{},{},{}
-20113,C_Star_Reading_Hat,Costume Star Reading Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1253,{},{},{}
-20114,C_Funeral_Costume,Costume Funeral Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,77,{},{},{}
-20115,C_Under_Rim_Glasses,Under Rim Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1255,{},{},{}
-20116,C_Mermaid_Headphone,Mermaid Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1254,{},{},{}
-20117,C_Raspberry_Mousse_Hat,Raspberry Mousse Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1257,{},{},{}
-20118,C_Hat_Of_Cake,Costume Cake Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,109,{},{},{}
-20119,C_Fur_Hat,Costume Beanie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,160,{},{},{}
-20120,C_Antenna,Costume Aerial,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,97,{},{},{}
-20121,C_Lotus_Flower_Hat,Costume Flower Lily,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,324,{},{},{}
-20122,Happy_Summer_Ribbon,Costume Happy Summer Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1260,{},{},{}
-20123,C_Eagle_Eyes,Costume Eagle Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,63,{},{},{}
-20124,C_Masquerade,Costume Masquerade,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,78,{},{},{}
-20125,C_Mini_Glasses,Costume Mini Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,47,{},{},{}
-20126,C_Odium_Thanatos_Mask,Costume Odium Thanatos Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,667,{},{},{}
-20127,C_Abysmal_Knight_Helm,Costume Abysmal Knight Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,371,{},{},{}
-20128,C_Remover_Hat,Costume Remover Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,655,{},{},{}
-20129,C_Poporing_Cap,Costume Poporing Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,361,{},{},{}
-20130,C_Whisper_Tall_Hat,Costume Whisper Tall Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1265,{},{},{}
-20131,C_C_Tower_Manager_Incom,Costume Clock Tower Manager,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1266,{},{},{}
-20132,C_Subject_Aura,Costume Aura Vicious Mind,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1267,{},{},{}
-20133,C_Poring_Mascot_Costume,Costume Poring Mascot,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1268,{},{},{}
-20134,C_Helm_Of_Abyss_White,Costume White Helm Of Abyss,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1269,{},{},{}
-20135,C_12_Anniversary_Crown_Of_Saint,Costume 12 Anniversary Crown of Saint,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1117,{},{},{}
-20136,C_12_Anniversary_Elf_Ears,Costume 12 Anniversary Elf Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,875,{},{},{}
-20137,C_Bomb_Wick,Costume Bomb Wick,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,66,{},{},{}
-20138,C_Sea_Otter_Hat,Costume Sea Otter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,162,{},{},{}
-20139,C_Horse_Hairpin,Costume Horse Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1271,{},{},{}
-20140,C_Horse_Hairpin_,Costume Horse Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1272,{},{},{}
-20141,C_Observer,Costume Observer,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,337,{},{},{}
-20142,C_Machoman_Glasses,Costume Machoman Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,92,{},{},{}
-20143,C_Candy_Cane_In_Mouth,Costume Candy Cane In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,665,{},{},{}
-20144,C_Ancient_Elven_Ear,Costume Ancient Elven Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,665,{},{},{}
-20145,C_Robo_Eye,Costume Robo Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,345,{},{},{}
-20146,C_Angel_Spirit,Costume Angel of Ghost,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,394,{},{},{}
-20147,C_Bell_Pigeon,Costume Bell of Piegon,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1034,{},{},{}
-20148,C_Musketeer_Hat,Costume Musketeer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,466,{},{},{}
-20149,C_Hexagon_Glasses,Costume Hexagon Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,822,{},{},{}
-20150,C_Wind_Fan,Costume Wind Fan,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{}
-20151,C_Poison_Spore_Hat,Costume Poison Spore Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,899,{},{},{}
-20152,C_Straw_Rice_Bag,Costume Straw Rice Bag,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1273,{},{},{}
-20153,C_Monochrome_Cap,Costume Monochrome Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1274,{},{},{}
-20154,C_Maple_Which_Falls,Costume Maple Which Falls,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1275,{},{ sc_start SC_MAPLE_FALLS,INFINITE_TICK,0; },{ sc_end SC_MAPLE_FALLS; }
-20155,C_Ladys_Feather_Hat,Costume Lady's Feather Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1276,{},{},{}
-20156,C_Fan_in_Mouth,Costume Fan in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,857,{},{},{}
-20157,C_Fish_On_Head,Costume Evolved Blue Fish,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,149,{},{},{}
-20158,C_Circlet,Costume Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,18,{},{},{}
-20159,C_Blue_Hair_Band,Costume Blue Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,136,{},{},{}
-20160,C_Fried_Egg,Costume Magnolia Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,373,{},{},{}
-20161,C_Prontera_Army_Cap,Costume Army Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,48,{},{},{}
-20162,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1277,{},{},{}
-20163,C_Fleece_Hat_,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1278,{},{},{}
-20164,C_Duneyrr_Hat,Costume Duneyrr Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,639,{},{},{}
-20165,C_Tendrilion_Hat,Costume Tendrilion Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,658,{},{},{}
-20166,C_Hockey_Mask,Costume Hockey Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,336,{},{},{}
-20167,C_Deviruchi_Headphone,Costume Deviruchi Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,805,{},{},{}
-20168,C_Skull_Hood,Costume Skull Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,598,{},{},{}
-20169,C_Long_Tongue,Costume Long Tongue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,773,{},{},{}
-20170,C_Brown_Deviruchi_Cap,Costume Brown Deviruchi Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,273,{},{},{}
-20171,C_Sepia_Cap,Costume Sepia Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1280,{},{},{}
-20172,C_Pumpkin_Head,Costume Pumpkin Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1281,{},{},{}
-20173,C_Lude_Hood,Costume Lude Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1282,{},{},{}
-20174,C_Halloween_Hat_Orange,Costume Orange Halloween Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1283,{},{},{}
-20175,C_Diabolic_Headphone,Costume Diabolic Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1284,{},{},{}
-20176,Happy_Pierrot_Mask,Costume Happy Pierrot Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1288,{},{},{}
-20177,C_Drooping_Dorasuke,Costume Drooping Dorasuke,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1290,{},{},{}
-20178,C_Puppy_Love,Costume Puppy Love,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,94,{},{},{}
-20179,C_Monkey_Coat_Hat,Costume Monkey Coat Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,858,{},{},{}
-20180,C_Westren_Grace,Costume Western Grace,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,32,{},{},{}
-20181,C_Mistic_Rose,Costume Mystic Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,198,{},{},{}
-20182,C_Mottled_Egg_Shell,Costume Rainbow Eggshell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,124,{},{},{}
-20183,C_There_Is_Something,Costume There's..Something..,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,1091,{},{},{}
-20184,C_Party_Hat,Costume Party Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,144,{},{},{}
-20185,C_Fashionable_Glasses,Costume Fashionable Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,131,{},{},{}
-20186,C_Magni_Cap,Costume Magni's Cap,4,20,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,250,{},{},{}
-20187,C_Fricca's_Circlet,Costume Fricca's Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,251,{},{},{}
-20188,C_Morpheus's_Hood,Costume Morpheus's Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,256,{},{},{}
-20189,C_Goibne's_Helm,Costume Goibne's Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,258,{},{},{}
-20190,C_Chick_Hat_J,Costume Chick Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,432,{},{},{}
-20191,C_Black_Cat_Ears_Beret,Costume Black Cat Ears Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1071,{},{},{}
-20192,C_Green_Foxtail,Costume Green Foxtail,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1058,{},{},{}
-20193,C_Foxtail,Costume Foxtail,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,711,{},{},{}
-20194,C_Lion_Mask,Costume Lion Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,202,{},{},{}
-20195,C_Scratching_Cat,Costume Scratching Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1292,{},{},{}
-20196,C_Leopard_Ear_Hat,Costume Leopard Ear Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1293,{},{},{}
-20197,C_Amistr_Beret,Costume Amistr Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1294,{},{},{}
-20198,C_Misty_Ears,Costume Misty Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1295,{},{},{}
-20199,C_Evil_Marcher_Hat,Costume Evil Marcher Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,687,{},{},{}
-20200,C_Rabbit_Head_Dress,Costume Rabbit Head Dress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1095,{},{},{}
-20201,C_Banshee_Master_Kiss,Costume Banshee Master Kiss,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,959,{},{},{}
-20202,C_Deviruchi_Balloon,Costume Deviruchi Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1082,{},{},{}
-20203,C_Bandana,Costume Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,6,{},{},{}
-20204,C_Hunting_Cap,Costume Hunter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,389,{},{},{}
-20205,C_Fancy_Flower,Costume Fancy Flower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,4,{},{},{}
-20206,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1296,{},{},{}
-20207,C_Stripe_Band,Costume Striped Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,133,{},{},{}
-20208,C_Necktie,Costume Neck Tie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,443,{},{},{}
-20209,C_Mermaid_Longing,Costume Mermaid Bubbles,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1299,{},{ sc_start SC_MERMAID_LONGING,INFINITE_TICK,0; },{ sc_end SC_MERMAID_LONGING; }
-20210,C_Chicken_Hat_,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1297,{},{},{}
-20211,C_Chicken_Hat__,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1298,{},{},{}
-20212,C_Loki_Nidhogg_Hat,Costume Loki & Nidhoggur's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1304,{},{},{}
-20213,C_Sirt_Evil_Eye,Costume Robot Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,345,{},{},{}
-20214,C_Evil_Marcher_Hat_J,Costume Evil Marcher Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1002,{},{},{}
-20215,C_Black_Devil_Mask,Costume Black Devil Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,760,{},{},{}
-20216,C_Rideword_Hat,Costume Rideword Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,890,{},{},{}
-20217,C_Arabian_Veil,Costume Arabian Veil,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1300,{},{},{}
-20218,C_Spell_Circuit,Costume Spell Circuit,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1301,{},{},{}
-20219,C_Angel_Marcher_Hat,Costume Angel Marcher Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1302,{},{},{}
-20220,C_Dark_Night_Veil,Costume Dark Night Veil,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,1303,{},{},{}
-20221,C_Eyes_Of_Ifrit,C Eyes Of Ifrit,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,886,{},{},{}
-20222,C_Santa_Hat_2,Costume Blue Pigtail Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,395,{},{},{}
-20223,C_Centimental_Leaf,Costume Romantic Leaf,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,57,{},{},{}
-20224,C_Red_Tailed_Ribbon,Costume Red Tailed Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,167,{},{},{}
-20225,C_Pumpkin_Hat,Costume Pumpkin-Head,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,206,{},{},{}
-20226,C_Hair_Brush,Costume Red Comb,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,445,{},{},{}
-20227,C_Husky_Hat,Costume Husky Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1016,{},{},{}
-20228,C_Pig_MoneyBox,Costume Pig MoneyBox,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,603,{},{},{}
-20230,C_Mask_Of_Bankrupt,Costume Bankruptcy Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,936,{},{},{}
-20231,C_Snowman_Hat,Costume Snowman Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,616,{},{},{}
-20232,C_Celines_Ribbon,Costume Celine Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,967,{},{},{}
-20233,C_Gold_Angel_Sculpture,Costume Golden Angel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,646,{},{},{}
-20234,C_Baphomet_Hat,Costume Baphomet Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1311,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015; },{},{}
-20235,C_Frozen_Land_Rose,Costume Frozen Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1025,{},{},{}
-20236,C_Hellomother_Hat,Costume Arc Angeling Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,241,{},{},{}
-20237,C_Pink_Fur_Hat,Costume Pink Beanie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,281,{},{},{}
-20238,C_Blue_Drooping_Kitty,Costume Drooping Blue Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,277,{},{},{}
-20239,C_Large_Ribbon_Muffler,Costume Large Ribbon Muffler,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1312,{},{},{}
-20240,C_Gift_Of_Snow,Costume Gift of Snow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,,{/*TODO: ViewID*/},{},{}
-20241,C_Eclipse_Hat,Costume Eclipse Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,922,{},{},{}
-20242,C_Snownow_Hat,Costume Snownow Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1313,{},{},{}
-20243,C_Choco_Mint_Bonnet,Costume Choco Mint Bonnet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1314,{},{},{}
-20244,C_Zealotus_Mask,Costume Zealotus Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,200,{},{},{}
-20245,C_Cat_Paw_Hairpin,Costume Cat Paw Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,447,{},{},{}
-20246,C_Decoration_Time,Costume Decoration Time,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1309,{},{ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; },{ sc_end SC_TIME_ACCESSORY; }
-20247,C_Fate_Of_Black_Hand,Costume Fate Of Black Hand,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1310,{},{},{}
-20248,C_Black_Strong_Hair,Costume Black Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1315,{},{},{}
-20249,C_Red_Strong_Hair,Costume Red Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1316,{},{},{}
-20250,C_White_Strong_Hair,Costume White Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1317,{},{},{}
-20251,C_Rose_Cascade,Costume Rose Cascade,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,920,{},{},{}
-20252,C_Accessory_of_Ascetic,Costume Mage Decoration,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1150,{},{},{}
-20253,C_Droopy_Alice_Doll,Costume Drooping Alicel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,784,{},{},{}
-20254,C_Ribbon_Yellow,Costume Yellow Ribbonn,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,243,{},{},{}
-20255,C_Love_Cheek,Costume Love Cheeks,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1318,{},{},{}
-20256,C_Honey_Pancakes,Costume Honey Pancake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1319,{},{},{}
-20257,C_Black_Rabbit_Bonnet,Costume Black Rabbit Bonnet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1320,{},{},{}
-20258,C_Blue_Head_Dress,Costume Blue Headdress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1321,{},{},{}
-20259,C_Pink_Clover,Costume Pink Clover,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1322,{},{},{}
-20260,C_Stardust,Costume Stardust,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,81,{},{},{}
-20262,C_Fox_Ears_Bell_Ribbon,Costume Fox Ears Drop Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1070,{},{},{}
-20263,C_Hat_Of_Drowsy_Cat,Costume Sleeping Cat Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,838,{},{},{}
-20264,C_Blood_Sucker,Costume Blood Sucker,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,893,{},{},{}
-20265,C_Bird_Nest_Hat,Costume Bird Nest Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,235,{},{},{}
-20266,C_Secret_Zipper,Costume Secret Zipper,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1324,{},{},{}
-20267,C_Penguin_Cap,Costume Penguin Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1325,{},{},{}
-20268,C_Sleep_Eclipse_Family,Costume Sleep Eclipse Family,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1326,{},{},{}
-20269,C_White_Fox_Ear_Ribbon,Costume White Fox Ear Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1327,{},{},{}
-20270,C_Gryphon_Wing_Ears,Costume Gryphon Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1328,{},{},{}
-20271,C_Sunflower,Costume Sunflower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,37,{},{},{}
-20272,C_Snowy_Horn,Costume Unicorn Horn,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,42,{},{},{}
-20273,C_Soft_Sheep_Hat,Costume Soft Sheep Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,738,{},{},{}
-20274,C_Polar_Bear_Cap_J,Costume Polar Bear Cap J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,966,{},{},{}
-20277,C_Balloon_Hat,Costume Balloon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,385,{},{},{}
-20278,C_Mans_Medal,Costume Man's Medal,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,775,{},{},{}
-20279,C_Cheering_Whistle,Costume Cheering Whistle,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,952,{},{},{}
-20280,C_Well-Chewed_Pencil,Costume Well-Chewed Pencil,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,555,{},{},{}
-20281,C_Kindergarten_Hat,Costume Kindergarten Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,977,{},{},{}
-20282,C_White_Student_Cap,Costume White Student Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,877,{},{},{}
-20283,C_Over_Protector,Costume Over Protector,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1329,{},{},{}
-20284,C_Cherry_Blossom_Hat,Costume Sakura Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1330,{},{},{}
-20285,C_Blossom_Fluttering,Costume Dancing Fallen Sakura,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1331,{ hateffect HAT_EF_BLOSSOM_FLUTTERING,true; },{},{ hateffect HAT_EF_BLOSSOM_FLUTTERING,false; }
-20286,C_Under_Rim_Glasses_Red,Costume Under Rim Glasses Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1332,{},{},{}
-20287,C_Mans_Medal_Gold,Costume Man's Medal(Gold),4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1333,{},{},{}
-20288,C_Bijou_Hat,Costume Bijou Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1334,{},{},{}
-20291,C_Helm_of_Thoth,Costume Helm of Thoth,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,860,{},{},{}
-20292,C_Black_Ramen_Hat,Costume Black Ramen Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1338,{},{},{}
-20293,C_Sleeper_Hat,Costume Sleeper Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,590,{},{},{}
-20294,C_Savage_Babe_Hat,Costume Savage Babe Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,553,{},{},{}
-20295,C_Poring_Sunglasses,Costume Poring Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,954,{},{},{}
-20296,C_Yoyo_Hat,Costume Yoyo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,391,{},{},{}
-20297,C_Cactus_Hat,Costume Cactus Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,615,{},{},{}
-20298,C_Happy_Lunatic_Ear,Costume Happy Lunatic Hanging Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1340,{},{},{}
-20299,C_Face_Crusher,Costume Face Crusher,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1341,{},{},{}
-20300,C_Hill_Wind_Mask,Costume Hill Wind Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1342,{},{},{}
-20301,C_Golden_Savage_Hat,Costume Golden Savage Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,648,{},{},{}
-20302,C_Beelzebub_Crown,Costume Beelzebub Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1343,{},{},{}
-20303,C_Mandragora_Cap,Costume Mandragora Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,402,{},{},{}
-20304,C_Raccoon_Hat,Costume Raccoon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,118,{},{},{}
-20307,C_Beginner_Cap,Costume Beginner Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1348,{},{},{}
-20311,C_Magical_Booster,Costume Magical Booster,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,873,{},{},{}
-20312,C_Barons_Evil_Eye,Costume Baron's Evil Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,989,{},{},{}
-20313,C_CD_in_Mouth,Costume CD in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,815,{},{},{}
-20314,C_New_Wave_Sunglasses,Costume New Wave Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,856,{},{},{}
-20315,C_Analyze_Eye,Costume Analyze Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1351,{},{},{}
-20316,C_Seraph_Wing_Helm,Costume Seraph Wing Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1352,{},{},{}
-20317,C_Nekomimi_Cyber_Headphone,Costume Nekomimi Cyber Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1353,{},{},{}
-20318,C_Charleston_Antenna,Costume Charleston Antenna,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1354,{},{},{}
-20319,C_Crimson_Booster,Costume Crimson Booster,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1355,{},{},{}
-20320,C_Red_Bandana,Costume Red Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,62,{},{},{}
-20321,C_Pterios_Fins,Costume Pterios Fins,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1009,{},{},{}
-20322,C_Seal_Hat,Costume Seal Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,540,{},{},{}
-20323,C_Sparkling_Sound,Costume Sparkling Sound,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1074,{},{ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; },{ sc_end SC_DECORATION_OF_MUSIC; }
-20324,C_Pigeon_Hat,Costume Pigeon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1362,{},{},{}
-20325,C_Little_Aquarium,Costume Little Aquarium,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1363,{},{},{}
-20326,C_Sailor_Collar,Costume Sailor Collar,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1364,{},{},{}
-20327,C_Marine_Cap,Costume Marine Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1365,{},{},{}
-20328,C_Mackerel_Pike,Costume Mackerel Pike,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1081,{},{},{}
-20329,C_Very_Cute_Doll_Hat,Costume Very Cute Doll Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1084,{},{},{}
-20330,C_Sombrero,Costume Sombrero,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,151,{},{},{}
-20331,C_Desert_Prince,Costume Desert Prince,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,567,{},{},{}
-20332,C_Pure_White_Ribbon,Costume Pure White Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1175,{},{},{}
-20333,C_Family_Hat,Costume Family Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,650,{},{},{}
-20334,C_Joystick_Hat,Costume Joystick Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1305,{},{},{}
-20335,C_Watery_Eyes,Costume Watery Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,828,{},{},{}
-20338,C_Colorful_Dancing_Octopus,Costume Colorful Dancing Octopus,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1007,{},{},{}
-20339,C_Flower_Summer_Hat,Costume Flower Summer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1369,{},{},{}
-20340,C_Straight_Pony_Black,Costume Straight Pony Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1371,{},{},{}
-20341,C_Bouncing_Hair_Black,Costume Bouncing Hair Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1372,{},{},{}
-20342,C_Loose_Wave_Twin,Costume Loose Wave Twin,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1373,{},{},{}
-20345,C_Seagod_Protector,Costume Seagod Protector,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,960,{},{},{}
-20346,C_Drooping_Permeter,Costume Drooping Permeter,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,694,{},{},{}
-20347,C_Poring_Pirate_Hat,Costume Poring Pirate Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,726,{},{},{}
-20348,C_Sunday_Hat,Costume Sunday Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,117,{},{},{}
-20349,C_Flying_Galapago,Costume Flying Galapago,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1358,{},{},{}
-20350,C_Bouncing_Hair_Yellow,Costume Bouncing Hair Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1382,{},{},{}
-20351,C_Bouncing_Hair_Green,Costume Bouncing Hair Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1383,{},{},{}
-20352,C_Bouncing_Hair_Purple,Costume Bouncing Hair Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1384,{},{},{}
-20353,C_Bouncing_Hair_Red,Costume Bouncing Hair Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1385,{},{},{}
-20354,C_Bouncing_Hair_Crimson,Costume Bouncing Hair Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1386,{},{},{}
-20355,C_Bouncing_Hair_Blue,Costume Bouncing Hair Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1387,{},{},{}
-20356,C_Bouncing_Hair_White,Costume Bouncing Hair White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1388,{},{},{}
-20357,C_Straight_Pony_Yellow,Costume Straight Pony Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1389,{},{},{}
-20358,C_Straight_Pony_Green,Costume Straight Pony Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1390,{},{},{}
-20359,C_Straight_Pony_Purple,Costume Straight Pony Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1391,{},{},{}
-20360,C_Straight_Pony_Red,Costume Straight Pony Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1392,{},{},{}
-20361,C_Straight_Pony_Crimson,Costume Straight Pony Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1393,{},{},{}
-20362,C_Straight_Pony_Blue,Costume Straight Pony Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1394,{},{},{}
-20363,C_Straight_Pony_White,Costume Straight Pony White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1395,{},{},{}
-20364,C_Loose_Wave_Twin_Yellow,Costume Loose Wave Twin Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1396,{},{},{}
-20365,C_Loose_Wave_Twin_Green,Costume Loose Wave Twin Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1397,{},{},{}
-20366,C_Loose_Wave_Twin_Purple,Costume Loose Wave Twin Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1398,{},{},{}
-20367,C_Loose_Wave_Twin_Red,Costume Loose Wave Twin Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1399,{},{},{}
-20368,C_Loose_Wave_Twin_Crimson,Costume Loose Wave Twin Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1400,{},{},{}
-20369,C_Loose_Wave_Twin_Blue,Costume Loose Wave Twin Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1401,{},{},{}
-20370,C_Loose_Wave_Twin_White,Costume Loose Wave Twin White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1402,{},{},{}
-20371,C_Special_Kafra_Hat,Costume Special Kafra Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,581,{},{},{}
-20372,C_Ribbon_Hat,Costume Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,956,{},{},{}
-20373,C_Watermelon_Hat,Costume Watermelon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,690,{},{},{}
-20374,C_Mechanical_Plant_Hat,Costume Mechanical Plant Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1069,{},{},{}
-20375,C_Ignis_Cap,Costume Ignis Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,803,{},{},{}
-20376,C_Memory_of_Lovers,Costume Memory of Lovers,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1072,{},{},{}
-20377,C_Flight_Cap,Costume Flight Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,820,{},{},{}
-20378,C_Skymet,Costume Sky Met,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,868,{},{},{}
-20379,C_Pocketwatch_Hair_Ornament,Costume Pocketwatch Hair Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1404,{},{},{}
-20380,C_Mechanical_Feather_Hairband,Costume Mechanical Feather Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1405,{},{},{}
-20381,C_Steampunk_Hat,Costume Steampunk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1406,{},{},{}
-20382,C_Silver_Sniper_Doll,Costume Silver Sniper Doll,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1407,{},{},{}
-20383,C_Magic_Decoy_Doll,Costume Magic Decoy Doll,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1408,{},{},{}
-20384,C_Douce_Tiara,Costume Douce Tiara,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1410,{},{},{}
-20386,C_Victory_Wing_Helm,Costume Victory Wing Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,677,{},{},{}
-20391,C_Silent_Executor,Costume Silent Executor,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,632,{},{},{}
-20392,C_Sniper_Google,Costume Sniper Google,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,625,{},{},{}
-20393,C_Schmitz_Helm,Costume Schmitz Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,634,{},{},{}
-20394,C_Pumpkin_Toque,Costume Pumpkin Toque,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1411,{},{},{}
-20396,C_Green_Hat,Costume Green Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,939,{},{},{}
-20397,C_Jakk,Costume Jack,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1415,{ autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }"; },{},{}
-20398,C_Niffleheim_Bunny_Hat,Costume Niffleheim Bunny Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1285,{},{},{}
-20399,C_Crow_Tengu_Mask,Costume Crow Tengu Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1287,{},{},{}
-20400,C_Ichthys_Rosario,Costume Ichthys Rosario,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1028,{},{},{}
-20401,C_Angel_Guidance,Costume Angel Guidance,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1188,{},{},{}
-20402,C_Holy_Klobuk,Costume Holy Klobuk,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,895,{},{},{}
-20403,C_Dolor_Thanatos,Costume Dolor Thanatos,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,547,{},{},{}
-20404,C_Blessing_Of_Angels,Costume Blessing of Angel,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1425,{ hateffect(HAT_EF_BLESSING_OF_ANGELS,true); },{},{ hateffect(HAT_EF_BLESSING_OF_ANGELS,false); }
-20405,C_Eremes_Scarf,Costume Eremes Scarf,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1416,{},{},{}
-20406,C_Commandments_Of_Chain,Costume Chain of Commandments,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1417,{},{},{}
-20407,C_Subject_Aura_Red,Costume Vicious Mind Aura Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1418,{},{},{}
-20408,C_Requiem_Crown_of_Light_and_Dark,Costume Requiem Crown of Light and Dark,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1419,{},{},{}
-20409,C_There_is_Something_,Costume There is Something,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1091,{},{},{}
-20416,C_1Grade_Balloon,Costume Grade 1 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1426,{},{},{}
-20417,C_2Grade_Balloon,Costume Grade 2 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1427,{},{},{}
-20418,C_3Grade_Balloon,Costume Grade 3 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1428,{},{},{}
-20419,C_4Grade_Balloon,Costume Grade 4 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1429,{},{},{}
-20420,C_5Grade_Balloon,Costume Grade 5 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1430,{},{},{}
-20421,C_6Grade_Balloon,Costume Grade 6 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1431,{},{},{}
-20422,C_7Grade_Balloon,Costume Grade 7 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1432,{},{},{}
-20423,C_8Grade_Balloon,Costume Grade 8 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1433,{},{},{}
-20424,C_9Grade_Balloon,Costume Grade 9 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1434,{},{},{}
-20425,C_10Grade_Balloon,Costume Grade 10 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1435,{},{},{}
-20426,C_11Grade_Balloon,Costume Grade 11 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1436,{},{},{}
-20427,C_12Grade_Balloon,Costume Grade 12 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1437,{},{},{}
-20428,C_13Grade_Balloon,Costume Grade 13 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1438,{},{},{}
-20429,C_Piamette_Bowtie,Costume Piamette Bowtie,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1439,{},{},{}
-20430,C_Loyal_Servant_of_Devil_Morocc,Costume Loyal Servant of Devil Morocc,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1440,{},{},{}
-20431,C_Magician_Headdress,Costume Magician Headdress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1441,{},{},{}
-20432,C_Khalitzburg_Knight_Helm,Costume Khalitzburg Knight Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1442,{},{},{}
-20433,C_Louise_Red_Hat,Costume Louise Red Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1443,{},{},{}
-20434,C_Drooping_Gunslinger,Costume Drooping Gunslinger,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1444,{},{},{}
-20435,C_Camellia_Hair_Pin,Costume Camellia Hair Pin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1203,{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); },{},{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); }
-20436,C_Angelring_Furhat,Costume Angelring Furhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,953,{},{},{}
-20437,C_Sakura_Hairband,Costume Sakura Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,949,{},{},{}
-20438,C_Abacus_In_Mouth,Costume Abacus In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,825,{},{},{}
-20439,C_New_Year_Shine,Costume New Year Shine,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true); },{},{ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false); }
-20440,C_Tone_of_Gold,Costume Tone of Gold,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1447,{},{},{}
-20441,C_Large_Ribbon_Muffler_Red,Costume Large Ribbon Muffler Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1448,{},{},{}
-20442,C_Red_and_White_Mochiring_Hat,Costume Red and White Mochiring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1449,{},{},{}
-20446,C_Bunny_Eggshell,Costume Bunny Eggshell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1339,{},{},{}
-20447,C_Small_Porings_Headband,Costume Small Porings Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,955,{},{},{}
-20448,C_Water_Spellcaster,Costume Water Spellcaster,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1451,{},{},{}
-20449,C_White_and_Black_Temptation,Costume White and Black Temptation,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1452,{},{},{}
-20450,C_Gram_Peony,Costume Gram Peony,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1453,{},{},{}
-20451,C_Sky_of_Memory,Costume Sky of Memory,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1454,{},{},{}
-20452,C_Crown_of_Strawberry_Prince,Costume Crown of Strawberry Prince,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1455,{},{},{}
-20455,C_Republic_Hat,Costume Republic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1458,{},{},{}
-20456,C_Combat_Vestige,Costume Combat Vestige,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1460,{},{},{}
-20457,C_Fluttering_Feathers,Costume Fluttering Feathers,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1461,{ hateffect(HAT_EF_FEATHER_FLUTTERING,true); },{},{ hateffect(HAT_EF_FEATHER_FLUTTERING,false); }
-20458,C_Wild_Poring_Rider,Costume Wild Poring Rider,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1422,{},{},{}
-20459,C_Valhalla_Idol,Costume Valhalla Idol,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1423,{ hateffect(HAT_EF_VALHALLA_IDOL,true); },{},{ hateffect(HAT_EF_VALHALLA_IDOL,false); }
-20460,C_Thorny_Hairband,Costume Thorny Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,921,{},{},{}
-20461,C_93_Style_Bloody_Wings,Costume 93 Style Bloody Wings,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1037,{},{},{}
-20462,C_Cat_Ears_Cape,Costume Cat Ears Cape,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1464,{},{},{}
-20463,C_Two_Tone_Beret,Costume Two Tone Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1465,{},{},{}
-20464,C_Monochrome_Ribbon_Hat,Costume Monochrome Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1466,{},{},{}
-20465,C_Glasses_Without_Lens,Costume Glasses Without Lens,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1467,{},{},{}
-20466,C_Crimson_Ribbon,Costume Crimson Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1468,{},{},{}
-20467,C_Elemental_Crown,Costume Elemental Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1219,{},{},{}
-20468,C_Youinone_Mask,You in ONE,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1462,{},{},{}
-20470,C_SweetChocolate_Hat,Costume Sweet Chocolate Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1469,{},{},{}
-20487,C_Waltz_of_Flowers,Costume Waltz of Flowers,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1473,{ hateffect(HAT_EF_FLORAL_WALTZ,true); },{},{ hateffect(HAT_EF_FLORAL_WALTZ,false); }
-20490,C_Full_Blossom_Sakura_Hairpin_Blue,Costume Full Blossom Sakura Hairpin Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1476,{},{},{}
-20491,C_Laser_of_Eagle,Costume Laser of Eagle,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1424,{},{},{}
-20492,C_Unidentified_Flying_Poring,Costume Unidentified Flying Poring,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1017,{},{},{}
-20495,C_Quati_Hat,Costume Quati Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,527,{},{},{}
-20496,C_Black_Shiba_Inu_Hat,Costume Black Shiba Inu Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,894,{},{},{}
-20497,C_Umbala_Spirit,Costume Umbala Spirit,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,675,{},{},{}
-20498,C_Elephant_Hat,Costume Elephant Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,215,{},{},{}
-20499,C_Cat_Ears_Hat,Costume Cat Ears Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1479,{},{},{}
-//===================================================================
-// New Garments
-//===================================================================
-20500,T_Archangel_Wing,Archangel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,1,{},{},{}
-20502,C_Little_Devil_Wings,Costume Little Devil Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,12,{},{},{}
-20504,C_Cupids_Pink_Wings,Costume Cupid's Pink Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,14,{},{},{}
-20506,Invisible_Manteau,Invisible Manteau,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{},{},{}
-20507,C_Poring_Bag,Costume Poring Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,16,{},{},{}
-20508,C_Poster_Girl_Hat,Costume Poster Girl Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1446,{},{},{}
-20509,C_Wings_of_Uriel,Costume Wings of Uriel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,17,{},{},{}
-20510,C_SwordWing,Costume Sword Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,19,{},{},{}
-20511,C_Blue_Fairy_Wing,Blue Wings of Fairy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,21,{},{},{}
-20512,C_Bag_of_Adventurer_j,Costume Adventurer's Backpack,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,2,{},{},{}
-20514,C_Thanatos_Sword,Costume Thanatos Sword,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,23,{},{},{}
-20515,Costume_Magic_Circle,Costume Magic Circle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_MAGICCIRCLE,true); },{},{ hateffect(HAT_EF_MAGICCIRCLE,false); }
-20516,C_Wings_of_Michael,Costume Wings of Michael,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,24,{},{},{}
-20519,C_Full_Bloom_Cherry_Tree,Costume Full Bloom Cherry Tree,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); },{},{ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); }
-20522,C_Blessings_Of_Soul,Costume Blessings Of Soul,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,0,{ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true); },{},{ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false); }
-20524,C_Shining_Angel_Wings,Costume Shining Angel Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_SHINING_ANGEL_WING,true); },{},{ hateffect(HAT_EF_C_SHINING_ANGEL_WING,false); }
-20535,C_Digital_Space,Costume Digital Space,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_DIGITAL_SPACE,true); },{},{ hateffect(HAT_EF_DIGITAL_SPACE,false); }
-20537,C_Falling_Red_Foliage,Costume Falling Red Foliage,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true); },{},{ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); }
-20538,Costume_Magic_Circle_Rainbow,Costume Magic Circle Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_MAGICCIRCLERAINBOW,true); },{},{ hateffect(HAT_EF_MAGICCIRCLERAINBOW,false); }
-20546,C_Giant_Ribbon_Bell,Costume Giant Ribbon Bell,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,46,{},{},{}
-20547,C_Ghost_Effect,Costume Ghost Effect,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_GHOST_EFFECT,true); },{},{ hateffect(HAT_EF_C_GHOST_EFFECT,false); }
-20548,Costume_Popping_Poring_Aura,Costume Popping Poring Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_POPPING_PORING_AURA,true); },{},{ hateffect(HAT_EF_C_POPPING_PORING_AURA,false); }
-20600,Fantastic_Aura,Fantastic Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ /*TODO: View ID*/ bonus bUnbreakableHelm; },{},{}
-20700,Egir_Manteau,Egir Manteau,4,200000,,300,,10,,1,0xFFFFFFFF,63,2,4,,110,1,0,{ 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); } },{},{}
-20701,Sol_Manteau,Sol Manteau,4,0,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5; },{},{}
-20702,TE_Woe_Muffler,TE Woe Muffler,4,0,,0,,5,,0,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bMdef,5; bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{}
-20703,TE_Woe_Manteau,TE Woe Manteau,4,0,,0,,10,,0,0x000444A2,63,2,4,,40,1,,{ bonus2 bAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{}
-20704,TE_Woe_Magic_Manteau,TE Woe Magic Manteau,4,0,,0,,5,,0,0x00818315,63,2,4,,40,1,,{ bonus2 bMagicAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{}
-20706,Amistr_Bag,Amistr Bag,4,10,,500,,18,,0,0xFFFFFFFF,63,2,4,,1,,4,{ bonus bAllStats,1; bonus2 bSubEle,Ele_All,5; },{},{}
-20707,Kirin_Wing,Kirin Wing,4,20,,0,,18,,0,0xFFFFFFFF,63,2,4,,0,1,6,{ bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-20709,Mana_Manteau,Mana Manteau,4,0,,0,,,,0,0xFFFFFFFF,63,2,4,,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{}
-20710,Impr_Angel's_Warmth,Advanced Angelic Cardigan,4,10000,,400,,6,,1,0x00000001,63,2,4,,99,1,0,{ bonus bHPrecovRate,50; },{},{}
-20711,Manteau_Of_Diego,Manteau Of Diego,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bInt,1; bonus bDex,1; bonus bMdef,3; },{},{}
-20712,Valkyrie_Cape,Valkyrie Cape,4,10,,500,,10,,1,0x6007DFFE,58,2,4,,1,1,0,{ .@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); },{},{}
-20714,Assassin's_Muffler,Assassin's Muffler,4,20,,100,,16,,1,0xFFFFFFFF,63,2,4,,50,1,0,{ .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } },{},{}
-20717,FaceWorm_Skin,Gigant Snake Skin,4,10,,400,,38,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{}
-20718,FaceWorm_Skin_,Gigant Snake Skin,4,10,,400,,38,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{}
-20721,Cloak_Of_Gray,Cloak of Gray,4,20,,600,,45,,1,0xFFFFFFFF,56,2,4,,120,1,0,{ bonus2 bSubEle,Ele_Holy,5+getrefine()/2; },{},{}
-20724,Love_Dad_Wings_2012,Love Dad Wings 2012,4,0,,100,,15,,1,0xFFFFFFFF,63,2,4,,1,1,5,{ .@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; } },{},{}
-20725,Ribbon_Piamat,Ribbon Piamat,4,10,,100,0:10,,,1,0xFFFFFFFF,63,2,4,,30,1,7,{ bonus bInt,1; bonus bDex,1; },{},{}
-20726,Fire_Dragon's_Coat,Fire Dragon's Coat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,4,,30,1,0,{ bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10; },{},{}
-20727,Brilliant_Golden_Wings,Brilliant Golden Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,1,5,{},{},{}
-20728,Water_Dragon_Coat,Water Dragon Coat,4,10,,300,,0,,1,0xFFFFFFFF,63,2,4,,30,1,0,{ bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10; },{},{}
-20730,Loyalists_Hood,Loyalists Hood,4,10,,200,,30,,1,0xFFFFFFFF,63,2,8192,,80,,,{ bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20; },{},{}
-20732,Supplement_Part_Con,Supplement Part Con,4,25000,,500,,20,,1,0x00000400,56,2,4,,100,1,,{ .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;} },{},{}
-20733,Upgrade_Part_Engine,Reinforced Parts - Engine,4,10,,1500,,25,,1,0x00000400,56,2,4,,100,1,,{ bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;} },{},{}
-20737,C_Kirin_Wing,Costume Kirin Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,6,{},{},{}
-20743,Airship_Cape,Airship's Cloak,4,10,,0,,25,,1,0xFFFFFFFF,63,2,4,,125,0,,{ bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20; },{},{}
-20744,Felock_Cape,Felrock's Cloak,4,10,,400,,12,,1,0xFFFFFFFF,63,2,4,,125,1,,{ 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; } },{},{}
-20746,C_Rudra_Wing,Costume Rudra Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,8,{},{},{}
-20748,Manteau_Of_Fallen,Fallen Warrior Manteau,4,10,,600,,20,,0,0xFFFFFFFF,63,2,4,,120,1,,{ .@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; },{},{}
-20749,Manteau_Of_Fallen_,Fallen Warrior Manteau,4,10,,600,,30,,1,0xFFFFFFFF,63,2,4,,170,1,,{ .@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; },{},{}
-20753,Lian_Robe,Lian Robe,4,0,,700,,20,1,1,0xFFFFFFFF,63,2,4,,65,1,,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; },{},{}
-20756,Aegir_Cloak,Aegir Cloak,4,10,,300,,10,,1,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50; },{},{}
-20761,C_Wing_Of_Happiness,Costume Happiness Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,9,{},{},{}
-20762,C_GreatDevilWing,Costume Great Devil Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,10,{},{},{}
-20763,C_Amistr_Bag,Costume Amistr Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,4,{},{},{}
-20764,C_Fallen_Angel_Wing,Costume Fallen Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,3,{},{},{}
-20773,Excelion_Wing,Excelion Wing,4,20,,900,,40,,0,0xFFFFFFFF,63,2,4,,99,1,,{ bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); },{},{}
-20778,Red_Lotus_Stole,Red Lotus Stole,4,20,,700,,8,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; } },{},{}
-20779,Rift_Manteau,Rift Manteau,4,20,,500,,16,,1,0xFFFFFFFF,63,2,4,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; },{},{}
-20780,Unity_STR_Manteau,Unity STR Manteau,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); } },{},{}
-20781,Unity_AGI_Manteau,Unity AGI Manteau,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); } },{},{}
-20782,Unity_INT_Muffler,Unity INT Muffler,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); } },{},{}
-20783,Hero_Cape,Hero Cape,4,0,,100,,,,1,0xFFFFFFFF,63,2,4,,10,1,,{ .@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; } },{},{}
-20787,Unity_Exquisite_Muffler,Unity Exquisite Muffler,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); } },{},{}
-20788,Private_Doram_Manteau,Private Doram Manteau,4,20,,300,,20,,1,0x80000000,7,2,4,,100,1,,{ bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3; },{},{}
-20789,Luxury_Doram_Manteau,Luxury Doram Manteau,4,20,,400,,25,,1,0x80000000,7,2,4,,140,1,,{ bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r; },{},{}
-20790,Elegant_Doram_Manteau,Elegant Doram Manteau,4,20,,500,,30,,1,0x80000000,7,2,4,,175,1,,{ bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r; },{},{}
-20797,Etran_Shirt,Etran Shirt,4,0,,150,,,,1,0xFFFFFFFF,63,2,4,,1,1,,{ 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; },{},{}
-20798,GrimReaper_Protection,Costume Grim Reaper Protection,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1450,{},{},{}
-20799,Elemental_Towel,Elemental Towel,4,20,,400,,13,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ 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; } },{},{}
-20800,Enforcer_Cape,Enforcer Cape,4,20,,300,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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; } } },{},{}
-20813,Coak_of_Survival,Cloak of Survival,4,1000,,550,,10,,1,0x00810204,63,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{}
-20814,Wakwak_Manteau,Wakwak Manteau,4,20,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ 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); } },{},{}
-20815,SeraphimRobe,Seraphim Robe,4,0,,300,,18,,1,0xFFFFFFFF,63,2,4,,1,1,,{ 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; } },{},{}
-20819,Oxygen_Bottle,Oxygen Bottle,4,0,,500,,0,,1,0xFFFFFFFF,63,2,4,,40,1,0,{ bonus bFlee,12+getrefine(); bonus bHit,getrefine(); },{},{}
-20820,Elemental_Cape,Elemental Cape,4,0,,500,,12,,0,0x00010000,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5; },{},{}
-20821,Golden_Scarf,Golden Scarf,4,0,,500,,12,,0,0x20000000,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; } },{},{}
-20822,Mine_Worker's_Backpack,Mine Worker's Backpack,4,0,,600,,16,,0,0x00000400,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20; },{},{}
-20823,Para_Team_Manteau100,Awakened Eden Group Manteau I,4,0,,0,,20,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ 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; } } },{},{}
-20824,Para_Team_Manteau130,Awakened Eden Group Manteau II,4,0,,0,,25,,0,0xFFFFFFFF,63,2,4,,130,1,0,{ 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; } } },{},{}
-20825,Para_Team_Manteau160,Awakened Eden Group Manteau III,4,0,,0,,30,,0,0xFFFFFFFF,63,2,4,,160,1,0,{ 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; } } },{},{}
-20826,Angel_Feather,Angel Feather,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,1,1,18,{},{},{}
-20830,Wings_of_Seraph,Wings of Seraph,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,1,1,8,{},{},{}
-20831,Adventurer's_Spirit,Adventurer's Spirit,4,1000,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10); },{},{}
-20834,Drifter's_Cape,Drifter's Cape,4,0,,400,,0,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus; },{},{}
-20836,Skin_of_Lindwyrm,Skin of Lindwyrm,4,1000,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ 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,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; } } } },{},{}
-20837,Skin_of_Gwiber,Skin of Gwiber,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ 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; } } } },{},{}
-20838,Illusion_Muffler,Illusion Muffler,4,20,,400,,8,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); },{},{}
-20840,Illusion_Ancient_Cape,Illusion Ancient Cape,4,0,,600,,18,,1,0xFFFFFFFE,63,2,4,,100,1,0,{ .@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val); },{},{}
-20845,Maracco_Skin,Malach's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ 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; } } } },{},{}
-20846,Temporal_Manteau,Temporal Manteau,4,20,,400,,38,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{}
-20847,Illusion_Survivor_Manteau,Illusion Survivor Manteau,4,0,,550,,30,,1,0x00810204,63,2,4,,130,1,0,{ bonus bVit,15; },{},{}
-20856,YSF01_Manteau,YSF01 Manteau,4,0,,750,,32,,1,0xFFFFFFFF,63,2,4,,170,1,0,{ .@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; } },{},{}
-20859,Phreeoni_Wings,Phreeoni Wings,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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; },{},{}
-20860,Battle_Surcoat,Battle Surcoat,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,70,1,0,{ .@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; } },{},{}
-20863,Menblatt's_Wings,Menblatt's Wings,4,20,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; },{},{}
-20922,Leviathan_Muffler,Leviathan Muffler,4,20,,200,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100; },{},{}
-20923,Illusion_Goibne_Spaulders,Illusion Goibne Spaulders,4,0,,1000,,47,,1,0xFFFFFFFE,63,2,4,,130,1,0,{ .@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; } },{},{}
-20925,Commander_Manteau2,Commander Manteau,4,20,,300,,20,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player,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; } },{},{}
-20931,Prism_Rangers_Scarf,Prism Rangers Scarf,4,20,,300,,12,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,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; },{},{ sc_end SC_UNLIMIT; }
-20932,Old_Morroc_Shawl,Old Morocc Shawl,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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; },{},{}
-20933,Illusion_Engine_wing_A-type,Illusion Engine wing A-type,4,0,,900,,50,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; } },{},{}
-20934,Illusion_Engine_wing_B-type,Illusion Engine wing B-type,4,0,,900,,50,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; } },{},{}
-20935,Lava_Leather_Manteau,Lava Leather Manteau,4,20,,400,,50,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3; },{},{}
-20936,Lava_Leather_Muffler,Lava Leather Muffler,4,20,,350,,35,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ 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; },{},{}
-20937,Lava_Leather_Hood,Lava Leather Hood,4,20,,300,,25,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ 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; },{},{}
-20941,Phoenix_Muffler,Phoenix Muffler,4,20,,200,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100; },{},{}
-20942,Manteau_Of_Guardsman,Manteau Of Guardsman,4,20,,500,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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,5; },{},{}
-20943,Geffen_Magic_Muffler,Geffen Magic Muffler,4,20,,550,,20,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@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; },{},{}
-20944,Anti_Magic_Manteau,Anti Magic Manteau,4,20,,750,,23,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@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; } },{},{}
-20948,Illusion_Morpheus's_Shawl,Illusion Morpheus's Shawl,4,20,,600,,8,,1,0xFFFFFFFF,63,2,4,,130,1,0,{ bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; } },{},{}
-20949,Ladon_Skin,Ladon's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bSubRace,RC_Player,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,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; } },{},{}
-20952,Nameless_Assassin_Muffler,Nameless Assassin's Muffler,4,20,,100,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player,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; },{},{}
-20962,Typhon_Skin,Typhon's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bSubRace,RC_Player,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; } },{},{}
-20969,Rainbow_Muffler,Rainbow Muffler,4,20,,300,,12,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@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,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; } },{},{}
-//===================================================================
-// More 2-Handed Swords
-//===================================================================
-21000,Upg_Twohand_Sword,Upg Two-Handed Sword,5,20,,1500,100,,1,1,0x00004082,63,2,34,3,1,1,3,{ .@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{}
-21001,Velum_Claymore,Vellum Claymore,5,20,,3500,260,,1,0,0x00004082,63,2,34,4,95,1,3,{ bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_Player,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; } },{},{}
-21002,Velum_Katzbalger,Vellum Katzbalger,5,20,,2500,100,,1,0,0x00004082,63,2,34,4,95,1,3,{ bonus3 bHPVanishRaceRate,RC_Player,1000,8; },{},{}
-21003,Muramasa_,Muramasa,5,20,,1000,155,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; },{},{}
-21004,Alca_Bringer_,Alca Bringer,5,20,,3400,280,,2,2,0x00004082,63,2,34,3,100,1,3,{},{},{}
-21005,Metal_Two_Hand_Sword,Metal Two Hand Sword,5,20,,0,95,,1,1,0x00004082,63,2,34,3,1,1,3,{ .@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{}
-21006,TE_Woe_Two_Hand_Sword,TE Woe Two Hand Sword,5,0,,0,150,,1,0,0x00004082,63,2,34,3,40,1,3,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{}
-21007,Heavy_Sword,Heavy Greatsword,5,20,,2500,330,,1,1,0x00004082,63,2,34,1,150,1,3,{ bonus bStr,20; },{},{}
-21008,Small_Karasuma,Small Karasuma,5,20,,1000,170,,1,2,0x00004082,63,2,34,4,50,1,3,{ bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; },{},{}
-21009,Thanos_Great_Sword,Thanos Great Sword,5,10,,1300,280:120,,1,1,0x00004082,56,2,34,4,120,1,3,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-21010,Tw_Sword_Of_Evil_Slayer,Evil Slayer Slaher Sword,5,0,,2000,225,,1,1,0x00004082,63,2,34,3,100,1,3,{ 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; } },{},{}
-21011,Giant_Blade,Gigantic Blade,5,10,,5000,300,,1,1,0x00004082,56,2,34,4,130,1,3,{ bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; } },{},{}
-21012,Some_Wizard_MagicSword,Some Wizard MagicSword,5,0,,2200,200:150,,1,2,0x00000080,56,2,34,4,110,1,3,{},{},{}
-21013,Hetairoi_Sword,Hetairoi Sword,5,0,,2200,210,,1,2,0x00000080,56,2,34,4,110,1,3,{ bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25; },{},{}
-21014,Infinity_Two-Handed_Sword,Infinity Two-Handed Sword,5,20,,500,230,,1,1,0x00004082,56,2,34,4,100,1,3,{},{},{}
-21015,Crimson_Two-Handed_Sword,Crimson Two-Handed Sword,5,20,,1700,170,,1,2,0x00004082,63,2,34,3,70,1,3,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{}
-21016,Two_Handed_Sword_of_Vicious_Mind,Two-Handed Sword of Vicious Mind,5,20,,2200,220,,1,1,0x00004082,63,2,34,4,160,1,3,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-21018,Lindy_Hop,Lindy Hop,5,20,,3400,340,,1,2,0x00004082,56,2,34,4,170,1,3,{ .@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon; },{},{}
-21019,Onimaru,Onimaru,5,0,,4200,75,,1,2,0x00000080,56,2,34,4,130,1,3,{ .@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; },{},{}
-21039,Royal_Knight's_Broadsword,Royal Knight's Broadsword,5,20,,4000,280,,1,2,0x00004082,56,2,34,4,175,1,3,{ .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon; },{},{}
-21047,Beam_Claymor-OS,Beam Claymor-OS,5,20,,1800,250,,1,2,0x00004082,56,2,34,4,130,1,3,{ .@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; } } } },{},{}
-21050,Illusion_Tae_Goo_Lyeon,Illusion Tae Goo Lyeon,5,20,,2000,250,,1,2,0x00004082,56,2,34,4,120,1,3,{ .@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; } } } },{},{}
-21051,Volar,Volar,5,20,,2800,280,,1,2,0x00000080,56,2,34,4,170,1,3,{ .@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; } },{},{}
-21052,Vernan,Vernan,5,20,,6500,300,,1,2,0x00000080,56,2,34,4,170,1,3,{ .@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; } },{},{}
-//===================================================================
-// New Shoes
-//===================================================================
-22000,Temporal_Str_Boots,Temporal Boots Of Strength,4,20,,600,,25,,0,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22001,Temporal_Int_Boots,Temporal Boots Of Intelligence,4,20,,600,,20,,0,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22002,Temporal_Agi_Boots,Temporal Boots Of Agility,4,20,,600,,25,,0,0xFFFFFFFF,56,2,64,,99,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; },{},{}
-22003,Temporal_Vit_Boots,Temporal Boots Of Vitality,4,20,,600,,25,,0,0xFFFFFFFF,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{}
-22004,Temporal_Dex_Boots,Temporal Boots Of Dexterity,4,20,,600,,25,,0,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; } },{},{}
-22005,Temporal_Luk_Boots,Temporal Boots Of Luck,4,20,,600,,20,,0,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22006,Temporal_Str_Boots_,Temporal Boots Of Strength,4,20,,600,,25,,1,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22007,Temporal_Vit_Boots_,Temporal Boots Of Vitality,4,20,,600,,25,,1,0xFFFFFFFF,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{}
-22008,Temporal_Dex_Boots_,Temporal Boots Of Dexterity,4,20,,600,,25,,1,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; } },{},{}
-22009,Temporal_Int_Boots_,Temporal Boots Of Intelligence,4,20,,600,,20,,1,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22010,Temporal_Agi_Boots_,Temporal Boots Of Agility,4,20,,600,,25,,1,0xFFFFFFFF,56,2,64,,99,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; },{},{}
-22011,Temporal_Luk_Boots_,Temporal Boots Of Luck,4,20,,600,,20,,1,0xFFFFFFFF,56,2,64,,99,1,,{ .@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; },{},{}
-22012,Mana_Boots,Mana Boots,4,0,,0,,,,0,0xFFFFFFFF,63,2,64,,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{}
-22014,Enhanced_Variant_Shoes,Enhanced Variant Shoes,4,20,,500,,13,,1,0x7CCFDF80,63,2,64,,85,1,0,{ bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; },{},{}
-22015,Impr_Angel's_Arrival,Advanced Angel's Reincarnation,4,10000,,300,,8,,1,0x00000001,63,2,64,,99,1,0,{ bonus bMaxHP,500; bonus bMaxSP,100; },{},{}
-22016,Assassin's_Shoes,Assassin's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_DemiHuman,5+getrefine(); },{},{}
-22017,Fisherman_Shoes,Fisherman's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_Fish,5+getrefine(); },{},{}
-22018,Shoes_Of_Wise_Man,Shoes Of Wise Man,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,50,1,,{ .@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } },{},{}
-22032,Exorcist_Shoes,Exorcist's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_Demon,5+getrefine(); },{},{}
-22033,Boots_Of_Gray,Boots of Gray,4,20,,400,,25,,1,0xFFFFFFFF,56,2,64,,120,1,0,{ bonus2 bSubEle,Ele_Holy,2+getrefine()/3; },{},{}
-22034,Crimson_Gaiter,Crimson Gaiter,4,0,,500,,10,,0,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } },{},{}
-22035,Vet_Nepen_Heel,Heoric Nepenthes Shoes,4,10,,300,,10,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@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; },{},{}
-22036,Vet_SliverFox_Boots,Heroic Silver Fox Leather Boots,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i; },{},{}
-22037,Vet_Ungo_Boots,Heroic Ungoliant Upgrade Boots,4,10,,300,,10,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i; },{},{}
-22042,Talaria_Shoes,Talaria Shoes,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bAgi,2; bonus bAspd,1; bonus bUnbreakableShoes; },{},{}
-22043,Supplement_Part_Agi,Supplement Part Agi,4,25000,,350,,25,,1,0x00000400,56,2,64,,100,1,,{ bonus bAspdRate,5+(getrefine()/4); },{},{}
-22044,Upgrade_Part_Booster,Reinforced Parts - Booster,4,10,,1000,,23,,1,0x00000400,56,2,64,,100,1,,{ bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;} },{},{}
-22045,Beach_Sandals,Summer Sandals,4,10,,200,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; },{},{}
-22046,Airship_Boots,Airship's Boots,4,10,,0,,26,,0,0xFFFFFFFF,63,2,64,,125,0,,{ bonus bAgi,1; bonus bAspdRate,10; },{},{}
-22047,Felock_Boots,Felrock's Boots,4,10,,250,,13,,0,0xFFFFFFFF,63,2,64,,125,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; } },{},{}
-22059,Aegir_Shoes,Aegir Shoes,4,10,,300,,13,,1,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; },{},{}
-22064,Thorny_Shoes,Thorny Shoes,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,64,,,1,,{ bonus bShortWeaponDamageReturn,getrefine()/2; },{},{}
-22067,Witch_Shoes,Shoe of Witch,4,10,,400,,10,,0,0xFFFFFFFE,63,2,64,,1,1,,{ skill "ALL_CATCRY",1; },{},{}
-22069,Lian_Shoes,Lian Shoes,4,0,,250,,12,,1,0xFFFFFFFF,63,2,64,,90,1,,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; },{},{}
-22072,Hikingboots,Hikingboots,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; },{},{}
-22075,Rift_Shoes,Rift Shoes,4,20,,250,,12,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; },{},{}
-22076,Wooden_Slipper,Wooden Slipper,4,20,,50,,10,,1,0x80000000,7,2,64,,9,1,,{ bonus2 bHPRegenRate,2,10000; },{},{}
-22077,Red_Eco-Friendly_Shoes,Red Eco-Friendly Shoes,4,20,,100,,20,,1,0x80000000,7,2,64,,18,1,,{ bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000; },{},{}
-22078,Unity_STR_Boots,Unity STR Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; } },{},{}
-22079,Unity_AGI_Boots,Unity AGI Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; } },{},{}
-22080,Unity_DEX_Boots,Unity DEX Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; } },{},{}
-22081,Unity_INT_Boots,Unity INT Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; } },{},{}
-22082,Polyhedron_Shoes,Polyhedron Shoes,4,0,,500,,12,,1,0xFFFFFFFF,63,2,64,,90,1,,{ .@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; } },{},{}
-22083,Private_Doram_Shoes,Private Doram Shoes,4,20,,500,,25,,1,0x80000000,7,2,64,,100,1,,{ bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10; },{},{}
-22084,Luxury_Doram_Shoes,Luxury Doram Shoes,4,20,,600,,30,,1,0x80000000,7,2,64,,140,1,,{ bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r; },{},{}
-22085,Elegant_Doram_Shoes,Elegant Doram Shoes,4,20,,700,,35,,1,0x80000000,7,2,64,,175,1,,{ 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; },{},{}
-22089,Crimson_Gaiter_,Crimson Gaiter,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } },{},{}
-22101,Angel_Poring_Boots,Angel Poring Boots,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,1,1,,{ bonus bAllStats,1; skill "AL_HEAL",1; },{},{}
-22103,Excelion_Leg,Excelion Leg,4,0,,500,,13,,0,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; },{},{}
-22104,Pororoca_Shoes,Pororoca Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ 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; } },{},{}
-22106,Giant_Boots,Giant Boots,4,0,,500,,13,,1,0xFFFFFFFF,63,2,64,,1,1,,{ bonus2 bSubRace,RC_All,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus bDefRate,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus bDefRate,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } },{},{}
-22107,Modified_Str_Boots,Modified Str Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22108,Modified_Int_Boots,Modified Int Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22109,Modified_Agi_Boots,Modified Agi Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,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; },{},{}
-22110,Modified_Vit_Boots,Modified Vit Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{}
-22111,Modified_Dex_Boots,Modified Dex Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@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; } },{},{}
-22112,Modified_Luk_Boots,Modified Luk Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22113,Modified_Str_Boots_,Modified Str Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22114,Modified_Int_Boots_,Modified Int Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22115,Modified_Agi_Boots_,Modified Agi Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,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; },{},{}
-22116,Modified_Vit_Boots_,Modified Vit Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{}
-22117,Modified_Dex_Boots_,Modified Dex Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@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; } },{},{}
-22118,Modified_Luk_Boots_,Modified Luk Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@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; },{},{}
-22120,Shoes_of_Punishment,Shoes of Punishment,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ 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; } },{},{}
-22122,Para_Team_Boots100,Awakened Eden Group Boots I,4,0,,0,,22,,0,0xFFFFFFFF,63,2,64,,100,1,,{ bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14; },{},{}
-22123,Para_Team_Boots115,Awakened Eden Group Boots II,4,0,,0,,25,,0,0xFFFFFFFF,63,2,64,,115,1,,{ bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18; },{},{}
-22124,Para_Team_Boots130,Awakened Eden Group Boots III,4,0,,0,,27,,0,0xFFFFFFFF,63,2,64,,130,1,,{ bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18; },{},{}
-22125,Para_Team_Boots145,Awakened Eden Group Boots IV,4,0,,0,,30,,0,0xFFFFFFFF,63,2,64,,145,1,,{ bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; },{},{}
-22126,Para_Team_Boots160,Awakened Eden Group Boots V,4,0,,0,,30,,0,0xFFFFFFFF,63,2,64,,160,1,,{ bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5; },{},{}
-22131,Spurred_Boots,Spurred Boots,4,0,,500,,0,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */ },{},{}
-22133,Illusion_Shoes,Illusion Shoes,4,20,,400,,10,,1,0xFFFFFFFE,63,2,64,,99,1,0,{ .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); },{},{}
-22134,Enforcer_Shoes,Enforcer Shoes,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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); },{},{}
-22138,Devil_Worshipper_Shoes,Devil Worshipper Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ 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; } },{},{}
-22141,YSF01_Greave,YSF01 Greave,4,0,,1300,,25,,1,0xFFFFFFFF,63,2,64,,170,1,0,{ .@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; } },{},{}
-22145,Tengu's_Shoes,Tengu's Shoes,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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,.@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"); },{},{}
-22170,Survivor's_Shoes,Survivor's Shoes,4,10,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; },{},{}
-22171,Ancient_Hero_Boots,Ancient Hero Boots,4,20,,600,,15,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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; } },{},{}
-22172,Gray_Wing_Boots,Gray Wing Boots,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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; } },{},{}
-22189,Pilgrim_Shoes,Pilgrim Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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,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; } },{},{}
-22190,Illusion_Boots,Illusion Boots,4,0,,600,,16,,1,0x416E5CEA,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; },{},{}
-22192,Illusion_Goibne's_Greaves,Illusion Goibne's Greaves,4,0,,1200,,42,,1,0xFFFFFFFE,63,2,64,,130,1,0,{ .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } } },{},{}
-22195,Booster_Shoes,Booster Shoes,4,20,,800,,30,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player,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; } },{},{}
-22196,Illusion_Leg_A-type,Illusion Leg A-type,4,20,,500,,20,,1,0xFFFFFFFF,63,2,64,,130,1,,{ .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; } },{},{}
-22197,Illusion_Leg_B-type,Illusion Leg B-type,4,20,,500,,20,,1,0xFFFFFFFF,63,2,64,,130,1,,{ .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } },{},{}
-22198,Traveler_Shoes,Traveler Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ 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; } },{},{}
-22199,Lava_Leather_Boots,Lava Leather Boots,4,20,,600,,50,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15; },{},{}
-22200,Lava_Leather_Shoes,Lava Leather Shoes,4,20,,600,,50,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5; },{},{}
-22201,Lava_Leather_Sandals,Lava Leather Sandals,4,20,,500,,25,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15; },{},{}
-22207,Imperial_Boots,Imperial Boots,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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; } },{},{}
-22210,Fluffy_Fish_Shoes,Fluffy Fish Shoes,4,20,,100,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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"); },{},{}
-22214,Authority_Sandals,Authority Sandals,4,20,,500,,10,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@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; },{},{}
-//===================================================================
-// New Usable items
-//===================================================================
-22508,Para_Team_Mark_,Eden Group Mark,2,0,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ warp "moc_para01",171,115; },{},{}
-22507,ShabbyOldScroll,Old Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_22507"; },{},{}
-22510,King_Wolf_Scroll,King Wolf Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; },{},{}
-22511,Fenrir_Card__,Fenrir's Power Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bMatk,25; bonus bFixedCastRate,-50;",300,1025; },{},{}
-22513,King_of_Gift_Box,King of Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1; },{},{}
-22514,Candy_Holder,Candy Holder,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); },{},{}
-22515,Twisted_Key_of_Time,Twisted Key of Time,3,10,,300,,,,,,,,,,,,,{},{},{}
-22516,Dark_Red_Clot,Black As Night Piece,3,10,,0,,,,,,,,,,,,,{},{},{}
-22517,Loki_Summon_Scroll,Rocker Summoning Scroll,3,10,,0,,,,,,,,,,,,,{},{},{}
-22518,Idn_Wisdom_Egg,Egg Of Wisdom,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Idn_Wisdom_Egg); },{},{}
-22519,Pc_Stop_Cancel,Stops Buff,3,10,,0,,,,,,,,,,,,,{},{},{}
-22520,Stops_Buff_Reset,Stops Buff Reset,3,10,,0,,,,,,,,,,,,,{},{},{}
-22521,Level_Up_Box_,Level Up Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,80,,,{ /*TODO*/ },{},{}
-22522,Level_Up_Box100,Level Up Box(100),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,100,,,{ getgroupitem(IG_Level_Up_Box100); },{},{}
-22523,Level_Up_Box120,Level Up Box(120),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,120,,,{ getgroupitem(IG_Level_Up_Box120); },{},{}
-22524,Level_Up_Box130,Level Up Box(130),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,130,,,{ getgroupitem(IG_Level_Up_Box130); },{},{}
-22525,Level_Up_Box140,Level Up Box(140),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,140,,,{ getgroupitem(IG_Level_Up_Box140); },{},{}
-22526,Level_Up_Box150,Level Up Box(150),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,150,,,{ getgroupitem(IG_Level_Up_Box150); },{},{}
-22527,Level_Up_Box160,Level Up Box(160),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,160,,,{ getgroupitem(IG_Level_Up_Box160); },{},{}
-22528,Pet_Exchange_Ticket_Box,Pet Exchange Ticket Box,18,10,,20,,,,,,,,,,,,,{ /*TODO*/ },{},{}
-22530,Christmas_Box,Christmas Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Christmas_Box); },{},{}
-22531,Special_Christmas_Box,Special Christmas Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Special_Christmas_Box); },{},{}
-22532,Santa_Gift,Santa Gift,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Santa_Gift); },{},{}
-22533,New_Year_Gift_Box,New Year Gift Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO*/ },{},{}
-22534,Closedmind_Box,Closed Mind Box,18,10,,1000,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sealed_Mind_Box); },{},{}
-22535,WorkerScroll_A,Scroll Summoning Workers(Male),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22536,WorkerScroll_B,Scroll Summoning Workers(Female),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22537,PrizeOfHero,Prize Of Hero,2,0,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getrandgroupitem(IG_PrizeOfHero,1); },{},{}
-22538,Hanbok_bag,Hanbok bag,2,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HANBOK,600000,0; },{},{}
-22540,Runstone_Lux,Lux Anima Runestone,11,2,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_LUXANIMA",1; },{},{}
-22541,PC_Room_Coupon_Box_VI,PC Room Coupon Box VI,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22542,Center_Potion_B,Concentration Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{}
-22543,Berserk_Potion_B,Berserk Potion,2,10,,200,,,,0,0x6,63,2,,,,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{}
-22544,Awakening_Potion_B,Awakening Potion,2,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{}
-22545,Speed_Potion,Speed Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{}
-22546,Slow_Potion,Slow Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SLOWDOWN,5000,100; },{},{}
-22547,Anti-Payne_Moment,Anti-Payne Moment,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22548,Wed_Cursed,Wed Cursed,2,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22549,Poison_Bottle_,Poison Bottle,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ 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; },{},{}
-22550,Cookie_Bag_B,Sweets Pocket,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22551,Sesame_Pastry_B,Teacake,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22552,Honey_Pastry_B,Fried Pastry,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22553,Rainbow_Cake_B,Rainbow Bread,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22554,First_Aid_Box,First Aid Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); },{},{}
-22555,Gourmet_Chocolate,Gourmet Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22556,Luxury_Chocolate,Luxury Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22557,Masterpieces_of_Artisan_Chocolate,Masterpieces of Artisan Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22558,Lucky_Bag,Lucky Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Lucky_Bag,1); },{},{}
-22559,Mock_Strawberry,Mock Strawberry,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; itemskill "SM_ENDURE",3; },{},{}
-22563,Lucky_Bag_Of_New_Era,Lucky Bag Of New Era,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22566,Frost_Crystal,Last Year's Frost,3,20,,0,,,,,,,,,,,,,{},{},{}
-22567,Squad_Prize,Expedition Award Box,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22568,Nyd_Summon_Scroll,Nidhoggur Summon Scroll,0,20,,100,,,,,0xFFFFFFFF,63,,2,,,,,{},{},{}
-22569,Gift_New_start,Gift New start,18,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22571,Easter_Egg,Easter Egg,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22589,Savage_Ora,Savage Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22590,Grand_Peco_Ora,Grand Peco Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22591,Dest_Wolf_Ora,Desert Wolf Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22592,Happy_Call_Box,Happy Call Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22605,Gingerbread2,Ginger Bread,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22610,New_Beginnings_Box,New Beginnings Box,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12803,1; getitem 12802,1; getitem 12809,1; },{},{}
-22611,Packing_Envelope,Packed Envelope,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22612,Corrupt_Reagents,Corrupt Reagents,11,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22613,Contaminated_Reagents,Contaminated Reagents,11,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22614,Premium_Manual,Premium Manual,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200; },{},{}
-22617,Clear_Box_S,Clear Box S,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22618,Clear_Box_A,Clear Box A,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22619,Ghost_Summon_Scroll,Ghost Scroll,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* mercenary_create M_E_DEVILING,1800000; */ },{},{}
-22620,Memorial_Box,Box Of Memories,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22621,Squid_Bbq,Barbecued Squid,2,5000,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5; },{},{}
-22623,New_Start_Box,New Start Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12803,1; getitem 12802,1; getitem 12809,1; },{},{}
-22624,Riesen_Bretzel,Riesen Bretzel,0,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{}
-22625,Oktoberfest_Bag,Oktoberfest Bag,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_OKTOBERFEST,600000,0; },{},{}
-22626,January_Gift_Box,January Gift Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 19052,604800; },{},{}
-22627,February_Gift_Box,February Gift Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12105,2; },{},{}
-22628,Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1; },{},{}
-22629,Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1; },{},{}
-22630,Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1; },{},{}
-22631,Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{}
-22640,17173_Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1; },{},{}
-22641,17173_Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1; },{},{}
-22642,17173_Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1; },{},{}
-22643,17173_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{}
-22644,S_Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1; },{},{}
-22645,S_Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1; },{},{}
-22646,S_Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1; },{},{}
-22647,S_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{}
-22648,Angeling_Package,Angel Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1; },{},{}
-22649,Deviling_Package,Devil Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1; },{},{}
-22652,Briliant_Hat_Box,Brilliant Hat Box,2,10,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22653,Wet_Card_Album,Wet Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{}
-22654,Golden_Seal_Card,Golden Seal Card,3,20,,50,,,,,,,,,,,,,{},{},{}
-22657,Honey_Songpyun_,Honey Songpyun,0,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,0; },{},{}
-22659,Pig_Steamed_Ribs,Pig Steamed Ribs,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180; },{},{}
-22658,Cow_Steamed_Ribs,Cow Steamed Ribs,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180; },{},{}
-22669,HALLOWEEN_G_BOX,Halloween Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_HALLOWEEN_G_BOX); },{},{}
-22670,DARK_INVITATION,Invitation of Darkness,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@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; } },{},{}
-22671,March_Gift_Box,March Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{}
-22672,April_Gift_Box,April Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{}
-22673,May_Gift_Box,May Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22777,2; },{},{}
-22674,June_Gift_Box,June Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*1 Potion Box*/},{},{}
-22676,Hangul_Day_Event_Box,Hangul Day Event Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,0,,,{ getitem 22675,10; getitem 607,9; },{},{}
-22675,Mysterious_Scroll,Mysterious Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,3600000,30; },{},{}
-22679,Chest_Of_Death,Death's Chest,2,0,,0,,,,0,0xFFFFFFFF,63,2,,,170,,,{ getitem rand(6814,6819),1; },{},{}
-22685,Solo_Christmas_Gift,Single Union Christmas Gift,2,0,,0,,,,,0xFFFFFFFF,63,2,,,0,,,{ getgroupitem(IG_Solo_Christmas_Gift); },{},{}
-22686,Solo_Cookie,Single Cookie,0,0,,50,,,,,0xFFFFFFFF,63,2,,,0,,,{ percentheal 5,5; },{},{}
-22687,Pieces_Of_Sentiment,Sentimental Fragment,11,0,,1,,,,0,0xFFFFFFFF,63,2,,,100,,,{ callfunc("F_Pieces_Of_Sentiment"); },{},{}
-22691,Record_Fragment1,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",98,143; if (callfunc("F_time_limit_recorder") == 1) { recorder_quest_type = 1; } },{},{}
-22692,Record_Fragment2,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",45,276; if (callfunc("F_time_limit_recorder") == 1) { recorder_quest_type = 2; } },{},{}
-22693,Record_Fragment3,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",217,346; if (callfunc("F_time_limit_recorder") == 1) { recorder_quest_type = 3; } },{},{}
-22694,Record_Fragment4,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",273,235; if (callfunc("F_time_limit_recorder") == 1) { recorder_quest_type = 4; } },{},{}
-22695,Record_Fragment5,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",275,290; if (callfunc("F_time_limit_recorder") == 1) { recorder_quest_type = 5; } },{},{}
-22699,Test_Reagent,Test Reagent,2,,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0; },{},{}
-22700,Jumping_Support_Box,Jumping Support Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/ },{},{}
-22702,STR_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bStr,-1,22702; },{},{}
-22703,AGI_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bAgi,-1,22703; },{},{}
-22704,VIT_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bVit,-1,22704; },{},{}
-22705,INT_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bInt,-1,22705; },{},{}
-22706,DEX_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bDex,-1,22706; },{},{}
-22707,LUK_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bLuk,-1,22707; },{},{}
-22708,Pitapat_Box,Thrilling Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*No clue the random item yet*/ },{},{}
-22717,Wanderer_Ball,Wanderer Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22718,Lude_Ball,Lude Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22719,Tatacho_Ball,Tatacho Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22720,Novus_Ball,Novus Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{}
-22721,?_Box,? Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*No clue the random item yet*/ },{},{}
-22734,Revolution_Quiz_Box,Revolution Quiz Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/ },{},{}
-22735,Sealed_Moonlight_Flower_Scroll,Sealed Moonlight Flower Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; },{},{}
-22736,July_Gift_Box,July Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 20212,1; },{},{}
-22737,Bullet_Case_Blood_,Bloody Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13222,500; },{},{}
-22738,Bullet_Case_Silver_,Silver Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13221,500; },{},{}
-22739,Sphere_Case_Wind_,Lightning Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13224,500; },{},{}
-22740,Sphere_Case_Darkness_,Blind Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13226,500; },{},{}
-22741,Sphere_Case_Poison_,Poison Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13225,500; },{},{}
-22742,Sphere_Case_Water_,Freezing Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13227,500; },{},{}
-22743,Sphere_Case_Fire_,Flare Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13223,500; },{},{}
-22744,Bullet_Case_AP,Armor-Piercing Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13215,500; },{},{}
-22745,Bullet_Case_Blaze,Incandescence Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13216,500; },{},{}
-22746,Bullet_Case_Fleeze,Glaciation Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13217,500; },{},{}
-22747,Bullet_Case_Electric,Dengeki Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13218,500; },{},{}
-22748,Bullet_Case_Stone,Hearthstone Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13219,500; },{},{}
-22749,Sanctified_Bullet_Case,Purification Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13220,500; },{},{}
-22750,Trans_Scroll_Horn_Scaraba,Transformation Scroll(Horn Scaraba),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 2161,1200000,SC_MTF_ASPD2,2,10; },{},{}
-22751,Trans_Scroll_Wanderer,Transformation Scroll(Wanderer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1208,1200000,SC_MTF_ASPD2,2,10; },{},{}
-22752,Trans_Scroll_Gazeti,Transformation Scroll(Gazeti),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1778,1200000,SC_MTF_RANGEATK2,30; },{},{}
-22753,Trans_Scroll_Kobold_Archer,Transformation Scroll(Kobold Archer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1282,1200000,SC_MTF_RANGEATK2,30; },{},{}
-22754,Trans_Scroll_Necromancer,Transformation Scroll(Necromancer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1870,1200000,SC_MTF_RANGEATK2,30; },{},{}
-22755,Trans_Scroll_Wind_Ghost,Transformation Scroll(Wind Ghost),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1263,1200000,SC_MTF_MATK2,50; },{},{}
-22756,August_Gift_Box,August Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{}
-22757,Collection_Of_Scrolls_Magical_Transformation,Collection Of Scrolls Magical Transformation,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22755,1; getitem 22754,1; },{},{}
-22758,Collection_Of_Scrolls_Shooting_Transformation,Collection Of Scrolls Shooting Transformation,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22753,1; getitem 22752,1; },{},{}
-22759,Collection_Of_Scrolls_Attack_Speed_Transformation,Collection Of Scrolls Attack Speed Transformation,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22751,1; getitem 22750,1; },{},{}
-22760,Argiope_Transportin,Argiope Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{}
-22761,Luciola_Vespa_Transportin,Luciola Vespa Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{}
-22762,Centipede_Transportin,Centipede Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{}
-22764,Pet_Exchange_Ticket_Box_,Pet Exchange Ticket Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,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; },{},{}
-22770,Shark_Skewer,Shark Skewer,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{}
-22771,Bluefin_Tuna_Skewer,Bluefin Tuna Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCATKRATE,5000,30; },{},{}
-22772,Sea_Bream_Skewer,Sea Bream Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCMATKRATE,5000,30; },{},{}
-22773,Piranha_Skewer,Piranha Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,5000,5; },{},{}
-22774,Salmon_Skewer,Salmon Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,5000,25; },{},{}
-22775,Eels_Skewer,Eels Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEF_RATE,5000,30; },{},{}
-22776,Carp_Skewer,Carp Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MDEF_RATE,5000,30; },{},{}
-22777,Gift_Buff_Set,Gift Buff Set,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Gift_Buff_Set); },{},{}
-22781,PC_Bang_Normal_Box,PC Bang Normal Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,20; /*No Info*/},{},{}
-22782,PC_Bang_Wooden_Box,PC Bang Wooden Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,30; /*No Info*/},{},{}
-22783,PC_Bang_Golden_Box,PC Bang Golden Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,1; getitem 985,10; /*No Info*/},{},{}
-22784,PC_Bang_Platinum_Box,PC Bang Platinum Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/},{},{}
-22979,C_Battle_Gum_2,[Sale] Battle Manual and Bubble Gum,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100; },{},{}
-22802,Safe_to_6_Equipment_Certificate,Safe to 6 Equipment Certificate,3,10,,10,,,,,,,,,,,,,{},{},{}
-22808,Special_Gift_Box,Special Gift Box,2,10,,100,,,,,,,,,,,,,{},{},{}
-22812,Sealed_Dracula_Scroll,Sealed Dracula Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1; },{},{}
-22813,Bearer's_Shadow_Box,Bearer's Shadow Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1; },{},{}
-22814,Cat_Hand_Ticket,Cat Hand Ticket,3,10,,0,,,,,,,,,,,,,{},{},{}
-22822,Summer_Vacation_Costumes,Summer Vacation Costumes,2,,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ sc_start SC_DRESSUP,600000,1; },{},{}
-22823,Sealed_Sniper_Scroll,Sealed Sniper Scroll,2,10,,10,,,,,,,,,,,,,{ /*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/ },{},{}
-22826,Enchant_Stone_Box4,Costume Enchantment Stone Box 4,2,10,,10,,,,,,,,,,,,,{},{},{}
-22827,Shadow_Cube,Shadow Cube,2,10,,10,,,,,,,,,,,,,{/*No Info*/},{},{}
-22828,Sealed_Album_Scroll,Sealed Album Scroll,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1; },{},{}
-22829,Sealed_Card_Album,Sealed Card Album,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1; },{},{}
-22837,Integer_Time,Integer Time,2,10,,50,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 673,5; },{},{}
-22838,Something_Candy_Holder,Something Candy Holders,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Something_Candy_Holder); },{},{}
-22842,Sealed_Dracula_Scroll_II,Sealed Dracula Scroll II,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1; },{},{}
-22843,Superstar_Snack,Superstar Snack,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300; },{},{}
-22844,Sealed_Dracula_Card_Album,Sealed Dracula Card Album,2,10,,10,,,,,,,,,,,,,{/*No Info*/},{},{}
-22845,Sealed_Fortune_Egg,Sealed Fortune Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1; },{},{}
-22846,Sealed_Dracula_Card_,Sealed Dracula Card,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus2 bSPDrainRate,50,5; }",300; },{},{}
-22847,Prontera_Medal,Prontera Medal,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prontera",159,192; /*No coord info*/ },{},{}
-22848,Prison_Key,Prison Key,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prt_prison",0,0; /*No coord info*/ },{},{}
-22849,Prontera_Time_Crystal,Prontera Time Crystal,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prt_q",155,27; },{},{}
-22850,January_Gift_Box_,January Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 19052,604800; },{},{}
-22851,February_Gift_Box_,February Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12105,2; },{},{}
-22852,March_Gift_Box_,March Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{}
-22853,April_Gift_Box_,April Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{}
-22854,May_Gift_Box_,May Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22777,2; },{},{}
-22855,June_Gift_Box_,June Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*1 Potion Box*/},{},{}
-22856,July_Gift_Box_,July Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 20212,1; },{},{}
-22857,August_Gift_Box_,August Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{}
-22858,September_Gift_Box,September Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{}
-22859,October_Gift_Box,October Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12529,5; },{},{}
-22860,November_Gift_Box,November Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{}
-22861,December_Gift_Box,December Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22869,10; },{},{}
-22868,Enchant_Stone_Box5,Costume Enchantment Stone Box 5,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6908,6943,6944,6945,6946,6947,6948,6949,6950,6951),1; },{},{}
-22869,Lucky_Roulette_Tickets,Lucky Roulette Ticket,2,10,,100,,,,,0xFFFFFFFF,63,2,,,50,,,{ RouletteBronze++; },{},{}
-22870,Xmas_Package_14,Christmas Package,3,0,,10,,,,0,,,,,,,,,{},{},{}
-22873,Sealed_Beelzebub_Scroll_II,Sealed Beelzebub Scroll II,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1; },{},{}
-22874,Sealed_Beelzebub_Card_Album,Sealed Beelzebub Card Album,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{}
-22875,Sealed_Beelzebub_Card,Sealed Beelzebub Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/ },{},{}
-22876,Old_Money_Pocket,Old Money Pocket,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(500,550); },{},{}
-22881,Binding_Rope,Rope Gallows,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{/*Used to catch a Lost Sheep*/},{},{}
-22882,Choco_Tteokguk,Chocolate Rice Cake Soup,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{}
-22883,September_Gift_Box_,September Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{}
-22884,October_Gift_Box_,October Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12529,5; },{},{}
-22885,November_Gift_Box_,November Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{}
-22886,December_Gift_Box_,December Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22869,10; },{},{}
-22887,PC-Room_Box,PC-Room Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1; },{},{}
-22888,New_Year's_Scroll,New Year's Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1; },{},{}
-22893,New_Year's_Shadow_Cube,New Year's Shadow Cube,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{/*Get a random Shadow Equip (No info which one)*/},{},{}
-22894,Limited_2015_Neuralizer,(Limited)2015 Neuralizer,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{}
-22895,Limited_2015_Status_Initialization_Volume,(Limited)2015 Status Initialization Volume,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*Works like item 6320, can reset up to 3x within 1 hour*/ },{},{}
-22896,Limited_Old_Status_Initialization_Volume,(Limited)Old Status Initialization Volume,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*Works like item 6320, can reset up to 3x within 1 hour*/ },{},{}
-22899,Parchment_City,Parchment City,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_INCAGI",1; heal -15,0; },{},{}
-22901,Question_Old_Blue_Box,Mysterious Blue Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Mysterious_box"); },{},{}
-22902,Sealed_Card_Album_Scroll_II,Sealed Card Album Scroll II,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1; },{},{}
-22984,Kahluna_Milk,Kahluna Milk,0,6,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DORAM_BUF_01, 180000, 0; },{},{}
-22985,Basil,Basil,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DORAM_BUF_02, 180000, 0; },{},{}
-//
-23012,S_Small_Mana_Potion,[Sale] Small Mana Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */ },{},{}
-23016,Cursed_Fragment,Cursed Fragment,2,1,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Cursed_Fragment"); },{},{}
-23038,S_Slim_White_Box,[Sale] Slim White Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11573,200; },{},{}
-23042,S_Seed_Of_Yggdrasil,[NotForSale]Yggdrasil Seed,0,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{}
-23043,S_Seed_Of_Yggdrasil_Box,[Sale] Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 23042,30; },{},{}
-23046,S_Mystic_Powder,[Sale] Mystic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bFlee,20; bonus bLuk,10;",300,9; /* fix me: unknown flag and specialeffect */ },{},{}
-23047,S_Blessing_Tyr,[Sale] Blessing of Tyr,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{}
-23048,S_Resilience_Potion,[Sale] Resilience Enhancement Potion,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */ },{},{}
-23076,Build_Up_Potion_SS,Build Up Potion SS,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { bonus_script "{ bonus bAspd,10; }",10; } },{},{}
-23077,Build_Up_Potion_SC,Build Up Potion SC,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { bonus_script "{ bonus bCritical,30; }",10; } },{},{}
-23078,Build_Up_Potion_AC,Build Up Potion AC,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { bonus_script "{ bonus bVariableCastrate,-80; }",10; } },{},{}
-23080,Cursed_Crystal,Cursed Crystal,2,1,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Cursed_Crystal"); },{},{}
-23087,Small_Leather_Bag,Small Leather Bag,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1; },{},{}
-23123,Bullet_Case_Flare,Flare Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13228,500; },{},{}
-23124,Bullet_Case_Lighting,Lightning Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13229,500; },{},{}
-23125,Bullet_Case_Ice,Ice Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13230,500; },{},{}
-23126,Bullet_Case_Poison,Poison Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13231,500; },{},{}
-23127,Bullet_Case_Blind,Blind Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13232,500; },{},{}
-23177,Kafra_Card_,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashStore"; },{},{}
-23188,Unprocessed_Parts,Unprocessed Parts,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1632; },{},{}
-23189,Small_Needle_Kit,Small Needle Kit,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1622; },{},{}
-23187,Sap_Liquid,Sap Liquid,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1180; },{},{}
-23191,Varetyr_Spear_Scroll_1_5,Level 5 Varetyr Spear,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SO_VARETYR_SPEAR",5; },{},{}
-23192,Diamond_Dust_Scroll_1_5,Level 5 Diamond Dust,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SO_DIAMONDDUST",5; },{},{}
-23193,Crimson_Rock_Scroll_1_5,Level 5 Crimson Rock,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_CRIMSONROCK",5; },{},{}
-23194,Sienna_Execrate_Scroll_1_5,Level 5 Sienna Execrate,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_SIENNAEXECRATE",5,true; },{},{}
-23196,Agust_Lucky_Scroll,Shining Blue Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Agust_Lucky_Scroll); },{},{}
-//
-23228,Hazy_Mooncake,Hazy Mooncake,0,768,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* unknown */ },{},{}
-//
-23256,Elixir_Bandages,Elixir Bandages,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1041; },{},{}
-23277,Mado_Box,Emergency Magic Gear,2,10000,,3000,,,,,0x00000400,56,2,,,100,,,{ setmadogear 1; },{},{}
-23280,N_Fly_Wing_,Novice Fly Wing,11,10,,0,,,,,0xFFFFFFFF,63,2,,,1:98,,,{ itemskill "AL_TELEPORT",1; },{},{}
-23288,Compressed_Wing_Of_Fly,Compressed Fly Wing,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{}
-//
-23307,S_Shining_Def_Scroll,[Sale] Shining Defense Scroll,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bDef,500; bonus bMdef,200;",600; /* fix me: unknown flag and specialeffect */ },{},{}
-23340,S_Megaphone,[Sale] Megaphone,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; },{},{}
-//===================================================================
-// Shadow Equipments
-//===================================================================
-24000,T1_Shadow_Armor,Shadow Armor (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bStr,1; },{},{}
-24001,T1_Shadow_Weapon,Shadow Gauntlets (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDex,1; },{},{}
-24002,T1_Shadow_Shield,Shadow Shield (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bLuk,1; },{},{}
-24003,T1_Shadow_Shoes,Shadow Shoes (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAgi,1; },{},{}
-24004,T1_Shadow_R_Accessory,Shadow Ring (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bVit,1; },{},{}
-24005,T1_Shadow_L_Accessory,Shadow Pendant (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bInt,1; },{},{}
-24006,T2_Shadow_Armor,Shadow Armor (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,30,1,,{ bonus bStr,2; },{},{}
-24007,T2_Shadow_Weapon,Shadow Gauntlets (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,30,1,,{ bonus bDex,2; },{},{}
-24008,T2_Shadow_Shield,Shadow Shield (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,60,1,,{ bonus bLuk,2; },{},{}
-24009,T2_Shadow_Shoes,Shadow Shoes (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,90,1,,{ bonus bAgi,2; },{},{}
-24010,T2_Shadow_R_Accessory,Shadow Ring (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,120,1,,{ bonus bVit,2; },{},{}
-24011,T2_Shadow_L_Accessory,Shadow Pendant (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,150,1,,{ bonus bInt,2; },{},{}
-24012,S_Promotion_Weapon,Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDex,1; },{},{}
-24013,S_Promotion_Armor,Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bLuk,1; },{},{}
-24014,S_Promotion_Shoes,Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAgi,1; },{},{}
-24015,S_Promotion_Shield,Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bVit,1; },{},{}
-24016,S_Promotion_Earring,Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bInt,1; },{},{}
-24017,S_Promotion_Pendant,Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bStr,1; },{},{}
-24018,S_Physical_Earring,Physical Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bAspdRate,(getrefine()>=7)?2:1; },{},{}
-24019,S_Physical_Weapon,Physical Weapon (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; } },{},{}
-24020,S_Physical_Pendant,Physical Pendant (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; } },{},{}
-24021,S_Magical_Earring,Magical Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bVariableCastrate,-(getrefine()>=7)?2:1; },{},{}
-24022,S_Magical_Weapon,Magical Weapon (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; } },{},{}
-24023,S_Magical_Pendant,Magical Pencil (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; } },{},{}
-24024,S_Breezy_Armor,Breeze Armor (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bFlee,5+(getrefine()>=7 ? 10 : 0); },{},{}
-24025,S_Champion_Shoes,Champion Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; } },{},{}
-24026,S_Athena_Shield,Athena Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bDef,(getrefine()>=7)?20:10; },{},{}
-24027,S_Immune_Armor,Immune Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubEle,0,1; },{},{}
-24028,S_Hard_Armor,Hard Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; } },{},{}
-24029,S_Ancient_Armor,Ancient Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bHit,(getrefine()>=7)?20:10; },{},{}
-24030,S_Critical_Armor,Critital Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bCritical,(getrefine()>=7)?10:5; },{},{}
-24031,S_Kingbird_Weapon,Kingbird's Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; } },{},{}
-24032,S_Cri_Hit_Weapon,Critical Hit Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; } },{},{}
-24033,S_Healing_Weapon,Healing Shadow Weapon,12,0,,0,0:10,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ if (getrefine()>=7) bonus bHealPower2,5; },{},{}
-24034,S_Lucky_Weapon,Lucky Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; } },{},{}
-24035,S_Power_Earring,Power Shadow Earring,12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; } },{},{}
-24036,S_Int_Pendant,Intelligent Shadow Pendant,12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; } },{},{}
-24037,S_Dexterous_Armor,Dexterous Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; } },{},{}
-24038,S_Vital_Shoes,Vital Shadow Shoes,12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; } },{},{}
-24039,S_Athletic_Shield,Athletic Shadow Shield,12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; } },{},{}
-24040,S_Lucky_Armor,Lucky Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bLuk,1; bonus bCritical,(getrefine()/2); },{},{}
-24041,S_Power_Pendant,Power Shadow Pendant,12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bStr,1; bonus bBaseAtk,getrefine(); },{},{}
-24042,S_Int_Earring,Intelligent Shadow Earring,12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bInt,1; bonus bMatk,getrefine(); },{},{}
-24043,S_Dexterous_Weapon,Dexterous Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bDex,1; bonus bHit,getrefine(); },{},{}
-24044,S_Vital_Shield,Vital Shadow Shield,12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bVit,1; bonus bDef,getrefine(); },{},{}
-24045,S_Athletic_Shoes,Athletic Shadow Shoes,12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bAgi,1; bonus bFlee,getrefine(); },{},{}
-24046,S_Resist_Spell_Pendant,Resist Spell Power Pendant (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMdef,(getrefine()>=7)?6:3; },{},{}
-24047,S_Rapid_Pendant,Rapid Pendant (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0); },{},{}
-24048,S_Caster_Pendant,Caster Pendant (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0); },{},{}
-24049,S_Hard_Earring,Hard Earring (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0); },{},{}
-24050,S_Wise_Earring,Wise Earring (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0); },{},{}
-24051,S_Athena_Earring,Athena Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bDef,(getrefine()>=7)?20:10; },{},{}
-24052,S_Cranial_Shield,Cranial Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; } },{},{}
-24053,S_Safeguard_Shield,Safeguard Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; } },{},{}
-24054,S_Brutal_Shield,Brutal Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; } },{},{}
-24055,S_Gargantua_Shield,Gargantua Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; } },{},{}
-24056,S_Homers_Shield,Homers Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; } },{},{}
-24057,S_Dragoon_Shield,Dragoon Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; } },{},{}
-24058,S_Satanic_Shield,Satanic Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; } },{},{}
-24059,S_Flameguard_Shield,Flameguard Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; } },{},{}
-24060,S_Requiem_Shield,Requiem Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; } },{},{}
-24061,S_Cadi_Shield,Cadi Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; } },{},{}
-24062,S_Bloody_Shoes,Bloody Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24063,S_Liberation_Shoes,Liberation Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24064,S_Chemical_Shoes,Chemical Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24065,S_Clamorous_Shoes,Clamorous Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24066,S_Insecticide_Shoes,Insecticide Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24067,S_Fisher_Shoes,Fisher Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24068,S_Seraphim_Shoes,Seraphim Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24069,S_Beholder_Shoes,Beholder Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24070,S_Divine_Shoes,Divine Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24071,S_Dragoon_Shoes,Dragoon Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ 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; } },{},{}
-24072,S_Big_Armor,Large Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; } },{},{}
-24073,S_Medium_Armor,Medium Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; } },{},{}
-24074,S_Small_Armor,Small Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; } },{},{}
-24075,S_Big_Weapon,Large Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; } },{},{}
-24076,S_Medium_Weapon,Medium Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; } },{},{}
-24077,S_Small_Weapon,Small Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; } },{},{}
-24078,S_Spiritual_Weapon,Spiritual Shadow Weapon,12,0,,0,,,,,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;} },{},{}
-24079,S_Spiritual_Earring,Spiritual Shadow Earring,12,0,,0,,,,,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxSP,50; },{},{}
-24080,S_Spiritual_Pendent,Spiritual Shadow Pendant,12,0,,0,,,,,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMaxSPrate,(getrefine()>=7?2:1); },{},{}
-24081,S_Malicious_Armor,Malicious Shas Shadow Armor,12,0,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;} },{},{}
-24082,S_Malicious_Shoes,Malicious Shas Shadow Shoes,12,0,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxHPrate,(getrefine()>=7?2:1); },{},{}
-24083,S_Malicious_Shield,Malicious Shas Shadow Shield,12,0,,0,,,,,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bHPrecovRate,(getrefine()>=7?10:5); },{},{}
-24084,S_Gemstone_Armor,Gemstone Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bCritical,5+(getrefine()/2); },{},{}
-24085,S_Gemstone_Shoes,Gemstone Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{}
-24086,S_Gemstone_Shield,Gemstone Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{}
-24087,S_Gemstone_Weapon,Gemstone Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bHit,5+(getrefine()/2); },{},{}
-24088,S_Gemstone_Earring,Gemstone Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5+(getrefine()/2); },{},{}
-24089,S_Gemstone_Pendent,Gemstone Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{}
-24090,S_Stability_Shield,Stability Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ 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; },{},{}
-24091,S_Plasterer's_Armor,Harrods Plaster Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); },{},{}
-24092,S_Plasterer's_Shoes,Harrods Plaster Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); },{},{}
-24093,S_Insomniac_Armor,Insomnia Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); },{},{}
-24094,S_Insomniac_Shoes,Insomnia Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); },{},{}
-24095,S_Peerless_Armor,Peerless Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); },{},{}
-24096,S_Peerless_Shoes,Peerless Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); },{},{}
-24097,S_Adurate_Armor,Andre Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); },{},{}
-24098,S_Adurate_Shoes,Andre Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); },{},{}
-24099,Unfreez_Weapon_S,Unfreezing Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{}
-24100,Unfreeze_Earing_S,Unfreezing Shadow Earring,12,10,,0,,,,,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{}
-24101,Unfreeze_Pendent_S,Unfreezing Shadow Pendant,12,10,,0,,,,,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{}
-24102,Vitality_Earing_S,Vitality Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); },{},{}
-24103,Vitality_Pendant_S,Vitality Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); },{},{}
-24104,S_Neutral_Weapon,Neutral Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2; },{},{}
-24105,S_Neutral_Earring,Neutral Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); },{},{}
-24106,S_Neutral_Pendent,Neutral Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); },{},{}
-24107,S_Curse_Lift_Earring,Frozen Curse Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); },{},{}
-24108,S_Curse_Lift_Pendent,Frozen Curse Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); },{},{}
-24109,S_Caster_earring,Caster Shadow Earrings,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bVariableCastrate,-1-((getrefine()>=7)?1:0); },{},{}
-24110,S_Caster_Weapon,Caster Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); },{},{}
-24111,S_Spell_Flow_Shoes,Spellflow Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5; },{},{}
-24112,S_Spell_Flow_Armor,Spellflow Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0); },{},{}
-24113,S_Spell_Flow_Shield,Spellflow Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1; },{},{}
-24114,S_Greed_Armor,Grid Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10); },{},{}
-24115,S_Greed_Shoes,Grid Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{}
-24116,S_Greed_Shield,Grid Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{}
-24117,S_Greed_Weapon,Grid Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{}
-24118,S_Greed_Earring,Grid Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{}
-24119,S_Greed_Pendant,Grid Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{}
-24120,S_Heal_Armor,Heal Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24121,S_Heal_Shoes,Heal Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24122,S_Heal_Shield,Heal Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24123,S_Heal_Weapon,Heal Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24124,S_Heal_Earring,Heal Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24125,S_Heal_Pendant,Heal Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{}
-24126,S_Hiding_Armor,Hiding Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24127,S_Hiding_Shoes,Hiding Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24128,S_Hiding_Shield,Hiding Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24129,S_Hiding_Weapon,Hiding Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24130,S_Hiding_Earring,Hiding Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24131,S_Hiding_Pendant,Hiding Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; }
-24132,S_Cloaking_Armor,Cloaking Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24133,S_Cloaking_Shoes,Cloaking Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24134,S_Cloaking_Shield,Cloaking Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24135,S_Cloaking_Weapon,Cloaking Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24136,S_Cloaking_Earring,Cloaking Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24137,S_Cloaking_Pendant,Cloaking Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; }
-24138,S_Teleport_Armor,Teleport Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24139,S_Teleport_Shoes,Teleport Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24140,S_Teleport_Shield,Teleport Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24141,S_Teleport_Weapon,Teleport Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24142,S_Teleport_Earring,Teleport Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24143,S_Teleport_Pendant,Teleport Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{}
-24144,S_Steal_Armor,Steal Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24145,S_Steal_Shoes,Steal Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24146,S_Steal_Shield,Steal Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24147,S_Steal_Weapon,Steal Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24148,S_Steal_Earring,Steal Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24149,S_Steal_Pendant,Steal Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{}
-24150,S_Infinity_Earring,Infinity Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); },{},{}
-24151,S_Infinity_Pendant,Infinity Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); },{},{}
-24152,S_Solid_Weapon,Solid Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{}
-24153,S_Solid_Earring,Solid Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bHit,5+(getrefine()/2); },{},{}
-24154,S_Immortal_Armor,Solid Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{}
-24155,S_Immortal_Pendant,Solid Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMdef,(getrefine()/2); },{},{}
-24156,S_Executioner_Weapon,Demi-Human Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2); },{},{}
-24157,S_Exorcist_Weapon,Exorcist Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2); },{},{}
-24158,S_Hunting_Weapon,Hunting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); },{},{}
-24159,S_Insect_Net_Weapon,Insect Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2); },{},{}
-24160,S_Fishing_Weapon,Fishing Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2); },{},{}
-24161,S_Dragon_Killer_Weapon,Dragon Killer Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2); },{},{}
-24162,S_Corrupt_Weapon,Angelus Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2); },{},{}
-24163,S_Vibration_Weapon,Formless Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2); },{},{}
-24164,S_Holy_Water_Weapon,Holy Water Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2); },{},{}
-24165,S_Scissors_Weapon,Plant Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2); },{},{}
-24166,S_Penetration_Earring,Penetration Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player,-5-(.@r/2); },{},{}
-24167,S_Penetration_Pendent,Penetration Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player,-5-(.@r/2); },{},{}
-24168,S_Tempest_Earring,Tempest Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24169,S_Tempest_Pendent,Tempest Pendant Shadow,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24170,S_M_Executioner_Weapon,Magic Demi-Human Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2); },{},{}
-24171,S_M_Exorcist_Weapon,Magic Exorcist Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2); },{},{}
-24172,S_M_Hunting_Weapon,Magic Hunting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); },{},{}
-24173,S_M_Insect_Net_Weapon,Magic Insect Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2); },{},{}
-24174,S_M_Fishing_Weapon,Magic Fishing Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2); },{},{}
-24175,S_M_Dragon_K_Weapon,Magic Dragon Killer Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2); },{},{}
-24176,S_M_Corrupt_Weapon,Magic Angelus Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2); },{},{}
-24177,S_M_Vibration_Weapon,Magic Formless Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2); },{},{}
-24178,S_M_Holy_Water_Weapon,Magic Holy Water Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2); },{},{}
-24179,S_M_Scissors_Weapon,Magic Caesars Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2); },{},{}
-24180,S_Bearers_Armor,Bearer's Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMdef,1+(getrefine()/2); },{},{}
-24181,S_Bearers_Shoes,Bearer's Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxSP,50+(5*(getrefine()/2)); },{},{}
-24182,S_Bearers_Shield,Bearer's Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{}
-24183,S_Bearers_Weapon,Bearer's Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100+(10*(getrefine()/2)); },{},{}
-24184,S_Bearers_Earring,Bearer's Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5+(getrefine()/2); },{},{}
-24185,S_Bearers_Pendent,Bearer's Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{}
-24186,S_Basis_Armor,Basis Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2); },{},{}
-24187,S_Hallowed_Armor,Hallowed Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2); },{},{}
-24188,S_Saharic_Armor,Underneith Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2); },{},{}
-24189,S_Underneath_Armor,Underneath Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2); },{},{}
-24190,S_Flam_Armor,Flame Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2); },{},{}
-24191,S_Windy_Armor,Windy Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2); },{},{}
-24192,S_Envenom_Armor,Envenom Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2); },{},{}
-24193,S_Damned_Armor,Damned Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2); },{},{}
-24194,S_Geist_Armor,Exorcism Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2); },{},{}
-24195,S_Divine_Armor,Divine Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2); },{},{}
-24196,S_Hasty_Shoes,Hasty Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{}
-24197,S_Hasty_Armor,Hasty Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{}
-24198,S_Basis_Shield,Basis Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24199,S_Hallowed_Shield,Hallowed Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Dark,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24200,S_Saharic_Shield,Saharic Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Water,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24201,S_Underneath_Shield,Underneath Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Earth,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24202,S_Flam_Shield,Flame Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24203,S_Windy_Shield,Windy Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Wind,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24204,S_Envenom_Shield,Envenom Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Poison,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24205,S_Damned_Shield,Damned Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Holy,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24206,S_Geist_Shield,Exorcism Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Ghost,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24207,S_Divine_Shield,Divine Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Undead,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24208,S_Expert_Shoes,Expert Shadow Shoes,12,20,,100,,,,0,0xFFFFFFFF,63,2,524288,,150:175,1,,{ bonus2 bExpAddRace,RC_All,1; },{},{}
-24209,S_Expert_Shield,Expert Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,150:175,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/4); },{},{}
-24210,S_Beginner_Shoes,Beginner Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,1:49,1,,{ bonus2 bExpAddRace,RC_All,getrefine(); },{},{}
-24211,S_Beginner_Shield,Beginner Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1:49,1,,{ bonus2 bExpAddRace,RC_All,getrefine(); },{},{}
-24212,S_Rookie_Shoes,Rookie Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,50:99,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/2); },{},{}
-24213,S_Rookie_Shield,Rookie Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,50:99,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/2); },{},{}
-24214,S_Advanced_Shoes,Advanced Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,100:149,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/3); },{},{}
-24215,S_Advanced_Shield,Advanced Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,100:149,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/3); },{},{}
-24216,S_Attack_Armor,Attack Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; },{},{}
-24217,S_Blitz_Earring,Blitz Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } },{},{}
-24218,S_Blitz_Pendent,Blitz Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } },{},{}
-24219,S_ColdBolt_Armor,Cold Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{}
-24220,S_FireBolt_Armor,Fire Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{}
-24221,S_LightingBolt_Armor,Lightning Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{}
-24222,S_EarthSpike_Armor,Earth Spike Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{}
-24223,S_Enhance_Force_Weapon,Enhanced Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2); },{},{}
-24224,S_Force_Weapon,Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24225,S_Force_Earring,Force Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,70,1,,{ .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; },{},{}
-24226,S_Force_Pendant,Force Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,70,1,,{ .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; },{},{}
-24227,S_Enhance_Spirit_Weapon,Enhanced Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bMatk,10; bonus bMatkRate,(getrefine()/2); },{},{}
-24228,S_Spirit_Weapon,Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); },{},{}
-24229,S_Spirit_Earring,Soul Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,70,1,,{ .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; },{},{}
-24230,S_Spirit_Pendant,Soul Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,70,1,,{ .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; },{},{}
-24231,S_Blitz_Shoes,Blitz Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } },{},{}
-24232,S_Blitz_Shield,Blitz Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } },{},{}
-24233,S_Exceed_Weapon,Exceeding Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,100,1,,{ .@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; },{},{}
-24234,S_Titan_Earring,Titan Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; },{},{}
-24235,S_Titan_Pendant,Titan Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; },{},{}
-24236,S_Boned_Earring,Boned Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; },{},{}
-24237,S_Boned_Pendant,Boned Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; },{},{}
-24238,S_Gigantic_Earring,Gigantic Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; },{},{}
-24239,S_Gigantic_Pendant,Gigantic Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; },{},{}
-24240,S_Caster_Shoes,Caster Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{}
-24241,S_Caster_Shield,Caster Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{}
-24242,S_Caster_Armor,Caster Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{}
-24243,S_Reload_Shoes,Reload Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{}
-24244,S_Reload_Shield,Reload Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{}
-24245,S_Reload_Armor,Reload Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{}
-24246,S_Swordman_Earring,Swordman Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); },{},{}
-24247,S_Merchant_Earring,Merchant Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r); },{},{}
-24248,S_Acolyte_Earring,Acolyte Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); },{},{}
-24249,S_Magician_Earring,Magician Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r); },{},{}
-24250,S_Swordman_Pendant,Swordman Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); },{},{}
-24251,S_Merchant_Pendant,Merchant Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); },{},{}
-24252,S_Acolyte_Pendant,Acolyte Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r); },{},{}
-24253,S_Thief_Pendant,Thief Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); },{},{}
-24254,S_Magician_Pendant,Magician Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; },{},{}
-24255,S_Archer_Pendant,Archer Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); },{},{}
-24256,Knight_Shadow_Shoes,Knight Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; },{},{}
-24257,Crusader_Shadow_Shoes,Crusader Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); },{},{}
-24258,Blacksmith_Shadow_Shoes,Blacksmith Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val; },{},{}
-24259,Alchemist_Shadow_Shoes,Alchemist Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r; },{},{}
-24260,Priest_Shadow_Shoes,Priest Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val; },{},{}
-24261,Monk_Shadow_Shoes,Monk Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; },{},{}
-24262,Assassin_Shadow_Shoes,Assassin Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; },{},{}
-24263,Rogue_Shadow_Shoes,Rogue Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{}
-24264,Wizard_Shadow_Shoes,Wizard Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@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)); },{},{}
-24265,Sage_Shadow_Shoes,Sage Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; },{},{}
-24266,Hunter_Shadow_Shoes,Hunter Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5; },{},{}
-24267,Bard_Shadow_Shoes,Bard Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{}
-24268,Dancer_Shadow_Shoes,Dancer Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{}
-24269,Knight_Shadow_Armor,Knight Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); },{},{}
-24270,Crusader_Shadow_Armor,Crusader Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; },{},{}
-24271,Blacksmith_Shadow_Armor,Blacksmith Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@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"; },{},{}
-24272,Alchemist_Shadow_Armor,Alchemist Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{}
-24273,Priest_Shadow_Armor,Priest Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; },{},{}
-24274,Monk_Shadow_Armor,Monk Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5; },{},{}
-24275,Assassin_Shadow_Armor,Assassin Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); },{},{}
-24276,Rogue_Shadow_Armor,Rogue Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; },{},{}
-24277,Wizard_Shadow_Armor,Wizard Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; },{},{}
-24278,Sage_Shadow_Armor,Sage Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ 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 */ },{},{}
-24279,Hunter_Shadow_Armor,Hunter Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5; },{},{}
-24280,Bard_Shadow_Armor,Bard Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@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 */ },{},{}
-24281,Dancer_Shadow_Armor,Dancer Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@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 */ },{},{}
-24282,Super_Novice_Shadow_Weapon,Super Novice Shadow Weapon,12,0,,0,,0,,0,0x00000001,63,2,131072,,1,1,0,{ .@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; } },{},{}
-24283,Gunslinger_Shadow_Weapon,Gunslinger Shadow Weapon,12,0,,0,,0,,0,0x41000000,63,2,131072,,1,1,0,{ .@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; } },{},{}
-24284,Taekwondo_Shadow_Weapon,Taekwondo Shadow Weapon,12,0,,0,,0,,0,0x00E00000,63,2,131072,,1,1,0,{ .@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; } },{},{}
-24285,Ninja_Shadow_Weapon,Ninja Shadow Weapon,12,0,,0,,0,,0,0x22000000,63,2,131072,,1,1,,{ .@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; },{},{}
-24286,Doram_Magical_Shadow_Weapon,Doram Magical Shadow Weapon,12,0,,0,,0,,0,0x80000000,7,2,131072,,1,1,0,{ .@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; },{},{}
-24287,Doram_Physical_Shadow_Weapon,Doram Physical Shadow Weapon,12,0,,0,,0,,0,0x80000000,7,2,131072,,1,1,0,{ .@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; },{},{}
-24288,Rune_Knight_Shadow_Weapon,Rune Knight Shadow Weapon,12,10,,0,,0,,0,0x00000080,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; },{},{}
-24289,Royal_Guard_Shadow_Weapon,Royal Guard Shadow Weapon,12,10,,0,,0,,0,0x00004000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; },{},{}
-24290,Mechanic_Shadow_Weapon,Mechanic Shadow Weapon,12,10,,0,,0,,0,0x00000400,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5; },{},{}
-24291,Genetic_Shadow_Weapon,Genetic Shadow Weapon,12,10,,0,,0,,0,0x00040000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; },{},{}
-24292,Arcbishop_Shadow_Weapon,Arcbishop Shadow Weapon,12,10,,0,,0,,0,0x00000100,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5; },{},{}
-24293,Sura_Shadow_Weapon,Sura Shadow Weapon,12,10,,0,,0,,0,0x00008000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); },{},{}
-24294,Guillotine_Cross_Shadow_Weapon,Guillotine Cross Shadow Weapon,12,10,,0,,0,,0,0x00001000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); },{},{}
-24295,Shadow_Chaser_Shadow_Weapon,Shadow Chaser Shadow Weapon,12,10,,0,,0,,0,0x00020000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5; },{},{}
-24296,Warlock_Shadow_Weapon,Warlock Shadow Weapon,12,10,,0,,0,,0,0x00000200,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5; },{},{}
-24297,Sorcerer_Shadow_Weapon,Sorcerer Shadow Weapon,12,10,,0,,0,,0,0x00010000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000); },{},{}
-24298,Ranger_Shadow_Weapon,Ranger Shadow Weapon,12,10,,0,,0,,0,0x00000800,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5; },{},{}
-24299,Minstrel_Shadow_Weapon,Maestro Shadow Weapon,12,10,,0,,0,,0,0x00080000,56,1,131072,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG")); },{},{}
-24300,Wanderer_Shadow_Weapon,Wanderer Shadow Weapon,12,10,,0,,0,,0,0x00080000,56,0,131072,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE")); },{},{}
-24301,Rune_Knight_Shadow_Shield,Rune Knight Shadow Shield,12,0,,0,,,,0,0x00000080,56,2,262144,,99,1,,{ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE"; },{},{}
-24302,Royal_Guard_Shadow_Shield,Royal Guard Shadow Shield,12,10,,0,,0,,0,0x00004000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; },{},{}
-24303,Mechanic_Shadow_Shield,Mechanic Shadow Shield,12,10,,0,,0,,0,0x00000400,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; },{},{}
-24304,Genetic_Shadow_Shield,Genetic Shadow Shield,12,10,,0,,0,,0,0x00040000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON")); },{},{}
-24305,Archbishop_Shadow_Shield,Archbishop Shadow Shield,12,10,,0,,0,,0,0x00000100,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; },{},{}
-24306,Sura_Shadow_Shield,Sura Shadow Shield,12,10,,0,,0,,0,0x00008000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; },{},{}
-24307,Guillotine_Cross_Shadow_Shield,Guillotine Cross Shadow Shield,12,10,,0,,0,,0,0x00001000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); },{},{}
-24308,Shadow_Chaser_Shadow_Shield,Shadow Chaser Shadow Shield,12,10,,0,,0,,0,0x00020000,56,2,262144,,99,1,,{ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL"; },{},{}
-24309,Warlock_Shadow_Shield,Warlock Shadow Shield,12,10,,0,,0,,0,0x00000200,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; },{},{}
-24310,Sorcerer_Shadow_Shield,Sorcerer Shadow Shield,12,10,,0,,0,,0,0x00010000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); },{},{}
-24311,Ranger_Shadow_Shield,Ranger Shadow Shield,12,10,,0,,0,,0,0x00000800,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); },{},{}
-24312,Minstrel_Shadow_Shield,Minstrel Shadow Shield,12,10,,0,,0,,0,0x00080000,56,1,262144,,99,1,,{ .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5; },{},{}
-24313,Wanderer_Shadow_Shield,Wanderer Shadow Shield,12,10,,0,,0,,0,0x00080000,56,0,262144,,99,1,,{ .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5; },{},{}
-24314,Ninja_Shadow_Shield,Ninja Shadow Shield,12,10,,0,,0,,0,0x02000000,63,2,262144,,1,1,,{ 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; },{},{}
-24315,Taekwon_Shadow_Shield,Taekwon Shadow Shield,12,10,,0,,0,,0,0x00E00000,63,2,262144,,1,1,,{ .@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; },{},{}
-24316,Doram_Physical_Shadow_Shield,Doram Physical Shadow Shield,12,10,,0,,0,,0,0x80000000,7,2,262144,,1,1,,{ .@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; },{},{}
-24317,Doram_Magical_Shadow_Shield,Doram Magical Shadow Shield,12,10,,0,,0,,0,0x80000000,7,2,262144,,1,1,,{ .@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; },{},{}
-24318,Super_Novice_Shadow_Shield,Super Novice Shadow Shield,12,10,,0,,0,,0,0x00000001,63,2,262144,,1,1,,{ .@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; } },{},{}
-24319,Gunslinger_Shadow_Shield,Gunslinger Shadow Shield,12,10,,0,,0,,0,0x41000000,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3; },{},{}
-24320,S_Hasty_Shoes_II,Hasty Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; },{},{}
-24321,S_Bearer's_Pendant_II,Bearer's Shadow Pendant II,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val; },{},{}
-24322,S_Gemstone_Earring_II,Gemstone Shadow Earring II,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val; },{},{}
-24323,S_Spellflow_Shield_II,Spellflow Shadow Shield II,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1; },{},{}
-24324,S_Spiritual_Weapon_II,Spiritual Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); },{},{}
-24325,S_Malicious_Armor_II,Malicious Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); },{},{}
-24326,S_Sigrun_Armor,Sigrun Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@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; } },{},{}
-24327,S_Sigrun_Shield,Sigrun Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@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; } },{},{}
-24328,S_Force_Executioner_Weapon,Force Executioner Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; },{},{}
-24329,S_Spirit_Magic_Executioner_Weapon,Spirit Magic Executioner Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; },{},{}
-24330,S_Caster_Armor_II,Caster Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2; },{},{}
-24331,S_Reload_Armor_II,Reload Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3); },{},{}
-24332,S_Critical_Shield,Critical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; } },{},{}
-24333,S_Critical_Shoes,Critical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; } },{},{}
-24334,S_Magic_Compose_Armor,Magic Compose Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@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; } },{},{}
-24335,S_Gemstone_Weapon_II,Gemstone Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } },{},{}
-24336,S_Gemstone_Shield_II,Gemstone Shadow Shield II,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } },{},{}
-24337,S_Bearer's_Armor_II,Bearer's Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } },{},{}
-24338,S_Bearer's_Shoes_II,Bearer's Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } },{},{}
-24339,S_Almighty_Earring,Almighty Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bAllStats,getrefine(); },{},{}
-24340,S_Almighty_Pendant,Almighty Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bAllStats,getrefine(); },{},{}
-24341,S_All_Race_Shoes,All Race Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@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; },{},{}
-24342,S_All_Race_Shield,All Race Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val; },{},{}
-24343,S_Blitz_Weapon,Blitz Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } },{},{}
-24344,S_Blitz_Armor,Blitz Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } },{},{}
-24345,S_Tempest_Shield,Tempest Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24346,S_Tempest_Shoes,Tempest Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24347,S_Magic_Executioner_Holy_Water_Armor,Magic Executioner Holy Water Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; },{},{}
-24348,S_Magic_Exorcist_Corrupted_Armor,Magic Exorcist Corrupted Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; },{},{}
-24349,S_Magic_Vibration_Dragon_Killer_Armor,Magic Vibration Dragon Killer Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; },{},{}
-24350,S_Magic_Scissor_Hunting_Armor,Magic Scissor Hunting Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; },{},{}
-24351,S_Magic_Fishing_Insect_Net_Armor,Magic Fishing Insect Net Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; },{},{}
-24352,S_Plasterer's_Armor_II,Plasterer's Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine(); },{},{}
-24353,S_Insomniac_Shoes_II,Insomniac Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine(); },{},{}
-24354,S_Peerless_Armor_II,Peerless Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine(); },{},{}
-24355,S_Adulate_Shoes_II,Adulate Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine(); },{},{}
-24356,S_Unfreezing_Weapon_II,Unfreezing Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine(); },{},{}
-24357,S_Vitality_Earring_II,Vitality Shadow Earring II,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine(); },{},{}
-24358,S_Neutral_Weapon_II,Neutral Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2); },{},{}
-24359,S_Uncursed_Pendant_II,Uncursed Shadow Pendant II,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine(); },{},{}
-24360,S_Tension_Weapon,Tension Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100 + 150*(getrefine()/2); },{},{}
-24361,S_Tension_Earring,Tension Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2); },{},{}
-24362,S_Tension_Pendant,Tension Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{}
-24363,S_Elegant_Weapon,Elegant Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100 + 150*(getrefine()/2); },{},{}
-24364,S_Elegant_Earring,Elegant Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2); },{},{}
-24365,S_Elegant_Pendant,Elegant Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{}
-24366,S_Healing_Shield,Healing Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } },{},{}
-24367,S_Healing_Shoes,Healing Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } },{},{}
-24368,S_Restore_Earring,Restore Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val; },{},{}
-24369,S_Restore_Pendant,Restore Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val; },{},{}
-24370,S_Mortal_Blow_Weapon,Mortal Blow Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val; },{},{}
-24371,S_Mortal_Blow_Earring,Mortal Blow Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; },{},{}
-24372,S_Mortal_Blow_Pendant,Mortal Blow Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; },{},{}
-24373,S_Penetration_Shoes,Penetration Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24374,S_Penetration_Shield,Penetration Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24375,S_Executioner_Holy_Water_Armor,Executioner Holy Water Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; },{},{}
-24376,S_Exorcist_Corrupted_Armor,Exorcist Corrupted Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; },{},{}
-24377,S_Vibration_Dragon_Killer_Armor,Vibration Dragon Killer Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; },{},{}
-24378,S_Scissor_Hunting_Armor,Scissor Hunting Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; },{},{}
-24379,S_Fishing_Insect_Net_Armor,Fishing Insect Net Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; },{},{}
-24380,S_Sentimental_Weapon,Sentimental Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus MaxSP,10+15*(getrefine()/2); },{},{}
-24381,S_Sentimental_Earring,Sentimental Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); },{},{}
-24382,S_Sentimental_Pendant,Sentimental Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3); },{},{}
-24383,S_Enchanting_Weapon,Enchanting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxSP,10+15*(getrefine()/2); },{},{}
-24384,S_Enchanting_Earring,Enchanting Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); },{},{}
-24385,S_Enchanting_Pendant,Enchanting Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3); },{},{}
-24386,S_Infinity_Weapon,Infinity Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@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; } } },{},{}
-24387,S_Beginner's_Armor,Beginner's Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,100,1,,{ bonus bInt,2; },{},{}
-24388,S_Beginner's_Shield,Beginner's Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,100,1,,{ bonus bVit,2; },{},{}
-24389,S_Beginner's_Shoes,Beginner's Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,100,1,,{ bonus bAgi,2; },{},{}
-24390,S_Beginner's_Weapon,Beginner's Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,100,1,,{ bonus bStr,2; },{},{}
-24391,S_Beginner's_Earring,Beginner's Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,100,1,,{ bonus bDex,2; },{},{}
-24392,S_Beginner's_Pendant,Beginner's Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,100,1,,{ bonus bLuk,2; },{},{}
-24393,S_Physical_Shoes,Physical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; } },{},{}
-24394,S_Physical_Shield,Physical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; } },{},{}
-24395,S_Physical_Armor,Physical Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; } },{},{}
-24396,S_Magical_Shoes,Magical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; } },{},{}
-24397,S_Magical_Shield,Magical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; } },{},{}
-24398,S_Magical_Armor,Magical Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; } },{},{}
-24399,S_Immune_Athena_Shield,Immune Athena Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,50+20*(getrefine()/2); },{},{}
-24400,S_Hard_Champion_Shoes,Hard Champion Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; },{},{}
-24401,S_Kingbird_Ancient_Armor,Kingbird Ancient Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; } },{},{}
-24402,Rebellion_Shadow_Armor,Rebellion Shadow Armor,12,10,,0,,,,,0x40000000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2); },{},{}
-24403,Kagerou_Shadow_Armor,Kagerou Shadow Armor,12,10,,0,,,,,0x20000000,63,1,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; },{},{}
-24404,Oboro_Shadow_Armor,Oboro Shadow Armor,12,10,,0,,,,,0x20000000,63,0,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5; },{},{}
-24405,Rebellion_Shadow_Shoes,Rebellion Shadow Shoes,12,10,,0,,,,,0x40000000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5; },{},{}
-24406,Kagerou_Shadow_Shoes,Kagerou Shadow Shoes,12,10,,0,,,,,0x20000000,63,1,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; },{},{}
-24407,Oboro_Shadow_Shoes,Oboro Shadow Shoes,12,10,,0,,,,,0x20000000,63,0,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2); },{},{}
-24408,Doram_Physical_Shadow_Armor,Doram Physical Shadow Armor,12,10,,0,,,,,0x80000000,7,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3; },{},{}
-24409,Doram_Physical_Shadow_Shoes,Doram Physical Shadow Shoes,12,10,,0,,,,,0x80000000,7,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2); },{},{}
-24410,Doram_Magical_Shadow_Armor,Doram Magical Shadow Armor,12,10,,0,,,,,0x80000000,7,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3; },{},{}
-24411,Doram_Magical_Shadow_Shoes,Doram Magical Shadow Shoes,12,10,,0,,,,,0x80000000,7,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2); },{},{}
-24412,Star_Emperor_Shadow_Armor,Star Emperor Shadow Armor,12,10,,0,,,,,0x00400000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; },{},{}
-24413,Star_Emperor_Shadow_Shoes,Star Emperor Shadow Shoes,12,10,,0,,,,,0x00400000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); },{},{}
-24414,Soul_Reaper_Shadow_Armor,Soul Reaper Shadow Armor,12,10,,0,,,,,0x00800000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3; },{},{}
-24415,Soul_Reaper_Shadow_Shoes,Soul Reaper Shadow Shoes,12,10,,0,,,,,0x00800000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); },{},{}
-24416,S_Temporal_Transcendent_Weapon,Temporal Transcendent Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bCritAtkRate,7; },{},{}
-24417,S_Temporal_Transcendent_Armor,Temporal Transcendent Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bAspd,1; },{},{}
-24418,S_Temporal_Transcendent_Shield,Temporal Transcendent Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bVariableCastrate,-10; },{},{}
-24419,S_Temporal_Transcendent_Shoes,Temporal Transcendent Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAspdRate,7; },{},{}
-24420,S_Temporal_Transcendent_Earring,Temporal Transcendent Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,15; },{},{}
-24421,S_Temporal_Transcendent_Pendant,Temporal Transcendent Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,15; },{},{}
-24423,S_Tempest_Weapon,Tempest Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-24424,S_Tempest_Armor,Tempest Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{}
-//===================================================================
-// New etc.
-//===================================================================
-25043,Thorny_Vine_Flute,Thorny Vine Flute,3,0,,0,,,,,,,,,,,,,{},{},{}
-25044,Hard_Thorny_Vine,Hard Thorny Vine,3,0,,10,,,,,,,,,,,,,{},{},{}
-25045,Luxurious_Cloth,Luxurious Cloth,3,0,,0,,,,,,,,,,,,,{},{},{}
-25046,Boarding_Pass,Boarding Pass,3,0,,0,,,,,,,,,,,,,{},{},{}
-25047,Kahlunac,Kahlunac,3,0,,0,,,,,,,,,,,,,{},{},{}
-25048,Hearty_Lunchbox,Hearty Lunchbox,3,0,,0,,,,,,,,,,,,,{},{},{}
-25049,Basilac_Clam,Basilac Clam,3,0,,0,,,,,,,,,,,,,{},{},{}
-25127,Silent_Energy_Particle,Silent Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{}
-25128,Weak_Energy_Particle,Weak Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{}
-25129,Unstable_Energy_Particle,Unstable Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{}
-25130,Sinister_Energy_Particle,Sinister Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{}
-25131,Fallen_Energy_Particle,Fallen Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{}
-25132,Pumpkin_Deco,Pumpkin Deco,3,0,,0,,,,,,,,,,,,,{},{},{}
-25133,Dried_White_Stem,Dried White Stem,3,0,,0,,,,,,,,,,,,,{},{},{}
-25142,Doram_Token,Doram Token,3,,0,0,,,,,,,,,,,,,{},{},{}
-25143,Gift_Stuffed_Doll,Gift Stuffed Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25144,Bridge_Postured_Doll,Bridge Postured Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25145,Burnt_Spector_Doll,Burnt Spector Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25146,Cold_Blooded_Queen_Doll,Cold Blooded Queen Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25147,Well_Eatenl_Rabbit_Doll,Well Eatenl Rabbit Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25148,Cute_Starved_Demon_Doll,Cute Starved Demon Doll,3,0,,0,,,,,,,,,,,,,{},{},{}
-25149,Doll_With_Warm_Scarf,Doll With Warm Scarf,3,0,,0,,,,,,,,,,,,,{},{},{}
-25150,Hugging_Alice_Pilow,Hugging Alice Pilow,3,0,,0,,,,,,,,,,,,,{},{},{}
-25151,Rachel's_Revolver,Rachel's Revolver,3,0,,0,,,,,,,,,,,,,{},{},{}
-25152,Cherished_Bouquet,Cherished Bouquet,3,0,,0,,,,,,,,,,,,,{},{},{}
-25153,Broken_Gun_Wreck,Broken Gun Wreck,3,0,,0,,,,,,,,,,,,,{},{},{}
-25154,Antique_Gunpowder,Antique Gunpowder,3,0,,10,,,,,,,,,,,,,{},{},{}
-25155,Schwartz's_Honor_Token,Schwarz's Honor Token,3,0,,0,,,,,,,,,,,,,{},{},{}
-25156,Piece_of_Chimera,Piece of Chimera,3,0,,10,,,,,,,,,,,,,{},{},{}
-25157,Fallen_Leaves_Branch,Fallen Leaves Branch,3,0,,10,,,,,,,,,,,,,{},{},{}
-25158,Core_Jelly,Core Jelly,3,0,,10,,,,,,,,,,,,,{},{},{}
-25159,Heart_Hunter_Seal,Heart Hunter's Seal,3,0,,10,,,,,,,,,,,,,{},{},{}
-25160,Borrowed_Book,Borrowed Book,3,0,,0,,,,,,,,,,,,,{},{},{}
-25161,Delicious_Handmade_Cookie,Delicious Handmade Cookie,3,0,,0,,,,,,,,,,,,,{},{},{}
-25162,Crispy_Anchovy,Crispy Anchovy,3,0,,0,,,,,,,,,,,,,{},{},{}
-25163,Arms_Shop_Ad,Arms Shop Ad,3,0,,0,,,,,,,,,,,,,{},{},{}
-25164,Fresh_Tea_Leaves,Fresh Tea Leaves,3,0,,0,,,,,,,,,,,,,{},{},{}
-25165,High_Class_Tea,High Class Tea,3,0,,0,,,,,,,,,,,,,{},{},{}
-25166,Very_Shining_Ring,Very Shining Ring,3,0,,0,,,,,,,,,,,,,{},{},{}
-25167,Old_Letter,Old Letter,3,0,,0,,,,,,,,,,,,,{},{},{}
-25179,Blessing_Star,Blessing Star,3,0,,0,,,,,,,,,,,,,{},{},{}
-25180,Old_Rings,Old Rings,3,0,,0,,,,,,,,,,,,,{},{},{}
-25181,Wood_Rosary,Wood Rosary,3,0,,0,,,,,,,,,,,,,{},{},{}
-25182,Assassin's_Mark_Dagger,Assassin's Mark Dagger,3,0,,0,,,,,,,,,,,,,{},{},{}
-25183,Decorated_Archer's_Thimble,Decorated Archer's Thimble,3,0,,0,,,,,,,,,,,,,{},{},{}
-25184,Portable_Sewingbox,Portable Sewingbox,3,0,,0,,,,,,,,,,,,,{},{},{}
-25185,Locket_Pendant,Locket Pendant,3,0,,0,,,,,,,,,,,,,{},{},{}
-25187,Slug_Bullet,Slug Bullet,3,1200,,1200,,,,,,,,,,,,,{},{},{}
-25223,Para_Team_Coin,Eden Group Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-25231,Suspicious_Bottle,Suspicious Bottle,3,1000,,10,,,,,,,,,,,,,{},{},{}
-25232,Cheap_Lubricant,Cheap Lubricant,3,1000,,10,,,,,,,,,,,,,{},{},{}
-25233,Cotton_Tufts,Cotton Tufts,3,1000,,10,,,,,,,,,,,,,{},{},{}
-25238,New_Normal_Lubricant,New Normal Lubricant,3,0,,0,,,,,,,,,,,,,{},{},{}
-25239,New_Advanced_Lubricant,New Advanced Lubricant,3,0,,0,,,,,,,,,,,,,{},{},{}
-25246,Juice_Mix_Package,Juice Mix Package,3,0,,0,,,,,,,,,,,,,{},{},{}
-25247,Purple_Ore,Purple Ore,3,0,,0,,,,,,,,,,,,,{},{},{}
-25248,Purple_Ore_Crate,Purple Ore Crate,3,0,,0,,,,,,,,,,,,,{},{},{}
-25249,Buffalo_Bandit_Mane,Buffalo Bandit Mane,3,0,,0,,,,,,,,,,,,,{},{},{}
-25250,Rock_Ridge_Coin,Rock Ridge Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-25256,Hazy_Dream_Fragment,Hazy Dream Fragment,3,0,,10,,,,,,,,,,,,,{},{},{}
-25257,Bloody_Love_Letter,Bloody Love Letter,3,780,,10,,,,,,,,,,,,,{},{},{}
-25258,Broken_Arrow,Broken Arrow,3,550,,10,,,,,,,,,,,,,{},{},{}
-25260,Fragment_of_Purple_Ore,Fragment of Purple Ore,3,0,,0,,,,,,,,,,,,,{},{},{}
-25271,Illusion_Stone,Illusion Stone,3,10,,0,,,,,,,,,,,,,{},{},{}
-25272,Illusion_Gemstone,Illusion Gemstone,3,0,,10,,,,,,,,,,,,,{},{},{}
-25276,Clean_Bone,Clean Bone,3,248,,10,,,,,,,,,,,,,{},{},{}
-25277,Deadly_Poison_Powder,Deadly Poison Powder,3,0,,10,,,,,,,,,,,,,{},{},{}
-25278,Bandits_Scarf,Bandit's Scarf,3,330,,10,,,,,,,,,,,,,{},{},{}
-25279,Crude_Ammo,Crude Ammo,3,300,,10,,,,,,,,,,,,,{},{},{}
-25280,Broken_Shotgun,Broken Shotgun,3,0,,10,,,,,,,,,,,,,{},{},{}
-25281,Crude_Scimitar,Crude Scimitar,3,0,,10,,,,,,,,,,,,,{},{},{}
-25282,Worn_Revolver,Worn Revolver,3,0,,10,,,,,,,,,,,,,{},{},{}
-25283,Brown_Muffler,Brown Muffler,3,420,,10,,,,,,,,,,,,,{},{},{}
-25284,Swamp_Bug_Shell,Swamp Bug Shell,3,0,,10,,,,,,,,,,,,,{},{},{}
-25285,Brown_Rat_Tail,Brown Rat Tail,3,0,,10,,,,,,,,,,,,,{},{},{}
-25290,Sweets_Festival_Coin,Sweets Festival Coin,3,0,,0,,,,,,,,,,,,,{},{},{}
-25375,Powerful_Soul_Essence,Powerful Soul Essence,3,0,,0,,,,,,,,,,,,,{},{},{}
-25377,Luxurious_Pet_Food,Luxurious Pet Food,3,0,,10,,,,,,,,,,,,,{},{},{}
-//
-25464,World_Moving_Rights,World Moving Rights,3,20,,0,,,,,,,,,,,,,{},{},{}
-//
-25670,M_M_Defense,Modification Module (Defense),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def; },{},{}
-25671,M_M_Magic_Defense,Modification Module (Magic Defense),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef; },{},{}
-25672,M_M_Vit,Modification Module (Vit),6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{}
-25673,M_M_Luk,Modification Module (Luk),6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{}
-25674,M_M_Str,Modification Module (Str),6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{}
-25675,M_M_Agi,Modification Module (Agi),6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{}
-25676,M_M_Int,Modification Module (Int),6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{}
-25677,M_M_Dex,Modification Module (Dex),6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{}
-25678,M_M_HP_recovery,Modification Module (HP recovery),6,20,,10,,,,,,,,,,,,,{ bonus bHPrecovRate,20; },{},{}
-25679,M_M_SP_recovery,Modification Module (SP recovery),6,20,,10,,,,,,,,,,,,,{ bonus bSPrecovRate,20; },{},{}
-25680,M_M_Spell5,Modification Module (Spell),6,20,,10,,,,,,,,,,,,,{ bonus bMatk,18; bonus bVariableCastrate,-10; },{},{}
-25681,M_M_Attack_Delay_4,Modification Module (Attack Speed),6,20,,10,,,,,,,,,,,,,{ bonus bAspdRate,10; },{},{}
-25682,M_M_Fatal4,Modification Module (Fatal),6,20,,10,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,4; },{},{}
-25683,M_M_Expert_Archer5,Modification Module (Expert Archer),6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,10; },{},{}
-25684,M_M_Vital,Modification Module (Vital),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; } },{},{}
-25685,M_M_Mental,Modification Module (Mental),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; } },{},{}
-25686,M_M_Heal,Modification Module (Heal),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val; },{},{}
-25687,M_M_Power,Modification Module (Power),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; } },{},{}
-25688,M_M_Magic,Modification Module (Magic),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; } },{},{}
-25689,M_M_Shooter,Modification Module (Shooter),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val; },{},{}
-25690,M_M_Fast,Modification Module (Fast),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; } },{},{}
-25691,M_M_Caster,Modification Module (Caster),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val; },{},{}
-25692,M_M_Critical,Modification Module (Critical),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; } },{},{}
-25693,M_M_Delay_After_skill,Modification Module (Delay after skill),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val; },{},{}
-25694,M_M_Fixed_Casting,Modification Module (Fixed Casting),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val; },{},{}
-25695,M_M_Above_All,Modification Module (Above All),6,20,,10,,,,,,,,,,,,,{ .@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,-5; } } },{},{}
-25696,M_M_Drain_Life,Modification Module (Drain Life),6,20,,10,,,,,,,,,,,,,{ bonus2 bHPDrainRate,20,2; },{},{}
-25697,M_M_Drain_Soul,Modification Module (Drain Soul),6,20,,10,,,,,,,,,,,,,{ bonus2 bSPDrainRate,10,1; },{},{}
-25698,M_M_Magic_Healing,Modification Module (Magic Healing),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC; },{},{}
-25699,M_M_Magic_Soul,Modification Module (Magic Soul),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC; },{},{}
-25700,M_M_Unlimited_Vital,Modification Module (Unlimited Vital),6,20,,10,,,,,,,,,,,,,{ autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */ },{},{}
-25701,M_M_Spell_Buster,Modification Module (Spell Buster),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */ },{},{}
-25702,M_M_Firing_Shot,Modification Module (Firing Shot),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{}
-25703,M_M_Overpower,Modification Module (Overpower),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{}
-25704,M_M_Fatal_Flash,Modification Module (Fatal Flash),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{}
-25705,M_M_Lucky_Strike,Modification Module (Lucky Strike),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ },{},{}
-//===================================================================
-// New Spears
-//===================================================================
-26007,Illusion_Spectral_Spear,Illusion Spectral Spear,5,20,,2000,240,,3,1,0x00004082,63,2,34,4,99,1,5,{ .@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; },{},{}
-26016,Royal_Knight's_Lance,Royal Knight's Lance,5,20,,1000,205,,1,2,0x00004082,63,2,34,3,175,1,5,{ .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15; },{},{}
-//===================================================================
-// New Staves
-//===================================================================
-26100,Paradise_Foxtail_Staff_II,Eden Group Foxtail Staff II,5,20,,0,135:165,,1,0,0x80000000,7,2,2,2,40,0,10,{ bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6; },{},{}
-26101,Paradise_Foxtail_Staff_III,Eden Group Foxtail Staff III,5,20,,0,150:195,,1,0,0x80000000,7,2,2,3,60,0,10,{ bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7; },{},{}
-26107,Elder_Staff,Elder Staff,5,0,,500,60:150,,1,3,0x00008110,63,2,2,3,100,1,10,{ .@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus; },{},{}
-26109,Illusion_Staff_of_Bordeaux,Illusion Staff of Bordeaux,5,20,,500,60:180,,1,2,0x00010200,58,2,2,4,99,1,10,{ bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); } },{},{}
-26110,CandyCaneRod,Candy Cane Rod,5,20,,500,10:140,,1,2,0x00818315,63,2,2,4,99,1,10,{ bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; } },{},{}
-26138,Hellfire_Staff,Hellfire Staff,5,20,,800,110:180,,1,2,0x00818314,63,2,2,4,175,1,23,{ .@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; },{},{}
-26139,Icicle_Staff,Icicle Staff,5,20,,800,110:180,,1,2,0x00818314,63,2,2,4,175,1,23,{ .@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; },{},{}
-26151,Rutilus_Stick-OS,Rutilus Stick-OS,5,20,,900,80:175,,1,2,0x00818315,63,2,2,4,130,1,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; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } } },{},{}
-// 26154,Spirit_Plumb,Spirit Plumb,5,20,,1100,70:160,,1,2,0x00000000,63,2,2,4,100,1,10,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SP_SPA",15; if (.@r >= 9) { bonus bVariableCastrate,-10; if (.@r >= 11) { bonus2 bSkillAtk,"SP_SWHOO",20; } } } },{},{}
-26155,Meowmeow_Foxtail,Meowmeow Foxtail,5,20,,1100,300:300,,1,2,0x80000000,7,2,2,4,100,1,10,{ .@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; } } } },{},{}
-26158,Crimson_Rose_Stick,Crimson Rose Stick,5,20,,700,100:180,,1,2,0x00000200,56,2,2,4,170,1,10,{ .@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; } },{},{}
-26159,Psychic_Spear_Rod,Psychic Spear Rod,5,20,,800,120:180,,1,2,0x00010000,56,2,2,4,170,1,10,{ .@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; } },{},{}
-26160,Dust_Grave,Dust Grave,5,20,,800,120:180,,1,2,0x00010000,56,2,2,4,170,1,10,{ .@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; },{},{}
-26161,Penitentia,Penitentia,5,20,,700,100:175,,1,2,0x00000100,56,2,2,4,170,1,10,{ .@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; } },{},{}
-//===================================================================
-// New Whips
-//===================================================================
-26200,Hippie_Rope,Hippie Rope,5,0,,1000,140,,2,2,0x00080000,56,0,2,3,100,1,14,{ .@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; },{},{}
-26212,Heart_Whip,Heart Whip,5,,,1200,100:190,,2,2,0x00080000,56,,2,4,170,1,14,{ .@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; },{},{}
-26213,Scarlet_Ribbon,Scarlet Ribbon,5,0,,1200,180,,2,2,0x00080000,56,0,2,4,170,1,14,{ .@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; },{},{}
-//===================================================================
-// More Cards
-//===================================================================
-27012,Kick_Step_Card,Kick Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,16,,,,,{ bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; } },{},{}
-27013,Kick_&_Kick_Card,Kick & Kick Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20); },{},{}
-27014,Green_Cenere_Card,Green Cenere Card,6,20,,10,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000; },{},{}
-27015,Repair_Robot_Turbo_Card,Repair Robot Turbo Card,6,20,,10,,,,,0xFFFFFFFF,63,2,769,,,,,{ bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3); },{},{}
-27016,Exploration_Rover_Turbo_Card,Exploration Rover Turbo Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bCriticalAddRace,RC_Formless,30; },{},{}
-27017,Scrap_Robots_Card,Scrap Robots Card,6,20,,10,,,,,0xFFFFFFFF,63,2,4,,,,,{ bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */ },{},{}
-27018,GC109_Card,GC109 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); },{},{}
-27019,DR815_Card,DR815 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120); },{},{}
-27020,T_W_O_Card,T W O Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10); },{},{}
-27025,Lich_Lord_Card,Lich Lord Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ 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; }"; },{},{}
-27026,Fire_Condor_Card,Fire Condor Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100; },{},{}
-27027,Fire_Sandman_Card,Fire Sandman Card,6,20,,10,,,,,0xFFFFFFFF,63,2,16,,,,,{ bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10; },{},{}
-27028,Fire_Frilldora_Card,Fire Frilldora Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ .@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7); },{},{}
-27029,Fire_Golem_Card,Fire Golem Card,6,20,,10,,,,,0xFFFFFFFF,63,2,32,,,,,{ bonus2 bSubEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5; },{},{}
-27030,Fulbuk_Card,Firebug Card,6,20,,10,,,,,0xFFFFFFFF,63,2,769,,,,,{ bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC; },{},{}
-27081,Angry_Moonlight_Flower_Card,Angry Moonlight Flower Card,6,20,,10,,,,,,,,16,,,,,{ skill "PA_PRESSURE",4; },{},{}
-27082,Angry_Nine_Tail_Card,Angry Nine Tail Card,6,20,,10,,,,,,,,16,,,,,{ .@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val; },{},{}
-27083,Resentful_Bongun_Card,Resentful Bongun Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,20; bonus bMatk,20; },{},{}
-27084,Resentful_Sohee_Card,Resentful Sohee Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; } },{},{}
-27085,Resentful_Munak_Card,Resentful Munak Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bMatk,15; },{},{}
-27086,Resentful_Soldier_Card,Resentful Soldier Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"TF_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } } },{},{}
-27087,Truthful_Wizard_Card,Truthful Wizard Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \"This is the truth!\"; }"; },{},{}
-27088,Fury_Hero_Card,Fury Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0; },{},{}
-27101,Sweet_Nightmare_Card,Sweet Nightmare Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,20; bonus bNoCastCancel; },{},{}
-27102,Matt_Drainliar_Card,Matt Drainliar Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Burning,10000; },{},{}
-27103,Living_Dead_Card,Living Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor; },{},{}
-27104,Furious_Dracula_Card,Furious Dracula Card,6,20,,10,,,,,,,,4,,,,,{ skill "PF_HPCONVERSION",1; },{},{}
-27105,Bomi_Card,Bomi Card,6,20,,10,,,,,,,,8,,,,,{ skill "HW_NAPALMVULCAN",4; },{},{}
-27106,Awaken_Pere_Card,Awaken Pere Card,6,20,,10,,,,,,,,16,,,,,{ if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); } },{},{}
-27107,Playing_Pere_Card,Playing Pere Card,6,20,,10,,,,,,,,8,,,,,{ bonus2 bAddEle,Ele_Neutral,20; },{},{}
-27108,Singing_Pere_Card,Singing Pere Card,6,20,,10,,,,,,,,128,,,,,{ bonus2 bMagicAddEle,Ele_Neutral,20; },{},{}
-27109,Jitterbug_Card,Jitterbug Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500; },{},{}
-27110,Furious_Gazeti_Card,Furious Gazeti Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLongAtkDef,20; },{},{}
-27111,Furious_Snowier_Card,Furious Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50; },{},{}
-27112,Furious_Ice Titan_Card,Furious Ice Titan Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,(5*(1+getrefine())); },{},{}
-27113,Awaken_Ktullanux_Card,Awaken Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine())); },{},{}
-27114,Ominous_Solider_Card,Ominous Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val; },{},{}
-27115,Ominous_Permeter_Card,Ominous Permeter Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; } },{},{}
-27116,Ominous_Heater_Card,Ominous Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; bonus bCritAtkRate,5; },{},{}
-27117,Ominous_Assaulter_Card,Ominous Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ .@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); },{},{}
-27118,Ominous_Freezer_Card,Ominous Freezer Card,6,20,,10,,,,,,,,64,,,,,{ 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; } },{},{}
-27119,Ominous_Turtle_General_Card,Ominous Turtle General Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25; },{},{}
-27120,Iara_Card,Iara Card,6,20,,10,,,,,,,,136,,,,,{ skill "PR_STRECOVERY",1; },{},{}
-27121,Piranha_Card,Piranha Card,6,20,,10,,,,,,,,64,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val; },{},{}
-27122,Curupira_Card,Curupira Card,6,20,,10,,,,,,,,2,,,,,{ .@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val; },{},{}
-27123,Tucan_Card,Toucan Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val; },{},{}
-27124,Jaguar_Card,Jaguar Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; },{},{}
-27125,Headless_Mule_Card,Headless Mule Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20; },{},{}
-27126,Boitata_Card,Boitata Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Insect,40; },{},{}
-27147,Humanoid_Chimera_Card,Humanoid Chimera Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,(BaseLevel >= 90 ? 15 : 5); },{},{}
-27148,Material_Chimera_Card,Material Chimera Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee,(BaseLevel >= 90 ? 20 : 10); },{},{}
-27149,Heart_Hunter_Card,Heart Hunter Card,6,20,,10,,,,,,,,2,,,,,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); } },{},{}
-27150,Toxic_Enchanted_Chimera_Card,Toxic Enchanted Chimera Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } },{},{}
-27151,Heart_Hunter_Evil_Card,Heart Hunter Evil Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,1000 + (readparam(bInt) >= 110 ? 5 : 0); bonus bMdef,5; },{},{}
-27152,Cutie_Card,Cutie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r; },{},{}
-27157,Wood_Goblin_Card,Wood Goblin Card,6,20,,10,,,,,,,,16,,,,,{ .@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; },{},{}
-27158,Les_Card,Les Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Wind,30; },{},{}
-27159,Uzhas_Card,Uzhas Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10); },{},{}
-27160,Vavayaga_Card,Vavayaga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bFlee,getrefine()*2; },{},{}
-27161,Mavka_Card,Mavka Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; },{},{}
-27162,Gopinich_Card,Gopinich Card,6,20,,10,,,,,,,,769,,,,,{ bonus bSPDrainValue,5; bonus bUseSPrate,50; },{},{}
-27163,Faceworm_Card,Faceworm Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3; },{},{}
-27164,Faceworm_Queen_Card,Faceworm Queen Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r; },{},{}
-27165,Dark_Faceworm_Card,Dark Faceworm Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3; },{},{}
-27166,Faceworm_Egg_Card,Faceworm Egg Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus bNearAtkDef,.@sub; bonus bMagicAtkDef,.@sub; },{},{}
-27167,Faceworm_Larva_Card,Faceworm Larva Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3; },{},{}
-27168,Irene_High_Elder_Card,Irene High Elder Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHit,10 + 5 * (getrefine()/3); },{},{}
-27169,Payon_Soldier_Card,Payon Soldier Card,6,20,,10,,,,,,,,2,,,,,{ .@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; },{},{}
-27170,Shotgun_Buffalo_Bandit_Card,Shotgun Buffalo Bandit Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAgi,7; bonus bHit,7; },{},{}
-27171,Revolver_Buffalo_Bandit_Card,Revolver Buffalo Bandit Card,6,20,,10,,,,,,,,8,,,,,{ bonus bStr,4; bonus2 bAddClass,Class_All,4; },{},{}
-27172,Scimitar_Buffalo_Bandit_Card,Scimitar Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@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; },{},{}
-27173,Elite_Shotgun_Buffalo_Bandit_Card,Elite Shotgun Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus; },{},{}
-27174,Elite_Revolver_Buffalo_Bandit_Card,Elite Revolver Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus; },{},{}
-27175,Elite_Scimitar_Buffalo_Bandit_Card,Elite Scimitar Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10; },{},{}
-27176,Brown_Rat_Card,Brown Rat Card,6,20,,10,,,,,,,,4,,,,,{ .@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10); },{},{}
-27177,Marsh_Arclouse_Card,Marsh Arclouse Card,6,20,,10,,,,,,,,4,,,,,{ .@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10); },{},{}
-27178,Gaster_Card,Gaster Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50; },{},{}
-27179,Coyote_Card,Coyote Card,6,20,,10,,,,,,,,64,,,,,{ bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp; },{},{}
-27180,Mechaspider_Card,Mechaspider Card,6,20,,10,,,,,,,,128,,,,,{ bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; },{},{}
-27181,Airship_Raid_Card,Airship Raid Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2; },{},{}
-27182,Captain_Felock_Card,Captain Felock Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30; },{},{}
-27183,Gigantes_Card,Gigantes Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,-3; } },{},{}
-27184,Knight_Sakray_Card,Knight Sakray Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30; },{},{}
-27196,Nihil_M_Heine_Card,Nihil M. Heine Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddSize,Size_Small,15; },{},{}
-27197,Agnes_Lugenburg_Card,Agnes Lugenburg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; },{},{}
-27198,Jurgen_Wigner_Card,Jurgen Wigner Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,15; },{},{}
-27199,Spica_Nerius_Card,Spica Nerius Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,15; },{},{}
-27249,Arhi_Card,Arhi Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15; },{},{}
-27250,Dio_Anemos_Card,Dio Anemos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5; },{},{}
-27251,Geffen_Gang_Member_Card,Geffen Gang Member Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,3; bonus bAspdRate,5; },{},{}
-27252,Geffen_Bully_Card,Geffen Bully Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,5; bonus bAspdRate,3; },{},{}
-27253,Geffen_Shoplifter_Card,Geffen Shoplifter Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5; },{},{}
-27254,Faymont_Card,Faymont Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10; },{},{}
-27255,Ordre_Card,Ordre Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; },{},{}
-27256,Blut_Hase_Card,Blut Hase Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5; },{},{}
-27257,Kuro_Akuma_Card,Kuro Akuma Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5; },{},{}
-27258,Ifodes_Card,Ifodes Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,3; bonus bAspdRate,5; },{},{}
-27259,Licheniyes_Card,Licheniyes Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5; },{},{}
-27260,Odoric_Card,Odoric Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAspdRate,3; bonus bLongAtkRate,5; },{},{}
-27261,Ju_Card,Ju Card,6,20,,10,,,,,,,,2,,,,,{ .@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; },{},{}
-27262,Dwigh_Card,Dwigh Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20; },{},{}
-27263,Fay_Kanavian_Card,Fay Kanavian Card,6,20,,10,,,,,,,,64,,,,,{ autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }"; },{},{}
-27264,Evil_Shadow_Card,Evil Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30; },{},{}
-27265,Evil_Fanatics_Card,Evil Fanatics Card,6,20,,10,,,,,,,,2,,,,,{ 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; },{},{}
-27286,Colorful_Teddy_Bear_Card,Colorful Teddy Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15; },{},{}
-27287,Shiny_Teddy_Bear_Card,Shiny Teddy Bear Card,6,20,,10,,,,,,,,64,,,,,{ bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine()); },{},{}
-27288,Hardworking_Pitman_Card,Hardworking Pitman Card,6,20,,10,,,,,,,,16,,,,,{ .@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val; },{},{}
-27289,Soul_Fragment_Card,Soul Fragment Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15; },{},{}
-27290,Haunted_Obsidian_Card,Haunted Obsidian Card,6,20,,10,,,,,,,,4,,,,,{ .@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } } },{},{}
-27291,Ancient_Tri_Joint_Card,Ancient Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bMaxHPrate,-1; },{},{}
-27292,Ancient_Stalactic_Golem_Card,Ancient Stalactic Golem Card,6,20,,10,,,,,,,,4,,,,,{ .@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } } },{},{}
-27293,Ancient_Megalith_Card,Ancient Megalith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,30; bonus bMaxSPrate,-1; },{},{}
-27294,Ancient_Tao_Gunka_Card,Ancient Tao Gunka Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val; },{},{}
-27295,Ancient_Stone_Shooter_Card,Ancient Stone Shooter Card,6,20,,10,,,,,,,,4,,,,,{ .@luk = readparam(bLuk); .@aspd = .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,.@aspd; bonus bCritAtkRate,.@crit; },{},{}
-27296,Ancient_Wootan_Shooter_Card,Ancient Wootan Shooter Card,6,20,,10,,,,,,,,4,,,,,{ .@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } } },{},{}
-27297,Ancient_Wootan_Fighter_Card,Ancient Wootan Fighter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,5; bonus bCritAtkRate,10; },{},{}
-27298,Ancient_Wootan_Defender_Card,Ancient Wootan Defender Card,6,20,,10,,,,,,,,32,,,,,{ .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val; },{},{}
-27304,E_EA2S_Card,E EA2S Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,50; },{},{}
-27305,EL_A17T_Card,EL A17T Card,6,20,,10,,,,,,,,136,,,,,{ bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */ },{},{}
-27306,Bellare_Card,Bellare Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-27307,Greater_Bellare_Card,Greater Bellare Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-27308,Sanare_Card,Sanare Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val; },{},{}
-27309,Greater_Sanare_Card,Greater Sanare Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val; },{},{}
-27310,Plaga_Card,Plaga Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val; },{},{}
-27311,Mutant_Plaga_Card,Mutant Plaga Card,6,20,,10,,,,,,,,2,,,,,{ 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); } },{},{}
-27312,Dolor_Card,Dolor Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddRace,RC_Demon,5; },{},{}
-27313,Mutant_Dolor_Card,Mutant Dolor Card,6,20,,10,,,,,,,,2,,,,,{ 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; } } },{},{}
-27314,Venenum_Card,Venenum Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bAddRace,RC_Brute,15; },{},{}
-27315,Mutant_Venenum_Card,Mutant Venenum Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bMagicAddRace,RC_Brute,15; },{},{}
-27316,Twin_Caput_Card,Twin Caput Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10; },{},{}
-27317,Mutant_Twin_Caput_Card,Mutant Twin Caput Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddRace,RC_Formless,5; },{},{}
-27318,Miguel_Card,Miguel Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10; },{},{}
-27319,R48_85_BESTIA_Card,R48-85-BESTIA Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Poison,40; },{},{}
-27320,E_EA1L_card,E-EA1L card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val; },{},{}
-// 27321,Despair_God_Morocc_Card,Despair God Morocc Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */ },{},{}
-27322,Demon_God's_Apostle_Ahat_Card,Demon God's Apostle Ahat Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxSPrate,5; },{},{}
-27323,Demon_God's_Apostle_Shnaim_Card,Demon God's Apostle Shnaim Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHPrate,5; },{},{}
-27324,Brinaranea_Card,Brinaranea Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAtkEle,Ele_Water,15; },{},{}
-27325,Muspellskoll_Card,Muspellskoll Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Fire,30; },{},{}
-27326,Morocc's_Minion_Card,Morocc's Minion Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20; },{},{}
-27327,Grim_Reaper_Ankou_Card,Grim Reaper Ankou Card,6,20,,10,,,,,,,,769,,,,,{ .@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 */ },{},{}
-27328,Corrupt_Life_Card,Corrupt Life Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50; },{},{}
-27330,Kronecker_Card,Kronecker Card,6,20,,10,,,,,,,,8,,,,,{},{},{}
-27331,Kronecker_G_Heine_Card,Kronecker G. Heine Card,6,20,,10,,,,,,,,8,,,,,{ bonus bVariableCastrate,-5; },{},{}
-27332,Skia_Card,Skia Card,6,20,,10,,,,,,,,128,,,,,{},{},{}
-27333,Skia_Nerius_Card,Skia Nerius Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAspdRate,5; },{},{}
-27334,Chaotic_Baphomet_Card,Chaotic Baphomet Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5; },{},{}
-27335,Chaotic_Baphomet_Junior_Card,Chaotic Baphomet Junior Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritical,readparam(bAgi)/15; },{},{}
-27336,Chaotic_Sidewinder_Card,Chaotic Sidewinder Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; },{},{}
-27337,Chaotic_Hunter_Fly_Card,Chaotic Hunter Fly Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15; },{},{}
-27338,Chaotic_Mantis_Card,Chaotic Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{}
-27339,Chaotic_Ghostring_Card,Chaotic Ghostring Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25; },{},{}
-27340,Chaotic_Killer_Mantis_Card,Chaotic Killer Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritAtkRate,3; },{},{}
-27341,Chaotic_Poporing_Card,Chaotic Poporing Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15; },{},{}
-27342,Chaotic_Stem_Worm_Card,Chaotic Stem Worm Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10; },{},{}
-27343,Chaotic_Acolyte_Card,Chaotic Acolyte Card,6,20,,10,,,,,,,,128,,,,,{ bonus bDelayrate,-4; },{},{}
-27346,Rigid_Muspellskoll_Card,Rigid Muspellskoll Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; },{},{}
-27347,Rigid_Kaho_Card,Rigid Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Earth,10; },{},{}
-27348,Rigid_Lava_Golem_Card,Rigid Lava Golem Card,6,20,,10,,,,,,63,2,2,,,,,{ .@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7); },{},{}
-27349,Rigid_Explosion_Card,Rigid Explosion Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15; },{},{}
-27350,Rigid_Earth_Deleter_Card,Rigid Earth Deleter Card,6,20,,10,,,,,,,,768,,,,,{ .@r = getrefine(); bonus bMaxSPrate,2+(.@r/2); },{},{}
-27351,Rigid_Sky_Deleter_Card,Rigid Sky Deleter Card,6,20,,10,,,,,,,,768,,,,,{ bonus bMaxHPrate,5; },{},{}
-27352,Rigid_Nightmare_Terror_Card,Rigid Nightmare Terror Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,5; },{},{}
-27353,Rigid_Blazer_Card,Rigid Blazer Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15; },{},{}
-27354,Contaminated_Raydric_Card,Contaminated Raydric Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,5; },{},{}
-27355,Contaminated_Raydric_Archer_Card,Contaminated Raydric Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{}
-27356,Frozen_Gargoyle_Card,Frozen Gargoyle Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20; },{},{}
-27357,Contaminated_Sting_Card,Contaminated Sting Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,100+25*(getrefine()/3); },{},{}
-27358,Prison_Breaker_Card,Prison Breaker Card,6,20,,10,,,,,,,,4,,,,,{ 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; },{},{}
-27359,Ice_Ghost_Card,Ice Ghost Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Water,15; },{},{}
-27360,Flame_Ghost_Card,Flame Ghost Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Fire,15; },{},{}
-27361,Contaminated_Wanderer_Card,Contaminated Wanderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30; },{},{}
-27362,Contaminated_Spider_Queen_Card,Contaminated Spider Queen Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100; },{},{}
-27363,Contaminated_Dark_Lord_Card,Contaminated Dark Lord Card,6,20,,10,,,,,,,,8,,,,,{ bonus bAspd,1; },{},{}
-//===================================================================
-// New Katars
-//===================================================================
-28000,Thanos_Katar,Thanos Katar,5,10,,1800,220:80,,1,1,0x00001000,56,2,34,4,120,1,16,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-28001,Katar_Of_Evil_Slayer,Evil Slayer Ripper Katar,5,0,,1200,120,,1,1,0x00001000,63,2,34,3,100,1,16,{ 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; } },{},{}
-28002,Half_BF_Katar2,Half BF Katar2,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon; },{},{}
-28005,Ru_Blue_Katar,Blue Katar,5,10,,1200,190,,1,1,0x00001000,56,2,34,3,100,1,16,{ bonus bAgi,5; bonus bStr,5; },{},{}
-28006,Ru_Gold_Katar,Ru Gold Katar,5,0,,1200,190,,1,2,0x00001000,56,2,34,3,120,1,16,{ bonus bAgi,8; bonus bStr,8; },{},{}
-28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00001000,63,2,34,3,70,1,16,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
-28008,Katar_of_Vicious_Mind,Katar of Vicious Mind,5,20,,1800,180,,1,1,0x00001000,63,2,34,4,160,1,16,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{}
-28010,Juliette_D._Rachel,Juliette D. Rachel,5,20,,2500,300,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon; },{},{}
-28011,Unity_Katar,Unity Katar,5,20,,650,123,,1,1,0x00001000,63,2,34,3,1,1,16,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-28022,Illusion_Infiltrator,Illusion Infiltrator,5,0,,1500,200,,1,2,0x00001000,58,2,34,4,100,1,16,{ bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player,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; },{},{}
-28023,Illusion_Sharpened_Legbone_of_Ghoul,Illusion Sharpened Legbone of Ghoul,5,0,,1700,220,,1,2,0x00001000,58,2,34,3,100,1,16,{ autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }"; },{},{}
-28038,Meuchler-OS,Meuchler-OS,5,20,,1300,190,,1,2,0x00001000,63,2,34,4,130,1,16,{ .@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; } } } },{},{}
-28042,Ripper_Cross,Ripper Cross,5,20,,1500,250,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@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; },{},{}
-28044,Agudo_Filo,Agudo Filo,5,20,,2000,270,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@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; } },{},{}
-//===================================================================
-// New Axes
-//===================================================================
-28100,Thanos_Axe,Thanos Axe,5,10,,4000,300:80,,1,1,0x000444A2,56,2,34,4,120,1,7,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; }
-28101,Tornado_Axe,Axe Tornado,5,10,,4000,320,,,1,0x00000400,56,2,34,4,100,1,7,{ bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; },{},{}
-28102,Half_BF_Two_Handed_Axe1,Half BF Two Handed Axe1,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-28103,Ru_Blue_Axe_M,Blue Twohand Axe,5,10,,3000,330,,1,1,0x00000400,56,2,34,3,1,1,7,{ bonus bStr,5; bonus bVit,5; },{},{}
-28104,Ru_Gold_Axe_M,Ru Gold Axe M,5,0,,3000,330,,1,2,0x00000400,56,2,34,3,120,1,7,{ bonus bStr,8; bonus bVit,8; },{},{}
-28105,Infinity_Axe,Infinity Axe,5,10,,500,265,,1,1,0x000444A2,56,2,34,4,100,1,7,{},{},{}
-28106,Crimson_Two-Handed_Axe,Crimson Two-Handed Axe,5,20,,2000,200,,1,2,0x000444A2,63,2,34,3,70,1,7,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; },{},{}
-28107,Two_Handed_Axe_of_Vicious_Mind,Two Handed Axe of Vicious Mind,5,20,,2500,250,,1,1,0x000444A2,63,2,34,4,160,1,7,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{}
-28110,Unity_Two-Handed_Axe,Unity Two-Handed Axe,5,20,,1000,190,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-28116,Mine_Worker's_Pickaxe,Mine Worker's Pickaxe,5,10,,4000,300,,1,2,0x00000400,56,2,34,3,100,1,7,{ 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; } },{},{}
-28136,Blasti-OS,Blasti-OS,5,20,,4500,400,,1,2,0x00000400,56,2,34,4,130,1,7,{ .@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; },{},{}
-28138,Maxi_Spanner,Maxi Spanner,5,0,,4500,340,,1,2,0x00000400,56,2,34,4,170,1,7,{ .@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; },{},{}
-//===================================================================
-// New Guns
-//===================================================================
-28200,END_OF_HORIZO,End Of The Horizon,5,2700000,,2400,410,,9,1,0x40000000,63,2,34,4,110,1,21,{},{},{}
-28201,Southern_Cross_R,Southern Cross,5,2800000,,2000,480,,9,0,0x40000000,63,2,34,4,141,1,21,{ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; },{},{}
-28202,Southern_Cross_R_,Southern Cross,5,2800000,,2000,480,,9,1,0x40000000,63,2,34,4,141,1,21,{ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; },{},{}
-28203,Half_BF_Rifle1,Half BF Rifle1,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon; },{},{}
-28204,Half_BF_Shotgun1,Half BF Shotgun1,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{}
-28223,Finisher,Finisher,5,20,,2000,200,,9,2,0x40000000,63,2,34,3,120,1,18,{ .@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; } } },{},{}
-28224,Dustfire,Dustfire,5,20,,1300,300,,9,2,0x40000000,63,2,34,3,120,1,20,{ 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; } } },{},{}
-28225,Burning_Rose,Burning Rose,5,20,,2500,200,,9,2,0x40000000,63,2,34,3,120,1,19,{ bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } } },{},{}
-28226,Avenger,Avenger,5,20,,1800,350,,9,2,0x40000000,63,2,34,3,120,1,21,{ bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } } },{},{}
-28240,Calf_Kingcobra,Calf Kingcobra,5,0,0,900,230,,9,2,0x40000000,63,2,34,4,150,1,18,{ .@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; } },{},{}
-28241,Calf_Diamondback,Calf Diamondback,5,0,,3000,220,,9,2,0x40000000,63,2,34,4,150,1,19,{ .@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; } },{},{}
-28242,Calf_Anaconda,Calf Anaconda,5,10,,1400,305,,9,2,0x40000000,63,2,34,4,150,1,20,{ .@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; } },{},{}
-28243,Calf_Python,Calf Python,5,10,0,2000,360,,9,2,0x40000000,63,2,34,4,150,1,21,{ 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); } },{},{}
-28244,Illusion_Gate_Keeper_DD,Illusion Gate Keeper DD,5,0,,1300,240,,9,2,0x40000000,63,2,34,4,120,1,20,{ .@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; },{},{}
-28253,HR-S55-OS,HR-S55-OS,5,20,,1000,250,,9,2,0x41000000,63,2,34,4,130,1,18,{ .@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; } } } },{},{}
-28254,Illusion_Butcher,Illusion Butcher,5,20,,2500,210,,9,2,0x41000000,63,2,34,4,120,1,19,{ .@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Demon,30; } } } },{},{}
-28255,Master_Soul_Rifle,Master Soul Rifle,5,20,,1000,150:210,,9,2,0x40000000,63,2,34,4,100,1,18,{ .@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; } } },{},{}
-28256,Demon_Slayer_Shot,Demon Slayer Shot,5,20,,1400,275,,9,2,0x40000000,63,2,34,4,100,1,20,{ .@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; } } } },{},{}
-28257,Golden_Lord_Launcher,Golden Lord Launcher,5,20,,2100,320,,9,2,0x40000000,63,2,34,4,100,1,21,{ .@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; } },{},{}
-28258,The_Black,The Black,5,20,,2700,205,,9,2,0x40000000,63,2,34,4,100,1,19,{ .@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; } },{},{}
-//===================================================================
-// New Accessories
-//===================================================================
-28302,Vesper_Core01_,Vesper Core 01,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{}
-28303,Vesper_Core02_,Vesper Core 02,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{}
-28304,Vesper_Core03_,Vesper Core 03,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{}
-28305,Vesper_Core04_,Vesper Core 04,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{}
-28306,Bless_Of_Moon,Luna's Blessing,4,20,,100,,5,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100; },{},{}
-28315,RCC2013_ARMLET,RCC2013_ARMLET,4,200,,200,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{}
-28316,RCC2013_ARMLET_,RCC2013_ARMLET_,4,200,,200,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{}
-28317,RCC2013_RING,RCC2013_RING,4,200,,200,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{}
-28318,RCC2013_RING_,RCC2013_RING_,4,200,,200,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{}
-28310,Earring_Of_Sarah_L,Sarah's Left Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,145,0,,{ skill "AL_HEAL",1; },{},{}
-28311,Earring_Of_Sarah_R,Sarah's Right Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,145,0,,{ skill "AL_TELEPORT",1; },{},{}
-28320,Assassin's_Despair,Assassin's Despair,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAspd,1; },{},{}
-28321,Falconer_Claw,Falconer Claw,4,0,,100,,5,,1,0x00000800,63,2,136,,80,0,,{ bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; },{},{}
-28322,Falconer_Glove,Falconer Glove,4,0,,100,,5,,1,0x00000800,63,2,136,,80,0,,{ bonus bDex,1; bonus bUseSPrate,-5; },{},{}
-28326,Broken_Chip_1,Broken Chips 01,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bStr,4; },{},{}
-28327,Broken_Chip_2,Broken Chips 02,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bInt,4; },{},{}
-28332,Jewel_Ring,Jewerly Ring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bLuk,20; autobonus "{ bonus bAspd,2; }",50,2000,BF_WEAPON|BF_MAGIC; },{},{}
-28333,Gold_PC_Room_Ring,Gold PC Room Ring,4,10,,0,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{}
-28342,Critical_Anklet,Critical Anklet,4,0,,200,,3,,1,0xFFFFFFFF,63,2,136,,,0,,{ bonus bCritical,5; },{},{}
-28352,Vesper_Gear_01,Vesper Gear 01,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bMatkRate,5; },{},{}
-28353,Vesper_Gear_02,Vesper Gear 02,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus2 bAddClass,Class_All,5; },{},{}
-28354,City_Map,City Map,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ /* todo */ },{},{}
-28355,Shining_Holy_Water_,Shining Holy Water,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ /* todo */ },{},{}
-28356,Prontera_Badge,Prontera Badge,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ /*warp "prontera",159,192; 15 mins cooldown */ },{},{}
-28357,Vesper_Gear_03,Vesper Gear 03,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bFlee,10; },{},{}
-28358,Cursed_Lucky_Clover,Cursed Lucky Clover,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5; },{},{ sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/ }
-28359,Vesper_Gear_04,Vesper Gear 04,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bHit,10; },{},{}
-28372,Imperial_Ring,Imperial Ring,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3; },{},{}
-28374,Foxtail_Ring,Foxtail Ring,4,20,,100,,0,,0,0x80000000,7,2,136,,1,0,,{ 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; },{},{}
-28377,Magical_Ring,Magical Ring,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,20,0,,{ 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; } },{},{}
-28379,Shadow_Ring,Shadow Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,0,{ .@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 */ },{},{}
-28380,Fresh_Grass_Necklace,Fresh Grass Necklace,4,20,,100,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; },{},{}
-28381,Cute_Grass_Necklace,Cute Grass Necklace,4,20,,10,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; },{},{}
-28382,Charm_Grass_Necklace,Charm Grass Necklace,4,20,,10,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; },{},{}
-28386,Fallen_Monk_Rosary,Fallen Monk Rosary,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,20,0,,{ 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; },{},{}
-28391,S_Thief_Earring,Thief Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }"; },{},{}
-28392,S_Archer_Earring,Archer Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }"; },{},{}
-28410,Sapphire_Wrist,Sapphire Wrist,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ 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; },{},{}
-28411,Emerald_Earring,Emerald Earring,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ 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; },{},{}
-28413,Lesser_Mackerel_Talisman,Lesser Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bVit,1; },{},{}
-28414,Intermediate_Mackerel_Talisman,Intermediate Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bVit,2; },{},{}
-28415,Greater_Mackerel_Talisman,Greater Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bVit,3; },{},{}
-28416,Lesser_Leaf_Talisman,Lesser Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bInt,1; },{},{}
-28417,Intermediate_Leaf_Talisman,Intermediate Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bInt,2; },{},{}
-28418,Greater_Leaf_Talisman,Greater Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bInt,3; },{},{}
-28419,Lesser_Rabbit_Talisman,Lesser Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bDex,1; },{},{}
-28420,Intermediate_Rabbit_Talisman,Intermediate Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bDex,2; },{},{}
-28421,Greater_Rabbit_Talisman,Greater Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bDex,3; },{},{}
-28422,Shiny_Branch_Talisman,Shiny Branch Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */ },{},{}
-28423,Fresh_Tuna_Talisman,Fresh Tuna Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; },{},{}
-28424,Chubby_Worm_Talisman,Chubby Worm Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */ },{},{}
-28425,Mercenary_Ring_Type_A,Mercenary Ring Type A,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,99,0,0,{ 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; } },{},{}
-28426,Mercenary_Ring_Type_B,Mercenary Ring Type B,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,99,0,0,{ bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; } },{},{}
-28429,Arquien's_Necklace,Arquien's Necklace,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,0,{ 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 */ },{},{}
-28430,Arch_Bishop_Ring,Arch Bishop Ring,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15; },{},{}
-28433,Luminous_Blue_Stone,Luminous Blue Stone,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ 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; } },{},{}
-28434,Fist_Fighter_Glove,Fist Fighter's Glove,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5; },{},{}
-28437,Hibram's_Gloves,Hibram's Gloves,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5; },{},{}
-28438,Fairy_Leaf_Powder,Fairy Leaf Powder,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5; },{},{}
-28441,Vigilante_Badge,Vigilante Badge,4,0,,200,,0,,0,0x00020000,56,2,136,,100,0,0,{ bonus bFlee,10; bonus bLongAtkRate,5; },{},{}
-28442,Hippie_Feather,Hippie Feather,4,0,,200,,0,,1,0x00080000,56,2,136,,100,0,0,{ bonus bHit,5; bonus bFlee,5; },{},{}
-28443,Para_Team_Str_Ring100,Awakened Eden Group Ring of Strength I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,2; },{},{}
-28444,Para_Team_Str_Necklace100,Awakened Eden Group Necklace of Strength I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bStr,1; },{},{}
-28445,Para_Team_Str_Ring115,Awakened Eden Group Ring of Strength II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus2 bAddClass,Class_All,3; },{},{}
-28446,Para_Team_Str_Necklace115,Awakened Eden Group Necklace of Strength II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bStr,2; },{},{}
-28447,Para_Team_Str_Ring130,Awakened Eden Group Ring of Strength III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus2 bAddClass,Class_All,4; },{},{}
-28448,Para_Team_Str_Necklace130,Awakened Eden Group Necklace of Strength III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bStr,3; },{},{}
-28449,Para_Team_Str_Ring145,Awakened Eden Group Ring of Strength IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus2 bAddClass,Class_All,5; },{},{}
-28450,Para_Team_Str_Necklace145,Awakened Eden Group Necklace of Strength IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bStr,4; },{},{}
-28451,Para_Team_Str_Ring160,Awakened Eden Group Ring of Strength V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1; },{},{}
-28452,Para_Team_Str_Necklace160,Awakened Eden Group Necklace of Strength V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bStr,4; skill "AL_TELEPORT",1; },{},{}
-28453,Para_Team_Magic_Ring100,Awakened Eden Group Ring of Magic I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bMatkRate,2; },{},{}
-28454,Para_Team_Magic_Necklace100,Awakened Eden Group Necklace of Magic I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bInt,1; },{},{}
-28455,Para_Team_Magic_Ring115,Awakened Eden Group Ring of Magic II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bMatkRate,3; },{},{}
-28456,Para_Team_Magic_Necklace115,Awakened Eden Group Necklace of Magic II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bInt,2; },{},{}
-28457,Para_Team_Magic_Ring130,Awakened Eden Group Ring of Magic III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bMatkRate,4; },{},{}
-28458,Para_Team_Magic_Necklace130,Awakened Eden Group Necklace of Magic III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bInt,3; },{},{}
-28459,Para_Team_Magic_Ring145,Awakened Eden Group Ring of Magic IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bMatkRate,5; },{},{}
-28460,Para_Team_Magic_Necklace145,Awakened Eden Group Necklace of Magic IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bInt,4; },{},{}
-28461,Para_Team_Magic_Ring160,Awakened Eden Group Ring of Magic V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bMatkRate,5; skill "AL_HEAL",1; },{},{}
-28462,Para_Team_Magic_Necklace160,Awakened Eden Group Necklace of Magic V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bInt,4; skill "AL_TELEPORT",1; },{},{}
-28463,Para_Team_Agi_Ring100,Awakened Eden Group Ring of Agility I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bLongAtkRate,1; },{},{}
-28464,Para_Team_Agi_Necklace100,Awakened Eden Group Necklace of Agility I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bDex,1; },{},{}
-28465,Para_Team_Agi_Ring115,Awakened Eden Group Ring of Agility II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bLongAtkRate,2; },{},{}
-28466,Para_Team_Agi_Necklace115,Awakened Eden Group Necklace of Agility II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bDex,2; },{},{}
-28467,Para_Team_Agi_Ring130,Awakened Eden Group Ring of Agility III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bLongAtkRate,3; },{},{}
-28468,Para_Team_Agi_Necklace130,Awakened Eden Group Necklace of Agility III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bDex,3; },{},{}
-28469,Para_Team_Agi_Ring145,Awakened Eden Group Ring of Agility IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bLongAtkRate,4; },{},{}
-28470,Para_Team_Agi_Necklace145,Awakened Eden Group Necklace of Agility IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bDex,4; },{},{}
-28471,Para_Team_Agi_Ring160,Awakened Eden Group Ring of Agility V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bLongAtkRate,4; skill "AL_HEAL",1; },{},{}
-28472,Para_Team_Agi_Necklace160,Awakened Eden Group Necklace of Agility V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bDex,4; skill "AL_TELEPORT",1; },{},{}
-28483,Royal_Guardian_Ring,Royal Guardian Ring,4,0,,10,,1,,1,0xFFFFFFFF,63,2,136,,99,,,{ .@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b; },{},{}
-28484,Rebel_Scarf,Rebel Scarf,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@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 */ },{},{}
-28485,Shinobi_Sash_H,Shinobi Sash H,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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"); },{},{}
-28491,Hunting_Knife,Hunting Knife,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk>=100)) { bonus bHit,5; bonus bCriticalLong,10; } },{},{}
-28492,Thieve_Guide_V1,Thieve's Guide Vol.1,4,20,,10,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; } },{},{}
-28495,Sheriffs_Left_Badge,Sheriff's Left Badge,4,0,,200,,0,,1,0xFFFFFFFF,63,2,128,,100,0,0,{ if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3; },{},{}
-28496,Sheriffs_Right_Badge,Sheriff's Right Badge,4,0,,200,,0,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5; },{},{}
-28499,Proof_of_Glory,Proof of Glory,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ 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; } },{},{}
-28500,Zealous_Necklace,Zealous Necklace,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{},{},{}
-28501,Horn_of_Kirin,Horn of Kirin,4,20,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; } },{},{}
-28502,Mob_Scarf,Mob Scarf,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,100,0,1568,{ skill "SA_SPELLBREAKER",2; },{},{}
-28503,Keraunos,Keraunos,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; },{},{}
-28506,Storm_Stone,Storm Stone,4,30000,,500,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5; },{},{}
-28507,Magician_Gloves,Magician's Gloves,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{ 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; },{},{}
-28508,Illusion_Skull_Ring,Illusion Skull Ring,4,0,,100,,0,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON; },{},{}
-28509,Illusion_Ring,Illusion Ring,4,0,,200,,0,,1,0xFFFFFFFE,63,2,136,,100,0,0,{ bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; } },{},{}
-28510,A_Vampire's_Servant,A Vampire's Servant,4,0,,100,,1,,1,0xFFFFFFFF,63,2,8,,100,0,,{ bonus2 bSPDrainRate,1000,1; },{},{}
-28513,JRO_Celine_Brooch,Celine's Brooch,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10; },{},{}
-28520,Egir_Ring,Egir Ring,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10; },{},{}
-28521,Giant's_Protection,Giant's Protection,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; } },{},{}
-28531,Blacksmith's_Gloves,Blacksmith's Gloves,4,20,,500,,,,1,0xFFFFFFFF,63,2,136,,80,0,,{ bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50; },{},{}
-28533,Chemical_Glove,Chemical Glove,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,,{ .@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); },{},{}
-28551,Imperial_Glove,Imperial Glove,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel; },{},{}
-//28560,Yin_Yang_Talisman,Yin Yang Talisman,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5; },{},{}
-28564,Valkyrie_Drop,Valkyrie Drop,4,20,,30,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@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; },{},{}
-28565,Perverse_Demon_Mask,Perverse Demon Mask,4,20,,60,,0,,1,0xFFFFFFFF,63,2,128,,80,0,0,{ .@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); },{},{}
-28573,Emerald_Ring,Emerald Ring,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@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; },{},{}
-28575,Verus_Core,Verus Core,4,10,,500,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{ bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; },{},{}
-28594,Temporal_Ring,Temporal Ring,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; },{},{}
-28598,Powered_Chip,Powered Chip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; },{},{}
-//===================================================================
-// More books
-//===================================================================
-28600,Ru_Blue_Book,Blue Book,5,10,,500,160,,1,1,0x00000100,56,2,2,3,100,1,15,{ bonus bAgi,5; bonus bDex,5; },{},{}
-28601,Ru_Gold_Book,Ru Gold Book,5,0,,500,160,,1,2,0x00000008,63,2,2,3,120,1,15,{ bonus bVit,8; bonus bInt,8; },{},{}
-28602,Demon_Hunting_Bible,Demon Hunting Bible,5,0,,500,30:170,,1,2,0x00000008,63,2,2,3,110,1,15,{ bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); },{},{}
-28604,Crimson_Bible,Crimson Bible,5,20,,450,45,,1,2,0x00410100,63,2,2,3,70,1,15,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{}
-28605,Book_of_Vicious_Mind,Book of Vicious Mind,5,20,,950,95,,1,1,0x00010100,63,2,2,4,160,1,15,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{}
-28606,Unity_Bible,Unity Bible,5,20,,220,42,,1,1,0x00410100,63,2,2,3,1,1,15,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{}
-28608,Elemental_Origin,Elemental Origin,5,0,,800,120:150,,1,2,0x00010000,56,2,2,3,100,1,15,{ .@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; },{},{}
-28612,Illusion_Apocalypse,Illusion Apocalypse,5,0,,800,170,,1,2,0x00410100,63,2,2,4,100,1,15,{ .@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; },{},{}
-28618,Book_of_the_Sun_God,Book of the Sun God,5,10,,500,180:170,,1,4,0x00010100,63,2,2,3,100,1,15,{ .@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; },{},{}
-28619,Prisoner_Diary,Prisoner's Diary,5,20,,800,210,,1,2,0x00410100,63,2,2,3,175,1,15,{ .@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; },{},{}
-28626,Illusion_Tablet,Illusion Tablet,5,0,,800,170,,1,2,0x00410100,63,2,2,4,100,1,15,{ .@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; },{},{}
-28629,Circuit_Board-OS,Circuit Board-OS,5,20,,1200,180,,1,2,0x00410100,63,2,2,4,130,1,15,{ .@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; } } } },{},{}
-// 28631,Thousand_Sun,Thousand Sun,5,20,,900,160,,1,2,0x00000000,63,2,2,4,100,1,15,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; if (.@r >= 9) { bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SJ_SOLARBURST",20; } } } },{},{}
-28633,Boltijin,Boltijin,5,20,,800,120:175,,1,2,0x00010000,56,2,2,4,170,1,15,{ .@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; },{},{}
-//===================================================================
-// More daggers
-//===================================================================
-28700,Ru_Gold_Dagger,Ru Gold Dagger,5,0,,1000,160,,1,2,0x00020000,56,2,2,3,120,1,1,{ bonus bStr,8; bonus bInt,8; },{},{}
-28701,Ru_Gold_Knife,Ru Gold Knife,5,0,,500,160,,1,2,0x00010000,56,2,2,3,120,1,1,{ bonus bVit,8; bonus bInt,8; },{},{}
-28702,Ru_Gold_Ashura,Ru Gold Ashura,5,0,,1000,150:150,,1,2,0x2000000,63,2,2,3,120,1,1,{},{},{}
-28703,Infinity_Dagger,Infinity Dagger,5,10,,500,125:100,,1,1,0x028F5EEF,56,2,2,4,100,1,1,{},{},{}
-28705,Crimson_Dagger,Crimson Dagger,5,20,,550,55,,1,2,0x028F5EEF,63,2,2,3,70,1,1,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{}
-28706,Dagger_of_Vicious_Mind,Dagger of Vicious Mind,5,20,,1050,105:50,,1,1,0x028F5EEF,63,2,2,4,160,1,1,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{}
-28717,Valkyrie_Knife,Valkyrie Knife,5,50,,100,50:50,,1,4,0x228F5EEF,63,2,2,4,70,1,1,{ .@r = getrefine(); .@b = readparam(bDex)/10; if (.@r>7) { .@c = .@r-7; if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; } } if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@c); bonus bMaxSP,300+(20*.@c); bonus bBaseAtk,100; bonus bMatk,150+(15*.@c); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@c; bonus bDex,(2*.@c)-(.@c*.@b); bonus bCritical,7*.@c; bonus bAspdRate,10*.@c; bonus bCritAtkRate,1*.@c; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage && .@c) { bonus bMaxHP,200*.@c; bonus bMaxSP,20*.@c; } 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*(.@c*.@b); } },{},{}
-28721,Monokage,Monokage,5,10,,800,100,,1,2,0x20000000,63,2,2,3,100,1,1,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; } },{},{}
-28725,Illusion_Moonlight_Dagger,Illusion Moonlight Dagger,5,20,,700,150,,1,1,0x028F5EEE,63,2,2,4,99,1,1,{ bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val; },{},{}
-28745,Illusion_Counter_Dagger,Illusion Counter Dagger,5,0,,900,170,,1,2,0x00810204,63,2,2,4,120,0,1,{ .@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; } } } },{},{}
-28755,Kuroiro-OS,Kuroiro-OS,5,20,,900,150:150,,1,2,0x22000000,63,2,2,4,130,1,1,{ .@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; },{},{}
-28762,Illusion_Bazerald,Illusion Bazerald,5,20,,500,120:170,,1,2,0x228F5EEE,63,2,2,4,120,1,1,{ 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; } } } },{},{}
-28763,Surudoi_Kaze,Surudoi Kaze,5,20,,1000,150,,1,2,0x22000000,63,2,2,4,100,1,1,{},{},{}
-28764,Kiri_no_Tsuyu,Kiri no Tsuyu,5,20,,1000,150,,1,2,0x22000000,63,2,2,4,100,1,1,{},{},{}
-28765,Judgement_Slasher,Judgement Slasher,5,20,,1100,195,,1,2,0x00001000,56,2,2,4,170,1,1,{},{},{}
-28766,Repent_Slasher,Repent Slasher,5,20,,700,100,,1,3,0x00001000,56,2,2,4,170,1,1,{},{},{}
-28767,Jack_The_Knife,Jack The Knife,5,20,,900,195,,1,2,0x00020000,56,2,2,4,170,1,1,{ .@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; },{},{}
-28768,Platinum_Dagger,Platinum Dagger,5,20,,1500,150:170,,1,2,0x00020000,56,2,2,4,170,1,1,{ .@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 */ },{},{}
-//===================================================================
-// More shields
-//===================================================================
-28900,Guardsmen's_Shield,Guardsmen's Shield,4,20,,3000,,30,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r; },{},{}
-28901,Cursed_Mad_Bunny,Cursed Mad Bunny,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ 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; } },{},{}
-28902,Mad_Bunny_,Mad Bunny,4,20,,100,,0,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ 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; } },{},{}
-28903,Scutum,Scutum,4,0,,500,,1,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ .@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{}
-28904,Unity_Guard,Unity Guard,4,20,,300,,60,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ if(BaseLevel<100) { bonus bDef,12*getrefine(); } },{},{}
-28905,Unity_Buckler,Unity Buckler,4,20,,300,,60,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); } },{},{}
-28906,Shield_Of_Flame,Shield Of Flame,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{}
-28907,Shield_Of_Gust,Shield Of Gust,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{}
-28908,Shield_Of_Water,Shield Of Water,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{}
-28909,Shield_Of_Earth,Shield Of Earth,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{}
-28910,Rectangular_Large_Sleeve,Rectangular Large Sleeve,4,20,,800,,80,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ bonus bLongAtkDef,5; .@r = getrefine(); if(.@r>=5) { bonus bLongAtkDef,5; } if(.@r>=7) { bonus bLongAtkDef,10; } if(.@r>=9) { bonus bLongAtkDef,15; } },{},{}
-28913,Ultralight_Magic_Shield,Ultralight Magic Shield,4,0,,100,,50,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@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; },{},{}
-28915,Bunker_Shield,Bunker Shield,4,20,,3500,,90,,1,0xFFFFFFFF,63,2,32,,50,1,1,{ .@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5; },{},{}
-28916,Gaia_Shield,Gaia Shield,4,20,,2000,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ 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; } } },{},{}
-28918,Shield_of_Chaos,Shield of Chaos,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1; },{},{}
-28920,Diamond_Shield,Diamond Shield,4,20,,1000,,50,,0,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); } },{},{}
-28921,Anemos_Shield,Anemos Shield,4,20,,3500,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ 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; } },{},{}
-28922,Illusion_Sacred_Mission,Illusion Sacred Mission,4,0,,1600,,190,,1,0x00004000,56,2,32,,120,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); },{},{}
-28929,Happy_Shield,Happy Shield,4,10,,3500,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus bMdef,10; },{},{}
-28941,Excelion_Shield,Excelion Shield,4,20,,1200,,95,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@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; } },{},{}
-28951,Nero_Shield,Nero Shield,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@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; } },{},{}
-28955,Fotia_Shield,Fotia Shield,4,20,,1000,,120,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@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; } },{},{}
-//===================================================================
-// Enchantment stones
-//===================================================================
-29000,Rune_of_Intellect_Lv_1,Rune of Intellect Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; } },{},{}
-29001,Rune_of_Intellect_Lv_2,Rune of Intellect Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; } },{},{}
-29002,Rune_of_Intellect_Lv_3,Rune of Intellect Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-29003,Rune_of_Dexterity_Lv_1,Rune of Dexterity Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; } },{},{}
-29004,Rune_of_Dexterity_Lv_2,Rune of Dexterity Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; } },{},{}
-29005,Rune_of_Dexterity_Lv_3,Rune of Dexterity Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-29006,Rune_of_Luck_Lv_1,Rune of Luck Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; } },{},{}
-29007,Rune_of_Luck_Lv_2,Rune of Luck Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; } },{},{}
-29008,Rune_of_Luck_Lv_3,Rune of Luck Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-29009,Rune_of_Vitality_Lv_1,Rune of Vitality Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; } },{},{}
-29010,Rune_of_Vitality_Lv_2,Rune of Vitality Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; } },{},{}
-29011,Rune_of_Vitality_Lv_3,Rune of Vitality Lv 3,6,20,,,,,,,,,,,,,,,{ .@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; } },{},{}
-29026,Def20,DEF+20,6,10,,,,,,,,,,,,,,,{ bonus bDef,20; },{},{}
-29061,Ambition1Lv,Mettle Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; bonus bHit,3; },{},{}
-29062,Ambition2Lv,Mettle Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,6; bonus bHit,6; },{},{}
-29063,Ambition3Lv,Mettle Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,9; bonus bHit,9; },{},{}
-29064,Ambition4Lv,Mettle Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,12; bonus bHit,12; },{},{}
-29065,Ambition5Lv,Mettle Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,15; bonus bHit,15; },{},{}
-29066,Ambition6Lv,Mettle Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,18; bonus bHit,18; },{},{}
-29067,Ambition7Lv,Mettle Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,21; bonus bHit,21; },{},{}
-29068,Ambition8Lv,Mettle Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,24; bonus bHit,24; },{},{}
-29069,Ambition9Lv,Mettle Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,27; bonus bHit,27; },{},{}
-29070,Ambition10Lv,Mettle Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,33; bonus bHit,30; },{},{}
-29071,Tab1Lv,Magic Essence Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,3; bonus bFixedCast,-100; },{},{}
-29072,Tab2Lv,Magic Essence Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,6; bonus bFixedCast,-200; },{},{}
-29073,Tab3Lv,Magic Essence Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,9; bonus bFixedCast,-300; },{},{}
-29074,Tab4Lv,Magic Essence Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,12; bonus bFixedCast,-400; },{},{}
-29075,Tab5Lv,Magic Essence Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,15; bonus bFixedCast,-500; },{},{}
-29076,Tab6Lv,Magic Essence Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,18; bonus bFixedCast,-600; },{},{}
-29077,Tab7Lv,Magic Essence Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,21; bonus bFixedCast,-700; },{},{}
-29078,Tab8Lv,Magic Essence Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,24; bonus bFixedCast,-800; },{},{}
-29079,Tab9Lv,Magic Essence Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,27; bonus bFixedCast,-900; },{},{}
-29080,Tab10Lv,Magic Essence Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,33; bonus bFixedCast,-1000; },{},{}
-29081,Expect1Lv,Acute Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,3; },{},{}
-29082,Expect2Lv,Acute Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,20; bonus bCritical,6; },{},{}
-29083,Expect3Lv,Acute Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,30; bonus bCritical,9; },{},{}
-29084,Expect4Lv,Acute Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,40; bonus bCritical,12; },{},{}
-29085,Expect5Lv,Acute Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,50; bonus bCritical,15; },{},{}
-29086,Expect6Lv,Acute Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,60; bonus bCritical,18; },{},{}
-29087,Expect7Lv,Acute Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,70; bonus bCritical,21; },{},{}
-29088,Expect8Lv,Acute Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,80; bonus bCritical,24; },{},{}
-29089,Expect9Lv,Acute Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,90; bonus bCritical,27; },{},{}
-29090,Expect10Lv,Acute Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,110; bonus bCritical,30; },{},{}
-29091,ArchLine1Lv,Master Archer Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,4; bonus bAspdRate,1; },{},{}
-29092,ArchLine2Lv,Master Archer Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,8; bonus bAspdRate,2; },{},{}
-29093,ArchLine3Lv,Master Archer Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,12; bonus bAspdRate,3; },{},{}
-29094,ArchLine4Lv,Master Archer Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,16; bonus bAspdRate,4; },{},{}
-29095,ArchLine5Lv,Master Archer Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,20; bonus bAspdRate,5; },{},{}
-29096,ArchLine6Lv,Master Archer Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,24; bonus bAspdRate,6; },{},{}
-29097,ArchLine7Lv,Master Archer Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,28; bonus bAspdRate,7; },{},{}
-29098,ArchLine8Lv,Master Archer Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,32; bonus bAspdRate,8; },{},{}
-29099,ArchLine9Lv,Master Archer Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,36; bonus bAspdRate,9; },{},{}
-29100,ArchLine10Lv,Master Archer Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,44; bonus bAspdRate,10; },{},{}
-29101,Steel1Lv,Adamantine Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,5; bonus bDef,15; },{},{}
-29102,Steel2Lv,Adamantine Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,10; bonus bDef,30; },{},{}
-29103,Steel3Lv,Adamantine Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,15; bonus bDef,45; },{},{}
-29104,Steel4Lv,Adamantine Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,20; bonus bDef,60; },{},{}
-29105,Steel5Lv,Adamantine Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,25; bonus bDef,75; },{},{}
-29106,Steel6Lv,Adamantine Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,30; bonus bDef,90; },{},{}
-29107,Steel7Lv,Adamantine Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,35; bonus bDef,105; },{},{}
-29108,Steel8Lv,Adamantine Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,40; bonus bDef,120; },{},{}
-29109,Steel9Lv,Adamantine Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,45; bonus bDef,135; },{},{}
-29110,Steel10Lv,Adamantine Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,55; bonus bDef,150; },{},{}
-29111,Mercy1Lv,Affection Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,5; bonus bMdef,3; },{},{}
-29112,Mercy2Lv,Affection Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,10; bonus bMdef,6; },{},{}
-29113,Mercy3Lv,Affection Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,15; bonus bMdef,9; },{},{}
-29114,Mercy4Lv,Affection Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,20; bonus bMdef,12; },{},{}
-29115,Mercy5Lv,Affection Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,25; bonus bMdef,15; },{},{}
-29116,Mercy6Lv,Affection Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,30; bonus bMdef,18; },{},{}
-29117,Mercy7Lv,Affection Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,35; bonus bMdef,21; },{},{}
-29118,Mercy8Lv,Affection Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,40; bonus bMdef,24; },{},{}
-29119,Mercy9Lv,Affection Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,45; bonus bMdef,27; },{},{}
-29120,Mercy10Lv,Affection Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,55; bonus bMdef,30; },{},{}
-29121,Goddess_of_Justice_A,Goddess of Justice A,6,10,,0,,,,,,,,,,,,,{ bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300; },{},{}
-29122,Goddess_of_Justice_S,Goddess of Justice S,6,10,,0,,,,,,,,,,,,,{ bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600; },{},{}
-29123,Goddess_of_Mercy_A,Goddess of Mercy A,6,10,,0,,,,,,,,,,,,,{ bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20; },{},{}
-29124,Goddess_of_Mercy_S,Goddess of Mercy S,6,10,,0,,,,,,,,,,,,,{ bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40; },{},{}
-29125,Goddess_of_Insight_A,Goddess of Insight A,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,5; bonus bCritical,5; },{},{}
-29126,Goddess_of_Insight_S,Goddess of Insight S,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,10; bonus bCritical,10; },{},{}
-29146,Item_Appraisal,Item Appraisal,6,10,,0,,,,,,,,,,,,,{ skill "MC_IDENTIFY",1; },{},{}
-29147,Resurrection,Resurrection,6,10,,0,,,,,,,,,,,,,{ skill "ALL_RESURRECTION",1; },{},{}
-29148,Leo_Stone,Leo Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bStr,1; },{},{}
-29149,Pisces_Stone,Pisces Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bInt,1; },{},{}
-29150,Capricorn_Stone,Capricorn Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bAgi,1; },{},{}
-29151,Aquarius_Stone,Aquarius Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bVit,1; },{},{}
-29152,Scorpio_Stone,Scorpio Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bDex,1; },{},{}
-29153,Taurus_Stone,Taurus Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bLuk,1; },{},{}
-29310,Racing_RK_1,Racing(Rune Knight) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29311,Racing_RK_2,Racing(Rune Knight) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29312,Racing_RK_3,Racing(Rune Knight) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29313,Racing_RG_1,Racing(Royal Guard) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29314,Racing_RG_2,Racing(Royal Guard) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29315,Racing_RG_3,Racing(Royal Guard) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29316,Racing_MC_1,Racing(Mechanic) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29317,Racing_MC_2,Racing(Mechanic) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29318,Racing_MC_3,Racing(Mechanic) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29319,Racing_GN_1,Racing(Geneticist) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29320,Racing_GN_2,Racing(Geneticist) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29321,Racing_GN_3,Racing(Geneticist) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29322,Racing_GC_1,Racing(Guillotine Cross) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29323,Racing_GC_2,Racing(Guillotine Cross) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29324,Racing_GC_3,Racing(Guillotine Cross) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29325,Racing_SC_1,Racing(Shadow Chaser) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29326,Racing_SC_2,Racing(Shadow Chaser) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29327,Racing_SC_3,Racing(Shadow Chaser) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29328,Racing_WL_1,Racing(Warlock) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29329,Racing_WL_2,Racing(Warlock) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29330,Racing_WL_3,Racing(Warlock) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29331,Racing_SO_1,Racing(Sorcerer) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29332,Racing_SO_2,Racing(Sorcerer) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29333,Racing_SO_3,Racing(Sorcerer) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29334,Racing_AB_1,Racing(Archbishop) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29335,Racing_AB_2,Racing(Archbishop) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29336,Racing_AB_3,Racing(Archbishop) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29337,Racing_SR_1,Racing(Sura) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29338,Racing_SR_2,Racing(Sura) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29339,Racing_SR_3,Racing(Sura) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29340,Racing_RA_1,Racing(Ranger) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29341,Racing_RA_2,Racing(Ranger) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29342,Racing_RA_3,Racing(Ranger) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29343,Racing_WM_1,Racing(Wanderers & Minstrel) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29344,Racing_WM_2,Racing(Wanderers & Minstrel) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29345,Racing_WM_3,Racing(Wanderers & Minstrel) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29346,Racing_GS_1,Racing(Gunslinger) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29347,Racing_GS_2,Racing(Gunslinger) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29348,Racing_GS_3,Racing(Gunslinger) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29349,Racing_NJ_1,Racing(Ninja)1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29350,Racing_NJ_2,Racing(Ninja)2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29351,Racing_NJ_3,Racing(Ninja)3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29352,Racing_SN_1,Racing(Super Novice) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29353,Racing_SN_2,Racing(Super Novice) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29354,Racing_SN_3,Racing(Super Novice) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29355,Racing_SU_1,Racing(Summoner) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29356,Racing_SU_2,Racing(Summoner) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29357,Racing_SU_3,Racing(Summoner) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29579,Racing_SG_1,Racing (Star Gladiator) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29580,Racing_SG_2,Racing (Star Gladiator) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29581,Racing_SG_3,Racing (Star Gladiator) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29582,Racing_SL_1,Racing (Soul Linker) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29583,Racing_SL_2,Racing (Soul Linker) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29584,Racing_SL_3,Racing (Soul Linker) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{}
-29594,Seyren_Memory,Seyren's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29595,Howard_Memory,Howard's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29596,Eremes_Memory,Eremes's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29598,Catherine_Memory,Catherine's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29599,Margaretha_Memory,Margaretha's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29600,Cecil_Memory,Cecil's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29601,Randel_Memory,Randel's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29602,Flamel_Memory,Flamel's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29603,Gertie_Memory,Gertie's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29604,Celia_Memory,Celia's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29605,Chen_Memory,Chen's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29606,Trentini_Memory,Trentini's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-29607,Alphoccio_Memory,Alphoccio's Memory,6,20,,0,,,,,,,,,,,,,{},{},{}
-//===================================================================
-// New Cards
-//===================================================================
-31006,LoVA_Hades_Card,LoVA Hades Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubRace,RC_Undead,10; },{},{}
-31007,LoVA_Realization_Hades_Card,LoVA Realization Hades Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10; },{},{}
-31008,LoVA_Lulu_Card,LoVA Lulu Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; } },{},{}
-31009,LoVA_Realization_Lulu_Card,LoVA Realization Lulu Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bHPRegenRate,1+BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; } },{},{}
-31010,LoVA_Kima_Card,LoVA Kima Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; } },{},{}
-31011,LoVA_Realization_Kima_Card,LoVA Realization Kima Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; } },{},{}
-31012,LoVA_Bahamut_Card,LoVA Bahamut Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; } },{},{}
-31013,LoVA_Realization_Bahamut_Card,LoVA Realization Bahamut Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; } },{},{}
-31014,LoVA_Ragnarok_Card,LoVA Ragnarok Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; } },{},{}
-31015,LoVA_Realization_Ragnarok_Card,LoVA Realization Ragnarok Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; } },{},{}
-31016,Decorated_Evil_Tree_Card,Decorated Evil Tree Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25; },{},{}
-31017,Vicious_Cookie_Card,Vicious Cookie Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2)); },{},{}
-31018,Evil_Dwelling_Box_Card,Evil Dwelling Box Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,300,ATF_MAGIC; /* unofficial chance [Secret] */ },{},{}
-31019,Creepy_Demon_Card,Creepy Demon Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,300,ATF_MAGIC; /* unofficial chance [Secret] */ },{},{}
-31020,Malicious_Baby_Ghost_Card,Malicious Baby Ghost Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,300,ATF_WEAPON; /* unofficial chance [Secret] */ },{},{}
-31021,Dancing_Marionette_Card,Dancing Marionette Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3; },{},{}
-31022,Abandoned_Teddy_Bear_Card,Abandoned Teddy Bear Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,100; /* unofficial chance [Secret] */ },{},{}
-31023,Celine_Kimi_Card,Celine Kimi Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,200+(50*getrefine()),BF_MAGIC,1; },{},{}
-//===================================================================
-// More Costumes
-//===================================================================
-31027,C_Pretty_Bear,Costume Pretty Bear,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1480,{},{},{}
-31028,C_Black_Cat_Hood,Costume Black Cat Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1481,{},{},{}
-31029,C_Pig_Nose,Costume Pig Nose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1482,{},{},{}
-31030,C_Tiger_Face,Costume Tiger Face,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,483,{},{},{}
-31031,C_Drooping_Pope_Casual,Costume Drooping Pope Casual,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1483,{},{},{}
-31032,C_Drooping_Luwmin,Costume Drooping Luwmin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1484,{},{},{}
-31033,C_Believers_Mask,Costume Believer's Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1485,{},{},{}
-31034,C_Pirates_Hood,Costume Pirates Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,592,{},{},{}
-31035,C_Bankruptcy_Of_Heart,Costume Bankruptcy of Heart,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,107,{},{},{}
-31036,C_Satto_Hat,Costume Used Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,227,{},{},{}
-31037,C_Beret,Costume Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,226,{},{},{}
-31038,C_Cheks_Bandana,Costume Cheks Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1174,{},{},{}
-31039,C_Crown_of_Old_King_Red,Costume Crown of Old King Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1491,{},{},{}
-31040,C_Magical_Feather,Costume Magical Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1279,{ hateffect(HAT_EF_MAGICAL_FEATHER,true); },{},{ hateffect(HAT_EF_MAGICAL_FEATHER,false); }
-31041,C_Cat_Lace_Hairband,Costume Cat Lace Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,816,{},{},{}
-31042,C_Survival_Circlet,Costume Survival Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1220,{},{},{}
-31043,C_Ribbon_White,Costume Ribbon White,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,248,{},{},{}
-31044,C_Drooping_Kitty_Pink,Costume Drooping Kitty Pink,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,276,{},{},{}
-31045,C_Blue_Rear_Ribbon,Costume Blue Rear Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1492,{},{},{}
-31046,C_White_Rose_Princess,Costume White Rose Princess,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1493,{},{},{}
-31047,C_First_Love_Cheek,Costume First Love Cheek,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1494,{},{},{}
-31048,C_White_Lily_Black_Ribbon,Costume White Lily Black Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1495,{},{},{}
-31049,C_Marin_Hat,Costume Marin Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,948,{},{},{}
-31050,C_Golden_Poring_Hat,Costume Golden Poring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1236,{},{},{}
-31051,C_Poring_Sun_Visor,Costume Poring Sun Visor,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1496,{},{},{}
-31052,C_Alchemist_Mask,Costume Alchemist Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1497,{},{},{}
-31053,C_Drooping_Eddga,Costume Drooping Eddga,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,495,{},{},{}
-31054,C_Sting_Hat,Costume Sting Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,504,{},{},{}
-31055,C_Poring_Soap_Pipe,Costume Poring Soap Pipe,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1499,{},{},{}
-31056,C_Furious_Wave,Costume Furious Wave,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */ },{},{ hateffect(HAT_EF_DOUBLEGUMGANG,false); }
-31057,C_Eremes_Guiles_Scarf_Black,Costume Eremes Guiles Scarf Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1501,{},{},{}
-31058,C_Gelato_Hat,Costume Gelato Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,777,{},{},{}
-31059,C_Sailor_Hat,Costume Sailor Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,798,{},{},{}
-31060,C_Starfish_Headband,Costume Starfish Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,793,{},{},{}
-31061,C_Nipper_Hairpin,Costume Nipper Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,470,{},{},{}
-31062,C_Eleanor_Wig,Costume Eleanor Wig,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1502,{},{},{}
-31063,C_Hair_Bun_Blue,Costume Hair Bun Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1503,{},{},{}
-31064,C_Hair_Bun_Red,Costume Hair Bun Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1504,{},{},{}
-31065,C_Hair_Bun_Yellow,Costume Hair Bun Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1505,{},{},{}
-31066,C_Hair_Bun_Green,Costume Hair Bun Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1506,{},{},{}
-31067,C_Hair_Bun_Black,Costume Hair Bun Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1507,{},{},{}
-31068,C_Hair_Bun_White,Costume Hair Bun White,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1508,{},{},{}
-31069,C_Hair_Bun_Crimson,Costume Hair Bun Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1509,{},{},{}
-31070,C_Hair_Bun_Purple,Costume Hair Bun Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1510,{},{},{}
-31071,C_Roll_Twin_Blue,Costume Roll Twin Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1511,{},{},{}
-31072,C_Roll_Twin_Red,Costume Roll Twin Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1512,{},{},{}
-31073,C_Roll_Twin_Yellow,Costume Roll Twin Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1513,{},{},{}
-31074,C_Roll_Twin_Green,Costume Roll Twin Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1514,{},{},{}
-31075,C_Roll_Twin_Black,Costume Roll Twin Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1515,{},{},{}
-31076,C_Roll_Twin_White,Costume Roll Twin White,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1516,{},{},{}
-31077,C_Roll_Twin_Crimson,Costume Roll Twin Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1517,{},{},{}
-31078,C_Roll_Twin_Purple,Costume Roll Twin Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1518,{},{},{}
-31079,C_Long_Pony_Blue,Costume Long Pony Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1519,{},{},{}
-31080,C_Long_Pony_Red,Costume Long Pony Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1520,{},{},{}
-31081,C_Long_Pony_Yellow,Costume Long Pony Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1521,{},{},{}
-31082,C_Long_Pony_Green,Costume Long Pony Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1522,{},{},{}
-31083,C_Long_Pony_Black,Costume Long Pony Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1523,{},{},{}
-31084,C_Long_Pony_White,Costume Long Pony White,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1524,{},{},{}
-31085,C_Long_Pony_Crimson,Costume Long Pony Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1525,{},{},{}
-31086,C_Long_Pony_Purple,Costume Long Pony Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1526,{},{},{}
-31087,C_Dwarf_Beard,Costume Dwarf Beard,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1349,{},{},{}
-31088,C_Mad_Hatter,Costume Mad Hatter,4,0,,0,,,,0,0xFFFFFFFF,63,2,5120,,1,0,1421,{},{},{}
-31089,C_Exploding_Crimson_Flame,Costume Exploding Crimson Flame,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1500,{ hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */ },{},{ hateffect(HAT_EF_BAKURETSU_HADOU,false); }
-31090,C_Angelring_Hat,Costume Angelring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,348,{},{},{}
-31091,C_Show_Me_The_Zeny,Costume Show Me The Zeny,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1528,{ hateffect(HAT_EF_GOLD_SHOWER,true); },{},{ hateffect(HAT_EF_GOLD_SHOWER,false); }
-31092,C_Rabbit_Ribbon_Hat,Costume Bunny Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,845,{},{},{}
-31093,C_Under_Lamp,Costume Under Lamp,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1531,{},{},{}
-31094,C_Dice_Hat,Costume Dice Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,494,{},{},{}
-31095,C_JP_EV01,Costume Mythical Baphomet Horns,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1532,{},{},{}
-31096,C_JP_EV02,Costume Dog Ears of Bau Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1533,{},{},{}
-31097,C_JP_EV03,Costume Bunny Ears of Minnie Doe Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1534,{},{},{}
-31098,C_JP_EV04,Costume Fox Ears of Tamamo Loa,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1535,{},{},{}
-31099,C_JP_EV05,Costume Headdress of Ontama Aria,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1536,{},{},{}
-31100,C_JP_EV06,Costume Hat of Dumpty Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1537,{},{},{}
-31101,C_JP_EV07,Costume Taini Hat Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1538,{},{},{}
-31102,C_JP_EV08,Costume Taini Hat Orange,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1539,{},{},{}
-31103,C_JP_EV09,Costume Taini Hat Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1540,{},{},{}
-31104,C_Taini_Hat,Costume Taini Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,722,{},{},{}
-31105,C_RO_Celebration_Hat,Costume RO Celebration Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1541,{},{},{}
-31106,C_Eyepatch_of_Peace,Costume Eyepatch of Peace,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{},{},{}
-31107,C_Eyepatch_of_Prosperity,Costume Eyepatch of Prosperity,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{},{},{}
-31113,C_Doctor_Headband,Costume Doctor headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,60,{},{},{}
-31114,C_Theater_Prop,Costume Theater Prop,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,80,{},{},{}
-31117,C_Hoplite_Helmet,Costume Hoplite Helmet,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,660,{},{},{}
-31118,C_Assassin_Skull_Mask,Costume Scratch Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,984,{},{},{}
-31119,C_Blue_Magicianhat,Costume Magician Hat Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,285,{},{},{}
-31120,C_Vampire_Familiar,Costume Vampire Familiar,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1548,{},{},{}
-31121,C_Stall_Of_Bat,Costume Stall Of Bat,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1549,{},{},{}
-31122,C_Bloody_Stop_Bandage,Costume Bloody Stop Bandage,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1550,{},{},{}
-31123,C_Ghostring_Tall_Hat,Costume Ghostring Tall Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1551,{},{},{}
-31124,C_Ribbon_Chef_Hat,Costume Ribbon Chief Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,785,{},{},{}
-31125,C_QueenAnzRevenge,Costume Queen Anne's Revenge,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1360,{},{},{}
-31126,C_Nestea_Hat,Costume Nestea Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,756,{},{},{}
-31127,C_Flag_Cap,Costume Flag Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,482,{},{},{}
-31128,C_Bride_Mask,Costume Bride Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,223,{},{},{}
-31129,C_Munchs_Scream,Costume Scratch Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,75,{},{},{}
-31130,C_Indian_Hairband,Costume Indian Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,96,{},{},{}
-31131,C_Monk_Hat,Costume Monk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,35,{},{},{}
-31132,C_Christmas_Wreath,Costume Christmas Wreath,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1554,{},{},{}
-31133,C_Gambler_Seal,Costume Gambler Seal,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1202,{},{},{}
-31134,C_Happy_Parrot,Costume Talkactive Parrot,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1116,{},{},{}
-31135,C_Mini_Crown1,Costume Luxury Mini Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{},{},{}
-31136,C_Clock_Casket,Costume Clock Casket,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1555,{},{},{}
-31137,C_Blue_Rose_Ornament,Costume Blue Rose Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1556,{},{},{}
-31138,C_Piamette_Red_Hood,Costume Piamette's Red Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1557,{},{},{}
-31139,C_White_Rabbit_Ear,Costume White Rabbit Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1558,{},{},{}
-31140,C_Cowboy_Hat_,Costume Black Cowboy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1569,{},{},{}
-31141,C_Rose_Corsage_,Costume Cactus Flower Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1570,{},{},{}
-31142,C_Time_Prison,Costume Prison of Time,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1309,{},{ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; },{ sc_end SC_TIME_ACCESSORY; }
-31144,C_Indi_Feather_Band,Costume Indian Feather Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,809,{},{},{}
-31145,C_AliceFriesinger_Hat_69,Costume AliceFriesinger Hat 69,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1249,{},{},{}
-31146,C_KarduiEar,Costume Kardui Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1357,{},{},{}
-31147,C_Tare_Domovoi,Costume Drooping Domovoi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,781,{},{},{}
-31148,C_Tare_W_Doll,Costume Drooping W Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,359,{},{},{}
-31149,C_Nydhog_Wig,Costume Nydhoggur Wig,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1563,{},{},{}
-31150,C_Shalosh_Head_Dress,Costume Shalosh Headdress,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1564,{},{},{}
-31151,C_Chasher_Ear,Costume Cheshire's Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1565,{},{},{}
-31152,C_Piamette_BowTie_Red,Costume Piamette's Red Bow Tie,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1566,{},{},{}
-31153,C_Aniv_Star_Hat2,Costume Cactus Flower Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1567,{},{},{}
-31154,C_Cap,C Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,14,{},{},{}
-31158,C_Squirrel_Ear_Hat,Costume Squirrel Ear Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1486,{},{},{}
-31160,C_Rune_Helm,Costume Rune Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1361,{},{},{}
-31161,C_Tiger_Mask,Costume Tiger Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,181,{},{},{}
-31162,C_Shaving_Foam,Costume Shaving Foam,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1129,{},{},{}
-31163,C_Goat_Hat,Costume Sheep Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,205,{},{},{}
-31164,C_Brown_Stole,Costume Brown Stole,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1572,{},{},{}
-31165,C_Piggyback,Costume Piggyback,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1574,{},{},{}
-31166,C_Teddy_Bear_Hood,Costume Teddy Bear Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1571,{},{},{}
-31167,C_Lunatic_Hanging_Ear_BL,Costume Hanging Black Lunatic Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1575,{},{},{}
-31168,C_Mouton_Life_B,Costume Blue Mouton Life,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1573,{},{},{}
-31169,C_Hat_Of_Outlaw,Costume Hilarious Bandit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,486,{},{},{}
-31170,C_Wind_Wings,Costume Wings of Wind,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,493,{},{},{}
-31171,C_Nekomimi,Costume Nekomimi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,182,{},{},{}
-31172,C_Roast_Memory,Costume Roast Memory,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1576,{},{},{}
-31173,C_Oyster_Parakeet,Costume Oyster Parakeet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,419,{},{},{}
-31174,C_Suspicious_Bread_Bag,C Suspicious Bread Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,429,{},{},{}
-31175,C_Strawberry_Hat,Costume Strawberry Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,755,{},{},{}
-31176,C_Looking,C Looking,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1577,{},{},{}
-31177,C_Tail_Hat,C Tail Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1578,{},{},{}
-31178,C_Fire_Muffler,C Fire Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1579,{},{},{}
-31179,C_Wolf_Masquerade,C Wolf Masquerade,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1580,{},{},{}
-31180,C_King_Sura_Headband,C King Sura Headband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1581,{},{},{}
-31181,C_Necklace_Rosary,Costume Necklace Rosary,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1471,{},{},{}
-31182,C_Side_Cap,Costume Side Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,529,{},{},{}
-31183,C_Fallen_Angel_Blessing,Costume Blessing of Fallen Angel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1250,{},{},{}
-31184,C_Hawkeye,Costume Hawkeye,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,609,{},{},{}
-31185,C_Engineer_Cap,Costume Engineer Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,608,{},{},{}
-31186,C_Black_Cat,Costume Black Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1582,{},{},{}
-31187,C_War_Princess_Ribbon,Costume War Princess Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1583,{},{},{}
-31188,C_Mono_Gothic_Bonnet,Costume Mono Gothic Bonnet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1584,{},{},{}
-31189,C_Cat_Ears_Cape_Red,Costume Red Cat Ears Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1591,{},{},{}
-31190,C_Angel_Mini_Silk_Hat_B,Costume Black Angel Mini Silk Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1586,{},{},{}
-31191,C_Whikebain_Ears_Gold,Vibrant Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1588,{},{},{}
-31192,C_Bluecat_Ear,Blue Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1589,{},{},{}
-31193,C_Tare_Ahat,Costume Drooping Ahat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1590,{},{},{}
-31194,C_Spinning_Propeller,Costume Spinning Propeller,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,270,{},{},{}
-31195,C_Choco_Minihat,Costume Mini Chocolate Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1592,{},{},{}
-31196,C_JP_EV12,C Drooping Chuni Penguin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1596,{},{},{}
-31197,C_Egg_Crispinette,Costume Egg Crispinette,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1598,{},{},{}
-31198,C_Octopus_Hat,C Octopus Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,538,{},{},{}
-31199,C_Weird_Beard,C Weird Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,21,{},{},{}
-31200,C_Wrapping_Ribbon,C Wrapping Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1599,{},{},{}
-31201,C_Royal_Rabbit_Crown,C Royal Rabbit Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1600,{},{},{}
-31202,C_Dog_Officer,C Dog Officer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1601,{},{},{}
-31203,C_Charcoal_Stove,C Charcoal Stove,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1602,{},{},{}
-31204,C_Drooping_White_Cat,C Drooping White Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,378,{},{},{}
-31205,C_Large_Orc_Hero_Helm,C Large Orc Hero Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,381,{},{},{}
-31206,C_Rune_Hairband,C Rune Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,564,{},{},{}
-31207,C_Dokkebi_Mask,C Dokkebi Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,689,{},{},{}
-31208,C_Straight_Long_YL,C Straight_Long Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1603,{},{},{}
-31209,C_Straight_Long_WH,C Straight Long White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1604,{},{},{}
-31210,C_Side_Pigtail_BU,C Side Pigtail Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1605,{},{},{}
-31211,C_Side_Pigtail_RD,C Side Pigtail Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1606,{},{},{}
-31212,C_Side_Pigtail_YL,C Side Pigtail Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1607,{},{},{}
-31213,C_Side_Pigtail_GN,C Side Pigtail Green,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1608,{},{},{}
-31214,C_Side_Pigtail_BL,C Side Pigtail Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1609,{},{},{}
-31215,C_Side_Pigtail_WH,C Side Pigtail White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1610,{},{},{}
-31216,C_Side_Pigtail_OM,C Side Pigtail Brown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1611,{},{},{}
-31217,C_Side_Pigtail_PP,C Side Pigtail Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1612,{},{},{}
-31218,C_Low_Pony_BU,C Low Pony Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1613,{},{},{}
-31219,C_Low_Pony_RD,C Low Pony Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1614,{},{},{}
-31220,C_Low_Pony_YL,C Low Pony Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1615,{},{},{}
-31221,C_Low_Pony_GN,C Low Pony Green,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1616,{},{},{}
-31222,C_Low_Pony_BL,C Low Pony Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1617,{},{},{}
-31223,C_Low_Pony_WH,C Low Pony White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1618,{},{},{}
-31224,C_Low_Pony_OM,C Low Pony Brown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1619,{},{},{}
-31225,C_Low_Pony_PP,C Low Pony Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1620,{},{},{}
-31226,C_Long_Twin_BU,C Long Twin Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1621,{},{},{}
-31227,C_Long_Twin_RD,C Long Twin Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1622,{},{},{}
-31228,C_Long_Twin_YL,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1623,{},{},{}
-31229,C_Long_Twin_GN,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1624,{},{},{}
-31230,C_Long_Twin_BL,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1625,{},{},{}
-31231,C_Long_Twin_WH,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1626,{},{},{}
-31232,C_Long_Twin_OM,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1627,{},{},{}
-31233,C_Long_Twin_PP,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1628,{},{},{}
-31234,C_Persica,C Persica,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,659,{},{},{}
-31235,C_Large_Ribbon_Muffler_Mid,C Large Ribbon Muffler Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1312,{},{},{}
-31236,C_Vicious_Mind_Aura_Mid,C Vicious Mind Aura Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1267,{},{},{}
-31237,C_Pale_Yellow_Ribbon_Lower,C Pale Yellow Ribbon Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1474,{},{},{}
-31238,C_True_Love_Upper,C True Love Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,489,{},{},{}
-31239,C_Love_Rabbit_Hood_Upper,C Love Rabbit Hood Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,549,{},{},{}
-31240,C_Whisper_Mask_,C Whisper Mask Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,321,{},{},{}
-31241,C_Burning_Sun_Lower,C Burning Sun Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,654,{},{},{}
-31242,C_Anubis_Helm_,C Anubis Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,485,{},{},{}
-31243,C_Tongue_Mask_Mid,C Tongue Mask Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,253,{},{},{}
-31244,C_Skymet_,C Skymet Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,868,{},{},{}
-31245,C_Cherry,C Cherry,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,602,{},{},{}
-31246,C_Humming_Bird,C Humming Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{},{},{}
-31247,C_Hippo_Hat,C Hippo Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,859,{},{},{}
-31248,C_Isabella_Red_Ears,C Isabella Red Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1030,{},{},{}
-31249,C_Rabbit_Hopping,C Hopping Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1635,{},{},{}
-31250,C_Wonderful_Beast_Ear,C Wonderful Beast Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1636,{},{},{}
-31251,C_Cat_Mouth,C Cats Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1637,{},{},{}
-31252,C_Cat_Ear_Hat_White,C White Cat Ears Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1638,{},{},{}
-31253,C_Rinzu_Helmet,C Rinzu Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,548,{},{},{}
-31254,C_Red_Hare_Hat,C Red Hare Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1631,{},{},{}
-31255,C_Sweet_Helmet,C Sweet Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1374,{},{},{}
-31256,C_Jaguar_Mask,C Jaguar Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,530,{},{},{}
-31260,C_Observer_J,C Observer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1639,{},{},{}
-31261,C_Soda_in_Mouth,C Soda in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1643,{},{},{}
-31262,C_Disposable_3D_Glasses,C Disposable 3D Glasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,661,{},{},{}
-31263,C_Disposable_Popcorn_Hat,C Disposable Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,415,{},{},{}
-31264,C_Wings_of_Protector_Lower,C Wings of Protector Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,990,{},{},{}
-31265,C_Straight_Pony_Blue_Mid,C Straight Pony Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1394,{},{},{}
-31266,C_Straight_Pony_Red_Mid,C Straight Pony Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1392,{},{},{}
-31267,C_Straight_Pony_Yellow_Mid,C Straight Pony Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1389,{},{},{}
-31268,C_Straight_Pony_Green_Mid,C Straight_Pony Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1390,{},{},{}
-31269,C_Straight_Pony_Black_Mid,C Straight Pony Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1371,{},{},{}
-31270,C_Straight_Pony_White_Mid,C Straight Pony White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1395,{},{},{}
-31271,C_Straight_Pony_Crimson_Mid,C Straight Pony Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1393,{},{},{}
-31272,C_Straight_Pony_Purple_Mid,C Straight Pony Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1391,{},{},{}
-31273,C_Cowlick_Blue_Mid,C Cowlick Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1387,{},{},{}
-31274,C_Cowlick_Red_Mid,C Cowlick Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1385,{},{},{}
-31275,C_Cowlick_Yellow_Mid,C Cowlick Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1382,{},{},{}
-31276,C_Cowlick_Green_Mid,C Cowlick Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1383,{},{},{}
-31277,C_Cowlick_Black_Mid,C Cowlick Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1372,{},{},{}
-31278,C_Cowlick_White_Mid,C Cowlick White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1388,{},{},{}
-31279,C_Cowlick_Crimson_Mid,C Cowlick Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1386,{},{},{}
-31280,C_Cowlick_Purple_Mid,C Cowlick Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1384,{},{},{}
-31281,C_Loose_Wave_Twin_Blue_Mid,C Loose Wave Twin Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1401,{},{},{}
-31282,C_Loose_Wave_Twin_Red_Mid,C Loose Wave Twin Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1399,{},{},{}
-31283,C_Loose_Wave_Twin_Yellow_Mid,C Loose Wave Twin Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1396,{},{},{}
-31284,C_Loose_Wave_Twin_Green_Mid,C Loose Wave Twin Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1397,{},{},{}
-31285,C_Loose_Wave_Twin_Black_Mid,C Loose Wave Twin Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1373,{},{},{}
-31286,C_Loose_Wave_Twin_White_Mid,C Loose Wave Twin White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1402,{},{},{}
-31287,C_Loose_Wave_Twin_Crimson_Mid,C Loose Wave Twin Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1400,{},{},{}
-31288,C_Loose_Wave_Twin_Purple_Mid,C Loose Wave Twin Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1398,{},{},{}
-31289,C_Black_Wing_Ears_Lower,C Black Wing Ears Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1336,{},{},{}
-31290,C_Angels_Feather_Cap,C Angels Feather Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,929,{},{},{}
-31291,C_Devils_Feather_Cap,C Devils Feather Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,930,{},{},{}
-31293,C_Kings_Crown_Purple,C Crown of Ancient King Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1651,{},{},{}
-31294,C_Jirant_Circlet_Red,C Jirant Circlet Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1652,{},{},{}
-31295,C_Red_Wing_Hat,C Red Wing Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,613,{},{},{}
-31296,C_Strawberry_in_Mouth,C Strawberry in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,861,{},{},{}
-31297,C_Fruit_of_Love,C Fruit of Love,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,140,{},{},{}
-31298,C_Sepia_Parade_Hat,C Sepia Parade Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,682,{},{},{}
-31299,C_White_Rabbit,C White Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1656,{},{},{}
-31300,C_Warm_Cat_Muffler,C Warm Cat Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1657,{},{},{}
-31301,C_Blinking_Eyes,C Blinking Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1658,{},{},{}
-31302,C_Black_Magenta_Ribbon,C Black Magenta Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1659,{},{},{}
-31303,C_Black_Ramen_Hat_,C Black Ramen Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1338,{},{},{}
-31304,C_Summer_Fan,C Summer Fan,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{}
-31306,C_Toucan_Hat,C Toucan Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,528,{},{},{}
-31307,C_Violet_Macaw,C Violet Macaw,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,656,{},{},{}
-31308,C_Protect_Feathers,C Protect Feathers,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1232,{},{},{}
-31309,C_Pure_White_Marching_Hat,C Pure White Marching Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1470,{},{},{}
-31310,C_666_Black_Elven_Ears,C 666 Black_ Elven Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,498,{},{},{}
-31311,C_Dolor_Thanatos_Mask,C Dolor Thanatos Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,666,{},{},{}
-31312,C_Hades_Helm,C Hades Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,523,{},{},{}
-31313,C_FallenAngelWingEar,C Fallen Angel Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1662,{},{},{}
-31314,C_Ghost_Holiday,C Ghost Holiday,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1663,{},{},{}
-31315,C_Stall_Of_Angel,C Stall of Angel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1664,{},{},{}
-31316,C_C_FlutterButterfly_BL,C Black Fluttering Butterfly,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1665,{ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true); },{},{ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false); }
-31317,C_15th_Anniversary_Wing,C 15th Anniversary Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1660,{},{},{}
-31318,C_Gerhard_Von_Devi,Costume Gerhard Von Devi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1092,{},{},{}
-31319,C_Summer_Fan_,C Summer Fan,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{}
-31320,C_Pinwheel_Hat,C Pinwheel Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,456,{},{},{}
-31321,C_Shining_Sunflower,C Shining Sunflower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,681,{},{},{}
-31322,C_Candy_Hat,C Candy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,853,{},{},{}
-31323,C_Yellow_Hunting_Cap,C Yellow Hunting Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,484,{},{},{}
-31325,C_Queen_Scarabas_Helmet,C Queen Scarabas Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,5120,,1,0,1231,{ hateffect(HAT_EF_QSCARABA,true); },{},{ hateffect(HAT_EF_QSCARABA,false); }
-31326,C_Rolf_Von_Ziege_666_II,C Rolf Von Ziege 666 II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,946,{},{},{}
-31327,C_Wood_Goblins_Nose,C Wood Goblins Nose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,737,{},{},{}
-31328,C_Faceworm_Eggshell,C Faceworm Eggshell,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1356,{},{},{}
-31329,C_Alice_Wig,Costume Alice Wig,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1673,{},{},{}
-31330,C_Fallen_Angel_Valletta,Costume Fallen Angel Valletta,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1674,{},{},{}
-31331,C_Chung_E_Shinyon_Cap,C Chung e Shinyon Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1675,{},{},{}
-31332,C_Khalitzburg_KN_Helm_BL,C Black Khalitzburg Knight Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1676,{},{},{}
-31368,C_Harvest_Festa_Hat,C Thanksgiving Memorial Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1677,{},{},{}
-31369,C_Straight_Long_WH_,Costume Straight Long White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1604,{},{},{}
-31370,C_Straight_Long_YL_,Costume Straight Long Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1603,{},{},{}
-31373,C_Crown_of_Ancient_king,C Crown of Ancient king,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1412,{},{},{}
-31374,C_Explosion_gum,C Explosion gum,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1414,{},{},{}
-31375,C_Mystic_Eye,C Mystic Eye,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1490,{},{},{}
-31376,C_Ancient_Dragon_Coronet_Purple,C Ancient Dragon Coronet Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1680,{},{},{}
-31377,C_Glastheim_Obeserver,C Glastheim Obeserver,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1041,{},{},{}
-31378,C_Catharina_Von_Brad_60th,C Catharina Von Brad 60th,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1527,{},{},{}
-31379,C_Wind-Up_Key,C Wind-Up Key,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1335,{},{},{}
-31380,C_Crow,C Crow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1035,{},{},{}
-31381,C_Diabolic_Lapel,Costume Diabolic Lapel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1681,{},{},{}
-31382,C_Cat_Ears_Punkish,Costume Cat Ears Punkish,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1682,{},{},{}
-31383,C_Volume_Low_Twin,Costume Volume Low Twin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1683,{},{},{}
-31384,C_False_Ears,Costume False Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1684,{},{},{}
-31385,C_Gothic_Pumpkin_Head,Costume Gothic Pumpkin Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1685,{},{},{}
-31386,C_Survive_Orb,C Survive Orb,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1488,{},{},{}
-31387,C_Jjakk,C Jjakk,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1687,{},{},{}
-31389,C_White_Bird_Rose,C White Bird Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1688,{},{},{}
-31390,C_Let_It_Snow,C Let It Snow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1690,{},{},{}
-31391,C_Floating_Stone_of_Sage,C Floating Stone of Sage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1230,{},{ sc_start SC_FSTONE,INFINITE_TICK,0; },{ sc_end SC_FSTONE; }
-31392,C_Radio_Antenna,C Radio Antenna,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,347,{},{},{}
-31393,C_Vajra,C Vajra,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,983,{},{},{}
-31394,C_Magician_White_Hat,C Magician White Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,283,{},{},{}
-31395,C_Book_Of_Magic,C Book of Magic,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1691,{},{},{}
-31396,C_Sorcerer_Hood,C Sorcerer Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1692,{},{},{}
-31397,C_Sitting_Pope,C Sitting Pope,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1553,{},{},{}
-31398,C_Blinking_Thin_Eyes,C Blinking Thin Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1693,{},{},{}
-31399,C_Darkness_Veil,C Darkness Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1694,{},{},{}
-31400,C_Ribbon,C Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,17,{},{},{}
-31401,C_Nuns_Veil,C Nuns Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,176,{},{},{}
-31402,C_Idun_Green_Apple,C Iduns Green Apple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1698,{},{},{}
-31403,C_Wall,C Wall,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1699,{},{},{}
-31404,C_Poring_Traffic_Light,C Poring Traffic Light,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1700,{},{},{}
-31405,C_Eleanor_Wig_YL,C Eleanor Wig Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1701,{},{},{}
-31406,C_Nydhog_Wig_WH,C Nydhoggur Wig White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1702,{},{},{}
-31407,C_Alice_Wig_PK,C Alice Wig Peach,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1703,{},{},{}
-31408,C_Ragnarok_Rush_Goat,C Ragnarok Rush Goat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,41,{},{},{}
-31409,C_Barrel_Helm,C Barrel Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1498,{},{},{}
-31410,C_GodsHelm,Costume God's Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1678,{},{},{}
-31411,C_Leo_Diadem,C Leo Diadem,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,566,{},{},{}
-31412,C_Virgo_Crown,C Virgo Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,573,{},{},{}
-31413,C_Taurus_Crown,C_ Taurus Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,536,{},{},{}
-31414,C_Cancer_Diadem,C Cancer Diadem,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,560,{},{},{}
-31415,C_Wanderers_Sakkat,Costume Wanderer's Sakkat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,558,{},{},{}
-31417,C_Rice_Ball_Hat,C Rice Ball Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,556,{},{},{}
-31418,C_Green_Onion_in_Mouth,C Green Onion in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,824,{},{},{}
-31420,C_Shining_Santa_Poring,C Shining Santa Poring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,961,{},{},{}
-31432,C_Floating_Ice,C Floating Ice,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1562,{},{},{}
-31433,C_Celestial_Circle,C Celestial Circle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1073,{},{},{}
-31434,C_Cloud_Burst,C Cloud Burst,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{},{},{}
-31435,C_Ghost_Magicians_Knit_Hat,C Ghost Magicians Knit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,854,{},{},{}
-31436,C_Lazy_Cat,C Lazy Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,274,{},{},{}
-31437,C_Baby_Penguin,C Baby Penguin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1705,{},{},{}
-31438,C_Fluffy_Angel_Cape,C Fluffy Angel Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1706,{},{},{}
-31439,C_Fluffy_Heart_Earmuffs,C Fluffy Heart Earmuffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1707,{},{},{}
-31440,C_Snow_Bear_Hood,C Snow Bear Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1708,{},{},{}
-31441,C_Penguin_Cap_BU,C Penguin Cap Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1709,{},{},{}
-31442,C_Smile_Mask_Middle,C Smile Mask Middle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,65,{},{},{}
-31443,C_Munak_Hat_,C Munak Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,51,{},{},{}
-31444,C_Bongun_Hat_,C Bongun Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,139,{},{},{}
-31446,C_Toy_Syringe,C Toy Syringe,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,842,{},{},{}
-31447,C_Light_Moonlight_Hat,C Light Moonlight_Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,913,{},{},{}
-31448,C_Stings_Silk_Ribbon,C Stings Silk Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1457,{},{},{}
-31449,C_Blue_Rose_Eyepatch,C Blue Rose Eyepatch,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1712,{},{},{}
-31450,C_Lolita_Two_Side_Up,C Lolita Two Side Up,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1713,{},{},{}
-31451,C_Blue_Frill_Ribbon,C Blue Frill Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1714,{},{},{}
-31452,C_White_Cat,C White Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1715,{},{},{}
-31453,C_L_RibbonMuff_Black,C Large Ribbon Muffler Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1716,{},{},{}
-31454,C_Love_Feelings,C Love Feelings,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1717,{},{},{}
-31455,C_Enchanted_Dog,C Super Cute Dog,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,1718,{},{},{}
-31456,C_Baby_Leopard_Cat,C Baby Leopard Cat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1719,{},{},{}
-31457,C_Laughing_Wonderful_Wolf_Hat,C Laughing Wonderful Wolf Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1016,{},{},{}
-31459,C_Sweet_Bonbon,Costume Sweets Bonbon,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,853,{},{},{}
-31460,C_Blessing_Sky_Lantern,C Blessing Sky Lantern,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1720,{},{},{}
-31463,C_Flying_Drone,C Flying Drone,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1561,{},{},{}
-31464,C_Bloom_Afro,C Bloom Afro,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,837,{},{},{}
-31465,C_Robin_Egg_Minihat,C Robin Egg Minihat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1722,{},{},{}
-31466,C_Holy_Eggshell,C Holy Egg Shell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,537,{},{},{}
-31467,C_Evil_Eggshell,C Evil Eggshell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,999,{},{},{}
-31468,C_Stripe_Hat,C Stripe Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1728,{},{},{}
-31469,C_Eleanor_Wig_R,Rental C Eleanors Wig Lower,4,,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1502,{},{},{}
-31470,C_Scroll_of_Tengu,C Scroll of Tengu,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1445,{},{},{}
-31471,C_Celestial_Flower,C Celestial Flower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,438,{},{},{}
-31472,C_Fairy_Feathers,C Fairy Feathers,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1723,{},{},{}
-31473,C_Tipsy,C Tipsy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1724,{},{},{}
-31474,C_Straight_Long_BL,C Straight Long Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1725,{},{},{}
-31475,C_Black_Fox_Ear_Ribbon,C Black Fox Ears Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1726,{},{},{}
-31476,C_Cherry_Blossom_Hat_YL,C Yellow Cherry Blossom Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1727,{},{},{}
-31477,C_Straight_Long_BL_,Rental C Straight Long Black,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1725,{},{},{}
-31478,C_Eleanor_Wig_,C Eleanors Wig Lower,4,,,0,,,,,0xFFFFFFFF,63,2,4096,,1,0,1502,{},{},{}
-31479,C_Group_of_Stars,Costume Group of Stars,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1729,{ hateffect(HAT_EF_MANYSTARS,true); },{},{ hateffect(HAT_EF_MANYSTARS,false); }
-31481,C_TriColor_CatCup,C TriColor CatCup,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1731,{},{},{}
-31484,C_JP_EV13,C BearCompanion Female,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1736,{},{},{}
-31485,C_JP_EV14,C BearCompanion Male,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1737,{},{},{}
-31486,C_Divers_Goggles,C Diver's Goggles,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,10,{},{},{}
-31487,C_Eye_Bandage,C Eye Bandage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,13,{},{},{}
-31488,C_MVP,Costume MVP,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1738,{},{},{}
-31489,C_Bouquet_Cap,Costume Bouquet Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1739,{},{},{}
-31490,C_Poring_Muffler,C Poring Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1740,{},{},{}
-31491,C_Orange_Tabby_Cat,C Orange Tabby Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1741,{},{},{}
-31492,C_Cat_Ears_Cape_Brown,C Brown Cat Ears Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1742,{},{},{}
-31493,C_Volume_Low_Twin_WH,C Volume Low Twin WH,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1743,{},{},{}
-31494,C_Volume_Low_Twin_Upper,C Volume Low Twin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1683,{},{},{}
-31495,C_Lolita_Two_Side_Up_,C Lolita Two Side Up Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1713,{},{},{}
-31496,C_Yggdrasil_Crown,C Yggdrasil Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,746,{},{},{}
-//31497,C_Flowery_Vision,C Flowery Vision,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ /* To Do : Confirm View ID */ },{},{}
-31498,C_Elephangel_TH,C Elephangel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1745,{},{},{}
-31499,C_Easter_Egg_Shell,C Easter Egg Shell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,537,{},{},{}
-31504,C_Large_Hungry_Fish,C Large Hungry Fish,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,844,{},{},{}
-31505,C_Falcon_Mask,C Falcon Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,782,{},{},{}
-31506,C_Cat_Ear_Bandana,C Cat Ear Bandana,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1587,{},{},{}
-31507,C_Drooping_Cat_Yellow,C Drooping Cat Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,278,{},{},{}
-31508,C_Isabella_Blue_Ears,C Isabella Blue Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1032,{},{},{}
-31509,C_Fawn_Ear,C Fawn Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1751,{},{},{}
-31510,C_ShortHair_CatEar,C Short Haired Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1752,{},{},{}
-31511,C_LongHair_CatEar,C Long Haired Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1753,{},{},{}
-31512,C_Panda_Rabbit,C Panda Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1754,{},{},{}
-31513,C_Black_Rabbit_Ears,C Black Rabbit Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1755,{},{},{}
-31516,C_Mini_Melon,C Mini Melon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1758,{},{},{}
-31517,C_JP_EV15,C Fluffy Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1762,{},{},{}
-31518,C_Popping_Popcorn_Hat,C Popping Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1763,{},{},{}
-31519,C_Noodles_Hat,C Noodles Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1764,{},{},{}
-31520,C_Popcorn_Hat,C Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,415,{},{},{}
-31521,C_Yuzu_Helmet,C Yuzu Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,791,{},{},{}
-31522,C_Orange_Helmet,C Orange Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,841,{},{},{}
-31523,C_Pomelo_Helmet,C Pomelo Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,924,{},{},{}
-31524,C_Bento_Hat,C Bento Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1766,{},{},{}
-31526,C_Shaman_Hat,C Shaman Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,596,{},{},{}
-31527,C_Radiant_Rainbow_Wings,C Radiant Rainbow Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1186,{},{},{}
-31528,C_Star_Dust_Hairband,C Star Dust Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,831,{},{},{}
-31529,C_Happy_Rabbit_Ribbon,C Happy Rabbit Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1769,{},{},{}
-//31530,C_Large_Dracula_Helm,C Large Dracula Helm,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{ /* To Do : Confirm View ID */ },{},{}
-31531,C_Lovely_Heart_Cap,C Lovely Heart Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1770,{},{},{}
-31533,C_Warm_Cat_Muffler_BL,C Warm Cat Muffler Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1771,{},{},{}
-//31536,C_Crown_Of_Demon,C Crown Of Demon,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{ /* To Do : Confirm View ID */ },{},{}
-31538,C_Lovely_Feeling,C Lovely Feeling,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1717,{},{},{}
-31540,C_GeminiS58_Eyes_Red,C GeminiS58 Eyes Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1654,{},{},{}
-31541,C_Drosera_Hairpin,C Drosera Hairpin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,850,{},{},{}
-31542,C_Clay_Poring_Jar,C Clay Poring Jar,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1634,{},{},{}
-31543,C_Siorava_Hat,C Siorava Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1774,{},{},{}
-31544,C_Piamette_Curls,Costume Piamette Curls,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1775,{},{},{}
-31545,C_Eremes_Scarf_BU,C Eremes Scarf Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1776,{},{},{}
-31546,C_Clock_Casket_RD,C Clock Casket Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1777,{},{},{}
-31547,C_Poporing_Mascot_Head,C Poporing Mascot Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1778,{},{},{}
-31548,C_Love_Cheek_Lower,C Love Cheeks Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1318,{},{},{}
-31549,C_Little_Aquarium_Lower,C Little Aquarium Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1363,{},{},{}
-31550,C_Tone_of_Gold_Mid,C Tone of Gold Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1447,{},{},{}
-31551,C_Black_Glasses_Lower,C Black Glasses Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,404,{},{},{}
-31552,C_Blue_Ribbon_Mid,C Blue Ribbon Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,407,{},{},{}
-31553,C_Wings_Of_Victory_Mid,C Wings Of Victory Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,365,{},{},{}
-31554,C_Bread_Bag_Mid,C Bread Bag Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,412,{},{},{}
-31555,C_Hoplite_Helmet_Upper,C Hoplite Helmet Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,660,{},{},{}
-31556,C_Moonlight_Flower_Hat_Upper,C Moonlight Flower Hat Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,268,{},{},{}
-31559,C_Royalguard_Necklace,C Royal Guard Necklace,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1629,{},{},{}
-31560,C_Clergy_Nurse_Cap,C Nurse Cap of Clergy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1359,{},{},{}
-31561,C_Heavenly_Dark_Flame,C Heavenly Dark Flame,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1008,{},{},{}
-31562,C_Zealotus Doll,C Zealotus Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1376,{},{},{}
-31563,C_Blue_Eye_Shadow,C Blue Eye Shadow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1020,{},{},{}
-31564,C_Variant_Veil,C Variant Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1785,{},{},{}
-31565,C_Princess_Ribbon_Crown,C Princess Ribbon Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1786,{},{},{}
-31566,C_Stole_Of_Dominion,C Stole Of Dominion,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1784,{},{},{}
-31567,C_Sheep_Horn,C Sheep Horns,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1783,{},{},{}
-31569,C_Open_Air_Headset,C Open Air Headset,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1655,{},{},{}
-31570,C_Cyclops_Visor,C Cyclops Visor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,207,{},{},{}
-31571,C_Guardian_Processor,C Guardian Processor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1552,{},{},{}
-31572,C_Mobile_Pursuit_System,C Mobile Pursuit System,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1788,{},{},{}
-31573,C_Mecha_Cat_Ears,C Mecha Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1789,{},{},{}
-31574,C_Cyber_Income,C Cyber Income,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1790,{},{},{}
-31575,C_Electro_Two_Sides_Up,C Electro Two Sides Up,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1791,{},{},{}
-31576,C_Moon_Rabbit_Hat,C Moon Rabbit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,455,{},{},{}
-31577,C_Roast_Memory_Upper,C Roast Memory Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1576,{},{},{}
-31578,C_Alchemist_Mask_ML,C Alchemist Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,1497,{},{},{}
-31579,C_Love_Games,C I LOVE GAMES,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1306,{},{},{}
-31580,C_Autumn_Flavor,C Autumn Flavor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1792,{},{},{}
-31581,C_Jack_Upper,C Jack Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1415,{},{},{}
-31582,C_Jirant_Circlet,C Jirant Circlet,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1644,{},{},{}
-31583,C_Will_O_Wisp_Lower,C Will O Wisp Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,880,{},{ sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; },{ sc_end SC_STRANGELIGHTS; }
-31586,C_Poporing_Muffler,C Poporing Muffler,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1797,{},{},{}
-31588,C_Snow_Flower,C Snow Flower,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1799,{ hateffect(HAT_EF_SNOWFLAKE_TIARA,true); },{},{ hateffect(HAT_EF_SNOWFLAKE_TIARA,false); }
-31589,C_Golden_Majestic_Goat,C Golden Majestic Goat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1800,{},{},{}
-31590,C_Designer_Brush,C Designer's Brush,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1291,{},{},{}
-31593,C_Yellow_Scarf,C Yellow Scarf,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1170,{},{},{}
-31594,C_Red_Pencil_In_Mouth,C Red Pencil in Mouth,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,931,{},{},{}
-31595,C_Book_File_Hat,C Book File Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,423,{},{},{}
-31596,C_Spider_Seduction,C Spider Seduction,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1711,{},{},{}
-31597,C_Golden_Fish_Hat,C Golden Fish Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1645,{},{},{}
-31598,C_Forest_Guide,C Forest Guide,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1802,{},{},{}
-31599,C_Medium_Wave,C Medium Wave,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1803,{},{},{}
-31600,C_Kishu_Dog,C Kishu Dog,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1804,{},{},{}
-31601,C_Under_Rim_Glasses_Blue,C Under Rim Glasses Blue,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,,1805,{},{},{}
-31602,C_Midgarts_Glory,C Rune-Midgarts Glory,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1807,{ hateffect(HAT_EF_MIDGARTS_GLORY,true); },{},{ hateffect(HAT_EF_MIDGARTS_GLORY,false); }
-31606,C_Autumn_Headband,C Autumn Headband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1119,{},{},{}
-31607,C_Cat_Ear_Witch_Hat,C Cat Ear Witch Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1808,{},{},{}
-31608,C_Magicstone_of_Grace,C Magic Stone of Grace,4,0,,,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1420,{},{},{}
-31609,C_Noble_Mask,C Noble Mask,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,,1409,{},{},{}
-31610,C_Yellow_Wizardry_Hat,C Yellow Wizardry Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,286,{},{},{}
-31611,C_Snake_Lord_Stole,C Snake Lord Stole,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1810,{},{},{}
-31612,C_Large_Sorcerer_Crown,C Large Sorcerer Crown,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1811,{},{},{}
-31614,Costume_Fox,C Fox,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1812,{},{},{}
-31615,Costume_Geisha_Make_Up,C Geisha Make Up,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1813,{},{},{}
-31616,Costume_Sleep_Sheep,C Sleep Sheep,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1814,{},{},{}
-31624,Costume_Heart_Of_Cat,C Heart of Cat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1822,{},{},{}
-31625,Costume_Protection_Cloth,C Protection Cloth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1761,{},{},{}
-31628,Costume_Dokebi,C Dokebi,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,430,{},{},{}
-31630,Costume_Baphomet_Balloon,C Baphomet Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1746,{},{},{}
-31631,Costume_Drooping_Schmidt,C Drooping Schmidt,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1859,{},{},{}
-31632,Costume_Drooping_Oscar,C Drooping Oscar,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1860,{},{},{}
-31633,Costume_Drooping_Heinrich,C Drooping Heinrich,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1861,{},{},{}
-31634,Costume_Reindeer_Hair_Band,C Reindeer Hair Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,836,{},{},{}
-31635,Costume_Flowing_Long_BD,C Flowing Long Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1832,{},{},{}
-31636,Costume_Flowing_Long_SV,C Flowing Long Silver,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1833,{},{},{}
-31637,Costume_Straight_Long_BU,C Straight Long Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1834,{},{},{}
-31638,Costume_Straight_Long_RD,C Straight Long Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1835,{},{},{}
-31639,Costume_Straight_Long_BD,C Straight Long Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1836,{},{},{}
-31640,Costume_Straight_Long_GN,C Straight Long Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1837,{},{},{}
-31641,Costume_Straight_Long_JBL,C Straight Long Jet Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1838,{},{},{}
-31642,Costume_Straight_Long_LPP,C Straight Long Light Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1839,{},{},{}
-31643,Costume_Straight_Long_OM,C Straight Long Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1840,{},{},{}
-31644,Costume_Straight_Long_PP,C Straight Long Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1841,{},{},{}
-31645,Costume_Side_Pony_BU,C Side Pony Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1842,{},{},{}
-31646,Costume_Side_Pony_RD,C Side Pony Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1843,{},{},{}
-31647,Costume_Side_Pony_BD,C Side Pony Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1844,{},{},{}
-31648,Costume_Side_Pony_GN,C Side Pony Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1845,{},{},{}
-31649,Costume_Side_Pony_BL,C Side Pony Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1846,{},{},{}
-31650,Costume_Side_Pony_WH,C Side Pony White,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1847,{},{},{}
-31651,Costume_Side_Pony_OM,C Side Pony Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1848,{},{},{}
-31652,Costume_Side_Pony_PP,C Side Pony Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1849,{},{},{}
-31653,Costume_Chignon_BU,C Chignon Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1850,{},{},{}
-31654,Costume_Chignon_RB,C Chignon Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1851,{},{},{}
-31655,Costume_Chignon_BD,C Chignon Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1852,{},{},{}
-31656,Costume_Chignon_GN,C Chignon Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1853,{},{},{}
-31657,Costume_Chignon_BL,C Chignon Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1854,{},{},{}
-31658,Costume_Chignon_WH,C Chignon White,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1855,{},{},{}
-31659,Costume_Chignon_OM,C Chignon Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1856,{},{},{}
-31660,Costume_Chignon_PP,C Chignon Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1857,{},{},{}
-31664,Costume_Desert_Wolf_Hat,C Drooping Ernst Von Wolf 11th,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,783,{},{},{}
-31667,Costume_Poring_Beret,C Poring Beret,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1825,{},{},{}
-31668,Costume_Majorous_Horns,C Majorous Horns,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,888,{},{},{}
-31669,C_Adv_Whisper_Mask_M,C Evolved Whisper Mask Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,458,{},{},{}
-31670,C_Miyabi_Long_Hair,C Miyabi Long Hair,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1864,{},{},{}
-31671,Costume_Twin_Cannon,C Twin Cannon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1865,{},{},{}
-31672,Costume_Mermaid_Wig,C Mermaid Wig,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1866,{},{},{}
-31673,Costume_Picnic_Basket,C Picnic Basket,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1867,{},{},{}
-31674,Costume_Jitterbug_Cap,C Jitterbug Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1868,{},{},{}
-31675,Costume_Orange_Hat,C Orange Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,620,{},{},{}
-31676,Costume_Orange_In_Mouth,C Orange In Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,814,{},{},{}
-31682,Costume_Drooping_Elven_Ears,C Drooping Elven Ears,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,875,{},{},{}
-31684,Costume_Kururinpa_Tails,C Kururinpa Tails,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1873,{},{},{}
-31685,Costume_Fluffy_Semi_Long,C Fluffy Semi Long,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1874,{},{},{}
-31686,Costume_Desert_Wolf_Baby,C Desert Wolf Baby,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1875,{},{},{}
-31687,Costume_Alchemist_Bag,C Alchemist Bag,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1876,{},{},{}
-31688,Costume_Poring_On_Shoulder,C Poring On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1877,{},{},{}
-31689,C_Piamette_Curls_,C Piamette Curls,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1775,{},{},{}
-31690,Costume_Flame_Bird,C Flame Bird,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,832,{},{},{}
-31691,C_Bell_Pigeon_Low,Costume Bell of Pigeon Lower,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1034,{},{},{}
-31692,Costume_Dragon_Emperor_Wings,C Dragon Emperor Wings,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1413,{},{},{}
-31693,Costume_Lunatic_Muffler,C Lunatic Muffler,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1732,{},{},{}
-31695,Costume_Stem_In_Mouth,C Stem in Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,848,{},{},{}
-31696,Costume_Shark_Hat,C Shark Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,503,{},{},{}
-31697,Costume_Bird_Nest,C Bird Nest,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,201,{},{},{}
-31698,Costume_Red_Riding_Hood,C Red Riding Hood,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1879,{},{},{}
-31699,Costume_Smiling_Eyes,C Smiling Eyes,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1880,{},{},{}
-31702,Costume_Moon_Cat_Hat,C Moon Cat Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1308,{},{},{}
-31703,Costume_Valentine_Hat,C Love Valentine's Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,397,{},{},{}
-31704,Costume_Sweet_Valentine_Out,C Sweet Valentine Out,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,865,{},{},{}
-31705,Costume_Red_White_Hat,C Red Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,469,{},{},{}
-31706,Costume_Trident_Helmet,C Trident Helm,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,810,{},{},{}
-31707,Costume_Nine_Tail_Fox_Hair,C Nine Tail Fox Hair,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1884,{},{},{}
-31708,Costume_Gothic_Skull_Ribbon,C Gothic Skull Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1885,{},{},{}
-31709,Costume_Golden_Violet,C Golden Violet,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1886,{},{},{}
-31710,Costume_Lucky_Hat,C Lucky Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,31710,{},{},{}
-31711,Costume_Jewel_Crown,C Jewel Crown,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,88,{},{},{}
-31712,Costume_Oxygen_Mask,C Oxygen Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,90,{},{},{}
-31713,Costume_Mystical_Fruit_Hat,Costume Mystical Fruit Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,134,{},{},{}
-31714,Costume_Indian_Headband,Costume Indian Headband,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,155,{},{},{}
-31715,Costume_Orange_Rabbit,C Orange Rabbit,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1887,{},{},{}
-31716,Costume_Twinkling_Red_Eyes,Costume Twinkling Red Eyes,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1888,{},{},{}
-31717,Costume_Medium_Wave_BD,C Medium Wave Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1889,{},{},{}
-31718,Costume_Sky_Lantern_Mid,C Blessing Sky Lantern Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1720,{},{},{}
-31719,Costume_Master_Of_Flames,C Master Of Flames,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1890,{},{},{}
-31720,Costume_Vesper_Hat,C Vesper Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1827,{},{},{}
-31721,Costume_Resonating_Drums,C Resonating Drums,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1823,{},{},{}
-31723,Costume_TW_Rice_Ball,C Tw Rice Ball,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,892,{},{},{}
-31724,Costume_TW_Bulgogi,C Tw Bulgogi,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1773,{},{},{}
-31729,Costume_Miracle_Plant,C Miracle Plant,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1893,{},{},{}
-31730,Costume_Volume_Low_Twin_SK,C Volume Low Twin Sakura,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1894,{},{},{}
-31731,Costume_Sweets_Party,C Sweets Party,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1896,{},{},{}
-31732,Costume_Bear_Balloon,C Bear Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1734,{},{},{}
-31733,Costume_Phantom_Masquerade,C Phantom Masquerade,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1899,{},{},{}
-31734,Costume_Cirtrus_Ribbon,C Citrus Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1900,{},{},{}
-31735,Costume_Yawata_Seal,C Yawata Seal,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1901,{},{},{}
-31736,Costume_Popcorn_Wig,C Popcorn Wig,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1895,{},{},{}
-31762,Costume_Gambler_Card,C Heart Card in Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1679,{},{},{}
-31763,Costume_Fortier_Mask,C Fortier Mask,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,876,{},{},{}
-31764,C_Rainbow_Veil_Mid,Costume Rainbow Veil Mid,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,1,0,992,{},{},{}
-31765,Costume_Garnet_Tiara,C Garnet Tiara,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1906,{},{},{}
-31766,Costume_Peony_Hair_Ornament,C Peony Hair Ornament,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1907,{},{},{}
-31769,Costume_Orange_Bunny_Band,C Orange Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,751,{},{},{}
-31770,Costume_Violet_Bunny_Band,C Violet Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,752,{},{},{}
-31771,Costume_Blue_Bunny_Band,C Blue Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,753,{},{},{}
-31772,Costume_Silver_Bunny_Band,C Silver Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,754,{},{},{}
-31783,Costume_Doram_Balloon,C Doram Baloon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1595,{},{},{}
-31784,Costume_Experimental_Goat_Cap,C Experimental Goat Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1768,{},{},{}
-31785,Costume_Monster_Fish_Gill,C Monster Fish Gills,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1218,{},{},{}
-31786,Costume_Red_Baby_Dragon_Hat,C Red Baby Dragon Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1463,{},{},{}
-31787,Costume_Shoulder_SavageB,C Savage Bebe On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1915,{},{},{}
-31788,C_Piamette_Curls_SV,C Piamette Curls Silver,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1916,{},{},{}
-31789,Costume_Turkey_Hat,C Turkey Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,,{},{},{}
-31791,Costume_Pig_Mask,C Pig Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1869,{},{},{}
-31793,Costume_Seraphim_Feather,C Seraphim Feather,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1704,{},{},{}
-31794,Costume_Puppy_Ears_Hat,C Puppy_Ears_Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,827,{},{},{}
-31795,C_Elephangel_TH_Mid,C Elephangel Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1745,{},{},{}
-31796,Costume_Drooping_Boto,C Drooping Boto,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,657,{},{},{}
-31797,Costume_Shih_Tzu_Hair,C Shih Tzu Hair,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1921,{},{},{}
-31798,Costume_Baby_Panda,C Baby Panda,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1922,{},{},{}
-31799,Costume_Pretty_White_Bear,C Pretty White Bear,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1923,{},{},{}
-31800,Costume_BR_Twin_Ribbon,C Brazil Twin Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,575,{},{},{}
-31801,Costume_Karada_Meguri_Tea_Hat,C Karada Meguri Tea Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,427,{},{},{}
-31802,Costume_Royal_Milk_Tea_Hat,C Black Tea Kochakaden Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,428,{},{},{}
-31803,Costume_Master_Of_Wind,C Master of Wind,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1924,{},{},{}
-31813,Costume_Lunatic_On_Shoulder,C Lunatic On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1881,{},{},{}
-31814,Costume_Lunatic_Family_Balloon,C Lunatic Family Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1809,{},{},{}
-31815,Costume_Angola_Intention,C Angola Intention,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1925,{},{},{}
-31816,Costume_Moon_Messenger_Robe,C Moon Messenger Robe,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1926,{},{},{}
-31817,Costume_Rabbit_Two_Side_Up,C Rabbit Two Side Up,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1927,{},{},{}
-31819,Costume_Dullahan_Mask,C Dullahan Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1931,{},{},{}
-31823,Costume_Nose_Glasses,C Nose Glasses,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1933,{},{},{}
-31824,Costume_Cat_Mask,C Mask of Cat,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1934,{},{},{}
-31826,Costume_Sunglass_Bear_Cap,C Sunglass Bear Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1935,{},{},{}
-31827,Costume_Durumagi,C Durumagi,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1936,{},{},{}
-31831,Costume_Disguise_Mantle,C Disguise Mantle,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1937,{},{},{}
-31832,Costume_Bicolor_Cat_Witch_Hat,C Bicolor Cat Witch Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1938,{},{},{}
-31833,C_Halloween_CatShort,C Halloween Short Haired Cat Ears,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1939,{},{},{}
-31834,C_Halloween_Cat_Long,C Halloween Long Haired Cat Ears,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1940,{},{},{}
-31837,Costume_Shark_Head,C Shark Head,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1919,{},{},{}
-31840,Costume_BJ_Headset_A,C BJ Headset,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1942,{},{},{}
-31841,Costume_BJ_Headset_B,C OnAir BJ Headset,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1943,{},{},{}
-//===================================================================
-// More 1-Handed Spears
-//===================================================================
-32005,Illusion_Pole_Axe,Illusion Pole Axe,5,0,,1500,190,,3,2,0x00004082,63,2,2,4,120,1,4,{ .@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; },{},{}
-32013,Metal_Stick,Metal Stick,5,0,0,2000,180,,3,3,0x00004080,56,2,2,4,150,1,4,{ .@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; } },{},{}
-32014,Brute_Spear,Brute Spear,5,0,0,,150,,3,0,0x00004080,56,2,2,4,100,1,4,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if(.@r > 9){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } },{},{}
-32019,Boost_Lance-OS,Boost Lance-OS,5,20,,1000,190,,3,2,0x00004000,56,2,2,4,130,1,4,{ .@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; },{},{}
-32023,Argen_Blanco,Argen Blanco,5,20,,1000,200,,3,2,0x00000080,56,2,2,4,170,1,4,{ .@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; },{},{}
-32024,Harve,Harve,5,20,,1500,210,,3,2,0x00004000,56,2,2,4,170,1,4,{ .@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; } },{},{}
-32025,Fortridge,Fortridge,5,20,,1700,205,,3,2,0x00004000,56,2,2,4,170,1,4,{ .@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; },{},{}
-//===================================================================
-// More Instruments
-//===================================================================
-32107,Black_Circle,Black Circle,5,,,1200,100:190,,2,2,0x00080000,56,1,2,4,170,1,14,{ .@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; },{},{}
-32108,Antique_Cello,Antique Cello,5,0,,1200,180,,2,2,0x00080000,56,1,2,4,170,1,13,{ .@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; },{},{}
-//===================================================================
-// More Accessories
-//===================================================================
-32203,Accelerator_Chip,Accelerator Chip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5; /* Combo with Riot Chip not implemented yet. */ },{},{}
-32204,Immortal_Dog_Tag,Immortal Dog Tag,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; },{},{}
-32206,Prontera_Militia_Glove,Prontera Militia Glove,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5; },{},{}
-32207,Illusion_Booster_R,Illusion Booster R,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus2 bAddClass,Class_All,5; },{},{}
-32208,Illusion_Booster_L,Illusion Booster L,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus2 bAddClass,Class_All,5; },{},{}
-32209,Illusion_Battle_chip_R,Illusion Battle chip R,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus bMatkRate,5; },{},{}
-32210,Illusion_Battle_chip_L,Illusion Battle chip L,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus bMatkRate,5; },{},{}
-32222,Brooch_of_Hero,Brooch of Hero,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; } },{},{}
-32227,Hrodvitnir's_Chain,Hrodvitnir's Chain,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; },{},{}
-32228,Schmidt_Insignia_Power,King Schmidt's Power Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus2 bAddClass,Class_All,10; },{},{}
-32229,Schmidt_Insignia_Divine_Power,King Schmidt's Divine Power Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bMatkRate,10; },{},{}
-32230,Schmidt_Insignia_Hundred_Lucks,King Schmidt's Hundred Lucks Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bCritAtkRate,7; },{},{}
-32231,Schmidt_Insignia_Rigid_Body,King Schmidt's Rigid Body Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bMaxHPrate,10; },{},{}
-32232,Schmidt_Insignia_Flash,King Schmidt's Flash Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bAspdRate,5; },{},{}
-32233,Schmidt_Insignia_Celestial,King Schmidt's Celestial Insignia,4,0,,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bLongAtkRate,7; },{},{}
-32237,Celine's_Brooch,Celine's Brooch,4,10,,500,,0,,1,0xFFFFFFFE,63,2,136,,100,0,0,{ bonus bMatkRate,5; bonus bVariableCastrate,-10; },{},{}
-32238,Illusion_Morpheus's_Ring,Illusion Morpheus's Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{}
-32239,Illusion_Morpheus's_Bracelet,Illusion Morpheus's Bracelet,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{}
-32242,Old_Detachment_Ring,Old Detachment Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMdef,10; bonus2 bSubRace,RC_Player,3; },{},{}
-32258,Ring_of_Jupiter,Ring of Jupiter,4,20,,500,,2,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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,3; } } },{},{}
-32262,Rasen_Fuma_Orb,Rasen Fuma's Orb,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; } },{},{}
-32263,Shield_Ring,Shield Ring,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ 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; } },{},{}
-//===================================================================
-// More Guns
-//===================================================================
-32301,Illusion_Gold_Lux,Illusion Gold Lux,5,20,,1800,160,,7,2,0x41000000,63,2,34,4,120,1,17,{ .@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; } } } },{},{}
-32302,Crimson_Rose,Crimson Rose,5,20,,700,150,,7,2,0x40000000,63,2,34,4,100,1,17,{ .@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"; } } } },{},{}
-//===================================================================
-// More 1-Handed Swords
-//===================================================================
-32350,Farthezan,Farthezan,5,20,,1100,130:180,,1,2,0x00004000,56,2,2,4,170,1,2,{ .@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; } },{},{}
-32351,Estal,Estal,5,20,,700,195,,1,2,0x00040000,56,2,2,4,170,1,2,{ .@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; },{},{}
diff --git a/db/re/item_db.yml b/db/re/item_db.yml
new file mode 100644
index 0000000000..4f9c231945
--- /dev/null
+++ b/db/re/item_db.yml
@@ -0,0 +1,93 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Footer:
+ Imports:
+ - Path: db/re/item_db_usable.yml
+ - Path: db/re/item_db_equip.yml
+ - Path: db/re/item_db_etc.yml
diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml
new file mode 100644
index 0000000000..37b4a7fcf7
--- /dev/null
+++ b/db/re/item_db_equip.yml
@@ -0,0 +1,134813 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 1101
+ AegisName: Sword
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1102
+ AegisName: Sword_
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1103
+ AegisName: Sword__
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 100
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1104
+ AegisName: Falchion
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1105
+ AegisName: Falchion_
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1106
+ AegisName: Falchion__
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1500
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1107
+ AegisName: Blade
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1108
+ AegisName: Blade_
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1109
+ AegisName: Blade__
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2900
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1110
+ AegisName: Lapier
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1111
+ AegisName: Lapier_
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1112
+ AegisName: Lapier__
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10000
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1113
+ AegisName: Scimiter
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1114
+ AegisName: Scimiter_
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1115
+ AegisName: Scimiter__
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 17000
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1116
+ AegisName: Katana
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1117
+ AegisName: Katana_
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1118
+ AegisName: Katana__
+ Name: Katana
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2000
+ Weight: 1000
+ Attack: 60
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1119
+ AegisName: Tsurugi
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1120
+ AegisName: Tsurugi_
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1121
+ AegisName: Tsurugi__
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 51000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1122
+ AegisName: Ring_Pommel_Saber
+ Name: Ring Pommel Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 24000
+ Weight: 900
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1123
+ AegisName: Haedonggum
+ Name: Haedonggum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 50000
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1124
+ AegisName: Orcish_Sword
+ Name: Orcish Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 5
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1125
+ AegisName: Ring_Pommel_Saber_
+ Name: Ring Pommel Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 24000
+ Weight: 900
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1126
+ AegisName: Saber
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 49000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1127
+ AegisName: Saber_
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 49000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1128
+ AegisName: Hae_Dong_Gum_
+ Name: Haedonggum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 50000
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1129
+ AegisName: Flamberge
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 60000
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1130
+ AegisName: Nagan
+ Name: Nagan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 1131
+ AegisName: Ice_Falchon
+ Name: Ice Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 600
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ bonus2 bAddEff2,Eff_Freeze,10;
+ skill "MG_COLDBOLT",3;
+ bonus3 bAutoSpell,"MG_COLDBOLT",3,100;
+ - Id: 1132
+ AegisName: Edge
+ Name: Edge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,30;
+ bonus2 bComaClass,Class_All,10;
+ - Id: 1133
+ AegisName: Fire_Brand
+ Name: Fireblend
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ skill "MG_FIREBOLT",3;
+ bonus3 bAutoSpell,"MG_FIREBOLT",3,100;
+ - Id: 1134
+ AegisName: Scissores_Sword
+ Name: Caesar's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Plant,25;
+ bonus bIgnoreDefRace,RC_Plant;
+ - Id: 1135
+ AegisName: Cutlas
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 1136
+ AegisName: Solar_Sword
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bHPDrainRate,1000,1;
+ bonus2 bSPLossRate,15,10000;
+ - Id: 1137
+ AegisName: Excalibur
+ Name: Excalibur
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bInt,5;
+ bonus bLuk,10;
+ bonus bDex,-1;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1138
+ AegisName: Mysteltainn_
+ Name: Mysteltainn
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEle,Ele_Ghost,15;
+ bonus3 bAutoSpell,"MG_STONECURSE",3,100;
+ bonus2 bAddEff,Eff_Stone,10;
+ bonus bDex,3;
+ - Id: 1139
+ AegisName: Tale_Fing_
+ Name: Tirfing
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bHPLossRate,35,10000;
+ - Id: 1140
+ AegisName: Byeorrun_Gum
+ Name: Byeollungum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Normal,-10;
+ bonus2 bAddClass,Class_Boss,50;
+ bonus bAllStats,2;
+ - Id: 1141
+ AegisName: Immaterial_Sword
+ Name: Immaterial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ bonus3 bSPVanishRate,3,30,BF_WEAPON;
+ bonus bSPDrainValue,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 1142
+ AegisName: Jewel_Sword
+ Name: Jeweled Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 104
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;
+ - Id: 1143
+ AegisName: Gaia_Sword
+ Name: Gaia Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 2500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 74
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Ore,30;
+ - Id: 1144
+ AegisName: Sasimi
+ Name: Sashimi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1400
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus3 bAddMonsterDropItem,544,RC_Fish,4000;
+ - Id: 1145
+ AegisName: Holy_Avenger
+ Name: Holy Avenger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 450000
+ Weight: 1350
+ Attack: 125
+ Range: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bVit,2;
+ - Id: 1146
+ AegisName: Town_Sword
+ Name: Town Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 42000
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1147
+ AegisName: Town_Sword_
+ Name: Town Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 42000
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1148
+ AegisName: Star_Dust_Blade
+ Name: Star Dust Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus bUnbreakableWeapon;
+ - Id: 1149
+ AegisName: Flamberge_
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 60000
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1151
+ AegisName: Slayer
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1152
+ AegisName: Slayer_
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1153
+ AegisName: Slayer__
+ Name: Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 15000
+ Weight: 1300
+ Attack: 90
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1154
+ AegisName: Bastard_Sword
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1155
+ AegisName: Bastard_Sword_
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1156
+ AegisName: Bastard_Sword__
+ Name: Bastard Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 22500
+ Weight: 1600
+ Attack: 115
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1157
+ AegisName: Two_Hand_Sword
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1158
+ AegisName: Two_Hand_Sword_
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1159
+ AegisName: Two_Hand_Sword__
+ Name: Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 60000
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1160
+ AegisName: Broad_Sword
+ Name: Broad Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 65000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1161
+ AegisName: Balmung
+ Name: Balmung
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 250
+ Range: 1
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bInt,20;
+ bonus bLuk,20;
+ - Id: 1162
+ AegisName: Broad_Sword_
+ Name: Broad Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 65000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1163
+ AegisName: Claymore
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 74000
+ Weight: 2500
+ Attack: 180
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1164
+ AegisName: Muramasa
+ Name: Muramasa
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 155
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bAspdRate,8;
+ bonus2 bAddEff2,Eff_Curse,10;
+ - Id: 1165
+ AegisName: Masamune
+ Name: Masamune
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bFlee,30;
+ bonus bStr,-5;
+ bonus bAspd,2;
+ bonus bDefRate,-66;
+ bonus bDef2Rate,-66;
+ - Id: 1166
+ AegisName: Dragon_Slayer
+ Name: Dragon Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1300
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddRace,RC_Dragon,15;
+ - Id: 1167
+ AegisName: Schweizersabel
+ Name: Schweizersabel
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1600
+ Attack: 160
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDef,1;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;
+ - Id: 1168
+ AegisName: Zweihander
+ Name: Zweihander
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1169
+ AegisName: Executioner_
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1170
+ AegisName: Katzbalger
+ Name: Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 175
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bVit,5;
+ bonus bDef,10;
+ - Id: 1171
+ AegisName: Zweihander_
+ Name: Zweihander
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1172
+ AegisName: Claymore_
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 74000
+ Weight: 2500
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1173
+ AegisName: Muramasa_C
+ Name: Muramasa
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 1
+ Attack: 204
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,30;
+ bonus bAspdRate,8;
+ - Id: 1174
+ AegisName: Executioner_C
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2
+ Attack: 190
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1175
+ AegisName: Altas_Weapon
+ Name: Atlas Weapon
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3500
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,10;
+ if (readparam(bStr)>=80)
+ bonus bBreakArmorRate,500;
+ - Id: 1176
+ AegisName: Muscle_Cutter
+ Name: Muscle Cutter
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,800;
+ bonus3 bAutoSpell,"AL_DECAGI",1,30;
+ - Id: 1177
+ AegisName: Muramash
+ Name: Muramash
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1178
+ AegisName: Schweizersabel_
+ Name: Schweizersabel
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1600
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDef,1;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;
+ - Id: 1179
+ AegisName: Executioner__
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1180
+ AegisName: Dragon_Slayer_
+ Name: Dragon Slayer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1300
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddRace,RC_Dragon,15;
+ - Id: 1181
+ AegisName: Tae_Goo_Lyeon
+ Name: Tae Goo Lyeon
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bFlee2,10;
+ if (JobLevel>=70 || (eaclass()&EAJL_THIRD && JobLevel>=50))
+ autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ if (getrefine()>8) {
+ bonus bDelayrate,-20;
+ bonus bUseSPrate,-20;
+ }
+ - Id: 1182
+ AegisName: Bloody_Eater
+ Name: Bloody Eater
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }";
+ bonus bHPGainValue,100;
+ - Id: 1183
+ AegisName: BF_Two_Handed_Sword1
+ Name: Brave Assaulter's Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1184
+ AegisName: BF_Two_Handed_Sword2
+ Name: Valorous Assaulter's Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,20;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus bCritAtkRate,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1185
+ AegisName: Violet_Fear
+ Name: Violet Fear
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 275
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"WZ_METEOR",3,30;
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; specialeffect2 EF_ENHANCE; }",50,5000;
+ - Id: 1186
+ AegisName: Death_Guidance
+ Name: Death Guidance
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bAgi,2;
+ bonus bFlee2,20;
+ bonus3 bAutoSpell,"NPC_HELLPOWER",1,10;
+ bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0;
+ bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",(getrefine()>8?2:1),20;
+ - Id: 1187
+ AegisName: Krieger_Twohand_Sword1
+ Name: Glorious Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 220
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,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
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 10000
+ Weight: 2000
+ Attack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ if (getskilllv("SM_BASH") == 10) {
+ bonus2 bSkillAtk,"SM_BASH",50;
+ }
+ if (getskilllv("KN_BOWLINGBASH") == 10) {
+ bonus2 bSkillAtk,"KN_BOWLINGBASH",50;
+ }
+ bonus bStr,1;
+ bonus bDex,1;
+ - Id: 1189
+ AegisName: Krasnaya
+ Name: Krasnaya
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3800
+ Attack: 200
+ Range: 2
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,20;
+ }
+ - Id: 1190
+ AegisName: Claymore_C
+ Name: Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 220
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1191
+ AegisName: Alca_Bringer
+ Name: Alca Bringer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3400
+ Attack: 280
+ Range: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAspd,(getrefine()/2);
+ - Id: 1192
+ AegisName: P_Slayer1
+ Name: Eden Slayer I
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 162
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1193
+ AegisName: P_Slayer2
+ Name: Eden Slayer II
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 185
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1194
+ AegisName: F_Executioner_C
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2
+ Attack: 190
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ - Id: 1195
+ AegisName: E_Executioner_C
+ Name: Executioner
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 2
+ Attack: 190
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1196
+ AegisName: Chrome_Twohand_Sword
+ Name: Chrome Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 400
+ Attack: 280
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAgi,3;
+ bonus bMaxHPrate,-10;
+ - Id: 1197
+ AegisName: P_Slayer3
+ Name: Eden Slayer III
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 200
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1198
+ AegisName: Hairtail
+ Name: Cutlass
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,20;
+ bonus bCritAtkRate,50;
+ bonus2 bAddEff,Eff_Crystalize,30;
+ if (BaseLevel>99) {
+ bonus bBaseAtk,50;
+ }
+ - Id: 1199
+ AegisName: Ebony_Toe_Nail
+ Name: Ebony Toe Nail
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 56000
+ Weight: 1000
+ Attack: 250
+ MagicAttack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ - Id: 1201
+ AegisName: Knife
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1202
+ AegisName: Knife_
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1203
+ AegisName: Knife__
+ Name: Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 400
+ Attack: 17
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1204
+ AegisName: Cutter
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1205
+ AegisName: Cutter_
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1206
+ AegisName: Cutter__
+ Name: Cutter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1250
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1207
+ AegisName: Main_Gauche
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1208
+ AegisName: Main_Gauche_
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1209
+ AegisName: Main_Gauche__
+ Name: Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2400
+ Weight: 600
+ Attack: 43
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1210
+ AegisName: Dirk
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1211
+ AegisName: Dirk_
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1212
+ AegisName: Dirk__
+ Name: Dirk
+ Type: Weapon
+ SubType: Dagger
+ Buy: 8500
+ Weight: 500
+ Attack: 59
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1213
+ AegisName: Dagger
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1214
+ AegisName: Dagger_
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1215
+ AegisName: Dagger__
+ Name: Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 14000
+ Weight: 600
+ Attack: 73
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1216
+ AegisName: Stiletto
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1217
+ AegisName: Stiletto_
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1218
+ AegisName: Stiletto__
+ Name: Stiletto
+ Type: Weapon
+ SubType: Dagger
+ Buy: 19500
+ Weight: 700
+ Attack: 87
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1219
+ AegisName: Gladius
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1220
+ AegisName: Gladius_
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1221
+ AegisName: Gladius__
+ Name: Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 43000
+ Weight: 700
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1222
+ AegisName: Damascus
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 49000
+ Weight: 800
+ Attack: 118
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1223
+ AegisName: Forturn_Sword
+ Name: Fortune Sword
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bLuk,5;
+ bonus bFlee2,20;
+ - Id: 1224
+ AegisName: Sword_Breaker
+ Name: Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 1225
+ AegisName: Mail_Breaker
+ Name: Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 1226
+ AegisName: Damascus_
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 49000
+ Weight: 800
+ Attack: 118
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1227
+ AegisName: Weeder_Knife
+ Name: Weeder Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Plant;
+ bonus2 bAddRace,RC_Plant,15;
+ bonus2 bSubRace,RC_Plant,15;
+ - Id: 1228
+ AegisName: Combat_Knife
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Demon,-10;
+ - Id: 1229
+ AegisName: Mama's_Knife
+ Name: Kitchen Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,5000;
+ - Id: 1230
+ AegisName: House_Auger
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ - Id: 1231
+ AegisName: Bazerald
+ Name: Bazerald
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 70
+ MagicAttack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,5;
+ - Id: 1232
+ AegisName: Assasin_Dagger
+ Name: Assassin Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,15;
+ bonus bAspdRate,2;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1233
+ AegisName: Exercise
+ Name: Exorciser
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 90
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Demon;
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_DemiHuman,-10;
+ bonus2 bSubRace,RC_Player_Human,-10;
+ - Id: 1234
+ AegisName: Moonlight_Sword
+ Name: Moonlight Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ - Id: 1235
+ AegisName: Azoth
+ Name: Azoth
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bClassChange,300;
+ - Id: 1236
+ AegisName: Sucsamad
+ Name: Sucsamad
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1237
+ AegisName: Grimtooth_
+ Name: Grimtooth
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bFlee,10;
+ bonus bFlee2,5;
+ bonus bDefRate,-50;
+ bonus bDef2Rate,-50;
+ - Id: 1238
+ AegisName: Zeny_Knife
+ Name: Zeny Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1200
+ Attack: 64
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bGetZenyNum,100,40;
+ - Id: 1239
+ AegisName: Poison_Knife
+ Name: Poison Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 64
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,3000;
+ - Id: 1240
+ AegisName: Princess_Knife
+ Name: Princess Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 400
+ Attack: 84
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 1241
+ AegisName: Cursed_Dagger
+ Name: Cursed Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 80000
+ Weight: 400
+ Attack: 55
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,5000;
+ - Id: 1242
+ AegisName: Counter_Dagger
+ Name: Dagger of Counter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 120000
+ Weight: 550
+ Attack: 140
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,90;
+ - Id: 1243
+ AegisName: Novice_Knife
+ Name: Novice Main-Gauche
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1
+ Attack: 45
+ Range: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1244
+ AegisName: Holy_Dagger
+ Name: Holy Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddRace,RC_Demon,5;
+ - Id: 1245
+ AegisName: Cinquedea
+ Name: Cinquedea
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1246
+ AegisName: Cinquedea_
+ Name: Cinquedea
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1247
+ AegisName: Kindling_Dagger
+ Name: Kindle Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1248
+ AegisName: Obsidian_Dagger
+ Name: Obsidian Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1249
+ AegisName: Fisherman's_Dagger
+ Name: Fisherman's Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1250
+ AegisName: Jur
+ Name: Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 19500
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1251
+ AegisName: Jur_
+ Name: Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 19500
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1252
+ AegisName: Katar
+ Name: Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 41000
+ Weight: 1200
+ Attack: 148
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 1253
+ AegisName: Katar_
+ Name: Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 41000
+ Weight: 1200
+ Attack: 148
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 1254
+ AegisName: Jamadhar
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 37200
+ Weight: 1500
+ Attack: 165
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1255
+ AegisName: Jamadhar_
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 37200
+ Weight: 1500
+ Attack: 165
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1256
+ AegisName: Katar_Of_Cold_Icicle
+ Name: Katar of Frozen Icicle
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ - Id: 1257
+ AegisName: Katar_Of_Thornbush
+ Name: Katar of Quaking
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 1258
+ AegisName: Katar_Of_Raging_Blaze
+ Name: Katar of Raging Blaze
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bAddEff,Eff_Silence,500;
+ - Id: 1259
+ AegisName: Katar_Of_Piercing_Wind
+ Name: Katar of Piercing Wind
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Sleep,500;
+ - Id: 1260
+ AegisName: Ghoul_Leg
+ Name: Sharpened Legbone of Ghoul
+ Type: Weapon
+ SubType: Katar
+ Buy: 52500
+ Weight: 1700
+ Attack: 150
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Undead;
+ - Id: 1261
+ AegisName: Infiltrator
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 57000
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,50;
+ bonus2 bAddRace,RC_Player_Human,50;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ - Id: 1262
+ AegisName: Nail_Of_Loki
+ Name: Loki's Nail
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 115
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,300;
+ - Id: 1263
+ AegisName: Unholy_Touch
+ Name: Unholy Touch
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1250
+ Attack: 151
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,200;
+ bonus bCritical,-1;
+ bonus bUnbreakableWeapon;
+ - Id: 1264
+ AegisName: Various_Jur
+ Name: Specialty Jur
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 800
+ Attack: 90
+ Range: 1
+ Slots: 4
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddEff2,Eff_Bleeding,10;
+ - Id: 1265
+ AegisName: Bloody_Roar
+ Name: Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus bFlee,-(readparam(bAgi)+BaseLevel);
+ bonus bHPrecovRate,-100;
+ bonus bSPrecovRate,-100;
+ - Id: 1266
+ AegisName: Infiltrator_
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 57000
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,50;
+ bonus2 bAddRace,RC_Player_Human,50;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ - Id: 1267
+ AegisName: Infiltrator_C
+ Name: Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 189
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus bDef,3;
+ bonus bFlee,5;
+ bonus bFlee2,2;
+ bonus bAspdRate,8;
+ - Id: 1268
+ AegisName: Wild_Beast_Claw
+ Name: Wild Beast Claw
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1450
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100;
+ - Id: 1269
+ AegisName: Inverse_Scale
+ Name: Inverse Scale
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;
+ - Id: 1270
+ AegisName: Drill_Katar
+ Name: Drill Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1400
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,30;
+ bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;
+ - Id: 1271
+ AegisName: Blood_Tears
+ Name: Blood Tears
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1700
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;
+ - Id: 1272
+ AegisName: Scratcher
+ Name: Scratcher
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1273
+ AegisName: Bloody_Roar_C
+ Name: Refined Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 148
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bHPRegenRate,3,5000;
+ - Id: 1274
+ AegisName: Unholy_Touch_C
+ Name: Refined Unholy Touch
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 179
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,5000;
+ bonus bUnbreakableWeapon;
+ - Id: 1275
+ AegisName: Katar_Of_Cold_Icicle_
+ Name: Katar of Frozen Icicle
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,500;
+ - Id: 1276
+ AegisName: Katar_Of_Thornbush_
+ Name: Katar of Quaking
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 1277
+ AegisName: Katar_Of_Raging_Blaze_
+ Name: Katar of Raging Blaze
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bAddEff,Eff_Silence,500;
+ - Id: 1278
+ AegisName: Katar_Of_Piercing_Wind_
+ Name: Katar of Piercing Wind
+ Type: Weapon
+ SubType: Katar
+ Buy: 45000
+ Weight: 1200
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Sleep,500;
+ - Id: 1279
+ AegisName: BF_Katar1
+ Name: Brave Carnage Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1280
+ AegisName: BF_Katar2
+ Name: Valorous Carnage Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus bCritAtkRate,20;
+ bonus bAspdRate,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1281
+ AegisName: Krieger_Katar1
+ Name: Glorious Bloody Roar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1282
+ AegisName: Krieger_Katar2
+ Name: Glorious Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus bCritAtkRate,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bCriticalAddRace,RC_DemiHuman,5;
+ bonus2 bCriticalAddRace,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1283
+ AegisName: Katar_Of_Speed
+ Name: Katar Of Speed
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 175
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"AS_SONICBLOW",25;
+ bonus bAspdRate,3;
+ - Id: 1284
+ AegisName: Krishna
+ Name: Krishna
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AS_GRIMTOOTH",10;
+ bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100;
+ - Id: 1285
+ AegisName: Cakram
+ Name: Chakram
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1000
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (getskilllv("AS_KATAR") == 10) {
+ bonus bHit,10;
+ }
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",20;
+ - Id: 1286
+ AegisName: Jamadhar_C
+ Name: Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Attack: 200
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1287
+ AegisName: Durga
+ Name: Durga
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 190
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 1288
+ AegisName: Bloody_Fear_C
+ Name: Bloody Fear
+ Type: Weapon
+ SubType: Katar
+ Buy: 1
+ Attack: 145
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 1289
+ AegisName: P_Katar1
+ Name: Eden Katar I
+ Type: Weapon
+ SubType: Katar
+ Attack: 155
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1290
+ AegisName: Agent_Katar
+ Name: Agent Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 41000
+ Weight: 1200
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bHit,readparam(bLuk)/2;
+ - Id: 1291
+ AegisName: Guillotine_Katar
+ Name: Guillotine Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 56000
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bFlee,-30;
+ bonus2 bAddRace,RC_DemiHuman,50;
+ bonus2 bAddRace,RC_Player_Human,50;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",30;
+ - Id: 1292
+ AegisName: Upg_Katar
+ Name: Upg Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1000
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*10);
+ bonus bCritAtkRate,(.@r*2);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*10);
+ - Id: 1293
+ AegisName: Velum_Jamadhar
+ Name: Vellum Jamadhar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 170
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus4 bSetDefRace,RC_Player_Human,10000,5000,1;
+ bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1;
+ bonus4 bSetDefRace,RC_Player_Doram,10000,5000,1;
+ bonus4 bSetMDefRace,RC_Player_Doram,10000,5000,1;
+ bonus bAspdRate,4+getrefine();
+ - Id: 1294
+ AegisName: Velum_Scare
+ Name: Vellum Scale
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1200
+ Attack: 50
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;
+ bonus3 bSPVanishRaceRate,RC_Player_Doram,1000,10;
+ - Id: 1295
+ AegisName: Blood_Tears_
+ Name: Blood Tears
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1700
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;
+ - Id: 1296
+ AegisName: Metal_Katar
+ Name: Metal Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 75
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*5);
+ bonus bCritAtkRate,.@r;
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 1297
+ AegisName: Inverse_Scale_
+ Name: Inverse Scale
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;
+ - Id: 1298
+ AegisName: Shiver_Katar_K
+ Name: Katar Of Horror
+ Type: Weapon
+ SubType: Katar
+ Buy: 60000
+ Weight: 2700
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bCritical,getrefine();
+ - Id: 1299
+ AegisName: TE_Woe_Katar
+ Name: TE Woe Katar
+ Type: Weapon
+ SubType: Katar
+ Attack: 120
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Bleeding,1000;
+ - Id: 1300
+ AegisName: Cleaver_
+ Name: Cleaver
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,3000;
+ - Id: 1301
+ AegisName: Axe
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1302
+ AegisName: Axe_
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1303
+ AegisName: Axe__
+ Name: Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 500
+ Weight: 800
+ Attack: 38
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1304
+ AegisName: Orcish_Axe
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 75
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1305
+ AegisName: Cleaver
+ Name: Cleaver
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,3000;
+ - Id: 1306
+ AegisName: War_Axe
+ Name: War Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 4200
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 76
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bLuk,2;
+ bonus bUnbreakableWeapon;
+ - Id: 1307
+ AegisName: Windhawk
+ Name: Windhawk
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 18000
+ Weight: 1500
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bAspdRate,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1308
+ AegisName: Golden_Axe
+ Name: Golden Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 3000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1309
+ AegisName: Orcish_Axe_
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 75
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1310
+ AegisName: Krieger_Onehand_Axe1
+ Name: Glorious Cleaver
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,5;
+ }
+ if (.@r>8) {
+ bonus bAspdRate,5;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;
+ bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 1311
+ AegisName: Vecer_Axe
+ Name: Vecer Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bLuk)>=90) {
+ bonus bBaseAtk,20;
+ }
+ if (readparam(bDex)>=90) {
+ bonus bCritical,5;
+ }
+ if (readparam(bDex)>=90 && readparam(bLuk)>=90) {
+ bonus2 bSkillAtk,"MC_MAMMONITE",15;
+ }
+ - Id: 1312
+ AegisName: Orcish_Axe_C
+ Name: Orcish Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,70;
+ - Id: 1313
+ AegisName: Tourist_Axe
+ Name: Tourist Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 500
+ Attack: 77
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1314
+ AegisName: F_Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1315
+ AegisName: F_Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,10;
+ bonus2 bAddRace,RC_Demon,3;
+ skill "AL_HEAL",3;
+ - Id: 1316
+ AegisName: Adventure_Axe
+ Name: Adventure Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 1317
+ AegisName: Academy_Axe
+ Name: Academy Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 1600
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,5-(BaseLevel/10);
+ bonus bMaxHP,200-(40*(BaseLevel/10));
+ - Id: 1318
+ AegisName: Dofle_Axe
+ Name: Deflation Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 50000
+ Weight: 1800
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1319
+ AegisName: TE_Woe_Axe
+ Name: TE Woe Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Attack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 1321
+ AegisName: Dofle_Axe_
+ Name: Deflation Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 50000
+ Weight: 1800
+ Attack: 180
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1322
+ AegisName: Ru_Blue_Axe
+ Name: Blue Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 10
+ Weight: 1800
+ Attack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Ninja: true
+ Novice: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Summoner: true
+ SuperNovice: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bInt,5;
+ - Id: 1323
+ AegisName: Ru_Gold_Axe
+ Name: Ru Gold Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 1800
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,8;
+ bonus bInt,8;
+ - Id: 1324
+ AegisName: War_Axe_
+ Name: War Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Buy: 20
+ Weight: 4200
+ Attack: 140
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 76
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bLuk,2;
+ - Id: 1326
+ AegisName: Illusion_War_Axe
+ Name: Illusion War Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 4200
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,2;
+ bonus bLuk,2;
+ .@r = getrefine();
+ if (.@r >= 9) {
+ .@val = 40;
+ } else if (.@r >= 7) {
+ .@val = 20;
+ }
+ bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val);
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val);
+ bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val);
+ - Id: 1333
+ AegisName: Golden_Wrench
+ Name: Golden Wrench
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 5500
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 1336
+ AegisName: Guardian_Knight_Axe
+ Name: Guardian Knight Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 1500
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 1351
+ AegisName: Battle_Axe
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1352
+ AegisName: Battle_Axe_
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1353
+ AegisName: Battle_Axe__
+ Name: Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 5400
+ Weight: 1500
+ Attack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1354
+ AegisName: Hammer
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1355
+ AegisName: Hammer_
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1356
+ AegisName: Hammer__
+ Name: Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 15500
+ Weight: 2000
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1357
+ AegisName: Buster
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1358
+ AegisName: Buster_
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1359
+ AegisName: Buster__
+ Name: Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 34000
+ Weight: 2200
+ Attack: 155
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1360
+ AegisName: Two_Handed_Axe
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1361
+ AegisName: Two_Handed_Axe_
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1362
+ AegisName: Two_Handed_Axe__
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 55000
+ Weight: 2500
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1363
+ AegisName: Brood_Axe
+ Name: Bloody Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 4000
+ Attack: 170
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bStr,10;
+ bonus bSpeedRate,25;
+ - Id: 1364
+ AegisName: Great_Axe
+ Name: Great Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 1800
+ Attack: 187
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bAddSkillBlow,"MC_MAMMONITE",5;
+ bonus2 bAddEff,Eff_Stun,1500;
+ - Id: 1365
+ AegisName: Sabbath
+ Name: Sabbath
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2300
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bComaRace,RC_Demon,50;
+ bonus2 bCriticalAddRace,RC_Undead,50;
+ - Id: 1366
+ AegisName: Right_Epsilon
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2300
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",3;
+ bonus2 bAddRace,RC_Demon,3;
+ - Id: 1367
+ AegisName: Slaughter
+ Name: Slaughter
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus2 bComaRace,RC_Brute,40;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus2 bComaRace,RC_Player_Doram,40;
+ - Id: 1368
+ AegisName: Tomahawk
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 165
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1369
+ AegisName: Guillotine
+ Name: Guillotine
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 3000
+ Attack: 215
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus2 bComaRace,RC_DemiHuman,30;
+ bonus2 bComaRace,RC_Player_Human,30;
+ bonus2 bSPDrainValueRace,RC_DemiHuman,2;
+ bonus2 bSPDrainValueRace,RC_Player_Human,2;
+ bonus2 bSPGainRace,RC_DemiHuman,20;
+ bonus2 bSPGainRace,RC_Player_Human,20;
+ - Id: 1370
+ AegisName: Doom_Slayer
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 6000
+ Attack: 10
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-40;
+ bonus bUseSPrate,100;
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,340;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1371
+ AegisName: Doom_Slayer_
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 6000
+ Attack: 10
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-40;
+ bonus bUseSPrate,100;
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,340;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1372
+ AegisName: Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",3;
+ bonus2 bAddRace,RC_Demon,3;
+ bonus bStr,10;
+ bonus bSpeedRate,25;
+ /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/
+ - Id: 1373
+ AegisName: Brood_Axe_C
+ Name: Refined Bloody Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 205
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,20;
+ bonus bMatkRate,20;
+ bonus bAspdRate,5;
+ - Id: 1374
+ AegisName: Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ skill "ITM_TOMAHAWK",1;
+ - Id: 1375
+ AegisName: Berdysz
+ Name: Berdysz
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Medium,13;
+ bonus2 bSubSize,Size_Large,15;
+ - Id: 1376
+ AegisName: Heart_Breaker
+ Name: Heart Breaker
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2000
+ Attack: 175
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bCritical,20+getrefine();
+ bonus bAspdRate,5;
+ if (Class == Job_Whitesmith || Class == Job_Creator || Class == Job_Mechanic || Class == Job_Mechanic_T || Class == Job_Genetic || Class == Job_Genetic_T)
+ bonus3 bAutoSpell,"BS_HAMMERFALL",3,30;
+ - Id: 1377
+ AegisName: Hurricane_Fury
+ Name: Hurricane's Fury
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 3500
+ Attack: 332
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_Medium,10+.@r;
+ bonus bAspdRate,.@r;
+ bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;
+ - Id: 1378
+ AegisName: Great_Axe_C
+ Name: Refined Great Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 215
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,5;
+ bonus bHit,20;
+ bonus2 bSkillAtk,"MC_MAMMONITE",20;
+ bonus2 bAddEff,Eff_Stun,2000;
+ - Id: 1379
+ AegisName: BF_Two_Handed_Axe1
+ Name: Valorous Insane Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1380
+ AegisName: BF_Two_Handed_Axe2
+ Name: Brave Insane Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 1381
+ AegisName: N_Battle_Axe
+ Name: Novice Battle Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ - Id: 1382
+ AegisName: Krieger_Twohand_Axe1
+ Name: Glorious Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 220
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;
+ }
+ if (.@r>8) {
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;
+ bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;
+ bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 1383
+ AegisName: Holy_Celestial_Axe
+ Name: Celestial Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus3 bAutoSpell,"AL_BLESSING",5,5;
+ - Id: 1384
+ AegisName: Veteran_Axe
+ Name: Veteran Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10000
+ Weight: 3000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ if (getskilllv("BS_DAGGER") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_SWORD") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_TWOHANDSWORD") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_KNUCKLE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_SPEAR") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_AXE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ if (getskilllv("BS_MACE") == 3) {
+ bonus bBaseAtk,10;
+ }
+ bonus bVit,2;
+ bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;
+ - Id: 1385
+ AegisName: Bradium_Stonehammer
+ Name: Bradium Stone Hammer
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2700
+ Attack: 210
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());
+ - Id: 1386
+ AegisName: Doom_Slayer_I
+ Name: Doom Slayer
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 20
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,-25;
+ bonus bUseSPrate,100;
+ if (readparam(bStr)>=95) {
+ bonus bBaseAtk,400;
+ bonus2 bAddEff,Eff_Stun,3000;
+ bonus bBreakArmorRate,500;
+ }
+ - Id: 1387
+ AegisName: Giant_Axe
+ Name: Giant Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 4000
+ Attack: 330
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WS_CARTTERMINATION",15;
+ if (readparam(bStr)>=95) {
+ bonus bHit,10;
+ bonus bAspdRate,3;
+ }
+ - Id: 1388
+ AegisName: Two_Handed_Axe_C
+ Name: Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 220
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1389
+ AegisName: E_Tomahawk_C
+ Name: Tomahawk
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 2
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1390
+ AegisName: E_Right_Epsilon_C
+ Name: Light Epsilon
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 1
+ Attack: 229
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,10;
+ - Id: 1391
+ AegisName: P_Two_Handed_Axe1
+ Name: Eden Two-Handed Axe I
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 195
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1392
+ AegisName: Ygnus_Stale
+ Name: Ignus Steel
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 56000
+ Weight: 1900
+ Attack: 250
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Burning,200;
+ bonus2 bAddEff2,Eff_Burning,100;
+ - Id: 1393
+ AegisName: End_Sektura
+ Name: End Sectora
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 56000
+ Weight: 1900
+ Attack: 250
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Freeze,300;
+ bonus2 bAddEff2,Eff_Freeze,300;
+ - Id: 1394
+ AegisName: Upg_Two_Handed_Axe
+ Name: Upg Two Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2000
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bBaseAtk,(getrefine()*14);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*10);
+ bonus bUnbreakableWeapon;
+ - Id: 1395
+ AegisName: Velum_Buster
+ Name: Vellum Buster
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 50
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;
+ bonus3 bSPVanishRaceRate,RC_Player_Doram,1000,10;
+ - Id: 1396
+ AegisName: Velum_Guillotine
+ Name: Vellum Guillotine
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 5500
+ Attack: 300
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 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
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2700
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());
+ - Id: 1398
+ AegisName: Metal_Two_Handed_Axe
+ Name: Metal Two Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,(getrefine()*7);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 1399
+ AegisName: TE_Woe_Two_Handed_Axe
+ Name: TE Woe Two Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddEff,Eff_Stun,1000;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ - Id: 1400
+ AegisName: Sinister_Spear
+ Name: Spear of Vicious Mind
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1400
+ Attack: 140
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 1401
+ AegisName: Javelin
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1402
+ AegisName: Javelin_
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1403
+ AegisName: Javelin__
+ Name: Javelin
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 150
+ Weight: 700
+ Attack: 28
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1404
+ AegisName: Spear
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1405
+ AegisName: Spear_
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1406
+ AegisName: Spear__
+ Name: Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1700
+ Weight: 850
+ Attack: 44
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1407
+ AegisName: Pike
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1408
+ AegisName: Pike_
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1409
+ AegisName: Pike__
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 3450
+ Weight: 1000
+ Attack: 60
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1410
+ AegisName: Lance
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1411
+ AegisName: Lance_
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1412
+ AegisName: Lance__
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 60000
+ Weight: 2500
+ Attack: 185
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1413
+ AegisName: Gungnir
+ Name: Gungnir
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 4
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bPerfectHitRate,25;
+ bonus bHit,30;
+ - Id: 1414
+ AegisName: Gelerdria
+ Name: Gelerdria
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 700
+ Attack: 145
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bMaxHP,800;
+ bonus bMaxSP,-50;
+ - Id: 1415
+ AegisName: Skewer
+ Name: Brocca
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 850
+ Attack: 100
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus2 bAddEle,Ele_Neutral,25;
+ - Id: 1416
+ AegisName: Tjungkuletti
+ Name: Tjungkuletti
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bSPDrainValue,1;
+ bonus bSPGainValue,5;
+ - Id: 1417
+ AegisName: Pole_Axe
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 3800
+ Attack: 160
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 71
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1418
+ AegisName: Gungnir_
+ Name: Gungnir
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 4
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bPerfectHitRate,25;
+ bonus bHit,30;
+ - Id: 1419
+ AegisName: Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 195
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1420
+ AegisName: Long_Horn
+ Name: Long Horn
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ skill "TF_DETOXIFY",1;
+ bonus bUnbreakableWeapon;
+ - Id: 1421
+ AegisName: Battle_Hook
+ Name: Battle Hook
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 900
+ Attack: 140
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ skill "KN_PIERCE",3;
+ - Id: 1422
+ AegisName: Hunting_Spear
+ Name: Hunting Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 4200
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,1000;
+ bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;
+ - Id: 1423
+ AegisName: Pole_XO
+ Name: Pole XO
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1424
+ AegisName: Skewer_C
+ Name: Refined Brocca
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Attack: 149
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus2 bAddSize,Size_Medium,20;
+ bonus2 bAddSize,Size_Large,20;
+ - Id: 1425
+ AegisName: BF_Spear1
+ Name: Assaulter Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 60
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (BaseJob == Job_Crusader)
+ bonus bAspdRate,20;
+ - Id: 1426
+ AegisName: Krieger_Onehand_Spear1
+ Name: Glorious Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 130
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,5;
+ }
+ if (.@r>8) {
+ if (BaseJob == Job_Knight)
+ bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;
+ else if (BaseJob == Job_Crusader)
+ bonus3 bAutoSpell,"PA_PRESSURE",5,100;
+ bonus bAspdRate,5;
+ }
+ - Id: 1427
+ AegisName: Spear_Of_Excellent
+ Name: Spear Of Excellent
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"SM_MAGNUM",25;
+ bonus bStr,2;
+ - Id: 1428
+ AegisName: Long_Horn_M
+ Name: Long Horn
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ skill "TF_DETOXIFY",1;
+ bonus bUnbreakableWeapon;
+ - Id: 1429
+ AegisName: Hunting_Spear_M
+ Name: Hunting Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 4200
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Brute;
+ bonus bIgnoreDefRace,RC_Player_Doram;
+ bonus3 bAddMonsterDropItem,517,RC_Brute,1000;
+ bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;
+ - Id: 1430
+ AegisName: Pike_C
+ Name: Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Attack: 74
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,70;
+ - Id: 1431
+ AegisName: F_Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 195
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1432
+ AegisName: E_Pole_Axe_C
+ Name: Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 1
+ Weight: 4800
+ Attack: 195
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 1433
+ AegisName: Imperial_Spear
+ Name: Imperial Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1800
+ Attack: 180
+ MagicAttack: 40
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3);
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);
+ - Id: 1434
+ AegisName: P_Sphere1
+ Name: Eden Spear I
+ Type: Weapon
+ SubType: 1hSpear
+ Attack: 165
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1435
+ AegisName: Cannon_Spear
+ Name: Cannon Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 56000
+ Weight: 1600
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxSP,-100;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",10;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3);
+ - Id: 1436
+ AegisName: Velum_Spear
+ Name: Vellum Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 850
+ Attack: 150
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,60;
+ bonus2 bAddRace,RC_Player_Doram,60;
+ .@r = getrefine();
+ if (.@r>=6) {
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80;
+ bonus2 bSkillAtk,"LG_PINPOINTATTACK",80;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bAddRace,RC_Player_Doram,30;
+ }
+ - Id: 1437
+ AegisName: TE_Woe_Pike
+ Name: TE Woe Pike
+ Type: Weapon
+ SubType: 1hSpear
+ Attack: 100
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 1438
+ AegisName: Thanos_Spear
+ Name: Thanos Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 10
+ Weight: 3000
+ Attack: 150
+ MagicAttack: 100
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1439
+ AegisName: Half_BF_Spear1
+ Name: Half BF Spear1
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 60
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,45;
+ bonus2 bAddRace,RC_Player_Human,45;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ if (BaseJob == Job_Crusader)
+ bonus bAspdRate,20;
+ - Id: 1440
+ AegisName: Battle_Hook_
+ Name: Battle Hook
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 900
+ Attack: 140
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ skill "KN_PIERCE",3;
+ - Id: 1441
+ AegisName: Ru_Blue_Spear
+ Name: Blue Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 10
+ Weight: 1200
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bAgi,5;
+ - Id: 1442
+ AegisName: Ru_Gold_Spear
+ Name: Ru Gold Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 1200
+ Attack: 180
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,8;
+ bonus bAgi,8;
+ - Id: 1443
+ AegisName: Scarlet_Spear
+ Name: Crimson Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 900
+ Attack: 90
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r<=15?pow(.@r,2):225);
+ bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5);
+ - Id: 1445
+ AegisName: "[Rental]_Hunting_Spear"
+ Name: "[Rental] Hunting Spear"
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 140
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus2 bAddRace,RC_Insect,10;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ }
+ if (.@r >= 9) {
+ bonus2 bAddRace,RC_Insect,15;
+ bonus2 bAddRace,RC_DemiHuman,15;
+ bonus2 bAddEle,Ele_Water,15;
+ bonus2 bAddEle,Ele_Earth,15;
+ }
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1446
+ AegisName: Requiem_Spear
+ Name: Requiem Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 130
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ bonus bUnbreakableWeapon;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+20;
+ }
+ bonus2 bAddRace2,RC2_BioLab,.@b;
+ - Id: 1447
+ AegisName: Poison_Forged_Spear
+ Name: Poison Forged Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 500
+ Attack: 150
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus bCritical,10;
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ bonus2 bAddEff,Eff_Poison,1000;
+ bonus2 bAddEff2,Eff_Poison,300;
+ - Id: 1448
+ AegisName: Warrior's_Spear
+ Name: Warrior's Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 2000
+ Attack: 140
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_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
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 700
+ Attack: 145
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bMaxHP,800;
+ bonus bMaxSP,-50;
+ - Id: 1450
+ AegisName: Sinister_Lance
+ Name: Lance of Vicious Mind
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2250
+ Attack: 225
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 1451
+ AegisName: Guisarme
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1452
+ AegisName: Guisarme_
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1453
+ AegisName: Guisarme__
+ Name: Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 13000
+ Weight: 1000
+ Attack: 84
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1454
+ AegisName: Glaive
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1455
+ AegisName: Glaive_
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1456
+ AegisName: Glaive__
+ Name: Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20000
+ Weight: 1200
+ Attack: 104
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1457
+ AegisName: Partizan
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1458
+ AegisName: Partizan_
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1459
+ AegisName: Partizan__
+ Name: Partizan
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 27000
+ Weight: 2000
+ Attack: 124
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1460
+ AegisName: Trident
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1461
+ AegisName: Trident_
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1462
+ AegisName: Trident__
+ Name: Trident
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 51000
+ Weight: 1200
+ Attack: 150
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1463
+ AegisName: Halberd
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1464
+ AegisName: Halberd_
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1465
+ AegisName: Halberd__
+ Name: Halberd
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 54000
+ Weight: 2500
+ Attack: 165
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1466
+ AegisName: Crescent_Scythe
+ Name: Crescent Scythe
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bHit,10;
+ - Id: 1467
+ AegisName: Bill_Guisarme
+ Name: Bill Guisarme
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 183
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 1468
+ AegisName: Zephyrus
+ Name: Zephyrus
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Silence,200;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;
+ - Id: 1469
+ AegisName: Longinus's_Spear
+ Name: Longinus's Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_Angel,10;
+ - Id: 1470
+ AegisName: Brionac
+ Name: Brionac
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3000
+ Attack: 190
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ skill "AL_HEAL",5;
+ bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;
+ - Id: 1471
+ AegisName: Hell_Fire
+ Name: Hellfire
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3500
+ Attack: 200
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus3 bAutoSpell,"MG_FIREBALL",5,100;
+ bonus bStr,3;
+ - Id: 1472
+ AegisName: Staff_Of_Soul
+ Name: Soul Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1400
+ Attack: 25
+ MagicAttack: 200
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 73
+ Refineable: true
+ Script: |
+ bonus bInt,5;
+ bonus bAgi,2;
+ - Id: 1473
+ AegisName: Wizardy_Staff
+ Name: Wizardry Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2400
+ Attack: 120
+ MagicAttack: 200
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bDex,2;
+ - Id: 1474
+ AegisName: Gae_Bolg
+ Name: Gae Bolg
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddClass,Class_Boss,10;
+ - Id: 1475
+ AegisName: Horseback_Lance
+ Name: Equestrian's Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3700
+ Attack: 200
+ Range: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1476
+ AegisName: Crescent_Scythe_
+ Name: Crescent Scythe
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2500
+ Attack: 180
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bHit,10;
+ - Id: 1477
+ AegisName: Spectral_Spear
+ Name: Spectral Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 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
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus bIgnoreDefClass,Class_Boss;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus3 bAutoSpell,"KN_PIERCE",5,30;
+ - Id: 1479
+ AegisName: Spectral_Spear_
+ Name: Spectral Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Dark,20;
+ bonus2 bAddRace,RC_Demon,20;
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bSubEle,Ele_Dark,10;
+ bonus2 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
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 160
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bAddClass,Class_Boss,10;
+ - Id: 1481
+ AegisName: Zephyrus_
+ Name: Zephyrus
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 170
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Silence,200;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;
+ - Id: 1482
+ AegisName: BF_Lance1
+ Name: Assaulter Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 160
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus2 bAddRace,RC_DemiHuman,25;
+ bonus2 bAddRace,RC_Player_Human,25;
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus bUnbreakableWeapon;
+ - Id: 1483
+ AegisName: Ivory_Lance
+ Name: Ivory Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 160
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bAspdRate,3;
+ bonus2 bAddEff,Eff_Bleeding,300;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ skill "KN_SPEARSTAB",5;
+ - Id: 1484
+ AegisName: Cardo
+ Name: Cardo
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 5600
+ Attack: 150
+ Range: 3
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAspdRate,-10;
+ bonus bDef,getrefine()/2;
+ - Id: 1485
+ AegisName: Battle_Fork
+ Name: Battle Fork
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 700
+ Attack: 112
+ Range: 3
+ Slots: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 1486
+ AegisName: Krieger_Twohand_Spear1
+ Name: Glorious Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,70;
+ bonus2 bAddRace,RC_Player_Human,70;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ if (BaseJob == Job_Knight)
+ bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;
+ else if (BaseJob == Job_Crusader)
+ bonus3 bAutoSpell,"PA_PRESSURE",5,200;
+ }
+ - Id: 1487
+ AegisName: Lance_C
+ Name: Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,50;
+ - Id: 1488
+ AegisName: Ahlspiess_C
+ Name: Ahlspiess
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 135
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus bIgnoreDefClass,Class_Boss;
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus3 bAutoSpell,"KN_PIERCE",5,30;
+ - Id: 1489
+ AegisName: Spearfish_
+ Name: Marlin
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ }
+ - Id: 1490
+ AegisName: Giant_Lance
+ Name: Gigantic Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 20000
+ Attack: 20
+ Range: 3
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bAspd,-10;
+ bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,300;
+ }
+ UnEquipScript: |
+ heal 0,-600;
+ - Id: 1491
+ AegisName: Upg_Lance
+ Name: Upg Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1500
+ Attack: 105
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bBaseAtk,(getrefine()*12);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*10);
+ - Id: 1492
+ AegisName: Velum_Glaive
+ Name: Vellum Glaive
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 4500
+ Attack: 250
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bAddRace,RC_Player_Doram,80;
+ .@r = getrefine();
+ if (.@r>=6) {
+ bonus2 bSkillAtk,"LK_SPIRALPIERCE",100;
+ bonus2 bSkillAtk,"LG_OVERBRAND",50;
+ }
+ if (.@r>=9) {
+ bonus bShortWeaponDamageReturn,20;
+ bonus bMagicDamageReturn,20;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0;
+ }
+ - Id: 1493
+ AegisName: Metal_Lance
+ Name: Metal Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 100
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,(getrefine()*6);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 1494
+ AegisName: Undine_Spear
+ Name: Spear Of Odin
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 50000
+ Weight: 3800
+ Attack: 190
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus bMaxHPrate,getrefine();
+ - Id: 1495
+ AegisName: TE_Woe_Lance
+ Name: TE Woe Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 150
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Blind,1000;
+ - Id: 1496
+ AegisName: Thanos_Long_Spear
+ Name: Thanos Long Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 10
+ Weight: 3750
+ Attack: 250
+ MagicAttack: 50
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1497
+ AegisName: Hell_Fire_
+ Name: Hellfire
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 3500
+ Attack: 200
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus3 bAutoSpell,"MG_FIREBALL",5,100;
+ bonus bStr,3;
+ - Id: 1498
+ AegisName: Scarlet_Lance
+ Name: Crimson Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1750
+ Attack: 175
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,pow(.@r,2);
+ bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5;
+ - Id: 1499
+ AegisName: Requiem_Lance
+ Name: Requiem Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1500
+ Attack: 220
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ .@c = 5;
+ bonus bUnbreakableWeapon;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+30;
+ .@c += (.@r-5);
+ }
+ bonus2 bAddRace2,RC2_BioLab,.@b;
+ bonus2 bSubRace2,RC2_BioLab,.@c;
+ - Id: 1501
+ AegisName: Club
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1502
+ AegisName: Club_
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1503
+ AegisName: Club__
+ Name: Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 120
+ Weight: 700
+ Attack: 23
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1504
+ AegisName: Mace
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1505
+ AegisName: Mace_
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1506
+ AegisName: Mace__
+ Name: Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 1600
+ Weight: 800
+ Attack: 37
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1507
+ AegisName: Smasher
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1508
+ AegisName: Smasher_
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1509
+ AegisName: Smasher__
+ Name: Smasher
+ Type: Weapon
+ SubType: Mace
+ Buy: 9000
+ Weight: 1000
+ Attack: 54
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1510
+ AegisName: Flail
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1511
+ AegisName: Flail_
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1512
+ AegisName: Flail__
+ Name: Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 16000
+ Weight: 900
+ Attack: 69
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1513
+ AegisName: Morning_Star
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1514
+ AegisName: Morning_Star_
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1515
+ AegisName: Morning_Star__
+ Name: Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 41000
+ Weight: 1500
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1516
+ AegisName: Sword_Mace
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1517
+ AegisName: Sword_Mace_
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1518
+ AegisName: Sword_Mace__
+ Name: Sword Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 50000
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1519
+ AegisName: Chain
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1520
+ AegisName: Chain_
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1521
+ AegisName: Chain__
+ Name: Chain
+ Type: Weapon
+ SubType: Mace
+ Buy: 23000
+ Weight: 800
+ Attack: 84
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1522
+ AegisName: Stunner
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Buy: 60000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1523
+ AegisName: Spike
+ Name: Spike
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bCritical,40;
+ bonus bDefRate,-66;
+ bonus bDef2Rate,-66;
+ - Id: 1524
+ AegisName: Golden_Mace
+ Name: Golden Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1525
+ AegisName: Long_Mace
+ Name: Long Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 135
+ Range: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,10;
+ - Id: 1526
+ AegisName: Slash
+ Name: Slash
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1000
+ Attack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,15;
+ bonus2 bComaRace,RC_Undead,10;
+ bonus2 bExpAddRace,RC_Undead,5;
+ - Id: 1527
+ AegisName: Quadrille
+ Name: Quadrille
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 900
+ Attack: 165
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ - Id: 1528
+ AegisName: Grand_Cross
+ Name: Grand Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;
+ bonus2 bSPDrainValueRace,RC_Undead,1;
+ bonus2 bSPGainRace,RC_Undead,3;
+ - Id: 1529
+ AegisName: Iron_Driver
+ Name: Iron Driver
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3000
+ Attack: 155
+ Range: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 78
+ Refineable: true
+ - Id: 1530
+ AegisName: Mjolnir
+ Name: Mjolnir
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 6000
+ Attack: 350
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDex,50;
+ bonus bStr,20;
+ bonus bAspdRate,10;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",10,100;
+ autobonus "{ bonus bSplashRange,1; }",50,10000;
+ - Id: 1531
+ AegisName: Spanner
+ Name: Wrench
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 2500
+ Attack: 115
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Blind,100;
+ bonus2 bAddEff,Eff_Stun,100;
+ bonus2 bAddEff,Eff_Poison,100;
+ bonus2 bAddEff,Eff_Freeze,100;
+ - Id: 1532
+ AegisName: Stunner_
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Buy: 60000
+ Weight: 2000
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1533
+ AegisName: Warrior_Balmung
+ Name: Warrior's Balmung
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 1534
+ AegisName: Spanner_C
+ Name: Wrench
+ Type: Weapon
+ SubType: Mace
+ Buy: 2
+ Attack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEff,Eff_Blind,100;
+ bonus2 bAddEff,Eff_Stun,100;
+ bonus2 bAddEff,Eff_Poison,100;
+ bonus2 bAddEff,Eff_Freeze,100;
+ - Id: 1535
+ AegisName: Hollgrehenn_Hammer
+ Name: Hollgrehenn's Hammer
+ Type: Weapon
+ SubType: Mace
+ Buy: 4444
+ Weight: 440
+ Attack: 4
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,100;
+ bonus bBreakWeaponRate,100;
+ if (readparam(bStr)>=44) {
+ bonus bBaseAtk,44;
+ }
+ - Id: 1536
+ AegisName: Good_Morning_Star
+ Name: Good Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1537
+ AegisName: Quadrille_C
+ Name: Refined Quadrille
+ Type: Weapon
+ SubType: Mace
+ Buy: 1
+ Attack: 193
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bAddRace,RC_Demon,40;
+ bonus2 bAddRace,RC_Undead,40;
+ - Id: 1538
+ AegisName: Spike_
+ Name: Spike
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bCritical,40;
+ bonus bDefRate,-67;
+ bonus bDef2Rate,-67;
+ - Id: 1539
+ AegisName: Golden_Mace_
+ Name: Golden Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus bUnbreakableWeapon;
+ - Id: 1540
+ AegisName: Grand_Cross_
+ Name: Grand Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;
+ bonus2 bSPDrainValueRace,RC_Undead,1;
+ bonus2 bSPGainRace,RC_Undead,3;
+ - Id: 1541
+ AegisName: Nemesis
+ Name: Nemesis
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddEle,Ele_Dark,10;
+ bonus2 bAddRace,RC_Demon,10;
+ bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100;
+ autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";
+ - Id: 1542
+ AegisName: BF_Morning_Star1
+ Name: Valorous Battlefield Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1543
+ AegisName: BF_Morning_Star2
+ Name: Brave Battlefield Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 1544
+ AegisName: Lunakaligo
+ Name: Lunakaligo
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ if (readparam(bStr)>=77) {
+ bonus bAspdRate,4;
+ bonus2 bAddEff,Eff_Stun,1500;
+ bonus3 bAddMonsterDropItem,12065,RC_Plant,500;
+ bonus3 bAddMonsterDropItem,12043,RC_Brute,500;
+ bonus3 bAddMonsterDropItem,12069,RC_Fish,500;
+ }
+ - Id: 1545
+ AegisName: N_Mace
+ Name: Novice Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 57
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ - Id: 1546
+ AegisName: Krieger_Onehand_Mace1
+ Name: Glorious Morning Star
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ bonus bAspdRate,5;
+ }
+ if (.@r>8) {
+ bonus2 bAddEff,Eff_Stun,2000;
+ bonus bAspdRate,5;
+ }
+ - Id: 1547
+ AegisName: Mace_Of_Madness
+ Name: Mace Of Madness
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 150
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"MC_CARTREVOLUTION",25;
+ bonus bStr,2;
+ - Id: 1548
+ AegisName: Veteran_Hammer
+ Name: Veteran Hammer
+ Type: Weapon
+ SubType: Mace
+ Buy: 10000
+ Weight: 1800
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bHealPower,getskilllv("AL_DP");
+ bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2;
+ bonus bInt,1;
+ bonus bLuk,1;
+ - Id: 1549
+ AegisName: Pilebuncker
+ Name: Pile Bunker
+ Type: Weapon
+ SubType: Mace
+ Buy: 10000
+ Weight: 3500
+ Attack: 450
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ - Id: 1550
+ AegisName: Book
+ Name: Book
+ Type: Weapon
+ SubType: Book
+ Buy: 30000
+ Weight: 600
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1551
+ AegisName: Bible
+ Name: Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 1000
+ Attack: 115
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1552
+ AegisName: Tablet
+ Name: Tablet
+ Type: Weapon
+ SubType: Book
+ Buy: 51000
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1553
+ AegisName: Book_Of_Billows
+ Name: Book of Billows
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1554
+ AegisName: Book_Of_Mother_Earth
+ Name: Book of Mother Earth
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1555
+ AegisName: Book_Of_Blazing_Sun
+ Name: Book of the Blazing Sun
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1556
+ AegisName: Book_Of_Gust_Of_Wind
+ Name: Book of Gust of Wind
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1557
+ AegisName: Book_Of_The_Apocalypse
+ Name: Book of the Apocalypse
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 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
+ Type: Weapon
+ SubType: Book
+ Buy: 1500
+ Weight: 300
+ Attack: 60
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddDamageClass,1188,150;
+ - Id: 1559
+ AegisName: Legacy_Of_Dragon
+ Name: Legacy of Dragon
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bSPGainRace,RC_Dragon,10;
+ - Id: 1560
+ AegisName: Diary_Of_Great_Sage
+ Name: Sage's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1100
+ Attack: 100
+ MagicAttack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ if (readparam(bStr)>=50)
+ bonus bAspdRate,5;
+ if (readparam(bInt)>=70)
+ bonus bMatkRate,5;
+ - Id: 1561
+ AegisName: Hardback
+ Name: Hardcover Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1500
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bStr,3;
+ bonus bDex,2;
+ - Id: 1562
+ AegisName: Bible_Of_Battlefield
+ Name: Battlefield Textbook
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Script: |
+ bonus bInt,3;
+ bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20;
+ - Id: 1563
+ AegisName: Diary_Of_Great_Sage_C
+ Name: Sage's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ MagicAttack: 140
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,5;
+ /*Gold PC Room: bonus bBaseAtk,10;
+ bonus bMatk,10;*/
+ - Id: 1564
+ AegisName: Encyclopedia
+ Name: Encyclopedia
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 2000
+ Attack: 110
+ MagicAttack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bCritical,20+((readparam(bLuk)*2)/10);
+ - Id: 1565
+ AegisName: Death_Note
+ Name: Ledger of Death
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1000
+ Attack: 137
+ MagicAttack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,-20;
+ bonus2 bComaRace,RC_DemiHuman,10;
+ bonus2 bComaRace,RC_Player_Human,10;
+ bonus bAspdRate,getrefine();
+ if (BaseJob == Job_Sage)
+ bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;
+ - Id: 1566
+ AegisName: Diary_Of_Great_Basil
+ Name: Diary Of Great Basil
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 120
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1567
+ AegisName: Hardback_C
+ Name: Refined Hardcover Book
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 168
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,5;
+ bonus bDex,2;
+ - Id: 1568
+ AegisName: Book_Of_Billows_
+ Name: Book of Billows
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1569
+ AegisName: Book_Of_Mother_Earth_
+ Name: Book of Mother Earth
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1570
+ AegisName: Book_Of_Blazing_Sun_
+ Name: Book of Blazing Sun
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1571
+ AegisName: Book_Of_Gust_Of_Wind_
+ Name: Book of Gust of Wind
+ Type: Weapon
+ SubType: Book
+ Buy: 35000
+ Weight: 750
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1572
+ AegisName: Principles_Of_Magic
+ Name: Principles of Magic
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 300
+ Attack: 60
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bSPrecovRate,5;
+ - Id: 1573
+ AegisName: Ancient_Magic
+ Name: Ancient Magic
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 30
+ MagicAttack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,8;
+ bonus bMaxSPrate,10;
+ bonus bInt,4;
+ - Id: 1574
+ AegisName: BF_Book1
+ Name: Brave Battle Strategy Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1575
+ AegisName: BF_Book2
+ Name: Valorous Battle Strategy Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ - Id: 1576
+ AegisName: Krieger_Book1
+ Name: Glorious Tablet
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ MagicAttack: 115
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,80;
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ - Id: 1577
+ AegisName: Krieger_Book2
+ Name: Glorious Apocalypse
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ MagicAttack: 115
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,80;
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus bMatkRate,5;
+ bonus bVariableCastrate,-5;
+ bonus bDelayrate,-5;
+ }
+ - Id: 1578
+ AegisName: Book_Of_Prayer
+ Name: Book Of Prayer
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,10;
+ bonus bMaxSPrate,10;
+ - Id: 1579
+ AegisName: Death_Note_M
+ Name: Book of the Dead
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1000
+ Attack: 137
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 85
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,-20;
+ bonus2 bComaRace,RC_DemiHuman,10;
+ bonus2 bComaRace,RC_Player_Human,10;
+ bonus bAspdRate,getrefine();
+ if (BaseJob == Job_Sage)
+ bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;
+ - Id: 1580
+ AegisName: Encyclopedia_C
+ Name: Giant Encyclopedia
+ Type: Weapon
+ SubType: Book
+ Attack: 145
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bCritical,20+((readparam(bLuk)*2)/10);
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1581
+ AegisName: F_Diary_Of_Great_Sage_C
+ Name: Diary Of Great Sage
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Script: |
+ bonus bMatkRate,20;
+ bonus bAspdRate,5;
+ - Id: 1582
+ AegisName: E_Diary_Of_Great_Sage_C
+ Name: Diary Of Great Sage
+ Type: Weapon
+ SubType: Book
+ Buy: 1
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ - Id: 1583
+ AegisName: P_Dic1
+ Name: Eden Book I
+ Type: Weapon
+ SubType: Book
+ Attack: 135
+ MagicAttack: 110
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1584
+ AegisName: Chilly_Spell_Book
+ Name: Cold Magic Book
+ Type: Weapon
+ SubType: Book
+ Buy: 56000
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus bUnbreakableWeapon;
+ bonus bDex,1;
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MG_COLDBOLT",(.@r*3);
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",(.@r*3);
+ bonus2 bSkillUseSP,"MG_COLDBOLT",-(.@r*5);
+ bonus2 bSkillUseSP,"SO_DIAMONDDUST",-(.@r*5);
+ - Id: 1585
+ AegisName: Upg_Book
+ Name: Upg Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 600
+ Attack: 45
+ MagicAttack: 20
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*10);
+ bonus bMatk,(.@r*5);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*5);
+ - Id: 1586
+ AegisName: Velum_Bible
+ Name: Vellum Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 600
+ Attack: 110
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bHealPower,(BaseLevel/5)-20;
+ if (getrefine()>=6) {
+ bonus2 bSkillCooldown,"AB_LAUDAAGNUS",-3000;
+ bonus2 bSkillCooldown,"AB_LAUDARAMUS",-3000;
+ bonus2 bSkillCooldown,"AB_CLEARANCE",-10000;
+ bonus2 bSkillUseSP,"AB_LAUDAAGNUS",-60;
+ bonus2 bSkillUseSP,"AB_LAUDARAMUS",-60;
+ bonus2 bSkillUseSP,"AB_CLEARANCE",-60;
+ }
+ - Id: 1587
+ AegisName: Velum_Encyclopedia
+ Name: Vellum Great Encyclopedia
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1000
+ Attack: 130
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddRace,RC_Player_Human,80+.@r;
+ bonus2 bAddRace,RC_Player_Doram,80+.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30;
+ if (.@r>8) {
+ autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ }
+ - Id: 1588
+ AegisName: Metal_Book
+ Name: Metal Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 45
+ MagicAttack: 10
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*5);
+ bonus bMatk,(.@r*2);
+ .@i = min(BaseLevel/10,12);
+ if (BaseLevel>20) {
+ bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5;
+ }
+ - Id: 1589
+ AegisName: Legacy_Of_Dragon_
+ Name: Legacy of Dragon
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bSPGainRace,RC_Dragon,10;
+ - Id: 1590
+ AegisName: Snake_Encyclopedia
+ Name: Daizenshu Dakatsu
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 1500
+ Attack: 10
+ MagicAttack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bMatk,.@r*3;
+ - Id: 1591
+ AegisName: TE_Woe_Book
+ Name: TE Woe Book
+ Type: Weapon
+ SubType: Book
+ Attack: 120
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bMagicAddRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ bonus2 bAddEff,Eff_Blind,1000;
+ bonus bHealPower,5;
+ - Id: 1592
+ AegisName: Thor_Pedigree_Book
+ Name: Raijin's Lineage
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 400
+ Attack: 90
+ MagicAttack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r;
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1593
+ AegisName: Book_Of_Destiny
+ Name: Book of Destiny
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 400
+ Attack: 90
+ MagicAttack: 90
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLuk,5;
+ bonus bFlee2,15;
+ if (.@r >= 7)
+ bonus bFlee2,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1594
+ AegisName: Fire_Pedigree_Book
+ Name: Fire Pedigree Book
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 400
+ Attack: 90
+ MagicAttack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3;
+ bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r;
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1595
+ AegisName: Water_Pedigree_Book
+ Name: Water Pedigree Book
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 400
+ Attack: 90
+ MagicAttack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3;
+ bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r;
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Water;
+ - Id: 1596
+ AegisName: Earth_Pedigree_Book
+ Name: Earth Pedigree Book
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 400
+ Attack: 90
+ MagicAttack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r;
+ bonus bUnbreakableWeapon;
+ - Id: 1597
+ AegisName: Half_BF_Book2
+ Name: Half BF Book2
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 90
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ Taekwon: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10;
+ - Id: 1598
+ AegisName: Snake_Encyclopedia_
+ Name: Daizenshu Dakatsu
+ Type: Weapon
+ SubType: Book
+ Buy: 60000
+ Weight: 1500
+ Attack: 10
+ MagicAttack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Priest: true
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bMatk,.@r*3;
+ - Id: 1599
+ AegisName: Angra_Manyu
+ Name: Angra Manyu
+ Type: Weapon
+ SubType: Mace
+ Buy: 1
+ Weight: 10
+ Attack: 5000
+ MagicAttack: 10000
+ Range: 2
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,50;
+ bonus bBaseAtk,3300;
+ bonus bMatkRate,200;
+ bonus2 bHPDrainRate,1000,100;
+ bonus2 bSPDrainRate,1000,20;
+ bonus bHealPower,200;
+ bonus2 bAddClass,Class_All,100;
+ skill "WZ_STORMGUST",10;
+ Skill "WZ_METEOR",10;
+ Skill "WZ_VERMILION",10;
+ skill "GM_SANDMAN",1;
+ bonus bVariableCastrate,-100;
+ bonus bFixedCastrate,-100;
+ bonus bAspdRate,100;
+ - Id: 1600
+ AegisName: Sinister_Rod
+ Name: Rod of Vicious Mind
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 600
+ Attack: 60
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMatk,pow(min(getrefine(),15),2);
+ bonus bInt,5;
+ bonus bUnbreakableWeapon;
+ - Id: 1601
+ AegisName: Rod
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ MagicAttack: 30
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1602
+ AegisName: Rod_
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ MagicAttack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1603
+ AegisName: Rod__
+ Name: Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 50
+ Weight: 400
+ Attack: 15
+ MagicAttack: 30
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1604
+ AegisName: Wand
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ MagicAttack: 45
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 1605
+ AegisName: Wand_
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ MagicAttack: 45
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 1606
+ AegisName: Wand__
+ Name: Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 2500
+ Weight: 400
+ Attack: 25
+ MagicAttack: 45
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 1607
+ AegisName: Staff
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ MagicAttack: 70
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1608
+ AegisName: Staff_
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ MagicAttack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1609
+ AegisName: Staff__
+ Name: Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 9500
+ Weight: 400
+ Attack: 40
+ MagicAttack: 70
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1610
+ AegisName: Arc_Wand
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ MagicAttack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1611
+ AegisName: Arc_Wand_
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ MagicAttack: 95
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1612
+ AegisName: Arc_Wand__
+ Name: Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 45000
+ Weight: 400
+ Attack: 60
+ MagicAttack: 95
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1613
+ AegisName: Mighty_Staff
+ Name: Mighty Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,10;
+ bonus bSPDrainValue,-2;
+ - Id: 1614
+ AegisName: Blessed_Wand
+ Name: Wand of Occult
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 75
+ MagicAttack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1615
+ AegisName: Bone_Wand
+ Name: Evil Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 40
+ MagicAttack: 110
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus bAtkEle,Ele_Undead;
+ - Id: 1616
+ AegisName: Staff_Of_Wing
+ Name: Wing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 60
+ MagicAttack: 115
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-5;
+ - Id: 1617
+ AegisName: Survival_Rod
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bMaxHP,300;
+ - Id: 1618
+ AegisName: Survival_Rod_
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bDex,3;
+ bonus bMaxHP,400;
+ - Id: 1619
+ AegisName: Survival_Rod2
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxHP,300;
+ - Id: 1620
+ AegisName: Survival_Rod2_
+ Name: Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 85000
+ Weight: 1000
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bMaxHP,400;
+ - Id: 1621
+ AegisName: Hypnotist's_Staff
+ Name: Hypnotist's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 43000
+ Weight: 500
+ Attack: 70
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 1622
+ AegisName: Hypnotist's_Staff_
+ Name: Hypnotist's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 70
+ MagicAttack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 1623
+ AegisName: Mighty_Staff_C
+ Name: Mighty Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 1
+ Attack: 165
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bStr,10;
+ bonus bMatkRate,5;
+ bonus bSPDrainValue,-1;
+ - Id: 1624
+ AegisName: Lich_Bone_Wand
+ Name: Lich's Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 60
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bAtkEle,Ele_Undead;
+ .@r = getrefine();
+ bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r;
+ if (.@r>=9) {
+ bonus bMatkRate,3;
+ bonus bMaxSP,300;
+ }
+ - Id: 1625
+ AegisName: Healing_Staff
+ Name: Healing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 400
+ Attack: 10
+ MagicAttack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bHealPower,(getrefine()*3/2);
+ - Id: 1626
+ AegisName: Piercing_Staff
+ Name: Piercing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ MagicAttack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,4;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;
+ - Id: 1627
+ AegisName: Staffy
+ Name: Staffy
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 40
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatkRate,15;
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1628
+ AegisName: Survival_Rod_C
+ Name: Refined Survivor's Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 1
+ Attack: 71
+ MagicAttack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ bonus bMatkRate,20;
+ bonus bMaxHP,500;
+ - Id: 1629
+ AegisName: Walking_Stick
+ Name: Gentleman's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 40
+ MagicAttack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ bonus bMatkRate,15;
+ - Id: 1630
+ AegisName: Release_Of_Wish
+ Name: Release of Wish
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bHealPower,5;
+ autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";
+ - Id: 1631
+ AegisName: Holy_Stick
+ Name: Holy Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 50
+ MagicAttack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25;
+ bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25;
+ bonus2 bVariableCastrate,"PR_MAGNUS",-25;
+ - Id: 1632
+ AegisName: BF_Staff1
+ Name: Warlock's Magic Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bDex,3;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC;
+ bonus bUnbreakableWeapon;
+ - Id: 1633
+ AegisName: BF_Staff2
+ Name: Warlock's Battle Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,3;
+ bonus2 bMagicAddRace,RC_DemiHuman,15;
+ bonus2 bMagicAddRace,RC_Player_Human,15;
+ bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC;
+ bonus bUnbreakableWeapon;
+ - Id: 1634
+ AegisName: BF_Staff3
+ Name: Strong Recovery Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,14;
+ bonus2 bSPRegenRate,5,10000;
+ bonus bUnbreakableWeapon;
+ - Id: 1635
+ AegisName: BF_Staff4
+ Name: Speedy Recovery Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bDelayrate,-15;
+ bonus2 bSPRegenRate,5,10000;
+ bonus bUnbreakableWeapon;
+ - Id: 1636
+ AegisName: Thorn_Staff
+ Name: Thorn Staff of Darkness
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 60
+ MagicAttack: 160
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus bInt,3;
+ bonus bDex,3;
+ .@r = getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Normal,.@r;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,.@r;
+ bonus bDelayrate,-(.@r*3/2);
+ - Id: 1637
+ AegisName: Eraser
+ Name: Eraser
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ MagicAttack: 170
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bSPrecovRate,8;
+ bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0;
+ - Id: 1638
+ AegisName: Healing_Staff_C
+ Name: Staff Of Healing
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 10
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bHealPower,(getrefine()*3/2);
+ - Id: 1639
+ AegisName: N_Rod
+ Name: Novice Rod
+ Type: Weapon
+ SubType: Staff
+ Attack: 15
+ MagicAttack: 32
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 1640
+ AegisName: Krieger_Onehand_Staff1
+ Name: Glorious Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 135
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_DemiHuman,15;
+ bonus2 bMagicAddRace,RC_Player_Human,15;
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0);
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0);
+ bonus bUnbreakableWeapon;
+ if (.@r > 8) {
+ bonus bMatkRate,5;
+ bonus bVariableCastrate,-5;
+ bonus bDelayrate,-5;
+ }
+ - Id: 1641
+ AegisName: Krieger_Onehand_Staff2
+ Name: Glorious Cure Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 135
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,14;
+ bonus bDelayrate,-10;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r > 5) {
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5;
+ bonus bHealPower,5+(min(14,.@r)-5)*2;
+ }
+ if (.@r > 8)
+ bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1;
+ if (.@r > 9) {
+ bonus bHealPower,10;
+ }
+ - Id: 1642
+ AegisName: Staff_Of_Darkness
+ Name: Staff Of Darkness
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 100
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-5;
+ bonus bMatkRate,15;
+ bonus bInt,2;
+ - Id: 1643
+ AegisName: Dead_Tree_Cane
+ Name: Dead Tree Cane
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 100
+ Attack: 100
+ MagicAttack: 155
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bInt,.@r-5;
+ bonus bMaxHP,-200;
+ bonus bMaxSP,-100;
+ }
+ - Id: 1644
+ AegisName: Piercing_Staff_M
+ Name: Staff of Piercing
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ MagicAttack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatkRate,15;
+ .@r = getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;
+ - Id: 1645
+ AegisName: Lich_Bone_Wand_M
+ Name: Lich's Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 60
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bAtkEle,Ele_Undead;
+ bonus bMatkRate,20;
+ .@r = getrefine();
+ bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r;
+ if (.@r>=9) {
+ bonus bMatkRate,3;
+ bonus bMaxSP,300;
+ }
+ - Id: 1646
+ AegisName: La'cryma_Stick
+ Name: La'cryma Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,4;
+ bonus bMdef,.@r;
+ bonus2 bSkillAtk,"WZ_STORMGUST",.@r;
+ if (.@r > 9)
+ bonus2 bVariableCastrate,"WZ_STORMGUST",-8;
+ - Id: 1647
+ AegisName: Croce_Staff
+ Name: Croce Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 175
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,4;
+ bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;
+ - Id: 1648
+ AegisName: Staff_Of_Bordeaux
+ Name: Staff Of Bordeaux
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 170
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ if (getskilllv("SA_DRAGONOLOGY") == 5) {
+ bonus bUseSPrate,-15;
+ bonus bInt,3;
+ }
+ - Id: 1649
+ AegisName: Rafini_Staff
+ Name: Laphine Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 180
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFixedCastRate,-getrefine();
+ - Id: 1650
+ AegisName: P_Staff1
+ Name: Eden Staff I
+ Type: Weapon
+ SubType: Staff
+ Attack: 60
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1651
+ AegisName: P_Staff2
+ Name: Eden Staff II
+ Type: Weapon
+ SubType: Staff
+ Attack: 60
+ MagicAttack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ - Id: 1652
+ AegisName: Tourist_Staff
+ Name: Tourist Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 500
+ Attack: 35
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,15;
+ bonus bInt,2;
+ bonus bAgi,1;
+ - Id: 1653
+ AegisName: Staff_Of_Healing_C
+ Name: Staff of Healing
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 10
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bHealPower,18;
+ - Id: 1654
+ AegisName: Mental_Stick
+ Name: Mental Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 40
+ MagicAttack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",(.@r-6)*2;
+ bonus bMaxHPrate,-(.@r-6)*2;
+ }
+ bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-3000;
+ bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-60;
+ UnEquipScript: |
+ itemheal 0,-100;
+ - Id: 1655
+ AegisName: Adventure_Staff
+ Name: Adventure Staff
+ Type: Weapon
+ SubType: Staff
+ Attack: 60
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1656
+ AegisName: Academy_Wand
+ Name: Academy Wand
+ Type: Weapon
+ SubType: Staff
+ Weight: 600
+ Attack: 60
+ Range: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 1657
+ AegisName: Wand_Of_Affection
+ Name: Wand Of Affection
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bAtkEle,Ele_Holy;
+ bonus bHealPower,10;
+ - Id: 1658
+ AegisName: P_Staff3
+ Name: Eden Staff III
+ Type: Weapon
+ SubType: Staff
+ Attack: 60
+ MagicAttack: 170
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ - Id: 1659
+ AegisName: Recovery_Light
+ Name: Light of Recovery
+ Type: Weapon
+ SubType: Staff
+ Buy: 56000
+ Weight: 400
+ Attack: 30
+ MagicAttack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bHealPower,(.@r*6);
+ bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10);
+ bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12);
+ bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14);
+ - Id: 1660
+ AegisName: Wand_Of_Affection2
+ Name: Empowered Wand Of Affection
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,4;
+ bonus bHealPower,20;
+ - Id: 1661
+ AegisName: Mental_Destroyer
+ Name: Mental Destroyer
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 1400
+ Attack: 100
+ MagicAttack: 50
+ Range: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,10;
+ bonus bUnbreakableWeapon;
+ bonus bUseSPrate,100;
+ bonus bMdef,20;
+ bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;
+ - Id: 1662
+ AegisName: Bone_Wand_
+ Name: Evil Bone Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 40
+ MagicAttack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus bAtkEle,Ele_Undead;
+ - Id: 1663
+ AegisName: Staff_Of_Bordeaux_
+ Name: Staff Of Bordeaux
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ if (getskilllv("SA_DRAGONOLOGY") == 5) {
+ bonus bUseSPrate,-15;
+ bonus bInt,3;
+ }
+ - Id: 1664
+ AegisName: Thorn_Staff_
+ Name: Thorn Staff of Darkness
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 700
+ Attack: 60
+ MagicAttack: 160
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,3;
+ .@r = getrefine();
+ bonus2 bIgnoreMdefClassRate,Class_Normal,.@r;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,.@r;
+ bonus bDelayrate,-.@r*3/2;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1665
+ AegisName: Piercing_Staff_
+ Name: Piercing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ MagicAttack: 145
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,4;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;
+ - Id: 1666
+ AegisName: Healing_Staff_
+ Name: Healing Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 400
+ Attack: 10
+ MagicAttack: 105
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bHealPower,(getrefine()*3/2);
+ - Id: 1667
+ AegisName: TE_Woe_Staff
+ Name: TE Woe Staff
+ Type: Weapon
+ SubType: Staff
+ Attack: 50
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ bonus2 bMagicAddRace,RC_Player_Doram,10;
+ bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC;
+ bonus bHealPower,5;
+ - Id: 1668
+ AegisName: Sword_Stick
+ Name: Sword Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 10
+ Weight: 500
+ Attack: 120
+ MagicAttack: 150
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 1669
+ AegisName: Thanos_Staff
+ Name: Thanos Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 10
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus bHealPower,15;
+ autobonus "{ bonus2 bHPRegenRate,300,2000; bonus2 bSPRegenRate,50,2000; }",50,60000,BF_MAGIC,"{ specialeffect2 EF_HEALSP; }";
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1670
+ AegisName: RWC_Memory_Staff
+ Name: RWC Memory Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 25
+ MagicAttack: 30
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,30*(.@r/3);
+ if (.@r>=6)
+ bonus2 bMagicAddRace,RC_All,(.@r>=9?10:5);
+ if (.@r>=9)
+ bonus4 bAutoSpell,"HW_MAGICPOWER",1,5,0;
+ - Id: 1671
+ AegisName: Staff_Of_Evil_Slayer
+ Name: Evil Slayer Vanquisher Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 800
+ Attack: 30
+ MagicAttack: 155
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bMagicAddRace,RC_Undead,10;
+ bonus2 bMagicAddRace,RC_Demon,10;
+ .@r = getrefine();
+ if (.@r>=9) {
+ .@dmg = 5;
+ if (.@r>=12) {
+ .@dmg += 7;
+ }
+ bonus bMatkRate,.@dmg;
+ }
+ - Id: 1673
+ AegisName: Half_BF_Staff4
+ Name: Half BF Staff4
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ bonus bDelayrate,-10;
+ bonus2 bSPLossRate,5,12000;
+ bonus bUnbreakableWeapon;
+ - Id: 1674
+ AegisName: Half_BF_Staff2
+ Name: Half BF Staff2
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 125
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,3;
+ bonus2 bMagicAddRace,RC_DemiHuman,10;
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ bonus3 bAddEff,Eff_Stun,200,ATF_SKILL;
+ bonus bUnbreakableWeapon;
+ - Id: 1675
+ AegisName: Walking_Stick_
+ Name: Gentleman's Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 40
+ MagicAttack: 125
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 1676
+ AegisName: Baculum_Daemonicum
+ Name: Baculum Daemonicum
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 1200
+ Attack: 60
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus 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
+ Type: Weapon
+ SubType: Staff
+ Buy: 10
+ Attack: 50
+ MagicAttack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDex,5;
+ bonus bInt,5;
+ - Id: 1678
+ AegisName: Ru_Gold_Wand
+ Name: Ru Gold Wand
+ Type: Weapon
+ SubType: Staff
+ Attack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bDex,8;
+ bonus bInt,8;
+ - Id: 1679
+ AegisName: Rafini_Staff_S
+ Name: Laphine Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFixedCastRate,-getrefine();
+ - Id: 1680
+ AegisName: Scarlet_Rod
+ Name: Crimson One-Handed Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 10
+ Weight: 600
+ Attack: 60
+ MagicAttack: 70
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,4;
+ bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bUnbreakableWeapon;
+ - Id: 1681
+ AegisName: Short_Foxtail_Staff
+ Name: Short Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1682
+ AegisName: Shadow_Staff
+ Name: Shadow Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 600
+ Attack: 70
+ MagicAttack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WL_HELLINFERNO",(getskilllv("WL_HELLINFERNO") >= 5 ? 100 : 0) + (.@r*10);
+ bonus2 bIgnoreMdefRaceRate,RC_All,5;
+ autobonus "{ bonus2 bVariableCastrate,\"WL_HELLINFERNO\",-30; }",.@r*20,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ - Id: 1683
+ AegisName: Abundantly_Foxtail
+ Name: Enriched Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 200
+ Attack: 50
+ MagicAttack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 1684
+ AegisName: Long_Foxtail
+ Name: Long Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 200
+ Attack: 50
+ Range: 2
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,5;
+ bonus bMaxHP,200;
+ - Id: 1685
+ AegisName: DragonFry_Foxtail
+ Name: Dragonfly Sitting Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 70
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 20
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bMaxHP,100;
+ bonus bMaxSP,150;
+ - Id: 1686
+ AegisName: BigSize_Foxtail
+ Name: Large Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 20
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,8;
+ bonus bDex,1;
+ bonus bMaxHP,200;
+ bonus bMaxSP,100;
+ - Id: 1687
+ AegisName: Beginner_FoxTail
+ Name: Beginner Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 100
+ Attack: 40
+ MagicAttack: 15
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 1690
+ AegisName: Amazing_Foxtail
+ Name: Mysterious Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 400
+ Attack: 80
+ MagicAttack: 180
+ Range: 1
+ Slots: 3
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,10*(.@r/3)+50;
+ bonus bMatk,10*(.@r/3);
+ - Id: 1691
+ AegisName: Strange_Foxtail
+ Name: Strange God Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 100
+ MagicAttack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxSP,100;
+ .@r = getrefine();
+ bonus bMatkRate,2*(.@r/3);
+ bonus bMaxSPrate,.@r/3;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(20*.@r)+40;
+ bonus bMatk,(48*.@r)+96;
+ }
+ bonus bUnbreakableWeapon;
+ - Id: 1692
+ AegisName: Magical_Foxtail
+ Name: Magical Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 600
+ Attack: 120
+ MagicAttack: 260
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxSP,100;
+ .@r = getrefine();
+ bonus bMatkRate,2*(.@r/2);
+ bonus bMaxSPrate,.@r/2;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(24*.@r)+48;
+ bonus bMatk,(52*.@r)+104;
+ }
+ - Id: 1693
+ AegisName: Magical_Y_Foxtail
+ Name: Magical Yellow Foxtail Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 140
+ MagicAttack: 280
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,3*(.@r/2);
+ bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),100;
+ bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),100;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(28*.@r)+56;
+ bonus bMatk,(56*.@r)+112;
+ }
+ - Id: 1694
+ AegisName: Model_Foxtail
+ Name: Foxtail Model
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 150
+ Range: 1
+ Slots: 3
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,8;
+ bonus bMaxHP,100;
+ .@r = getrefine();
+ bonus bDex,(.@r/3)*2;
+ bonus bMaxSP,(.@r/3)*10;
+ - Id: 1695
+ AegisName: Detail_Model_Foxtail
+ Name: Delicate Foxtail Model
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,8;
+ bonus bMaxHP,200;
+ .@r = getrefine();
+ bonus bDex,(.@r/3)*3;
+ bonus bMaxSP,(.@r/3)*15;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(39*.@r)+78;
+ }
+ - Id: 1696
+ AegisName: Ex_Model_Foxtail
+ Name: Exquisite Foxtail Model
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,8;
+ bonus bMaxHPrate,5;
+ .@r = getrefine();
+ bonus bDex,(.@r/2)*3;
+ bonus bMaxSP,(.@r/2)*15;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(48*.@r)+96;
+ }
+ - Id: 1697
+ AegisName: Ex_Y_Model_Foxtail
+ Name: Exquisite Yellow Foxtail Model
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 300
+ Attack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,9;
+ bonus bMaxHPrate,7;
+ .@r = getrefine();
+ bonus bLongAtkRate,.@r/2;
+ bonus bMaxSP,(.@r/2)*20;
+ bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),100;
+ if (.@r>=7) {
+ .@r = min(.@r,10)-7;
+ bonus bBaseAtk,(54*.@r)+108;
+ }
+ - Id: 1698
+ AegisName: Requiem_Arc_Wand
+ Name: Requiem Arc Wand
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 80
+ MagicAttack: 145
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+20;
+ }
+ bonus2 bMagicAddRace2,RC2_BioLab,.@b;
+ - Id: 1699
+ AegisName: P_Foxtail1
+ Name: Eden Group Foxtail I
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 120
+ MagicAttack: 135
+ Range: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ bonus bInt,3;
+ bonus bLongAtkRate,5;
+ - Id: 1701
+ AegisName: Bow
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Weight: 500
+ Attack: 15
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1702
+ AegisName: Bow_
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Weight: 500
+ Attack: 15
+ Range: 5
+ Slots: 4
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1703
+ AegisName: Bow__
+ Name: Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1000
+ Attack: 15
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,1002,500;
+ bonus2 bAddDamageClass,1113,500;
+ bonus2 bAddDamageClass,1031,500;
+ bonus2 bAddDamageClass,1242,500;
+ - Id: 1704
+ AegisName: Composite_Bow
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1705
+ AegisName: Composite_Bow_
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Slots: 4
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1706
+ AegisName: Composite_Bow__
+ Name: Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2500
+ Weight: 600
+ Attack: 29
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ Refineable: true
+ - Id: 1707
+ AegisName: Great_Bow
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1708
+ AegisName: Great_Bow_
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1709
+ AegisName: Great_Bow__
+ Name: Great Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10000
+ Weight: 1000
+ Attack: 50
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1710
+ AegisName: CrossBow
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1711
+ AegisName: CrossBow_
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1712
+ AegisName: CrossBow__
+ Name: Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 17000
+ Weight: 900
+ Attack: 65
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 18
+ Refineable: true
+ - Id: 1713
+ AegisName: Arbalest
+ Name: Arbalest
+ Type: Weapon
+ SubType: Bow
+ Buy: 48000
+ Weight: 1000
+ Attack: 90
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1714
+ AegisName: Kakkung
+ Name: Gakkung Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 42000
+ Weight: 1100
+ Attack: 100
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1715
+ AegisName: Arbalest_
+ Name: Arbalest
+ Type: Weapon
+ SubType: Bow
+ Buy: 48000
+ Weight: 1000
+ Attack: 90
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1716
+ AegisName: Kakkung_
+ Name: Gakkung Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 42000
+ Weight: 1100
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1718
+ AegisName: Hunter_Bow
+ Name: Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 64000
+ Weight: 1500
+ Attack: 125
+ Range: 5
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1719
+ AegisName: Bow_Of_Roguemaster
+ Name: Roguemaster's Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 500
+ Attack: 75
+ Range: 11
+ Jobs:
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ - Id: 1720
+ AegisName: Bow_Of_Rudra
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 1721
+ AegisName: Repeting_CrossBow
+ Name: Repeating Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 89000
+ Weight: 2000
+ Attack: 95
+ Range: 9
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 1722
+ AegisName: Balistar
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 124000
+ Weight: 3500
+ Attack: 145
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 77
+ Refineable: true
+ - Id: 1723
+ AegisName: Luna_Bow
+ Name: Luna Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 2000
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDef,2+3*(.@r>5)+5*(.@r>8);
+ - Id: 1724
+ AegisName: Dragon_Wing
+ Name: Dragon Wing
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300;
+ bonus bIgnoreDefRace,RC_Dragon;
+ - Id: 1725
+ AegisName: Bow_Of_Minstrel
+ Name: Minstrel Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1700
+ Attack: 120
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bSPrecovRate,10;
+ - Id: 1726
+ AegisName: Hunter_Bow_
+ Name: Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 64000
+ Weight: 1500
+ Attack: 125
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 33
+ Refineable: true
+ - Id: 1727
+ AegisName: Balistar_
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 124000
+ Weight: 3500
+ Attack: 145
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 77
+ Refineable: true
+ - Id: 1728
+ AegisName: Balistar_C
+ Name: Ballista
+ Type: Weapon
+ SubType: Bow
+ Buy: 1
+ Attack: 194
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,20;
+ - Id: 1729
+ AegisName: Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ - Id: 1730
+ AegisName: Burning_Bow
+ Name: Burning Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 1731
+ AegisName: Frozen_Bow
+ Name: Frozen Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 100
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 1732
+ AegisName: Earth_Bow
+ Name: Earth Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 105
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 1733
+ AegisName: Gust_Bow
+ Name: Gust Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 1734
+ AegisName: Orc_Archer_Bow
+ Name: Orc Archer Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1600
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItem,1753,200;
+ - Id: 1735
+ AegisName: Kkakkung
+ Name: Kkakkung
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1736
+ AegisName: Double_Bound
+ Name: Double Bound
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 900
+ Attack: 70
+ Range: 5
+ Slots: 3
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;
+ - Id: 1737
+ AegisName: Ixion_Wing
+ Name: Ixion Wings
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 300
+ Attack: 135
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;
+ - Id: 1738
+ AegisName: BF_Bow1
+ Name: Valorous Battle CrossBow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1739
+ AegisName: BF_Bow2
+ Name: Brave Battle CrossBow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bInt,10;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus bUnbreakableWeapon;
+ - Id: 1740
+ AegisName: Nepenthes_Bow
+ Name: Nepenthes Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 105
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;
+ - Id: 1741
+ AegisName: Cursed_Lyre
+ Name: Cursed Lyre
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1250
+ Attack: 125
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bLuk,-2;
+ bonus2 bAddEff,Eff_Curse,400;
+ - Id: 1742
+ AegisName: N_Composite_Bow
+ Name: Novice Composite Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 1
+ Attack: 49
+ Range: 5
+ Slots: 3
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 4
+ - Id: 1743
+ AegisName: Krieger_Bow1
+ Name: Glorious Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ .@r = getrefine();
+ bonus bCritAtkRate,min(10,.@r)*2;
+ bonus bUnbreakableWeapon;
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ bonus2 bSkillAtk,"AC_DOUBLE",20;
+ - Id: 1744
+ AegisName: Bow_Of_Evil
+ Name: Bow Of Evil
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 170
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"AC_DOUBLE",25;
+ bonus bDex,2;
+ - Id: 1745
+ AegisName: Falken_Blitz
+ Name: Falken Blitz
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10;
+ bonus2 bSkillAtk,"AC_DOUBLE",10;
+ bonus2 bSkillAtk,"AC_CHARGEARROW",10;
+ - Id: 1746
+ AegisName: Elven_Bow
+ Name: Elven Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1500
+ Attack: 160
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1747
+ AegisName: P_Bow1
+ Name: Eden Bow I
+ Type: Weapon
+ SubType: Bow
+ Attack: 82
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1748
+ AegisName: P_Bow2
+ Name: Eden Bow II
+ Type: Weapon
+ SubType: Bow
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1749
+ AegisName: Tourist_Bow
+ Name: Tourist Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 500
+ Attack: 40
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ - Id: 1800
+ AegisName: Sinister_Fist
+ Name: Fist of Vicious Mind
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 1801
+ AegisName: Waghnakh
+ Name: Waghnak
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 8000
+ Weight: 400
+ Attack: 30
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1802
+ AegisName: Waghnakh_
+ Name: Waghnak
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 8000
+ Weight: 400
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 1803
+ AegisName: Knuckle_Duster
+ Name: Knuckle Dusters
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 25000
+ Weight: 450
+ Attack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1804
+ AegisName: Knuckle_Duster_
+ Name: Knuckle Dusters
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 25000
+ Weight: 450
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1805
+ AegisName: Hora
+ Name: Studded Knuckles
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 32000
+ Weight: 450
+ Attack: 65
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1806
+ AegisName: Hora_
+ Name: Studded Knuckles
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 32000
+ Weight: 450
+ Attack: 65
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 1807
+ AegisName: Fist
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 53000
+ Weight: 650
+ Attack: 115
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1808
+ AegisName: Fist_
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 53000
+ Weight: 650
+ Attack: 115
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1809
+ AegisName: Claw
+ Name: Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 67000
+ Weight: 500
+ Attack: 86
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1810
+ AegisName: Claw_
+ Name: Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 67000
+ Weight: 500
+ Attack: 86
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ - Id: 1811
+ AegisName: Finger
+ Name: Finger
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 58000
+ Weight: 500
+ Attack: 97
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1812
+ AegisName: Finger_
+ Name: Finger
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 58000
+ Weight: 500
+ Attack: 97
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ - Id: 1813
+ AegisName: Kaiser_Knuckle
+ Name: Kaiser Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 450
+ Attack: 110
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ - Id: 1814
+ AegisName: Berserk
+ Name: Berserk
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAspdRate,12;
+ - Id: 1815
+ AegisName: Claw_Of_Garm
+ Name: Hatii Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 550
+ Attack: 152
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus bMaxHPrate,-2;
+ bonus2 bAddEff,Eff_Bleeding,200;
+ - Id: 1816
+ AegisName: Berserk_
+ Name: Berserk
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bAspdRate,12;
+ - Id: 1817
+ AegisName: Kaiser_Knuckle_C
+ Name: Kaiser Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 1
+ Attack: 159
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bAspdRate,5;
+ - Id: 1818
+ AegisName: Magma_Fist
+ Name: Magma Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;
+ - Id: 1819
+ AegisName: Icicle_Fist
+ Name: Icicle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;
+ - Id: 1820
+ AegisName: Electric_Fist
+ Name: Electric Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;
+ - Id: 1821
+ AegisName: Seismic_Fist
+ Name: Seismic Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 80
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;
+ - Id: 1822
+ AegisName: Combo_Battle_Glove
+ Name: Combo Battle Glove
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 30
+ Range: 1
+ Slots: 4
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"MO_TRIPLEATTACK",15;
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",15;
+ bonus2 bSkillAtk,"MO_COMBOFINISH",20;
+ - Id: 1823
+ AegisName: BF_Knuckle1
+ Name: Valorous Battle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus4 bAutoSpell,"CH_SOULCOLLECT",1,20,0;
+ bonus bUnbreakableWeapon;
+ - Id: 1824
+ AegisName: BF_Knuckle2
+ Name: Brave Battle Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25;
+ autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }";
+ bonus bUnbreakableWeapon;
+ - Id: 1825
+ AegisName: Horn_Of_Hilthrion
+ Name: Horn of Hillslion
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 600
+ Attack: 95
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100;
+ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,10;
+ - Id: 1826
+ AegisName: Krieger_Knuckle1
+ Name: Glorious Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50);
+ bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50);
+ }
+ - Id: 1827
+ AegisName: Krieger_Knuckle2
+ Name: Glorious Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100;
+ bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100;
+ bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000;
+ }
+ - Id: 1828
+ AegisName: Monk_Knuckle
+ Name: Monk Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 150
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;
+ - Id: 1829
+ AegisName: Fist_C
+ Name: Fist
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 150
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1830
+ AegisName: Sura_Rampage
+ Name: Sura Rampage
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 142
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SR_EARTHSHAKER",20;
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",20;
+ bonus bUseSPrate,5;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus bUseSPrate,-1*(.@r-6);
+ }
+ - Id: 1831
+ AegisName: P_Knuckle1
+ Name: Eden Knuckle I
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 120
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1832
+ AegisName: Velum_Claw
+ Name: Vellum Claw
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 650
+ Attack: 160
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,100;
+ bonus2 bAddRace,RC_Player_Doram,100;
+ .@r = getrefine();
+ if (.@r>7) {
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bAddRace,RC_Player_Doram,20;
+ }
+ if (.@r>9) {
+ bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100;
+ bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100;
+ bonus4 bAutoSpellOnSkill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,10000;
+ bonus2 bHPLossRate,500,3000;
+ }
+ - Id: 1833
+ AegisName: Claw_Of_Flash
+ Name: Claw of Flash
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 60000
+ Weight: 400
+ Attack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bAspd,1;
+ bonus bAspdRate,getrefine();
+ bonus2 bAddSize,Size_Medium,getrefine();
+ - Id: 1834
+ AegisName: TE_Woe_Fist
+ Name: TE Woe Fist
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 150
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 1835
+ AegisName: Spartacus
+ Name: Spartacus
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 600
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,.@r;
+ if (.@r>9) {
+ bonus bNoSizeFix;
+ }
+ - Id: 1836
+ AegisName: Thanos_Knuckle
+ Name: Thanos Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 10
+ Weight: 600
+ Attack: 160
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1837
+ AegisName: Iron_nail
+ Name: Iron Nail
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 10
+ Weight: 1500
+ Attack: 100
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bIgnoreDefClass,Class_Normal;
+ bonus bIgnoreDefClass,Class_Boss;
+ .@r = (getrefine()/2);
+ bonus bAspdRate,-5+.@r;
+ if (getskilllv("MO_CHAINCOMBO") == 5) {
+ bonus bBaseAtk,20;
+ }
+ if (getskilllv("MO_COMBOFINISH") == 5) {
+ bonus bBaseAtk,20;
+ }
+ if (getskilllv("CH_TIGERFIST") == 5) {
+ bonus bBaseAtk,20;
+ }
+ if (getskilllv("CH_CHAINCRUSH") == 10) {
+ bonus bBaseAtk,40;
+ }
+ - Id: 1838
+ AegisName: Half_BF_Knuckle1
+ Name: Half BF Knuckle1
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 30
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0;
+ bonus bUnbreakableWeapon;
+ - Id: 1839
+ AegisName: Scarlet_Knuckle
+ Name: Crimson Knuckles
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bUnbreakableWeapon;
+ - Id: 1840
+ AegisName: Requiem_Knuckle
+ Name: Requiem Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 500
+ Attack: 150
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+20;
+ }
+ bonus2 bAddRace2,RC2_BioLab,.@b;
+ - Id: 1841
+ AegisName: Claw_Of_Flash_
+ Name: Claw of Flash
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 60000
+ Weight: 400
+ Attack: 140
+ Range: 1
+ Slots: 3
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bAspd,1;
+ bonus bAspdRate,getrefine();
+ bonus2 bAddSize,Size_Medium,getrefine();
+ - Id: 1845
+ AegisName: Probation_Knuckle
+ Name: Trial Sura's Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"SR_TIGERCANNON",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bBaseAtk,3*getskilllv("MO_TRIPLEATTACK");
+ }
+ - Id: 1846
+ AegisName: Combo_Battle_Glove_IL
+ Name: Illusion Combo Battle Glove
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 500
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2));
+ bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2));
+ bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3));
+ - Id: 1847
+ AegisName: Iron_Nail_K
+ Name: Iron Nail
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 1000
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 1848
+ AegisName: Rebeginer_SR_Nuckle
+ Name: Beginner Sura's Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"SR_TIGERCANNON",15;
+ }
+ - Id: 1862
+ AegisName: Burning_Knuckle_OS
+ Name: Burning Knuckle-OS
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 900
+ Attack: 175
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ }
+ - Id: 1864
+ AegisName: Evt_Iron_Nail_K
+ Name: Sealed Iron Nail
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bLongAtkRate,4*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;
+ }
+ - Id: 1865
+ AegisName: Raging_Dragon_Fist
+ Name: Raging Dragon Fist
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 700
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",30;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"MO_COMBOFINISH",50;
+ bonus2 bSkillAtk,"CH_CHAINCRUSH",50;
+ }
+ if (.@r >= 11)
+ bonus2 bSkillAtk,"CH_CHAINCRUSH",30;
+ - Id: 1866
+ AegisName: Dedicated_Bandage
+ Name: Dedicated Bandage
+ Type: Weapon
+ SubType: Knuckle
+ Buy: 20
+ Weight: 800
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus bLongAtkRate,10;
+ if (.@r >= 9)
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",40;
+ if (.@r >= 11)
+ bonus bDelayrate,-7;
+ - Id: 1867
+ AegisName: Ein_1HKNUCK
+ Name: Safety Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 1800
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",10;
+ if (.@r>=7) {
+ bonus bAspdRate,15;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",15;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 1870
+ AegisName: R_Knuckle
+ Name: Royal Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 1500
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;
+ }
+ - Id: 1900
+ AegisName: Sinister_Viollin
+ Name: Violin of Vicious Mind
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1300
+ Attack: 130
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2)/2;
+ - Id: 1901
+ AegisName: Violin
+ Name: Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 4000
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1902
+ AegisName: Violin_
+ Name: Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 4000
+ Weight: 700
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 1903
+ AegisName: Mandolin
+ Name: Mandolin
+ Type: Weapon
+ SubType: Musical
+ Buy: 18000
+ Weight: 400
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1904
+ AegisName: Mandolin_
+ Name: Mandolin
+ Type: Weapon
+ SubType: Musical
+ Buy: 18000
+ Weight: 400
+ Attack: 90
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1905
+ AegisName: Lute
+ Name: Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 24500
+ Weight: 500
+ Attack: 105
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1906
+ AegisName: Lute_
+ Name: Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 24500
+ Weight: 500
+ Attack: 105
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 1907
+ AegisName: Guitar
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 47000
+ Weight: 900
+ Attack: 142
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1908
+ AegisName: Guitar_
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 47000
+ Weight: 900
+ Attack: 142
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1909
+ AegisName: Harp
+ Name: Harp
+ Type: Weapon
+ SubType: Musical
+ Buy: 62000
+ Weight: 900
+ Attack: 114
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1910
+ AegisName: Harp_
+ Name: Harp
+ Type: Weapon
+ SubType: Musical
+ Buy: 62000
+ Weight: 900
+ Attack: 114
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 1911
+ AegisName: Guh_Moon_Goh
+ Name: Gumoongoh
+ Type: Weapon
+ SubType: Musical
+ Buy: 54000
+ Weight: 1300
+ Attack: 126
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1912
+ AegisName: Guh_Moon_Goh_
+ Name: Gumoongoh
+ Type: Weapon
+ SubType: Musical
+ Buy: 54000
+ Weight: 1300
+ Attack: 126
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 1913
+ AegisName: Electronic_Guitar
+ Name: Electric Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1800
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ skill "WZ_JUPITEL",1;
+ bonus3 bAutoSpell,"WZ_JUPITEL",1,100;
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,2;
+ bonus bAgi,1;
+ - Id: 1914
+ AegisName: Guitar_Of_Passion
+ Name: Burning Passion Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1915
+ AegisName: Guitar_Of_Blue_Solo
+ Name: Loner's Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1916
+ AegisName: Guitar_Of_Vast_Land
+ Name: Green Acre Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1917
+ AegisName: Guitar_Of_Gentle_Breeze
+ Name: Gentle Breeze Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1918
+ AegisName: Oriental_Lute
+ Name: Oriental Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ - Id: 1919
+ AegisName: Base_Guitar
+ Name: Bass Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSPGainValue,3;
+ bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1;
+ bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;
+ - Id: 1920
+ AegisName: Berserk_Guitar
+ Name: Berserk Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1800
+ Attack: 10
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAspdRate,100;
+ bonus bHPrecovRate,-100;
+ bonus2 bHPLossRate,50,5000;
+ bonus bDex,-readparam(bDex);
+ - Id: 1921
+ AegisName: Guh_Moon_Gom
+ Name: Gun Moon Gom
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1922
+ AegisName: Oriental_Lute_
+ Name: Oriental Lute
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ - Id: 1923
+ AegisName: BF_Instrument1
+ Name: Valorous Battlefield Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1924
+ AegisName: BF_Instrument2
+ Name: Brave Battlefield Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20;
+ bonus bUnbreakableWeapon;
+ - Id: 1925
+ AegisName: Cello
+ Name: Cello
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,3;
+ bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2;
+ bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;
+ - Id: 1926
+ AegisName: Harp_Of_Nepenthes
+ Name: Harp of Nepenthes
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000);
+ - Id: 1927
+ AegisName: Krieger_Instrument1
+ Name: Glorious Guitar
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;
+ - Id: 1928
+ AegisName: Berserk_Guitar_I
+ Name: Spirited Guitar
+ Type: Weapon
+ SubType: Musical
+ Attack: 40
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,100;
+ bonus bHPrecovRate,-100;
+ bonus2 bHPLossRate,50,5000;
+ bonus bDex,-readparam(bDex);
+ - Id: 1929
+ AegisName: Guitar_C
+ Name: Guitar
+ Type: Weapon
+ SubType: Musical
+ Attack: 177
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1930
+ AegisName: Green_Whistle
+ Name: Green Whistle
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 800
+ Attack: 170
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",(.@r-5)*4;
+ bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4;
+ }
+ bonus2 bSkillVariableCast,"MI_RUSH_WINDMILL",-2000;
+ bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000;
+ - Id: 1931
+ AegisName: P_String_Inst1
+ Name: Eden Guitar I
+ Type: Weapon
+ SubType: Musical
+ Attack: 125
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1932
+ AegisName: TE_Woe_Guitar
+ Name: TE Woe Guitar
+ Type: Weapon
+ SubType: Musical
+ Attack: 100
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Poison,1000;
+ - Id: 1933
+ AegisName: Thanos_Violin
+ Name: Thanos Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 10
+ Weight: 2000
+ Attack: 200
+ MagicAttack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus bLongAtkRate,20;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1934
+ AegisName: Contabass
+ Name: Contrabass
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 250
+ Attack: 180
+ MagicAttack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20;
+ - Id: 1935
+ AegisName: Ukulele_Of_Newoz
+ Name: Oz's New Ukulele
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 1000
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20;
+ - Id: 1936
+ AegisName: Ru_Blue_Violin
+ Name: Blue Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 10
+ Weight: 1500
+ Attack: 180
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDex,5;
+ bonus bVit,5;
+ - Id: 1937
+ AegisName: Ru_Gold_Violin
+ Name: Ru Gold Violin
+ Type: Weapon
+ SubType: Musical
+ Weight: 1500
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bDex,8;
+ bonus bVit,8;
+ - Id: 1938
+ AegisName: Infinity_Violin
+ Name: Infinity Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 10
+ Weight: 500
+ Attack: 150
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1939
+ AegisName: Scarlet_Viollin
+ Name: Crimson Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 800
+ Attack: 80
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 1940
+ AegisName: Trumpet_Shell
+ Name: Trumpet Shell
+ Type: Weapon
+ SubType: Musical
+ Weight: 600
+ Attack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,.@r;
+ bonus bInt,.@r;
+ .@per = ((.@r > 9) ? 40 : ((.@r > 7) ? 20 : ((.@r > 5) ? 10 : 0)));
+ bonus2 bSkillAtk,"WM_REVERBERATION",.@per;
+ bonus2 bVariableCastrate,"WM_REVERBERATION",-.@per;
+ - Id: 1941
+ AegisName: Unity_Violin
+ Name: Unity Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 400
+ Attack: 76
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 1942
+ AegisName: Requiem_Violin
+ Name: Requiem Violin
+ Type: Weapon
+ SubType: Musical
+ Buy: 20
+ Weight: 500
+ Attack: 160
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ bonus bUnbreakableWeapon;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+20;
+ }
+ if (.@r>=7)
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",200;
+ bonus2 bAddRace2,RC2_BioLab,.@b;
+ - Id: 1944
+ AegisName: Hippie_Guitar
+ Name: Hippie Guitar
+ Type: Weapon
+ SubType: Musical
+ Weight: 1000
+ Attack: 140
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@lvl = getskilllv("BA_MUSICALLESSON");
+ bonus bAspdRate,.@lvl;
+ if (.@r>=7)
+ bonus bBaseAtk,(5*.@lvl);
+ if (.@r>=9)
+ bonus bAspd,1;
+ - Id: 1950
+ AegisName: Rope
+ Name: Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 2500
+ Weight: 400
+ Attack: 45
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1951
+ AegisName: Rope_
+ Name: Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 2500
+ Weight: 400
+ Attack: 45
+ Range: 2
+ Slots: 4
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 3
+ Refineable: true
+ - Id: 1952
+ AegisName: Line
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 12000
+ Weight: 300
+ Attack: 80
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1953
+ AegisName: Line_
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 12000
+ Weight: 300
+ Attack: 80
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1954
+ AegisName: Wire
+ Name: Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 17500
+ Weight: 1000
+ Attack: 95
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1955
+ AegisName: Wire_
+ Name: Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 17500
+ Weight: 1000
+ Attack: 95
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 16
+ Refineable: true
+ - Id: 1956
+ AegisName: Rante
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 32000
+ Weight: 900
+ Attack: 135
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1957
+ AegisName: Rante_
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 32000
+ Weight: 900
+ Attack: 135
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1958
+ AegisName: Tail
+ Name: Tail Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 41000
+ Weight: 700
+ Attack: 105
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ - Id: 1959
+ AegisName: Tail_
+ Name: Tail Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 41000
+ Weight: 700
+ Attack: 105
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ - Id: 1960
+ AegisName: Whip
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 38000
+ Weight: 700
+ Attack: 120
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1961
+ AegisName: Whip_
+ Name: Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 38000
+ Weight: 700
+ Attack: 120
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 1962
+ AegisName: Lariat
+ Name: Lariat Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 400
+ Attack: 100
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bDex,5;
+ bonus bAgi,1;
+ - Id: 1963
+ AegisName: Rapture_Rose
+ Name: Rapture Rose
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 300
+ Attack: 115
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,5000;
+ - Id: 1964
+ AegisName: Chemeti
+ Name: Chemeti Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 135
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 44
+ Refineable: true
+ Script: |
+ bonus bCritical,5;
+ bonus bFlee,10;
+ bonus bFlee2,2;
+ - Id: 1965
+ AegisName: Whip_Of_Red_Flame
+ Name: Red Flame Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1966
+ AegisName: Whip_Of_Ice_Piece
+ Name: Icicle Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1967
+ AegisName: Whip_Of_Earth
+ Name: Gaia Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1968
+ AegisName: Jump_Rope
+ Name: Skipping Rope
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 400
+ Attack: 120
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bCritical,20;
+ - Id: 1969
+ AegisName: Bladed_Whip
+ Name: Blade Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,300;
+ - Id: 1970
+ AegisName: Queen's_Whip
+ Name: Queen's Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1100
+ Attack: 150
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 1971
+ AegisName: Electric_Wire
+ Name: Electric Wire
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1972
+ AegisName: Electric_Eel
+ Name: Electric Eel
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 2000
+ Attack: 100
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,2;
+ bonus bAgi,2;
+ bonus3 bAutoSpell,"WZ_JUPITEL",3,20;
+ .@r = getrefine();
+ if (.@r>0)
+ bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,50;
+ - Id: 1973
+ AegisName: Sea_Witch_Foot
+ Name: Sea Witch's Foot
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1500
+ Attack: 110
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSPGainValue,5;
+ bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1;
+ bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;
+ - Id: 1974
+ AegisName: Carrot_Whip
+ Name: Carrot Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1300
+ Attack: 185
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>0)
+ bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10;
+ - Id: 1975
+ AegisName: Queen_Is_Whip
+ Name: Queen Is Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 120
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 1976
+ AegisName: Queen's_Whip_
+ Name: Queen's Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1100
+ Attack: 150
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 1977
+ AegisName: BF_Whip1
+ Name: Valorous Battle Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 1978
+ AegisName: BF_Whip2
+ Name: Brave Battle Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20;
+ bonus bUnbreakableWeapon;
+ - Id: 1979
+ AegisName: Stem_Of_Nepenthes
+ Name: Stem of Nepenthes
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1000
+ Attack: 120
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000);
+ - Id: 1980
+ AegisName: Whip_Of_Balance
+ Name: Whip of Balance
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 700
+ Attack: 110
+ Range: 2
+ Slots: 3
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Upper: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,3;
+ bonus2 bAddSkillBlow,"DC_THROWARROW",2;
+ bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;
+ - Id: 1981
+ AegisName: Krieger_Whip1
+ Name: Glorious Lariat
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 50
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;
+ - Id: 1982
+ AegisName: Phenomena_Whip
+ Name: Phenomena Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Attack: 160
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bSkillAtk,"DC_THROWARROW",25;
+ - Id: 1983
+ AegisName: Rante_C
+ Name: Rante Whip
+ Type: Weapon
+ SubType: Whip
+ Attack: 170
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 1984
+ AegisName: Stem_Whip
+ Name: Stem Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 800
+ Attack: 170
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bSkillUseSP,"WA_SWING_DANCE",(.@r-5)*4;
+ bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4;
+ }
+ bonus2 bSkillVariableCast,"WA_SWING_DANCE",-2000;
+ bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000;
+ - Id: 1985
+ AegisName: Rosebine
+ Name: Rosebine
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 130
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bAgi,-2;
+ bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20;
+ - Id: 1986
+ AegisName: P_Tail1
+ Name: Eden Tail I
+ Type: Weapon
+ SubType: Whip
+ Attack: 125
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1987
+ AegisName: TE_Woe_Rope
+ Name: TE Woe Rope
+ Type: Weapon
+ SubType: Whip
+ Attack: 100
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Blind,1000;
+ - Id: 1988
+ AegisName: Thanos_Whip
+ Name: Thanos Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 10
+ Weight: 2200
+ Attack: 200
+ MagicAttack: 130
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus bLongAtkRate,20;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 1989
+ AegisName: Gymnastics_Ribbon
+ Name: Rhythmic Gymnastics Ribbon
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 300
+ Attack: 150
+ MagicAttack: 120
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAspdRate,20;
+ - Id: 1990
+ AegisName: Floral_Mic_Of_Igu
+ Name: Bloody Floral Decoration Microphone
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1000
+ Attack: 160
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSP,"WA_MOONLIT_SERENADE",20;
+ - Id: 1991
+ AegisName: Ru_Blue_Whip
+ Name: Blue Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 10
+ Weight: 1500
+ Attack: 180
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDex,5;
+ bonus bVit,5;
+ - Id: 1992
+ AegisName: Ru_Gold_Whip
+ Name: Ru Gold Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 1500
+ Attack: 180
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bDex,8;
+ bonus bVit,8;
+ - Id: 1994
+ AegisName: Infinity_Whip
+ Name: Infinity Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 10
+ Weight: 500
+ Attack: 150
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1995
+ AegisName: Scarlet_Wire
+ Name: Crimson Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 800
+ Attack: 80
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 1996
+ AegisName: Sinister_Wire
+ Name: Wire of Vicious Mind
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 1300
+ Attack: 130
+ MagicAttack: 50
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2)/2;
+ - Id: 1997
+ AegisName: Unity_Whip
+ Name: Unity Whip
+ Type: Weapon
+ SubType: Whip
+ Buy: 20
+ Weight: 400
+ Attack: 76
+ Range: 2
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 2000
+ AegisName: Destruction_Rod
+ Name: Staff of Destruction
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2500
+ Attack: 130
+ MagicAttack: 280
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ .@r = getrefine;
+ bonus bMatkRate,.@r/2;
+ bonus bInt,3;
+ bonus bAgi,10;
+ bonus bUseSPrate,(.@r*2);
+ bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20);
+ bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;
+ - Id: 2001
+ AegisName: Divine_Cross
+ Name: Divine Cross
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1500
+ Attack: 120
+ MagicAttack: 210
+ Range: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bDex,4;
+ bonus bMatkRate,15;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubRace,RC_Undead,15;
+ - Id: 2002
+ AegisName: Krieger_Twohand_Staff1
+ Name: Glorious Destruction Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Attack: 70
+ MagicAttack: 210
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ }
+ - Id: 2003
+ AegisName: Destruction_Rod_M
+ Name: Staff of Destruction
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 2500
+ Attack: 130
+ MagicAttack: 280
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 2004
+ AegisName: Kronos
+ Name: Kronos
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 30
+ MagicAttack: 240
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3+(.@r/2);
+ bonus bMaxHP,300+(50*.@r/2);
+ autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2005
+ AegisName: Dea_Staff
+ Name: Dea Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 30
+ MagicAttack: 220
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bMatkRate,getrefine()/2;
+ bonus bInt,6;
+ bonus bVit,2;
+ autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }";
+ - Id: 2006
+ AegisName: G_Staff_Of_Light
+ Name: Staff Of Light
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1900
+ Attack: 80
+ MagicAttack: 150
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,6;
+ - Id: 2007
+ AegisName: Golden_Rod_Staff
+ Name: Golden Rod Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,3;
+ bonus2 bSkillAtk,"WZ_JUPITEL",12;
+ - Id: 2008
+ AegisName: Aqua_Staff
+ Name: Aqua Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus bInt,3;
+ bonus2 bSkillAtk,"MG_COLDBOLT",10;
+ bonus2 bSkillAtk,"MG_FROSTDIVER",10;
+ - Id: 2009
+ AegisName: Crimson_Staff
+ Name: Crimson Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,3;
+ bonus2 bSkillAtk,"MG_FIREBOLT",10;
+ bonus2 bSkillAtk,"MG_FIREBALL",10;
+ - Id: 2010
+ AegisName: Forest_Staff
+ Name: Forest Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bInt,3;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",10;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10;
+ - Id: 2011
+ AegisName: Golden_Rod_Staff2
+ Name: Empowered Golden Rod Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bInt,5;
+ bonus2 bSkillAtk,"WZ_JUPITEL",30;
+ - Id: 2012
+ AegisName: Aqua_Staff2
+ Name: Empowered Aqua Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus bInt,5;
+ bonus2 bSkillAtk,"MG_COLDBOLT",30;
+ bonus2 bSkillAtk,"MG_FROSTDIVER",30;
+ - Id: 2013
+ AegisName: Crimson_Staff2
+ Name: Empowered Crimson Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,5;
+ bonus2 bSkillAtk,"MG_FIREBOLT",30;
+ bonus2 bSkillAtk,"MG_FIREBALL",30;
+ - Id: 2014
+ AegisName: Forest_Staff2
+ Name: Empowered Forest Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 900
+ Attack: 30
+ MagicAttack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ bonus bInt,5;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",30;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30;
+ - Id: 2015
+ AegisName: Upg_Staff
+ Name: Upg Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 50
+ MagicAttack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ 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);
+ - Id: 2016
+ AegisName: Velum_Arc_Wand
+ Name: Vellum Arc Wand
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ MagicAttack: 220
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAddRace,RC_Player_Human,25;
+ bonus2 bMagicAddRace,RC_Player_Doram,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,25;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bMatkRate,15;
+ }
+ if (.@r>8) {
+ bonus bVariableCastrate,-50;
+ bonus bFixedCast,-200;
+ }
+ - Id: 2017
+ AegisName: Divine_Cross_
+ Name: Divine Cross
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1500
+ Attack: 120
+ MagicAttack: 210
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Holy;
+ bonus bDex,4;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubRace,RC_Undead,15;
+ - Id: 2018
+ AegisName: Metal_Staff
+ Name: Metal Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Attack: 50
+ MagicAttack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseJob == Job_Wizard)
+ bonus bMatk,15;
+ else if (BaseJob == Job_Sage)
+ bonus bMatk,10;
+ bonus bMatk,(getrefine()*5);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bMatk,((.@i-2)*5);
+ - Id: 2019
+ AegisName: TE_Woe_Two_Hand_Staff
+ Name: TE Woe Two Hand Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Attack: 50
+ MagicAttack: 130
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Human,20;
+ bonus2 bMagicAddRace,RC_Player_Doram,20;
+ bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC;
+ bonus bHealPower,5;
+ - Id: 2020
+ AegisName: Jormungand
+ Name: Jormungand
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 10
+ Weight: 3000
+ Attack: 200
+ MagicAttack: 280
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 90
+ Script: |
+ bonus bInt,20;
+ bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC;
+ bonus2 bAddEffWhenHit,Eff_DPoison,100;
+ bonus bUnbreakableWeapon;
+ - Id: 2021
+ AegisName: Ganbantein
+ Name: Ganbantein
+ Type: Weapon
+ SubType: Staff
+ Weight: 2000
+ Attack: 100
+ MagicAttack: 320
+ Range: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 2022
+ AegisName: Staff_Of_Geffen
+ Name: Staff of Geffen
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 300
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bInt,20;
+ - Id: 2023
+ AegisName: Thanos_Rod
+ Name: Thanos Two-Handed Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 10
+ Weight: 1400
+ Attack: 120
+ MagicAttack: 250
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus bHealPower,18;
+ autobonus "{ bonus2 bHPRegenRate,300,2000; bonus2 bSPRegenRate,50,2000; }",50,60000,BF_MAGIC,"{ specialeffect2 EF_HEALSP; }";
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 2024
+ AegisName: Infinity_Two-handed_Stick
+ Name: Infinity Two-handed Stick
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 10
+ Weight: 500
+ Attack: 30
+ MagicAttack: 170
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2025
+ AegisName: Scarlet_Staff
+ Name: Crimson Two-Handed Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,5;
+ bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 2026
+ AegisName: Sinister_Staff
+ Name: Staff of Vicious Mind
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMatk,pow(min(getrefine(),15),2);
+ bonus bInt,6;
+ bonus bUnbreakableWeapon;
+ - Id: 2027
+ AegisName: Staff_170
+ Name: Sunflower Kid
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 10
+ Weight: 1500
+ Attack: 150
+ MagicAttack: 320
+ Slots: 2
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ 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
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 500
+ Attack: 95
+ MagicAttack: 135
+ Range: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,pow(getrefine(),2)*125/100;
+ - Id: 2032
+ AegisName: Requiem_Wizardry_Staff
+ Name: Requiem Wizardry Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 100
+ MagicAttack: 230
+ Range: 1
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = 40;
+ .@c = 5;
+ if (.@r>=5) {
+ .@b += (.@r-5)*15+20;
+ .@c += .@r-5;
+ }
+ bonus2 bMagicAddRace2,RC2_BioLab,.@b;
+ bonus2 bSubRace2,RC2_BioLab,.@c;
+ bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10;
+ - Id: 2033
+ AegisName: Toughen_Metal_Staff
+ Name: Enhanced Metal Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Attack: 60
+ MagicAttack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"WL_SOULEXPANSION",10;
+ bonus bMatk,8*getrefine();
+ bonus bMatk,7*(min(BaseLevel,150)/10);
+ if (BaseJob == JOB_SAGE) {
+ bonus bMatk,20;
+ }
+ if (BaseJob == JOB_WIZARD) {
+ bonus bMatk,15;
+ }
+ - Id: 2039
+ AegisName: Wizardy_Staff_IL
+ Name: Illusion Wizardry Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 2400
+ Attack: 150
+ MagicAttack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@val = min(getrefine(),10)/2;
+ bonus bInt,(6+.@val);
+ bonus bDex,(2+.@val);
+ - Id: 2040
+ AegisName: Probation_Staff
+ Name: Trial Warlock's Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Attack: 60
+ MagicAttack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",20;
+ bonus bMatk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bMatkRate,getskilllv("WZ_STORMGUST");
+ }
+ - Id: 2046
+ AegisName: Novice_Warlock's_Staff
+ Name: Novice Warlock's Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Attack: 70
+ MagicAttack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatkRate,5;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",15;
+ }
+ - Id: 2048
+ AegisName: Aeon_Staff
+ Name: Aeon Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 800
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3);
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000;
+ }
+ - Id: 2049
+ AegisName: Blue_Flame_Cane
+ Name: Blue Flame Cane
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ MagicAttack: 300
+ Range: 1
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine;
+ bonus bInt,7;
+ bonus bMatkRate,.@r/2;
+ bonus bUnbreakableWeapon;
+ if (.@r>=9)
+ .@val = 15;
+ else if (.@r>=7)
+ .@val = 5;
+ if (.@r>=11)
+ bonus2 bSubSize,Size_All,20;
+ if (.@r>=13)
+ bonus bDelayrate,-15;
+ bonus2 bMagicAtkEle,Ele_Fire,.@val;
+ bonus2 bMagicAtkEle,Ele_Earth,.@val;
+ bonus2 bMagicAtkEle,Ele_Water,.@val;
+ bonus2 bMagicAtkEle,Ele_Holy,.@val;
+ - Id: 2051
+ AegisName: Illusion_Survivor's_Staff
+ Name: Illusion Survivor's Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 1200
+ Attack: 100
+ MagicAttack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,2;
+ bonus bInt,2;
+ bonus bMaxHP,600;
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,(.@r/2);
+ if (.@r >= 7) {
+ bonus2 bMagicAddSize,Size_Small,15;
+ bonus2 bMagicAddSize,Size_Medium,15;
+ if (.@r >= 9) {
+ bonus2 bSubSize,Size_Small,15;
+ bonus2 bSubSize,Size_Medium,15;
+ if (.@r >= 11) {
+ bonus2 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
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 2400
+ Attack: 120
+ MagicAttack: 270
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Wizard: true
+ Classes:
+ Upper: true
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 165
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,30;
+ .@r = getrefine();
+ bonus bHealPower,.@r*2;
+ if (.@r>=7) {
+ 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
+ Type: Weapon
+ SubType: 2hStaff
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 2055
+ AegisName: Staff_of_Miracle
+ Name: Staff of Miracle
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1200
+ Attack: 100
+ MagicAttack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Ghost,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"MG_SOULSTRIKE",20;
+ bonus2 bSkillAtk,"HW_NAPALMVULCAN",20;
+ bonus2 bSkillAtk,"WL_SOULEXPANSION",20;
+ }
+ if (.@r >= 11) {
+ bonus2 bSkillAtk,"MG_SOULSTRIKE",30;
+ bonus2 bSkillAtk,"HW_NAPALMVULCAN",30;
+ }
+ - Id: 2056
+ AegisName: Gravitation_Staff
+ Name: Gravitation Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1300
+ Attack: 110
+ MagicAttack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"HW_GRAVITATION",30;
+ bonus2 bSkillAtk,"WL_DRAINLIFE",30;
+ }
+ if (.@r >= 11) {
+ bonus2 bSkillCooldown,"HW_GRAVITATION",-2000;
+ }
+ - Id: 2057
+ AegisName: Adorare_Staff
+ Name: Adorare Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 1200
+ Attack: 100
+ MagicAttack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"AB_ADORAMUS",30;
+ }
+ if (.@r >= 11) {
+ bonus2 bSubSize,Size_All,25;
+ }
+ - Id: 2058
+ AegisName: Detecting_Staff
+ Name: Detecting Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 2000
+ Attack: 180
+ MagicAttack: 330
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,10;
+ if (.@r >= 7) {
+ bonus bMatk,60;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r >= 9) {
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC;
+ }
+ if (.@r >= 11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 2060
+ AegisName: Royal_Magician_Staff
+ Name: Royal Magician Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 1500
+ Attack: 100
+ MagicAttack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,5;
+ bonus bMatk,5*.@r;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",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
+ Type: Armor
+ Buy: 500
+ Weight: 300
+ Defense: 20
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 1
+ - Id: 2102
+ AegisName: Guard_
+ Name: Guard
+ Type: Armor
+ Buy: 500
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 1
+ - Id: 2103
+ AegisName: Buckler
+ Name: Buckler
+ Type: Armor
+ Buy: 14000
+ Weight: 600
+ Defense: 40
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 2
+ - Id: 2104
+ AegisName: Buckler_
+ Name: Buckler
+ Type: Armor
+ Buy: 14000
+ Weight: 600
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 2
+ - Id: 2105
+ AegisName: Shield
+ Name: Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 1300
+ Defense: 60
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ - Id: 2106
+ AegisName: Shield_
+ Name: Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 1300
+ Defense: 60
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ - Id: 2107
+ AegisName: Mirror_Shield
+ Name: Mirror Shield
+ Type: Armor
+ Buy: 60000
+ Weight: 1000
+ Defense: 45
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ - Id: 2108
+ AegisName: Mirror_Shield_
+ Name: Mirror Shield
+ Type: Armor
+ Buy: 60000
+ Weight: 1000
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ - Id: 2109
+ AegisName: Memorize_Book
+ Name: Memory Book
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 25
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 2110
+ AegisName: Holy_Guard
+ Name: Holy Guard
+ Type: Armor
+ Buy: 85000
+ Weight: 1400
+ Defense: 110
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 68
+ View: 4
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,2;
+ - Id: 2111
+ AegisName: Herald_Of_GOD
+ Name: Sacred Mission
+ Type: Armor
+ Buy: 128000
+ Weight: 1600
+ Defense: 120
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 83
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bVit,3;
+ bonus bInt,2;
+ bonus bMdef,3;
+ bonus bUnbreakableShield;
+ - Id: 2112
+ AegisName: Novice_Guard
+ Name: Novice Guard
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 20
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2113
+ AegisName: Novice_Shield
+ Name: Novice Shield
+ Type: Armor
+ Buy: 5000
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 40
+ 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;
+ - Id: 2114
+ AegisName: Stone_Buckler
+ Name: Stone Buckler
+ Type: Armor
+ Buy: 30000
+ Weight: 1500
+ Defense: 45
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 2
+ Script: |
+ bonus2 bSubSize,Size_Large,5;
+ - Id: 2115
+ AegisName: Valkyrja's_Shield
+ Name: Valkyrja's Shield
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 4
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ bonus bMdef,5;
+ - Id: 2116
+ AegisName: Angel's_Safeguard
+ Name: Angelic Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 2117
+ AegisName: Arm_Guard
+ Name: Arm Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 150
+ Defense: 50
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ - Id: 2118
+ AegisName: Arm_Guard_
+ Name: Arm Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 150
+ Defense: 50
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1
+ - Id: 2119
+ AegisName: Improved_Arm_Guard
+ Name: Advanced Arm Guard
+ Type: Armor
+ Buy: 40000
+ Weight: 150
+ Defense: 45
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2120
+ AegisName: Improved_Arm_Guard_
+ Name: Advanced Arm Guard
+ Type: Armor
+ Buy: 40000
+ Weight: 150
+ Defense: 45
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2121
+ AegisName: Memorize_Book_
+ Name: Memory Book
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 2122
+ AegisName: Platinum_Shield
+ Name: Platinum Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 95
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 68
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubSize,Size_Medium,15;
+ bonus2 bSubSize,Size_Large,15;
+ bonus2 bSubRace,RC_Undead,10;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;
+ - Id: 2123
+ AegisName: Orleans_Server
+ Name: Orleans's Server
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 75
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bMdef,2;
+ bonus bMagicDamageReturn,5;
+ - Id: 2124
+ AegisName: Thorny_Buckler
+ Name: Thorny Buckler
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 85
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 2
+ Script: |
+ bonus bMdef,2;
+ - Id: 2125
+ AegisName: Strong_Shield
+ Name: Strong Shield
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 4
+ Script: |
+ bonus2 bSubEle,Ele_All,-20;
+ bonus bNoKnockback;
+ - Id: 2126
+ AegisName: Guyak_Shield
+ Name: Guyak Shield
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 2
+ Script: |
+ bonus bMdef,2;
+ bonus bMagicDamageReturn,2;
+ autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }";
+ - Id: 2127
+ AegisName: Secular_Mission
+ Name: Secular Mission
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Left_Hand: true
+ View: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubClass,Class_All,25;
+ - Id: 2128
+ AegisName: Herald_Of_GOD_
+ Name: Sacred Mission
+ Type: Armor
+ Buy: 128000
+ Weight: 1600
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 83
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bVit,3;
+ bonus bInt,2;
+ bonus bMdef,3;
+ bonus bUnbreakableShield;
+ - Id: 2129
+ AegisName: Exorcism_Bible
+ Name: Exorcism Bible
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 80
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bHPrecovRate,3;
+ bonus bSPrecovRate,3;
+ bonus bInt,1;
+ - Id: 2130
+ AegisName: Cross_Shield
+ Name: Cross Shield
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bStr,1;
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",30;
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30;
+ bonus bUseSPrate,10;
+ - Id: 2131
+ AegisName: Magic_Study_Vol1
+ Name: Magic Bible Vol1
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus2 bAddEffWhenHit,Eff_Stun,1000;
+ - Id: 2132
+ AegisName: Shelter_Resistance
+ Name: Shell Of Resistance
+ Type: Armor
+ Buy: 20
+ Defense: 140
+ Locations:
+ Left_Hand: true
+ View: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_All,20;
+ bonus bShortWeaponDamageReturn,1;
+ if (vip_status(VIP_STATUS_ACTIVE)) {
+ bonus bAllStats,1;
+ }
+ - Id: 2133
+ AegisName: Tournament_Shield
+ Name: Tournament Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 105
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 4
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ if (Class == Job_Lord_Knight )
+ bonus bAspdRate,-5;
+ - Id: 2134
+ AegisName: Shield_Of_Naga
+ Name: Shield of Naga
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 35
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ 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; }";
+ }
+ - Id: 2135
+ AegisName: Shadow_Guard
+ Name: Shadow Guard
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 52
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 2
+ - Id: 2136
+ AegisName: Cracked_Buckler
+ Name: Cracked Buckler
+ Type: Armor
+ Defense: 55
+ Locations:
+ Left_Hand: true
+ View: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10;
+ bonus bMdef,1;
+ - Id: 2137
+ AegisName: Valkyrja's_Shield_C
+ Name: Neo Valkyrja's Shield
+ Type: Armor
+ Defense: 110
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 95
+ View: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ bonus bMdef,5;
+ - Id: 2138
+ AegisName: Bradium_Shield
+ Name: Bradium Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1800
+ Defense: 98
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60;
+ bonus bAgi,-1;
+ bonus bMaxHP,500;
+ - Id: 2139
+ AegisName: Flame_Thrower
+ Name: Flame Thrower
+ Type: Armor
+ Buy: 20000
+ Weight: 2000
+ Defense: 60
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ View: 1
+ - Id: 2140
+ AegisName: Energy_Rune_Guard
+ Name: Energy Rune Guard
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSPrate,2;
+ - Id: 2141
+ AegisName: Freyja_SShield7
+ Name: Freyja Spirit Shield
+ Type: Armor
+ Weight: 300
+ Defense: 5
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ View: 1
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ - Id: 2142
+ AegisName: Freyja_SShield30
+ Name: Freyja Spirit Shield
+ Type: Armor
+ Weight: 300
+ Defense: 5
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ View: 1
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ - Id: 2143
+ AegisName: Freyja_SShield60
+ Name: Freyja Spirit Shield
+ Type: Armor
+ Weight: 300
+ Defense: 5
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ View: 1
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ - Id: 2144
+ AegisName: Freyja_SShield90
+ Name: Freyja Spirit Shield
+ Type: Armor
+ Weight: 300
+ Defense: 5
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 20
+ View: 1
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ - Id: 2145
+ AegisName: Time_Keepr_Shield
+ Name: Time Keeper Shield
+ Type: Armor
+ Buy: 30000
+ Defense: 20
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2146
+ AegisName: Siver_Guard
+ Name: Silver Guard
+ Type: Armor
+ Buy: 12500
+ Weight: 300
+ Defense: 60
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 22
+ Refineable: true
+ View: 1
+ - Id: 2147
+ AegisName: Round_Buckler
+ Name: Round Buckleer
+ Type: Armor
+ Buy: 24000
+ Weight: 600
+ Defense: 90
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 22
+ Refineable: true
+ View: 2
+ - Id: 2148
+ AegisName: Rotha_Shield
+ Name: Rosa Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 1300
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 3
+ - Id: 2149
+ AegisName: Upg_Guard
+ Name: Upg Guard
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 25
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2150
+ AegisName: Upg_Buckler
+ Name: Upg Buckler
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2151
+ AegisName: Upg_Shield
+ Name: Upg Shield
+ Type: Armor
+ Buy: 20
+ Weight: 650
+ Defense: 65
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2152
+ AegisName: Anti_Demon_Shield_C
+ Name: Anti-Demon Shield
+ Type: Armor
+ Defense: 120
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,25;
+ bonus2 bSubRace,RC_Player_Human,25;
+ bonus2 bSubRace,RC_Demon,25;
+ bonus bMaxHP,400;
+ - Id: 2153
+ AegisName: Imperial_Guard
+ Name: Imperial Guard
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 102
+ Refineable: true
+ View: 4
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20);
+ - Id: 2154
+ AegisName: Toy_Shield
+ Name: Toy Shield
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 1
+ - Id: 2155
+ AegisName: Academy_Shield
+ Name: Academy Shield
+ Type: Armor
+ Weight: 1500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 4
+ - Id: 2156
+ AegisName: Bible_Of_Promise1
+ Name: Bible of Promise(1st Vol.)
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 110
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bMdef,2;
+ skill "ALL_ODINS_POWER",1;
+ - Id: 2157
+ AegisName: Insecticide
+ Name: Pesticide
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bAddRace,RC_Insect,10;
+ - Id: 2158
+ AegisName: Ramor_Shield_Undead
+ Name: Ramor Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Undead,5;
+ bonus2 bMagicSubDefEle,Ele_Undead,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ - Id: 2159
+ AegisName: Sharel_Shield
+ Name: Sharel Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Fire,5;
+ bonus2 bMagicSubDefEle,Ele_Fire,5;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 2160
+ AegisName: Giant_Shield
+ Name: Giant Shield
+ Type: Armor
+ Buy: 56000
+ Weight: 2800
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubSize,Size_Large,5;
+ if (getrefine()>=9) {
+ bonus2 bSubSize,Size_Large,5;
+ }
+ - Id: 2161
+ AegisName: Geffenia_Book_Water
+ Name: Geffenia Tomb of Water
+ Type: Armor
+ Buy: 56000
+ Weight: 1000
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bMdef,2;
+ bonus bInt,1;
+ if (readparam(bInt)>=120) {
+ bonus bMatk,10;
+ bonus bMaxHP,800;
+ }
+ - Id: 2162
+ AegisName: Bible_Of_Promise2
+ Name: Bible of Promise(2nd Vol.)
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 140
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bMdef,5;
+ skill "ALL_ODINS_POWER",2;
+ bonus bHealPower,5;
+ - Id: 2163
+ AegisName: Flow_Shield
+ Name: Flow Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,5;
+ bonus2 bMagicSubDefEle,Ele_Water,5;
+ bonus2 bSubRace,RC_Brute,-5;
+ - Id: 2164
+ AegisName: Sombre_Shield
+ Name: Sombre Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Dark,5;
+ bonus2 bMagicSubDefEle,Ele_Dark,5;
+ bonus2 bSubRace,RC_Undead,-5;
+ - Id: 2165
+ AegisName: Sol_Shield
+ Name: Sol Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 80
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 5
+ Script: |
+ bonus bHPrecovRate,3;
+ bonus bSPrecovRate,3;
+ bonus bInt,1;
+ - Id: 2167
+ AegisName: Poison_Shield
+ Name: Poison Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Poison,5;
+ bonus2 bMagicSubDefEle,Ele_Poison,5;
+ bonus2 bSubRace,RC_Plant,-5;
+ - Id: 2168
+ AegisName: Immuned_Shield
+ Name: Immune Shield
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 55
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 4
+ Trade:
+ 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;
+ }
+ - Id: 2169
+ AegisName: Kalasak
+ Name: Kalasag
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 40
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubClass,Class_Boss,getrefine()/3;
+ - Id: 2170
+ AegisName: Bayani_Kalasak
+ Name: Bayani Kalasag
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 40
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubClass,Class_Boss,getrefine()/3;
+ - Id: 2171
+ AegisName: Fox_Armguard
+ Name: Fox Wrist Guard
+ Type: Armor
+ Buy: 40000
+ Weight: 200
+ Defense: 45
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bFlee,5;
+ - Id: 2172
+ AegisName: Wolf_Armguard
+ Name: Wolf Wrist Guard
+ Type: Armor
+ Buy: 45000
+ Weight: 250
+ Defense: 70
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";
+ - Id: 2173
+ AegisName: Crescent_Armguard
+ Name: Crescent Wrist Guard
+ Type: Armor
+ Buy: 45000
+ Weight: 250
+ Defense: 45
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bDelayrate,-(getrefine()*2);
+ - Id: 2174
+ AegisName: Lumiere_Shield
+ Name: Lumiere Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Holy,5;
+ bonus2 bMagicSubDefEle,Ele_Holy,5;
+ bonus2 bSubRace,RC_Dragon,-5;
+ - Id: 2175
+ AegisName: Esprit_Shield
+ Name: Spirit Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubDefEle,Ele_Ghost,5;
+ bonus2 bMagicSubDefEle,Ele_Ghost,5;
+ bonus2 bSubRace,RC_Angel,-5;
+ - Id: 2176
+ AegisName: Dark_Book
+ Name: Black Book
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 5
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 150
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bAddClass,Class_Boss,2;
+ bonus2 bMagicAddClass,Class_Boss,2;
+ bonus2 bSubClass,Class_Normal,-10;
+ - Id: 2178
+ AegisName: TE_Woe_Buckler
+ Name: TE Woe Buckler
+ Type: Armor
+ Defense: 15
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,15;
+ bonus bMaxHP,100;
+ bonus bMaxSP,100;
+ bonus2 bSubRace,RC_Player_Human,15;
+ bonus2 bSubRace,RC_Player_Doram,15;
+ - Id: 2179
+ AegisName: TE_Woe_Shield
+ Name: TE Woe Shield
+ Type: Armor
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,200;
+ bonus2 bSubRace,RC_Player_Human,20;
+ bonus2 bSubRace,RC_Player_Doram,20;
+ - Id: 2180
+ AegisName: TE_Woe_Magic_Guard
+ Name: TE Woe Magic Guard
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,25;
+ bonus bMaxSP,200;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Player_Doram,10;
+ - Id: 2181
+ AegisName: Hervor
+ Name: Hervor
+ Type: Armor
+ Buy: 10
+ Weight: 1500
+ Defense: 100
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ View: 2
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_All,30;
+ bonus bUnbreakableShield;
+ - Id: 2182
+ AegisName: Hervor_Alvitr
+ Name: Hervor Alvitr
+ Type: Armor
+ Weight: 3000
+ Defense: 150
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ View: 2
+ Script: |
+ bonus bMdef,10;
+ bonus bVit,20;
+ bonus2 bSubRace,RC_All,30;
+ bonus bUnbreakableShield;
+ /*todo instead of autobonus2 bonus4 bAutoSpellWhenHit,"ALL_RAY_OF_PROTECTION",1,50,0;*/
+ autobonus2 "{ sc_end SC_STUN; sc_end SC_SLEEP; sc_end SC_CURSE; sc_end SC_STONE; sc_end SC_POISON; sc_end SC_BLIND; sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_CONFUSION; sc_end SC_FREEZE; bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Stone,10000; bonus2 bResEff,Eff_Poison,10000; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Silence,10000; bonus2 bResEff,Eff_Bleeding,10000; bonus2 bResEff,Eff_Confusion,10000; bonus2 bResEff,Eff_Freeze,10000; }",1,50000,BF_SHORT;
+ - Id: 2183
+ AegisName: Impr_Angel's_Safeguard
+ Name: Advanced Angelic Guard
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubEle,Ele_All,5;
+ bonus2 bSubEle,Ele_Neutral,-5;
+ - Id: 2184
+ AegisName: Bunker_Shield
+ Name: Bunker Shield
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 90
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 3
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,4+max(0,.@r-4);
+ bonus bAspdRate,-5;
+ - Id: 2185
+ AegisName: Magic_Reflector
+ Name: Magic Reflect
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 3
+ Script: |
+ bonus bMdef,10;
+ bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0);
+ - Id: 2186
+ AegisName: Encyclopedia_Revision
+ Name: Great Encyclopedia Revision
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ MagicAttack: 5
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 99
+ 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;
+ - Id: 2187
+ AegisName: Shield_Of_Gray
+ Name: Shield of Gray
+ Type: Armor
+ Buy: 10
+ Weight: 2000
+ Defense: 75
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 120
+ Refineable: true
+ View: 3
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Holy,30+.@r;
+ bonus bMdef,9+.@r/3;
+ - Id: 2188
+ AegisName: Svalinn_J
+ Name: Svalinn
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Water,10;
+ bonus bMaxHPrate,.@r/3;
+ bonus2 bSubEle,Ele_Water,5*(.@r/3);
+ bonus bMdef,5;
+ - Id: 2189
+ AegisName: Mad_Bunny
+ Name: Mad Bunny Shield
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 40
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 6
+ Script: |
+ bonus2 bSubEle,Ele_All,5;
+ bonus bMdef,6;
+ bonus bDex,1;
+ - Id: 2190
+ AegisName: Ancient_Shield_Of_Aeon
+ Name: Ancient Shield Of Aeon
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 130
+ 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;
+ - 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
+ Type: Armor
+ View: 1
+ Buy: 20
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bSubRace,RC_Insect,-5;
+ - Id: 2195
+ AegisName: Lian_Shield
+ Name: Lian Shield
+ Type: Armor
+ Weight: 1300
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 3
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubRace,RC_Formless,-5;
+ - Id: 2196
+ AegisName: White_Gold_Shield
+ Name: White Gold Shield
+ Type: Armor
+ Weight: 1800
+ Defense: 140
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 4
+ Script: |
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",6,150,BF_MAGIC,0;
+ bonus bUnbreakableShield;
+ - Id: 2198
+ AegisName: Lapine_Shield
+ Name: Lapine Shield
+ Type: Armor
+ Weight: 1000
+ Defense: 25
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 3
+ Script: |
+ bonus bMdef,10;
+ if (getrefine() > 7) {
+ bonus bMatk,20;
+ }
+ - Id: 2199
+ AegisName: Ahura_Mazda
+ Name: Ahura Mazdah
+ Type: Armor
+ Buy: 1
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ 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;
+ - Id: 2201
+ AegisName: Sunglasses
+ Name: Sunglasses
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 12
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 2202
+ AegisName: Sunglasses_
+ Name: Sunglasses
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 12
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 2203
+ AegisName: Glasses
+ Name: Glasses
+ Type: Armor
+ Buy: 4000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 3
+ - Id: 2204
+ AegisName: Glasses_
+ Name: Glasses
+ Type: Armor
+ Buy: 4000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 3
+ - Id: 2205
+ AegisName: Diver's_Goggles
+ Name: Diver Goggles
+ Type: Armor
+ Buy: 3500
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 10
+ - Id: 2206
+ AegisName: Wedding_Veil
+ Name: Wedding Veil
+ Type: Armor
+ Buy: 23000
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 44
+ Script: |
+ bonus bMdef,5;
+ - Id: 2207
+ AegisName: Fancy_Flower
+ Name: Fancy Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 4
+ Script: |
+ bonus2 bSubRace,RC_Plant,10;
+ - Id: 2208
+ AegisName: Ribbon
+ Name: Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 17
+ Script: |
+ bonus bMdef,3;
+ - Id: 2209
+ AegisName: Ribbon_
+ Name: Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 17
+ Script: |
+ bonus bMdef,3;
+ - Id: 2210
+ AegisName: Hair_Band
+ Name: Hair Band
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 9
+ - Id: 2211
+ AegisName: Bandana
+ Name: Bandana
+ Type: Armor
+ Buy: 400
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 6
+ - Id: 2212
+ AegisName: Eye_Bandage
+ Name: Eye Patch
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 13
+ - Id: 2213
+ AegisName: Cat_Hairband
+ Name: Kitty Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 2
+ - Id: 2214
+ AegisName: Bunny_Band
+ Name: Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bLuk,2;
+ - Id: 2215
+ AegisName: Flower_Hairband
+ Name: Flower Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 5
+ - Id: 2216
+ AegisName: Biretta
+ Name: Biretta
+ Type: Armor
+ Buy: 9000
+ Weight: 100
+ Defense: 8
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 11
+ - Id: 2217
+ AegisName: Biretta_
+ Name: Biretta
+ Type: Armor
+ Buy: 9000
+ Weight: 100
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 11
+ - Id: 2218
+ AegisName: Flu_Mask
+ Name: Flu Mask
+ Type: Armor
+ Buy: 300
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Script: |
+ bonus2 bResEff,Eff_Silence,1000;
+ - Id: 2219
+ AegisName: Flu_Mask_
+ Name: Flu Mask
+ Type: Armor
+ Buy: 300
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Script: |
+ bonus2 bResEff,Eff_Silence,1000;
+ - Id: 2220
+ AegisName: Hat
+ Name: Hat
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ - Id: 2221
+ AegisName: Hat_
+ Name: Hat
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ - Id: 2222
+ AegisName: Turban
+ Name: Turban
+ Type: Armor
+ Buy: 4500
+ Weight: 300
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 7
+ - Id: 2223
+ AegisName: Turban_
+ Name: Turban
+ Type: Armor
+ Buy: 4500
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 7
+ - Id: 2224
+ AegisName: Goggle
+ Name: Goggles
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 1
+ - Id: 2225
+ AegisName: Goggle_
+ Name: Goggles
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 1
+ - Id: 2226
+ AegisName: Cap
+ Name: Cap
+ Type: Armor
+ Buy: 12000
+ Weight: 400
+ Defense: 7
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 14
+ - Id: 2227
+ AegisName: Cap_
+ Name: Cap
+ Type: Armor
+ Buy: 12000
+ Weight: 400
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 14
+ - Id: 2228
+ AegisName: Helm
+ Name: Helm
+ Type: Armor
+ Buy: 44000
+ Weight: 600
+ Defense: 13
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 40
+ - Id: 2229
+ AegisName: Helm_
+ Name: Helm
+ Type: Armor
+ Buy: 44000
+ Weight: 600
+ Defense: 13
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 40
+ - Id: 2230
+ AegisName: Gemmed_Sallet
+ Name: Gemmed Sallet
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2231
+ AegisName: Gemmed_Sallet_
+ Name: Gemmed Sallet
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2232
+ AegisName: Circlet
+ Name: Circlet
+ Type: Armor
+ Buy: 7500
+ Weight: 300
+ Defense: 6
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 18
+ Script: |
+ bonus bMdef,3;
+ - Id: 2233
+ AegisName: Circlet_
+ Name: Circlet
+ Type: Armor
+ Buy: 7500
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 18
+ Script: |
+ bonus bMdef,3;
+ - Id: 2234
+ AegisName: Tiara
+ Name: Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 19
+ Script: |
+ bonus bInt,2;
+ - Id: 2235
+ AegisName: Crown
+ Name: Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 45
+ Script: |
+ bonus bInt,2;
+ - Id: 2236
+ AegisName: Santa's_Hat
+ Name: Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 20
+ Script: |
+ bonus bMdef,1;
+ bonus bLuk,1;
+ - Id: 2237
+ AegisName: Weird_Goatee
+ Name: Bandit Beard
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 21
+ - Id: 2238
+ AegisName: Weird_Moustache
+ Name: Moustache
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 22
+ - Id: 2239
+ AegisName: One_Eyed_Glass
+ Name: Monocle
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 23
+ - Id: 2240
+ AegisName: Beard
+ Name: Beard
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 24
+ - Id: 2241
+ AegisName: Granpa_Beard
+ Name: Grampa Beard
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 25
+ - Id: 2242
+ AegisName: Luxury_Sunglasses
+ Name: Purple Glasses
+ Type: Armor
+ Buy: 24000
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ View: 26
+ Script: |
+ bonus2 bResEff,Eff_Blind,1000;
+ - Id: 2243
+ AegisName: Spinning_Eyes
+ Name: Geek Glasses
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 27
+ Script: |
+ bonus2 bResEff,Eff_Blind,1500;
+ - Id: 2244
+ AegisName: Big_Sis'_Ribbon
+ Name: Big Ribbon
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 28
+ Script: |
+ bonus bMdef,3;
+ - Id: 2245
+ AegisName: Sweet_Gents
+ Name: Sweet Gent
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 29
+ - Id: 2246
+ AegisName: Golden_Gear
+ Name: Golden Gear
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 9
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 30
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 2247
+ AegisName: Oldman's_Romance
+ Name: Romantic Gent
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 31
+ - Id: 2248
+ AegisName: Western_Grace
+ Name: Western Grace
+ Type: Armor
+ Buy: 15000
+ Weight: 400
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 32
+ - Id: 2249
+ AegisName: Coronet
+ Name: Coronet
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 33
+ Script: |
+ bonus bInt,1;
+ - Id: 2250
+ AegisName: Fillet
+ Name: Cute Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 34
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 2251
+ AegisName: Holy_Bonnet
+ Name: Monk Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 10
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 35
+ Script: |
+ bonus bMdef,3;
+ - Id: 2252
+ AegisName: Star_Sparkling
+ Name: Wizard Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 7
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 36
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 2253
+ AegisName: Sunflower
+ Name: Sunflower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 37
+ Script: |
+ bonus2 bSubRace,RC_Insect,10;
+ - Id: 2254
+ AegisName: Angelic_Chain
+ Name: Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 2255
+ AegisName: Satanic_Chain
+ Name: Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Script: |
+ bonus bMdef,2;
+ bonus bStr,1;
+ bonus2 bSubRace,RC_Angel,3;
+ - Id: 2256
+ AegisName: Magestic_Goat
+ Name: Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 9
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 2257
+ AegisName: Snowy_Horn
+ Name: Unicorn Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 42
+ - Id: 2258
+ AegisName: Sharp_Gear
+ Name: Spiky Band
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 12
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 43
+ - Id: 2259
+ AegisName: Mini_Propeller
+ Name: Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 46
+ - Id: 2260
+ AegisName: Mini_Glasses
+ Name: Mini Glasses
+ Type: Armor
+ Buy: 28000
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 47
+ - Id: 2261
+ AegisName: Prontera_Army_Cap
+ Name: Army Cap
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 48
+ - Id: 2262
+ AegisName: Pierrot_Nose
+ Name: Clown Nose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 49
+ - Id: 2263
+ AegisName: Gangster_Patch
+ Name: Zorro Masque
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 50
+ - Id: 2264
+ AegisName: Munak_Turban
+ Name: Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 51
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 2265
+ AegisName: Ganster_Mask
+ Name: Gangster Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 52
+ Script: |
+ bonus2 bResEff,Eff_Silence,1500;
+ - Id: 2266
+ AegisName: Iron_Cane
+ Name: Iron Cain
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 53
+ - Id: 2267
+ AegisName: Cigar
+ Name: Cigarette
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 54
+ Script: |
+ bonus2 bSubRace,RC_Insect,3;
+ - Id: 2268
+ AegisName: Smoking_Pipe
+ Name: Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 55
+ Script: |
+ bonus2 bSubRace,RC_Insect,3;
+ - Id: 2269
+ AegisName: Centimental_Flower
+ Name: Romantic Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 56
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 2270
+ AegisName: Centimental_Leaf
+ Name: Romantic Leaf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 57
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 2271
+ AegisName: Jack_A_Dandy
+ Name: Jack be Dandy
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 58
+ - Id: 2272
+ AegisName: Stop_Post
+ Name: Stop Post
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 59
+ - Id: 2273
+ AegisName: Doctor_Cap
+ Name: Doctor Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 60
+ Script: |
+ bonus bInt,1;
+ - Id: 2274
+ AegisName: Ghost_Bandana
+ Name: Ghost Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 61
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubEle,Ele_Ghost,15;
+ - Id: 2275
+ AegisName: Red_Bandana
+ Name: Red Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 62
+ - Id: 2276
+ AegisName: Eagle_Eyes
+ Name: Angled Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ View: 63
+ - Id: 2277
+ AegisName: Nurse_Cap
+ Name: Nurse Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 64
+ Script: |
+ bonus bInt,1;
+ - Id: 2278
+ AegisName: Mr_Smile
+ Name: Mr. Smile
+ Type: Armor
+ Buy: 60
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 65
+ - Id: 2279
+ AegisName: Bomb_Wick
+ Name: Bomb Wick
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 66
+ - Id: 2280
+ AegisName: Sahkkat
+ Name: Sakkat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 67
+ Script: |
+ bonus bAgi,1;
+ - Id: 2281
+ AegisName: Phantom_Of_Opera
+ Name: Opera Masque
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 68
+ - Id: 2282
+ AegisName: Spirit_Chain
+ Name: Halo
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 69
+ Script: |
+ bonus2 bSubEle,Ele_Holy,15;
+ - Id: 2283
+ AegisName: Ear_Mufs
+ Name: Ear Muffs
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 70
+ Script: |
+ bonus2 bResEff,Eff_Curse,1000;
+ - Id: 2284
+ AegisName: Antler
+ Name: Antlers
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 71
+ - Id: 2285
+ AegisName: Apple_Of_Archer
+ Name: Apple of Archer
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 72
+ Script: |
+ bonus bDex,3;
+ - Id: 2286
+ AegisName: Elven_Ears
+ Name: Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 73
+ - Id: 2287
+ AegisName: Pirate_Bandana
+ Name: Pirate Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 74
+ Script: |
+ bonus bStr,1;
+ - Id: 2288
+ AegisName: Mr_Scream
+ Name: Mr. Scream
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 75
+ - Id: 2289
+ AegisName: Poo_Poo_Hat
+ Name: Poo Poo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Locations:
+ Head_Top: true
+ View: 76
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 2290
+ AegisName: Funeral_Costume
+ Name: Funeral Hat
+ Type: Armor
+ Buy: 3000
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 77
+ - Id: 2291
+ AegisName: Masquerade
+ Name: Masquerade
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 78
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 2292
+ AegisName: Welding_Mask
+ Name: Welding Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 79
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2293
+ AegisName: Pretend_Murdered
+ Name: Pretend Murdered
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 80
+ - Id: 2294
+ AegisName: Star_Dust
+ Name: Stellar
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 81
+ - Id: 2295
+ AegisName: Blinker
+ Name: Blinker
+ Type: Armor
+ Buy: 1500
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 82
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 2296
+ AegisName: Binoculars
+ Name: Binoculars
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 83
+ Script: |
+ bonus bDex,1;
+ - Id: 2297
+ AegisName: Goblini_Mask
+ Name: Goblin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 84
+ - Id: 2298
+ AegisName: Green_Feeler
+ Name: Green Feeler
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 85
+ - Id: 2299
+ AegisName: Viking_Helm
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 9
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 86
+ - Id: 2301
+ AegisName: Cotton_Shirt
+ Name: Cotton Shirt
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2302
+ AegisName: Cotton_Shirt_
+ Name: Cotton Shirt
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2303
+ AegisName: Leather_Jacket
+ Name: Jacket
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Defense: 15
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2304
+ AegisName: Leather_Jacket_
+ Name: Jacket
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Defense: 15
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2305
+ AegisName: Adventure_Suit
+ Name: Adventurer's Suit
+ Type: Armor
+ Buy: 1000
+ Weight: 300
+ Defense: 20
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2306
+ AegisName: Adventurere's_Suit_
+ Name: Adventurer's Suit
+ Type: Armor
+ Buy: 1000
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2307
+ AegisName: Mantle
+ Name: Mantle
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 37
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2308
+ AegisName: Mantle_
+ Name: Mantle
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 37
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2309
+ AegisName: Coat
+ Name: Coat
+ Type: Armor
+ Buy: 22000
+ Weight: 1200
+ Defense: 42
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2310
+ AegisName: Coat_
+ Name: Coat
+ Type: Armor
+ Buy: 22000
+ Weight: 1200
+ Defense: 42
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2311
+ AegisName: Mink_Coat
+ Name: Mink Coat
+ Type: Armor
+ Buy: 20
+ Weight: 2300
+ Defense: 30
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 2312
+ AegisName: Padded_Armor
+ Name: Padded Armor
+ Type: Armor
+ Buy: 48000
+ Weight: 2800
+ Defense: 35
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2313
+ AegisName: Padded_Armor_
+ Name: Padded Armor
+ Type: Armor
+ Buy: 48000
+ Weight: 2800
+ Defense: 35
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2314
+ AegisName: Chain_Mail
+ Name: Chain Mail
+ Type: Armor
+ Buy: 65000
+ Weight: 3300
+ Defense: 55
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2315
+ AegisName: Chain_Mail_
+ Name: Chain Mail
+ Type: Armor
+ Buy: 65000
+ Weight: 3300
+ Defense: 55
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2316
+ AegisName: Plate_Armor
+ Name: Full Plate
+ Type: Armor
+ Buy: 80000
+ Weight: 4500
+ Defense: 70
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ - Id: 2317
+ AegisName: Plate_Armor_
+ Name: Full Plate
+ Type: Armor
+ Buy: 80000
+ Weight: 4500
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ - Id: 2318
+ AegisName: Clothes_Of_The_Lord
+ Name: Lord's Clothes
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 59
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2319
+ AegisName: Glittering_Clothes
+ Name: Glittering Jacket
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 58
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bAddEff,Eff_Blind,300;
+ - Id: 2320
+ AegisName: Formal_Suit
+ Name: Formal Suit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 40
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2321
+ AegisName: Silk_Robe
+ Name: Silk Robe
+ Type: Armor
+ Buy: 8000
+ Weight: 400
+ Defense: 20
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2322
+ AegisName: Silk_Robe_
+ Name: Silk Robe
+ Type: Armor
+ Buy: 8000
+ Weight: 400
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2323
+ AegisName: Scapulare
+ Name: Scapulare
+ Type: Armor
+ Buy: 6500
+ Weight: 400
+ Defense: 24
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2324
+ AegisName: Scapulare_
+ Name: Scapulare
+ Type: Armor
+ Buy: 6500
+ Weight: 400
+ Defense: 24
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2325
+ AegisName: Saint_Robe
+ Name: Saint's Robe
+ Type: Armor
+ Buy: 54000
+ Weight: 600
+ Defense: 50
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2326
+ AegisName: Saint_Robe_
+ Name: Saint's Robe
+ Type: Armor
+ Buy: 54000
+ Weight: 600
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2327
+ AegisName: Holy_Robe
+ Name: Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 57
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubEle,Ele_Dark,10;
+ - Id: 2328
+ AegisName: Wooden_Mail
+ Name: Wooden Mail
+ Type: Armor
+ Buy: 5500
+ Weight: 1000
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2329
+ AegisName: Wooden_Mail_
+ Name: Wooden Mail
+ Type: Armor
+ Buy: 5500
+ Weight: 1000
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2330
+ AegisName: Tights
+ Name: Tights
+ Type: Armor
+ Buy: 71000
+ Weight: 500
+ Defense: 27
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 2331
+ AegisName: Tights_
+ Name: Tights
+ Type: Armor
+ Buy: 71000
+ Weight: 500
+ Defense: 27
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 2332
+ AegisName: Silver_Robe
+ Name: Silver Robe
+ Type: Armor
+ Buy: 7000
+ Weight: 700
+ Defense: 23
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2333
+ AegisName: Silver_Robe_
+ Name: Silver Robe
+ Type: Armor
+ Buy: 7000
+ Weight: 700
+ Defense: 23
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2334
+ AegisName: Mage_Coat
+ Name: Mage Coat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 40
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2335
+ AegisName: Thief_Clothes
+ Name: Thief Clothes
+ Type: Armor
+ Buy: 74000
+ Weight: 100
+ Defense: 40
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2336
+ AegisName: Thief_Clothes_
+ Name: Thief Clothes
+ Type: Armor
+ Buy: 74000
+ Weight: 100
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2337
+ AegisName: Ninja_Suit
+ Name: Ninja Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 58
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,3;
+ - Id: 2338
+ AegisName: Wedding_Dress
+ Name: Wedding Dress
+ Type: Armor
+ Buy: 43000
+ Weight: 500
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,15;
+ - Id: 2339
+ AegisName: G_Strings
+ Name: Pantie
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Defense: 22
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2340
+ AegisName: Novice_Breast
+ Name: Novice Breastplate
+ Type: Armor
+ Buy: 89000
+ Weight: 500
+ Defense: 32
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 10
+ Refineable: true
+ - Id: 2341
+ AegisName: Full_Plate_Armor
+ Name: Legion Plate Armor
+ Type: Armor
+ Buy: 94000
+ Weight: 5500
+ Defense: 79
+ Jobs:
+ Crusader: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 2342
+ AegisName: Full_Plate_Armor_
+ Name: Legion Plate Armor
+ Type: Armor
+ Buy: 102500
+ Weight: 5500
+ Defense: 79
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 2343
+ AegisName: Robe_Of_Casting
+ Name: Robe of Cast
+ Type: Armor
+ Buy: 124800
+ Weight: 1100
+ Defense: 40
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-3;
+ bonus bMdef,4;
+ - Id: 2344
+ AegisName: Flame_Sprits_Armor
+ Name: Lucius's Fierce Armor of Volcano
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 2345
+ AegisName: Flame_Sprits_Armor_
+ Name: Lucius's Fierce Armor of Volcano
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 2346
+ AegisName: Water_Sprits_Armor
+ Name: Saphien's Armor of Ocean
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 2347
+ AegisName: Water_Sprits_Armor_
+ Name: Saphien's Armor of Ocean
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 2348
+ AegisName: Wind_Sprits_Armor
+ Name: Aebecee's Raging Typhoon Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 2349
+ AegisName: Wind_Sprits_Armor_
+ Name: Aebecee's Raging Typhoon Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 2350
+ AegisName: Earth_Sprits_Armor
+ Name: Claytos Cracking Earth Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 2351
+ AegisName: Earth_Sprits_Armor_
+ Name: Claytos Cracking Earth Armor
+ Type: Armor
+ Buy: 136000
+ Weight: 2200
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 2352
+ AegisName: Novice_Plate
+ Name: Tattered Novice Ninja Suit
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 25
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2353
+ AegisName: Odin's_Blessing
+ Name: Odin's Blessing
+ Type: Armor
+ Buy: 30000
+ Weight: 2500
+ Defense: 53
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2354
+ AegisName: Goibne's_Armor
+ Name: Goibne's Armor
+ Type: Armor
+ Buy: 50000
+ Weight: 3500
+ Defense: 58
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ bonus bMaxHPrate,10;
+ - Id: 2355
+ AegisName: Angel's_Protection
+ Name: Angelic Protection
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMdef,20;
+ - Id: 2356
+ AegisName: Vestment_Of_Grace
+ Name: Blessed Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bResEff,Eff_Blind,8000;
+ - Id: 2357
+ AegisName: Valkyrie_Armor
+ Name: Valkyrian Armor
+ Type: Armor
+ Weight: 2800
+ Defense: 55
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bUnbreakableArmor;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus2 bResEff,Eff_Silence,5000;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus2 bResEff,Eff_Stun,5000;
+ - Id: 2358
+ AegisName: Dress_Of_Angel
+ Name: Angel's Dress
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,4;
+ - Id: 2359
+ AegisName: Ninja_Suit_
+ Name: Ninja Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 58
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,3;
+ - Id: 2360
+ AegisName: Robe_Of_Casting_
+ Name: Robe of Cast
+ Type: Armor
+ Buy: 124800
+ Weight: 1100
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-3;
+ bonus bMdef,4;
+ - Id: 2361
+ AegisName: Blue_Aodai
+ Name: Blue Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,5;
+ - Id: 2362
+ AegisName: Red_Aodai
+ Name: Red Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,5;
+ - Id: 2363
+ AegisName: White_Aodai
+ Name: White Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,5;
+ - Id: 2364
+ AegisName: Meteo_Plate_Armor
+ Name: Meteo Plate Armor
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 85
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bResEff,Eff_Stun,3000;
+ bonus2 bResEff,Eff_Freeze,3000;
+ - Id: 2365
+ AegisName: Orleans_Gown
+ Name: Orleans's Gown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,15;
+ bonus bNoCastCancel;
+ - Id: 2366
+ AegisName: Divine_Cloth
+ Name: Divine Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,500;
+ bonus2 bResEff,Eff_Silence,500;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Stone,500;
+ bonus2 bResEff,Eff_Sleep,500;
+ - Id: 2367
+ AegisName: Sniping_Suit
+ Name: Sniping Suit
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 42
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,6+(readparam(bLuk)/10);
+ bonus bDelayrate,-23;
+ - Id: 2368
+ AegisName: Golden_Armor
+ Name: Golden Armor
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 4
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2369
+ AegisName: Freyja_Overcoat
+ Name: Freyja Overcoat
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 2370
+ AegisName: Used_Mage_Coat
+ Name: Used Mage Coat
+ Type: Armor
+ Defense: 15
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,30;
+ bonus bBaseAtk,10;
+ bonus bAgi,1;
+ - Id: 2371
+ AegisName: G_Strings_
+ Name: Pantie
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Defense: 22
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2372
+ AegisName: Mage_Coat_
+ Name: Mage Coat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bInt,1;
+ - Id: 2373
+ AegisName: Holy_Robe_
+ Name: Holy Robe
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 57
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubEle,Ele_Dark,10;
+ - Id: 2374
+ AegisName: Diabolus_Robe
+ Name: Diabolus Robe
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 57
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMaxSP,150;
+ bonus bMdef,5;
+ bonus bHealPower,6;
+ bonus bDelayrate,-10;
+ - Id: 2375
+ AegisName: Diabolus_Armor
+ Name: Diabolus Armor
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 79
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus bMdef,5;
+ bonus bMaxHP,150;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Stone,500;
+ - Id: 2376
+ AegisName: Assaulter_Plate
+ Name: Assaulter Plate
+ Type: Armor
+ Buy: 10
+ Defense: 57
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2377
+ AegisName: Elite_Engineer_Armor
+ Name: Elite Engineer Armor
+ Type: Armor
+ Buy: 10
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2378
+ AegisName: Assassin_Robe
+ Name: Assassin Robe
+ Type: Armor
+ Buy: 10
+ Defense: 41
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2379
+ AegisName: Warlock_Battle_Robe
+ Name: Warlock's Battle Robe
+ Type: Armor
+ Buy: 10
+ Defense: 36
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2380
+ AegisName: Medic_Robe
+ Name: Medic's Robe
+ Type: Armor
+ Buy: 10
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2381
+ AegisName: Elite_Archer_Suit
+ Name: Elite Archer Suit
+ Type: Armor
+ Buy: 10
+ Defense: 35
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2382
+ AegisName: Elite_Shooter_Suit
+ Name: Elite Shooter Suit
+ Type: Armor
+ Buy: 10
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bMdef,2;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 2383
+ AegisName: Brynhild
+ Name: Brynhild
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 120
+ Locations:
+ Armor: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHP,20*BaseLevel;
+ bonus bMaxSP,5*BaseLevel;
+ bonus2 bAddClass,Class_All,10;
+ bonus bMatkRate,10;
+ bonus bUnbreakableArmor;
+ bonus bNoKnockback;
+ - Id: 2384
+ AegisName: Spritual_Tunic
+ Name: Spiritual Tunic
+ Type: Armor
+ Buy: 20
+ Defense: 38
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,800;
+ bonus2 bResEff,Eff_Freeze,10000;
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bSubEle,Ele_Poison,20;
+ bonus2 bSubEle,Ele_Holy,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Ghost,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ - Id: 2385
+ AegisName: Recuperative_Armor
+ Name: Recuperative Armor
+ Type: Armor
+ Buy: 20
+ Defense: 67
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bNoRegen,1;
+ bonus bNoRegen,2;
+ bonus bHPGainValue,60;
+ bonus bSPGainValue,6;
+ bonus bMagicHPGainValue,60;
+ bonus bMagicSPGainValue,6;
+ UnEquipScript: |
+ heal 0,-100;
+ - Id: 2386
+ AegisName: Chameleon_Armor
+ Name: Chameleon Armor
+ Type: Armor
+ Buy: 20
+ Weight: 1700
+ Defense: 55
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMaxHP,(BaseLevel*7);
+ bonus bMaxSP,(BaseLevel/2);
+ autobonus2 "{ bonus bNoMagicDamage,100; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }";
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bMdef,5;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bDef,3;
+ - Id: 2387
+ AegisName: Sprint_Mail
+ Name: Sprint Mail
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ bonus bHPrecovRate,5;
+ bonus bAddItemHealRate,3;
+ bonus2 bSkillHeal,"AL_HEAL",3;
+ - Id: 2388
+ AegisName: Kandura
+ Name: Kandura
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 36
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,5;
+ bonus bAspdRate,2;
+ - Id: 2389
+ AegisName: Armor_Of_Naga
+ Name: Armor of Naga
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ autobonus "{ bonus bBaseAtk,20; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2390
+ AegisName: Improved_Tights
+ Name: Improved Tights
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bFlee2,3;
+ - Id: 2391
+ AegisName: Life_Link
+ Name: Life Link
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 75
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 82
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,5;
+ bonus bHPrecovRate,50;
+ - Id: 2392
+ AegisName: Old_Pant
+ Name: Old Green Pantie
+ Type: Armor
+ Defense: 60
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,2;
+ bonus bMaxHP,200;
+ bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,30;
+ bonus bMdef,1;
+ - Id: 2393
+ AegisName: N_Adventurer's_Suit
+ Name: Novice Adventurer's Suit
+ Type: Armor
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2394
+ AegisName: Krieger_Suit1
+ Name: Glorious Suit
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ - Id: 2395
+ AegisName: Krieger_Suit2
+ Name: Glorious Popularized Suit
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 61
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,600;
+ bonus bSPrecovRate,10;
+ - Id: 2396
+ AegisName: Krieger_Suit3
+ Name: Glorious Mass-Production Suit
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,500;
+ - Id: 2397
+ AegisName: Incredible_Coat
+ Name: Incredible Event Resignation Coat
+ Type: Armor
+ Buy: 10
+ Weight: 900
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 2398
+ AegisName: Sniping_Suit_M
+ Name: Sniping Suit
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,6+(readparam(bLuk)/10);
+ bonus bDelayrate,-23;
+ - Id: 2399
+ AegisName: Dragon_Vest
+ Name: Dragon Vest
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2401
+ AegisName: Sandals
+ Name: Sandals
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Defense: 5
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2402
+ AegisName: Sandals_
+ Name: Sandals
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2403
+ AegisName: Shoes
+ Name: Shoes
+ Type: Armor
+ Buy: 3500
+ Weight: 400
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2404
+ AegisName: Shoes_
+ Name: Shoes
+ Type: Armor
+ Buy: 3500
+ Weight: 400
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2405
+ AegisName: Boots
+ Name: Boots
+ Type: Armor
+ Buy: 18000
+ Weight: 600
+ Defense: 16
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rebellion: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2406
+ AegisName: Boots_
+ Name: Boots
+ Type: Armor
+ Buy: 18000
+ Weight: 600
+ Defense: 16
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rebellion: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2407
+ AegisName: Chrystal_Pumps
+ Name: Crystal Pumps
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bLuk,5;
+ - Id: 2408
+ AegisName: Cuffs
+ Name: Shackles
+ Type: Armor
+ Buy: 5000
+ Weight: 3000
+ Defense: 18
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2409
+ AegisName: Spiky_Heel
+ Name: High Heels
+ Type: Armor
+ Buy: 8500
+ Weight: 600
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2410
+ AegisName: Sleipnir
+ Name: Sleipnir
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 40
+ Locations:
+ Shoes: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,20;
+ bonus bSPrecovRate,25;
+ bonus bSpeedRate,25;
+ bonus bInt,25;
+ - Id: 2411
+ AegisName: Grave
+ Name: Greaves
+ Type: Armor
+ Buy: 48000
+ Weight: 750
+ Defense: 27
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2412
+ AegisName: Grave_
+ Name: Greaves
+ Type: Armor
+ Buy: 54000
+ Weight: 750
+ Defense: 27
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 2413
+ AegisName: Safty_Boots
+ Name: Safety Boots
+ Type: Armor
+ Buy: 34000
+ Weight: 350
+ Defense: 22
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ - Id: 2414
+ AegisName: Novice_Boots
+ Name: Novice Slippers
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 5
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2415
+ AegisName: Slipper
+ Name: Bunny Slipper
+ Type: Armor
+ Buy: 34000
+ Weight: 300
+ Defense: 9
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,3;
+ - Id: 2416
+ AegisName: Novice_Shoes
+ Name: Novice Shoes
+ Type: Armor
+ Buy: 35000
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 2417
+ AegisName: Fricco_Shoes
+ Name: Fricco's Shoes
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus2 bAddItemGroupHealRate,IG_Potion,20;
+ - Id: 2418
+ AegisName: Vidar's_Boots
+ Name: Vidar's Boots
+ Type: Armor
+ Buy: 30000
+ Weight: 650
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,9;
+ bonus bMaxSPrate,9;
+ - Id: 2419
+ AegisName: Goibne's_Combat_Boots
+ Name: Goibne's Greaves
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 2420
+ AegisName: Angel's_Arrival
+ Name: Angel's Reincarnation
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 25
+ Refineable: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 2421
+ AegisName: Valkyrie_Shoes
+ Name: Valkyrian Shoes
+ Type: Armor
+ Weight: 500
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableShoes;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bMaxHP,(BaseLevel*5);
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bMaxSP,(JobLevel*2);
+ - Id: 2422
+ AegisName: High_Fashion_Sandals
+ Name: High Fashion Sandals
+ Type: Armor
+ Buy: 24000
+ Weight: 200
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2423
+ AegisName: Variant_Shoes
+ Name: Variant Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,20-.@r;
+ bonus bMaxSPrate,20-.@r;
+ bonus bDef,.@r/2;
+ - Id: 2424
+ AegisName: Tidal_Shoes
+ Name: Tidal Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 2425
+ AegisName: Black_Leather_Boots
+ Name: Black Leather Boots
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 16
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,(getrefine()>=9?3:1);
+ - Id: 2426
+ AegisName: Shadow_Walk
+ Name: Shadow Walk
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0;
+ - Id: 2427
+ AegisName: Golden_Shoes
+ Name: Golden Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2428
+ AegisName: Freyja_Boots
+ Name: Freyja Boots
+ Type: Armor
+ Weight: 300
+ Defense: 22
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 2429
+ AegisName: Iron_Boots01
+ Name: Iron Boots
+ Type: Armor
+ Weight: 1500
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2430
+ AegisName: Iron_Boots02
+ Name: Iron Boots
+ Type: Armor
+ Weight: 800
+ Defense: 5
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2431
+ AegisName: Valley_Shoes
+ Name: Valley Shoes
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ - Id: 2432
+ AegisName: Spiky_Heel_
+ Name: High Heels
+ Type: Armor
+ Buy: 8500
+ Weight: 600
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ - Id: 2433
+ AegisName: Diabolus_Boots
+ Name: Diabolus Boots
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMaxHP,(BaseLevel*10);
+ - Id: 2434
+ AegisName: Black_Leather_Boots_
+ Name: Black Leather Boots
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 16
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,(getrefine()>=9?3:1);
+ - Id: 2435
+ AegisName: Battle_Greave
+ Name: Battle Greaves
+ Type: Armor
+ Buy: 10
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ KagerouOboro: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2436
+ AegisName: Combat_Boots
+ Name: Combat Boots
+ Type: Armor
+ Buy: 10
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2437
+ AegisName: Battle_Boots
+ Name: Battle Boots
+ Type: Armor
+ Buy: 10
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2438
+ AegisName: Paw_Of_Cat
+ Name: Paw Of Cat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,5;
+ bonus bAgi,1;
+ /* skill "ALL_CATCRY",1;
+ */
+ - Id: 2439
+ AegisName: Refresh_Shoes
+ Name: Refresh Shoes
+ Type: Armor
+ Buy: 20
+ Defense: 20
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,17;
+ bonus bMaxSPrate,8;
+ bonus2 bHPRegenRate,20,10000;
+ bonus2 bSPRegenRate,3,10000;
+ - Id: 2440
+ AegisName: Sprint_Shoes
+ Name: Sprint Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bSPrecovRate,5;
+ - Id: 2441
+ AegisName: Beach_Sandal
+ Name: Beach Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2442
+ AegisName: Boots_Perforated
+ Name: Red Stocking Boots
+ Type: Armor
+ Defense: 18
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,2;
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,10;
+ bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30;
+ bonus bMdef,1;
+ - Id: 2443
+ AegisName: Fish_Shoes
+ Name: Fisher's Boots
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2444
+ AegisName: Krieger_Shoes1
+ Name: Glorious Shoes
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus2 bSubRace,RC_DemiHuman,4;
+ bonus2 bSubRace,RC_Player_Human,4;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;
+ - Id: 2445
+ AegisName: Krieger_Shoes2
+ Name: Glorious Popularized Shoes
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 61
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 2446
+ AegisName: Krieger_Shoes3
+ Name: Glorious Mass-Production Shoes
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 2447
+ AegisName: Military_Boots
+ Name: Army Boots
+ Type: Armor
+ Weight: 1000
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ - Id: 2448
+ AegisName: Air_Boss
+ Name: Air Boss
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2449
+ AegisName: Variant_Shoes_M
+ Name: Variant Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,20-.@r;
+ bonus bMaxSPrate,20-.@r;
+ bonus bDef,.@r/2;
+ - Id: 2450
+ AegisName: Vital_Tree_Shoes
+ Name: Vital Tree Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 16
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus2 bHPRegenRate,30,10000;
+ bonus bHealpower2,5;
+ bonus bAddItemHealRate,5;
+ bonus bMdef,3;
+ bonus bVit,2;
+ - Id: 2451
+ AegisName: Freyja_SSandal7
+ Name: Freyja Sprit Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 2452
+ AegisName: Freyja_SSandal30
+ Name: Freyja Sprit Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 2453
+ AegisName: Freyja_SSandal60
+ Name: Freyja Sprit Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 2454
+ AegisName: Freyja_SSandal90
+ Name: Freyja Sprit Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 2455
+ AegisName: Time_Keepr_Boots
+ Name: Time Keeper's Boots
+ Type: Armor
+ Buy: 30000
+ Defense: 17
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,1;
+ bonus bMaxHP,100;
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,10;
+ - Id: 2456
+ AegisName: Para_Team_Boots1
+ Name: Eden Team Boots I
+ Type: Armor
+ Defense: 14
+ Locations:
+ Shoes: true
+ EquipLevelMin: 7
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,2;
+ - Id: 2457
+ AegisName: Para_Team_Boots2
+ Name: Eden Team Boots II
+ Type: Armor
+ Defense: 16
+ Locations:
+ Shoes: true
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHPrecovRate,12;
+ bonus bSPrecovRate,4;
+ - Id: 2458
+ AegisName: Para_Team_Boots3
+ Name: Eden Team Boots III
+ Type: Armor
+ Defense: 18
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHPrecovRate,14;
+ bonus bSPrecovRate,6;
+ - Id: 2459
+ AegisName: Upg_Shoes
+ Name: Upg Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 15
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2460
+ AegisName: Upg_Boots
+ Name: Upg Boots
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 21
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rebellion: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2461
+ AegisName: Upg_Greave
+ Name: Upg Greaves
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 32
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Shoes: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2462
+ AegisName: Sleipnir_C
+ Name: Sleipnir
+ Type: Armor
+ Buy: 20
+ Defense: 40
+ Locations:
+ Shoes: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,20;
+ bonus bSPrecovRate,15;
+ bonus bSpeedRate,25;
+ - Id: 2463
+ AegisName: Feral_Boots
+ Name: Feral Boots
+ Type: Armor
+ Buy: 20
+ Defense: 12
+ Locations:
+ Shoes: true
+ EquipLevelMin: 75
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2464
+ AegisName: No_Fear_Shoes
+ Name: No Fear Shoes
+ Type: Armor
+ Defense: 6
+ Locations:
+ Shoes: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 2465
+ AegisName: Dance_Shoes
+ Name: Dance Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Shoes: true
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bAspdRate,2;
+ bonus2 bSkillUseSP,"WA_SWING_DANCE",32;
+ - Id: 2466
+ AegisName: Training_Shoes
+ Name: Training Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 2467
+ AegisName: Golden_Rod_Shoes
+ Name: Golden Rod Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_Wind,15;
+ - Id: 2468
+ AegisName: Aqua_Shoes
+ Name: Aqua Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_Water,15;
+ - Id: 2469
+ AegisName: Crimson_Shoes
+ Name: Crismons Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_Fire,15;
+ - Id: 2470
+ AegisName: Forest_Shoes
+ Name: Forest Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_Earth,15;
+ - Id: 2471
+ AegisName: Shoes_Of_Affection
+ Name: Shoes Of Affection
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ 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;
+ - Id: 2472
+ AegisName: Shoes_Of_Judgement
+ Name: Shoes Of Judgement
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AB_JUDEX",30;
+ bonus2 bSkillUseSP,"AB_JUDEX",-40;
+ bonus bMaxSP,150;
+ - Id: 2473
+ AegisName: Para_Team_Boots4
+ Name: Eden Team Boots IV
+ Type: Armor
+ Defense: 20
+ Locations:
+ Shoes: true
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgiVit,1;
+ bonus bHPrecovRate,28;
+ bonus bSPrecovRate,12;
+ - Id: 2474
+ AegisName: Lehmannza_Shoes
+ Name: Lehmannza Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ - Id: 2475
+ AegisName: Ur_Greave
+ Name: Ur's Greaves
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 32
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxSP,40;
+ .@r = getrefine();
+ if (.@r>7)
+ bonus bMaxHPrate,.@r-7;
+ - Id: 2476
+ AegisName: Peuz_Greave
+ Name: Peuz's Greaves
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 32
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxSP,40;
+ .@r = getrefine();
+ if (.@r>7)
+ bonus bAgi,.@r-7;
+ - Id: 2477
+ AegisName: Sabah_Shoes
+ Name: Sapha Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxSP,30;
+ bonus bLuk,3;
+ - Id: 2478
+ AegisName: Nab_Shoes
+ Name: Nab Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee,3;
+ bonus bInt,2;
+ - Id: 2479
+ AegisName: White_Wing_Boots
+ Name: White Wing Boots
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSkillUseSP,"RA_AIMEDBOLT",10;
+ - Id: 2480
+ AegisName: Black_Wing_Boots
+ Name: Black Wing Boots
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 2481
+ AegisName: Rune_Boots
+ Name: Rune Boots
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Shoes: true
+ 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));
+ - Id: 2482
+ AegisName: Shoes_Of_Valor
+ Name: Shoes Of Valor
+ Type: Armor
+ Defense: 4
+ Locations:
+ Shoes: true
+ Script: |
+ skill "AL_INCAGI",1;
+ bonus bUseSPrate,10;
+ - Id: 2483
+ AegisName: Siege_Greave
+ Name: Siege Greaves
+ Type: Armor
+ Buy: 10
+ Weight: 750
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ - Id: 2484
+ AegisName: Siege_Boots
+ Name: Siege Boots
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rebellion: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Player_Human,1;
+ bonus2 bSubRace,RC_Player_Doram,1;
+ - Id: 2485
+ AegisName: Siege_Shoes
+ Name: Siege Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 350
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Player_Human,1;
+ bonus2 bSubRace,RC_Player_Doram,1;
+ - Id: 2486
+ AegisName: Shadow_Walk_
+ Name: Shadow Walk
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0;
+ - Id: 2487
+ AegisName: Vital_Tree_Shoes_
+ Name: Vital Tree Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 16
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,3;
+ - Id: 2488
+ AegisName: Fricco_Shoes_
+ Name: Fricco Shoes
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus2 bAddItemGroupHealRate,IG_Potion,20;
+ - Id: 2489
+ AegisName: Vidar's_Boots_
+ Name: Vidar's Boots
+ Type: Armor
+ Buy: 30000
+ Weight: 650
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,9;
+ bonus bMaxSPrate,9;
+ - Id: 2491
+ AegisName: Bangungot_Boots
+ Name: Bangungot Boots of Nightmare
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,.@r;
+ if (.@r>=14) {
+ bonus bSpeedRate,25;
+ }
+ - Id: 2492
+ AegisName: Bayani_Bangungot_Boots
+ Name: Bayani Bangungot Boots of Nightmare
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,.@r;
+ if (.@r>=12) {
+ bonus bSpeedRate,25;
+ }
+ - Id: 2493
+ AegisName: Goibne's_Combat_Boots_
+ Name: Goibne's Greaves
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 2494
+ AegisName: Chrystal_Pumps_
+ Name: Crystal Pumps
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bLuk,5;
+ - Id: 2495
+ AegisName: Egir_Shoes
+ Name: Egir Shoes
+ Type: Armor
+ Buy: 200000
+ Weight: 300
+ Defense: 13
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bMaxHP,BaseLevel*5;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bMaxSP,JobLevel*2;
+ - Id: 2496
+ AegisName: TE_Woe_Shoes
+ Name: TE Woe Shoes
+ Type: Armor
+ Defense: 5
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,150;
+ bonus bMaxSP,150;
+ bonus2 bAddRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ bonus2 bMagicAddRace,RC_Player_Human,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ bonus2 bResEff,Eff_Freeze,25;
+ - Id: 2497
+ AegisName: TE_Woe_Boots
+ Name: TE Woe Boots
+ Type: Armor
+ Defense: 10
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,200;
+ bonus bMaxSP,100;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bResEff,Eff_Freeze,25;
+ - Id: 2498
+ AegisName: TE_Woe_Magic_Sandal
+ Name: TE Woe Magic Sandal
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,100;
+ bonus bMaxSP,200;
+ bonus2 bMagicAddRace,RC_Player_Human,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ bonus2 bResEff,Eff_Freeze,25;
+ - Id: 2499
+ AegisName: Temporal_Boots
+ Name: Temporal Boots
+ Type: Armor
+ Buy: 400
+ Weight: 600
+ Defense: 20
+ Locations:
+ Shoes: true
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ .@r = getrefine()/3;
+ bonus bMaxHP,300+(.@r*100);
+ bonus bMaxSP,30+(.@r*10);
+ - Id: 2501
+ AegisName: Hood
+ Name: Hood
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 4
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2502
+ AegisName: Hood_
+ Name: Hood
+ Type: Armor
+ Buy: 1000
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2503
+ AegisName: Muffler
+ Name: Muffler
+ Type: Armor
+ Buy: 5000
+ Weight: 400
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2504
+ AegisName: Muffler_
+ Name: Muffler
+ Type: Armor
+ Buy: 5000
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2505
+ AegisName: Manteau
+ Name: Manteau
+ Type: Armor
+ Buy: 32000
+ Weight: 600
+ Defense: 13
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2506
+ AegisName: Manteau_
+ Name: Manteau
+ Type: Armor
+ Buy: 32000
+ Weight: 600
+ Defense: 13
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2507
+ AegisName: Cape_Of_Ancient_Lord
+ Name: Ancient Cape
+ Type: Armor
+ Buy: 82000
+ Weight: 600
+ Defense: 9
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2508
+ AegisName: Ragamuffin_Cape
+ Name: Ragamuffin Manteau
+ Type: Armor
+ Buy: 56000
+ Weight: 500
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ bonus bMdef,10;
+ - Id: 2509
+ AegisName: Clack_Of_Servival
+ Name: Survivor's Manteau
+ Type: Armor
+ Buy: 20000
+ Weight: 550
+ Defense: 10
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bVit,10;
+ - Id: 2510
+ AegisName: Novice_Hood
+ Name: Somber Novice Hood
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 4
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ - Id: 2511
+ AegisName: Skeleton's_Cape
+ Name: Skeleton Manteau
+ Type: Armor
+ Buy: 5000
+ Weight: 700
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,-3;
+ bonus bDex,2;
+ bonus bVit,-3;
+ bonus bLuk,2;
+ bonus bAgi,-4;
+ - Id: 2512
+ AegisName: Novice_Manteau
+ Name: Novice Manteau
+ Type: Armor
+ Buy: 50000
+ Weight: 500
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2513
+ AegisName: Celestial_Robe
+ Name: Heavenly Maiden Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 18
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ - Id: 2514
+ AegisName: Pauldron
+ Name: Pauldron
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ - Id: 2515
+ AegisName: Wing_Of_Eagle
+ Name: Eagle Wing
+ Type: Armor
+ Buy: 20000
+ Weight: 300
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 85
+ Refineable: true
+ - Id: 2516
+ AegisName: Falcon_Robe
+ Name: Falcon Muffler
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bFlee,15;
+ bonus bFlee2,5;
+ - Id: 2517
+ AegisName: Vali's_Manteau
+ Name: Vali's Manteau
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2518
+ AegisName: Morpheus's_Shawl
+ Name: Morpheus's Shawl
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 33
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bMdef,3;
+ - Id: 2519
+ AegisName: Morrigane's_Manteau
+ Name: Morrigane's Manteau
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 9
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 61
+ Refineable: true
+ Script: |
+ bonus bLuk,2;
+ bonus bFlee2,8;
+ - Id: 2520
+ AegisName: Goibne's_Shoulder_Arms
+ Name: Goibne's Spaulders
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 11
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,10;
+ bonus bMdef,2;
+ bonus bVit,1;
+ - Id: 2521
+ AegisName: Angel's_Warmth
+ Name: Angelic Cardigan
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Refineable: true
+ Script: |
+ bonus bHPrecovRate,5;
+ - Id: 2522
+ AegisName: Undershirt
+ Name: Undershirt
+ Type: Armor
+ Buy: 20000
+ Weight: 150
+ Defense: 5
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2523
+ AegisName: Undershirt_
+ Name: Undershirt
+ Type: Armor
+ Buy: 20000
+ Weight: 150
+ Defense: 5
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2524
+ AegisName: Valkyrie_Manteau
+ Name: Valkyrian Manteau
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2);
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2);
+ - Id: 2525
+ AegisName: Cape_Of_Ancient_Lord_
+ Name: Ancient Cape
+ Type: Armor
+ Buy: 82000
+ Weight: 600
+ Defense: 9
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 2526
+ AegisName: Dragon_Scale_Coat
+ Name: Coat of Dragon Scale
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 14
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMaxHP,300;
+ - Id: 2527
+ AegisName: Dragon_Breath
+ Name: Dragon Breath
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 16
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,15;
+ - Id: 2528
+ AegisName: Wool_Scarf
+ Name: Wool Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 11
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2529
+ AegisName: Rider_Insignia
+ Name: Rider Insignia
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 13
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2530
+ AegisName: Rider_Insignia_
+ Name: Rider Insignia
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2531
+ AegisName: Ulfhedinn
+ Name: Ulfhedinn
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 13
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;
+ - Id: 2532
+ AegisName: Mithril_Magic_Cape
+ Name: Mithril Magic Cape
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;
+ - Id: 2533
+ AegisName: Freyja_Cape
+ Name: Freyja Cape
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,15;
+ bonus2 bSubRace,RC_Player_Human,15;
+ - Id: 2534
+ AegisName: Ruffler
+ Name: Ruffler
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,17;
+ bonus bFlee,17;
+ - Id: 2535
+ AegisName: Cloak_Of_Survival_C
+ Name: Cloak Of Survival
+ Type: Armor
+ Buy: 1
+ Defense: 17
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,10;
+ bonus bMdef,10;
+ - Id: 2536
+ AegisName: Skin_Of_Ventus
+ Name: Skin of Ventus
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 7
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHP,200;
+ bonus bFlee,10;
+ - Id: 2537
+ AegisName: Diabolus_Manteau
+ Name: Diabolus Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus bMaxHP,100;
+ bonus2 bAddDamageClass,1916,10;
+ bonus2 bAddDamageClass,1917,10;
+ bonus2 bAddDamageClass,1922,10;
+ bonus2 bAddDamageClass,1923,10;
+ bonus2 bAddDamageClass,1924,10;
+ bonus2 bAddDamageClass,1925,10;
+ - Id: 2538
+ AegisName: Commander_Manteau
+ Name: Captain's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 28
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ KagerouOboro: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2539
+ AegisName: Commander_Manteau_
+ Name: Commander's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2540
+ AegisName: Sheriff_Manteau
+ Name: Sheriff's Manteau
+ Type: Armor
+ Buy: 10
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 2541
+ AegisName: Asprika
+ Name: Asprika
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 40
+ Locations:
+ Garment: true
+ EquipLevelMin: 94
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 16
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMdef,2;
+ bonus bMatkRate,1;
+ bonus2 bAddEle,Ele_Fire,2;
+ - Id: 2543
+ AegisName: Sylphid_Manteau
+ Name: Sylphid Manteau
+ Type: Armor
+ Buy: 20
+ Defense: 33
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,13;
+ bonus2 bSubEle,Ele_Neutral,13;
+ bonus bFlee2,1;
+ - Id: 2544
+ AegisName: Leather_Of_Tendrilion
+ Name: Leather of Tendrilion
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 14
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus2 bSubRace,RC_Plant,5;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 2545
+ AegisName: Musika
+ Name: Musika
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;
+ - Id: 2546
+ AegisName: Beach_Manteau
+ Name: Beach Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2547
+ AegisName: Cheap_Running_Shirts
+ Name: Cheap Undershirt
+ Type: Armor
+ Defense: 11
+ Locations:
+ Garment: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bMdef,1;
+ - Id: 2548
+ AegisName: Muffler_C
+ Name: Neo Muffler
+ Type: Armor
+ Defense: 22
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 95
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus bMaxHPrate,10;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Holy,5;
+ bonus2 bSubEle,Ele_Dark,5;
+ - Id: 2549
+ AegisName: Krieger_Muffler1
+ Name: Glorious Muffler
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 81
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 2550
+ AegisName: Fisher's_Muffler
+ Name: Fisher's Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2551
+ AegisName: Rider_Insignia_M
+ Name: Crest of the Rider
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 55
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 2552
+ AegisName: Mithril_Magic_Cape_M
+ Name: Mithril Magic Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;
+ - Id: 2553
+ AegisName: Dragon_Manteau
+ Name: Dragon Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 14
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,5;
+ - Id: 2554
+ AegisName: Piece_Of_Angent_Skin
+ Name: Nydhorgg's Shadow Garb
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_All,7;
+ bonus bMaxSP,(BaseLevel/3)+(getrefine()*10);
+ bonus2 bSPDrainRate,10,1;
+ bonus bMdef,3;
+ - Id: 2555
+ AegisName: Freyja_SScarf7
+ Name: Freyja Soul Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bFlee,15;
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2556
+ AegisName: Freyja_SScarf30
+ Name: Freyja Soul Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bFlee,15;
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2557
+ AegisName: Freyja_SScarf60
+ Name: Freyja Soul Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bFlee,15;
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2558
+ AegisName: Freyja_SScarf90
+ Name: Freyja Soul Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Garment: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bFlee,15;
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 2559
+ AegisName: Time_Keepr_Manteau
+ Name: Time Keeper's Manteau
+ Type: Armor
+ Buy: 30000
+ Defense: 9
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,1;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2560
+ AegisName: Para_Team_Manteau
+ Name: Eden Team Manteau I
+ Type: Armor
+ Defense: 14
+ Locations:
+ Garment: true
+ EquipLevelMin: 7
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2561
+ AegisName: Upg_Hood
+ Name: Upg Hood
+ Type: Armor
+ Weight: 100
+ Defense: 9
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2562
+ AegisName: Upg_Muffler
+ Name: Upg Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 13
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2563
+ AegisName: Upg_Manteau
+ Name: Upg Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 18
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Garment: true
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 2564
+ AegisName: Feral_Tail
+ Name: Feral Tail
+ Type: Armor
+ Buy: 20
+ Defense: 16
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2565
+ AegisName: Beach_Towel
+ Name: Beach Towel
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus bFlee,7;
+ - Id: 2566
+ AegisName: Half_Asprika
+ Name: Half Asprika
+ Type: Armor
+ Buy: 20
+ Defense: 20
+ Locations:
+ Garment: true
+ EquipLevelMin: 47
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 2567
+ AegisName: Academy_Manteau
+ Name: Academy Manteau
+ Type: Armor
+ Weight: 600
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Archer: true
+ Novice: true
+ SuperNovice: true
+ Thief: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2568
+ AegisName: Muffler_Of_Roki
+ Name: Loki's Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 10
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ bonus2 bSkillAtk,"ASC_BREAKER",5;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",5;
+ - Id: 2569
+ AegisName: Shawl_Of_Affection
+ Name: Shawl Of Affection
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 12
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee2,5;
+ bonus4 bAutoSpellWhenHit,"AB_RENOVATIO",1,30,0;
+ bonus5 bAutoSpellWhenHit,"AB_RENOVATIO",1,40,BF_MAGIC,0;
+ - Id: 2570
+ AegisName: Shawl_Of_Judgement
+ Name: Shawl Of Judgement
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 12
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee,5;
+ .@i = max(2,getskilllv("AB_ORATIO"));
+ bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0;
+ bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0;
+ - Id: 2571
+ AegisName: Para_Team_Manteau2
+ Name: Eden Team Manteau II
+ Type: Armor
+ Defense: 18
+ Locations:
+ Garment: true
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,12;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2572
+ AegisName: Katabart_Sholder
+ Name: Katabart Sholder
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 4
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 2573
+ AegisName: Archangel_Wing
+ Name: Archangel Wings
+ Type: Armor
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 2574
+ AegisName: Ur_Manteau
+ Name: Ur's Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,2;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 2575
+ AegisName: Peuz_Manteau
+ Name: Peuz's Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 16
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee,10;
+ bonus bCritical,10;
+ - Id: 2576
+ AegisName: Bravery_Bag
+ Name: Adventurer's Backpack
+ Type: Armor
+ Weight: 200
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ View: 2
+ Trade:
+ 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;
+ }
+ }
+ - Id: 2577
+ AegisName: Sabah_Hood
+ Name: Sapha Hood
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 13
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee,12;
+ bonus bCritAtkRate,getrefine();
+ - Id: 2578
+ AegisName: Nab_Hood
+ Name: Nab Hood
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 13
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee,.@r*2;
+ bonus bBaseAtk,.@r*2;
+ - Id: 2579
+ AegisName: Magic_Stole
+ Name: Magic Stole
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus bUseSPrate,-5;
+ bonus bMaxSPrate,((getrefine()>=4)?6:3);
+ - Id: 2580
+ AegisName: White_Wing_Manteau
+ Name: White Wing Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 15
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bFlee,10;
+ autobonus "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }";
+ - Id: 2581
+ AegisName: Black_Wing_Manteau
+ Name: Black Wing Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 15
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,2;
+ if (.@r>6)
+ bonus bFlee2,.@r-6;
+ - Id: 2582
+ AegisName: Salvage_Cape
+ Name: Salvage Cape
+ Type: Armor
+ Buy: 56000
+ Weight: 400
+ Defense: 1
+ Jobs:
+ Priest: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ skill "NJ_UTSUSEMI",1;
+ bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000;
+ bonus bUseSPrate,100;
+ UnEquipScript: |
+ heal 0,-1200;
+ - Id: 2583
+ AegisName: Holy_Cape
+ Name: Holy Cape
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bDex,-5;
+ bonus bMdef,5;
+ - Id: 2584
+ AegisName: Wanderer_Outer
+ Name: Wanderer Outer
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2585
+ AegisName: Muffler_Of_Valor
+ Name: Muffler Of Valor
+ Type: Armor
+ Defense: 4
+ Locations:
+ Garment: true
+ Script: |
+ bonus bSPrecovRate,10;
+ - Id: 2586
+ AegisName: Siege_Manteau
+ Name: Siege Manteau
+ Type: Armor
+ Buy: 10
+ Weight: 600
+ Defense: 32
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ - Id: 2587
+ AegisName: Siege_Muffler
+ Name: Siege Muffler
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Player_Human,1;
+ bonus2 bSubRace,RC_Player_Doram,1;
+ - Id: 2588
+ AegisName: Ragamuffin_Cape_
+ Name: Ragamuffin Cape
+ Type: Armor
+ Buy: 56000
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2589
+ AegisName: Fallen_Angel_Wing
+ Name: Fallen Angel Wing
+ Type: Armor
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bBaseAtk,readparam(bStr)/20;
+ bonus bMatk,readparam(bInt)/20;
+ bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20;
+ bonus bAspdRate,(readparam(bAgi)/20);
+ bonus bLongAtkRate,readparam(bDex)/20;
+ bonus bCritAtkRate,readparam(bLuk)/20;
+ - Id: 2590
+ AegisName: Buwaya_Cloth
+ Name: Buwaya Sack Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 8
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower2,.@r/3;
+ bonus bAddItemHealRate,.@r/3;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2591
+ AegisName: Bayani_Buwaya_Cloth
+ Name: Bayani Buwaya Sack Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 8
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower2,.@r;
+ bonus bAddItemHealRate,.@r;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 2592
+ AegisName: Boss_Brownie_Manteau
+ Name: Boss Brownie Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 2593
+ AegisName: Flow_Manteau
+ Name: Flow Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,5;
+ bonus2 bMagicSubDefEle,Ele_Water,5;
+ bonus2 bSubRace,RC_Brute,-5;
+ - Id: 2594
+ AegisName: Wrapping_Manteau
+ Name: Wrapping Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 2595
+ AegisName: Sombre_Manteau
+ Name: Sombre Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Dark,5;
+ bonus2 bSubRace,RC_Undead,-5;
+ - Id: 2596
+ AegisName: Sharel_Manteau
+ Name: Sharel Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Defense: 11
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 54
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,10;
+ bonus bMdef,2;
+ bonus bVit,1;
+ - Id: 2601
+ AegisName: Ring
+ Name: Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bStr,2;
+ - Id: 2602
+ AegisName: Earring
+ Name: Earring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bInt,2;
+ - Id: 2603
+ AegisName: Necklace
+ Name: Necklace
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bVit,2;
+ - Id: 2604
+ AegisName: Glove
+ Name: Glove
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bDex,2;
+ - Id: 2605
+ AegisName: Brooch
+ Name: Brooch
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAgi,2;
+ - Id: 2607
+ AegisName: Clip
+ Name: Clip
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxSP,10;
+ - Id: 2608
+ AegisName: Rosary
+ Name: Rosary
+ Type: Armor
+ Buy: 15000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMdef,5;
+ bonus bLuk,2;
+ - Id: 2609
+ AegisName: Skul_Ring
+ Name: Skull Ring
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2610
+ AegisName: Gold_Ring
+ Name: Gold Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2611
+ AegisName: Silver_Ring
+ Name: Silver Ring
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2612
+ AegisName: Flower_Ring
+ Name: Flower Ring
+ Type: Armor
+ Buy: 1500
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2613
+ AegisName: Diamond_Ring
+ Name: Diamond Ring
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2614
+ AegisName: An_Eye_Of_Dullahan
+ Name: Eye of Dullahan
+ Type: Armor
+ Buy: 90000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus2 bResEff,Eff_Poison,10000;
+ bonus2 bSubRace,RC_Undead,4;
+ bonus2 bSubRace,RC_Demon,4;
+ - Id: 2615
+ AegisName: Safety_Ring
+ Name: Safety Ring
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bMdef,5;
+ - Id: 2616
+ AegisName: Critical_Ring
+ Name: Critical Ring
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bCritical,5;
+ - Id: 2617
+ AegisName: Mitten_Of_Presbyter
+ Name: Celebrant's Mitten
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 35
+ Script: |
+ bonus bInt,1;
+ - Id: 2618
+ AegisName: Matyr's_Flea_Guard
+ Name: Matyr's Leash
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 35
+ Script: |
+ bonus bAgi,1;
+ - Id: 2619
+ AegisName: Thimble_Of_Archer
+ Name: Bow Thimble
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 2620
+ AegisName: Ring_Of_Rogue
+ Name: Rogue's Treasure
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ if (readparam(bStr)>=90) {
+ bonus bHit,10;
+ bonus bFlee,10;
+ }
+ if (readparam(bAgi)>=90) {
+ bonus bBaseAtk,10;
+ bonus bCritical,10;
+ }
+ - Id: 2621
+ AegisName: Ring_
+ Name: Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bStr,1;
+ - Id: 2622
+ AegisName: Earring_
+ Name: Earring
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bInt,1;
+ - Id: 2623
+ AegisName: Necklace_
+ Name: Necklace
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bVit,1;
+ - Id: 2624
+ AegisName: Glove_
+ Name: Glove
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bDex,1;
+ - Id: 2625
+ AegisName: Brooch_
+ Name: Brooch
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bAgi,1;
+ - Id: 2626
+ AegisName: Rosary_
+ Name: Rosary
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus bLuk,1;
+ - Id: 2627
+ AegisName: Belt
+ Name: Belt
+ Type: Armor
+ Buy: 20000
+ Weight: 1200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 25
+ - Id: 2628
+ AegisName: Novice_Armlet
+ Name: Novice Armlet
+ Type: Armor
+ Buy: 400
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ - Id: 2629
+ AegisName: Magingiorde
+ Name: Megingjard
+ Type: Armor
+ Buy: 20
+ Weight: 8000
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bStr,40+BaseLevel/5;
+ bonus bMdef,7;
+ if (readparam(bStr)>=120)
+ bonus2 bAddClass,Class_Boss,10;
+ - Id: 2630
+ AegisName: Brysinggamen
+ Name: Brisingamen
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ 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
+ Type: Armor
+ Buy: 1
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 2632
+ AegisName: Korean_Trinket
+ Name: Korean Trinket
+ Type: Armor
+ Buy: 125000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ Script: |
+ bonus bVit,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ - Id: 2633
+ AegisName: Jade_Ring
+ Name: Jade Ring
+ Type: Armor
+ Buy: 204000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ - Id: 2634
+ AegisName: Bridegroom_Ring
+ Name: Wedding Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "WE_MALE",1;
+ skill "WE_FEMALE",1;
+ skill "WE_CALLPARTNER",1;
+ skill "WE_CALLALLFAMILY",1;
+ skill "WE_ONEFOREVER",1;
+ - Id: 2635
+ AegisName: Bride_Ring
+ Name: Wedding Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "WE_MALE",1;
+ skill "WE_FEMALE",1;
+ skill "WE_CALLPARTNER",1;
+ skill "WE_CALLALLFAMILY",1;
+ skill "WE_ONEFOREVER",1;
+ - Id: 2636
+ AegisName: Gold_Ring_
+ Name: Gold Christmas Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 2637
+ AegisName: Silver_Ring_
+ Name: Silver Christmas Ring
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 2638
+ AegisName: Exorcize_Sachet
+ Name: Sacred Incense
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bLuk,1;
+ - Id: 2639
+ AegisName: Purification_Sachet
+ Name: Occult Incense
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 2640
+ AegisName: Kafra_Ring
+ Name: Kafra Ring
+ Type: Armor
+ Buy: 40000
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,1;
+ - Id: 2641
+ AegisName: Fashionable_Sack
+ Name: Fashion Hip Sack
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bStr,2;
+ - Id: 2642
+ AegisName: Serin's_Gold_Ring
+ Name: Serin's Gold Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2643
+ AegisName: Serin's_Gold_Ring_
+ Name: Serin's Gold Ring
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2644
+ AegisName: The_Sign_
+ Name: The Sign
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus2 bMagicAddClass,Class_All,5;
+ - Id: 2645
+ AegisName: Moonlight_Ring
+ Name: Moonlight Ring
+ Type: Armor
+ Buy: 40000
+ Weight: 200
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bMdef,2;
+ bonus bCritical,3;
+ bonus bAspdRate,3;
+ - Id: 2646
+ AegisName: Bunch_Of_Carnation
+ Name: Bunch of Carnations
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2647
+ AegisName: Nile_Rose
+ Name: Nile Rose
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 2648
+ AegisName: Morpheus's_Ring
+ Name: Morpheus's Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSPrate,5;
+ - Id: 2649
+ AegisName: Morpheus's_Armlet
+ Name: Morpheus's Bracelet
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSPrate,5;
+ - Id: 2650
+ AegisName: Morrigane's_Belt
+ Name: Morrigane's Belt
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bCritical,3;
+ - Id: 2651
+ AegisName: Morrigane's_Pendant
+ Name: Morrigane's Pendant
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Script: |
+ bonus bStr,2;
+ bonus bCritical,3;
+ - Id: 2652
+ AegisName: Cursed_Lucky_Brooch
+ Name: Goddess of Fortune's Cursed Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bCritical,6;
+ bonus2 bAddEff2,Eff_Curse,50;
+ - Id: 2653
+ AegisName: Sacrifice_Ring
+ Name: Sacrifice Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2654
+ AegisName: Shinobi's_Sash
+ Name: Shinobi Sash
+ Type: Armor
+ Buy: 20000
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bMdef,1;
+ - Id: 2655
+ AegisName: Bloody_Iron_Ball
+ Name: Bloodied Shackle Ball
+ Type: Armor
+ Buy: 50000
+ Weight: 4000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ - Id: 2656
+ AegisName: Hyper_Changer
+ Name: Armor Charm
+ Type: Armor
+ Buy: 20000
+ Weight: 1000
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxHP,50;
+ - Id: 2657
+ AegisName: Lab_Passport
+ Name: Laboratory Permit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 2658
+ AegisName: Nile_Rose_
+ Name: Nile Rose
+ Type: Armor
+ Buy: 2
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,10;
+ - Id: 2659
+ AegisName: Vesper_Core01
+ Name: Vesper Core 01
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 2660
+ AegisName: Vesper_Core02
+ Name: Vesper Core 02
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,3;
+ bonus bBaseAtk,10;
+ - Id: 2661
+ AegisName: Vesper_Core03
+ Name: Vesper Core 03
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,3;
+ bonus bFlee,5;
+ - Id: 2662
+ AegisName: Vesper_Core04
+ Name: Vesper Core 04
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,3;
+ bonus bHit,10;
+ - Id: 2663
+ AegisName: Gauntlet_Of_Accuracy
+ Name: Gauntlet of Hit
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bHit,15;
+ bonus bStr,1;
+ - Id: 2664
+ AegisName: Scarf_Belt
+ Name: Belcarf
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bDex,2;
+ bonus bInt,1;
+ - Id: 2665
+ AegisName: Ring_Of_Exorcism
+ Name: Exorcising Ring
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bMdef,1;
+ bonus2 bExpAddRace,RC_Undead,5;
+ bonus2 bExpAddRace,RC_Demon,5;
+ - Id: 2666
+ AegisName: Lamp_Of_Hope
+ Name: Lantern of Hope
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,2;
+ bonus2 bResEff,Eff_Blind,1000;
+ - Id: 2667
+ AegisName: Glove_Of_Archer
+ Name: Renown Archer's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bHit,5;
+ bonus bCritical,5;
+ bonus bDex,1;
+ - Id: 2668
+ AegisName: Women's_Glory
+ Name: Woman Glory
+ Type: Armor
+ Weight: 1500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxSP,10;
+ - Id: 2670
+ AegisName: Ring_Of_Longing
+ Name: Ring of Longing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,5;
+ - Id: 2671
+ AegisName: Thimble_Of_Archer_
+ Name: Bow Thimble
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 2672
+ AegisName: Anniversary_Ring
+ Name: 3rd Anniversary Celebration Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Script: |
+ 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
+ Type: Armor
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 48
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bSPrecovRate,3;
+ - Id: 2674
+ AegisName: Honor_Ring
+ Name: Ring of Honor
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2675
+ AegisName: Lord_Ring
+ Name: Lord Ring
+ Type: Armor
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2676
+ AegisName: Hunter_Earring
+ Name: Hunter's Earring
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,7618,100;
+ - Id: 2677
+ AegisName: Spiritual_Ring
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 2678
+ AegisName: Ring_Of_Flame_Lord
+ Name: Ring Of Flame Lord
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bBaseAtk,15;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30;
+ bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10;
+ bonus3 bAutoSpell,"PA_PRESSURE",2,30;
+ bonus3 bAutoSpell,"MG_FIREBALL",1,150;
+ bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20;
+ - Id: 2679
+ AegisName: Ring_Of_Resonance
+ Name: Ring Of Resonance
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,2;
+ bonus bVit,1;
+ bonus bMdef,2;
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0;
+ bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20;
+ bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20;
+ - Id: 2680
+ AegisName: Lesser_Elemental_Ring
+ Name: Lesser Elemental Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ bonus3 bAutoSpell,"WZ_ESTIMATION",1,80;
+ bonus3 bAutoSpell,"MC_IDENTIFY",1,50;
+ bonus3 bAutoSpell,"TF_PICKSTONE",1,100;
+ bonus3 bAutoSpell,"BS_GREED",1,10;
+ bonus3 bAutoSpellWhenHit,"TK_RUN",5,20;
+ bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30;
+ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100;
+ bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;
+ - Id: 2681
+ AegisName: Republic_Ring
+ Name: Republic Anniversary Ring
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 2682
+ AegisName: Ring_Of_Water
+ Name: Ring of Water
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,5;
+ - Id: 2683
+ AegisName: Ring_Of_Fire
+ Name: Ring of Fire
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubDefEle,Ele_Fire,5;
+ - Id: 2684
+ AegisName: Ring_Of_Wind
+ Name: Ring of Wind
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubDefEle,Ele_Wind,5;
+ - Id: 2685
+ AegisName: Ring_Of_Earth
+ Name: Ring of Earth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bSubDefEle,Ele_Earth,5;
+ - Id: 2686
+ AegisName: Elven_Ears_C
+ Name: Elven Ears
+ Type: Armor
+ Buy: 1
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 73
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ - Id: 2687
+ AegisName: Steel_Flower_C
+ Name: Steel Flower
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 100
+ View: 56
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30;
+ - Id: 2688
+ AegisName: Critical_Ring_C
+ Name: Critical Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,10;
+ - Id: 2689
+ AegisName: Earring_C
+ Name: Earring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ - Id: 2690
+ AegisName: Ring_C
+ Name: Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,4;
+ - Id: 2691
+ AegisName: Necklace_C
+ Name: Necklace
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,4;
+ - Id: 2692
+ AegisName: Glove_C
+ Name: Glove
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ - Id: 2693
+ AegisName: Brooch_C
+ Name: Brooch
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,4;
+ /*Gold PC Room bonus bAllStats,1;*/
+ - Id: 2694
+ AegisName: Rosary_C
+ Name: Rosary
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bLuk,4;
+ - Id: 2695
+ AegisName: Safety_Ring_C
+ Name: Safety Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,8;
+ bonus bDef,8;
+ /*Gold PC Room bonus bAllStats,1;*/
+ - Id: 2696
+ AegisName: Vesper_Core01_C
+ Name: Vesper Core 01
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 2697
+ AegisName: Vesper_Core02_C
+ Name: Vesper Core 02
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,3;
+ bonus bBaseAtk,10;
+ - Id: 2698
+ AegisName: Vesper_Core03_C
+ Name: Vesper Core 03
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,3;
+ bonus bFlee,5;
+ - Id: 2699
+ AegisName: Vesper_Core04_C
+ Name: Vesper Core 04
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,3;
+ bonus bHit,10;
+ - Id: 2700
+ AegisName: Red_Silk_Seal
+ Name: Red Silk Seal
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ - Id: 2701
+ AegisName: Orleans_Glove
+ Name: Orleans's Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,3;
+ - Id: 2702
+ AegisName: Bison_Horn
+ Name: Bison Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bAgi,2;
+ - Id: 2703
+ AegisName: Expert_Ring
+ Name: Expert Ring
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bDelayrate,-5;
+ bonus bUseSPrate,5;
+ - Id: 2704
+ AegisName: Golden_Accessory
+ Name: Golden Accessories
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 2705
+ AegisName: Golden_Accessory2
+ Name: Golden Accessories
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12018,500;
+ - Id: 2706
+ AegisName: Handcuff
+ Name: Arrest Handcuffs
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2707
+ AegisName: Gusli
+ Name: GUSLI
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2708
+ AegisName: Chinese_Handicraft
+ Name: Chinese Handicraft
+ Type: Armor
+ Weight: 50
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,50;
+ - Id: 2709
+ AegisName: 5_Anniversary_Coin
+ Name: 5th Anniversary Coin
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ - Id: 2710
+ AegisName: Bloody_Iron_Ball_C
+ Name: Bloody Iron Ball
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,30;
+ - Id: 2711
+ AegisName: Spiritual_Ring_C
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ - Id: 2712
+ AegisName: Ragnarok_Limited_Ed
+ Name: Ragnarok Limited Edition
+ Type: Armor
+ Weight: 300
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Script: |
+ bonus bVit,3;
+ bonus bAgi,3;
+ bonus bLuk,3;
+ - Id: 2713
+ AegisName: Certificate_TW
+ Name: Certificate
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2714
+ AegisName: Marvelous_Pandent
+ Name: Marvelous Pendant
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ - Id: 2715
+ AegisName: Skul_Ring_
+ Name: Skull Ring
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus2 bSubRace,RC_Undead,1;
+ - Id: 2716
+ AegisName: Librarian_Glove
+ Name: Librarian Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 2717
+ AegisName: Pocket_Watch_
+ Name: Pocket Watch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ - Id: 2718
+ AegisName: Lunatic_Brooch
+ Name: Lunatic Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 65
+ - Id: 2719
+ AegisName: Iron_Wrist
+ Name: Iron Wrist
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus2 bSkillAtk,"SM_BASH",6;
+ bonus2 bSkillAtk,"MC_MAMMONITE",6;
+ - Id: 2720
+ AegisName: Medal_Swordman
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ StarGladiator: true
+ Swordman: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bHit,10;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;
+ - Id: 2721
+ AegisName: Medal_Thief
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bFlee,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;
+ - Id: 2722
+ AegisName: Medal_Acolyte
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bMdef,6;
+ bonus bMaxHP,600;
+ bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;
+ - Id: 2723
+ AegisName: Medal_Mage
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bMdef,6;
+ bonus bMaxHP,600;
+ bonus2 bAddEffWhenHit,Eff_Stone,100;
+ - Id: 2724
+ AegisName: Medal_Archer
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bCritical,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Blind,100,ATF_LONG;
+ - Id: 2725
+ AegisName: Medal_Merchant
+ Name: Medal of Honor
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bAspdRate,10;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;
+ - Id: 2726
+ AegisName: Icarus_Wing
+ Name: Icarus Wings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMaxSP,50;
+ bonus bDex,3;
+ - Id: 2727
+ AegisName: Bowman_Scarf
+ Name: Bowman Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMaxSP,50;
+ bonus bDex,3;
+ - Id: 2728
+ AegisName: Cursed_Hand
+ Name: Cursed Hand
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ bonus bHit,10;
+ bonus bHPrecovRate,20;
+ - Id: 2729
+ AegisName: Diabolus_Ring
+ Name: Diabolus Ring
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,100;
+ bonus bHealPower,5;
+ bonus2 bAddDamageClass,1916,10;
+ bonus2 bAddDamageClass,1917,10;
+ - Id: 2730
+ AegisName: Morroc_Seal
+ Name: Seal of Continental Guard
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bAspdRate,3;
+ - Id: 2731
+ AegisName: Morroc_Charm_Stone
+ Name: Rune Spellstone
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,50;
+ bonus bVariableCastrate,-1;
+ - Id: 2732
+ AegisName: Morroc_Ring
+ Name: Death Loop
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,5;
+ - Id: 2733
+ AegisName: Medal_Gunner
+ Name: Sheriff Badge
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bCritical,10;
+ bonus bMaxHP,300;
+ bonus bMaxSP,80;
+ bonus3 bAddEff,Eff_Blind,100,ATF_LONG;
+ - Id: 2734
+ AegisName: Directive_A
+ Name: Directive
+ Type: Armor
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2735
+ AegisName: Directive_B
+ Name: Directive
+ Type: Armor
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2736
+ AegisName: Navel_Ring
+ Name: Navel Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bDex,3;
+ bonus bLuk,3;
+ bonus bMdef,2;
+ - Id: 2737
+ AegisName: Foot_Ring
+ Name: Foot Ring
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Script: |
+ bonus bVit,3;
+ bonus bHPrecovRate,10;
+ - Id: 2738
+ AegisName: Shiny_Coin
+ Name: Shiny Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,6;
+ bonus bMatkRate,6;
+ - Id: 2739
+ AegisName: Ordinary_Coin
+ Name: Ordinary Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ - Id: 2740
+ AegisName: Rusty_Coin
+ Name: Rusty Coin
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ - Id: 2741
+ AegisName: All_In_One_Ring
+ Name: All In One Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bNoCastCancel;
+ bonus bVariableCastrate,10;
+ skill "AL_HEAL",1;
+ skill "AL_TELEPORT",1;
+ - Id: 2742
+ AegisName: Lucky_Clip
+ Name: Lucky Clip
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bDropAddRace,RC_All,50;
+ - Id: 2743
+ AegisName: Angelic_Ring
+ Name: Angelic Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ bonus bMdef,2;
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }";
+ autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";
+ - Id: 2744
+ AegisName: Sprint_Ring
+ Name: Sprint Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bVariableCastrate,-10;
+ bonus bDelayrate,5;
+ - Id: 2745
+ AegisName: Pinguicula_Corsage
+ Name: Pinguicula Corsage
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxSP,25;
+ - Id: 2746
+ AegisName: Cold_Heart
+ Name: Cold Heart
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bAgi,3;
+ - Id: 2747
+ AegisName: Black_Cat
+ Name: Black Cat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bDex,3;
+ - Id: 2748
+ AegisName: Cursed_Star
+ Name: Cursed Star
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 84
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,2;
+ bonus bLuk,-1;
+ bonus2 bHPLossRate,50,10000;
+ bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;
+ UnEquipScript: |
+ heal -300,0;
+ - Id: 2749
+ AegisName: Linen_Glove
+ Name: Linen Glove
+ Type: Armor
+ Buy: 20
+ Weight: 120
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,2;
+ bonus bAgi,2;
+ bonus bDex,1;
+ - Id: 2750
+ AegisName: Summer_Night_Dream
+ Name: Summer Night Dream
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* skill "ALL_DREAM_SUMMERNIGHT",1; */
+ - Id: 2751
+ AegisName: Academy_Badge
+ Name: Academy Of Badge
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseLevel<80) {
+ bonus bMaxHP,400;
+ bonus bMaxSP,200;
+ }
+ - Id: 2752
+ AegisName: Praxinus_C
+ Name: Praccsinos
+ Type: Armor
+ Buy: 2
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkrate,5;
+ - Id: 2753
+ AegisName: Beholder_Ring
+ Name: Beholder Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Formless,15;
+ - Id: 2754
+ AegisName: Hallow_Ring
+ Name: Hallow Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Undead,15;
+ - Id: 2755
+ AegisName: Clamorous_Ring
+ Name: Clamorous Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Brute,15;
+ - Id: 2756
+ AegisName: Chemical_Ring
+ Name: Chemical Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Plant,15;
+ - Id: 2757
+ AegisName: Insecticide_Ring
+ Name: Insecticide Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Insect,15;
+ - Id: 2758
+ AegisName: Fisher_Ring
+ Name: Fischer Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Fish,15;
+ - Id: 2759
+ AegisName: Decussate_Ring
+ Name: Decussate Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Demon,15;
+ - Id: 2760
+ AegisName: Bloody_Ring
+ Name: Bloody Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_DemiHuman,15;
+ - Id: 2761
+ AegisName: Satanic_Ring
+ Name: Satanic Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Angel,15;
+ - Id: 2762
+ AegisName: Dragoon_Ring
+ Name: Dragon Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_Dragon,15;
+ - Id: 2763
+ AegisName: Skul_Ring_C
+ Name: Neo Skull Ring
+ Type: Armor
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 95
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkrate,5;
+ bonus bMaxHPrate,5;
+ skill "MG_SIGHT",1;
+ - Id: 2764
+ AegisName: Small_Fishing_Rod
+ Name: Small Fishing Rod
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Locations:
+ Both_Accessory: true
+ - Id: 2765
+ AegisName: Novice_Figure
+ Name: Novice Figure
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMaxHP,70;
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus bMaxHP,30;
+ - Id: 2766
+ AegisName: Swordman_Figure
+ Name: Swordman Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,1;
+ if (Class == Job_Swordman)
+ bonus bDef,2;
+ - Id: 2767
+ AegisName: Acolyte_Figure
+ Name: Acolyte Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ if (Class == Job_Acolyte)
+ bonus bMaxSP,50;
+ - Id: 2768
+ AegisName: Mage_Figure
+ Name: Mage Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ if (Class == Job_Mage)
+ bonus bSPrecovRate,5;
+ - Id: 2769
+ AegisName: Archer_Figure
+ Name: Archer Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,1;
+ if (Class == Job_Archer)
+ bonus bBaseAtk,10;
+ - Id: 2770
+ AegisName: Thief_Figure
+ Name: Thief Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ if (Class == Job_Thief)
+ bonus bAspdRate,3;
+ - Id: 2771
+ AegisName: Merchant_Figure
+ Name: Merchant Figure
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ if (Class == Job_Merchant)
+ bonus bCritical,5;
+ - Id: 2772
+ AegisName: Krieger_Ring1
+ Name: Glorious Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 81
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-3;
+ bonus bHealPower,5;
+ - Id: 2773
+ AegisName: Krieger_Ring2
+ Name: Glorious Mass-Production Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ - Id: 2774
+ AegisName: Krieger_Ring3
+ Name: Glorious Popularized Ring
+ Type: Armor
+ Buy: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2775
+ AegisName: Lure
+ Name: Lure
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ - Id: 2776
+ AegisName: Cool_Towel
+ Name: Adventurer's Trusty Towel
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipScript: |
+ sc_start SC_SUMMER,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_SUMMER;
+ - Id: 2777
+ AegisName: Shaman_Ring
+ Name: Shaman Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bSPrecovRate,3;
+ - Id: 2778
+ AegisName: Shaman_Earing
+ Name: Shaman Earrings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ - Id: 2779
+ AegisName: Dark_Knight_Belt
+ Name: Dark Knight Belt
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bAgi,1;
+ - Id: 2780
+ AegisName: Dark_Knight_Glove
+ Name: Dark Knight Glove
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ autobonus "{ bonus bAspdRate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2781
+ AegisName: Aumdura's_Grace
+ Name: Aumdura's Benefit
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,1;
+ - Id: 2782
+ AegisName: Ring_Of_Wise_King
+ Name: Ring of the Ancient Wise King
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMaxSP,20;
+ - Id: 2783
+ AegisName: Eyes_Stone_Ring
+ Name: Eye Stone Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bCritical,2;
+ bonus bMaxSP,25;
+ - Id: 2784
+ AegisName: Oh_Holy_Night
+ Name: Christmas Musicbox
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ skill "ALL_WEWISH",1;
+ - Id: 2785
+ AegisName: Orleans_Glove_M
+ Name: Orlean's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,3;
+ - Id: 2786
+ AegisName: Spiritual_Ring_M
+ Name: Spiritual Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 2787
+ AegisName: Waterdrop_Brooch
+ Name: Waterdrop Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,2;
+ bonus bMaxHPrate,1;
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 2788
+ AegisName: Bradium_Earing
+ Name: Bradium Earring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMatk,5;
+ - Id: 2789
+ AegisName: Bradium_Ring
+ Name: Bradium Ring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bVit,1;
+ bonus bBaseAtk,5;
+ - Id: 2790
+ AegisName: Bradium_Brooch
+ Name: Bradium Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,4;
+ if (readparam(bAgi)>=120)
+ bonus bCritical,4;
+ - Id: 2791
+ AegisName: Just_Got_Fish
+ Name: Fresh Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bHit,3;
+ - Id: 2792
+ AegisName: Ring_Of_Flame_Lord_I
+ Name: Ring of Flame Lord
+ Type: Armor
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bBaseAtk,15;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30;
+ bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10;
+ bonus3 bAutoSpell,"PA_PRESSURE",2,30;
+ bonus3 bAutoSpell,"MG_FIREBALL",1,150;
+ bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20;
+ - Id: 2793
+ AegisName: Ring_Of_Resonance_I
+ Name: Ring of Resonance
+ Type: Armor
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ bonus bVit,1;
+ bonus bMdef,2;
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0;
+ bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20;
+ bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20;
+ - Id: 2794
+ AegisName: Magic_Stone_Ring
+ Name: Magic Stone Ring
+ Type: Armor
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 2795
+ AegisName: Green_Apple_Ring
+ Name: Green Apple Ring
+ Type: Armor
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (JobLevel<30) {
+ bonus bAllStats,6-(JobLevel/5);
+ }
+ - Id: 2796
+ AegisName: Magical_Stone
+ Name: Rocks
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,2047,10;
+ bonus2 bAddDefMonster,2048,-10;
+ bonus3 bAddMonsterIdDropItem,6152,2047,70;
+ - Id: 2797
+ AegisName: Magical_Stone_
+ Name: Rocks
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddDamageClass,2049,10;
+ bonus2 bAddDefMonster,2050,-10;
+ bonus3 bAddMonsterIdDropItem,6151,2049,70;
+ - Id: 2798
+ AegisName: Will_Of_Exhausted_Angel
+ Name: Will Of Exhausted Angel
+ Type: Armor
+ Weight: 200
+ Jobs:
+ Monk: true
+ Priest: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rang02") {
+ bonus2 bAddDefMonster,1761,50;
+ bonus2 bAddDefMonster,1762,50;
+ }
+ - Id: 2799
+ AegisName: Kuirpenring
+ Name: Kuirpenring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,1;
+ - Id: 2800
+ AegisName: Accelerator
+ Name: Accelerator
+ Type: Armor
+ Buy: 100000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,2;
+ - Id: 2801
+ AegisName: Hovering_Booster
+ Name: Hovering Booster
+ Type: Armor
+ Buy: 100000
+ Weight: 2000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,1;
+ - Id: 2802
+ AegisName: Suicidal_Device
+ Name: Suicidal Device
+ Type: Armor
+ Buy: 500000
+ Weight: 1000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ - Id: 2803
+ AegisName: Shape_Shifter
+ Name: Shape Shifter
+ Type: Armor
+ Buy: 100000
+ Weight: 500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bInt,3;
+ - Id: 2804
+ AegisName: Cooling_Device
+ Name: Cooling Device
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2805
+ AegisName: Mag_Field_Generator
+ Name: Magnetic Field Generator
+ Type: Armor
+ Buy: 100000
+ Weight: 6000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2806
+ AegisName: Barrier_Builder
+ Name: Barrier Builder
+ Type: Armor
+ Buy: 150000
+ Weight: 8000
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2807
+ AegisName: Repair_Kit
+ Name: Repair Kit
+ Type: Armor
+ Buy: 200000
+ Weight: 400
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ - Id: 2808
+ AegisName: Camouflage_Generator
+ Name: Camouflague Generator
+ Type: Armor
+ Buy: 250000
+ Weight: 1000
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAgi,3;
+ - Id: 2809
+ AegisName: High_Quality_Cooler
+ Name: High Quality Cooler
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2810
+ AegisName: Special_Cooler
+ Name: Special Cooler
+ Type: Armor
+ Buy: 100000
+ Weight: 2500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bDex,1;
+ - Id: 2811
+ AegisName: Freyja_SBracelet7
+ Name: Freyja's Spirit Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2812
+ AegisName: Freyja_SBracelet30
+ Name: Freyja's Spirit Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2813
+ AegisName: Freyja_SBracelet60
+ Name: Freyja's Spirit Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2814
+ AegisName: Freyja_SBracelet90
+ Name: Freyja's Spirit Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2815
+ AegisName: Th_Ring_Of_Water
+ Name: Ring Of Water
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,2;
+ - Id: 2816
+ AegisName: Radar_Ring1
+ Name: Radar Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddMonsterIdDropItem,6206,1002,400;
+ bonus3 bAddMonsterIdDropItem,6207,1161,400;
+ bonus3 bAddMonsterIdDropItem,6208,1153,400;
+ - Id: 2817
+ AegisName: Radar_Ring2
+ Name: Radar Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddMonsterIdDropItem,6206,1026,400;
+ bonus3 bAddMonsterIdDropItem,6207,1197,400;
+ bonus3 bAddMonsterIdDropItem,6208,1504,400;
+ - Id: 2818
+ AegisName: Radar_Ring3
+ Name: Radar Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddMonsterIdDropItem,6206,1508,400;
+ bonus3 bAddMonsterIdDropItem,6207,1098,400;
+ bonus3 bAddMonsterIdDropItem,6208,1315,400;
+ - Id: 2819
+ AegisName: Swordman_Manual
+ Name: Swordsman Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "SM_BASH",1;
+ skill "SM_PROVOKE",1;
+ skill "SM_MAGNUM",1;
+ - Id: 2820
+ AegisName: Thief_Manual
+ Name: Thief Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "TF_DOUBLE",3;
+ bonus bDoubleRate,15;
+ skill "TF_STEAL",1;
+ skill "TF_HIDING",1;
+ skill "TF_POISON",1;
+ - Id: 2821
+ AegisName: Acolyte_Manual
+ Name: Acolyte Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "AL_HEAL",1;
+ skill "AL_INCAGI",1;
+ skill "AL_BLESSING",1;
+ - Id: 2822
+ AegisName: Archer_Manual
+ Name: Archer Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "AC_OWL",1;
+ skill "AC_CONCENTRATION",1;
+ - Id: 2823
+ AegisName: Merchant_Manual
+ Name: Merchant Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "MC_DISCOUNT",1;
+ skill "MC_OVERCHARGE",10;
+ skill "MC_IDENTIFY",1;
+ skill "MC_MAMMONITE",1;
+ - Id: 2824
+ AegisName: Mage_Manual
+ Name: Mage Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "MG_SRECOVERY",1;
+ skill "MG_COLDBOLT",1;
+ skill "MG_FIREWALL",1;
+ skill "MG_FIREBOLT",1;
+ - Id: 2825
+ AegisName: Shaman_EaringB
+ Name: Shaman Earrings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ - Id: 2826
+ AegisName: Dark_Knight_BeltB
+ Name: Dark Knight Belt
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,1;
+ - Id: 2827
+ AegisName: Dark_Knight_GloveB
+ Name: Dark Knight Glove
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ autobonus "{ bonus bMaxHPrate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 2828
+ AegisName: Upg_Clip
+ Name: Upg Clip
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxSP,50;
+ bonus bMaxHPrate,3;
+ - Id: 2829
+ AegisName: Greed_Clip
+ Name: Greed Clip
+ Type: Armor
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ skill "BS_GREED",1;
+ - Id: 2830
+ AegisName: Magingiorde_C
+ Name: Megingjard
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bStr,40;
+ bonus bMdef,7;
+ - Id: 2831
+ AegisName: Brysinggamen_C
+ Name: Brisingamen
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 94
+ Script: |
+ bonus bStr,6;
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bAgi,6;
+ bonus bLuk,10;
+ bonus bMdef,5;
+ - Id: 2832
+ AegisName: Freyja_Ring
+ Name: Freyja's Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2833
+ AegisName: Odin's_Recall
+ Name: Odin's Recall
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,1;
+ skill "ALL_ODINS_RECALL",1;
+ - Id: 2834
+ AegisName: F_All_In_One_Ring
+ Name: All In One Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bNoCastCancel;
+ bonus bVariableCastrate,10;
+ skill "AL_HEAL",1;
+ skill "AL_TELEPORT",1;
+ - Id: 2835
+ AegisName: F_Critical_Ring_C
+ Name: Critical Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bCritical,10;
+ - Id: 2836
+ AegisName: F_Glove_C
+ Name: Glove
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bDex,4;
+ - Id: 2837
+ AegisName: F_Safety_Ring_C
+ Name: Safety Ring
+ Type: Armor
+ Buy: 1
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2838
+ AegisName: F_Necklace_C
+ Name: Necklace
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bVit,4;
+ - Id: 2839
+ AegisName: F_Ring_C
+ Name: Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,4;
+ - Id: 2840
+ AegisName: F_Rosary_C
+ Name: Rosary
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bLuk,4;
+ bonus bMdef,5;
+ - Id: 2841
+ AegisName: Caracas_Ring
+ Name: Caracas Ring
+ Type: Armor
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bInt,3;
+ - Id: 2843
+ AegisName: Gold_Trickle
+ Name: Gold Trickle
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 75
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 2844
+ AegisName: El_Dicastes_Light
+ Name: Light Of El Discastes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "RETURN_TO_ELDICASTES",1;
+ - Id: 2845
+ AegisName: No_Fear_Belt
+ Name: No Fear Belt
+ Type: Armor
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMdef,2;
+ - Id: 2846
+ AegisName: E_All_In_One_Ring
+ Name: All In One Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2847
+ AegisName: E_Critical_Ring_C
+ Name: Critical Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bCritical,10;
+ - Id: 2848
+ AegisName: E_Glove_C
+ Name: Glove
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bDex,4;
+ - Id: 2849
+ AegisName: E_Safety_Ring_C
+ Name: Safety Ring
+ Type: Armor
+ Buy: 1
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,5;
+ - Id: 2850
+ AegisName: E_Ring_C
+ Name: Ring
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bVit,4;
+ - Id: 2851
+ AegisName: E_Necklace_C
+ Name: Necklace
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bStr,4;
+ - Id: 2852
+ AegisName: E_Rosary_C
+ Name: Rosary
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bLuk,4;
+ bonus bMdef,5;
+ - Id: 2853
+ AegisName: Telekinetic_Orb
+ Name: Telekinetic Orb
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ - Id: 2854
+ AegisName: Alchemy_Glove
+ Name: Alchemy Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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_FIREBALL",5,30,BF_MAGIC,1;
+ - Id: 2855
+ AegisName: Whike_Black_Tail
+ Name: Whike Black Tail
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 45
+ Script: |
+ bonus bCriticalRate,7;
+ bonus bAspdRate,3;
+ - Id: 2856
+ AegisName: Half_Megin
+ Name: Half Megingjard
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 47
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,20;
+ - Id: 2857
+ AegisName: Half_Brysing
+ Name: Half Brisingamen
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 47
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 2858
+ AegisName: Pendant_Of_Guardian
+ Name: Pendant Of Guardian
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "ALL_GUARDIAN_RECALL",1;
+ - Id: 2859
+ AegisName: Golden_Rod_Orb
+ Name: Golden Rod Orb
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,2;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Wind,15;
+ bonus5 bAutoSpellWhenHit,"WZ_JUPITEL",3,30,BF_WEAPON|BF_MAGIC,1;
+ - Id: 2860
+ AegisName: Aqua_Orb
+ Name: Aqua Orb
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,2;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Water,15;
+ bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30,BF_WEAPON|BF_MAGIC,1;
+ - Id: 2861
+ AegisName: Crimson_Orb
+ Name: Crismon Orb
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,2;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Fire,15;
+ bonus5 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30,BF_WEAPON|BF_MAGIC,1;
+ - Id: 2862
+ AegisName: Forest_Orb
+ Name: Forest Orb
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,2;
+ bonus bInt,1;
+ bonus2 bSubEle,Ele_Earth,15;
+ bonus5 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30,BF_WEAPON|BF_MAGIC,1;
+ - Id: 2863
+ AegisName: Ring_Of_Valkyrie
+ Name: Ring Of Valkyrie
+ Type: Armor
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 2864
+ AegisName: Light_Of_Cure
+ Name: Light Of Cure
+ Type: Armor
+ Buy: 20
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bVit,2;
+ bonus bHealPower,2;
+ - Id: 2865
+ AegisName: Seal_Of_Cathedral
+ Name: Seal Of Cathedral
+ Type: Armor
+ Buy: 20
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bInt,2;
+ bonus bHealPower,2;
+ - Id: 2866
+ AegisName: Ring_Of_Archbishop
+ Name: Ring Of Archbishop
+ Type: Armor
+ Buy: 20
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bDex,2;
+ bonus bHealPower,2;
+ - Id: 2867
+ AegisName: Broken_Bamboo_Piece
+ Name: Broken Bamboo Piece
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMdef,2;
+ - Id: 2868
+ AegisName: Green_Batik
+ Name: Green Batik
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 45
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,1;
+ - Id: 2869
+ AegisName: Colorful_Ketupat
+ Name: Colorful Ketupat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 45
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 2870
+ AegisName: Tw_8th_Anni_Ring
+ Name: Tw 8th Anni Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ bonus bMaxHP,50;
+ bonus bMaxSP,20;
+ - Id: 2872
+ AegisName: G_Honor_Certificate
+ Name: G Honor Certificate
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2873
+ AegisName: Cat_Hand_Glove
+ Name: Cat Hand Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAgi,1;
+ bonus bVit,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ - Id: 2874
+ AegisName: Buffalo_Horn
+ Name: Buffalo Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bAspd,1;
+ - Id: 2875
+ AegisName: RO_Appreciation_Ring
+ Name: RO Appreciation Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ - Id: 2876
+ AegisName: Necklace_Spica
+ Name: Necklace Spica
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 2877
+ AegisName: Glove_Sabik
+ Name: Glove Sabik
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 2878
+ AegisName: Bracelet_Arunairi
+ Name: Bracelet Arunairi
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 2879
+ AegisName: Badge_Giorredart
+ Name: Badge Giorredart
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 2880
+ AegisName: Ring_Lupak
+ Name: Ring Lupak
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 2881
+ AegisName: Orleans_Necklace
+ Name: Orleans Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bDex,2;
+ bonus bMatk,20;
+ - Id: 2882
+ AegisName: Ecoro_Cardslip
+ Name: Ecoro Cardslip
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bVit,1;
+ bonus bLuk,1;
+ - Id: 2883
+ AegisName: Ur_Seal
+ Name: Ur's Seal
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHPrate,2;
+ bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5;
+ bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5;
+ - Id: 2884
+ AegisName: Peuz_Seal
+ Name: Peuz's Seal
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ 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
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bMatk,15;
+ bonus2 bExpAddClass,Class_All,15;
+ - Id: 2886
+ AegisName: Sabah_Ring
+ Name: Sapha Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bCritical,3;
+ bonus2 bSkillUseSP,"GC_DARKILLUSION",5;
+ - Id: 2887
+ AegisName: Nab_Ring
+ Name: Nab Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bMatk,20;
+ - Id: 2888
+ AegisName: School_Bag
+ Name: School Bag
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-3;
+ if (BaseLevel<80) {
+ bonus bMaxHP,200;
+ bonus bMaxSP,100;
+ }
+ - Id: 2889
+ AegisName: Endure_Ring
+ Name: Endure Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ - Id: 2890
+ AegisName: White_Wing_Brooch
+ Name: White Wing Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bDex,2;
+ bonus bLongAtkRate,3;
+ - Id: 2891
+ AegisName: Black_wing_Brooch
+ Name: Black Wing Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bInt,2;
+ bonus bFlee2,3;
+ - Id: 2892
+ AegisName: Assassin_Handcuffs
+ Name: Assassin's Glove
+ Type: Armor
+ Buy: 56000
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxSP,20;
+ bonus bCritical,3;
+ - Id: 2893
+ AegisName: Cursed_Heart
+ Name: Cursed Heart
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ - Id: 2894
+ AegisName: Glove_Of_Shura
+ Name: Sura Gauntlet
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bStr,5;
+ bonus bMaxSPrate,6;
+ bonus bMaxHPrate,-6;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,30;
+ }
+ - Id: 2895
+ AegisName: Medal_Of_Valor1
+ Name: Medal Of Valor1
+ Type: Armor
+ Defense: 4
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bVariableCastrate,-2;
+ - Id: 2896
+ AegisName: Medal_Of_Valor2
+ Name: Medal Of Valor2
+ Type: Armor
+ Defense: 4
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAspdRate,3;
+ - Id: 2897
+ AegisName: 2011RWC_Necklace_J
+ Name: 2011RWC Necklace J
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus2 bExpAddClass,Class_All,1;
+ - Id: 2898
+ AegisName: Black_Rosary
+ Name: Dark Rosary
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,15;
+ - Id: 2899
+ AegisName: Sound_Amplifier
+ Name: Sound Amplification Device
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus2 bSkillAtk,"WM_METALICSOUND",150;
+ bonus2 bSkillUseSP,"WM_METALICSOUND",-60;
+ bonus bVariableCastrate,-50;
+ - Id: 2900
+ AegisName: Morrigane's_Belt_
+ Name: Morrigane's Belt
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ - Id: 2901
+ AegisName: Morrigane's_Pendant_
+ Name: Morrigane's Pendant
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 61
+ Script: |
+ bonus bStr,2;
+ - Id: 2902
+ AegisName: Morpheus's_Ring_
+ Name: Morpheus's Ring
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ - Id: 2903
+ AegisName: Morpheus's_Armlet_
+ Name: Morpheus's Armlet
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 33
+ Script: |
+ bonus bInt,1;
+ - Id: 2904
+ AegisName: Naqsh
+ Name: Naqsi
+ Type: Armor
+ 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;
+ - Id: 2905
+ AegisName: Super_Ora_Ora
+ Name: Super Ora Ora
+ Type: Armor
+ Weight: 1000
+ Locations:
+ Both_Accessory: true
+ - Id: 2906
+ AegisName: Happy_Gauntlet
+ Name: Happy Gauntlet
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bMdef,3;
+ - Id: 2907
+ AegisName: Buwaya_Tattoo
+ Name: Bawaya Agimat Tattoo
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMatkRate,7;
+ bonus bFixedCastrate,-7;
+ - Id: 2908
+ AegisName: Light_Ring
+ Name: Light Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ - Id: 2909
+ AegisName: Darkness_Ring
+ Name: Darkness Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ - Id: 2910
+ AegisName: Bakonawa_Tattoo
+ Name: Bakunawa Agimat Tattoo
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,7;
+ bonus bAspdRate,10;
+ - Id: 2911
+ AegisName: Bangungot_Tattoo
+ Name: Bangungot Agimat Tattoo
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bHealPower,4;
+ bonus bHealPower2,7;
+ - Id: 2912
+ AegisName: Xylitol_2011
+ Name: Xylitol 2011
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ - Id: 2913
+ AegisName: Thief_Handcuff
+ Name: Thief Handcuff
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bBaseAtk,5;
+ - Id: 2914
+ AegisName: Wizard_Left_Eye
+ Name: Wizard Left Eye
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bInt,4;
+ bonus bMdef,3;
+ bonus bVariableCastrate,3;
+ - Id: 2915
+ AegisName: Ettlang_Keepsake
+ Name: Ettlang Keepsake
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 2916
+ AegisName: Fairy_Wing
+ Name: Fairy Wing
+ Type: Armor
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "ECLAGE_RECALL",1;
+ - Id: 2917
+ AegisName: Str_Glove
+ Name: Str Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bBaseAtk,(readparam(bStr)/10);
+ if (readparam(bStr)>=110)
+ bonus2 bAddClass,Class_All,1;
+ - Id: 2918
+ AegisName: Int_Glove
+ Name: Int Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bMatk,(readparam(bInt)/10);
+ if (readparam(bInt)>=110)
+ bonus bMatkRate,1;
+ - Id: 2919
+ AegisName: Agi_Glove
+ Name: Agi Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bFlee,(readparam(bAgi)/10);
+ if (readparam(bAgi)>=110)
+ bonus bFlee2,1;
+ - Id: 2920
+ AegisName: Vit_Glove
+ Name: Vit Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bMaxHP,(readparam(bVit)/10)*50;
+ if (readparam(bVit)>=110)
+ bonus bMaxHPrate,1;
+ - Id: 2921
+ AegisName: Dex_Glove
+ Name: Dex Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bHit,(readparam(bDex)/10);
+ if (readparam(bDex)>=110)
+ bonus bLongAtkRate,1;
+ - Id: 2922
+ AegisName: Luk_Glove
+ Name: Luk Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bCritical,(readparam(bLuk)/10);
+ if (readparam(bLuk)>=110)
+ bonus bCritAtkRate,1;
+ - Id: 2923
+ AegisName: Str_Glove_
+ Name: Str Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bBaseAtk,(readparam(bStr)/10);
+ if (readparam(bStr)>=110)
+ bonus2 bAddClass,Class_All,1;
+ - Id: 2924
+ AegisName: Int_Glove_
+ Name: Int Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bMatk,(readparam(bInt)/10);
+ if (readparam(bInt)>=110)
+ bonus bMatkRate,1;
+ - Id: 2925
+ AegisName: Agi_Glove_
+ Name: Agi Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bFlee,(readparam(bAgi)/10);
+ if (readparam(bAgi)>=110)
+ bonus bFlee2,1;
+ - Id: 2926
+ AegisName: Vit_Glove_
+ Name: Vit Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bMaxHP,(readparam(bVit)/10)*50;
+ if (readparam(bVit)>=110)
+ bonus bMaxHPrate,1;
+ - Id: 2927
+ AegisName: Dex_Glove_
+ Name: Dex Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bHit,(readparam(bDex)/10);
+ if (readparam(bDex)>=110)
+ bonus bLongAtkRate,1;
+ - Id: 2928
+ AegisName: Luk_Glove_
+ Name: Luk Glove
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,20;
+ bonus bCritical,(readparam(bLuk)/10);
+ if (readparam(bLuk)>=110)
+ bonus bCritAtkRate,1;
+ - Id: 2935
+ AegisName: Sprint_Glove
+ Name: Sprint Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bVariableCastrate,-1;
+ bonus bDelayrate,-1;
+ - Id: 2936
+ AegisName: Recovery_Ring
+ Name: Recovery Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,250;
+ bonus bMaxHPrate,5;
+ bonus bHealPower2,5;
+ - Id: 2940
+ AegisName: Ninja_Manual
+ Name: Ninja Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "NJ_UTSUSEMI",1;
+ skill "NJ_KOUENKA",1;
+ skill "NJ_SYURIKEN",1;
+ - Id: 2941
+ AegisName: Gunslinger_Manual
+ Name: Gunslinger Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "GS_GLITTERING",1;
+ skill "GS_ADJUSTMENT",1;
+ skill "GS_MADNESSCANCEL",1;
+ skill "GS_INCREASING",1;
+ - Id: 2942
+ AegisName: Taekwon_Manual
+ Name: Taekwon Manual
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMax: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,100;
+ skill "TK_SEVENWIND",4;
+ skill "TK_JUMPKICK",5;
+ - Id: 2943
+ AegisName: Critical_Ring_
+ Name: Critical Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bCritical,5;
+ - Id: 2944
+ AegisName: TE_Ring_Of_Protection
+ Name: TE Ring Of Protection
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 2945
+ AegisName: TE_Ring_Of_Rage
+ Name: TE Ring Of Rage
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ bonus2 bMagicAddRace,RC_Player_Human,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ - Id: 2946
+ AegisName: TE_Ring_Of_Defiance
+ Name: TE Ring Of Defiance
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 2947
+ AegisName: Memories_of_Spring
+ Name: Spring Afternoon Memory
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMdef,2;
+ - Id: 2948
+ AegisName: Demon_Wing
+ Name: Demon Wing
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bFlee,5;
+ - Id: 2949
+ AegisName: Silversmith_Bracelet
+ Name: Silversmith Bracelet
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 60
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,3;
+ skill "SA_SPELLBREAKER",5;
+ - Id: 2950
+ AegisName: Rune_Ring
+ Name: Rune Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ EquipLevelMax: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 2951
+ AegisName: Kvasir_Ring_Blue
+ Name: Kvasir Ring Blue
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxSP,30;
+ skill "ECL_SNOWFLIP",1;
+ - Id: 2952
+ AegisName: Kvasir_Ring_Red
+ Name: Kvasir Ring Red
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxSP,30;
+ skill "ECL_PEONYMAMY",1;
+ - Id: 2953
+ AegisName: Kvasir_Ring_Green
+ Name: Kvasir Ring Green
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxHP,100;
+ skill "ECL_SADAGUI",1;
+ - Id: 2954
+ AegisName: Kvasir_Ring_Brown
+ Name: Kvasir Ring Brown
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ skill "ECL_SEQUOIADUST",1;
+ bonus bMaxHP,100;
+ - Id: 2956
+ AegisName: Safety_Ring_
+ Name: Advanced Safety Ring
+ Type: Armor
+ Buy: 75000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bMdef,5;
+ bonus bAllStats,1;
+ - Id: 2957
+ AegisName: Good_Ring_Of_Flame_Lord
+ Name: Advanced Ring Of Flame Lord
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 85
+ Script: |
+ bonus bStr,3;
+ bonus bVit,2;
+ bonus bBaseAtk,20;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30;
+ bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10;
+ bonus3 bAutoSpell,"PA_PRESSURE",2,30;
+ bonus3 bAutoSpell,"MG_FIREBALL",1,150;
+ bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20;
+ - Id: 2958
+ AegisName: Good_Ring_Of_Resonance
+ Name: Advanced Ring Of Resonance
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 85
+ Script: |
+ bonus bAgi,3;
+ bonus bVit,1;
+ bonus bMdef,2;
+ bonus bMatk,10;
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0;
+ bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20;
+ bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20;
+ - Id: 2959
+ AegisName: Fidelity_Necklace
+ Name: Fidelity Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubRace,RC_Brute,3;
+ bonus2 bSubRace,RC_Player_Doram,3;
+ - Id: 2960
+ AegisName: Badge_Of_Manny
+ Name: Badge Of Manny
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 2963
+ AegisName: Body_Power_Up_Ring
+ Name: Physical Enhancer Ring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 2964
+ AegisName: Ring_Of_Spell_Explosion
+ Name: Magic Intensifier Ring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 2966
+ AegisName: RWC_2012_Ring
+ Name: RWC 2012 Ring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 2967
+ AegisName: RWC_2012_Ring_
+ Name: Chambered RWC 2012 Ring
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 2968
+ AegisName: RWC_2012_Pendant
+ Name: RWC 2012 Pendant
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 2969
+ AegisName: RWC_2012_Pendant_
+ Name: Chambered RWC 2012 Pendant
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 2971
+ AegisName: Pocket_Watch
+ Name: Pocket Watch
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bHPrecovRate,15;
+ bonus bSPrecovRate,15;
+ bonus bMatkRate,7;
+ - Id: 2976
+ AegisName: Red_Lantern
+ Name: Red Lantern
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxSP,-300;
+ skill "MG_SIGHT",1;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 2977
+ AegisName: Hurt_Mind
+ Name: Hurt Mind
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bMaxSP,200;
+ skill "DC_SCREAM",3;
+ - Id: 2978
+ AegisName: KindHeart
+ Name: Kind Heart
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bMaxHP,500;
+ bonus2 bHPRegenRate,300,10000;
+ - Id: 2979
+ AegisName: Strawberry_Decoration
+ Name: Strawberry Decoration
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,1;
+ bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10;
+ /* Confirm: Frost Nova cast chance */
+ - Id: 2980
+ AegisName: Evilspirit_Gloves
+ Name: Evil Spirit Gloves
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 110
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,200;
+ skill "PF_SPIDERWEB",1;
+ bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20;
+ bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0;
+ bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0;
+ bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0;
+ bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0;
+ - Id: 2981
+ AegisName: RingOfHero
+ Name: Warrior's Ring
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 2983
+ AegisName: Greed_Brooch
+ Name: Greed Brooch
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus2 bHPLossRate,10,5000;
+ - Id: 2984
+ AegisName: Limnil_Glove
+ Name: Glove Save Rimnil
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 30
+ Script: |
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bSubRace,RC_All,-5;
+ - Id: 2985
+ AegisName: Gyges_Ring
+ Name: Gyges Ring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bInt,3;
+ bonus bMatk,30;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 2986
+ AegisName: Snake_Ring
+ Name: Snake Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bDex,3;
+ bonus bMdef,2;
+ - Id: 2987
+ AegisName: Snake_Pendant
+ Name: Snake Pendant
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,3;
+ bonus bLuk,2;
+ bonus bMdef,3;
+ - Id: 2988
+ AegisName: Winged_Ring_Of_Newoz
+ Name: Oz's New Wing Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bVariableCastrate,-25;
+ - Id: 2989
+ AegisName: Floral_Bracelet_Of_Igu
+ Name: Bloody Floral Decoration Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bVariableCastrate,-25;
+ - Id: 2990
+ AegisName: Pendant_Of_Harmony
+ Name: Pendant of Harmony
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bMatkRate,6;
+ bonus bHPrecovRate,50;
+ bonus bSPrecovRate,50;
+ bonus2 bSubEle,Ele_Holy,5;
+ bonus4 bAutoSpell,"AB_RENOVATIO",1,30,0;
+ bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,50,0;
+ bonus bStr,-5;
+ - Id: 2991
+ AegisName: Pendant_Of_Chaos
+ Name: Pendant of Chaos
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ - Id: 2992
+ AegisName: Pendant_Of_Maelstorm
+ Name: Pendant of Maelstrom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ - Id: 2995
+ AegisName: Supplement_Part_Dex
+ Name: Supplement Part Dex
+ Type: Armor
+ Buy: 25000
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bUseSPrate,-10;
+ bonus bDelayrate,-10;
+ bonus bVariableCastrate,-10;
+ - Id: 2996
+ AegisName: Upgrade_Part_Gun_Barrel
+ Name: Reinforced Parts - Gun Barrel
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ bonus bHit,10;
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;
+ - Id: 2997
+ AegisName: RWC_Gold_Brooch
+ Name: RWC Gold Brooch
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,25;
+ bonus bMatk,20;
+ - Id: 2998
+ AegisName: Shining_Trapezohedron
+ Name: Shining Trapezohedron
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus2 bSubEle,Ele_Holy,10;
+ - Id: 2999
+ AegisName: RWC_Brooch
+ Name: RWC Brooch
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,30;
+ - Id: 5001
+ AegisName: Headset
+ Name: Headset
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 87
+ Script: |
+ bonus2 bResEff,Eff_Curse,1000;
+ - Id: 5002
+ AegisName: Gemmed_Crown
+ Name: Jewel Crown
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 9
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 88
+ Script: |
+ bonus bInt,2;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ - Id: 5003
+ AegisName: Joker_Jester
+ Name: Joker Jester
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 89
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,5;
+ - Id: 5004
+ AegisName: Oxygen_Mask
+ Name: Oxygen Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 90
+ Script: |
+ bonus2 bResEff,Eff_Poison,2000;
+ - Id: 5005
+ AegisName: Gas_Mask
+ Name: Gas Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 91
+ Script: |
+ bonus2 bResEff,Eff_Poison,3000;
+ - Id: 5006
+ AegisName: Machoman_Glasses
+ Name: Machoman's Glasses
+ Type: Armor
+ Buy: 36000
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 92
+ - Id: 5007
+ AegisName: Loard_Circlet
+ Name: Grand Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 93
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bLuk,1;
+ bonus bMdef,4;
+ - Id: 5008
+ AegisName: Puppy_Love
+ Name: Puppy Love
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 94
+ - Id: 5009
+ AegisName: Safety_Helmet
+ Name: Safety Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 95
+ Script: |
+ bonus bMdef,3;
+ bonus bUnbreakableHelm;
+ - Id: 5010
+ AegisName: Indian_Hair_Piece
+ Name: Indian Fillet
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 96
+ - Id: 5011
+ AegisName: Antenna
+ Name: Aerial
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 97
+ - Id: 5012
+ AegisName: Ph.D_Hat
+ Name: Ph.D Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ - Id: 5013
+ AegisName: Horn_Of_Lord_Kaho
+ Name: Lord Kaho's Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 30
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 99
+ Script: |
+ bonus bMdef,10;
+ bonus bStr,5;
+ bonus bAgiVit,10;
+ bonus bInt,5;
+ bonus bLuk,20;
+ itemskill "NPC_HELLJUDGEMENT",10;
+ - Id: 5014
+ AegisName: Fin_Helm
+ Name: Fin Helm
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 65
+ View: 100
+ - Id: 5015
+ AegisName: Egg_Shell
+ Name: Egg Shell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Top: true
+ View: 101
+ - Id: 5016
+ AegisName: Boy's_Cap
+ Name: Boy's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 102
+ - Id: 5017
+ AegisName: Bone_Helm
+ Name: Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 15
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 103
+ Script: |
+ bonus2 bSubEle,Ele_Dark,-15;
+ - Id: 5018
+ AegisName: Feather_Bonnet
+ Name: Feather Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 8
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 104
+ Script: |
+ bonus bAgi,1;
+ - Id: 5019
+ AegisName: Corsair
+ Name: Corsair
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 11
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ - Id: 5020
+ AegisName: Kafra_Band
+ Name: Kafra Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 106
+ Script: |
+ bonus bMdef,3;
+ - Id: 5021
+ AegisName: Bankruptcy_Of_Heart
+ Name: Grief for Greed
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 107
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5022
+ AegisName: Helm_Of_Sun
+ Name: Hat of the Sun God
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 138
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ - Id: 5023
+ AegisName: Hat_Of_Bundle
+ Name: Parcel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 108
+ - Id: 5024
+ AegisName: Hat_Of_Cake
+ Name: Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 109
+ - Id: 5025
+ AegisName: Helm_Of_Angel
+ Name: Helm of Angel
+ Type: Armor
+ Buy: 20
+ Weight: 1600
+ Defense: 10
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 74
+ Refineable: true
+ View: 110
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ - Id: 5026
+ AegisName: Hat_Of_Cook
+ Name: Chef Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 111
+ Script: |
+ bonus bDex,1;
+ - Id: 5027
+ AegisName: Wizardry_Hat
+ Name: Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 112
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5028
+ AegisName: Candle
+ Name: Candle
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 113
+ - Id: 5029
+ AegisName: Spore_Hat
+ Name: Spore Hat
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 114
+ - Id: 5030
+ AegisName: Panda_Cap
+ Name: Panda Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 115
+ - Id: 5031
+ AegisName: Mine_Helm
+ Name: Mine Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 9
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 116
+ Script: |
+ bonus bDex,2;
+ - Id: 5032
+ AegisName: Picnic_Hat
+ Name: Sunday Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 117
+ - Id: 5033
+ AegisName: Smokie_Hat
+ Name: Raccoon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 118
+ - Id: 5034
+ AegisName: Light_Bulb_Band
+ Name: Bulb Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 119
+ - Id: 5035
+ AegisName: Poring_Hat
+ Name: Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 120
+ - Id: 5036
+ AegisName: Cross_Band
+ Name: Cross Hat
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 121
+ - Id: 5037
+ AegisName: Fruit_Shell
+ Name: Nut Shell
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 5
+ View: 122
+ - Id: 5038
+ AegisName: Deviruchi_Cap
+ Name: Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 123
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5039
+ AegisName: Mottled_Egg_Shell
+ Name: Rainbow Eggshell
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 19
+ View: 124
+ - Id: 5040
+ AegisName: Blush
+ Name: Blush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 125
+ - Id: 5041
+ AegisName: Heart_Hair_Pin
+ Name: Heart Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 126
+ - Id: 5042
+ AegisName: Hair_Protector
+ Name: Bao Bao
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 14
+ Refineable: true
+ View: 127
+ - Id: 5043
+ AegisName: Opera_Ghost_Mask
+ Name: Opera Phantom Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 128
+ - Id: 5044
+ AegisName: Devil's_Wing
+ Name: Evil Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 129
+ Script: |
+ bonus bVit,1;
+ - Id: 5045
+ AegisName: Magician_Hat
+ Name: Magician Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 130
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMaxSP,50;
+ - Id: 5046
+ AegisName: Bongun_Hat
+ Name: Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 139
+ - Id: 5047
+ AegisName: Fashion_Sunglass
+ Name: Fashionable Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 131
+ - Id: 5048
+ AegisName: First_Moon_Hair_Pin
+ Name: Cresent Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 132
+ - Id: 5049
+ AegisName: Stripe_Band
+ Name: Striped Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 133
+ - Id: 5050
+ AegisName: Mystery_Fruit_Shell
+ Name: Wonder Nutshell
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 134
+ - Id: 5051
+ AegisName: Kitty_Bell
+ Name: Pussy Cat Bell
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 135
+ - Id: 5052
+ AegisName: Blue_Hair_Band
+ Name: Blue Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 136
+ - Id: 5053
+ AegisName: Spinx_Helm
+ Name: Sphinx Hat
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 137
+ Script: |
+ bonus bStr,2;
+ - Id: 5054
+ AegisName: Assassin_Mask
+ Name: Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 180
+ - Id: 5055
+ AegisName: Novice_Egg_Cap
+ Name: Novice False Eggshell
+ Type: Armor
+ Buy: 1
+ Weight: 1
+ Defense: 6
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ View: 101
+ - Id: 5056
+ AegisName: Love_Berry
+ Name: Fruit of Love
+ Type: Armor
+ Buy: 1
+ Weight: 200
+ Locations:
+ Head_Top: true
+ View: 140
+ - Id: 5057
+ AegisName: Ear_Of_Black_Cat
+ Name: Black Cat Ears
+ Type: Armor
+ Buy: 16000
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 141
+ - Id: 5058
+ AegisName: Drooping_Kitty
+ Name: Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 142
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,3000;
+ - Id: 5059
+ AegisName: Brown_Bear_Cap
+ Name: Teddybear Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 143
+ - Id: 5060
+ AegisName: Party_Hat
+ Name: Party Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ Script: |
+ bonus bLuk,1;
+ - Id: 5061
+ AegisName: Flower_Hairpin
+ Name: Flower Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 145
+ - Id: 5062
+ AegisName: Straw_Hat
+ Name: Straw Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 146
+ Script: |
+ bonus bAgi,1;
+ - Id: 5063
+ AegisName: Plaster
+ Name: Giant Band Aid
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 147
+ - Id: 5064
+ AegisName: Leaf_Headgear
+ Name: Smokie Leaf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 148
+ - Id: 5065
+ AegisName: Fish_On_Head
+ Name: Blue Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Script: |
+ bonus2 bAddRace,RC_Fish,10;
+ - Id: 5066
+ AegisName: Horn_Of_Succubus
+ Name: Succubus Horn
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 150
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,10;
+ - Id: 5067
+ AegisName: Sombrero
+ Name: Sombrero
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 151
+ Script: |
+ bonus bAgi,1;
+ - Id: 5068
+ AegisName: Ear_Of_Devil's_Wing
+ Name: Evil Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 152
+ Script: |
+ bonus bStr,1;
+ - Id: 5069
+ AegisName: Mask_Of_Fox
+ Name: Kitsune Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 153
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ - Id: 5070
+ AegisName: Headband_Of_Power
+ Name: Hot-blooded Headband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 154
+ Script: |
+ bonus bStr,2;
+ - Id: 5071
+ AegisName: Indian_Headband
+ Name: Indian Headband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 155
+ Script: |
+ bonus bDex,1;
+ - Id: 5072
+ AegisName: Inccubus_Horn
+ Name: Incubus Horn
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 156
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,10;
+ - Id: 5073
+ AegisName: Cap_Of_Concentration
+ Name: Model Training Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 157
+ Script: |
+ bonus bDex,2;
+ - Id: 5074
+ AegisName: Ear_Of_Angel's_Wing
+ Name: Angel Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 158
+ Script: |
+ bonus bStr,1;
+ - Id: 5075
+ AegisName: Cowboy_Hat
+ Name: Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 159
+ - Id: 5076
+ AegisName: Fur_Hat
+ Name: Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 160
+ Script: |
+ bonus bLuk,1;
+ - Id: 5077
+ AegisName: Tulip_Hairpin
+ Name: Tulip Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 161
+ - Id: 5078
+ AegisName: Sea_Otter_Cap
+ Name: Sea-Otter Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 162
+ Script: |
+ bonus bVit,1;
+ - Id: 5079
+ AegisName: Crossed_Hair_Band
+ Name: X Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 163
+ - Id: 5080
+ AegisName: Headgear_Of_Queen
+ Name: Crown of Ancient Queen
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 164
+ - Id: 5081
+ AegisName: Mistress_Crown
+ Name: Crown of Mistress
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 165
+ Script: |
+ bonus bMaxSP,100;
+ bonus bInt,2;
+ bonus bUnbreakableHelm;
+ - Id: 5082
+ AegisName: Mushroom_Band
+ Name: Decorative Mushroom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 166
+ - Id: 5083
+ AegisName: Red_Tailed_Ribbon
+ Name: Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 167
+ Script: |
+ bonus bMdef,10;
+ - Id: 5084
+ AegisName: Lazy_Raccoon
+ Name: Lazy Smokie
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 168
+ Script: |
+ bonus2 bResEff,Eff_Sleep,2000;
+ - Id: 5085
+ AegisName: Pair_Of_Red_Ribbon
+ Name: Small Ribbons
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ - Id: 5086
+ AegisName: Alarm_Mask
+ Name: Alarm Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 170
+ Script: |
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 5087
+ AegisName: Goblin_Mask_01
+ Name: Poker Face
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 171
+ - Id: 5088
+ AegisName: Goblin_Mask_02
+ Name: Surprised Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 172
+ - Id: 5089
+ AegisName: Goblin_Mask_03
+ Name: Annoyed Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 173
+ - Id: 5090
+ AegisName: Goblin_Mask_04
+ Name: Goblin Leader Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 174
+ - Id: 5091
+ AegisName: Big_Golden_Bell
+ Name: Decorative Golden Bell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 35
+ Refineable: true
+ View: 175
+ - Id: 5092
+ AegisName: Blue_Coif
+ Name: Coif
+ Type: Armor
+ Buy: 150000
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 176
+ - Id: 5093
+ AegisName: Blue_Coif_
+ Name: Coif
+ Type: Armor
+ Buy: 150000
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 177
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 5094
+ AegisName: Orc_Hero_Helm
+ Name: Helmet of Orc Hero
+ Type: Armor
+ Buy: 500000
+ Weight: 900
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 178
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ - Id: 5095
+ AegisName: Orc_Hero_Helm_
+ Name: Helmet of Orc Hero
+ Type: Armor
+ Buy: 800000
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 179
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ - Id: 5096
+ AegisName: Assassin_Mask_
+ Name: Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 180
+ - Id: 5097
+ AegisName: Cone_Hat_
+ Name: Holiday Hat
+ Type: Armor
+ Weight: 400
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ - Id: 5098
+ AegisName: Tiger_Mask
+ Name: Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 181
+ Script: |
+ bonus bStr,3;
+ bonus bMaxHP,100;
+ - Id: 5099
+ AegisName: Cat_Hat
+ Name: Neko Mimi
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 182
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5100
+ AegisName: Sales_Signboard
+ Name: Sales Banner
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 183
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bLuk,1;
+ - Id: 5101
+ AegisName: Takius_Blindfold
+ Name: Takius's Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 184
+ Script: |
+ bonus bInt,2;
+ bonus bDef,1;
+ - Id: 5102
+ AegisName: Round_Eyes
+ Name: Blank Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 185
+ - Id: 5103
+ AegisName: Sunflower_Hairpin
+ Name: Sunflower Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 186
+ Script: |
+ bonus bAgi,2;
+ bonus bCritical,5;
+ - Id: 5104
+ AegisName: Dark_Blindfold
+ Name: Dark Blinder
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 187
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,200;
+ - Id: 5105
+ AegisName: Hat_Of_Cake_
+ Name: 2nd Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 24
+ Refineable: true
+ View: 109
+ Script: |
+ bonus bDex,1;
+ bonus bMaxSP,80;
+ bonus3 bAddMonsterDropItem,7864,7,50;
+ - Id: 5106
+ AegisName: Cone_Hat_INA
+ Name: 2nd Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 144
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ bonus bMatkRate,3;
+ bonus bFlee,3;
+ bonus bHit,3;
+ bonus bFlee2,3;
+ - Id: 5107
+ AegisName: Well_Baked_Toast
+ Name: Crunch Toast
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 188
+ - Id: 5108
+ AegisName: Detective_Hat
+ Name: Renown Detective's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 189
+ - Id: 5109
+ AegisName: Red_Bonnet
+ Name: Red Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 190
+ - Id: 5110
+ AegisName: Baby_Pacifier
+ Name: Baby Pacifier
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 191
+ - Id: 5111
+ AegisName: Galapago_Cap
+ Name: Galapago Cap
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 192
+ Script: |
+ bonus2 bAddMonsterDropItem,605,100;
+ - Id: 5112
+ AegisName: Super_Novice_Hat
+ Name: Super Novice Hat
+ Type: Armor
+ Buy: 8500
+ Weight: 400
+ Defense: 8
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 193
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5113
+ AegisName: Angry_Mouth
+ Name: Angry Snarl
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ View: 194
+ - Id: 5114
+ AegisName: Fedora
+ Name: Bucket Hat
+ Type: Armor
+ Buy: 6000
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 195
+ - Id: 5115
+ AegisName: Winter_Hat
+ Name: Winter Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 196
+ Script: |
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5116
+ AegisName: Banana_Hat
+ Name: Banana Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 197
+ Script: |
+ bonus3 bAutoSpell,"SM_PROVOKE",3,30;
+ - Id: 5117
+ AegisName: Mistic_Rose
+ Name: Mystic Rose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 198
+ Script: |
+ bonus2 bSubRace,RC_Plant,2;
+ - Id: 5118
+ AegisName: Ear_Of_Puppy
+ Name: Puppy Headband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 199
+ - Id: 5119
+ AegisName: Super_Novice_Hat_
+ Name: Super Novice Hat
+ Type: Armor
+ Buy: 8500
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 193
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5120
+ AegisName: Fedora_
+ Name: Bucket Hat
+ Type: Armor
+ Buy: 6000
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 195
+ - Id: 5121
+ AegisName: Zherlthsh_Mask
+ Name: Zealotus Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 200
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5122
+ AegisName: Magni_Cap
+ Name: Magni's Cap
+ Type: Armor
+ Buy: 30000
+ Weight: 1000
+ Defense: 9
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 250
+ Script: |
+ bonus bStr,2;
+ - Id: 5123
+ AegisName: Ulle_Cap
+ Name: Ulle's Cap
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 254
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,1;
+ - Id: 5124
+ AegisName: Fricca_Circlet
+ Name: Fricca's Circlet
+ Type: Armor
+ Buy: 30000
+ Weight: 300
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 65
+ Refineable: true
+ View: 251
+ Script: |
+ bonus bMdef,10;
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ - Id: 5125
+ AegisName: Kiss_Of_Angel
+ Name: Angel's Kiss
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 255
+ Script: |
+ bonus bSPrecovRate,3;
+ - Id: 5126
+ AegisName: Morpheus's_Hood
+ Name: Morpheus's Hood
+ Type: Armor
+ Buy: 30000
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 33
+ Refineable: true
+ View: 256
+ Script: |
+ bonus bInt,2;
+ - Id: 5127
+ AegisName: Morrigane's_Helm
+ Name: Morrigane's Helm
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 61
+ Refineable: true
+ View: 257
+ Script: |
+ bonus bLuk,2;
+ bonus bBaseAtk,3;
+ - Id: 5128
+ AegisName: Goibne's_Helmet
+ Name: Goibne's Helm
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 54
+ Refineable: true
+ View: 258
+ Script: |
+ bonus bVit,3;
+ bonus bMdef,3;
+ - Id: 5129
+ AegisName: Bird_Nest
+ Name: Bird Nest
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 55
+ View: 201
+ Script: |
+ bonus bAgi,2;
+ bonus2 bSubRace,RC_Brute,10;
+ bonus2 bSubRace,RC_Player_Doram,10;
+ - Id: 5130
+ AegisName: Lion_Mask
+ Name: Lion Mask
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 202
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,500;
+ bonus bMdef,1;
+ - Id: 5131
+ AegisName: Close_Helmet
+ Name: Close Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 8
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 203
+ Script: |
+ bonus bVit,3;
+ bonus bMaxHPrate,3;
+ - Id: 5132
+ AegisName: Angeling_Hat
+ Name: Angeling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 5
+ Locations:
+ Head_Top: true
+ View: 204
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5133
+ AegisName: Sheep_Hat
+ Name: Sheep Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ View: 205
+ Script: |
+ bonus bShortWeaponDamageReturn,5;
+ - Id: 5134
+ AegisName: Pumpkin_Hat
+ Name: Pumpkin-Head
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ - Id: 5135
+ AegisName: Cyclops_Visor
+ Name: Cyclop's Eye
+ Type: Armor
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 75
+ View: 207
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 5136
+ AegisName: Santa's_Hat_
+ Name: Antonio's Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 20
+ Script: |
+ bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50;
+ bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;
+ - Id: 5137
+ AegisName: Alice_Doll
+ Name: Alice Doll
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 208
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddEff2,Eff_Sleep,10;
+ - Id: 5138
+ AegisName: Magic_Eyes
+ Name: Magic Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 209
+ Script: |
+ bonus bMdef,5;
+ bonus bVariableCastrate,-10;
+ bonus bUseSPrate,20;
+ - Id: 5139
+ AegisName: Hibiscus
+ Name: Hibiscus
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 210
+ Script: |
+ bonus bDex,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ - Id: 5140
+ AegisName: Charming_Ribbon
+ Name: Charming Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 211
+ Script: |
+ bonus2 bSubRace,RC_Undead,5;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5141
+ AegisName: Marionette_Doll
+ Name: Marionette Doll
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 212
+ Script: |
+ bonus bStr,1;
+ - Id: 5142
+ AegisName: Crescent_Helm
+ Name: Crescent Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 213
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5143
+ AegisName: Kabuki_Mask
+ Name: Kabuki Mask
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 214
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bResEff,Eff_Silence,3000;
+ - Id: 5144
+ AegisName: Gambler_Hat
+ Name: Gambler Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ Script: |
+ bonus bLuk,5;
+ - Id: 5145
+ AegisName: Carnival_Joker_Jester
+ Name: Carnival Joker Jester
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 89
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5146
+ AegisName: Elephant_Hat
+ Name: Elephant Hat
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Brute,7;
+ bonus2 bSubRace,RC_Player_Doram,7;
+ skill "WZ_WATERBALL",1;
+ - Id: 5147
+ AegisName: Baseball_Cap
+ Name: Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5148
+ AegisName: Phrygian_Cap
+ Name: Phrygian Cap
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bInt,2;
+ - Id: 5149
+ AegisName: Silver_Tiara
+ Name: Silver Tiara
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 218
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 5150
+ AegisName: Joker_Jester_
+ Name: Joker Jester
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 219
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 5151
+ AegisName: Headset_OST
+ Name: Note Headphones
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 220
+ Script: |
+ bonus bMdef,3;
+ bonus2 bResEff,Eff_Stun,1000;
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5152
+ AegisName: Chinese_Crown
+ Name: Chinese Crown
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 221
+ Script: |
+ bonus2 bResEff,Eff_Stun,1000;
+ bonus bInt,1;
+ - Id: 5153
+ AegisName: Angeling_Hairpin
+ Name: Angeling Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 222
+ Script: |
+ bonus bFlee,5;
+ - Id: 5154
+ AegisName: Sunglasses_F
+ Name: Father's Sunglasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Mid: true
+ View: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5155
+ AegisName: Granpa_Beard_F
+ Name: Father's White Moustache
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 25
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 5156
+ AegisName: Flu_Mask_F
+ Name: Father's Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 8
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 5157
+ AegisName: Viking_Helm_
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 86
+ - Id: 5158
+ AegisName: Holy_Bonnet_
+ Name: Monk Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 35
+ Script: |
+ bonus bMdef,3;
+ - Id: 5159
+ AegisName: Golden_Gear_
+ Name: Golden Gear
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 9
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 30
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5160
+ AegisName: Magestic_Goat_
+ Name: Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 5161
+ AegisName: Sharp_Gear_
+ Name: Spiky Band
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 43
+ - Id: 5162
+ AegisName: Bone_Helm_
+ Name: Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 103
+ Script: |
+ bonus2 bSubEle,Ele_Dark,-15;
+ - Id: 5163
+ AegisName: Corsair_
+ Name: Corsair
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ - Id: 5164
+ AegisName: Tiara_
+ Name: Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 7
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 19
+ Script: |
+ bonus bInt,1;
+ - Id: 5165
+ AegisName: Crown_
+ Name: Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 7
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 45
+ Script: |
+ bonus bInt,1;
+ - Id: 5166
+ AegisName: Spinx_Helm_
+ Name: Sphinx Hat
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 137
+ Script: |
+ bonus bStr,2;
+ - Id: 5167
+ AegisName: Munak_Turban_
+ Name: Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 51
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 5168
+ AegisName: Bongun_Hat_
+ Name: Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 139
+ - Id: 5169
+ AegisName: Bride_Mask
+ Name: Bride Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 223
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bLuk,2;
+ bonus bCritical,5;
+ }
+ - Id: 5170
+ AegisName: Feather_Beret
+ Name: Feather Beret
+ Type: Armor
+ Buy: 30000
+ Weight: 600
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 224
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5171
+ AegisName: Valkyrie_Helm
+ Name: Valkyrie Helm
+ Type: Armor
+ Buy: 100000
+ Weight: 1000
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 225
+ Script: |
+ bonus bMdef,5;
+ - Id: 5172
+ AegisName: Beret
+ Name: Beret
+ Type: Armor
+ Buy: 30000
+ Weight: 700
+ Locations:
+ Head_Top: true
+ View: 226
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5173
+ AegisName: Satto_Hat
+ Name: Magistrate Hat
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 227
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bAgi,1;
+ bonus bHPrecovRate,3;
+ }
+ - Id: 5174
+ AegisName: Ayam
+ Name: Ayam
+ Type: Armor
+ Buy: 30000
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 228
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bInt,1;
+ bonus bSPrecovRate,3;
+ }
+ - Id: 5175
+ AegisName: Censor_Bar
+ Name: Censor Bar
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 229
+ Script: |
+ bonus2 bResEff,Eff_Curse,500;
+ bonus bMdef,1;
+ bonus bHit,-5;
+ - Id: 5176
+ AegisName: Hahoe_Mask
+ Name: Hahoe Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 230
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bLuk,1;
+ bonus bFlee2,2;
+ }
+ - Id: 5177
+ AegisName: Guardian_Lion_Mask
+ Name: Mythical Lion Mask
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 231
+ Script: |
+ if (BaseClass == Job_Taekwon) {
+ bonus bDex,2;
+ bonus bBaseAtk,2*getrefine();
+ bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT;
+ }
+ - Id: 5178
+ AegisName: Candle_
+ Name: Candle
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 113
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5179
+ AegisName: Gold_Tiara
+ Name: Golden Tiara
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 232
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 5180
+ AegisName: Phrygian_Cap_
+ Name: France Holiday Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bVit,1;
+ - Id: 5181
+ AegisName: Helm_Of_Darkness
+ Name: Helm of Darkness
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 233
+ Script: |
+ bonus bStr,2;
+ - Id: 5182
+ AegisName: Puppy_Hat
+ Name: Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 234
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);
+ - Id: 5183
+ AegisName: Bird_Nest_Hat
+ Name: Bird Nest Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 235
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus2 bResEff,Eff_Stun,1000;
+ - Id: 5184
+ AegisName: Captain_Hat
+ Name: Captain's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 236
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 5185
+ AegisName: Laurel_Wreath
+ Name: Laurel Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 237
+ Script: |
+ bonus bLuk,3;
+ bonus2 bResEff,Eff_Blind,500;
+ bonus2 bResEff,Eff_Curse,500;
+ - Id: 5186
+ AegisName: Geographer_Band
+ Name: Geographer Band
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 238
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;
+ - Id: 5187
+ AegisName: Twin_Ribbon
+ Name: Twin Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 239
+ Trade:
+ 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;
+ - Id: 5188
+ AegisName: Minstrel_Hat
+ Name: Wandering Minstrel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 240
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5189
+ AegisName: Fallen_Leaves
+ Name: Autumn Leaves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 241
+ Script: |
+ bonus bMaxHP,40;
+ bonus bMaxSP,40;
+ - Id: 5190
+ AegisName: Baseball_Cap_
+ Name: Independence Memorial Hat
+ Type: Armor
+ Buy: 20
+ Weight: 20
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5191
+ AegisName: Ribbon_Black
+ Name: Black Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 242
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,3;
+ - Id: 5192
+ AegisName: Ribbon_Yellow
+ Name: Yellow Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 243
+ Script: |
+ bonus bMdef,3;
+ - Id: 5193
+ AegisName: Ribbon_Green
+ Name: Green Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 244
+ Script: |
+ bonus bMdef,3;
+ - Id: 5194
+ AegisName: Ribbon_Pink
+ Name: Pink Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 245
+ Script: |
+ bonus bMdef,3;
+ - Id: 5195
+ AegisName: Ribbon_Red
+ Name: Red Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 246
+ Script: |
+ bonus bMdef,3;
+ - Id: 5196
+ AegisName: Ribbon_Orange
+ Name: Orange Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 247
+ Script: |
+ bonus bMdef,3;
+ - Id: 5197
+ AegisName: Ribbon_White
+ Name: White Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 248
+ Script: |
+ bonus bMdef,3;
+ - Id: 5198
+ AegisName: Drooping_Bunny
+ Name: Drooping Bunny
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5199
+ AegisName: Baseball_Cap_I
+ Name: Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5200
+ AegisName: Coppola
+ Name: Coppola
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 252
+ - Id: 5201
+ AegisName: Party_Hat_B
+ Name: Party Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 144
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5202
+ AegisName: Pumpkin_Hat_
+ Name: Fantastic Pumpkin-Head
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;
+ - Id: 5203
+ AegisName: Tongue_Mask
+ Name: Smiling Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 253
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 5204
+ AegisName: Event_Pierrot_Nose
+ Name: Rudolph's Nose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 49
+ Script: |
+ bonus2 bResEff,Eff_Blind,3000;
+ bonus2 bAddMonsterDropItem,12130,30;
+ - Id: 5205
+ AegisName: Wreath
+ Name: Emperor's Laurel Crown
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 261
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,3;
+ - Id: 5206
+ AegisName: Romantic_White_Flower
+ Name: Romantic White Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 259
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 5207
+ AegisName: Gold_Spirit_Chain
+ Name: Angel Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ View: 260
+ Script: |
+ bonus bLuk,1;
+ bonus2 bSubEle,Ele_Holy,5;
+ - Id: 5208
+ AegisName: Rideword_Hat
+ Name: Rideword Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 262
+ Script: |
+ bonus2 bHPDrainRate,50,8;
+ bonus2 bSPDrainRate,10,4;
+ bonus2 bHPLossRate,10,5000;
+ - Id: 5209
+ AegisName: Yellow_Baseball_Cap
+ Name: Love Dad Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 263
+ - Id: 5210
+ AegisName: Flying_Angel
+ Name: Flapping Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVariableCastrate,-3;
+ bonus bAspdRate,3;
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 5211
+ AegisName: Dress_Hat
+ Name: Dress Hat
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 265
+ Script: |
+ bonus bMdef,7;
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ bonus bHealPower,5;
+ if (getrefine()>=7) {
+ bonus2 bAddClass,Class_All,1;
+ bonus bMatkRate,1;
+ bonus bHealPower,1;
+ }
+ - Id: 5212
+ AegisName: Satellite_Hairband
+ Name: Satellite Hairband
+ Type: Armor
+ Weight: 1000
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 266
+ Script: |
+ bonus bMaxHP,50;
+ bonus bMaxSP,10;
+ skill "AL_RUWACH",1;
+ UnEquipScript: |
+ sc_end SC_RUWACH;
+ - Id: 5213
+ AegisName: Black_Bunny_Band
+ Name: Sheila Hairnet
+ Type: Armor
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 267
+ Script: |
+ bonus bAgi,2;
+ bonus bMdef,3;
+ bonus2 bAddMonsterDropItem,558,500;
+ bonus2 bAddItemHealRate,558,2000;
+ - Id: 5214
+ AegisName: Moonlight_Flower_Hat
+ Name: Moonlight Flower Hat
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 268
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,2;
+ bonus3 bAutoSpell,"AL_INCAGI",1,50;
+ - Id: 5215
+ AegisName: Angelic_Chain_
+ Name: Evolved Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,1;
+ bonus bInt,1;
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 5216
+ AegisName: Satanic_Chain_
+ Name: Evolved Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bFlee,3;
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 5217
+ AegisName: Magestic_Goat_TW
+ Name: Evolved Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 10
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,2;
+ - Id: 5218
+ AegisName: Bunny_Band_
+ Name: Evolved Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bInt,2;
+ - Id: 5219
+ AegisName: Drooping_Kitty_
+ Name: Evolved Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 142
+ Script: |
+ bonus bMdef,18;
+ bonus bFlee,3;
+ - Id: 5220
+ AegisName: Smoking_Pipe_
+ Name: Evolved Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 55
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5221
+ AegisName: Pair_Of_Red_Ribbon_
+ Name: Evolved Pair of Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ Script: |
+ bonus bFlee,5;
+ - Id: 5222
+ AegisName: Fish_On_Head_
+ Name: Evolved Blue Fish
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_Fish,10;
+ - Id: 5223
+ AegisName: Big_Golden_Bell_
+ Name: Evolved Big Golden Bell
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 35
+ Refineable: true
+ View: 175
+ Script: |
+ bonus bAgi,2;
+ - Id: 5224
+ AegisName: Orc_Hero_Helm_TW
+ Name: Evolved Orc Hero Helm
+ Type: Armor
+ Buy: 500000
+ Weight: 900
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 55
+ Refineable: true
+ View: 178
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bMaxHPrate,10;
+ - Id: 5225
+ AegisName: Marcher_Hat
+ Name: Parade Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 269
+ Trade:
+ 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;
+ - Id: 5226
+ AegisName: Mini_Propeller_
+ Name: Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 270
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,1;
+ bonus bFlee,10;
+ bonus bVariableCastrate,-getrefine();
+ - Id: 5227
+ AegisName: Red_Deviruchi_Cap
+ Name: Red Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 271
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5228
+ AegisName: White_Deviruchi_Cap
+ Name: Gray Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 272
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5229
+ AegisName: Gray_Deviruchi_Cap
+ Name: Brown Deviruchi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 273
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5230
+ AegisName: White_Drooping_Kitty
+ Name: Gray Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 274
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5231
+ AegisName: Gray_Drooping_Kitty
+ Name: Brown Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 275
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5232
+ AegisName: Pink_Drooping_Kitty
+ Name: Pink Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 276
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5233
+ AegisName: Blue_Drooping_Kitty
+ Name: Blue Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 277
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5234
+ AegisName: Yellow_Drooping_Kitty
+ Name: Yellow Drooping Cat
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 278
+ Script: |
+ bonus2 bResEff,Eff_Curse,3000;
+ bonus bMdef,15;
+ - Id: 5235
+ AegisName: Gray_Fur_Hat
+ Name: Brown Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 279
+ Script: |
+ bonus bLuk,1;
+ - Id: 5236
+ AegisName: Blue_Fur_Hat
+ Name: Blue Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 280
+ Script: |
+ bonus bLuk,1;
+ - Id: 5237
+ AegisName: Pink_Fur_Hat
+ Name: Pink Beanie
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 281
+ Script: |
+ bonus bLuk,1;
+ - Id: 5238
+ AegisName: Red_Wizardry_Hat
+ Name: Red Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 282
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5239
+ AegisName: White_Wizardry_Hat
+ Name: Gray Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 283
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5240
+ AegisName: Gray_Wizardry_Hat
+ Name: Brown Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 284
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5241
+ AegisName: Blue_Wizardry_Hat
+ Name: Blue Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 285
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5242
+ AegisName: Yellow_Wizardry_Hat
+ Name: Yellow Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 286
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5243
+ AegisName: Chullos
+ Name: Shafka
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 287
+ Script: |
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 5244
+ AegisName: Elven_Blindfold
+ Name: Elven Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 288
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5245
+ AegisName: Elven_Sunglasses
+ Name: Elven Sunglasses
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 289
+ Script: |
+ bonus2 bResEff,Eff_Blind,500;
+ - Id: 5246
+ AegisName: Angelic_Helm
+ Name: Angelic Helm
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 7
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 290
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5247
+ AegisName: Satanic_Helm
+ Name: Satanic Helm
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 291
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,5;
+ - Id: 5248
+ AegisName: Robotic_Blindfold
+ Name: Robotic Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 292
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5249
+ AegisName: Human_Blindfold
+ Name: Human Blindfold
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 293
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5250
+ AegisName: Robotic_Ears
+ Name: Robotic Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 294
+ - Id: 5251
+ AegisName: Round_Ears
+ Name: Round Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 295
+ - Id: 5252
+ AegisName: Drooping_Nine_Tail
+ Name: Drooping Ninetail
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ 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;
+ - Id: 5253
+ AegisName: Lif_Doll_Hat
+ Name: Lif Doll Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 297
+ Script: |
+ bonus bInt,1;
+ .@r = getrefine();
+ bonus bMdef,.@r;
+ bonus bDef,.@r*-1;
+ - Id: 5254
+ AegisName: Deviling_Hat
+ Name: Deviling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 298
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,2;
+ bonus bMatk,2;
+ if (getrefine()>=7)
+ bonus2 bExpAddRace,RC_All,1;
+ - Id: 5255
+ AegisName: Triple_Poring_Hat
+ Name: Triple Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 299
+ Script: |
+ bonus bLuk,3;
+ bonus3 bAutoSpell,"BS_GREED",1,50;
+ - Id: 5256
+ AegisName: Valkyrie_Feather_Band
+ Name: Valkyrie Feather Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 300
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20;
+ - Id: 5257
+ AegisName: Soulless_Wing
+ Name: Soul Ring
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 301
+ Script: |
+ bonus bMdef,2;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20;
+ - Id: 5258
+ AegisName: Afro_Wig
+ Name: Afro Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 302
+ Script: |
+ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300;
+ bonus2 bSubEle,Ele_Neutral,1;
+ - Id: 5259
+ AegisName: Elephant_Hat_
+ Name: Elephant Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ Script: |
+ bonus bVit,1;
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,10;
+ skill "AL_HOLYWATER",1;
+ - Id: 5260
+ AegisName: Cookie_Hat
+ Name: Cookie Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 217
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee2,5;
+ bonus bCritAtkRate,5;
+ - Id: 5261
+ AegisName: Silver_Tiara_
+ Name: Silver Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 218
+ Script: |
+ bonus bInt,2;
+ if (BaseClass == Job_Mage)
+ bonus bMatkRate,(JobLevel/20);
+ if (BaseClass == Job_Acolyte)
+ bonus bUseSPrate,-(JobLevel/10);
+ if (BaseClass == Job_Archer)
+ bonus bMaxSP,(JobLevel*2);
+ - Id: 5262
+ AegisName: Gold_Tiara_
+ Name: Golden Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 232
+ Script: |
+ bonus bStr,2;
+ bonus bUnbreakableHelm;
+ if ((readparam(bDex)<56) && (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief))
+ bonus bDex,JobLevel/7;
+ - Id: 5263
+ AegisName: Ati_Atihan_Hat
+ Name: Pagdayaw
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 303
+ Script: |
+ bonus2 bSubEle,Ele_Water,1;
+ bonus2 bSubEle,Ele_Fire,1;
+ bonus2 bSubEle,Ele_Wind,1;
+ bonus2 bAddEff,Eff_Curse,300;
+ - Id: 5264
+ AegisName: Aussie_Flag_Hat
+ Name: Australian Flag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 304
+ Script: |
+ bonus bAllStats,2;
+ EquipScript: |
+ specialeffect2 EF_GHOST;
+ specialeffect2 EF_BAT;
+ specialeffect2 EF_BAT2;
+ - Id: 5265
+ AegisName: Apple_Of_Archer_C
+ Name: Apple of Archer
+ Type: Armor
+ Buy: 1
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 72
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ - Id: 5266
+ AegisName: Bunny_Band_C
+ Name: Bunny Band
+ Type: Armor
+ Buy: 1
+ Defense: 13
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 15
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5267
+ AegisName: Sahkkat_C
+ Name: Sakkat
+ Type: Armor
+ Buy: 1
+ Defense: 14
+ Locations:
+ Head_Top: true
+ View: 67
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,3;
+ - Id: 5268
+ AegisName: Lord_Circlet_C
+ Name: Grand Circlet
+ Type: Armor
+ Buy: 1
+ Defense: 14
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 93
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bLuk,3;
+ bonus bMdef,4;
+ - Id: 5269
+ AegisName: Flying_Angel_
+ Name: Flapping Angel Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-3;
+ - Id: 5270
+ AegisName: Fallen_Leaves_
+ Name: Autumn Leaves
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 241
+ Script: |
+ bonus bFlee2,5;
+ - Id: 5271
+ AegisName: Chinese_Crown_
+ Name: Phoenix Crown
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 221
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubClass,Class_Boss,getrefine();
+ - Id: 5272
+ AegisName: Tongue_Mask_
+ Name: Tongue Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 253
+ Script: |
+ bonus3 bAutoSpell,"SM_PROVOKE",5,50;
+ - Id: 5273
+ AegisName: Happy_Wig
+ Name: Happy Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 305
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5274
+ AegisName: Shiny_Wig
+ Name: Shiny Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 306
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5275
+ AegisName: Marvelous_Wig
+ Name: Marvelous Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 307
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5276
+ AegisName: Fantastic_Wig
+ Name: Fantastic Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 308
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bDef,4;
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5277
+ AegisName: Yellow_Bandana
+ Name: Yellow Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 309
+ Script: |
+ bonus bLuk,2;
+ bonus bVit,2;
+ bonus bLongAtkDef,10;
+ - Id: 5278
+ AegisName: Yellow_Ribbon
+ Name: Yellow Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 310
+ Script: |
+ bonus bLuk,2;
+ bonus bVit,2;
+ bonus bLongAtkDef,10;
+ - Id: 5279
+ AegisName: Drooping_Kitty_C
+ Name: Refined Drooping Cat
+ Type: Armor
+ Buy: 2
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 142
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,3000;
+ - Id: 5280
+ AegisName: Magestic_Goat_C
+ Name: Baphomet Horns
+ Type: Armor
+ Buy: 2
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 41
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ - Id: 5281
+ AegisName: Deviruchi_Cap_C
+ Name: Refined Deviruchi Hat
+ Type: Armor
+ Buy: 2
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 123
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5282
+ AegisName: euRO_Baseball_Cap
+ Name: Europe Baseball Cap
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 216
+ - Id: 5283
+ AegisName: Chick_Hat
+ Name: Chick Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 311
+ Trade:
+ 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;
+ bonus2 bSubRace,RC_Brute,3;
+ bonus2 bSubRace,RC_Player_Doram,3;
+ - Id: 5284
+ AegisName: Water_Lily_Crown
+ Name: Water Lily Crown
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 312
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMdef,3;
+ bonus bHPrecovRate,5;
+ bonus bSPrecovRate,3;
+ - Id: 5285
+ AegisName: Vane_Hairpin
+ Name: Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 313
+ Script: |
+ bonus bAgi,2;
+ - Id: 5286
+ AegisName: Pecopeco_Hairband
+ Name: Pecopeco Hairband
+ Type: Armor
+ Buy: 20
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 314
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-5;
+ - Id: 5287
+ AegisName: Vacation_Hat
+ Name: Vacation Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 315
+ Script: |
+ bonus bVit,1;
+ - Id: 5288
+ AegisName: Red_Glasses
+ Name: Red Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 316
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ - Id: 5289
+ AegisName: Vanilmirth_Hat
+ Name: Vanilmirth Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 317
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus3 bAutoSpell,"MG_FIREBOLT",1,50;
+ bonus3 bAutoSpell,"MG_COLDBOLT",1,50;
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50;
+ bonus bMdef,5;
+ - Id: 5290
+ AegisName: Drooping_Bunny_
+ Name: Drooping Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5291
+ AegisName: Kettle_Hat
+ Name: Kettle Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 318
+ Script: |
+ bonus4 bAutoSpell,"SA_DELUGE",2,30,0;
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,30;
+ - Id: 5292
+ AegisName: Dragon_Skull
+ Name: Dragon Skull
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 319
+ Script: |
+ bonus2 bSubRace,RC_Dragon,5;
+ - Id: 5293
+ AegisName: Ramen_Hat
+ Name: Ramen Hat
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 320
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;
+ - Id: 5294
+ AegisName: Whisper_Mask
+ Name: Whisper Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 321
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,3;
+ bonus2 bSubEle,Ele_Ghost,10;
+ - Id: 5295
+ AegisName: Golden_Bandana
+ Name: Golden Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 138
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,4;
+ - Id: 5296
+ AegisName: Drooping_Nine_Tail_
+ Name: Drooping Nine Tail
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 296
+ Script: |
+ bonus bAgi,1;
+ bonus bCritical,1;
+ - Id: 5297
+ AegisName: Soulless_Wing_
+ Name: Soul Wing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 301
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bSPRegenRate,2,10000;
+ - Id: 5298
+ AegisName: Marvelous_Wig_
+ Name: Dokebi's Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 307
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubEle,Ele_Fire,-5;
+ bonus2 bSubEle,Ele_Water,-5;
+ - Id: 5299
+ AegisName: Ati_Atihan_Hat_
+ Name: Pagdayaw
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 303
+ Script: |
+ bonus3 bAutoSpell,"DC_SCREAM",1,50;
+ - Id: 5300
+ AegisName: Bullock_Helm
+ Name: Bullock Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 322
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 5301
+ AegisName: Russian_Ribbon
+ Name: Victory Hairband
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 323
+ - Id: 5302
+ AegisName: Lotus_Flower_Hat
+ Name: Flower Lily
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 324
+ - Id: 5303
+ AegisName: Flower_Coronet
+ Name: Flower Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 325
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxSP,50;
+ - Id: 5304
+ AegisName: Cap_Of_Blindness
+ Name: Cap Of Blindness
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 326
+ Script: |
+ bonus4 bAutoSpellWhenHit,"NPC_EVILLAND",5,5,1;
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5305
+ AegisName: Pirate_Dagger
+ Name: Pirate Dagger
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 327
+ Script: |
+ bonus bBaseAtk,5;
+ - Id: 5306
+ AegisName: Freyja_Crown
+ Name: Freya's Crown
+ Type: Armor
+ Weight: 500
+ Defense: 20
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 328
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5307
+ AegisName: Carmen_Miranda's_Hat
+ Name: Carmen Miranda's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 329
+ Script: |
+ bonus bMdef,3;
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5);
+ if (.@r>=7) {
+ bonus bBaseAtk,15;
+ bonus bMatk,15;
+ }
+ bonus3 bAddMonsterDropItem,512,RC_All,10;
+ bonus3 bAddMonsterDropItem,513,RC_All,10;
+ bonus3 bAddMonsterDropItem,514,RC_All,10;
+ bonus3 bAddMonsterDropItem,578,RC_All,10;
+ - Id: 5308
+ AegisName: Brazilian_Flag_Hat
+ Name: Brazil National Flag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 330
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bSpeedAddRate,25;
+ - Id: 5309
+ AegisName: Mahican
+ Name: Wool Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 331
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "RG_GRAFFITI",1;
+ - Id: 5310
+ AegisName: Bulb_Hairband
+ Name: Shining Electric Bulb Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 332
+ Script: |
+ bonus2 bSubEle,Ele_Dark,10;
+ skill "MG_SIGHT",1;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 5311
+ AegisName: Large_Hibiscus
+ Name: Large Hisbiscus
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 333
+ Script: |
+ bonus bMdef,15;
+ - Id: 5312
+ AegisName: Ayothaya_Hat
+ Name: Ayothaya King's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 334
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5313
+ AegisName: Diadem
+ Name: Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 335
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ bonus bVariableCastrate,-3;
+ bonus bMatkRate,3;
+ bonus bMaxSPrate,3;
+ bonus bHealPower,3;
+ - Id: 5314
+ AegisName: Hockey_Mask
+ Name: Hockey Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 336
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5315
+ AegisName: Observer
+ Name: Observer
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 35
+ View: 337
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "WZ_ESTIMATION",1;
+ /*Gold PC Room: bonus bAllStats,1;*/
+ - Id: 5316
+ AegisName: Umbrella_Hat
+ Name: Umbrella Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 338
+ Script: |
+ bonus2 bSubEle,Ele_Water,3;
+ - Id: 5317
+ AegisName: Fisherman_Hat
+ Name: Fisherman's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 339
+ Script: |
+ bonus3 bAutoSpell,"WZ_WATERBALL",3,50;
+ - Id: 5318
+ AegisName: Poring_Party_Hat
+ Name: Poring Party Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 340
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee,6;
+ - Id: 5319
+ AegisName: Hellomother_Hat
+ Name: Hello Mother Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 341
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bHPrecovRate,150;
+ bonus bMaxHP,80+(80*getrefine());
+ - Id: 5320
+ AegisName: Champion_Wreath
+ Name: Champion Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 261
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;
+ - Id: 5321
+ AegisName: Indonesian_Bandana
+ Name: Bandana Merah Putih
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 342
+ Script: |
+ bonus2 bAddMonsterDropItem,518,300;
+ - Id: 5322
+ AegisName: Scarf
+ Name: Kerchief
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 24
+ Refineable: true
+ View: 343
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,2;
+ bonus bFlee,5;
+ - Id: 5323
+ AegisName: Misstrance_Crown
+ Name: Misstrance Crown
+ Type: Armor
+ Buy: 20
+ Defense: 14
+ Locations:
+ Head_Top: true
+ View: 165
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ - Id: 5324
+ AegisName: Little_Angel_Doll
+ Name: Little Angel Doll
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 344
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,3;
+ bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;
+ - Id: 5325
+ AegisName: Robo_Eye
+ Name: Robo Eye
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 345
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ bonus bDex,1;
+ - Id: 5326
+ AegisName: Masquerade_C
+ Name: Masquerade C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 78
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,7;
+ bonus2 bAddRace,RC_Player_Human,7;
+ - Id: 5327
+ AegisName: Orc_Hero_Helm_C
+ Name: Refined Helmet of Orc Hero
+ Type: Armor
+ Buy: 1
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 178
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,5;
+ bonus bVit,3;
+ - Id: 5328
+ AegisName: Evil_Wing_Ears_C
+ Name: Evil Wing Ears C
+ Type: Armor
+ Buy: 1
+ Defense: 4
+ Locations:
+ Head_Mid: true
+ View: 152
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ - Id: 5329
+ AegisName: Dark_Blindfold_C
+ Name: Dark Blindfold C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 187
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,500;
+ - Id: 5330
+ AegisName: kRO_Drooping_Kitty_C
+ Name: kRO Drooping Kitty C
+ Type: Armor
+ Buy: 1
+ Defense: 9
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 142
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,15;
+ bonus2 bResEff,Eff_Curse,4000;
+ bonus2 bResEff,Eff_Stun,1000;
+ - Id: 5331
+ AegisName: Corsair_C
+ Name: Corsair C
+ Type: Armor
+ Buy: 1
+ Defense: 14
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 105
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,3;
+ bonus bInt,3;
+ - Id: 5332
+ AegisName: Loki_Mask
+ Name: Loki Mask
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 346
+ Script: |
+ bonus bFlee2,3;
+ - Id: 5333
+ AegisName: Radio_Antenna
+ Name: Radio Antenna
+ Type: Armor
+ Weight: 1500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 347
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ skill "MG_LIGHTNINGBOLT",1;
+ bonus4 bAutoSpell,"MG_THUNDERSTORM",5,30,1;
+ - Id: 5334
+ AegisName: Angeling_Wanna_Fly
+ Name: Flapping Angeling
+ Type: Armor
+ Weight: 700
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 348
+ Script: |
+ bonus bLuk,2;
+ bonus bDex,1;
+ - Id: 5335
+ AegisName: Jumping_Poring
+ Name: Jumping Poring
+ Type: Armor
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 349
+ Script: |
+ bonus bLuk,1;
+ bonus bUnbreakableHelm;
+ - Id: 5336
+ AegisName: Guildsman_Recruiter
+ Name: Guildsman Recruiter Hat
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 350
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5337
+ AegisName: Party_Recruiter_Hat
+ Name: Party Recruiter Hat
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 351
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5338
+ AegisName: Bf_Recruiter_Hat
+ Name: BF Recruiter Hat
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 352
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5339
+ AegisName: Friend_Recruiter_Hat
+ Name: Friend Recruiter Hat
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 353
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5340
+ AegisName: Deprotai_Doll_Hat
+ Name: Defolty Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 354
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0;
+ - Id: 5341
+ AegisName: Claris_Doll_Hat
+ Name: Glaris Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 355
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bMagicHPGainValue,50;
+ - Id: 5342
+ AegisName: Sorin_Doll_Hat
+ Name: Sorin Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 356
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ autobonus "{ bonus bBaseAtk,50; }",20,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 5343
+ AegisName: Tayelin_Doll_Hat
+ Name: Telling Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 357
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddItemHealRate,504,10;
+ bonus2 bAddItemHealRate,547,10;
+ - Id: 5344
+ AegisName: Binit_Doll_Hat
+ Name: Bennit Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 358
+ Trade:
+ 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,BF_NORMAL,"{ specialeffect2 EF_HASTEUP; }";
+ - Id: 5345
+ AegisName: Debril_Doll_Hat
+ Name: W Doll Hat
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 359
+ Trade:
+ 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;
+ - Id: 5346
+ AegisName: Gf_Recruiter_Hat
+ Name: GF Recruiter Hat
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 360
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5347
+ AegisName: Ph.D_Hat_
+ Name: Ph.D Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ - Id: 5348
+ AegisName: Big_Sis'_Ribbon_
+ Name: Big Ribbon
+ Type: Armor
+ Buy: 15000
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 28
+ Script: |
+ bonus bMdef,3;
+ - Id: 5349
+ AegisName: Boy's_Cap_
+ Name: Boy's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 102
+ - Id: 5350
+ AegisName: Pirate_Bandana_
+ Name: Pirate Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 74
+ Script: |
+ bonus bStr,1;
+ - Id: 5351
+ AegisName: Sunflower_
+ Name: Sunflower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 37
+ Script: |
+ bonus2 bSubRace,RC_Insect,10;
+ - Id: 5352
+ AegisName: Poporing_Cap
+ Name: Poporing Cap
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 38
+ Refineable: true
+ View: 361
+ - Id: 5353
+ AegisName: Helm_Of_Sun_
+ Name: Hat of the Sun God
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 138
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ - Id: 5354
+ AegisName: Muslim_Hat_M
+ Name: Muslim Hat M
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 362
+ Script: |
+ bonus bVariableCastrate,-5;
+ - Id: 5355
+ AegisName: Muslim_Hat_F
+ Name: Selendang
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 363
+ Script: |
+ bonus bVariableCastrate,-5;
+ - Id: 5356
+ AegisName: Pumpkin_Hat_H
+ Name: Festival Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ Script: |
+ bonus2 bAddRace,RC_Demon,5;
+ bonus2 bMagicAddRace,RC_Demon,5;
+ - Id: 5357
+ AegisName: Wings_Of_Victory
+ Name: Wings Of Victory
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 10
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ View: 365
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,10;
+ bonus bUnbreakableHelm;
+ - Id: 5358
+ AegisName: Pecopeco_Wing_Ears
+ Name: Peco Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 366
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,2;
+ bonus bUnbreakableHelm;
+ - Id: 5359
+ AegisName: J_Captain_Hat
+ Name: Ship Captain Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 367
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,1;
+ bonus bMaxHP,100;
+ bonus bLongAtkRate,7;
+ - Id: 5360
+ AegisName: Whikebain_Ears
+ Name: Hyuke's Black Cat Ears
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 368
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bFlee,10;
+ bonus bCritAtkRate,10;
+ autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,25; bonus2 bIgnoreMdefClassRate,Class_Boss,25; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 5361
+ AegisName: Gang_Scarf
+ Name: Gangster Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bBaseAtk,5;
+ if (BaseJob == Job_Rogue)
+ skill "RG_GANGSTER",1;
+ - Id: 5362
+ AegisName: Ninja_Scroll
+ Name: Ninja Scroll
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Low: true
+ View: 370
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 5363
+ AegisName: Helm_Of_Abyss
+ Name: Helm Of Abyss
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 9
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 371
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubClass,Class_Normal,-5;
+ bonus2 bSubClass,Class_Boss,10;
+ - Id: 5364
+ AegisName: Dark_Snake_Lord_Hat
+ Name: Evil Snake Lord Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 150
+ Refineable: true
+ View: 372
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bAgi,2;
+ bonus2 bAddMonsterDropItem,12582,30;
+ - Id: 5365
+ AegisName: Fried_Egg
+ Name: Magnolia Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 373
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus3 bAutoSpellWhenHit,"BS_GREED",1,10;
+ - Id: 5366
+ AegisName: Hat_0f_King
+ Name: Love Dad Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 53
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 374
+ Script: |
+ bonus bAllStats,5;
+ - Id: 5367
+ AegisName: Hyegun_Hat
+ Name: Hyegun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 375
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,10;
+ - Id: 5368
+ AegisName: White_Wing
+ Name: White Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 38
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12280,300;
+ - Id: 5369
+ AegisName: Dark_Wing
+ Name: Dark Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 39
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddMonsterDropItem,12279,300;
+ - Id: 5370
+ AegisName: Orchid_Hairband
+ Name: Orchid Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 376
+ Script: |
+ bonus bInt,1;
+ - Id: 5371
+ AegisName: Hat_Of_Judge
+ Name: Judge Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 377
+ Script: |
+ bonus bLuk,1;
+ bonus bMaxSP,30;
+ - Id: 5372
+ AegisName: Drooping_White_Kitty
+ Name: Koneko Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 378
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ bonus bDelayrate,-3;
+ bonus bMatkRate,3;
+ bonus bMaxSPrate,3;
+ bonus bMdef,3;
+ - Id: 5373
+ AegisName: Darkness_Helm
+ Name: Dark Randgris Helm
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 379
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,3;
+ bonus bMdef,1;
+ - Id: 5374
+ AegisName: L_Magestic_Goat
+ Name: Gigantic Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 10
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 380
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,12;
+ bonus2 bAddRace,RC_Player_Human,12;
+ bonus bBaseAtk,(JobLevel*2)/7;
+ - Id: 5375
+ AegisName: L_Orc_Hero_Helm
+ Name: Orc Hero Headdress
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 381
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus3 bAutoSpell,"BS_WEAPONPERFECT",3,10;
+ - Id: 5376
+ AegisName: Satanic_Chain_P
+ Name: Flying Evil Wing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 382
+ Script: |
+ bonus bMaxSP,120;
+ bonus2 bAddEff2,Eff_Curse,10;
+ - Id: 5377
+ AegisName: Antique_Pipe
+ Name: Gentleman's Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 383
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 5378
+ AegisName: Rabbit_Ear_Hat
+ Name: Bunny Top Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 384
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,3;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,50;
+ - Id: 5379
+ AegisName: Balloon_Hat
+ Name: Tam
+ Type: Armor
+ Weight: 800
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 385
+ Script: |
+ bonus bMdef,2;
+ bonus bMatkRate,2+(getrefine()/2);
+ - Id: 5380
+ AegisName: Fish_Head_Hat
+ Name: Fish Head Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 386
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,50;
+ - Id: 5381
+ AegisName: Santa_Poring_Hat
+ Name: Santa Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 387
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,2;
+ bonus2 bAddEle,Ele_Dark,3;
+ bonus2 bSubEle,Ele_Dark,3;
+ - Id: 5382
+ AegisName: Bell_Ribbon
+ Name: Bell Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 388
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ skill "AL_ANGELUS",1;
+ UnEquipScript: |
+ sc_end SC_ANGELUS;
+ - Id: 5383
+ AegisName: Hunting_Cap
+ Name: Hunter's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 389
+ Script: |
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bMagicAddRace,RC_Brute,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ - Id: 5384
+ AegisName: Santa_Hat_1
+ Name: Twin Pompom By JB
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 390
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bLuk,3;
+ - Id: 5385
+ AegisName: Yoyo_Hat
+ Name: Yoyo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 391
+ Script: |
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 5386
+ AegisName: Ayam_
+ Name: Ayam
+ Type: Armor
+ Weight: 70
+ Defense: 7
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 228
+ Script: |
+ bonus bMdef,7;
+ bonus bFlee,7;
+ bonus2 bAddMonsterDropItem,12198,200;
+ - Id: 5387
+ AegisName: Neko_Mimi_Kafra
+ Name: Neko Mimi Kafra
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 392
+ Script: |
+ bonus bMdef,5;
+ bonus2 bAddEffWhenHit,Eff_Silence,1000;
+ bonus2 bAddEffWhenHit,Eff_Poison,1000;
+ bonus2 bAddEffWhenHit,Eff_Curse,1000;
+ bonus2 bAddEffWhenHit,Eff_Blind,1000;
+ bonus2 bAddEffWhenHit,Eff_Stone,1000;
+ bonus2 bAddEffWhenHit,Eff_Freeze,1000;
+ bonus2 bAddEffWhenHit,Eff_Stun,1000;
+ bonus2 bAddEffWhenHit,Eff_Sleep,1000;
+ - Id: 5388
+ AegisName: Snake_Head
+ Name: Snake Head Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 393
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ - Id: 5389
+ AegisName: Angel_Spirit
+ Name: Angel Spirit
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ View: 394
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bHit,15;
+ - Id: 5390
+ AegisName: Santa_Hat_2
+ Name: Frozen Twin Pompom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 395
+ Script: |
+ bonus2 bResEff,Eff_Freeze,3000;
+ - Id: 5391
+ AegisName: Toast_C
+ Name: Toast
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Low: true
+ View: 188
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bAddMonsterDropItem,617,10;
+ - Id: 5392
+ AegisName: Louyang_Cap
+ Name: Luoyang NewYear Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 396
+ Script: |
+ bonus bLuk,2;
+ - Id: 5393
+ AegisName: Valentine_Hat
+ Name: Love Valentine's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 397
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxSPrate,7;
+ bonus bMaxHPrate,7;
+ - Id: 5394
+ AegisName: Bubblegum_Lower
+ Name: Bubblegum
+ Type: Armor
+ Locations:
+ Head_Low: true
+ View: 572
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,100;
+ - Id: 5395
+ AegisName: Tiraya_Bonnet
+ Name: Striped Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 398
+ Script: |
+ bonus bMaxHP,100+(getrefine()*20);
+ bonus bLuk,3;
+ - Id: 5396
+ AegisName: Jasper_Crest
+ Name: Jasper Crest
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 399
+ Trade:
+ 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;
+ }
+ - Id: 5397
+ AegisName: Scuba_Mask
+ Name: Scuba Gear
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 400
+ Script: |
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bExpAddRace,RC_Fish,10;
+ bonus bUnbreakableHelm;
+ - Id: 5398
+ AegisName: Bone_Head
+ Name: Bone Head
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 85
+ Refineable: true
+ View: 401
+ Script: |
+ bonus bStr,2;
+ bonus bMdef,5;
+ bonus2 bResEff,Eff_Stun,500;
+ bonus2 bResEff,Eff_Bleeding,500;
+ - Id: 5399
+ AegisName: Mandragora_Cap
+ Name: Mandragora Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 85
+ View: 402
+ Script: |
+ bonus bVit,3;
+ bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;
+ - Id: 5400
+ AegisName: Fox_Hat
+ Name: Fox Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 403
+ Script: |
+ bonus bLuk,1;
+ - Id: 5401
+ AegisName: Black_Glasses
+ Name: Black Frame Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 404
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ bonus bUnbreakableHelm;
+ - Id: 5402
+ AegisName: Mischievous_Fairy
+ Name: Mischievous Fairy
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 405
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bFlee2,3;
+ - Id: 5403
+ AegisName: Fish_In_Mouth
+ Name: Fish In Mouth
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 406
+ Script: |
+ bonus2 bAddMonsterDropItem,579,500;
+ bonus2 bAddItemHealRate,579,25;
+ - Id: 5404
+ AegisName: Blue_Ribbon
+ Name: Blue Ribbon
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 407
+ Script: |
+ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;
+ - Id: 5405
+ AegisName: Filir_Hat
+ Name: Filir Hat
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ View: 408
+ Script: |
+ bonus bShortWeaponDamageReturn,1;
+ - Id: 5406
+ AegisName: Academy_Freshman_Hat
+ Name: Academy Freshman Hat
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 409
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,2;
+ bonus bVit,1;
+ bonus bDelayrate,-5;
+ - Id: 5407
+ AegisName: Academy_Graduating_Cap
+ Name: Academy Completion Hat
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 410
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,30;
+ - Id: 5408
+ AegisName: Old_Bandanna
+ Name: Old Bandana
+ Type: Armor
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 6
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ bonus bVariableCastrate,-10;
+ - Id: 5409
+ AegisName: New_Cowboy_Hat
+ Name: Purple Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 411
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ bonus bVit,2;
+ bonus bMaxSP,50;
+ - Id: 5410
+ AegisName: Bread_Bag2
+ Name: Brown Paperbag Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 412
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bResEff,Eff_Stun,400;
+ bonus2 bSubRace,RC_DemiHuman,4;
+ bonus2 bSubRace,RC_Player_Human,4;
+ - Id: 5411
+ AegisName: White_Snake_Hat
+ Name: White Snake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 413
+ Script: |
+ bonus bDex,2;
+ - Id: 5412
+ AegisName: Sweet_Candy
+ Name: Sweet Candy
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 414
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5413
+ AegisName: Popcorn_Hat
+ Name: Pop Corn Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 415
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,10;
+ - Id: 5414
+ AegisName: Campfire_Hat
+ Name: Camp Fire Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 416
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,500,1;
+ - Id: 5415
+ AegisName: Poring_Cake_Cap
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 417
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ bonus bFlee2,5;
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-5;
+ bonus bDelayrate,-5;
+ - Id: 5416
+ AegisName: Beer_Cap
+ Name: Beer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 18
+ Refineable: true
+ View: 418
+ Script: |
+ bonus bFlee2,5;
+ skill "SM_RECOVERY",3;
+ skill "MG_SRECOVERY",3;
+ - Id: 5417
+ AegisName: Crown_Parrot
+ Name: Crown Parrots
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 419
+ Script: |
+ bonus bInt,1;
+ bonus2 bResEff,Eff_Silence,10000;
+ bonus3 bAutoSpell,"DC_SCREAM",1,50;
+ - Id: 5418
+ AegisName: Soldier_Hat
+ Name: Legionnaire Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 420
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddClass,Class_All,3;
+ bonus bUseSPrate,10;
+ - Id: 5419
+ AegisName: Evolved_Leaf
+ Name: Leaves Of Grass
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 57
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Plant,5;
+ - Id: 5420
+ AegisName: Mask_Of_Ifrit
+ Name: Mask Of Ifrit
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 12
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 421
+ Trade:
+ 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;
+ - Id: 5421
+ AegisName: Ifrit's_Ear
+ Name: Ears Of Ifrit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 422
+ Trade:
+ 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;
+ - Id: 5422
+ AegisName: Linguistic_Book_Cap
+ Name: Linguistic Book Hat
+ Type: Armor
+ Buy: 20
+ Weight: 70
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 423
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 5423
+ AegisName: Lovecap_China
+ Name: I Love China
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 424
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5424
+ AegisName: Fanta_Orange_Can
+ Name: Fanta Orange Can Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 425
+ - Id: 5425
+ AegisName: Fanta_Grape_Can
+ Name: Fanta Grape Can Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 426
+ - Id: 5426
+ AegisName: Karada_Meguri_Tea_Hat
+ Name: Karada Meguricha Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 427
+ Script: |
+ bonus bLuk,1;
+ - Id: 5427
+ AegisName: Royal_Milk_Tea_Hat
+ Name: Black Tea Kochakaden Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 428
+ Script: |
+ bonus bAgi,1;
+ - Id: 5428
+ AegisName: Bread_Bag1
+ Name: RWC Anniversary Bread Envelope
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 429
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,12;
+ bonus2 bSubRace,RC_Player_Human,12;
+ - Id: 5429
+ AegisName: Bogy_Cap
+ Name: Bogy Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 430
+ Script: |
+ bonus bHPrecovRate,5;
+ bonus bSPrecovRate,5;
+ - Id: 5430
+ AegisName: Sacred_Torch_Coronet
+ Name: Torch Cap
+ Type: Armor
+ Buy: 20
+ Defense: 6
+ Locations:
+ Head_Top: true
+ View: 431
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,20;
+ skill "MG_FIREBOLT",5;
+ - Id: 5431
+ AegisName: Chicken_Hat
+ Name: Chicken Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 432
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus3 bAutoSpell,"MC_LOUD",1,30;
+ bonus bAspdRate,5;
+ - Id: 5432
+ AegisName: Brazil_Baseball_Cap
+ Name: bRO 4th Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 433
+ Script: |
+ if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24)
+ bonus bAllStats,4;
+ - Id: 5433
+ AegisName: Golden_Wreath
+ Name: Golden Laurel
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 434
+ - Id: 5434
+ AegisName: Cola_Can
+ Name: Cola Can
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 435
+ - Id: 5435
+ AegisName: Coke_Hat
+ Name: Red Minstrel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 436
+ Trade:
+ 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;
+ }
+ - Id: 5436
+ AegisName: Bride's_Corolla
+ Name: Bride's Corolla
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 437
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,2;
+ - Id: 5437
+ AegisName: Flower_Of_Fairy
+ Name: Fairy Flower
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 438
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_Insect,5;
+ - Id: 5438
+ AegisName: Fillet_Green
+ Name: Cute Green Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 439
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5439
+ AegisName: Fillet_Red
+ Name: Cute Red Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 440
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5440
+ AegisName: Fillet_Blue
+ Name: Cute Blue Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 441
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5441
+ AegisName: Fillet_White
+ Name: Cute White Ribbon
+ Type: Armor
+ Buy: 500
+ Weight: 100
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 442
+ Script: |
+ bonus bMaxSP,20;
+ - Id: 5442
+ AegisName: Necktie
+ Name: Necktie
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 443
+ Script: |
+ bonus bVit,1;
+ bonus bHit,-5;
+ bonus bUseSPrate,5;
+ - Id: 5443
+ AegisName: Status_Of_Baby_Angel
+ Name: Statue Of Baby Angel
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 444
+ Script: |
+ bonus bMdef,2;
+ bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;
+ - Id: 5444
+ AegisName: Hair_Brush
+ Name: Hair Brush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 445
+ Script: |
+ bonus bCritical,6;
+ - Id: 5445
+ AegisName: Candy_Cane_In_The_Mouth
+ Name: Candy Cane In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 446
+ Script: |
+ bonus bMaxSP,5;
+ - Id: 5446
+ AegisName: Cat_Foot_Hairpin
+ Name: Catfoot Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 447
+ Script: |
+ bonus bFlee,5;
+ bonus bFlee2,3;
+ - Id: 5447
+ AegisName: Frog_Cap
+ Name: Frog Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 448
+ Script: |
+ bonus bMdef,1;
+ bonus2 bAddRace,RC_Insect,12;
+ bonus2 bMagicAddRace,RC_Insect,12;
+ - Id: 5448
+ AegisName: Solo_Play_Box1
+ Name: Indifferent Solo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 449
+ Script: |
+ skill "RG_GRAFFITI",1;
+ - Id: 5449
+ AegisName: Solo_Play_Box2
+ Name: Angry Solo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 450
+ Script: |
+ skill "RG_GRAFFITI",1;
+ - Id: 5450
+ AegisName: Sun_Cap
+ Name: Solar Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 451
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5451
+ AegisName: Dragonhelm_Gold
+ Name: RWC 2008 Dragon Helm Gold
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 14
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 452
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5452
+ AegisName: Dragonhelm_Silver
+ Name: RWC 2008 Dragon Helm Silver
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 453
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 5453
+ AegisName: Dragonhelm_Copper
+ Name: RWC 2008 Dragon Helm Copper
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 454
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_DemiHuman,1;
+ bonus2 bAddRace,RC_Player_Human,1;
+ - Id: 5454
+ AegisName: Dog_Cap_
+ Name: Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 234
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";
+ - Id: 5455
+ AegisName: Geographer_Band_
+ Name: Decorative Geographer
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 238
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpell,"AL_HEAL",5,50;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;
+ - Id: 5456
+ AegisName: Vacation_Hat_
+ Name: Summer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 315
+ Script: |
+ bonus bVit,5;
+ bonus bHPrecovRate,20;
+ bonus bSPrecovRate,15;
+ - Id: 5457
+ AegisName: Spring_Rabbit_Hat
+ Name: Moon Rabbit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ 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;
+ }
+ - Id: 5458
+ AegisName: Pinwheel_Cap
+ Name: Pinwheel Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 456
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 5459
+ AegisName: Drooping_Bunny_Chusuk
+ Name: Drooping Bunny
+ Type: Armor
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5460
+ AegisName: Adv_Dragon_Skull
+ Name: Evolved Dragon Skull Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 14
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 457
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMaxHPrate,3;
+ - Id: 5461
+ AegisName: Adv_Whisper_Mask
+ Name: Evolved Whisper Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 458
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubEle,Ele_Ghost,20;
+ - Id: 5462
+ AegisName: Spiked_Scarf
+ Name: Spiked Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 459
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bMaxHPrate,-2;
+ - Id: 5463
+ AegisName: Rainbow_Scarf
+ Name: Rainbow Scarf
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 460
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,30;
+ bonus bMaxSPrate,-2;
+ - Id: 5464
+ AegisName: Zaha_Doll_Hat
+ Name: Zaha Doll Hat
+ Type: Armor
+ Buy: 20
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 461
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 462
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,5;
+ .@r = getrefine();
+ if (.@r>4)
+ bonus bLuk,.@r-4;
+ - Id: 5466
+ AegisName: Wind_Milestone
+ Name: Wind Milestone
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 463
+ Script: |
+ bonus bAgi,2;
+ skill "AL_TELEPORT",1;
+ - Id: 5467
+ AegisName: Helm_Of_Dragoon
+ Name: Helm Of Dragon
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 464
+ Trade:
+ 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;
+ - Id: 5468
+ AegisName: Parade_Cap
+ Name: Parade Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 465
+ Script: |
+ bonus bDelayrate,-5;
+ bonus bMdef,2;
+ .@r = getrefine();
+ if (.@r>5)
+ bonus bVariableCastrate,-(.@r-5);
+ - Id: 5469
+ AegisName: Noble_Hat
+ Name: Musketeer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 466
+ Trade:
+ 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;
+ }
+ - Id: 5470
+ AegisName: Eyes_Of_Darkness
+ Name: Eye Of Darkness
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 467
+ Script: |
+ bonus bDex,1;
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 5471
+ AegisName: Hairband_Of_Reginleif
+ Name: Hairband Of Reginleif
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 468
+ Script: |
+ bonus2 bSubEle,Ele_Water,3;
+ bonus2 bSubEle,Ele_Fire,3;
+ bonus2 bSubEle,Ele_Undead,3;
+ bonus2 bSubEle,Ele_Ghost,3;
+ - Id: 5472
+ AegisName: Red_White_Hat
+ Name: Red Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 469
+ Script: |
+ bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200;
+ - Id: 5473
+ AegisName: Forceps_Hairpin
+ Name: Nipper Crab Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 470
+ Script: |
+ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30;
+ bonus3 bAddMonsterDropItem,991,RC_Fish,100;
+ - Id: 5474
+ AegisName: Notice_Board
+ Name: AFK Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 471
+ - Id: 5475
+ AegisName: Cube_Mask
+ Name: Mask Cube
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 472
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5476
+ AegisName: Hairband_Of_Grandpeco
+ Name: Grand Peco Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 473
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 474
+ Script: |
+ skill "SM_BASH",1;
+ - Id: 5478
+ AegisName: Classic_Hat
+ Name: Classic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 475
+ Script: |
+ bonus bStr,2;
+ bonus bMaxHP,300;
+ - Id: 5479
+ AegisName: Shaman's_Hair_Ornament
+ Name: Shaman's Hair Decoration
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 476
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Neutral,5;
+ - Id: 5480
+ AegisName: Bizofnil_Wing_Deco
+ Name: Bijofnil Wings
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 477
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,2;
+ bonus2 bSubEle,Ele_All,5;
+ bonus2 bHPRegenRate,(MaxHp*2/100),10000;
+ bonus2 bSPRegenRate,(MaxSp/100),10000;
+ - Id: 5481
+ AegisName: Hermose_Cap
+ Name: Hermode Cap
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 478
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus bBaseAtk,-20;
+ bonus bMatkRate,-10;
+ - Id: 5482
+ AegisName: Dark_Knight_Mask
+ Name: Dark Knight Mask
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 479
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,3;
+ - Id: 5483
+ AegisName: Odin_Mask
+ Name: Odin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 480
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubClass,Class_Boss,2;
+ - Id: 5484
+ AegisName: Taiwan_Flag_Hat
+ Name: Holidays Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Locations:
+ Head_Top: true
+ View: 482
+ Script: |
+ bonus bAllStats,5;
+ bonus2 bResEff,Eff_Stun,500;
+ - Id: 5485
+ AegisName: Tiger_Face
+ Name: Tiger Face
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 483
+ Script: |
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bAddRace,RC_Brute,5;
+ bonus2 bMagicAddRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ - Id: 5486
+ AegisName: J_Anniversary_Hat
+ Name: Anniversary Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 395
+ Script: |
+ bonus bAllStats,2;
+ - Id: 5487
+ AegisName: J_Poringcake_Hat
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 417
+ Script: |
+ bonus bLuk,2;
+ - Id: 5488
+ AegisName: J_Twin_Santahat
+ Name: Twin Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 390
+ Script: |
+ bonus bLuk,1;
+ bonus bMdef,1;
+ - Id: 5489
+ AegisName: Love_Daddy
+ Name: Love Daddy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 484
+ Script: |
+ bonus bDex,2;
+ - Id: 5490
+ AegisName: Anubis_Helm
+ Name: Anubis Helm
+ Type: Armor
+ Buy: 20
+ Defense: 8
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 485
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubClass,Class_Boss,10;
+ bonus bHealpower2,10;
+ bonus bAddItemHealRate,10;
+ - Id: 5491
+ AegisName: Hat_Of_Outlaw
+ Name: Bandit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 486
+ Script: |
+ bonus bStr,2;
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 5492
+ AegisName: Boy's_Cap_I
+ Name: Student Cap
+ Type: Armor
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 102
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 5493
+ AegisName: Ulle_Cap_I
+ Name: Ulle's Cap
+ Type: Armor
+ Defense: 12
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 254
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,1;
+ - Id: 5494
+ AegisName: Spinx_Helm_I
+ Name: Sphinx Hat
+ Type: Armor
+ Defense: 10
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Low: true
+ Head_Top: true
+ View: 137
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,5;
+ - Id: 5495
+ AegisName: Power_Of_Thor
+ Name: Power Of Thor
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 493
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,3;
+ bonus bFlee,5;
+ - Id: 5496
+ AegisName: Dice_Hat
+ Name: Dice Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 494
+ Script: |
+ bonus bLuk,4;
+ - Id: 5497
+ AegisName: King_Tiger_Doll_Hat
+ Name: King Tiger Doll Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 495
+ Trade:
+ 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 !\"; }";
+ - Id: 5498
+ AegisName: Wondering_Wolf_Helm
+ Name: Wandering Wolf Helm
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 490
+ Trade:
+ 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;
+ }
+ - Id: 5499
+ AegisName: Pizza_Hat
+ Name: Pizza Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Locations:
+ Head_Top: true
+ View: 487
+ Script: |
+ skill "SM_PROVOKE",1;
+ - Id: 5500
+ AegisName: Icecream_Hat
+ Name: Icecream Hat
+ Type: Armor
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 488
+ Script: |
+ bonus bMdef,3;
+ skill "MG_FROSTDIVER",3;
+ - Id: 5501
+ AegisName: Pirate's_Pride
+ Name: Pirate's Pride
+ Type: Armor
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 496
+ Script: |
+ bonus2 bAddRace2,RC2_Ninja,5;
+ bonus2 bSubRace2,RC2_Ninja,5;
+ - Id: 5502
+ AegisName: Necromencer's_Hood
+ Name: Necromancer's Hood
+ Type: Armor
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 491
+ Trade:
+ 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;
+ - Id: 5503
+ AegisName: Rabbit_Magic_Hat
+ Name: Rabbit Magic Hat
+ Type: Armor
+ Weight: 800
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 497
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,2;
+ bonus bMdef,1;
+ bonus bAspdRate,5;
+ bonus bDelayrate,-4;
+ - Id: 5504
+ AegisName: China_Wedding_Veil
+ Name: Wedding Weil
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 489
+ Script: |
+ bonus bMdef,10;
+ - Id: 5505
+ AegisName: Asara_Fairy_Hat
+ Name: Asara Fairy Hat
+ Type: Armor
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 492
+ Script: |
+ skill "DC_DONTFORGETME",1;
+ bonus bDex,2;
+ bonus bLuk,2;
+ - Id: 5506
+ AegisName: Blue_Pajamas_Hat
+ Name: Blue Night Cap
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 501
+ Script: |
+ bonus bAtkRate,5;
+ bonus bMatkRate,5;
+ - Id: 5507
+ AegisName: Pink_Pajamas_Hat
+ Name: Pink Night Cap
+ Type: Armor
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 502
+ Script: |
+ bonus bAtkRate,5;
+ bonus bMatkRate,5;
+ - Id: 5508
+ AegisName: Shark_Hat
+ Name: Shark Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 503
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 10
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 504
+ Trade:
+ 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;
+ - Id: 5510
+ AegisName: Shower_Cap
+ Name: Shower Cap
+ Type: Armor
+ Buy: 20
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 507
+ Script: |
+ bonus bMdef,3;
+ bonus bFlee,3;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bSubRace,RC_Fish,10;
+ - Id: 5511
+ AegisName: Samambaia
+ Name: Samambaia
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 508
+ Script: |
+ bonus bHealPower,2;
+ bonus bAspd,1;
+ bonus bFixedCastrate,-10;
+ - Id: 5512
+ AegisName: Aquarius_Diadem
+ Name: Aquarius Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 509
+ Script: |
+ bonus bStr,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Wind,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bBaseAtk,15;
+ }
+ - Id: 5513
+ AegisName: Aquarius_Crown
+ Name: Aquarius Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 510
+ Script: |
+ bonus bStr,2;
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Wind,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bBaseAtk,15;
+ }
+ - Id: 5514
+ AegisName: Pisces_Diadem
+ Name: Pisces Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 511
+ Script: |
+ bonus bInt,2;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Water,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bMatkRate,2;
+ }
+ - Id: 5515
+ AegisName: Pisces_Crown
+ Name: Pisces Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 512
+ Script: |
+ bonus bInt,2;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Water,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bMatkRate,2;
+ }
+ - Id: 5516
+ AegisName: Hawk_Eyes01
+ Name: Hawk Eyes
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Mid: true
+ View: 23
+ Script: |
+ bonus bDex,1;
+ bonus bLongAtkRate,3;
+ - Id: 5517
+ AegisName: Hawk_Eyes02
+ Name: Hawk Eyes
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ View: 23
+ Script: |
+ bonus bDex,1;
+ - Id: 5518
+ AegisName: L_Magestic_Goat2
+ Name: Gigantic Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 513
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,12;
+ bonus2 bSubRace,RC_Player_Human,12;
+ bonus bBaseAtk,(JobLevel*2)/7;
+ - Id: 5519
+ AegisName: Peacock_Feather
+ Name: Peacock Feather
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 514
+ Script: |
+ bonus bInt,2;
+ - Id: 5520
+ AegisName: Rabbit_Earplug
+ Name: Rabbit Earplugs
+ Type: Armor
+ Weight: 400
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 515
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ bonus bMatkRate,4;
+ - Id: 5521
+ AegisName: Angry_Mouth_C
+ Name: Angry Mouth
+ Type: Armor
+ Locations:
+ Head_Low: true
+ View: 194
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDelayrate,-3;
+ - Id: 5522
+ AegisName: Fanta_Zero_Lemon_Hat
+ Name: Fanta Zero Lemon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 516
+ - Id: 5523
+ AegisName: Sakura_Mist_Hat
+ Name: Sakura Mist Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 517
+ Script: |
+ bonus bDex,1;
+ - Id: 5524
+ AegisName: Sakura_Milk_Tea_Hat
+ Name: Sakura Milk Tea Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 518
+ Script: |
+ bonus bVit,1;
+ - Id: 5525
+ AegisName: First_Leaf_Tea_Hat
+ Name: Flower Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 519
+ Script: |
+ bonus bMaxHP,80;
+ bonus bMaxSP,20;
+ - Id: 5526
+ AegisName: Lady_Tanee_Doll
+ Name: Tanigumi Girl Doll
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 520
+ Script: |
+ bonus bAgi,2;
+ bonus bFlee,3;
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bAddMonsterDropItem,513,200;
+ - Id: 5527
+ AegisName: Lunatic_Hat
+ Name: Lunatic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 521
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bLuk,3;
+ bonus bCritical,5;
+ bonus2 bAddRace,RC_Plant,20;
+ - Id: 5528
+ AegisName: King_Frog_Hat
+ Name: Frog King Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 522
+ Script: |
+ bonus bAgi,1;
+ - Id: 5529
+ AegisName: Evil's_Bone_Hat
+ Name: Satanic Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ 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;
+ - Id: 5530
+ AegisName: Raven_Cap
+ Name: Raven Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 524
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 5531
+ AegisName: B_Dragon_Hat
+ Name: Baby Dragon Hat
+ Type: Armor
+ Buy: 45000
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 525
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,2;
+ .@bonus = max(getskilllv("TF_DOUBLE"), 5);
+ skill "TF_DOUBLE",.@bonus;
+ bonus bDoubleRate,.@bonus * 5;
+ - Id: 5532
+ AegisName: Pirate_Dagger_J
+ Name: Pirate Dagger
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 327
+ Script: |
+ bonus bShortWeaponDamageReturn,1;
+ - Id: 5533
+ AegisName: Emperor_Wreath_J
+ Name: Emperor Wreath
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 261
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5534
+ AegisName: Fox_Hat_J
+ Name: Fox Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 403
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee2,2;
+ - Id: 5535
+ AegisName: Side_Cap
+ Name: Side Cap
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 529
+ Trade:
+ 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;
+ - Id: 5536
+ AegisName: Spare_Card
+ Name: Spare Card
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 526
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ bonus2 bAddMonsterDropItem,6187,1000;
+ bonus bFlee2,1;
+ bonus2 bAddMonsterDropItem,617,5;
+ bonus2 bAddMonsterDropItem,12132,30;
+ bonus2 bAddMonsterDropItem,12130,30;
+ - Id: 5537
+ AegisName: Quati_Hat
+ Name: Kwati Hat
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 527
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,3;
+ bonus2 bAddRace,RC_Plant,10;
+ - Id: 5538
+ AegisName: Tucan_Hat
+ Name: Tucan Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 528
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,3;
+ bonus bCritical,5;
+ - Id: 5539
+ AegisName: Jaguar_Hat
+ Name: Jaguar Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 25
+ Refineable: true
+ View: 530
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,2;
+ skill "MC_LOUD",1;
+ - Id: 5540
+ AegisName: Freyja_SCirclet7
+ Name: Freyja SCirclet7
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5541
+ AegisName: Freyja_SCirclet30
+ Name: Freyja SCirclet30
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5542
+ AegisName: Freyja_SCirclet60
+ Name: Freyja SCirclet60
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5543
+ AegisName: Freyja_SCirclet90
+ Name: Freyja SCirclet90
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 18
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5544
+ AegisName: Time_Keeper_Hat
+ Name: Time Keeper Hat
+ Type: Armor
+ Buy: 30000
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 240
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,50;
+ - Id: 5545
+ AegisName: Aries_Diadem
+ Name: Aries Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 531
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,2;
+ bonus2 bSubEle,Ele_fire,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bVit,1;
+ }
+ - Id: 5546
+ AegisName: Aries_Crown
+ Name: Aries Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 532
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 533
+ Trade:
+ 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;
+ - Id: 5548
+ AegisName: Scarlet_Rose
+ Name: Scarlet Rose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 534
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ bonus bMatkRate,1;
+ bonus bMaxSP,30;
+ - Id: 5549
+ AegisName: Taurus_Diadem
+ Name: Taurus Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 535
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 536
+ Trade:
+ 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;
+ }
+ - Id: 5551
+ AegisName: Holy_Egg_Hat
+ Name: Holy Egg Hat
+ Type: Armor
+ Buy: 20
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 537
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5552
+ AegisName: Fest_Lord_Circlet
+ Name: Festival Grand Circlet
+ Type: Armor
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 93
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bMdef,3;
+ - Id: 5553
+ AegisName: Fest_Bunny_Band
+ Name: Festival Bunny Band
+ Type: Armor
+ Defense: 14
+ Locations:
+ Head_Top: true
+ View: 15
+ Script: |
+ bonus bMdef,4;
+ bonus2 bSubRace,RC_DemiHuman,9;
+ bonus2 bSubRace,RC_Player_Human,9;
+ - Id: 5554
+ AegisName: Octopus_Hat
+ Name: Octopus Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 538
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,3;
+ bonus3 bAutoSpell,"SM_PROVOKE",5,10;
+ bonus bUnbreakableHelm;
+ - Id: 5555
+ AegisName: Leaf_Cat_Hat
+ Name: Leaf Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 539
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,2;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;
+ - Id: 5556
+ AegisName: Fur_Seal_Hat
+ Name: Seal Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 540
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100;
+ - Id: 5557
+ AegisName: Wild_Rose_Hat
+ Name: Wild Rose Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 541
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,3;
+ - Id: 5558
+ AegisName: Saci_Hat
+ Name: Luxury Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 542
+ Script: |
+ bonus3 bAddMonsterDropItem,510,RC_Plant,20;
+ - Id: 5559
+ AegisName: Piece_Of_White_Cloth_E
+ Name: Piece Of White Cloth
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_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;
+ - Id: 5560
+ AegisName: Bullock_Helm_J
+ Name: Bullock Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ 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;
+ - Id: 5561
+ AegisName: Rabbit_Magic_Hat_J
+ Name: Magic Rabbit Hat
+ Type: Armor
+ Weight: 800
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 497
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,50;
+ bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3;
+ bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3;
+ bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;
+ - Id: 5562
+ AegisName: Good_Wedding_Veil_J
+ Name: Luxurious Wedding Veil
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 45
+ View: 489
+ Script: |
+ bonus bMdef,10;
+ bonus bVariableCastrate,-3;
+ bonus bUseSPrate,-5;
+ - Id: 5563
+ AegisName: Dolor_Hat
+ Name: Dolor Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 547
+ Script: |
+ bonus3 bAutoSpell,"PR_LEXAETERNA",1,15;
+ - Id: 5564
+ AegisName: Crown_Of_Deceit
+ Name: Crown of Deceit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 85
+ 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;
+ }
+ - Id: 5565
+ AegisName: Dragon_Arhat_Mask
+ Name: Dragon Arhat Mask
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 545
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ - Id: 5566
+ AegisName: Tiger_Arhat_Mask
+ Name: Tiger Arhat Mask
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 546
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ - Id: 5567
+ AegisName: Bright_Fury
+ Name: Bright Fury
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 548
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bAspdRate,2;
+ - Id: 5568
+ AegisName: Rabbit_Bonnet
+ Name: Rabbit Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 4
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 549
+ Script: |
+ bonus bInt,2;
+ bonus bDelayrate,-3;
+ - Id: 5569
+ AegisName: Gemini_Diadem
+ Name: Gemini Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 550
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,2;
+ bonus bMatkRate,2;
+ if (getrefine()>6) {
+ bonus bDex,1;
+ bonus bMatk,30;
+ }
+ - Id: 5570
+ AegisName: Gemini_Crown
+ Name: Gemini Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 551
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ 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: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 552
+ Script: |
+ bonus bStr,1;
+ bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50;
+ - Id: 5572
+ AegisName: Savage_Baby_Hat
+ Name: Savage Babe Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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;
+ - Id: 5573
+ AegisName: Bogy_Horn
+ Name: Dokebi Horn
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 554
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;
+ bonus3 bAutoSpell,"MC_MAMMONITE",5,70;
+ - Id: 5574
+ AegisName: Pencil_In_Mouth
+ Name: Well-Chewed Pencil
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 555
+ Script: |
+ bonus bHit,3;
+ - Id: 5575
+ AegisName: Onigiri_Hat
+ Name: Rice Ball Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 556
+ - Id: 5576
+ AegisName: Japan_Winecup
+ Name: Wine Cup
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ View: 557
+ - Id: 5577
+ AegisName: Dark_Knight_MaskB
+ Name: Dark Knight Mask
+ Type: Armor
+ Weight: 3000
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 479
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,3;
+ - Id: 5578
+ AegisName: Voyage_Hat
+ Name: Voyage Hat
+ Type: Armor
+ Buy: 200
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 236
+ Script: |
+ bonus bAgi,2;
+ - Id: 5579
+ AegisName: Wanderer's_Sakkat
+ Name: Wanderer's Sakkat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 558
+ Script: |
+ bonus bFlee,3;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bFlee,2;
+ bonus bAgi,2;
+ }
+ if (.@r>=9) {
+ bonus bCritical,10;
+ bonus bAspdRate,8;
+ }
+ - Id: 5580
+ AegisName: Red_Beret
+ Name: Red Beret
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 559
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,3;
+ - Id: 5581
+ AegisName: Cancer_Diadem
+ Name: Cancer Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 560
+ Script: |
+ bonus bInt,2;
+ bonus2 bSubEle,Ele_Water,5;
+ if (getrefine()>6) {
+ bonus bMdef,1;
+ bonus bHealPower,3;
+ bonus bMatkRate,2;
+ }
+ - Id: 5582
+ AegisName: Cancer_Crown
+ Name: Cancer Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 561
+ Script: |
+ bonus bStr,2;
+ bonus2 bSubEle,Ele_Water,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bBaseAtk,15;
+ bonus bFlee,10;
+ }
+ - Id: 5583
+ AegisName: Para_Team_Hat
+ Name: Eden Team Hat I
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 7
+ Refineable: true
+ View: 465
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5584
+ AegisName: Majestic_Evil_Horn
+ Name: Majestic Evil Horns
+ Type: Armor
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 562
+ Trade:
+ 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;*/
+ - Id: 5585
+ AegisName: Rune_Hairband
+ Name: Rune Cloth Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 564
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,3;
+ bonus bHit,5;
+ bonus2 bHPDrainRate,30,10;
+ bonus2 bSPDrainRate,10,5;
+ - Id: 5586
+ AegisName: Mosquito_Coil
+ Name: Mosquito Coil
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 563
+ Script: |
+ bonus2 bAddDamageClass,1627,100;
+ bonus2 bAddDamageClass,1095,20;
+ bonus2 bAddDamageClass,1160,20;
+ bonus2 bAddDamageClass,1105,20;
+ bonus2 bAddDamageClass,1097,20;
+ bonus2 bAddDamageClass,1051,20;
+ bonus2 bAddDamageClass,1053,20;
+ bonus2 bAddDamageClass,1054,20;
+ bonus2 bAddDamageClass,1048,20;
+ - Id: 5587
+ AegisName: Mosquito_Coil_1Use
+ Name: Mosquito Coil
+ Type: Armor
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 563
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5588
+ AegisName: Leo_Crown
+ Name: Leo Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 565
+ Script: |
+ bonus bStr,2;
+ bonus2 bSubEle,Ele_Fire,5;
+ if (getrefine()>6) {
+ bonus bDef,1;
+ bonus bFlee,10;
+ bonus3 bAutoSpell,"TK_SEVENWIND",4,50;
+ }
+ - Id: 5589
+ AegisName: Leo_Diadem
+ Name: Leo Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 566
+ Script: |
+ bonus bDex,2;
+ bonus2 bSubEle,Ele_Fire,5;
+ if (getrefine()>6) {
+ bonus bFlee,10;
+ bonus bAspdRate,3;
+ autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ }
+ - Id: 5590
+ AegisName: K_Poring_Cake_Cap
+ Name: Poring Cake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 417
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,5;
+ bonus bMaxHP,BaseLevel*2;
+ bonus bMaxSP,50;
+ - Id: 5591
+ AegisName: Desert_Prince
+ Name: Desert Prince
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 567
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5592
+ AegisName: Sigrun's_Wing
+ Name: Sigrun's Wings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 568
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker))
+ bonus bAspd,1;
+ else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) {
+ bonus bMatk,5;
+ bonus bHealPower,2;
+ } else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger)
+ bonus bLongAtkRate,2;
+ else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) {
+ bonus bMaxHP,120;
+ bonus bMaxSP,60;
+ }
+ - Id: 5593
+ AegisName: K_Rabbit_Bonnet
+ Name: Rabbit Bonnet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 549
+ Trade:
+ 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;
+ }
+ - Id: 5594
+ AegisName: Donut_In_Mouth
+ Name: Donut In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 569
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bHPRegenRate,1,10000;
+ bonus bMaxHP,100;
+ - Id: 5595
+ AegisName: Eye_Of_Juno
+ Name: Eye Of Juno
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 570
+ Script: |
+ bonus bMdef,2;
+ .@i = JobLevel/14;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) {
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus2 bSubEle,Ele_Neutral,.@i;
+ bonus2 bSubEle,Ele_Water,.@i;
+ }
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) {
+ bonus bAgi,2;
+ bonus bVit,2;
+ bonus2 bSubEle,Ele_Neutral,.@i;
+ bonus2 bSubEle,Ele_Water,.@i;
+ }
+ - Id: 5596
+ AegisName: 4Leaf_Clover_In_Mouth
+ Name: Four Leaf Clover
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 571
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ bonus bMdef,2;
+ /*Gold PC Room: bonus bAllStats,1;
+ bonus2 bExpAddRace,RC_All,2;
+ */
+ - Id: 5597
+ AegisName: Bubble_Gum_In_Mouth
+ Name: Bubble Gum In Mouth
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 572
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ bonus bMdef,2;
+ /*Gold PC Room: bonus bAllStats,1;
+ bonus2 bDropAddClass,Class_All,5;
+ */
+ - Id: 5598
+ AegisName: Virgo_Crown
+ Name: Virgo Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 573
+ Script: |
+ bonus bDex,2;
+ bonus bAspdRate,1;
+ if (getrefine()>6) {
+ bonus2 bSubEle,Ele_Earth,5;
+ autobonus "{ bonus bDex,20; }",30,6000,BF_MAGIC,"{ specialeffect2 EF_WIND; }";
+ autobonus "{ bonus bDex,20; }",30,6000,BF_NORMAL,"{ specialeffect2 EF_WIND; }";
+ }
+ - Id: 5599
+ AegisName: Virgo_Diadem
+ Name: Virgo Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 574
+ Script: |
+ bonus bAspdRate,3;
+ bonus2 bSubEle,Ele_Earth,5;
+ if (getrefine()>6)
+ bonus3 bAutoSpell,"MO_BALKYOUNG",1,20;
+ - Id: 5600
+ AegisName: Br_Twin_Ribbon
+ Name: Brazil Twin Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 575
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,1;
+ - Id: 5601
+ AegisName: Br_Beret
+ Name: Brazil Beret
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 576
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,1;
+ - Id: 5602
+ AegisName: Jaguar_Hat_J
+ Name: Jaguar Hat J
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 530
+ Script: |
+ bonus2 bAddEle,Ele_Fire,5;
+ - Id: 5603
+ AegisName: RTC_Winner_Only
+ Name: RTC First Place
+ Type: Armor
+ Weight: 250
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 577
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Weight: 250
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 578
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Weight: 250
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 579
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 500
+ Weight: 1200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 3
+ Refineable: true
+ View: 580
+ Script: |
+ bonus bAllStats,1;
+ - Id: 5607
+ AegisName: Lyria_Doll_Hat
+ Name: Lyria Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 581
+ Script: |
+ bonus bMaxHP,500;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5608
+ AegisName: Dorothy_Doll_Hat
+ Name: Dorothy Doll Hat
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 582
+ Script: |
+ bonus bMaxSP,80;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5609
+ AegisName: Chung_Hairband
+ Name: Chung Hairband
+ Type: Armor
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 583
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,4;
+ bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5;
+ - Id: 5610
+ AegisName: Ice_Wing_Ear
+ Name: Ice Wing Ear
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 584
+ Script: |
+ bonus bLuk,1;
+ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5;
+ - Id: 5611
+ AegisName: Turtle_Hat
+ Name: Turtle Hat
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 585
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5;
+ - Id: 5612
+ AegisName: F_Blue_Drooping_Kitty
+ Name: F Blue Drooping Kitty
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 277
+ Script: |
+ bonus bMdef,15;
+ - Id: 5613
+ AegisName: F_Flying_Angel
+ Name: F Flying Angel
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 5614
+ AegisName: F_Smoking_Pipe_
+ Name: F Smoking Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ View: 55
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_Insect,5;
+ - Id: 5615
+ AegisName: F_Pair_Of_Red_Ribbon_
+ Name: F Pair Of Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ Script: |
+ bonus bFlee,5;
+ - Id: 5616
+ AegisName: F_Fish_On_Head_
+ Name: F Fish On Head
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_Fish,10;
+ - Id: 5617
+ AegisName: F_Hibiscus
+ Name: F Hibiscus
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 210
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ - Id: 5618
+ AegisName: F_Cat_Hat
+ Name: F Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 182
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5619
+ AegisName: F_Bunny_Band_
+ Name: F Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bInt,2;
+ - Id: 5620
+ AegisName: F_Magestic_Goat_TW
+ Name: F Magestic Goat TW
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,2;
+ - Id: 5621
+ AegisName: F_Sheep_Hat
+ Name: F Sheep Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ View: 205
+ Script: |
+ bonus bShortWeaponDamageReturn,5;
+ - Id: 5622
+ AegisName: F_Mini_Propeller_
+ Name: F Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 270
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,2;
+ bonus bFlee,10;
+ bonus bVariableCastrate,-getrefine();
+ - Id: 5623
+ AegisName: F_Alice_Doll
+ Name: F Alice Doll
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 208
+ Script: |
+ bonus bStr,1;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddEff2,Eff_Sleep,1;
+ - Id: 5624
+ AegisName: F_Red_Glasses
+ Name: F Red Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 316
+ Script: |
+ bonus bInt,1;
+ - Id: 5625
+ AegisName: F_Chick_Hat
+ Name: F Chick Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 311
+ Script: |
+ bonus bLuk,2;
+ bonus2 bSubRace,RC_DemiHuman,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ bonus2 bSubRace,RC_Brute,3;
+ bonus2 bSubRace,RC_Player_Doram,3;
+ skill "TF_DOUBLE",2;
+ bonus bDoubleRate,10;
+ bonus bMaxHP,50;
+ bonus bMaxSP,50;
+ - Id: 5626
+ AegisName: F_White_Deviruchi_Cap
+ Name: F White Deviruchi Cap
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 272
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5627
+ AegisName: F_Vane_Hairpin
+ Name: F Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 313
+ Script: |
+ bonus bAgi,2;
+ - Id: 5628
+ AegisName: F_Pecopeco_Hairband
+ Name: F Pecopeco Hairband
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 314
+ Script: |
+ bonus bSpeedRate,25;
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-25;
+ - Id: 5629
+ AegisName: F_Vacation_Hat
+ Name: F Vacation Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 315
+ Script: |
+ bonus bVit,1;
+ - Id: 5630
+ AegisName: F_Charming_Ribbon
+ Name: F Charming Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 211
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_Undead,5;
+ - Id: 5631
+ AegisName: F_Water_Lily_Crown
+ Name: F Water Lily Crown
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 312
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMdef,3;
+ bonus bHPrecovRate,5;
+ bonus bSPrecovRate,3;
+ - Id: 5632
+ AegisName: F_Vanilmirth_Hat
+ Name: F Vanilmirth Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 317
+ Script: |
+ bonus bMdef,5;
+ bonus4 bAutoSpell,"MG_FIREBOLT",1,50,1;
+ bonus4 bAutoSpell,"MG_COLDBOLT",1,50,1;
+ bonus4 bAutoSpell,"MG_LIGHTNINGBOLT",1,50,1;
+ - Id: 5633
+ AegisName: F_Drooping_Bunny_
+ Name: F Drooping Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ bonus bFlee,2;
+ - Id: 5634
+ AegisName: F_Kettle_Hat
+ Name: F Kettle Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 318
+ Script: |
+ bonus4 bAutoSpell,"SA_DELUGE",2,30,0;
+ bonus4 bAutoSpell,"WZ_WATERBALL",3,30,1;
+ - Id: 5635
+ AegisName: F_Dragon_Skull
+ Name: F Dragon Skull
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 319
+ Script: |
+ bonus2 bSubRace,RC_Dragon,5;
+ - Id: 5636
+ AegisName: F_Ramen_Hat
+ Name: F Ramen Hat
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 320
+ Script: |
+ bonus bDex,4;
+ bonus3 bAutoSpellWhenHit,"AL_DECAGI",1,30;
+ - Id: 5637
+ AegisName: F_Pink_Fur_Hat
+ Name: F Pink Fur Hat
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 281
+ Script: |
+ bonus bLuk,1;
+ - Id: 5638
+ AegisName: F_Puppy_Hat
+ Name: F Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 234
+ Script: |
+ bonus bAgi,1;
+ if (readparam(bAgi)>77) {
+ bonus3 bAutoSpell,"PR_GLORIA",3,25;
+ }
+ else {
+ bonus3 bAutoSpell,"PR_GLORIA",1,25;
+ }
+ - Id: 5639
+ AegisName: F_Magic_Eyes
+ Name: F Magic Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 209
+ Script: |
+ bonus bMdef,5;
+ bonus bVariableCastrate,-10;
+ bonus bUseSPrate,20;
+ - Id: 5640
+ AegisName: F_Jumping_Poring
+ Name: F Jumping Poring
+ Type: Armor
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 349
+ Script: |
+ bonus bLuk,1;
+ - Id: 5641
+ AegisName: F_Robo_Eye
+ Name: F Robo Eye
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 345
+ Script: |
+ bonus bDex,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ - Id: 5642
+ AegisName: F_Yellow_Wizardry_Hat
+ Name: F Yellow Wizardry Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 286
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5643
+ AegisName: F_Crescent_Helm
+ Name: F Crescent Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 213
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 5644
+ AegisName: F_Tiger_Mask
+ Name: F Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 181
+ Script: |
+ bonus bStr,3;
+ bonus bMaxHP,100;
+ - Id: 5645
+ AegisName: F_Fantastic_Wig
+ Name: F Fantastic Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 308
+ Script: |
+ bonus bDef,4;
+ bonus bSpeedRate,25;
+ skill "TF_HIDING",1;
+ - Id: 5646
+ AegisName: F_Whisper_Mask
+ Name: F Whisper Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 321
+ Script: |
+ bonus bAgi,3;
+ bonus2 bSubEle,Ele_Ghost,10;
+ - Id: 5647
+ AegisName: F_Bunny_Band_C
+ Name: F Bunny Band C
+ Type: Armor
+ Buy: 1
+ Defense: 9
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 15
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5648
+ AegisName: F_Centimental_Flower_C
+ Name: F Centimental Flower C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 56
+ Script: |
+ bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,30,0;
+ - Id: 5649
+ AegisName: F_Apple_Of_Archer_C
+ Name: F Apple Of Archer C
+ Type: Armor
+ Buy: 1
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 72
+ Script: |
+ bonus bDex,4;
+ - Id: 5650
+ AegisName: F_Elven_Ears_C
+ Name: F Elven Ears C
+ Type: Armor
+ Buy: 1
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 73
+ Script: |
+ bonus bInt,1;
+ - Id: 5651
+ AegisName: F_Brooch_C
+ Name: F Brooch C
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAgi,4;
+ - Id: 5652
+ AegisName: F_Magestic_Goat_C
+ Name: F Magestic Goat C
+ Type: Armor
+ Buy: 2
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 5653
+ AegisName: Darkness_Helm_J
+ Name: Darkness Helm
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 586
+ - Id: 5654
+ AegisName: Holy_Marching_Hat_J
+ Name: Holy Marching Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 587
+ Trade:
+ 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;
+ }
+ - Id: 5655
+ AegisName: Dark_Snake_Lord_Hat_J
+ Name: Evil Snake Lord Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 372
+ Script: |
+ bonus bInt,2;
+ bonus bAgi,2;
+ bonus bDex,-2;
+ autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";
+ - Id: 5656
+ AegisName: Scooter_Hat_J
+ Name: Scooter Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 588
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5657
+ AegisName: Antique_Pipe_J
+ Name: Captain's Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 383
+ Script: |
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_Undead,5;
+ - Id: 5658
+ AegisName: Imp_Hat
+ Name: Imp Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 589
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;
+ - Id: 5659
+ AegisName: Sleepr_Hat
+ Name: Sleeper Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 590
+ Script: |
+ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;
+ - Id: 5660
+ AegisName: Gryphon_Hat
+ Name: Gryphon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 591
+ Trade:
+ 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;
+ }
+ - Id: 5661
+ AegisName: Red_Pirate_Bandana
+ Name: Red Pirate Bandana
+ Type: Armor
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 592
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bAspdRate,2;
+ bonus bVariableCastrate,-2;
+ bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3;
+ - Id: 5662
+ AegisName: Libra_Crown
+ Name: Libra Crown
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 593
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubEle,Ele_Wind,7;
+ if (getrefine()>=7) {
+ bonus bMatkRate,3;
+ }
+ if (getrefine()>=9) {
+ bonus bMatkRate,5;
+ bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;
+ }
+ - Id: 5663
+ AegisName: Libra_Diadem
+ Name: Libra Diadem
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 594
+ Script: |
+ bonus bBaseAtk,7;
+ if (getrefine()>=7) {
+ bonus3 bAutoSpell,"TK_SEVENWIND",2,5;
+ }
+ if (getrefine()>=9) {
+ bonus bFlee,5;
+ bonus2 bAddClass,Class_All,3;
+ }
+ - Id: 5664
+ AegisName: Filir_Wing
+ Name: Filir's Pinions
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 595
+ Script: |
+ bonus bAspdRate,2;
+ - Id: 5665
+ AegisName: Shaman_Hat
+ Name: Shaman Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 596
+ Trade:
+ 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;
+ - Id: 5666
+ AegisName: Golden_Crown
+ Name: Golden Crown
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 597
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ - Id: 5667
+ AegisName: Skull_Hood
+ Name: Skull Hood
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 598
+ Trade:
+ 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,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 5668
+ AegisName: Weird_Pumpkin_Hat
+ Name: Weird Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 206
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bAddMonsterDropItem,12192,100;
+ - Id: 5669
+ AegisName: Poring_Party_Hat_J
+ Name: Poring Party Hat J
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 340
+ - Id: 5670
+ AegisName: Aniv_Star_Hat
+ Name: Aniv Star Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 599
+ - Id: 5671
+ AegisName: Drooping_Morocc_Minion
+ Name: Drooping Morocc Minion
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 600
+ Script: |
+ bonus bSPGainValue,2;
+ bonus bMagicSPGainValue,2;
+ if (getrefine()>8) {
+ bonus4 bAutoSpellWhenHit,"NPC_CRITICALWOUND",3,5,1;
+ bonus4 bAutoSpell,"NPC_CRITICALWOUND",3,5,1;
+ bonus4 bAutoSpell,"NPC_WIDEBLEEDING",2,5,0;
+ }
+ else {
+ bonus4 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2,1;
+ }
+ - Id: 5672
+ AegisName: Southern_Cross
+ Name: Southern Cross
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 601
+ Script: |
+ bonus bInt,1;
+ - Id: 5673
+ AegisName: Home_Cherry_Blossom
+ Name: Home Cherry Blossom
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 602
+ Script: |
+ bonus bNoCastCancel;
+ bonus bVariableCastrate,35;
+ - Id: 5674
+ AegisName: Pig_Moneybox
+ Name: Pig Moneybox
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 603
+ Script: |
+ skill "MC_OVERCHARGE",2;
+ - Id: 5675
+ AegisName: Poring_Letter
+ Name: Poring Letter
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 604
+ Script: |
+ bonus2 bAddMonsterDropItem,619,10;
+ bonus bUnbreakableHelm;
+ - Id: 5676
+ AegisName: Scorpio_Crown
+ Name: Scorpio Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 605
+ Script: |
+ bonus bAspdRate,3;
+ bonus2 bSubEle,Ele_Water,5;
+ .@r = getrefine();
+ bonus bBaseAtk,5;
+ if (.@r>6) {
+ bonus3 bAutoSpell,"TK_SEVENWIND",3,20;
+ }
+ if (.@r>7) {
+ bonus bAspdRate,2;
+ }
+ if (.@r>8) {
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10;
+ }
+ if (.@r>9) {
+ bonus bAspdRate,2;
+ bonus bBaseAtk,5;
+ }
+ - Id: 5677
+ AegisName: Scorpio_Diadem
+ Name: Scorpio Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 606
+ Script: |
+ bonus bDex,2;
+ if (getrefine()>6) {
+ bonus bDex,1;
+ bonus bBaseAtk,5;
+ }
+ - Id: 5678
+ AegisName: Notation_Hairband
+ Name: Notation Hairband
+ Type: Armor
+ Buy: 200
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 607
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 5679
+ AegisName: Engineer_Cap
+ Name: Engineer Cap
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 608
+ Script: |
+ bonus2 bAddRace,RC_Formless,10;
+ - Id: 5680
+ AegisName: Hawkeyes
+ Name: Hawkeyes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 609
+ Script: |
+ bonus bHit,10;
+ bonus bUnbreakableHelm;
+ - Id: 5681
+ AegisName: F_Ribbon_Green
+ Name: Green Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 244
+ Script: |
+ bonus bMdef,3;
+ - Id: 5682
+ AegisName: Triangle_Rune_Cap
+ Name: Triangle Rune Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 610
+ Trade:
+ 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;
+ }
+ - Id: 5683
+ AegisName: Majestic_Goat_Repl
+ Name: Baphomet Horns
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 41
+ - Id: 5684
+ AegisName: Jewel_Crown_Repl
+ Name: Ornate Crown
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 88
+ - Id: 5685
+ AegisName: Prontera_Army_Cap_Repl
+ Name: Army Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 48
+ - Id: 5686
+ AegisName: Feather_Bonnet_Repl
+ Name: Nice Hat Feather
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 104
+ - Id: 5687
+ AegisName: Viking_Helm_Repl
+ Name: Orc Helm
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 86
+ - Id: 5688
+ AegisName: 2009Love_Daddy
+ Name: 2009 Love Dad
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 611
+ Script: |
+ bonus bVit,2;
+ - Id: 5689
+ AegisName: Queen_Ant_Diadem
+ Name: Queen Ant Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 75
+ Refineable: true
+ View: 612
+ Script: |
+ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5;
+ bonus2 bSubRace,RC_Insect,5;
+ - Id: 5690
+ AegisName: Red_Wing_Hat
+ Name: Red Wing Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 613
+ Script: |
+ bonus bHPrecovRate,20;
+ bonus bSPrecovRate,20;
+ - Id: 5691
+ AegisName: Catain_Bandanna
+ Name: Sailor's Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 542
+ Script: |
+ bonus bDex,1;
+ bonus2 bSubEle,Ele_Poison,20;
+ bonus2 bResEff,Eff_Poison,2000;
+ bonus bUnbreakableHelm;
+ - Id: 5692
+ AegisName: Sea_Cat_Hat
+ Name: Sea Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 539
+ Script: |
+ bonus bDex,1;
+ bonus2 bResEff,Eff_Curse,2000;
+ bonus bUnbreakableHelm;
+ - Id: 5693
+ AegisName: No_Fear_Underware
+ Name: No Fear Underwear
+ Type: Armor
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 30
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMaxHP,700;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 5694
+ AegisName: No_Fear_P_Headgear
+ Name: No Fear P Headgear
+ Type: Armor
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 614
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,100;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ - Id: 5695
+ AegisName: E_Blue_Drooping_Kitty
+ Name: E Blue Drooping Kitty
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 1
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 277
+ Script: |
+ bonus bMdef,15;
+ - Id: 5696
+ AegisName: E_Flying_Angel
+ Name: E Flying Angel
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 264
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 5697
+ AegisName: E_Smoking_Pipe_
+ Name: E Smoking Pipe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Low: true
+ View: 55
+ Script: |
+ bonus bVit,1;
+ - Id: 5698
+ AegisName: E_Pair_OE_Red_Ribbon_
+ Name: E Pair OE Red Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ - Id: 5699
+ AegisName: E_Fish_On_Head_
+ Name: E Fish On Head
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 149
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ - Id: 5700
+ AegisName: E_Hibiscus
+ Name: E Hibiscus
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 210
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ - Id: 5701
+ AegisName: E_Cat_Hat
+ Name: E Cat Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 182
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,10;
+ - Id: 5702
+ AegisName: E_Bunny_Band_
+ Name: E Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bInt,2;
+ - Id: 5703
+ AegisName: E_Magestic_Goat_TW
+ Name: E Magestic Goat TW
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 41
+ Script: |
+ bonus bStr,2;
+ - Id: 5704
+ AegisName: E_Sheep_Hat
+ Name: E Sheep Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ View: 205
+ - Id: 5705
+ AegisName: E_Mini_Propeller_
+ Name: E Mini Propeller
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 270
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,2;
+ - Id: 5706
+ AegisName: E_Alice_Doll
+ Name: E Alice Doll
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 208
+ Script: |
+ bonus bStr,1;
+ - Id: 5707
+ AegisName: E_Red_Glasses
+ Name: E Red Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ View: 316
+ Script: |
+ bonus bInt,1;
+ - Id: 5708
+ AegisName: E_Chick_Hat
+ Name: E Chick Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 311
+ Script: |
+ bonus bLuk,2;
+ - Id: 5709
+ AegisName: E_White_Deviruchi_Cap
+ Name: E White Deviruchi Cap
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 272
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ - Id: 5710
+ AegisName: E_Vane_Hairpin
+ Name: E Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 313
+ Script: |
+ bonus bAgi,2;
+ - Id: 5711
+ AegisName: E_Pecopeco_Hairband
+ Name: E Pecopeco Hairband
+ Type: Armor
+ Buy: 20
+ Defense: 3
+ Locations:
+ Head_Top: true
+ View: 314
+ - Id: 5712
+ AegisName: E_Vacation_Hat
+ Name: E Vacation Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 315
+ Script: |
+ bonus bVit,1;
+ - Id: 5713
+ AegisName: E_Charming_Ribbon
+ Name: E Charming Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 211
+ - Id: 5714
+ AegisName: E_Water_Lily_Crown
+ Name: E Water Lily Crown
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 312
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMdef,3;
+ - Id: 5715
+ AegisName: E_Vanilmirth_Hat
+ Name: E Vanilmirth Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 317
+ Script: |
+ bonus bMdef,5;
+ - Id: 5716
+ AegisName: E_Drooping_Bunny_
+ Name: E Drooping Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 249
+ Script: |
+ bonus bDex,1;
+ - Id: 5717
+ AegisName: E_Kettle_Hat
+ Name: E Kettle Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 318
+ - Id: 5718
+ AegisName: E_Dragon_Skull
+ Name: E Dragon Skull
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 319
+ - Id: 5719
+ AegisName: E_Ramen_Hat
+ Name: E Ramen Hat
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ View: 320
+ Script: |
+ bonus bDex,4;
+ - Id: 5720
+ AegisName: E_Pink_Fur_Hat
+ Name: E Pink Fur Hat
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 281
+ Script: |
+ bonus bLuk,1;
+ - Id: 5721
+ AegisName: E_Puppy_Hat
+ Name: E Puppy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 234
+ Script: |
+ bonus bAgi,1;
+ - Id: 5722
+ AegisName: E_Magic_Eyes
+ Name: E Magic Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 209
+ Script: |
+ bonus bMdef,5;
+ - Id: 5723
+ AegisName: E_Jumping_Poring
+ Name: E Jumping Poring
+ Type: Armor
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ View: 349
+ Script: |
+ bonus bLuk,1;
+ - Id: 5724
+ AegisName: E_Robo_Eye
+ Name: E Robo Eye
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 345
+ Script: |
+ bonus bDex,1;
+ - Id: 5725
+ AegisName: E_Yellow_Wizardry_Hat
+ Name: E Yellow Wizardry Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 286
+ Script: |
+ bonus bInt,2;
+ - Id: 5726
+ AegisName: E_Crescent_Helm
+ Name: E Crescent Helm
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 8
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 213
+ Script: |
+ bonus bVit,1;
+ - Id: 5727
+ AegisName: E_Tiger_Mask
+ Name: E Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 181
+ Script: |
+ bonus bStr,3;
+ - Id: 5728
+ AegisName: E_Fantastic_Wig
+ Name: E Fantastic Wig
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 308
+ - Id: 5729
+ AegisName: E_Bunny_Band_C
+ Name: E Bunny Band C
+ Type: Armor
+ Buy: 1
+ Defense: 9
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 15
+ Script: |
+ bonus bMdef,5;
+ - Id: 5730
+ AegisName: E_Centimental_Flower_C
+ Name: E Centimental Flower C
+ Type: Armor
+ Buy: 1
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 56
+ - Id: 5731
+ AegisName: E_Apple_OE_Archer_C
+ Name: E Apple OE Archer C
+ Type: Armor
+ Buy: 1
+ Defense: 7
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 72
+ Script: |
+ bonus bDex,4;
+ - Id: 5732
+ AegisName: E_Elven_Ears_C
+ Name: E Elven Ears C
+ Type: Armor
+ Buy: 1
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 73
+ Script: |
+ bonus bInt,1;
+ - Id: 5733
+ AegisName: E_Brooch_C
+ Name: E Brooch C
+ Type: Armor
+ Buy: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAgi,4;
+ - Id: 5734
+ AegisName: E_Magestic_Goat_C
+ Name: E Magestic Goat C
+ Type: Armor
+ Buy: 2
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 41
+ Script: |
+ bonus bStr,1;
+ - Id: 5735
+ AegisName: E_Ribbon_Green
+ Name: Green Ribbon
+ Type: Armor
+ Buy: 800
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 244
+ Script: |
+ bonus bMdef,3;
+ - Id: 5736
+ AegisName: EF_Whisper_Mask
+ Name: Whisper Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ View: 321
+ Script: |
+ bonus bAgi,3;
+ bonus2 bSubEle,Ele_Ghost,-10;
+ - Id: 5737
+ AegisName: Cactus_Hat
+ Name: Cactus Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 615
+ Script: |
+ bonus3 bAddMonsterDropItem,952,RC_Plant,500;
+ - Id: 5738
+ AegisName: Snowman_Hat
+ Name: Snowman Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 616
+ Trade:
+ 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;
+ - Id: 5739
+ AegisName: Sagittarius_Crown
+ Name: Sagittarius Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 617
+ Script: |
+ bonus bDex,2;
+ bonus2 bSubEle,Ele_Fire,7;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus bAspdRate,2;
+ }
+ if (.@r>7) {
+ bonus bAgi,2;
+ }
+ if (.@r>8) {
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>9) {
+ autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ }
+ - Id: 5740
+ AegisName: Sagittarius_Diadem
+ Name: Sagittarius Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 618
+ Script: |
+ bonus bDex,2;
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Fire,7;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus bVariableCastrate,-3;
+ }
+ if (.@r>7) {
+ bonus5 bAutoSpell,"WZ_SIGHTRASHER",1,5,BF_MAGIC,0;
+ }
+ if (.@r>8) {
+ bonus bVariableCastrate,-2;
+ }
+ if (.@r>9) {
+ bonus bMatkRate,4;
+ }
+ - Id: 5741
+ AegisName: Im_Egg_Shell_Hat
+ Name: Eternal Egg Shell
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 101
+ Script: |
+ bonus2 bAddItemGroupHealRate,IG_Potion,10;
+ bonus bHealPower2,10;
+ - Id: 5742
+ AegisName: Rudolf_Santa_Hat
+ Name: Rudolph Santa Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 619
+ Script: |
+ bonus2 bAddMonsterDropItem,538,100;
+ bonus2 bAddMonsterDropItem,539,100;
+ bonus2 bAddItemHealRate,538,100;
+ bonus2 bAddItemHealRate,539,100;
+ - Id: 5743
+ AegisName: Orange_Stem_Hat
+ Name: Orange Stem Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 620
+ Script: |
+ bonus bLuk,3;
+ - Id: 5744
+ AegisName: Capricorn_Crown
+ Name: Capricorn Crown
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 621
+ Script: |
+ bonus bVit,2;
+ bonus bDex,2;
+ if (getrefine()>6) {
+ bonus3 bAutoSpell,"TK_SEVENWIND",1,20;
+ }
+ - Id: 5745
+ AegisName: Capricorn_Diadem
+ Name: Capricorn Diadem
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 622
+ Script: |
+ bonus bDex,2;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus bInt,2;
+ }
+ if (.@r>7) {
+ bonus bVariableCastrate,-3;
+ }
+ if (.@r>8) {
+ bonus bHealPower2,4;
+ }
+ if (.@r>9) {
+ bonus5 bAutoSpellWhenHit,"BS_HAMMERFALL",5,30,BF_WEAPON|BF_MAGIC,1;
+ }
+ - Id: 5746
+ AegisName: Rune_Circlet
+ Name: Rune Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 623
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,10;
+ bonus bMatk,5;
+ }
+ - Id: 5747
+ AegisName: Mitra
+ Name: Mitra
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 624
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ bonus bHealPower,5;
+ if (readparam(bInt)>=120) {
+ bonus bMatk,10;
+ }
+ - Id: 5748
+ AegisName: Sniper_Goggle
+ Name: Sniper Goggles
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 625
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ if (readparam(bAgi)>=120) {
+ bonus bLongAtkRate,4;
+ bonus bAspd,1;
+ }
+ - Id: 5749
+ AegisName: Driver_Band
+ Name: Driver Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 626
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,10;
+ bonus bCritical,3;
+ }
+ - Id: 5750
+ AegisName: Shadow_Handicraft
+ Name: Shadow Crown
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 627
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ bonus bInt,1;
+ bonus bMdef,5;
+ if (readparam(bAgi)>=120) {
+ bonus bBaseAtk,10;
+ bonus bFlee,3;
+ }
+ - Id: 5751
+ AegisName: Minstrel_Song_Hat
+ Name: Minstrel Song Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 628
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bLuk,1;
+ bonus bMdef,5;
+ bonus bLongAtkRate,5;
+ bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10;
+ bonus2 bSkillUseSP,"MI_ECHOSONG",10;
+ - Id: 5752
+ AegisName: Midas_Whisper
+ Name: Midas Whispers
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 629
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,5;
+ bonus bAspd,1;
+ }
+ - Id: 5753
+ AegisName: Magic_Stone_Hat
+ Name: Magic Stone Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 630
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ if (readparam(bDex)>=120) {
+ bonus bMatk,10;
+ bonus bVariableCastrate,-2;
+ }
+ - Id: 5754
+ AegisName: Blazing_Soul
+ Name: Burning Spirit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 631
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bVit,1;
+ bonus bMdef,5;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,10;
+ bonus bHit,3;
+ }
+ - Id: 5755
+ AegisName: Silent_Executer
+ Name: Silent Enforcer
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 100
+ View: 632
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMdef,5;
+ if (readparam(bAgi)>=120) {
+ bonus bBaseAtk,10;
+ bonus bFlee2,5;
+ }
+ - Id: 5756
+ AegisName: Wind_Whisper
+ Name: Wispers of Wind
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 633
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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: 17
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 634
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ bonus bInt,1;
+ bonus bMdef,5;
+ if (readparam(bInt)>=120) {
+ bonus bMatk,10;
+ bonus bDef,5;
+ }
+ - Id: 5758
+ AegisName: Dying_Swan
+ Name: Resting Swan
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 635
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bLuk,1;
+ bonus bMdef,5;
+ bonus bLongAtkRate,5;
+ bonus2 bSkillUseSP,"WA_SWING_DANCE",10;
+ bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10;
+ - Id: 5759
+ AegisName: Noah_Hat
+ Name: Noah Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 636
+ Script: |
+ bonus bMdef,3;
+ - Id: 5760
+ AegisName: Driver_Band_
+ Name: Driver Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 637
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bMdef,5;
+ if (readparam(bStr)>=120) {
+ bonus bBaseAtk,10;
+ bonus bCritical,3;
+ }
+ - Id: 5761
+ AegisName: Sloth_Hat
+ Name: Sloth Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 638
+ Script: |
+ bonus bAgi,2;
+ bonus3 bAutoSpell,"AS_SONICBLOW",5,50;
+ - Id: 5762
+ AegisName: Duneyrr_Helm
+ Name: Duneyrr Helm
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 639
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus2 bSubRace,RC_Brute,2;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ - Id: 5763
+ AegisName: Red_Bunny_Band
+ Name: Red Bunny Band
+ Type: Armor
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 640
+ Script: |
+ bonus bAgi,2;
+ bonus bMdef,3;
+ - Id: 5764
+ AegisName: Love_Rabbit_Hood
+ Name: Love Rabbit Hood
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 549
+ Script: |
+ bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10);
+ - Id: 5765
+ AegisName: Black_Tail_Ribbon
+ Name: Black Tail Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 642
+ Script: |
+ bonus bMdef,5;
+ bonus bLongAtkDef,10;
+ bonus2 bSubEle,Ele_Neutral,5;
+ - Id: 5766
+ AegisName: Amistr_Cap
+ Name: Amistr Cap
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 643
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1+(getrefine()/2);
+ bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1;
+ - Id: 5767
+ AegisName: Samurai_Mask
+ Name: Samurai Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 644
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 5768
+ AegisName: Sakura_Coronet
+ Name: Sakura Coronet
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 645
+ Script: |
+ bonus bMdef,3;
+ bonus bMaxSP,25;
+ - Id: 5769
+ AegisName: Gold_Angel_Sculpture
+ Name: Gold Angel Sculpture
+ Type: Armor
+ Buy: 100
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 646
+ Script: |
+ skill "RG_GRAFFITI",1;
+ - Id: 5770
+ AegisName: Splash_Hat
+ Name: Splash Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 649
+ Script: |
+ autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }";
+ - Id: 5771
+ AegisName: Family_Hat
+ Name: Family Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 650
+ Script: |
+ bonus bDex,1;
+ bonus bMdef,1;
+ bonus bMaxHPrate,2;
+ bonus bMaxSPrate,2;
+ skill "PR_MAGNIFICAT",1;
+ - Id: 5772
+ AegisName: Red_Navy_Hat
+ Name: Red Navy Hat
+ Type: Armor
+ Buy: 3000
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 651
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5773
+ AegisName: Navy_Beret
+ Name: Navy Beret
+ Type: Armor
+ Buy: 3000
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 652
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5774
+ AegisName: Red_Pirate_Hat
+ Name: Red Pirate Hat
+ Type: Armor
+ Buy: 3000
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 496
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5775
+ AegisName: Choco_Donut_In_Mouth
+ Name: Choco Donut In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 653
+ Script: |
+ bonus bMaxHP,50;
+ - Id: 5776
+ AegisName: Blazing_Sun
+ Name: Blazing Sun
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 654
+ Script: |
+ bonus2 bVariableCastrate,"MG_FIREBOLT",-5;
+ bonus2 bSkillAtk,"MG_FIREBOLT",5;
+ bonus2 bVariableCastrate,"MG_FIREBALL",-5;
+ bonus2 bSkillAtk,"MG_FIREBALL",5;
+ bonus2 bSkillAtk,"MG_FIREWALL",3;
+ bonus2 bSkillAtk,"WZ_METEOR",3;
+ bonus bUseSPrate,5;
+ - Id: 5777
+ AegisName: Remover_Hat
+ Name: Remover Hat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 655
+ Script: |
+ bonus bMdef,1;
+ bonus3 bAddMonsterDropItem,713,RC_Formless,200;
+ bonus3 bAddMonsterDropItem,971,RC_Formless,30;
+ bonus3 bAddMonsterDropItem,972,RC_Formless,10;
+ - Id: 5778
+ AegisName: Blue_Arara_Hat
+ Name: Blue Arara Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 656
+ Script: |
+ bonus bStr,2;
+ autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 5779
+ AegisName: Drooping_Boto
+ Name: Drooping Boto
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 657
+ Script: |
+ bonus bInt,2;
+ autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";
+ - Id: 5780
+ AegisName: Tendrilion_Hat
+ Name: Tendrilion Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 658
+ Script: |
+ skill "WZ_EARTHSPIKE",3;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 5781
+ AegisName: Persika
+ Name: Persika
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 659
+ Script: |
+ bonus bFlee,1;
+ bonus bMaxSP,20;
+ - Id: 5782
+ AegisName: Hoplite_Helmet
+ Name: Hoplite Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 660
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 5783
+ AegisName: YellowBunny_Hairband
+ Name: YellowBunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 662
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,2;
+ - Id: 5784
+ AegisName: PinkBunny_Hairband
+ Name: PinkBunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 663
+ Script: |
+ bonus bStr,1;
+ bonus bInt,2;
+ bonus bDex,1;
+ - Id: 5785
+ AegisName: Green_Bunny_Hairband
+ Name: Green Bunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 664
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 5786
+ AegisName: Ancient_Elven_Ear
+ Name: Ancient Elven Ear
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 665
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ bonus bMaxHP,100;
+ bonus bMaxSP,30;
+ - Id: 5787
+ AegisName: Tha_Maero_Mask
+ Name: Tha Maero Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 666
+ Script: |
+ bonus bMdef,2;
+ - Id: 5788
+ AegisName: 3D_Glasses
+ Name: 3D Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Formless,4;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus bUnbreakableHelm;
+ - Id: 5789
+ AegisName: Thanatos_Mal_Mask
+ Name: Thanatos Mal Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 667
+ Script: |
+ bonus bVit,1;
+ - Id: 5790
+ AegisName: Holy_Mom_Love
+ Name: TM
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 610
+ Script: |
+ bonus2 bSubRace,RC_Demon,-5;
+ bonus2 bSubRace,RC_Undead,-5;
+ bonus3 bAutoSpell,"AL_BLESSING",1,20;
+ - Id: 5791
+ AegisName: Tenkaippin_Ramen
+ Name: Tenkaippin Ramen
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 668
+ Script: |
+ bonus bInt,-1;
+ bonus bDex,4;
+ - Id: 5792
+ AegisName: Fish_Pin
+ Name: Fish Pin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 669
+ Script: |
+ bonus2 bSubRace,RC_Fish,1;
+ - Id: 5793
+ AegisName: Ribbon_Of_Life
+ Name: Ribbon Of Life
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 575
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 5794
+ AegisName: 3D_Glasses_
+ Name: 3D Glasses
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@tmp = BaseLevel/30;
+ if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) {
+ bonus bBaseAtk,(3+.@tmp);
+ } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseClass == Job_Soul_Linker) {
+ bonus bMatk,(3+.@tmp);
+ } else if (BaseClass == Job_Thief) {
+ bonus bFleeRate,(1+.@tmp);
+ } else if (BaseClass == Job_Novice || BaseClass == Job_SuperNovice || BaseClass == Job_Taekwon || BaseClass == Job_Star_Gladiator || BaseClass == Job_Star_Gladiator2) {
+ bonus bMaxHP,(50+BaseLevel);
+ bonus bMaxSP,(50+.@tmp);
+ }
+ - Id: 5795
+ AegisName: Red_Dress_Hat
+ Name: Bright Red Dress Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 670
+ Script: |
+ bonus bMdef,7+(getrefine()/2);
+ - Id: 5796
+ AegisName: Cheer_Scarf
+ Name: Cheer Scarf
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ bonus bMaxHP,200;
+ bonus bMaxSP,50;
+ - Id: 5797
+ AegisName: Cheer_Scarf2
+ Name: Cheer Scarf2
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,20;
+ - Id: 5798
+ AegisName: Cheer_Scarf3
+ Name: Cheer Scarf3
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,30;
+ - Id: 5799
+ AegisName: Cheer_Scarf4
+ Name: Cheer Scarf4
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,40;
+ - Id: 5800
+ AegisName: Blush_Of_Groom
+ Name: Blush of Groom
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Mid: true
+ View: 125
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ - Id: 5801
+ AegisName: Ribbon_Of_Bride
+ Name: Red Tailed Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 10
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 167
+ Script: |
+ bonus bAllStats,2;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL") == 10?10:5),20;
+ - Id: 5802
+ AegisName: Upgrade_Elephant_Hat
+ Name: Upgraded Elephant Hat
+ Type: Armor
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 215
+ - Id: 5803
+ AegisName: Flower_Love_Hat
+ Name: Love Flower Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 5
+ Script: |
+ bonus2 bAddMonsterDropItem,608,100;
+ - Id: 5804
+ AegisName: Pirate_Eyepatch
+ Name: Pirate Eye Bandage
+ Type: Armor
+ Buy: 1000
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 13
+ - Id: 5805
+ AegisName: Victorious_Coronet
+ Name: Victorious Coronet
+ Type: Armor
+ Weight: 150
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 43
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,15;
+ bonus bSPrecovRate,5;
+ - Id: 5806
+ AegisName: Poem_Natalia_Hat
+ Name: Poet Natalie's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 9
+ Locations:
+ Head_Top: true
+ View: 67
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5807
+ AegisName: October_Fest_Cap
+ Name: October Fest Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 104
+ - Id: 5808
+ AegisName: Diabolus_Helmet
+ Name: Dark Bacilium
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 364
+ Script: |
+ .@r = getrefine();
+ bonus2 bResEff,Eff_Stone,2000+(.@r*200);
+ bonus2 bResEff,Eff_Freeze,2000+(.@r*200);
+ bonus2 bResEff,Eff_Stun,2000+(.@r*200);
+ - Id: 5809
+ AegisName: Boom_Boom_Hat
+ Name: Boom Boom Hat
+ Type: Armor
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ View: 216
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ bonus bSpeedRate,25;
+ - Id: 5810
+ AegisName: Ph.D_Hat_V
+ Name: Ph.D Hat V
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 98
+ Script: |
+ bonus bInt,5;
+ bonus bVit,3;
+ bonus bDex,3;
+ - Id: 5811
+ AegisName: Santa_Beard
+ Name: Santa's Beard
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 25
+ Script: |
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 5812
+ AegisName: Hat_Of_Expert
+ Name: Hat Of Expert
+ Type: Armor
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 16
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF;
+ bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF;
+ bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF;
+ bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF;
+ bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF;
+ - Id: 5813
+ AegisName: Red_Ph.D_Hat
+ Name: Red Ph.D Hat
+ Type: Armor
+ Buy: 1000
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 481
+ Script: |
+ bonus bInt,1;
+ - Id: 5814
+ AegisName: Ati_Atihan_Hat3
+ Name: Ati Atihan Hat3
+ Type: Armor
+ Buy: 20
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 303
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5815
+ AegisName: Classic_Hat_J
+ Name: Classic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 475
+ Script: |
+ bonus bStr,1;
+ bonus2 bSubSize,Size_All,5;
+ - Id: 5816
+ AegisName: Cowboy_Hat_J
+ Name: Purple Cowboy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 411
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bFlee,-5;
+ - Id: 5817
+ AegisName: Valentine_Pledge
+ Name: Valentine Pledge
+ Type: Armor
+ Buy: 20
+ Defense: 6
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMdef,3;
+ bonus bHealPower,10;
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ bonus bFlee,10;
+ bonus bAspdRate,1;
+ - Id: 5818
+ AegisName: Carnival_Hat
+ Name: Carnival Hat
+ Type: Armor
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 505
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5819
+ AegisName: Carnival_Circlet
+ Name: Carnival Circlet
+ Type: Armor
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 506
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5820
+ AegisName: Black_Elven_Ears
+ Name: Black Elven Ears
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ View: 498
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5821
+ AegisName: Gold_Tulip_Hairpin
+ Name: Gold Tulip Hairpin
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 499
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,5;
+ - Id: 5822
+ AegisName: Love_Chick_Hat
+ Name: Love Chick Hat
+ Type: Armor
+ Buy: 10000
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 500
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,4;
+ bonus bMaxHP,100;
+ bonus bMaxSP,100;
+ bonus2 bSubRace,RC_Brute,7;
+ bonus2 bSubRace,RC_Player_Doram,7;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ - Id: 5823
+ AegisName: Love_Arrow
+ Name: Arrow of Love
+ Type: Armor
+ Buy: 5000
+ Weight: 100
+ Defense: 2
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,5;
+ bonus bAgi,5;
+ - Id: 5824
+ AegisName: Fools_Day_Hat
+ Name: Fools Day Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 265
+ - Id: 5825
+ AegisName: Badge_Of_Order_Grace
+ Name: Badge Of Order Grace
+ Type: Armor
+ Defense: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bMdef,1;
+ bonus2 bAddClass,Class_All,10;
+ bonus bMatkRate,10;
+ bonus bMaxHP,1500;
+ - Id: 5826
+ AegisName: Valkyrie_Helmet
+ Name: Valkyrie Helmet
+ Type: Armor
+ Defense: 10
+ Locations:
+ Head_Top: true
+ View: 225
+ Script: |
+ bonus bStr,2;
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus bAgi,2;
+ bonus bAspdRate,3;
+ bonus bMdef,5;
+ bonus bCastrate,-3;
+ - Id: 5827
+ AegisName: Book_File_Hat
+ Name: Book File Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 423
+ - Id: 5828
+ AegisName: Honor_Gold_Ring
+ Name: Honor Gold Ring
+ Type: Armor
+ Weight: 50
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ - Id: 5829
+ AegisName: Ordinary_Armor
+ Name: Ordinary Armor
+ Type: Armor
+ Locations:
+ Armor: true
+ EquipLevelMin: 30
+ Refineable: true
+ - Id: 5830
+ AegisName: Woe_Sahkkat
+ Name: Woe Sahkkat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 67
+ - Id: 5831
+ AegisName: Woe_Big_Sis_Ribbon
+ Name: Woe Big Sis Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 28
+ - Id: 5832
+ AegisName: Woe_Vane_Hairpin
+ Name: Woe Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 313
+ - Id: 5833
+ AegisName: Woe_Picnic_Hat
+ Name: Woe Picnic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 117
+ - Id: 5834
+ AegisName: Woe_Crown
+ Name: Woe Crown
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 45
+ - Id: 5835
+ AegisName: Woe_Tiara
+ Name: Woe Tiara
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 19
+ - Id: 5836
+ AegisName: Woe_Boys_Cap
+ Name: Woe Boys Cap
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 102
+ - Id: 5837
+ AegisName: Woe_Sunglass
+ Name: Woe Sunglass
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 12
+ - Id: 5838
+ AegisName: Woe_Fin_Helm
+ Name: Woe Fin Helm
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 100
+ - Id: 5839
+ AegisName: Woe_Blush
+ Name: Woe Blush
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 125
+ - Id: 5840
+ AegisName: Woe_Elven_Ears
+ Name: Woe Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 73
+ - Id: 5841
+ AegisName: Shaman_Hat_
+ Name: Shaman Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 596
+ Script: |
+ bonus bLuk,2;
+ bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Water,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Earth,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Fire,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Wind,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Poison,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Holy,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Dark,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC;
+ bonus3 bSubEle,Ele_Undead,3,BF_MAGIC;
+ - Id: 5842
+ AegisName: Loyal_Ring1
+ Name: Loyal Ring1
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ - Id: 5843
+ AegisName: Loyal_Ring2
+ Name: Loyal Ring2
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,2;
+ - Id: 5844
+ AegisName: Loyal_Ring3
+ Name: Loyal Ring3
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,3;
+ - Id: 5845
+ AegisName: Buzzy_Ball_Board
+ Name: Buzzy Ball Board
+ Type: Armor
+ Buy: 50
+ Weight: 400
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 641
+ - Id: 5846
+ AegisName: Buzzy_Ball_Gum
+ Name: Buzzy Ball Gum
+ Type: Armor
+ Buy: 50
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 572
+ Script: |
+ bonus bMdef,5;
+ - Id: 5847
+ AegisName: Fools_Day_hat_
+ Name: Fools Day Helmet
+ Type: Armor
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 647
+ Script: |
+ bonus bInt,5;
+ bonus bVit,-3;
+ - Id: 5848
+ AegisName: Robin_Eyepatch
+ Name: Robin Eyepatch
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 50
+ - Id: 5849
+ AegisName: Doctor_Hairband
+ Name: Doctor Hairband
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 60
+ - Id: 5850
+ AegisName: Golden_Savage_Hat
+ Name: Golden Savage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 648
+ - Id: 5851
+ AegisName: Summer_Knight
+ Name: Summer Knight
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 138
+ - Id: 5852
+ AegisName: Easter_Egg_Shell
+ Name: Easter Egg Shell
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 537
+ Script: |
+ bonus bDef,-7;
+ bonus bMdef,-7;
+ bonus2 bHPRegenRate,(MaxHp/100),10000;
+ .@r = getrefine();
+ if (.@r>=7)
+ bonus bFlee,2;
+ if (.@r >= 9)
+ bonus2 bSPRegenRate,(MaxSp/100),10000;
+ - Id: 5853
+ AegisName: IdRO_Crown
+ Name: IdRO Crown
+ Type: Armor
+ Buy: 10
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 165
+ Script: |
+ bonus bHPrecovRate,7;
+ bonus bSPrecovRate,7;
+ if (getrefine()>7) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ bonus bMdef,2;
+ }
+ - Id: 5855
+ AegisName: Fishing_Rod
+ Name: Fishing Rod
+ Type: Armor
+ Buy: 10
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 5856
+ AegisName: Passion_FB_Hat
+ Name: Passion FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 671
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,2;
+ autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",20,10000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 5857
+ AegisName: Cool_FB_Hat
+ Name: Cool FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 672
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ bonus bVit,2;
+ autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";
+ - Id: 5858
+ AegisName: Victory_FB_Hat
+ Name: Victory FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 673
+ Trade:
+ 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; }";
+ - Id: 5859
+ AegisName: Glory_FB_Hat
+ Name: Glory FB Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 674
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bAspd,1;
+ bonus bBaseAtk,BaseLevel/7;
+ bonus bMatk,BaseLevel/7;
+ - Id: 5864
+ AegisName: Shadow_Booster
+ Name: Magical Booster
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 873
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspd,1;
+ bonus bDelayrate,-1;
+ - Id: 5868
+ AegisName: Bushy_Moustache
+ Name: Bushy Moustache
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 1004
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ - Id: 5869
+ AegisName: Mimic_Egg_Shell
+ Name: Mimic Egg Shell
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 999
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stone,600;
+ bonus bSpeedRate,25;
+ - Id: 5870
+ AegisName: Bunny_Egg_Shell
+ Name: Bunny Egg Shell
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1000
+ Script: |
+ bonus bAgi,3;
+ bonus bAspd,1;
+ - Id: 5871
+ AegisName: Picky_Egg_Shell
+ Name: Picky Egg Shell
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1001
+ Script: |
+ bonus bVit,3;
+ bonus bMdef,2;
+ - Id: 5873
+ AegisName: Helmet_Of_Siegfried
+ Name: Helmet Of Siegfried
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 1055
+ Script: |
+ bonus bAllStats,5;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5;
+ bonus2 bHPLossRate,600,4000;
+ bonus bUnbreakableHelm;
+ - Id: 5874
+ AegisName: Circlet_Of_Kriemhild
+ Name: Circlet Of Kriemhild
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 1056
+ Script: |
+ bonus bAllStats,5;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5;
+ bonus2 bHPLossRate,400,4000;
+ bonus bUnbreakableHelm;
+ - Id: 5875
+ AegisName: Diadem_Of_Bruenhild
+ Name: Diadem Of Bruenhild
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 1057
+ Script: |
+ bonus bAllStats,5;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5;
+ bonus2 bHPLossRate,300,4000;
+ bonus bUnbreakableHelm;
+ - Id: 5878
+ AegisName: Miracle_Blue_Rose
+ Name: Miracle Blue Rose
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 1064
+ Script: |
+ bonus bLuk,1;
+ bonus3 bAutoSpell,"PR_ASPERSIO",1,20;
+ - Id: 5881
+ AegisName: Weissbier_Hat
+ Name: Weissbier Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1079
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus bDex,10;
+ if (getrefine()>6) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bDex,5;
+ }
+ - Id: 5882
+ AegisName: Red_Wizardry_Hat_C
+ Name: Red Mage Hat C
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 282
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5883
+ AegisName: White_Wizardry_Hat_C
+ Name: Gray Mage Hat C
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 283
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5884
+ AegisName: Gray_Wizardry_Hat_C
+ Name: Brown Mage Hat C
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 284
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5885
+ AegisName: Blue_Wizardry_Hat_C
+ Name: Blue Mage Hat C
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 285
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5886
+ AegisName: Yellow_Wizardry_Hat_C
+ Name: Yellow Mage Hat C
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 286
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ - Id: 5887
+ AegisName: Half_L_Magestic_Goat
+ Name: Half L Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 380
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 1106
+ Script: |
+ bonus bAllStats,5;
+ skill "AL_TELEPORT",1;
+ EquipScript: |
+ sc_start SC_SPEEDUP0,INFINITE_TICK,25;
+ UnEquipScript: |
+ sc_end SC_SPEEDUP0;
+ - Id: 5893
+ AegisName: RCC2013_2ND_CROWN
+ Name: RCC2013 2ND CROWN
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 1107
+ Script: |
+ bonus bAllStats,4;
+ skill "AL_TELEPORT",1;
+ EquipScript: |
+ sc_start SC_SPEEDUP0,INFINITE_TICK,25;
+ UnEquipScript: |
+ sc_end SC_SPEEDUP0;
+ - Id: 5894
+ AegisName: RCC2013_3RD_CROWN
+ Name: RCC2013 3RD CROWN
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 1108
+ Script: |
+ bonus bAllStats,3;
+ skill "AL_TELEPORT",1;
+ EquipScript: |
+ sc_start SC_SPEEDUP0,INFINITE_TICK,25;
+ UnEquipScript: |
+ sc_end SC_SPEEDUP0;
+ - Id: 5895
+ AegisName: RCC2013_ANV_Hat
+ Name: RCC2013 ANV Hat
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 1109
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ - Id: 5900
+ AegisName: Divine_Guard_Hat_
+ Name: Divine Guard Hat
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1121
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_All,5;
+ if (.@r>=7) {
+ .@level = getskilllv("AL_HEAL");
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",20;
+ }
+ - Id: 5901
+ AegisName: Focus_Beret_
+ Name: Focus Beret
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1122
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100;
+ if (.@r>=7) {
+ autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }";
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SR_FALLENEMPIRE",30;
+ }
+ - Id: 5902
+ AegisName: Harvester_Hat_
+ Name: Harvester Hat
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1123
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddMonsterDropItem,6211,100;
+ bonus2 bAddMonsterDropItem,6212,100;
+ if (.@r>=7) {
+ bonus2 bAddMonsterDropItem,6210,50;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ }
+ - Id: 5903
+ AegisName: Hitaikakushi_
+ Name: Deadman Bandana
+ Type: Armor
+ Weight: 200
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 1124
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ .@rate = 1;
+ bonus bCritical,.@r*2;
+ bonus bFixedCastrate,-2;
+ if (.@r>=7) {
+ bonus bMatk,20;
+ .@rate += 3;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-20;
+ bonus2 bSkillUseSP,"SL_STUN",5;
+ bonus2 bSkillUseSP,"SL_SMA",5;
+ }
+ bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10);
+ - Id: 5904
+ AegisName: Inconspicuous_Hat_
+ Name: Inconspicuous Hat
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ .@matk = 5;
+ }
+ bonus bMatkRate,(7+.@matk);
+ if (.@r>=7) {
+ bonus bMatk,(readparam(bInt)/5)*2;
+ }
+ - Id: 5905
+ AegisName: Lyrica_Hat_
+ Name: Lyrica Hat
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1126
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ }
+ - Id: 5906
+ AegisName: Oni_Horns_
+ Name: Oni Horns
+ Type: Armor
+ Weight: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1127
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING"));
+ .@r = getrefine();
+ if (.@r > 6) {
+ bonus bBaseAtk,20;
+ bonus bHit,5;
+ }
+ if (.@r > 9) {
+ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10;
+ }
+ - Id: 5907
+ AegisName: Sea_Captain_Hat_
+ Name: Sea Captain Hat
+ Type: Armor
+ Weight: 200
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1128
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",20;
+ .@dmg = 20;
+ .@r = getrefine();
+ if (.@r>=7) {
+ .@dmg += getskilllv("BS_WEAPONRESEARCH");
+ }
+ if (.@r>=9) {
+ .@dmg += getskilllv("NC_TRAININGAXE");
+ }
+ bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg;
+ - Id: 5909
+ AegisName: C_Valkyrie_Circlet
+ Name: C Valkyrie Circlet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 940
+ - Id: 5914
+ AegisName: Earmuff_Flowerform
+ Name: C Flutter Butterfly
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1378
+ Script: |
+ hateffect HAT_EF_FLUTTER_BUTTERFLY,true;
+ UnEquipScript: |
+ hateffect HAT_EF_FLUTTER_BUTTERFLY,false;
+ - Id: 5915
+ AegisName: Roundly_Woolly_Hat
+ Name: Costume Angel Veil
+ Type: Armor
+ View: 1168
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ 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
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 1170
+ Script: |
+ bonus bLongAtkDef,3;
+ - Id: 5918
+ AegisName: Gambler_Seal
+ Name: Gambler Seal
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1202
+ Script: |
+ .@dex = readparam(bDex);
+ .@luk = readparam(bLuk);
+ .@critical = 3 + (.@luk / 10);
+ .@critical_dmg = 3 - (.@dex/10) * 2;
+ .@sub_arrowstorm = 10;
+ .@sub_gateofhell = 10;
+ bonus bBaseAtk,(.@luk/10)*2;
+ bonus bMatk,(.@luk / 10) * 2;
+ if (.@luk > 107) {
+ .@critical += 5;
+ .@critical_dmg += 10;
+ }
+ if (.@luk > 119) {
+ .@critical += 10;
+ .@critical_dmg += 17;
+ .@sub_arrowstorm += 30;
+ .@sub_gateofhell += 30;
+ }
+ bonus bCritical,.@critical;
+ bonus bCritAtkRate,.@critical_dmg;
+ bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm;
+ bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell;
+ - Id: 5919
+ AegisName: Camellia_Hair_Pin
+ Name: Camellia Hair Pin
+ Type: Armor
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1203
+ Script: |
+ bonus bMdef,20;
+ bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5;
+ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true);
+ /* CONFIRM The Rate*/
+ UnEquipScript: |
+ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);
+ - Id: 5920
+ AegisName: Medical_Boots
+ Name: Medical Boots
+ Type: Armor
+ Weight: 300
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower,10+((.@r/2) * 2);
+ bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5);
+ - Id: 5921
+ AegisName: Monster_Fish_Gill
+ Name: Monster Fish Gills
+ Type: Armor
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 80
+ View: 1287
+ Script: |
+ bonus2 bAddSize,Size_All,1;
+ bonus bLongAtkRate,2;
+ if (readparam(bStr)>=108) {
+ bonus2 bAddSize,Size_All,1;
+ bonus bLongAtkRate,2;
+ }
+ if (readparam(bStr)>=120) {
+ bonus2 bAddSize,Size_All,2;
+ bonus bLongAtkRate,3;
+ }
+ - Id: 5936
+ AegisName: 8_Type_PurgatorialWing
+ Name: 8Way Wings of Purgatory
+ Type: Armor
+ View: 1008
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ Script: |
+ bonus2 bSubRace,RC_Dragon,5;
+ - Id: 5937
+ AegisName: Flying_Helmet
+ Name: Flying Helmet
+ Type: Armor
+ Buy: 1
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 820
+ Script: |
+ bonus bMdef,5;
+ bonus bHPGainValue,100;
+ bonus2 bSPGainRace,RC_Dragon,5;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus2 bSubRace,RC_Dragon,5;
+ }
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Dragon,5;
+ }
+ - Id: 5938
+ AegisName: Octopus_Hat_J
+ Name: Octopus Hat
+ Type: Armor
+ Buy: 20
+ Weight: 880
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 538
+ Script: |
+ bonus bMdef,8;
+ bonus bUnbreakableHelm,1;
+ bonus2 bAddItemHealRate,579,50;
+ bonus2 bAddItemHealRate,544,125;
+ bonus2 bAddItemHealRate,551,125;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus2 bAddItemHealRate,579,50;
+ bonus2 bAddItemHealRate,544,125;
+ bonus2 bAddItemHealRate,551,125;
+ }
+ if (.@r>=6) {
+ bonus2 bAddItemHealRate,579,50;
+ bonus2 bAddItemHealRate,544,125;
+ bonus2 bAddItemHealRate,551,125;
+ }
+ if (.@r>=7) {
+ bonus2 bAddItemHealRate,579,50;
+ bonus2 bAddItemHealRate,544,125;
+ bonus2 bAddItemHealRate,551,125;
+ }
+ - Id: 5943
+ AegisName: Owlviscount_Silk_Hat
+ Name: Owl Viscount Silk Hat
+ Type: Armor
+ Weight: 500
+ Defense: 15
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 1323
+ Script: |
+ bonus bInt,1;
+ bonus bAspdRate,10;
+ .@r = getrefine();
+ bonus bMatk,7*.@r;
+ autobonus "{ .@r = getrefine(); bonus bAspdRate,(.@r >= 9 ? 40 : ((.@r >= 7) ? 10 : ((.@r >= 5) ? 5 : 1))); }",.@r*20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ - Id: 5944
+ AegisName: Thief_Hood
+ Name: Thief Bandana
+ Type: Armor
+ View: 776
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus2 bSPGainRace,RC_DemiHuman,5;
+ bonus bHPGainValue,100;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_DemiHuman,10;
+ }
+ else if (.@r>=5) {
+ bonus2 bSubRace,RC_DemiHuman,5;
+ }
+ - Id: 5945
+ AegisName: Well_Chewed_Pencil
+ Name: Well-Chewed Pencil
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 931
+ Script: |
+ bonus bStr,1;
+ autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ /* Unknow rate and specialeffect */
+ - Id: 5965
+ AegisName: _Riot_Chip
+ Name: Riot Chip
+ Type: Armor
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1201
+ Script: |
+ bonus bFixedCastrate,-50;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,.@r;
+ bonus2 bMagicAddClass,Class_All,.@r;
+ - Id: 5966
+ AegisName: KarduiEar
+ Name: KarduiEar
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1357
+ Script: |
+ .@dex = readparam(bDex);
+ bonus bMatk,(.@dex > 10) ? .@dex/10*2 : 0;
+ if (.@dex > 107) {
+ bonus bVariableCastrate,-10;
+ bonus bMatk,60;
+ }
+ if (.@dex > 119) {
+ bonus bVariableCastrate,-5;
+ bonus bMatk,100;
+ }
+ - Id: 5967
+ AegisName: FlyingGalapago
+ Name: Flying Galapago
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 110
+ View: 1358
+ Script: |
+ set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1);
+ set .@luk,min(readparam(bLuk),120);
+ bonus bAgi,1;
+ bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2);
+ bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40;
+ - Id: 5968
+ AegisName: DVAngelNurseCap
+ Name: DVAngelNurseCap
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1359
+ Script: |
+ if (BaseClass == Job_Acolyte)
+ bonus bHealPower,3;
+ bonus bNoCastCancel;
+ .@r = getrefine();
+ bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0));
+ - Id: 5969
+ AegisName: QueenAnzRevenge
+ Name: QueenAnzRevenge
+ Type: Armor
+ Weight: 400
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1360
+ Script: |
+ bonus bStr,5;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0)));
+ bonus bNoSizeFix;
+ - Id: 5971
+ AegisName: Moon_Eyepatch
+ Name: Moon Eyepatch
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 1370
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ - Id: 5972
+ AegisName: Chatty_Parrot
+ Name: Chatty Parrot
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 1116
+ Script: |
+ bonus bMatkRate,BaseLevel/50;
+ bonus bVariableCast,-readparam(bInt)/30;
+ - Id: 5973
+ AegisName: Ancient_Elven_Ear_J
+ Name: Ancient Elven Ear J
+ Type: Armor
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 665
+ Script: |
+ bonus bLuk,10;
+ bonus bMdef,10;
+ bonus bFlee2,2;
+ - Id: 5975
+ AegisName: Zherlthsh_Doll
+ Name: Zealotus Doll
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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: Toy_Syringe
+ Name: Toy Syringe
+ Type: Armor
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 842
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddItemHealRate,545,150;
+ bonus2 bAddItemHealRate,546,150;
+ bonus2 bAddItemHealRate,547,150;
+ - Id: 5979
+ AegisName: C_Angel_Fluttering
+ Name: C Angel Fluttering
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1380
+ Script: |
+ hateffect HAT_EF_ANGEL_FLUTTERING,true;
+ UnEquipScript: |
+ hateffect HAT_EF_ANGEL_FLUTTERING,false;
+ - Id: 5980
+ AegisName: C_Classical_Fhat
+ Name: C Classical Fhat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1381
+ - Id: 5985
+ AegisName: Noble_Mask
+ Name: Noble Mask
+ Type: Armor
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ 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;
+ }
+ - Id: 9001
+ AegisName: Poring_Egg
+ Name: Poring Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9002
+ AegisName: Drops_Egg
+ Name: Drops Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9003
+ AegisName: Poporing_Egg
+ Name: Poporing Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9004
+ AegisName: Lunatic_Egg
+ Name: Lunatic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9005
+ AegisName: Picky_Egg
+ Name: Picky Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9006
+ AegisName: Chonchon_Egg
+ Name: Chonchon Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9007
+ AegisName: Steel_Chonchon_Egg
+ Name: Steel Chonchon Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9008
+ AegisName: Hunter_Fly_Egg
+ Name: Hunter Fly Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9009
+ AegisName: Savage_Bebe_Egg
+ Name: Savage Babe Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9010
+ AegisName: Baby_Desert_Wolf_Egg
+ Name: Baby Desert Wolf Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9011
+ AegisName: Rocker_Egg
+ Name: Rocker Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9012
+ AegisName: Spore_Egg
+ Name: Spore Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9013
+ AegisName: Poison_Spore_Egg
+ Name: Poison Spore Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9014
+ AegisName: PecoPeco_Egg
+ Name: Peco Peco Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9015
+ AegisName: Smokie_Egg
+ Name: Smokie Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9016
+ AegisName: Yoyo_Egg
+ Name: Yoyo Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9017
+ AegisName: Orc_Warrior_Egg
+ Name: Orc Warrior Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9018
+ AegisName: Munak_Egg
+ Name: Munak Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9019
+ AegisName: Dokkaebi_Egg
+ Name: Dokebi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9020
+ AegisName: Sohee_Egg
+ Name: Sohee Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9021
+ AegisName: Isis_Egg
+ Name: Isis Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9022
+ AegisName: Green_Petite_Egg
+ Name: Green Petite Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9023
+ AegisName: Deviruchi_Egg
+ Name: Deviruchi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9024
+ AegisName: Bapho_Jr._Egg
+ Name: Bapho Jr. Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9025
+ AegisName: Bongun_Egg
+ Name: Bongun Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9026
+ AegisName: Zherlthsh_Egg
+ Name: Zealotus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9027
+ AegisName: Alice_Egg
+ Name: Alice Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9028
+ AegisName: Rice_Cake_Egg
+ Name: Hard Rice Cake
+ Type: Petegg
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 9029
+ AegisName: Santa_Goblin_Egg
+ Name: Christmas Goblin's Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9030
+ AegisName: Chung_E_Egg
+ Name: Green Maiden Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9031
+ AegisName: Spring_Rabbit_Egg
+ Name: Spring Rabbit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9032
+ AegisName: Knife_Goblin_Egg
+ Name: Knife Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9033
+ AegisName: Flail_Goblin_Egg
+ Name: Flail Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9034
+ AegisName: Hammer_Goblin_Egg
+ Name: Hammer Goblin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9035
+ AegisName: Red_Deleter_Egg
+ Name: Red Deleter Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9036
+ AegisName: Diabolic_Egg
+ Name: Diabolic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9037
+ AegisName: Wanderer_Egg
+ Name: Wanderer Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9038
+ AegisName: New_Year_Doll_Egg
+ Name: New Year Doll Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9039
+ AegisName: Bacsojin_Egg
+ Name: Bacsojin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9040
+ AegisName: Civil_Servant_Egg
+ Name: Civil Servant Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9041
+ AegisName: Leaf_Cat_Egg
+ Name: Leaf Cat Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9042
+ AegisName: Loli_Ruri_Egg
+ Name: Loli Ruri Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9043
+ AegisName: Marionette_Egg
+ Name: Marionette Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9044
+ AegisName: Shinobi_Egg
+ Name: Shinobi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9045
+ AegisName: Whisper_Egg
+ Name: Whisper Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9046
+ AegisName: Goblin_Leader_Egg
+ Name: Goblin Leader Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9047
+ AegisName: Wicked_Nymph_Egg
+ Name: Wicked Nymph Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9048
+ AegisName: Miyabi_Ningyo_Egg
+ Name: Miyabi Ningyo Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9049
+ AegisName: Dullahan_Egg
+ Name: Dullahan Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9050
+ AegisName: Medusa_Egg
+ Name: Medusa Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9051
+ AegisName: Stone_Shooter_Egg
+ Name: Stone Shooter Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9052
+ AegisName: Incubus_Egg
+ Name: Incubus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9053
+ AegisName: Golem_Egg
+ Name: Golem Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9054
+ AegisName: Nightmare_Terror_Egg
+ Name: Nightmare Terror Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9055
+ AegisName: Succubus_Egg
+ Name: Succubus Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9056
+ AegisName: Imp_Egg
+ Name: Imp Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9057
+ AegisName: Egg_Of_Tiny
+ Name: Egg Of Tiny
+ Type: Petegg
+ Buy: 20
+ - Id: 9058
+ AegisName: Snow_Rabbit_Egg
+ Name: Christmas Snow Rabbit Egg
+ Type: Petegg
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 9059
+ AegisName: Tikbalang_Pet
+ Name: Tikbalang Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9060
+ AegisName: Brownie_Egg
+ Name: Domovoi Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9061
+ AegisName: Marin_Egg
+ Name: Marin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9062
+ AegisName: Novice_Poring_Egg
+ Name: Novice Poring Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9063
+ AegisName: Woodie_Egg
+ Name: Woodie Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9064
+ AegisName: Elephant_Egg
+ Name: Elephant Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9065
+ AegisName: Gorilla_Egg
+ Name: Gorilla Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9066
+ AegisName: Lion_Egg
+ Name: Lion Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9067
+ AegisName: Rhino_Egg
+ Name: Rhino Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9068
+ AegisName: Blue_Unicorn_Egg
+ Name: Blue Unicorn Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9069
+ AegisName: Mastering_Egg
+ Name: Mastering Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9070
+ AegisName: Savage_Egg
+ Name: Savage Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9071
+ AegisName: Grand_Peco_Egg
+ Name: Grand Peco Peco Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9072
+ AegisName: Orc_Hero_Egg
+ Name: Orc Hero Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9073
+ AegisName: Orc_Lord_Egg
+ Name: Orc Lord Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9074
+ AegisName: Rubylit_Egg
+ Name: Rubylit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9075
+ AegisName: Sapphilit_Egg
+ Name: Sapphilit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9076
+ AegisName: Emelit_Egg
+ Name: Emelit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9077
+ AegisName: Topalit_Egg
+ Name: Topalit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9078
+ AegisName: Amelit_Egg
+ Name: Amelit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9079
+ AegisName: Mythlit_Egg
+ Name: Mythlit Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9080
+ AegisName: Tamadora_Egg
+ Name: Tamadora Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9087
+ AegisName: High_Orc_Egg
+ Name: High Orc Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9088
+ AegisName: Angeling_Egg
+ Name: Angeling Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9089
+ AegisName: Ammut_Egg
+ Name: Am Mut Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9090
+ AegisName: Littleisis_Egg
+ Name: Little Isis Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9091
+ AegisName: Choco_Egg
+ Name: Choco Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9092
+ AegisName: Eggring_Egg
+ Name: Eggring Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9093
+ AegisName: Hyegun_Egg
+ Name: Hyegun Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9094
+ AegisName: Leaf_Lunatic_Egg
+ Name: Leaf Lunatic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9095
+ AegisName: Nine_Tail_Egg
+ Name: Nine Tail Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9096
+ AegisName: Cat_O_Nine_Tail_Egg
+ Name: Cat o Nine Tail Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9097
+ AegisName: Diabolic_Egg2
+ Name: Diabolic Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9098
+ AegisName: Red_Deleter_Egg2
+ Name: Fire Deleter Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9099
+ AegisName: Teddy_Bear_Egg
+ Name: Teddy Bear Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9100
+ AegisName: Gremlin_Egg
+ Name: Gremlin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9101
+ AegisName: Scatletoncarrier
+ Name: Scatleton's Cage
+ Type: Petegg
+ Buy: 20
+ - Id: 9102
+ AegisName: Mummy_Egg
+ Name: Mummy Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9103
+ AegisName: Wilow_Egg
+ Name: Willow Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9104
+ AegisName: Roween_Egg
+ Name: Roween Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9105
+ AegisName: Hodremlin_Egg
+ Name: Hodremlin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9106
+ AegisName: Metaller_Egg
+ Name: Metaller Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9107
+ AegisName: Ancient_Mummy_Egg
+ Name: Ancient Mummy Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9108
+ AegisName: Xm_Teddybear_Egg
+ Name: Xmas Teddy Bear Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9109
+ AegisName: Sweet_Drops_Egg
+ Name: Sweet Drops Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9111
+ AegisName: Phreeoni_Egg
+ Name: Phreeoni Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9112
+ AegisName: Moonlight_Egg
+ Name: Moonlight Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9113
+ AegisName: Roost_Of_Skelion
+ Name: Roost Of Skelion
+ Type: Petegg
+ Buy: 20
+ - Id: 9114
+ AegisName: Pouring_Egg
+ Name: Pouring Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9115
+ AegisName: Bacsojin2_Egg_
+ Name: Bacsojin Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9116
+ AegisName: Rigid_Nightmare_Terror_Egg
+ Name: Rigid Nightmare Terror Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9117
+ AegisName: Contaminated_Wanderer_Egg
+ Name: Contaminated Wanderer Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9118
+ AegisName: Aliot_Egg
+ Name: Aliot Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9119
+ AegisName: Alicel_Egg
+ Name: Alicel Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9120
+ AegisName: Aliza_Egg
+ Name: Aliza Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9121
+ AegisName: Orc_Hero_Egg_
+ Name: Orc Hero Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9122
+ AegisName: Gloom_Under_Egg
+ Name: Gloom Under Night Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9123
+ AegisName: Ep_17_2_C_Admin1_Egg
+ Name: Child Admin Beta Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 9124
+ AegisName: Ep_17_2_C_Admin2_Egg
+ Name: Child Admin Alpha Egg
+ Type: Petegg
+ Buy: 20
+ - Id: 10001
+ AegisName: Skull_Helm
+ Name: Skull Helm
+ Type: Petarmor
+ Buy: 20
+ - Id: 10002
+ AegisName: Monster_Oxygen_Mask
+ Name: Monster Oxygen Mask
+ Type: Petarmor
+ Buy: 20
+ - Id: 10003
+ AegisName: Transparent_Headgear
+ Name: Transparent Head Protector
+ Type: Petarmor
+ Buy: 20
+ - Id: 10004
+ AegisName: Pacifier
+ Name: Pacifier
+ Type: Petarmor
+ Buy: 20
+ - Id: 10005
+ AegisName: Wig
+ Name: Wig
+ Type: Petarmor
+ Buy: 20
+ - Id: 10006
+ AegisName: Queen's_Hair_Ornament
+ Name: Queen's Hair Ornament
+ Type: Petarmor
+ Buy: 20
+ - Id: 10007
+ AegisName: Silk_Ribbon
+ Name: Silk Ribbon
+ Type: Petarmor
+ Buy: 20
+ - Id: 10008
+ AegisName: Punisher
+ Name: Punisher
+ Type: Petarmor
+ Buy: 20
+ - Id: 10009
+ AegisName: Wild_Flower
+ Name: Wild Flower
+ Type: Petarmor
+ Buy: 20
+ - Id: 10010
+ AegisName: Battered_Pot
+ Name: Battered Pot
+ Type: Petarmor
+ Buy: 20
+ - Id: 10011
+ AegisName: Stellar_Hairpin
+ Name: Stellar Hairpin
+ Type: Petarmor
+ Buy: 20
+ - Id: 10012
+ AegisName: Tiny_Egg_Shell
+ Name: Tiny Egg Shell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10013
+ AegisName: Backpack
+ Name: Backpack
+ Type: Petarmor
+ Buy: 1500
+ - Id: 10014
+ AegisName: Rocker_Glasses
+ Name: Rocker Glasses
+ Type: Petarmor
+ Buy: 2000
+ - Id: 10015
+ AegisName: Green_Lace
+ Name: Green Lace
+ Type: Petarmor
+ Buy: 20
+ - Id: 10016
+ AegisName: Golden_Bell
+ Name: Golden Bell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10017
+ AegisName: Bark_Shorts
+ Name: Bark Shorts
+ Type: Petarmor
+ Buy: 20
+ - Id: 10018
+ AegisName: Monkey_Circlet
+ Name: Monkey Circlet
+ Type: Petarmor
+ Buy: 20
+ - Id: 10019
+ AegisName: Red_Muffler
+ Name: Red Scarf
+ Type: Petarmor
+ Buy: 20
+ - Id: 10020
+ AegisName: Sword_Of_Grave_Keeper
+ Name: Grave Keeper's Sword
+ Type: Petarmor
+ Buy: 20
+ - Id: 10021
+ AegisName: Round_Hair_Ornament
+ Name: Circular Headgear
+ Type: Petarmor
+ Buy: 20
+ - Id: 10022
+ AegisName: Golden_Earing
+ Name: Gold Earring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10023
+ AegisName: Green_Lucky_Bag
+ Name: Green Jewel Bag
+ Type: Petarmor
+ Buy: 20
+ - Id: 10024
+ AegisName: Fashionable_Glasses
+ Name: Fashion Glasses
+ Type: Petarmor
+ Buy: 20
+ - Id: 10025
+ AegisName: Star_Hairband
+ Name: Hairband Of Stars
+ Type: Petarmor
+ Buy: 20
+ - Id: 10026
+ AegisName: Wine_On_Sleeve
+ Name: Tassel for Durumagi
+ Type: Petarmor
+ Buy: 20
+ - Id: 10027
+ AegisName: Spirit_Chain_
+ Name: Pet Soul Ring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10028
+ AegisName: Nice_Badge
+ Name: Beautiful Badges
+ Type: Petarmor
+ Buy: 20
+ - Id: 10029
+ AegisName: Jade_Trinket
+ Name: Jade Trinket
+ Type: Petarmor
+ Buy: 20
+ - Id: 10030
+ AegisName: Summer_Fan
+ Name: Summer Fan
+ Type: Petarmor
+ Buy: 20
+ - Id: 10031
+ AegisName: Death_Coil
+ Name: Ring Of Death
+ Type: Petarmor
+ Buy: 20
+ - Id: 10032
+ AegisName: Queen's_Coronet
+ Name: Queen's Coronet
+ Type: Petarmor
+ Buy: 20
+ - Id: 10033
+ AegisName: Apro_Hair
+ Name: Afro
+ Type: Petarmor
+ Buy: 20
+ - Id: 10034
+ AegisName: Ball_Mask
+ Name: Masked Ball
+ Type: Petarmor
+ Buy: 20
+ - Id: 10035
+ AegisName: Windup_Spring
+ Name: Spring
+ Type: Petarmor
+ Buy: 20
+ - Id: 10036
+ AegisName: Hell_Horn
+ Name: Horn Of Hell
+ Type: Petarmor
+ Buy: 20
+ - Id: 10037
+ AegisName: Black_Butterfly_Mask
+ Name: Black Butterfly Mask
+ Type: Petarmor
+ Buy: 20
+ - Id: 10038
+ AegisName: Horn_Protector
+ Name: Horn Barrier
+ Type: Petarmor
+ Buy: 20
+ - Id: 10039
+ AegisName: Tw_Backpack
+ Name: Tw Backpack
+ Type: Petarmor
+ Buy: 20
+ - Id: 10040
+ AegisName: Red_Bell_Necklace
+ Name: Red Bell Necklace
+ Type: Petarmor
+ Buy: 20
+ - Id: 10041
+ AegisName: Shiny_Star_Button
+ Name: Shiny Star Button
+ Type: Petarmor
+ Buy: 20
+ - Id: 10042
+ AegisName: Dark_Mane
+ Name: Dark Mane
+ Type: Petarmor
+ Buy: 20
+ - Id: 10043
+ AegisName: Ep_17_2_C_Admin1_Acc
+ Name: Little Headdress Beta
+ Type: PetArmor
+ - Id: 10044
+ AegisName: Ep_17_2_C_Admin2_Acc
+ Name: Little Headdress Alpha
+ Type: PetArmor
+ - Id: 13000
+ AegisName: Jujube_Dagger
+ Name: Jujube Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10000
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13001
+ AegisName: Dragon_Killer
+ Name: Dragon Killer
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 13002
+ AegisName: Ginnungagap
+ Name: Ginnungagap
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 148
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus2 bAddEff2,Eff_Blind,50;
+ - Id: 13003
+ AegisName: Coward
+ Name: Cowardice Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 52000
+ Weight: 700
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ - Id: 13004
+ AegisName: Coward_
+ Name: Cowardice Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 52000
+ Weight: 700
+ Attack: 80
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bDef,5;
+ - Id: 13005
+ AegisName: Angelwing_Short_Sword
+ Name: Angelic Wing Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 13006
+ AegisName: Khukri
+ Name: Khukri
+ Type: Weapon
+ SubType: Dagger
+ Buy: 240000
+ Weight: 600
+ Attack: 150
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 13007
+ AegisName: Jitte
+ Name: Jitte
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20000
+ Weight: 400
+ Attack: 70
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,200;
+ - Id: 13008
+ AegisName: Jitte_
+ Name: Jitte
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20000
+ Weight: 400
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,200;
+ - Id: 13009
+ AegisName: Kamaitachi
+ Name: Kamaitachi
+ Type: Weapon
+ SubType: Dagger
+ Buy: 48000
+ Weight: 900
+ Attack: 125
+ Range: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bCritical,3;
+ bonus bAspdRate,3;
+ - Id: 13010
+ AegisName: Asura
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 3000
+ Weight: 600
+ Attack: 50
+ MagicAttack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 13011
+ AegisName: Asura_
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 3000
+ Weight: 600
+ Attack: 50
+ MagicAttack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 12
+ Refineable: true
+ - Id: 13012
+ AegisName: Murasame
+ Name: Murasame
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 13013
+ AegisName: Murasame_
+ Name: Murasame
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 95
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 13014
+ AegisName: Hakujin
+ Name: Hakujin
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAutoSpell,"AL_HEAL",1,10;
+ - Id: 13015
+ AegisName: Hakujin_
+ Name: Hakujin
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus3 bAutoSpell,"AL_HEAL",1,10;
+ - Id: 13016
+ AegisName: Poison_Knife_
+ Name: Poison Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 64
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,3000;
+ - Id: 13017
+ AegisName: House_Auger_
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ - Id: 13018
+ AegisName: Sucsamad_
+ Name: Sucsamad
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 800
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus bUnbreakableWeapon;
+ - Id: 13019
+ AegisName: Ginnungagap_
+ Name: Ginnungagap
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 148
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus2 bAddEff2,Eff_Blind,50;
+ - Id: 13020
+ AegisName: Warrior_Balmung_
+ Name: Warrior's Balmung
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ - Id: 13021
+ AegisName: Combat_Knife_C
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 129
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Demon,-10;
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ /*Gold PC Room: bonus bBaseAtk,10;
+ bonus bMatk,10;*/
+ - Id: 13022
+ AegisName: Counter_Dagger_C
+ Name: Dagger of Counter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 209
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,90;
+ /*Gold PC Room: bonus bBaseAtk,10;
+ bonus bMatk,10;*/
+ - Id: 13023
+ AegisName: Asura_C
+ Name: Ashura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 120
+ MagicAttack: 98
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Gold PC Room: bonus bBaseAtk,10;
+ bonus bMatk,10;
+ */
+ - Id: 13024
+ AegisName: Sword_Breaker_C
+ Name: Refined Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 13025
+ AegisName: Mail_Breaker_C
+ Name: Refined Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 13026
+ AegisName: Moonlight_Sword_C
+ Name: Moonlight Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bSPDrainValue,3;
+ - Id: 13027
+ AegisName: Scalpel
+ Name: Scalpel
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ Sage: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,500;
+ - Id: 13028
+ AegisName: Tooth_Blade
+ Name: Tooth Blade
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ Sage: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ if (getrefine()>=9) {
+ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70;
+ } else
+ bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;
+ - Id: 13029
+ AegisName: Prinsence_Knife
+ Name: Prinsense Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 13030
+ AegisName: Dragon_Killer_
+ Name: Dragon Killer
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bIgnoreDefRace,RC_Dragon;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 13031
+ AegisName: Sword_Breaker_
+ Name: Swordbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakWeaponRate,500;
+ - Id: 13032
+ AegisName: Mail_Breaker_
+ Name: Mailbreaker
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,500;
+ - Id: 13033
+ AegisName: Assasin_Dagger_
+ Name: Assassin Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 36
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,15;
+ bonus bAspdRate,2;
+ bonus bAtkEle,Ele_Dark;
+ - Id: 13034
+ AegisName: Twilight_Desert
+ Name: Desert Twilight
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 13035
+ AegisName: Sandstorm
+ Name: Sandstorm
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 70
+ Refineable: true
+ - Id: 13036
+ AegisName: BF_Dagger1
+ Name: Brave Assassin's Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)
+ bonus bMatk,90;
+ - Id: 13037
+ AegisName: BF_Dagger2
+ Name: Valorous Assassin's Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)
+ bonus bMatk,90;
+ - Id: 13038
+ AegisName: Dagger_Of_Hunter
+ Name: Dagger of Hunter
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,2;
+ bonus bDex,1;
+ bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100;
+ bonus2 bSkillAtk,"RG_BACKSTAP",20;
+ - Id: 13039
+ AegisName: Ivory_Knife
+ Name: Ivory Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ Sage: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bAspdRate,3;
+ bonus2 bAddEff,Eff_Bleeding,300;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;
+ - Id: 13040
+ AegisName: N_Cutter
+ Name: Novice Cutter
+ Type: Weapon
+ SubType: Dagger
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13041
+ AegisName: N_Main_Gauche
+ Name: Novice Main Gauche
+ Type: Weapon
+ SubType: Dagger
+ Attack: 63
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13042
+ AegisName: Krieger_Dagger1
+ Name: Glorious Gladius
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus3 bAutoSpell,"PR_LEXDIVINA",1,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8)
+ bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;
+ - Id: 13043
+ AegisName: Fortune_Sword_I
+ Name: Fortune Sword
+ Type: Weapon
+ SubType: Dagger
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee2,20;
+ bonus bLuk,5;
+ - Id: 13044
+ AegisName: House_Auger_I
+ Name: Ice Pick
+ Type: Weapon
+ SubType: Dagger
+ Attack: 105
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;
+ - Id: 13045
+ AegisName: Kamaitachi_I
+ Name: Kamaitachi
+ Type: Weapon
+ SubType: Dagger
+ Attack: 155
+ Range: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bCritical,10;
+ bonus bAspdRate,5;
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13046
+ AegisName: Krieg
+ Name: Krierg
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Rogue: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000;
+ bonus2 bSkillAtk,"RG_BACKSTAP",15;
+ - Id: 13047
+ AegisName: Weihna
+ Name: Weihna
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 135
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Rogue: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000;
+ autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 13048
+ AegisName: Damascus_C
+ Name: Damascus
+ Type: Weapon
+ SubType: Dagger
+ Attack: 153
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 13049
+ AegisName: Lacma
+ Name: Lacma
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 650
+ Attack: 45
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ 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;
+ }
+ - Id: 13050
+ AegisName: P_Dagger1
+ Name: Eden Dagger I
+ Type: Weapon
+ SubType: Dagger
+ Attack: 124
+ MagicAttack: 60
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13051
+ AegisName: P_Dagger2
+ Name: Eden Dagger II
+ Type: Weapon
+ SubType: Dagger
+ Attack: 158
+ MagicAttack: 70
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13052
+ AegisName: Tourist_Dagger
+ Name: Tourist Dagger
+ Type: Weapon
+ SubType: Dagger
+ Weight: 500
+ Attack: 51
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 13053
+ AegisName: F_Moonlight_Sword_C
+ Name: Moonlight Sword
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bSPDrainValue,3;
+ bonus bMaxSPrate,10;
+ - Id: 13054
+ AegisName: F_Combat_Knife_C
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 129
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bIgnoreDefRace,RC_DemiHuman;
+ bonus bIgnoreDefRace,RC_Player_Human;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus bSPDrainValue,3;
+ bonus bMaxSPrate,10;
+ - Id: 13055
+ AegisName: F_Asura_C
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 120
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bMatkRate,15;
+ - Id: 13056
+ AegisName: F_Counter_Dagger_C
+ Name: Counter Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 209
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Script: |
+ bonus bCritical,90;
+ - Id: 13057
+ AegisName: E_Moonlight_Sword_C
+ Name: Moonlight Sword
+ Type: Weapon
+ SubType: Dagger
+ Buy: 2
+ Attack: 85
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ - Id: 13058
+ AegisName: E_Combat_Knife_C
+ Name: Combat Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 129
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ - Id: 13059
+ AegisName: E_Asura_C
+ Name: Asura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 120
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13060
+ AegisName: E_Counter_Dagger_C
+ Name: Counter Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 1
+ Attack: 209
+ Range: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ - Id: 13061
+ AegisName: Black_Wing
+ Name: Black Wing
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 142
+ Range: 1
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 102
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SC_FATALMENACE",30;
+ if (.@r>=6) {
+ bonus2 bSkillAtk,"SC_FATALMENACE",(.@r-5)*2;
+ bonus bMatkRate,((.@r-5)*3);
+ }
+ - Id: 13062
+ AegisName: Ancient_Dagger
+ Name: Ancient Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 107
+ MagicAttack: 120
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rogue: true
+ Sage: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bMaxSP,100;
+ bonus bSPrecovRate,5;
+ bonus2 bAddEff2,Eff_Curse,20;
+ bonus3 bAddEff,Eff_Curse,20,ATF_SELF;
+ - Id: 13063
+ AegisName: Adventure_Knife
+ Name: Adventure Knife
+ Type: Weapon
+ SubType: Dagger
+ Attack: 60
+ Range: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 13064
+ AegisName: Academy_Knife
+ Name: Academy Knife
+ Type: Weapon
+ SubType: Dagger
+ Weight: 700
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 13065
+ AegisName: Academy_Eti_Knife
+ Name: Academy Eti Knife
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 13066
+ AegisName: P_Dagger3
+ Name: Eden Dagger III
+ Type: Weapon
+ SubType: Dagger
+ Attack: 165
+ MagicAttack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13067
+ AegisName: Caress
+ Name: Keris
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 107
+ MagicAttack: 70
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bHPDrainRate,20,10;
+ - Id: 13068
+ AegisName: Saurel
+ Name: Pompano
+ Type: Weapon
+ SubType: Dagger
+ Attack: 160
+ MagicAttack: 100
+ Range: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,3;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus bBaseAtk,30; }",15,7000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus bMatk,20; }",15,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ if (BaseLevel>99) {
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ }
+ - Id: 13069
+ AegisName: Aztoe_Nail
+ Name: As-nail
+ Type: Weapon
+ SubType: Dagger
+ Buy: 56000
+ Weight: 500
+ Attack: 160
+ MagicAttack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50);
+ - Id: 13070
+ AegisName: Scarletto_Nail
+ Name: Scarlet-nail
+ Type: Weapon
+ SubType: Dagger
+ Buy: 56000
+ Weight: 500
+ Attack: 160
+ MagicAttack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);
+ - Id: 13071
+ AegisName: Upg_Dagger
+ Name: Upg Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 600
+ Attack: 55
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*10);
+ bonus bMatk,(.@r*5);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*5);
+ - Id: 13072
+ AegisName: Velum_Damascus
+ Name: Vellum Damascus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus4 bSetDefRace,RC_Player_Human,10000,5000,1;
+ bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1;
+ bonus bAspdRate,getrefine();
+ - Id: 13073
+ AegisName: Counter_Dagger_
+ Name: Counter Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 120000
+ Weight: 550
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,90;
+ - Id: 13074
+ AegisName: Ninja_Cutter
+ Name: Ninja Sword Prototype
+ Type: Weapon
+ SubType: Dagger
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13075
+ AegisName: Kurenai
+ Name: Kurenai
+ Type: Weapon
+ SubType: Dagger
+ Buy: 5000
+ Weight: 700
+ Attack: 130
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 13076
+ AegisName: Raksasa_Dagger
+ Name: Nachal Sword
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 600
+ Attack: 120
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ - Id: 13077
+ AegisName: Kagekiri
+ Name: Kagekiri
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 600
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 13078
+ AegisName: Mikatsuki
+ Name: Mikacheuki
+ Type: Weapon
+ SubType: Dagger
+ Buy: 40000
+ Weight: 600
+ Attack: 50
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUseSPrate,-5;
+ bonus bVariableCastrate,-5;
+ - Id: 13079
+ AegisName: Metal_Dagger
+ Name: Metal Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 55
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*5);
+ bonus bMatk,(.@r*2);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 13081
+ AegisName: Octo_kitchen_Knife
+ Name: Discount knife Octopus
+ Type: Weapon
+ SubType: Dagger
+ Buy: 200000
+ Weight: 700
+ Attack: 140
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHit,.@r;
+ - Id: 13083
+ AegisName: TE_Woe_Knife
+ Name: TE Woe Knife
+ Type: Weapon
+ SubType: Dagger
+ Attack: 100
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Silence,1000;
+ - Id: 13085
+ AegisName: Volcano_Knife
+ Name: Volcano Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 200
+ Attack: 80
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bAgi,2;
+ bonus bMaxHPrate,-2;
+ bonus2 bSubEle,Ele_Fire,2;
+ bonus2 bSubEle,Ele_Water,-5;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bMaxHPrate,.@r-6;
+ bonus2 bSubEle,Ele_Fire,3;
+ }
+ - Id: 13086
+ AegisName: Goldsmithing_Dagger
+ Name: Goldsmithing Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 35
+ MagicAttack: 25
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 13088
+ AegisName: Krishnagar
+ Name: Greater Lease
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 500
+ Attack: 110
+ MagicAttack: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 5)
+ bonus bMatk,30;
+ if (.@r >= 7)
+ bonus bMatk,40;
+ if (.@r >= 9)
+ bonus bMatk,50;
+ - Id: 13089
+ AegisName: FaceWorm_Leg
+ Name: Faceworm Leg
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 110
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";
+ - Id: 13090
+ AegisName: FaceWormQueen_Leg
+ Name: Faceworm Queen Leg
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 180
+ MagicAttack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";
+ - Id: 13092
+ AegisName: RWC_Memory_Knife
+ Name: RWC Memory Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 650
+ Attack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ 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,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
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 800
+ Attack: 100
+ MagicAttack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 13094
+ AegisName: Dagger_Of_Evil_Slayer
+ Name: Evil Slayer Stabber Dagger
+ Type: Weapon
+ SubType: Dagger
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_Demon,10;
+ .@r = getrefine();
+ if (.@r>=9) {
+ .@dmg = 5;
+ if (.@r>=12) {
+ .@dmg += 7;
+ }
+ bonus2 bAddClass,Class_All,.@dmg;
+ }
+ - Id: 13096
+ AegisName: Half_BF_Dagger2
+ Name: Half BF Dagger2
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)
+ bonus bMatkRate,45;
+ - Id: 13097
+ AegisName: Ru_Blue_Dagger
+ Name: Blue Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 1000
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bInt,5;
+ - Id: 13098
+ AegisName: Ru_Blue_Ashura
+ Name: Blue Ashura
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 1000
+ Attack: 150
+ MagicAttack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 13099
+ AegisName: Ru_Blue_Knife
+ Name: Blue Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 500
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bVit,5;
+ bonus bInt,5;
+ - Id: 13100
+ AegisName: Six_Shooter
+ Name: Six Shooter
+ Type: Weapon
+ SubType: Revolver
+ Buy: 4500
+ Weight: 400
+ Attack: 30
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13101
+ AegisName: Six_Shooter_
+ Name: Six Shooter
+ Type: Weapon
+ SubType: Revolver
+ Buy: 4500
+ Weight: 400
+ Attack: 30
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13102
+ AegisName: Crimson_Bolt
+ Name: Crimson Bolt
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20000
+ Weight: 450
+ Attack: 45
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13103
+ AegisName: Crimson_Bolt_
+ Name: Crimson Bolt
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20000
+ Weight: 450
+ Attack: 45
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13104
+ AegisName: The_Garrison
+ Name: Garrison
+ Type: Weapon
+ SubType: Revolver
+ Buy: 48000
+ Weight: 500
+ Attack: 70
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13105
+ AegisName: The_Garrison_
+ Name: Garrison
+ Type: Weapon
+ SubType: Revolver
+ Buy: 48000
+ Weight: 500
+ Attack: 70
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ - Id: 13106
+ AegisName: Gold_Lux
+ Name: Gold Lux
+ Type: Weapon
+ SubType: Revolver
+ Buy: 100000
+ Weight: 500
+ Attack: 20
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 12
+ Refineable: true
+ Script: |
+ bonus bHit,-10;
+ if (getskilllv("GS_GLITTERING")>0)
+ bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;
+ - Id: 13107
+ AegisName: Wasteland_Outlaw
+ Name: Wasteland's Outlaw
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 580
+ Attack: 68
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,readparam(bAgi)/10;
+ bonus bAspdRate,readparam(bAgi)/14;
+ - Id: 13108
+ AegisName: BF_Pistol1
+ Name: Soldier Revolver
+ Type: Weapon
+ SubType: Revolver
+ Attack: 70
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,-10;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13109
+ AegisName: Wasteland_Outlaw_C
+ Name: Wasteland Outlaw
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Attack: 100
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,readparam(bAgi)/10;
+ bonus bAspdRate,readparam(bAgi)/14;
+ bonus2 bAddClass,Class_All,40;
+ - Id: 13110
+ AegisName: Krieger_Pistol1
+ Name: Glorious Pistol
+ Type: Weapon
+ SubType: Revolver
+ Attack: 80
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000;
+ bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2;
+ }
+ - Id: 13111
+ AegisName: Sharpshooter_Revolver
+ Name: Sharpshooter Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Attack: 105
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bSkillAtk,"GS_DESPERADO",25;
+ - Id: 13112
+ AegisName: P_Revolver1
+ Name: Eden Revlover I
+ Type: Weapon
+ SubType: Revolver
+ Attack: 44
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-5;
+ - Id: 13113
+ AegisName: P_Revolver2
+ Name: Eden Revlover II
+ Type: Weapon
+ SubType: Revolver
+ Attack: 60
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-5;
+ - Id: 13114
+ AegisName: P_Revolver3
+ Name: Eden Revolver III
+ Type: Weapon
+ SubType: Revolver
+ Attack: 76
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-5;
+ - Id: 13115
+ AegisName: Upg_Revolver
+ Name: Upg Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 500
+ Attack: 35
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*5);
+ bonus bLongAtkRate,(.@r*2);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*5);
+ - Id: 13116
+ AegisName: Novice_Revolver
+ Name: Novice Revolver
+ Type: Weapon
+ SubType: Revolver
+ Weight: 500
+ Attack: 20
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bHit,-5;
+ - Id: 13117
+ AegisName: TE_Woe_Pistol
+ Name: TE Woe Pistol
+ Type: Weapon
+ SubType: Revolver
+ Attack: 60
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 13118
+ AegisName: Tiny_Flame
+ Name: Fading Flame
+ Type: Weapon
+ SubType: Revolver
+ Buy: 1
+ Weight: 100
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13119
+ AegisName: Freedom_Flame
+ Name: Freedom Flame
+ Type: Weapon
+ SubType: Revolver
+ Buy: 1
+ Weight: 100
+ Attack: 100
+ Range: 7
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13120
+ AegisName: H_FEATHER_H_FIRE
+ Name: Heaven's Feather & Hell's Fire
+ Type: Weapon
+ SubType: Revolver
+ Buy: 1200000
+ Weight: 800
+ Attack: 150
+ Range: 9
+ Slots: 1
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GS_DESPERADO",20;
+ bonus2 bAddEff,Eff_Burning,200;
+ - Id: 13122
+ AegisName: ALTAIR_ARES
+ Name: Altair & Ares
+ Type: Weapon
+ SubType: Revolver
+ Buy: 1450000
+ Weight: 1000
+ Attack: 200
+ Range: 9
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,5;
+ bonus bAspdRate,10;
+ bonus bLongAtkRate,30;
+ - Id: 13124
+ AegisName: ALTAIR_ARES_
+ Name: Altair & Ares
+ Type: Weapon
+ SubType: Revolver
+ Buy: 1450000
+ Weight: 1000
+ Attack: 200
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,5;
+ bonus bAspdRate,10;
+ bonus bLongAtkRate,30;
+ - Id: 13125
+ AegisName: Metal_Revolver
+ Name: Metal Revolver
+ Type: Weapon
+ SubType: Revolver
+ Attack: 30
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Weapon
+ SubType: Revolver
+ Buy: 10
+ Weight: 500
+ Attack: 175
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13127
+ AegisName: Scarlet_Revolver
+ Name: Crimson Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r<=15?pow(.@r,2):225);
+ if (BaseLevel>=70) {
+ bonus bBaseAtk,(BaseLevel/10)*5;
+ }
+ - Id: 13128
+ AegisName: Sinister_Revolver
+ Name: Revolver of Vicious Mind
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 13129
+ AegisName: Unity_Revolver
+ Name: Unity Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 500
+ Attack: 95
+ Range: 7
+ Slots: 1
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 13132
+ AegisName: Toughen_Metal_Revolver
+ Name: Enhanced Metal Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Attack: 55
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RL_FIREDANCE",10;
+ bonus bLongAtkRate,2*.@r;
+ bonus bBaseAtk,5*.@r;
+ bonus bBaseAtk,5*(min(BaseLevel,150)/10);
+ - Id: 13136
+ AegisName: Probation_Revolver
+ Name: Trial Rebel's Revolver
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Attack: 120
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,((min(BaseLevel,160)/10)*6);
+ bonus2 bSkillAtk,"RL_FIREDANCE",20;
+ if (getrefine()>6) {
+ bonus bLongAtkRate,getskilllv("GS_CHAINACTION");
+ }
+ - Id: 13138
+ AegisName: Dark_Rose
+ Name: Dark Rose
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 1800
+ Attack: 150
+ Range: 7
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,10;
+ if (.@r >= 7) {
+ bonus bLongAtkRate,15;
+ if (.@r >= 9) {
+ bonus bAspd,1;
+ }
+ }
+ - Id: 13144
+ AegisName: Rebeginer_RL_Gun
+ Name: Beginner Rebel's Revolver
+ Type: Weapon
+ SubType: Revolver
+ Attack: 170
+ Range: 7
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"RL_FIREDANCE",15;
+ }
+ - Id: 13146
+ AegisName: Calf_Deathadder
+ Name: Calf Deathadder
+ Type: Weapon
+ SubType: Revolver
+ Weight: 1400
+ Attack: 170
+ Range: 7
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,10;
+ bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0);
+ if (.@r > 6) {
+ bonus bAspdRate,5;
+ }
+ if (.@r > 8) {
+ bonus2 bSkillAtk,"RL_FIREDANCE",25;
+ }
+ - Id: 13150
+ AegisName: Branch
+ Name: Branch
+ Type: Weapon
+ SubType: Rifle
+ Buy: 3000
+ Weight: 500
+ Attack: 50
+ Range: 9
+ Slots: 3
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 13151
+ AegisName: The_Cyclone
+ Name: Cyclone
+ Type: Weapon
+ SubType: Rifle
+ Buy: 17500
+ Weight: 700
+ Attack: 120
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13152
+ AegisName: The_Cyclone_
+ Name: Cyclone
+ Type: Weapon
+ SubType: Rifle
+ Buy: 17500
+ Weight: 700
+ Attack: 120
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 24
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13153
+ AegisName: Dusk
+ Name: Dusk
+ Type: Weapon
+ SubType: Rifle
+ Buy: 23500
+ Weight: 750
+ Attack: 150
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 56
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,10;
+ - Id: 13154
+ AegisName: Rolling_Stone
+ Name: Rolling Stone
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 12000
+ Weight: 900
+ Attack: 135
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 14
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ - Id: 13155
+ AegisName: Black_Rose
+ Name: Black Rose
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 32000
+ Weight: 900
+ Attack: 180
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 35
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ - Id: 13156
+ AegisName: Gate_Keeper
+ Name: Gate Keeper
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 56000
+ Weight: 1000
+ Attack: 210
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;
+ - Id: 13157
+ AegisName: Drifter
+ Name: Drifter
+ Type: Weapon
+ SubType: Gatling
+ Buy: 80000
+ Weight: 2300
+ Attack: 50
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 13158
+ AegisName: Butcher
+ Name: Butcher
+ Type: Weapon
+ SubType: Gatling
+ Buy: 130000
+ Weight: 2500
+ Attack: 75
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bCriticalAddRace,RC_Brute,10;
+ bonus2 bCriticalAddRace,RC_Player_Doram,10;
+ - Id: 13159
+ AegisName: Butcher_
+ Name: Butcher
+ Type: Weapon
+ SubType: Gatling
+ Buy: 130000
+ Weight: 2500
+ Attack: 75
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 68
+ Refineable: true
+ Script: |
+ bonus2 bCriticalAddRace,RC_Brute,10;
+ bonus2 bCriticalAddRace,RC_Player_Doram,10;
+ - Id: 13160
+ AegisName: Destroyer
+ Name: Destroyer
+ Type: Weapon
+ SubType: Grenade
+ Buy: 110000
+ Weight: 1200
+ Attack: 220
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 52
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,200;
+ - Id: 13161
+ AegisName: Destroyer_
+ Name: Destroyer
+ Type: Weapon
+ SubType: Grenade
+ Buy: 110000
+ Weight: 1200
+ Attack: 220
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 52
+ Refineable: true
+ Script: |
+ bonus bBreakArmorRate,200;
+ - Id: 13162
+ AegisName: Inferno
+ Name: Inferno
+ Type: Weapon
+ SubType: Grenade
+ Buy: 230000
+ Weight: 1250
+ Attack: 280
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 65
+ Refineable: true
+ - Id: 13163
+ AegisName: Long_Barrel
+ Name: Long Barrel
+ Type: Weapon
+ SubType: Rifle
+ Buy: 40000
+ Weight: 1000
+ Attack: 150
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,20;
+ bonus bAspdRate,-3;
+ bonus3 bAutoSpell,"GS_TRACKING",5,20;
+ - Id: 13164
+ AegisName: Long_Barrel_
+ Name: Long Barrel
+ Type: Weapon
+ SubType: Rifle
+ Buy: 40000
+ Weight: 1000
+ Attack: 150
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,20;
+ bonus bAspdRate,-3;
+ bonus3 bAutoSpell,"GS_TRACKING",5,20;
+ - Id: 13165
+ AegisName: Jungle_Carbine
+ Name: Jungle Carbine
+ Type: Weapon
+ SubType: Rifle
+ Buy: 56000
+ Weight: 700
+ Attack: 170
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,4;
+ bonus bAspdRate,10;
+ bonus bHit,-readparam(bDex)/3;
+ - Id: 13166
+ AegisName: Jungle_Carbine_
+ Name: Jungle Carbine
+ Type: Weapon
+ SubType: Rifle
+ Buy: 56000
+ Weight: 700
+ Attack: 170
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,4;
+ bonus bAspdRate,10;
+ bonus bHit,-readparam(bDex)/3;
+ - Id: 13167
+ AegisName: Gate_KeeperDD
+ Name: Gate Keeper-DD
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 72000
+ Weight: 1300
+ Attack: 200
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;
+ bonus bDef,getrefine();
+ bonus bDex,1;
+ - Id: 13168
+ AegisName: Thunder_P
+ Name: Thunder P
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 76000
+ Weight: 700
+ Attack: 80
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-5;
+ bonus bAspdRate,20;
+ - Id: 13169
+ AegisName: Thunder_P_
+ Name: Thunder P
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 76000
+ Weight: 700
+ Attack: 80
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-5;
+ bonus bAspdRate,20;
+ - Id: 13170
+ AegisName: Lever_Action_Rifle
+ Name: Lever Action Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 770
+ Attack: 138
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bHit,20;
+ bonus bCritical,50;
+ bonus bAspdRate,-5;
+ - Id: 13171
+ AegisName: BF_Rifle1
+ Name: Soldier Rifle
+ Type: Weapon
+ SubType: Rifle
+ Attack: 50
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,10;
+ bonus bCritical,10;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bVariableCastrate,"GS_TRACKING",-25;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13172
+ AegisName: BF_Gatling_Gun1
+ Name: Soldier Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Attack: 80
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13173
+ AegisName: BF_Shotgun1
+ Name: Soldier Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 100
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bSplashRange,1;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13174
+ AegisName: BF_Launcher1
+ Name: Soldier Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Attack: 300
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus bSplashRange,1;
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13175
+ AegisName: Lever_Action_Rifle_C
+ Name: Lever Action Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Attack: 170
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,20;
+ bonus bCritical,50;
+ bonus2 bAddClass,Class_All,40;
+ - Id: 13176
+ AegisName: Krieger_Rifle1
+ Name: Glorious Rifle
+ Type: Weapon
+ SubType: Rifle
+ Attack: 90
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus2 bVariableCastrate,"GS_TRACKING",25;
+ bonus2 bSkillAtk,"GS_TRACKING",.@r * 3;
+ }
+ - Id: 13177
+ AegisName: Krieger_Gatling1
+ Name: Glorious Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Attack: 90
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus2 bAddClass,Class_All,.@r;
+ }
+ - Id: 13178
+ AegisName: Krieger_Shotgun1
+ Name: Glorious Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 110
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,55;
+ bonus2 bAddRace,RC_Player_Human,55;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bSplashRange,1;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2;
+ bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;
+ }
+ - Id: 13179
+ AegisName: Krieger_Launcher1
+ Name: Glorious Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Attack: 330
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus2 bSkillAtk,"GS_TRIPLEACTION",30;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus2 bSkillAtk,"GS_GROUNDDRIFT",.@r * 2;
+ bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;
+ autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ }
+ - Id: 13180
+ AegisName: Novice_Rifle
+ Name: Novice Rifle
+ Type: Weapon
+ SubType: Rifle
+ Weight: 500
+ Attack: 50
+ Range: 9
+ Slots: 3
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13181
+ AegisName: Novice_Shotgun
+ Name: Novice Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Weight: 1000
+ Attack: 80
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bSplashRange,1;
+ - Id: 13182
+ AegisName: Novice_Gatling
+ Name: Novice Gatling
+ Type: Weapon
+ SubType: Gatling
+ Weight: 1500
+ Attack: 40
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13183
+ AegisName: Novice_Grenade_Launcher
+ Name: Novice Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Weight: 1500
+ Attack: 40
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13184
+ AegisName: TE_Woe_Rifle
+ Name: TE Woe Rifle
+ Type: Weapon
+ SubType: Rifle
+ Attack: 80
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Silence,1000;
+ - Id: 13185
+ AegisName: TE_Woe_Gatling
+ Name: TE Woe Gatling
+ Type: Weapon
+ SubType: Gatling
+ Attack: 100
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 13186
+ AegisName: TE_Woe_Shotgun
+ Name: TE Woe Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 100
+ Range: 7
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Poison,1000;
+ - Id: 13187
+ AegisName: TE_Woe_Grenade
+ Name: TE Woe Grenade
+ Type: Weapon
+ SubType: Grenade
+ Attack: 100
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Blind,1000;
+ - Id: 13189
+ AegisName: COLORSCOPE
+ Name: Color Scope
+ Type: Weapon
+ SubType: Rifle
+ Buy: 1350000
+ Weight: 1200
+ Attack: 240
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bHit,20;
+ - Id: 13190
+ AegisName: RAG203_
+ Name: RAG203
+ Type: Weapon
+ SubType: Rifle
+ Buy: 1800000
+ Weight: 1300
+ Attack: 260
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bCritical,15;
+ bonus bHit,10;
+ bonus4 bAutoSpell,"AL_DECAGI",1,30,1;
+ - Id: 13192
+ AegisName: DEATHFIRE
+ Name: Death Fire
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 1250000
+ Weight: 2000
+ Attack: 400
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 108
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bAtkRange,5;
+ bonus bHit,-50;
+ bonus bAspdRate,-10;
+ - Id: 13193
+ AegisName: R_THUNDER
+ Name: Rolling Thunder
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 1350000
+ Weight: 1800
+ Attack: 280
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-10;
+ bonus bAspdRate,-10;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30;
+ - Id: 13194
+ AegisName: P_BREAKER
+ Name: Peace Breaker
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 1950000
+ Weight: 1400
+ Attack: 250
+ Range: 9
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,-25;
+ bonus bAspdRate,25;
+ - Id: 13195
+ AegisName: RAG203
+ Name: RAG203
+ Type: Weapon
+ SubType: Rifle
+ Buy: 1800000
+ Weight: 1300
+ Attack: 260
+ Range: 9
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bCritical,15;
+ bonus bHit,10;
+ bonus4 bAutoSpell,"AL_DECAGI",1,30,1;
+ - Id: 13196
+ AegisName: P_BREAKER_
+ Name: Peace Breaker
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 1950000
+ Weight: 1400
+ Attack: 250
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,-25;
+ bonus bAspdRate,25;
+ - Id: 13197
+ AegisName: MINIMAY
+ Name: Mini Mei
+ Type: Weapon
+ SubType: Gatling
+ Buy: 1600000
+ Weight: 500
+ Attack: 220
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 106
+ Refineable: true
+ Script: |
+ bonus bCritical,5;
+ bonus bHit,-5;
+ - Id: 13198
+ AegisName: TEMPEST
+ Name: Tempest
+ Type: Weapon
+ SubType: Gatling
+ Buy: 2200000
+ Weight: 2500
+ Attack: 250
+ Range: 9
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,-25;
+ bonus bCritical,10;
+ bonus bLongAtkRate,20;
+ - Id: 13199
+ AegisName: TEMPEST_
+ Name: Tempest
+ Type: Weapon
+ SubType: Gatling
+ Buy: 2200000
+ Weight: 2500
+ Attack: 250
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bHit,-25;
+ bonus bCritical,10;
+ bonus bLongAtkRate,20;
+ - Id: 13300
+ AegisName: Huuma_Bird_Wing
+ Name: Huuma Wing Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 90000
+ Weight: 3000
+ Attack: 150
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDex,-2;
+ bonus bAgi,-1;
+ - Id: 13301
+ AegisName: Huuma_Giant_Wheel
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 40000
+ Weight: 2500
+ Attack: 50
+ Range: 1
+ Slots: 3
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13302
+ AegisName: Huuma_Giant_Wheel_
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 40000
+ Weight: 2500
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 42
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13303
+ AegisName: Huuma_Blaze
+ Name: Huuma Blaze Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 78000
+ Weight: 1500
+ Attack: 185
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bDex,-2;
+ bonus3 bAutoSpell,"MG_FIREBALL",5,30;
+ - Id: 13304
+ AegisName: Huuma_Calm_Mind
+ Name: Huuma Calm Mind
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1550
+ Attack: 112
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"NJ_HUUMA",30;
+ bonus bNoCastCancel;
+ - Id: 13305
+ AegisName: BF_Huuma_Shuriken1
+ Name: Brave Huuma Front Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13306
+ AegisName: BF_Huuma_Shuriken2
+ Name: Valorous Huuma Front Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13307
+ AegisName: Krieger_Huuma_Shuriken1
+ Name: Glorious Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ MagicAttack: 90
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,95;
+ bonus2 bAddRace,RC_Player_Human,95;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>8) {
+ bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1;
+ bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 13308
+ AegisName: Huuma_Blaze_I
+ Name: Huuma Blaze Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Attack: 230
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus3 bAutoSpell,"MG_FIREBALL",5,30;
+ bonus bDex,2;
+ - Id: 13309
+ AegisName: Huuma_Giant_Wheel_C
+ Name: Huuma Giant Wheel Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Attack: 99
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ bonus2 bAddSize,Size_All,80;
+ - Id: 13310
+ AegisName: P_Huuma_Shuriken1
+ Name: P.Huuma Suriken I
+ Type: Weapon
+ SubType: Huuma
+ Attack: 150
+ MagicAttack: 50
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13311
+ AegisName: Huuma_Shadow
+ Name: Sword Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 5000
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bStr,3;
+ - Id: 13312
+ AegisName: Huuma_Job_Test
+ Name: Prototype Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 3000
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13313
+ AegisName: Huuma_Swirling_Petal
+ Name: Flower Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 100000
+ Weight: 1500
+ Attack: 150
+ MagicAttack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"KO_HUUMARANKA",20;
+ - Id: 13314
+ AegisName: Huuma_Fluttering_Snow
+ Name: Wave Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 100000
+ Weight: 1500
+ Attack: 200
+ MagicAttack: 50
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30;
+ - Id: 13315
+ AegisName: Huuma_Thunderstorm
+ Name: Thunderstorm Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 100000
+ Weight: 1500
+ Attack: 200
+ MagicAttack: 50
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 13316
+ AegisName: Upg_Huuma_Shuriken
+ Name: Upg Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1500
+ Attack: 55
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ 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;
+ - Id: 13317
+ AegisName: TE_Woe_Huuma
+ Name: TE Woe Huuma
+ Type: Weapon
+ SubType: Huuma
+ Attack: 80
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Bleeding,1000;
+ bonus bUnbreakableWeapon;
+ - Id: 13321
+ AegisName: Half_BF_Huuma_Shuriken2
+ Name: Half BF Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 55
+ Range: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,40;
+ bonus2 bAddRace,RC_Player_Human,40;
+ autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ bonus bUnbreakableWeapon;
+ - Id: 13322
+ AegisName: Huuma_Metal_Shuriken
+ Name: Huuma Metal Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*5;
+ bonus bMatk,.@r*3;
+ bonus bLongAtkRate,.@r;
+ if (BaseLevel >= 20 && BaseLevel <= 120)
+ bonus bBaseAtk,3*.@r/10;
+ - Id: 13323
+ AegisName: Infinity_Shuriken
+ Name: Infinity Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 500
+ Attack: 150
+ MagicAttack: 40
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 13327
+ AegisName: Scarlet_Huuma
+ Name: Crimson Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1000
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r<=15?pow(.@r,2):225);
+ bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*5);
+ - Id: 13328
+ AegisName: Sinister_Huuma
+ Name: Huuma Shuriken of Vicious Mind
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2)/2;
+ bonus bUnbreakableWeapon;
+ - Id: 13329
+ AegisName: Unity_Huuma_Shuriken
+ Name: Unity Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 500
+ Attack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 13330
+ AegisName: Toughen_Metal_Shuriken
+ Name: Enhanced Metal Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 75
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"KO_HUUMARANKA",10;
+ bonus bMatk,(5*.@r)+3*(min(BaseLevel,150)/10);
+ bonus bBaseAtk,(7*.@r)+5*(min(BaseLevel,150)/10);
+ bonus bLongAtkRate,2*(.@r/2);
+ - Id: 13332
+ AegisName: Huuma_Hundred_Petal
+ Name: Huuma Shuriken of Dancing Petals
+ Type: Weapon
+ SubType: Huuma
+ Weight: 2000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@bonus = 20;
+ if (.@r>=7) {
+ bonus bLongAtkRate,10;
+ }
+ if (.@r>=9) {
+ .@bonus += 20;
+ }
+ bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus;
+ - Id: 13336
+ AegisName: Probation_Huuma
+ Name: Trial Ninja's Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"KO_HUUMARANKA",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bLongAtkRate,getskilllv("NJ_TOBIDOUGU");
+ }
+ - Id: 13337
+ AegisName: Huuma_Flutter_Snow_IL
+ Name: Illusion Huuma Fluttering Snow
+ Type: Weapon
+ SubType: Huuma
+ Weight: 1500
+ Attack: 250
+ MagicAttack: 50
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(30*(.@r/3));
+ bonus bLongAtkRate,(3*.@r);
+ - Id: 13338
+ AegisName: Illusion_Wing_Shuriken
+ Name: Illusion Wing Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 1500
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());
+ - Id: 13341
+ AegisName: Rebeginer_KO_Humma
+ Name: Beginner Kagerou&Oboro's Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bVariableCastrate,-10;
+ bonus bMatk,130;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"KO_HUUMARANKA",15;
+ }
+ - Id: 13345
+ AegisName: Humma_Clear
+ Name: Huuma Shuriken Clearness
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 1300
+ Attack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,2*(.@r/3);
+ bonus bBaseAtk,10*(.@r/2);
+ if (.@r >= 7) {
+ bonus2 bSkillAtk,"KO_HUUMARANKA",30;
+ if (.@r >= 9) {
+ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000;
+ if (.@r >= 11) {
+ bonus2 bAddEle,Ele_Fire,15;
+ bonus2 bAddEle,Ele_Dark,15;
+ bonus2 bAddRace,RC_Undead,30;
+ bonus2 bAddRace,RC_Demon,30;
+ }
+ }
+ }
+ - Id: 13346
+ AegisName: Ein_BHHuuma
+ Name: Grinder Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 1800
+ Attack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,15;
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"KO_HUUMARANKA",15;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ bonus bBaseAtk,60;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"KO_HUUMARANKA",20;
+ autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000;
+ }
+ - Id: 13347
+ AegisName: R_Huuma_Shuriken
+ Name: Royal Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 1500
+ Attack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000;
+ }
+ - Id: 13400
+ AegisName: Cutlas_
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13401
+ AegisName: Excalibur_C
+ Name: Excalibur
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 199
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,10;
+ bonus bLuk,10;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13402
+ AegisName: Cutlas_C
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13403
+ AegisName: Solar_Sword_C
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus2 bSPLossRate,15,10000;
+ bonus2 bHPDrainRate,1000,1;
+ - Id: 13404
+ AegisName: Platinum_Shotel
+ Name: Platinum Shotel
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bCritical,50;
+ - Id: 13405
+ AegisName: Curved_Sword
+ Name: Curved Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 125
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus2 bAddEff,Eff_Curse,300;
+ - Id: 13406
+ AegisName: Edger
+ Name: Edger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,50;
+ - Id: 13407
+ AegisName: Nagan_C
+ Name: Refined Nagan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 148
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ bonus2 bAddRace,RC_DemiHuman,40;
+ bonus2 bAddRace,RC_Player_Human,40;
+ - Id: 13408
+ AegisName: Fire_Brand_C
+ Name: Refined Fireblend
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,2;
+ skill "MG_FIREBOLT",5;
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,100;
+ - Id: 13409
+ AegisName: Immaterial_Sword_C
+ Name: Refined Immaterial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 160
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC;
+ bonus bUnbreakableWeapon;
+ - Id: 13410
+ AegisName: BF_Sword1
+ Name: Valorous Gladiator Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ - Id: 13411
+ AegisName: BF_Sword2
+ Name: Brave Gladiator Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 115
+ MagicAttack: 74
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus bUnbreakableWeapon;
+ - Id: 13412
+ AegisName: Twin_Edge_B
+ Name: Twin Edge of Naght Sieger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ skill "MG_FROSTDIVER",5;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 13413
+ AegisName: Twin_Edge_R
+ Name: Twin Edge of Naght Sieger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 160
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ skill "WZ_METEOR",3;
+ autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 13414
+ AegisName: Elemental_Sword
+ Name: Elemental Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 105
+ MagicAttack: 95
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,4;
+ bonus bDex,1;
+ bonus2 bAddEle,Ele_Neutral,10;
+ bonus3 bAutoSpell,"MG_COLDBOLT",3,50;
+ bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000;
+ bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000;
+ bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;
+ - Id: 13415
+ AegisName: N_Falchion
+ Name: Novice Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 59
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ - Id: 13416
+ AegisName: Krieger_Onehand_Sword1
+ Name: Glorious Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,75;
+ bonus2 bAddRace,RC_Player_Human,75;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2);
+ bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2);
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
+ }
+ if (.@r>6)
+ bonus bAspdRate,5;
+ if (.@r>8) {
+ bonus bAspdRate,5;
+ bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200;
+ }
+ - Id: 13417
+ AegisName: Krieger_Onehand_Sword2
+ Name: Glorious Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ MagicAttack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,6;
+ bonus bInt,.@r-5;
+ bonus bUnbreakableWeapon;
+ if (.@r>5)
+ bonus bUseSPrate,-10;
+ if (.@r>8)
+ bonus bInt,5;
+ - Id: 13418
+ AegisName: Krieger_Onehand_Sword3
+ Name: Glorious Holy Avenger
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 130
+ MagicAttack: 80
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,6;
+ bonus bInt,.@r-5;
+ bonus bUnbreakableWeapon;
+ if (.@r>5)
+ bonus bUseSPrate,-10;
+ if (.@r>8)
+ bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000;
+ if (.@r>9)
+ bonus bInt,5;
+ - Id: 13419
+ AegisName: Holy_Saber
+ Name: Holy saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 160
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEle,Ele_Undead,40;
+ bonus2 bMagicAddEle,Ele_Undead,40;
+ - Id: 13420
+ AegisName: Honglyun's_Sword
+ Name: Honglyun's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,2;
+ bonus3 bAutoSpell,"WZ_METEOR",1,5;
+ - Id: 13421
+ AegisName: Ruber
+ Name: Ruber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 13422
+ AegisName: Flamberge_C
+ Name: Flamberge
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 185
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddSize,Size_All,40;
+ - Id: 13423
+ AegisName: P_Sabre1
+ Name: Eden Sabre I
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 147
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13424
+ AegisName: P_Sabre2
+ Name: Eden Sabre II
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 170
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13425
+ AegisName: Tourist_Sword
+ Name: Tourist Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 500
+ Attack: 61
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ - Id: 13426
+ AegisName: F_Cutlas_C
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13427
+ AegisName: F_Solar_Sword_C
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bHPDrainValue,1;
+ bonus2 bSPLossRate,15,10000;
+ - Id: 13428
+ AegisName: Priest_Sword
+ Name: Priest Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 170
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ - Id: 13429
+ AegisName: E_Cutlas_C
+ Name: Cutlus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ skill "SM_BASH",5;
+ bonus bStr,2;
+ bonus bDef,1;
+ - Id: 13430
+ AegisName: E_Solar_Sword_C
+ Name: Solar Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 2
+ Attack: 120
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13431
+ AegisName: Chrome_Sword
+ Name: Chrome Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 180
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMaxHPrate,-5;
+ bonus bUnbreakableWeapon;
+ - Id: 13432
+ AegisName: Adventure_Sword
+ Name: Adventure Sword
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 80
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 13433
+ AegisName: Academy_Sword
+ Name: Academy Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bMaxHP,200;
+ bonus bMaxSP,100;
+ .@b = BaseLevel/10;
+ bonus bMaxHP,-40*.@b;
+ bonus bMaxSP,-20*.@b;
+ - Id: 13434
+ AegisName: P_Saber3
+ Name: Eden Saber III
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 185
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13435
+ AegisName: Fire_Brand_
+ Name: Fireblend
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 100
+ MagicAttack: 108
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ skill "MG_FIREBOLT",3;
+ bonus3 bAutoSpell,"MG_FIREBOLT",3,100;
+ - Id: 13436
+ AegisName: Ice_Falchon_
+ Name: Ice Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 600
+ Attack: 100
+ MagicAttack: 108
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ skill "MG_COLDBOLT",3;
+ bonus3 bAutoSpell,"MG_COLDBOLT",3,100;
+ - Id: 13437
+ AegisName: Orcish_Sword_
+ Name: Orcish Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 90
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 5
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ - Id: 13438
+ AegisName: Magical_Blade
+ Name: Magical Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 60000
+ Weight: 2000
+ Attack: 165
+ MagicAttack: 110
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ - Id: 13439
+ AegisName: TE_Woe_Sword
+ Name: TE Woe Sword
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 120
+ MagicAttack: 100
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Poison,1000;
+ - Id: 13440
+ AegisName: Ceremonial_Sword
+ Name: Ceremonial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 500
+ Attack: 60
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13441
+ AegisName: Thanos_Sword
+ Name: Thanos Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10
+ Weight: 700
+ Attack: 150
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 13442
+ AegisName: Old_Parasol
+ Name: Old Parasol
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10
+ Weight: 500
+ Attack: 120
+ MagicAttack: 80
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bMatk,getrefine()*10;
+ skill "MG_SOULSTRIKE",10;
+ - Id: 13444
+ AegisName: Pala
+ Name: Pala
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 190
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Refineable: true
+ Script: |
+ bonus bAspdRate,8;
+ - Id: 13445
+ AegisName: Half_BF_Sword1
+ Name: Half BF Sword1
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Attack: 115
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ - Id: 13446
+ AegisName: Star_Dust_Blade_
+ Name: Star Dust Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1000
+ Attack: 140
+ Range: 1
+ Slots: 3
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 45
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ bonus bUnbreakableWeapon;
+ - Id: 13447
+ AegisName: Byeorrun_Gum_
+ Name: Byeollungum
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 900
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Normal,-10;
+ bonus2 bAddClass,Class_Boss,50;
+ bonus bAllStats,2;
+ - Id: 13448
+ AegisName: Magical_Blade_
+ Name: Magical Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 2000
+ Attack: 165
+ MagicAttack: 110
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ - Id: 13449
+ AegisName: Gladius_Daemonicus
+ Name: Gladius Daemonicus
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1200
+ Attack: 130
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,10;
+ .@r = getrefine();
+ if (.@r>=9) {
+ autobonus "{ bonus bAspd,3; }",30,5000;
+ }
+ - Id: 13450
+ AegisName: Saber__
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10
+ Weight: 1000
+ Attack: 115
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 13451
+ AegisName: Ru_Blue_Sword
+ Name: Ru Blue Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1200
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bAgi,5;
+ - Id: 13452
+ AegisName: Ru_Gold_Sword
+ Name: Ru Gold Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1200
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,8;
+ bonus bAgi,8;
+ - Id: 13453
+ AegisName: Mysteltainn__
+ Name: Mysteltainn
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEle,Ele_Ghost,15;
+ bonus3 bAutoSpell,"MG_STONECURSE",3,100;
+ bonus2 bAddEff,Eff_Stone,10;
+ bonus bDex,3;
+ - Id: 13454
+ AegisName: Scarlet_Saber
+ Name: Crimson Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 850
+ Attack: 85
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 13455
+ AegisName: Sinister_Saber
+ Name: Saber of Vicious Mind
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1350
+ Attack: 135
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 13456
+ AegisName: Unity_Sword
+ Name: Unity Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 420
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 13457
+ AegisName: Unity_Dagger
+ Name: Unity Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 270
+ Attack: 52
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 13460
+ AegisName: Sealed_Magic_Sword
+ Name: Sealed Magic Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1500
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@sp = -100;
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,100;
+ if (.@r >= 7) {
+ .@sp += 50;
+ .@matk = 85;
+ if (.@r >= 10) {
+ bonus bAspd,1;
+ .@sp += 50;
+ .@matk += 45;
+ }
+ bonus bMatk,.@matk;
+ }
+ bonus bMaxSP,.@sp;
+ - Id: 13461
+ AegisName: Sealed_Evil_Sword
+ Name: Sealed Evil Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1500
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@def = -50;
+ .@mdef = -10;
+ bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100;
+ if (.@r >= 7) {
+ .@crit = 30;
+ .@mdef += 10;
+ if (.@r >= 10) {
+ bonus bAspd,1;
+ .@crit += 20;
+ .@def += 50;
+ }
+ bonus bCritical,.@crit;
+ }
+ bonus bDef,.@def;
+ bonus bMdef,.@mdef;
+ - Id: 13462
+ AegisName: Sealed_Max_Sword
+ Name: Sealed Maximum Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1500
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@hp = -1000;
+ bonus3 bAutoSpell,"MG_COLDBOLT",5,100;
+ if (.@r >= 7) {
+ .@atk = 65;
+ .@hp += 500;
+ if (.@r >= 10) {
+ bonus bAspd,1;
+ .@atk += 45;
+ .@hp += 500;
+ }
+ bonus bBaseAtk,.@atk;
+ }
+ if (.@hp) {
+ bonus bMaxHP,.@hp;
+ }
+ - Id: 13469
+ AegisName: Illusion_Immaterial_Sword
+ Name: Illusion Immaterial Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 900
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSPDrainValue,-1;
+ bonus bUnbreakableWeapon;
+ if (.@r >= 12) {
+ .@val = 20;
+ }
+ bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val);
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 13473
+ AegisName: God's_Sword
+ Name: God's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1300
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bAgi,5;
+ bonus bCritical,50;
+ bonus bFlee2,20;
+ bonus2 bAddRace,RC_Demon,30;
+ .@r = getrefine();
+ .@rate = 1+.@r;
+ .@s = getskilllv("ASC_BREAKER");
+ .@slv = 3;
+ if (.@s>3) {
+ .@slv = .@s;
+ }
+ bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate;
+ if (.@r>=8) {
+ skill "ASC_BREAKER",3;
+ }
+ - Id: 13474
+ AegisName: Sword___
+ Name: Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 500
+ Attack: 25
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 13475
+ AegisName: Falchion___
+ Name: Falchion
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 600
+ Attack: 39
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 13476
+ AegisName: Blade___
+ Name: Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 700
+ Attack: 53
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 2
+ Refineable: true
+ - Id: 13477
+ AegisName: Lapier___
+ Name: Rapier
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10
+ Weight: 500
+ Attack: 70
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 13478
+ AegisName: Scimiter___
+ Name: Scimitar
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 10
+ Weight: 700
+ Attack: 85
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 13479
+ AegisName: Tsurugi___
+ Name: Tsurugi
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1200
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 13480
+ AegisName: Ring_Pommel_Saber__
+ Name: Ring Pommel Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 900
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 14
+ Refineable: true
+ - Id: 13481
+ AegisName: Saber___
+ Name: Saber
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1000
+ Attack: 115
+ Slots: 3
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 27
+ Refineable: true
+ - Id: 13482
+ AegisName: Orcish_Blade
+ Name: Orcish Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SM_BASH",5;
+ bonus bMaxHP,150;
+ bonus bHealPower2,5;
+ bonus bUseSPrate,-50;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SM_BASH",5;
+ bonus bHealPower2,5;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SM_BASH",5;
+ }
+ - Id: 13483
+ AegisName: Beginner_Genetic's_Sword
+ Name: Beginner Genetic's Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-10;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ }
+ - Id: 13485
+ AegisName: Sword_Of_Bluefire
+ Name: Red Lotus Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 800
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bLongAtkRate,4*(.@r/3);
+ if (.@r>=9) {
+ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ }
+ - Id: 13492
+ AegisName: Abyss_Blade
+ Name: Abyss Blade
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1200
+ Attack: 150
+ MagicAttack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 165
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ if (.@r>=7) {
+ bonus2 bAddClass,Class_All,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ }
+ - Id: 13493
+ AegisName: Cannon_Rapier_OS
+ Name: Cannon Rapier-OS
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 800
+ Attack: 160
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),40;
+ if (.@r >= 7) {
+ bonus bAspdRate,7;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"MG_FIREBALL",30;
+ if (.@r >= 11) {
+ bonus3 bAutoSpell,"WL_HELLINFERNO",3,40;
+ }
+ }
+ }
+ - Id: 13495
+ AegisName: Sealed_Red_Lotus_Sword
+ Name: Sealed Red Lotus Sword
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 13497
+ AegisName: Edge_
+ Name: Edge
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1200
+ Attack: 60
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bHit,-40;
+ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100;
+ bonus2 bSkillAtk,"RG_RAID",50;
+ .@s = getskilllv("SM_SWORD");
+ bonus bHit,3*.@s;
+ bonus2 bAddClass,Class_All,2;
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bHit,2*.@s;
+ bonus2 bAddClass,Class_All,2;
+ }
+ - Id: 13498
+ AegisName: Nagan_
+ Name: Nagan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 500
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ .@b = readparam(bStr);
+ bonus bCritical,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
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 1
+ Weight: 1500
+ Attack: 180
+ MagicAttack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@rate = 1+.@r;
+ bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate;
+ if (.@r>=10) {
+ bonus bFixedCastrate,-70;
+ }
+ - Id: 15000
+ AegisName: Bone_Plate
+ Name: Bone Plate
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 60
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bMdef,3;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus2 bIgnoreDefRaceRate,RC_Brute,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10;
+ bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;
+ - Id: 15001
+ AegisName: Odin's_Blessing_I
+ Name: Odin's Blessing
+ Type: Armor
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 15002
+ AegisName: Rune_Plate
+ Name: Rune Plate
+ Type: Armor
+ Defense: 95
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 15003
+ AegisName: Freyja_SRobe7
+ Name: Freyja Soul Robe7
+ Type: Armor
+ Weight: 300
+ Defense: 7
+ Locations:
+ Armor: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 15004
+ AegisName: Freyja_SRobe30
+ Name: Freyja Soul Robe30
+ Type: Armor
+ Weight: 300
+ Defense: 7
+ Locations:
+ Armor: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 15005
+ AegisName: Freyja_SRobe60
+ Name: Freyja Soul Robe60
+ Type: Armor
+ Weight: 300
+ Defense: 7
+ Locations:
+ Armor: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 15006
+ AegisName: Freyja_SRobe90
+ Name: Freyja Soul Robe90
+ Type: Armor
+ Weight: 300
+ Defense: 7
+ Locations:
+ Armor: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 15007
+ AegisName: Time_Keepr_Robe
+ Name: Time Keeper Robe
+ Type: Armor
+ Buy: 30000
+ Defense: 62
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,1;
+ bonus bStr,2;
+ bonus bMaxHP,200;
+ - Id: 15008
+ AegisName: Flame_Sprits_Armor__
+ Name: Flame Sprits Armor
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 25
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,1;
+ bonus bDefEle,Ele_Fire;
+ bonus2 bSubDefEle,Ele_Earth,4;
+ - Id: 15009
+ AegisName: Para_Team_Uniform1
+ Name: Eden Team Uniform I
+ Type: Armor
+ Defense: 35
+ Locations:
+ Armor: true
+ EquipLevelMin: 7
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,10;
+ - Id: 15010
+ AegisName: Para_Team_Uniform2
+ Name: Eden Team Uniform II
+ Type: Armor
+ Defense: 46
+ Locations:
+ Armor: true
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,200;
+ bonus bMaxSP,20;
+ - Id: 15011
+ AegisName: Para_Team_Uniform3
+ Name: Eden Team Uniform III
+ Type: Armor
+ Defense: 58
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,30;
+ bonus bMdef,5;
+ - Id: 15012
+ AegisName: Puente_Robe
+ Name: Puente Robe
+ Type: Armor
+ Buy: 12000
+ Weight: 400
+ Defense: 42
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 22
+ Refineable: true
+ Script: |
+ bonus bFixedCastrate,-3;
+ bonus bHealPower,5;
+ - Id: 15013
+ AegisName: Claire_Suits
+ Name: Claire Suits
+ Type: Armor
+ Buy: 28000
+ Weight: 2800
+ Defense: 58
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 22
+ Refineable: true
+ - Id: 15014
+ AegisName: Ebone_Armor
+ Name: Ebon Armor
+ Type: Armor
+ Buy: 40000
+ Weight: 4500
+ Defense: 93
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 15015
+ AegisName: Upg_Adv_Suit
+ Name: Upg Adv Suit
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 25
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 15016
+ AegisName: Upg_Coat
+ Name: Upg Coat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 47
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 15017
+ AegisName: Upg_Saint_Robe
+ Name: Upg Saint Robe
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 55
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHPrate,3;
+ - Id: 15018
+ AegisName: Upg_Tights
+ Name: Upg Tights
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 32
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,1;
+ bonus bMaxHPrate,3;
+ - Id: 15019
+ AegisName: Upg_Thief_Cloth
+ Name: Upg Thief Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Assassin: true
+ KagerouOboro: true
+ Ninja: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,1;
+ bonus bMaxHPrate,3;
+ - Id: 15020
+ AegisName: Upg_Mail
+ Name: Upg Mail
+ Type: Armor
+ Buy: 20
+ Weight: 1650
+ Defense: 60
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 15021
+ AegisName: Upg_Formal_Dress
+ Name: Upg Formal Dress
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 45
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 15022
+ AegisName: Brazil_Swimsuit
+ Name: Brazil Swimsuit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,4;
+ bonus bInt,4;
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Water,20;
+ - Id: 15023
+ AegisName: Half_Brynhild
+ Name: Half Brynhild
+ Type: Armor
+ Buy: 20
+ Defense: 60
+ Locations:
+ Armor: true
+ EquipLevelMin: 47
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 15024
+ AegisName: Army_Padding
+ Name: Army Padding
+ Type: Armor
+ Weight: 10
+ Defense: 10
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 15025
+ AegisName: Golden_Rod_Robe
+ Name: Golden Rod Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 40
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ bonus bMdef,10;
+ bonus bInt,1;
+ bonus2 bSkillVariableCast,"WZ_VERMILION",-3000;
+ if (readparam(bInt)>=120) {
+ bonus bInt,1;
+ }
+ - Id: 15026
+ AegisName: Aqua_Robe
+ Name: Aqua Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 40
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ bonus bMdef,10;
+ bonus bInt,1;
+ bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000;
+ if (readparam(bInt)>=120) {
+ bonus bInt,1;
+ }
+ - Id: 15027
+ AegisName: Crimson_Robe
+ Name: Crimson Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 40
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ bonus bMdef,10;
+ bonus bInt,1;
+ bonus2 bSkillVariableCast,"WZ_METEOR",-3000;
+ if (readparam(bInt)>=120) {
+ bonus bInt,1;
+ }
+ - Id: 15028
+ AegisName: Forest_Robe
+ Name: Forest Robe
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 40
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ bonus bMdef,10;
+ bonus bInt,1;
+ bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000;
+ if (readparam(bInt)>=120) {
+ bonus bInt,1;
+ }
+ - Id: 15029
+ AegisName: Robe_Of_Affection
+ Name: Robe Of Affection
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 22
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Holy;
+ bonus bMdef,10;
+ bonus bInt,1;
+ bonus2 bSkillUseSP,"AB_CLEMENTIA",50;
+ - Id: 15030
+ AegisName: Robe_Of_Judgement
+ Name: Robe Of Judgement
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 22
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ 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;
+ - Id: 15031
+ AegisName: Para_Team_Armor
+ Name: Paradise Uniform IV
+ Type: Armor
+ Defense: 70
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 15032
+ AegisName: Tidung
+ Name: Tidung
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_All,5;
+ bonus2 bResEff,Eff_Stun,1500;
+ bonus2 bResEff,Eff_Freeze,1500;
+ - Id: 15033
+ AegisName: Tutorial_Mattle
+ Name: Tutorial Mantle
+ Type: Armor
+ Weight: 600
+ Defense: 37
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 15034
+ AegisName: Tutorial_Mattle_
+ Name: Tutorial Mantle
+ Type: Armor
+ Weight: 600
+ Defense: 37
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 15035
+ AegisName: 2010_Love_Daddy
+ Name: 2010 Love Dad
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 15036
+ AegisName: Ur_Plate
+ Name: Ur's Plate
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 110
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,getrefine();
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Formless,5;
+ - Id: 15037
+ AegisName: Peuz_Plate
+ Name: Peuz's Plate
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 110
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bBaseAtk,20;
+ bonus bFlee,17;
+ - Id: 15038
+ AegisName: Sabah_Cloth
+ Name: Sapha's Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bLuk,3;
+ bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20;
+ - Id: 15039
+ AegisName: Nab_Cloth
+ Name: Nab's Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ bonus bInt,2;
+ - Id: 15040
+ AegisName: Prison_Uniform
+ Name: Prison Uniform
+ Type: Armor
+ Buy: 10
+ Weight: 1500
+ Defense: 5
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHit,.@r;
+ bonus bFlee,.@r;
+ - Id: 15041
+ AegisName: Boitata_Armor
+ Name: Boitata Armor
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Neutral,7;
+ bonus bMaxHPrate,5;
+ bonus bFlee,5;
+ - Id: 15042
+ AegisName: White_Wing_Suits
+ Name: White Wing Suits
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,.@r*2;
+ bonus bFlee,.@r;
+ - Id: 15043
+ AegisName: Black_Wing_Suits
+ Name: Black Wing Suits
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bBaseAtk,getrefine()*3;
+ - Id: 15044
+ AegisName: Green_Operation_Coat
+ Name: Green Surgical Gown
+ Type: Armor
+ Buy: 56000
+ Weight: 660
+ Defense: 66
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ bonus bMaxSP,30;
+ - Id: 15045
+ AegisName: Armor_Of_Valor
+ Name: Armor Of Valor
+ Type: Armor
+ Defense: 4
+ Locations:
+ Armor: true
+ Script: |
+ bonus bHPrecovRate,10;
+ - Id: 15046
+ AegisName: Siege_Plate
+ Name: Siege Plate
+ Type: Armor
+ Weight: 3300
+ Defense: 85
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bHealpower2,12;
+ bonus bAddItemHealRate,12;
+ }
+ if (.@r>8) {
+ bonus bMaxHPrate,25;
+ }
+ - Id: 15047
+ AegisName: Siege_Suits
+ Name: Siege Suit
+ Type: Armor
+ Weight: 750
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Merchant: true
+ Ninja: true
+ Rebellion: true
+ Rogue: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bFlee2,5;
+ bonus bLongAtkDef,20;
+ }
+ if (.@r>8) {
+ bonus bMaxHPrate,15;
+ }
+ - Id: 15048
+ AegisName: Siege_Robe
+ Name: Siege Robe
+ Type: Armor
+ Weight: 500
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bMdef,20;
+ bonus2 bSubRace,RC_Player_Doram,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bFlee,5;
+ bonus bLongAtkDef,15;
+ }
+ if (.@r>8) {
+ bonus bMaxHP,1000;
+ bonus bMaxSP,100;
+ }
+ - Id: 15049
+ AegisName: Armor_Of_Faith
+ Name: Armor Of Faith
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bStr,4;
+ bonus bInt,4;
+ bonus bVit,4;
+ bonus bDex,4;
+ bonus bAgi,4;
+ bonus bLuk,4;
+ - Id: 15051
+ AegisName: Bakonawa_Armor
+ Name: Bakunawa Scale Armor
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 55
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Boss,getrefine()/2;
+ bonus bAllStats,1;
+ - Id: 15052
+ AegisName: Bayani_Bakonawa_Armor
+ Name: Bayani Bakunawa Scale Armor
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Boss,getrefine()/2;
+ bonus bAllStats,2;
+ - Id: 15053
+ AegisName: Special_Ninja_Suit
+ Name: Special Ninja Suit
+ Type: Armor
+ Buy: 10000
+ Weight: 1200
+ Defense: 70
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,1+(getrefine()/3);
+ - Id: 15054
+ AegisName: Ninja_Scale_Armor
+ Name: Ninja Scale Armor
+ Type: Armor
+ Buy: 10000
+ Weight: 1800
+ Defense: 90
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,-30;
+ - Id: 15055
+ AegisName: Tenebris_Latitantes
+ Name: Armor of Nothingness
+ Type: Armor
+ Buy: 10000
+ Weight: 1500
+ Defense: 60
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1;
+ - Id: 15056
+ AegisName: Special_Ninja_Suit_
+ Name: Special Ninja Suit
+ Type: Armor
+ Buy: 10000
+ Weight: 1200
+ Defense: 70
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,1+(getrefine()/3);
+ - Id: 15057
+ AegisName: Pure_White_Apron
+ Name: Pure White Apron
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 50
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 15058
+ AegisName: Rider_Suit
+ Name: Rider Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 40
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1+(getrefine()/2);
+ - Id: 15059
+ AegisName: 2011Love_Daddy
+ Name: 2011Love Daddy
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 80
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 15060
+ AegisName: Sky_Blue_Smock
+ Name: Sky Blue Smock
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (BaseLevel<80) {
+ bonus bHealPower,5;
+ }
+ - Id: 15061
+ AegisName: Egir_Armor
+ Name: Egir Armor
+ Type: Armor
+ Buy: 200000
+ Weight: 2600
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus2 bResEff,Eff_Silence,5000;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus2 bResEff,Eff_Stun,5000;
+ - Id: 15062
+ AegisName: TE_Woe_Coat
+ Name: TE Woe Coat
+ Type: Armor
+ Defense: 15
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,15;
+ bonus bMaxHP,250;
+ bonus bMaxSP,250;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_Player_Doram,10;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 15063
+ AegisName: TE_Woe_Chain_Mail
+ Name: TE Woe Chain Mail
+ Type: Armor
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHP,450;
+ bonus bMaxSP,50;
+ bonus2 bSubRace,RC_Player_Human,15;
+ bonus2 bSubRace,RC_Player_Doram,15;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 15064
+ AegisName: TE_Woe_Mage_Coat
+ Name: TE Woe Mage Coat
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,25;
+ bonus bMaxHP,200;
+ bonus bMaxSP,300;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 15066
+ AegisName: Engraved_Armor
+ Name: Engraved Plate Armor
+ Type: Armor
+ Buy: 100000
+ Weight: 3000
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bMdef,25;
+ - Id: 15067
+ AegisName: Rune_Suit
+ Name: Rune Suit
+ Type: Armor
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ EquipLevelMax: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 15068
+ AegisName: Im_Angel's_Protection
+ Name: Advanced Angelic Protection
+ Type: Armor
+ Buy: 10000
+ Weight: 600
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bMdef,30;
+ - Id: 15069
+ AegisName: Suit_Of_Sid
+ Name: Suit Of Sid
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 30
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 15070
+ AegisName: Clothes_of_Happiness
+ Name: Clothes of Happiness
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bLuk,getrefine();
+ - Id: 15071
+ AegisName: Valkyrie_Robe
+ Name: Valkyrian Robe
+ Type: Armor
+ Buy: 20
+ Weight: 2800
+ Defense: 55
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ Upper: true
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bUnbreakableArmor,1;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus2 bResEff,Eff_Silence,5000;
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus2 bResEff,Eff_Stun,5000;
+ - Id: 15072
+ AegisName: Nectar_Suit
+ Name: Nectar Suit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 35
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,3;
+ bonus bMdef,5;
+ bonus bMaxHPrate,(getrefine()/2);
+ bonus bMaxSPrate,(getrefine()/2);
+ - Id: 15073
+ AegisName: Anti_Magic_Suit
+ Name: Anti-Magic Suits
+ Type: Armor
+ Buy: 10
+ Weight: 1500
+ Defense: 50
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0);
+ bonus bMdef,10+((.@r >= 7) ? 5 : 0);
+ - Id: 15074
+ AegisName: Geffen_Mage_Robe
+ Name: Geffen Magic Robe
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ bonus bMdef,5;
+ bonus2 bAddEle,Ele_Water,10;
+ - Id: 15088
+ AegisName: School_Uniform
+ Name: School Uniform
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 25
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMaxHP,BaseLevel*3;
+ bonus bMaxSP,BaseLevel/2;
+ - Id: 15089
+ AegisName: Menswear
+ Name: Menswear
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 40
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,3+((.@r>=7)?2:0);
+ bonus bDelayrate,-3-((.@r>=7)?2:0);
+ bonus bVariableCastrate,-3-((.@r>=7)?2:0);
+ - Id: 15090
+ AegisName: Armor_Of_Gray
+ Name: Armor of Gray
+ Type: Armor
+ Buy: 10
+ Weight: 2400
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Merchant: true
+ Rogue: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubEle,Ele_Holy,10+getrefine()*2;
+ - Id: 15091
+ AegisName: Gray_Robe
+ Name: Gray Robe
+ Type: Armor
+ Buy: 20
+ Weight: 1300
+ Defense: 55
+ Slots: 1
+ Jobs:
+ Monk: true
+ Priest: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Holy,10+getrefine()*2;
+ - Id: 15093
+ AegisName: Hero_Plate
+ Name: Hero Plate
+ Type: Armor
+ Buy: 10
+ Weight: 4000
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ bonus bHit,10;
+ bonus bFlee,10;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",10;
+ bonus2 bSkillAtk,"RK_STORMBLAST",10;
+ .@r = (getrefine()+1)*3;
+ bonus5 bAutoSpell,"AL_HEAL",10,.@r,BF_SHORT,0;
+ bonus5 bAutoSpell,"WZ_STORMGUST",10,.@r,BF_SHORT,1;
+ - Id: 15094
+ AegisName: Hero_Magic_Coat
+ Name: Hero Magic Coat
+ Type: Armor
+ Buy: 10
+ Weight: 800
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMatk,10;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bFlee,10;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",10;
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10;
+ .@r = getrefine();
+ if (.@r) {
+ bonus bFixedCastrate,21-.@r/2;
+ bonus bNoCastCancel2;
+ bonus bMdef,.@r/2;
+ }
+ - Id: 15095
+ AegisName: Hero_Judgement_Shawl
+ Name: Hero Judgement Shawl
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 77
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ bonus bHit,10;
+ bonus bFlee,10;
+ bonus2 bSkillAtk,"AB_JUDEX",10;
+ bonus2 bSkillAtk,"AB_ADORAMUS",10;
+ bonus2 bSkillAtk,"SR_DRAGONCOMBO",10;
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",10;
+ bonus2 bSkillAtk,"SR_EARTHSHAKER",10;
+ .@r = getrefine()+1;
+ bonus5 bAutoSpell,"PR_KYRIE",10,.@r*3,BF_SHORT,0;
+ bonus5 bAutoSpell,"PR_LEXAETERNA",1,.@r*6,BF_MAGIC,1;
+ - Id: 15096
+ AegisName: Hero_Trade_Mail
+ Name: Hero Trade Mail
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ .@r = getrefine();
+ if (readparam(bStr) >= 90)
+ bonus bStr,.@r/2;
+ if (readparam(bInt) >= 90)
+ bonus bInt,.@r/2;
+ if (readparam(bAgi) >= 90)
+ bonus bAgi,.@r/2;
+ if (readparam(bVit) >= 90)
+ bonus bVit,.@r/2;
+ if (readparam(bDex) >= 90)
+ bonus bDex,.@r/2;
+ if (readparam(bLuk) >= 90)
+ bonus bLuk,.@r/2;
+ .@c = (.@r+1)*30;
+ bonus2 bAddEff,Eff_Stun,.@c;
+ bonus2 bAddEff,Eff_Silence,.@c;
+ bonus2 bAddEff,Eff_Curse,.@c;
+ bonus2 bAddEff,Eff_Poison,.@c;
+ - Id: 15097
+ AegisName: Hero_Hidden_Cloth
+ Name: Hero Hidden Cloth
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Rogue: true
+ Thief: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus2 bSkillAtk,"SC_FATALMENACE",10;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",10;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",10;
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10;
+ autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(1+getrefine())*3,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 15098
+ AegisName: Hero_Taget_Suits
+ Name: Hero Target Suit
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 60
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bLongAtkRate,3;
+ bonus bAspd,1;
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus5 bAutoSpell,"AC_CONCENTRATION",10,(1+.@r)*3,BF_WEAPON,0;
+ bonus5 bAutoSpell,"AC_DOUBLE",10,(1+.@r)*3,BF_LONG,1;
+ - Id: 15100
+ AegisName: Frozen_Breastplate
+ Name: Frozen Breastplate
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 15101
+ AegisName: Harden_Breastplate
+ Name: Hardened Breastplate
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 15102
+ AegisName: Hunter_Mail
+ Name: Hunter Mail
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5)
+ .@a = (.@r-5);
+ else
+ .@a = 0;
+ bonus2 bAddRace,RC_Brute,3+.@a;
+ bonus2 bMagicAddRace,RC_Brute,3+.@a;
+ bonus2 bAddRace,RC_Player_Doram,3+.@a;
+ bonus2 bMagicAddRace,RC_Player_Doram,3+.@a;
+ - Id: 15103
+ AegisName: Kirin_Armor
+ Name: Kirin Armor
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Script: |
+ bonus bDefEle,Ele_Holy;
+ - Id: 15104
+ AegisName: FishingMan_Mail
+ Name: FishingMan Mail
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Script: |
+ if (getrefine()>5) {
+ .@r = getrefine()-5;
+ }
+ bonus2 bAddRace,RC_Fish,3+.@r;
+ bonus2 bMagicAddRace,RC_Fish,3+.@r;
+ - Id: 15105
+ AegisName: Kaftan
+ Name: Kaftan
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 13
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_Undead,5;
+ - Id: 15106
+ AegisName: Engineer_Mail
+ Name: Engineer Mail
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddRace,RC_Formless,3;
+ bonus2 bMagicAddRace,RC_Formless,3;
+ if (.@r>5) {
+ bonus2 bAddRace,RC_Formless,.@r-5;
+ bonus2 bMagicAddRace,RC_Formless,.@r-5;
+ }
+ - Id: 15108
+ AegisName: VenomInsect_Armor
+ Name: Venomous Insect Armor
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bDefEle,Ele_Poison;
+ bonus bMdef,5;
+ bonus2 bAddEle,Ele_Poison,10;
+ - Id: 15110
+ AegisName: Supplement_Part_Str
+ Name: Supplement Part Str
+ Type: Armor
+ Buy: 25000
+ Weight: 2000
+ Defense: 80
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,5+getrefine()/4;
+ - Id: 15111
+ AegisName: Upgrade_Part_Plate
+ Name: Reinforced Parts - Gloves
+ Type: Armor
+ Buy: 10
+ Weight: 3000
+ Defense: 110
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus2 bSubSize,Size_Small,10;
+ bonus2 bSubSize,Size_Medium,10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubSize,Size_Large,10;
+ }
+ if (.@r>=9) {
+ bonus2 bSubSize,Size_Small,5;
+ bonus2 bSubSize,Size_Medium,5;
+ }
+ - Id: 15116
+ AegisName: Airship_Armor
+ Name: Airship's Armor
+ Type: Armor
+ Buy: 10
+ Weight: 700
+ Defense: 100
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,1000;
+ bonus bMaxSP,100;
+ bonus bMdef,10;
+ bonus bAllStats,1;
+ - Id: 15117
+ AegisName: Felock_Armor
+ Name: Felrock's Armor
+ Type: Armor
+ Buy: 10
+ Weight: 750
+ Defense: 70
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus bMdef,10;
+ bonus bAllStats,1;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ }
+ if (.@r>=9) {
+ bonus bMaxHP,200;
+ bonus bMaxSP,20;
+ }
+ if (.@r>=12) {
+ bonus bMaxHP,300;
+ bonus bMaxSP,30;
+ }
+ - Id: 15121
+ AegisName: Robe_Of_Sarah
+ Name: Sarah's Battle Robe
+ Type: Armor
+ Buy: 10
+ Weight: 800
+ Defense: 35
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 145
+ Refineable: true
+ Script: |
+ autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";
+ - Id: 15123
+ AegisName: Whikebain_Suit
+ Name: Whikebain Suit
+ Type: Armor
+ Weight: 900
+ Defense: 56
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0));
+ bonus3 bAutoSpell,"DC_WINKCHARM",1,10;
+ /* Confirm: Success rate */
+ - Id: 15125
+ AegisName: Male_Poring_Egg
+ Name: Female Diver's Suit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r<5)
+ .@r2 = 0;
+ else if (.@r<6)
+ .@r2 = 100;
+ else if (.@r<7)
+ .@r2 = 400;
+ else if (.@r<8)
+ .@r2 = 700;
+ else if (.@r<9)
+ .@r2 = 1400;
+ else if (.@r<10)
+ .@r2 = 2100;
+ else {
+ .@r = 10;
+ .@r2 = 3600;
+ }
+ bonus2 bAddMonsterDropItem,579,(((.@r+6)*100)+.@r2);
+ if (.@r>=7) {
+ bonus bHPrecovRate,-100;
+ bonus bHPGainValue,100;
+ }
+ - Id: 15126
+ AegisName: Doram_Only_Suit
+ Name: Private Doram Suits
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 80
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ .@r = getrefine()/3;
+ bonus bDex,.@r;
+ bonus bInt,.@r;
+ - Id: 15128
+ AegisName: Excelion_Suit
+ Name: Excelion Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 100
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bVit,6 + (BaseLevel > 129 ? 4 : 0);
+ bonus bMaxHPrate,(getrefine() / 3) * 4;
+ bonus bUnbreakableArmor;
+ - Id: 15129
+ AegisName: Doram_High_Suit
+ Name: Luxury Doram Suit
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ .@r = getrefine()/2;
+ bonus bDex,.@r;
+ bonus bInt,.@r;
+ - Id: 15138
+ AegisName: Egir_Armor_K
+ Name: Aegir Armor
+ Type: Armor
+ Buy: 10
+ Weight: 1600
+ Defense: 25
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus bUnbreakableArmor;
+ - Id: 15141
+ AegisName: Rift_Ancient_Armor
+ Name: Rift Ancient Armor
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500);
+ bonus bMaxSP,-100;
+ - Id: 15143
+ AegisName: Vermin_Cloth
+ Name: Vermin Cloth
+ Type: Armor
+ Buy: 10
+ Weight: 1200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5+.@r;
+ bonus2 bSubRace,RC_Plant,(5+.@r);
+ - Id: 15144
+ AegisName: Agricul_Cloth
+ Name: Agriculture Clothes
+ Type: Armor
+ Buy: 10
+ Weight: 1200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5+.@r;
+ bonus2 bSubRace,RC_Insect,5+.@r;
+ - Id: 15145
+ AegisName: EvilDragon_Armor
+ Name: Evil Dragon Armor
+ Type: Armor
+ Weight: 4000
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=10) {
+ bonus2 bHPDrainRate,60,6;
+ bonus2 bSPDrainRate,50,5;
+ } else if (.@r>=9) {
+ bonus2 bHPDrainRate,40,4;
+ bonus2 bSPDrainRate,30,3;
+ } else if (.@r>=8) {
+ bonus2 bHPDrainRate,30,3;
+ bonus2 bSPDrainRate,20,2;
+ }
+ - Id: 15146
+ AegisName: Robe_Of_Flattery
+ Name: Flattery Robe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ skill "SM_ENDURE",1;
+ .@i = BaseLevel;
+ bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50));
+ - Id: 15147
+ AegisName: Robe_Of_Vituperation
+ Name: Invective Robe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ skill "AC_CONCENTRATION",1;
+ .@i = getrefine()*4;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,.@i;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,.@i;
+ bonus2 bIgnoreDefRaceRate,RC_Undead,.@i;
+ - Id: 15150
+ AegisName: White_Shirt
+ Name: White Shirt
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 6
+ Refineable: true
+ Script: |
+ bonus bMaxHP,70;
+ bonus bFlee,5;
+ - Id: 15151
+ AegisName: White_Eco_Shirt
+ Name: White Eco-Shirt
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 40
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 15
+ Refineable: true
+ Script: |
+ bonus bMaxHP,150;
+ bonus bFlee,10;
+ - Id: 15152
+ AegisName: Unity_Mail
+ Name: Unity Mail
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bInt,2;
+ bonus bUseSPrate,-(.@r/2);
+ }
+ - Id: 15156
+ AegisName: Doram_Ele_Suit
+ Name: Elegant Doram Suit
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,15;
+ .@r = getrefine();
+ bonus bDex,.@r;
+ bonus bInt,.@r;
+ if (.@r > 9)
+ bonus bUseSPrate,-5;
+ - Id: 15162
+ AegisName: Lounge_Suit
+ Name: Lounge Suit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 40
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-3;
+ bonus bDelayrate,-3;
+ if (getrefine() > 6) {
+ bonus bAspdRate,2;
+ bonus bVariableCastrate,-2;
+ bonus bDelayrate,-2;
+ }
+ - Id: 15163
+ AegisName: Agenda_Robe
+ Name: Agenda Robe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ skill "SA_SPELLBREAKER",1;
+ if (BaseLevel >= 140) {
+ .@val = 14;
+ } else if (BaseLevel >= 120) {
+ .@val = 9;
+ }
+ else {
+ .@val = 5;
+ }
+ bonus bMatkRate,.@val;
+ - Id: 15164
+ AegisName: Consultation_Robe
+ Name: Consultation Robe
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bVit,5;
+ skill "PA_SACRIFICE",1;
+ bonus2 bSubEle,Ele_Dark,.@r*3;
+ bonus2 bSubEle,Ele_Fire,.@r*3;
+ - Id: 15165
+ AegisName: PureWhite_Marching_Hat
+ Name: Pure White Marching Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 1470
+ Script: |
+ .@r = getrefine();
+ bonus bStr,2;
+ autobonus "{ bonus bAtkEle,Ele_Ghost; }",max(1,.@r*2),60000,BF_WEAPON,"{ specialeffect2 EF_ASPERSIO; }";
+ - Id: 15166
+ AegisName: Necklace_Rosary
+ Name: Rosary Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 60
+ View: 1471
+ Script: |
+ bonus bFlee2,2;
+ bonus bHealPower,3;
+ - Id: 15167
+ AegisName: Toughen_Time_Keepr_Robe
+ Name: Enhanced Time Keeper Robe
+ Type: Armor
+ Defense: 74
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bFlee2,3;
+ bonus bMdef,3;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ - Id: 15169
+ AegisName: Kardui_Robe
+ Name: Kardui Robe
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10;
+ bonus bMdef,5;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ }
+ if (.@r>=8) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus bUnbreakableArmor;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ }
+ - Id: 15174
+ AegisName: Surfer_Swimsuit
+ Name: Surfer Swimsuit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,(getrefine()/3)+5;
+ bonus bMaxSPrate,(getrefine()/3)+5;
+ - Id: 15175
+ AegisName: Armor_Of_Flamedragon
+ Name: Flame Dragon Armor
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9)
+ .@val = 20;
+ else if (.@r>=7)
+ .@val = 10;
+ bonus bAllStats,1;
+ bonus bHit,10+.@val;
+ bonus2 bAddClass,Class_Boss,.@val;
+ - Id: 15176
+ AegisName: Vigilante_Suits
+ Name: Vigilante Suit
+ Type: Armor
+ Weight: 500
+ Defense: 50
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,5;
+ bonus bLongAtkRate,3*(.@r/2);
+ if (.@r>=9)
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;
+ - Id: 15177
+ AegisName: Robe_Of_Elemental
+ Name: Elemental Robe
+ Type: Armor
+ Weight: 500
+ Defense: 40
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,10;
+ bonus bMatk,5*(.@r/2);
+ if (.@r>=9)
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50;
+ - Id: 15178
+ AegisName: Golden_Ninja_Suit
+ Name: Golden Ninja Suit
+ Type: Armor
+ Weight: 500
+ Defense: 50
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bflee,5*(.@r/2);
+ if (.@r>=9)
+ bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;
+ - Id: 15179
+ AegisName: Mine_Worker_Vest
+ Name: Mine Worker's Vest
+ Type: Armor
+ Weight: 1500
+ Defense: 80
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee,(10+4*(.@r/2));
+ if (.@r>=9)
+ bonus bCritical,5;
+ - Id: 15180
+ AegisName: Hippie_Cloth
+ Name: Hippie Clothes
+ Type: Armor
+ Weight: 500
+ Defense: 50
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20;
+ if (.@r >= 9)
+ bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10;
+ - Id: 15181
+ AegisName: Para_Team_Uniform100
+ Name: Awakened Eden Group Uniform I
+ Type: Armor
+ Buy: 20
+ Defense: 80
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMaxHP,700;
+ bonus bMaxSP,100;
+ bonus bMdef,7;
+ - Id: 15182
+ AegisName: Para_Team_Uniform115
+ Name: Awakened Eden Group Uniform II
+ Type: Armor
+ Buy: 20
+ Defense: 85
+ Locations:
+ Armor: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMaxHP,1100;
+ bonus bMaxSP,120;
+ bonus bMdef,11;
+ - Id: 15183
+ AegisName: Para_Team_Uniform130
+ Name: Awakened Eden Group Uniform III
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMaxHP,1100;
+ bonus bMaxSP,120;
+ bonus bMdef,11;
+ - Id: 15184
+ AegisName: Para_Team_Uniform145
+ Name: Awakened Eden Group Uniform IV
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Locations:
+ Armor: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMaxHP,1500;
+ bonus bMaxSP,150;
+ bonus bMdef,15;
+ - Id: 15185
+ AegisName: Para_Team_Uniform160
+ Name: Awakened Eden Group Uniform V
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bMaxHP,1500;
+ bonus bMaxSP,150;
+ bonus bMdef,15;
+ bonus2 bSubEle,Ele_All,5;
+ bonus2 bSubEle,Ele_Neutral,-5;
+ - Id: 15186
+ AegisName: Kafra_Uniform
+ Name: Kafra Uniform
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ 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;
+ }
+ - Id: 15189
+ AegisName: Einherial_Armor
+ Name: Einherjar Armor
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bBaseAtk,10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ }
+ if (.@r>=8) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ }
+ - Id: 15191
+ AegisName: Khalitzburg_Knight_Armor
+ Name: Khalitzburg Knight Armor
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,2*getrefine();
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ - Id: 15195
+ AegisName: Puente_Robe_IL
+ Name: Illusion Puente Robe
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 52
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bFixedCastrate,-3;
+ .@r = getrefine();
+ bonus bHealPower2,(5+.@r);
+ bonus bAddItemHealRate,(5+.@r);
+ - Id: 15204
+ AegisName: Abyss_Dress
+ Name: Abyss Dress
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 120
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bNoKnockback;
+ bonus bUnbreakableArmor;
+ bonus bDefEle,Ele_dark;
+ if (.@r>=5) {
+ .@val = 10;
+ if (.@r>=7) {
+ .@val += 15;
+ if (.@r>=9) {
+ .@val += 15;
+ }
+ }
+ bonus2 bAddEle,Ele_Dark,.@val;
+ bonus2 bAddEle,Ele_Undead,.@val;
+ bonus2 bMagicAddEle,Ele_Dark,.@val;
+ bonus2 bMagicAddEle,Ele_Undead,.@val;
+ bonus2 bAddRace,RC_Undead,.@val;
+ bonus2 bAddRace,RC_Demon,.@val;
+ bonus2 bMagicAddRace,RC_Undead,.@val;
+ bonus2 bMagicAddRace,RC_Demon,.@val;
+ }
+ - Id: 15205
+ AegisName: Holy_Coat
+ Name: Medical Scrubs
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 50
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ bonus bDelayrate,-10;
+ .@val = 1;
+ if (.@r >= 7) {
+ .@def = 50;
+ bonus bUnbreakableArmor,1;
+ .@val += 2;
+ if (.@r >= 8) {
+ .@def += 100;
+ .@val += 3;
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ if (.@r >= 9) {
+ .@def += 150;
+ .@val += 4;
+ bonus2 bResEff,Eff_Stone,5000;
+ }
+ }
+ bonus bDef,.@def;
+ }
+ bonus bHealPower,2*.@val;
+ bonus bHealPower2,.@val;
+ bonus bAddItemHealRate,.@val;
+ - Id: 15209
+ AegisName: Drake_Coat
+ Name: Drake Coat
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus bMdef,10;
+ bonus2 bAddClass,Class_All,3;
+ if (.@r>=7) {
+ bonus bMaxHP,1000;
+ bonus bMaxSP,100;
+ bonus2 bAddClass,Class_All,3;
+ }
+ if (.@r>=9) {
+ bonus bMaxHP,1500;
+ bonus bMaxSP,150;
+ bonus2 bAddClass,Class_All,4;
+ bonus bNoSizeFix;
+ }
+ - Id: 15210
+ AegisName: Rental_SupperSwimsuit
+ Name: Rental Surfer Swimsuit
+ Type: Armor
+ Defense: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ - Id: 15212
+ AegisName: YSF01_Plate
+ Name: YSF01 Plate
+ Type: Armor
+ Weight: 2100
+ Defense: 78
+ Slots: 1
+ Locations:
+ Armor: true
+ 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;
+ }
+ - Id: 15246
+ AegisName: True_Hunting_Mail
+ Name: True Hunting Mail
+ Type: Armor
+ Weight: 900
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000;
+ bonus bMaxSP,200;
+ bonus2 bAddRace,RC_Insect,10;
+ bonus2 bMagicAddRace,RC_Insect,10;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bMagicAddRace,RC_Brute,10;
+ bonus bMaxHPrate,(.@r/3);
+ bonus bMaxSPrate,(.@r/3);
+ - Id: 15247
+ AegisName: R_Hunting_Mail
+ Name: Short-term Hunting Mail
+ Type: Armor
+ Defense: 40
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,2000;
+ bonus bMaxSP,300;
+ bonus2 bAddRace,RC_Insect,10;
+ bonus2 bMagicAddRace,RC_Insect,10;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bMagicAddRace,RC_Brute,10;
+ - Id: 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
+ Type: Armor
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Script: |
+ 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
+ Type: Armor
+ Weight: 2000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ 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;
+ }
+ - Id: 15279
+ AegisName: Overwhelm_Int_Armor
+ Name: Robust Magical Armor
+ Type: Armor
+ Weight: 900
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r > 2)
+ bonus bMatkRate,.@r/3*2;
+ if (.@r > 6) {
+ bonus2 bIgnoreMdefRaceRate,RC_Brute,30;
+ bonus2 bIgnoreMdefRaceRate,RC_Demon,30;
+ }
+ if (.@r > 8) {
+ bonus2 bMagicAddRace,RC_Demon,10;
+ bonus2 bMagicAddRace,RC_Brute,10;
+ }
+ if (.@r > 10) {
+ bonus2 bMagicAddEle,Ele_Earth,10;
+ bonus2 bMagicAddEle,Ele_Wind,10;
+ }
+ - Id: 15280
+ AegisName: S_Cri_Hit_Armor
+ Name: Critical Hit Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ 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;
+ - Id: 15283
+ AegisName: Armor_of_Rosary
+ Name: Mighty Black Threaded Armor
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10;
+ bonus2 bIgnoreDefRaceRate,RC_All,10;
+ if (.@r>=7) {
+ bonus bBaseAtk,20;
+ bonus2 bIgnoreDefRaceRate,RC_All,20;
+ }
+ if (.@r>=8) {
+ bonus bBaseAtk,20;
+ bonus2 bIgnoreDefRaceRate,RC_All,20;
+ bonus bUnbreakableArmor;
+ }
+ if (.@r>=9) {
+ bonus bBaseAtk,30;
+ bonus2 bIgnoreDefRaceRate,RC_All,20;
+ }
+ - Id: 15343
+ AegisName: Supplement_Part_Str_
+ Name: Supplement Part STR
+ Type: Armor
+ Buy: 25000
+ Weight: 2000
+ Defense: 80
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,5+(getrefine()/4);
+ - Id: 15344
+ AegisName: Upgrade_Part_Plate_
+ Name: Upgrade Part - Gloves
+ Type: Armor
+ Buy: 25000
+ Weight: 3000
+ Defense: 110
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@val = 10;
+ if (.@r>6) {
+ bonus2 bSubSize,Size_Large,10;
+ bonus2 bMagicSubSize,Size_Large,10;
+ if (.@r>8) {
+ .@val += 5;
+ }
+ }
+ bonus2 bSubSize,Size_Small,.@val;
+ 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
+ Type: Armor
+ Weight: 2000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r > 2)
+ bonus bCritAtkRate,.@r/3*2;
+ if (.@r > 6) {
+ bonus2 bIgnoreDefRaceRate,RC_Brute,30;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,30;
+ }
+ if (.@r > 8) {
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Demon,10;
+ }
+ if (.@r > 10) {
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ }
+ - Id: 15347
+ AegisName: Overwhelm_Vit_Armor
+ Name: Strong Healthy Armor
+ Type: Armor
+ Weight: 2000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r > 2)
+ bonus bMaxHPrate,.@r/3*2;
+ if (.@r > 6) {
+ bonus2 bIgnoreDefRaceRate,RC_Brute,30;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,30;
+ }
+ if (.@r > 8) {
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Demon,10;
+ }
+ if (.@r > 10) {
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ }
+ - Id: 15348
+ AegisName: Illusion_Goibne_Armor
+ Name: Illusion Goibne Armor
+ Type: Armor
+ Weight: 3500
+ Defense: 158
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 120
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bNoKnockback;
+ bonus bUnbreakableArmor;
+ bonus bDefEle,Ele_Earth;
+ if (.@r>8)
+ .@a = 40;
+ else if (.@r>6)
+ .@a = 25;
+ else if (.@r>=5)
+ .@a = 10;
+ bonus2 bAddEle,Ele_Earth,.@a;
+ bonus2 bAddEle,Ele_Wind,.@a;
+ bonus2 bMagicAddEle,Ele_Earth,.@a;
+ bonus2 bMagicAddEle,Ele_Wind,.@a;
+ bonus2 bAddRace,RC_Demihuman,.@a;
+ bonus2 bAddRace,RC_Brute,.@a;
+ bonus2 bAddRace,RC_Player_Doram,.@a;
+ bonus2 bMagicAddRace,RC_Demihuman,.@a;
+ bonus2 bMagicAddRace,RC_Brute,.@a;
+ bonus2 bMagicAddRace,RC_Player_Doram,.@a;
+ bonus2 bAddRace,RC_Player_Human,.@a;
+ bonus2 bMagicAddRace,RC_Player_Human,.@a;
+ - Id: 15353
+ AegisName: Overwhelm_Agi_Armor
+ Name: Splendid Swift Armor
+ Type: Armor
+ Weight: 2000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r > 2)
+ bonus bAspdRate,.@r/3*2;
+ if (.@r > 6) {
+ bonus2 bIgnoreDefRaceRate,RC_Brute,30;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,30;
+ }
+ if (.@r > 8) {
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Demon,10;
+ }
+ if (.@r > 10) {
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ }
+ - Id: 15354
+ AegisName: Overwhelm_Dex_Armor
+ Name: Excellent Dexterous Armor
+ Type: Armor
+ Weight: 2000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r > 2)
+ bonus bLongAtkRate,.@r/3*2;
+ if (.@r > 6) {
+ bonus2 bIgnoreDefRaceRate,RC_Brute,30;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,30;
+ }
+ if (.@r > 8) {
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Demon,10;
+ }
+ if (.@r > 10) {
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ }
+ - Id: 15376
+ AegisName: Illusion_Armor_A
+ Name: Illusion Armor A-type
+ Type: Armor
+ Weight: 1000
+ Defense: 105
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(100+10*(.@r/2));
+ if (.@r >= 7) {
+ bonus bAspdRate,10;
+ }
+ - Id: 15377
+ AegisName: Illusion_Armor_B
+ Name: Illusion Armor B-type
+ Type: Armor
+ Weight: 1000
+ Defense: 105
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,(100+10*(.@r/2));
+ if (.@r >= 7) {
+ bonus bVariableCastrate,-10;
+ }
+ - Id: 15378
+ AegisName: Lava_Leather_Armor
+ Name: Lava Leather Armor
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 85
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bDef,100;
+ if (.@r>=9)
+ bonus bDef,50;
+ - Id: 15379
+ AegisName: Lava_Leather_Suit
+ Name: Lava Leather Suit
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 70
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bBaseAtk,50;
+ if (.@r>=9)
+ bonus bCritAtkRate,10;
+ - Id: 15380
+ AegisName: Lava_Leather_Robe
+ Name: Lava Leather Robe
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 55
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bMatk,50;
+ if (.@r>=9)
+ bonus bMatk,25;
+ - Id: 15383
+ AegisName: Time_Overload_Robe
+ Name: Temporal Transcendent Robe
+ Type: Armor
+ Defense: 62
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ bonus bMatk,50;
+ bonus bBaseAtk,50;
+ bonus bDelayrate,-10;
+ - Id: 15384
+ AegisName: Rite_Robe
+ Name: Ritual Robes
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower,5;
+ bonus bDelayrate,-10;
+ bonus bMaxHPrate,5;
+ if (.@r>=7) {
+ bonus bMaxHPrate,5;
+ bonus bHealPower,5;
+ }
+ if (.@r>=8) {
+ bonus bMaxHPrate,5;
+ bonus bHealPower,10;
+ bonus bUseSPrate,-10;
+ bonus2 bResEff,Eff_Sleep,10000;
+ }
+ if (.@r>=9) {
+ bonus bMaxHPrate,5;
+ bonus bHealPower,10;
+ }
+ - Id: 15388
+ AegisName: King_Schmidt_Suit
+ Name: King Schmidt's Suit
+ Type: Armor
+ Weight: 900
+ Defense: 150
+ Slots: 1
+ Locations:
+ Armor: true
+ 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;
+ }
+ - Id: 15389
+ AegisName: King_Schmidt_Manteau
+ Name: King Schmidt's Manteau
+ Type: Armor
+ Weight: 600
+ Defense: 70
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddEle,Ele_Fire,(.@r/3)*2;
+ bonus2 bAddEle,Ele_Dark,(.@r/3)*2;
+ bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2;
+ bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2;
+ if (.@r > 6) {
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus2 bSubRace,RC_Formless,5;
+ }
+ if (.@r > 10) {
+ bonus2 bAddRace,RC_Dragon,15;
+ bonus2 bAddRace,RC_Formless,15;
+ bonus2 bMagicAddRace,RC_Dragon,15;
+ bonus2 bMagicAddRace,RC_Formless,15;
+ }
+ - Id: 15390
+ AegisName: Regia_Hunting_Mail
+ Name: Regia Hunting Mail
+ Type: Armor
+ Weight: 900
+ Defense: 25
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,500+50*(.@r/3);
+ bonus bMaxSP,100+20*(.@r/3);
+ bonus2 bAddRace,RC_Insect,7;
+ bonus2 bMagicAddRace,RC_Insect,7;
+ bonus2 bAddRace,RC_Brute,7;
+ bonus2 bMagicAddRace,RC_Brute,7;
+ - Id: 15391
+ AegisName: DragonA_Red
+ Name: Red Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,10;
+ bonus bStr,12;
+ bonus2 bAddClass,Class_All,2*(.@r/2);
+ bonus2 bAddRace,RC_Dragon,7*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Medium,10;
+ bonus2 bAddSize,Size_Large,10;
+ }
+ - Id: 15392
+ AegisName: DragonA_Green
+ Name: Green Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAgi,12;
+ bonus bLongAtkRate,2*(.@r/2);
+ bonus2 bAddRace,RC_Dragon,7*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Medium,10;
+ bonus2 bAddSize,Size_Large,10;
+ }
+ - Id: 15393
+ AegisName: DragonA_Gold
+ Name: Gold Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,5;
+ bonus bVit,12;
+ bonus bAspdRate,3*(.@r/2);
+ bonus bVariableCastrate,-3*(.@r/2);
+ bonus2 bAddRace,RC_Dragon,7*(.@r/3);
+ bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Medium,6;
+ bonus2 bMagicAddSize,Size_Medium,6;
+ bonus2 bAddSize,Size_Large,6;
+ bonus2 bMagicAddSize,Size_Large,6;
+ }
+ - Id: 15394
+ AegisName: DragonA_Purple
+ Name: Purple Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,10;
+ bonus bDex,12;
+ bonus bAspdRate,4*(.@r/2);
+ bonus bVariableCastrate,-4*(.@r/2);
+ bonus2 bAddRace,RC_Dragon,8*(.@r/3);
+ bonus2 bMagicAddRace,RC_Dragon,8*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Medium,8;
+ bonus2 bMagicAddSize,Size_Medium,8;
+ bonus2 bAddSize,Size_Large,8;
+ bonus2 bMagicAddSize,Size_Large,8;
+ }
+ - Id: 15395
+ AegisName: DragonA_Blue
+ Name: Blue Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,20;
+ bonus bInt,12;
+ bonus bMatkRate,2*(.@r/2);
+ bonus bHealPower,4*(.@r/2);
+ bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bMagicAddSize,Size_Medium,10;
+ bonus2 bMagicAddSize,Size_Large,10;
+ }
+ - Id: 15396
+ AegisName: DragonA_Silver
+ Name: Silver Dragon Plate
+ Type: Armor
+ Weight: 1200
+ Defense: 110
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,15;
+ bonus bLuk,12;
+ bonus bCritAtkRate,4*(.@r/2);
+ bonus bCritical,2*(.@r/2);
+ bonus2 bAddRace,RC_Dragon,7*(.@r/3);
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Medium,10;
+ bonus2 bAddSize,Size_Large,10;
+ }
+ - Id: 15397
+ AegisName: CassockA_STR
+ Name: STR Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAspdRate,10;
+ bonus2 bAddClass,Class_All,3*(.@r/2);
+ bonus bStr,5*(.@r/3);
+ bonus2 bAddRace,RC_Angel,8*(.@r/4);
+ bonus2 bAddRace,RC_Demon,8*(.@r/4);
+ - Id: 15398
+ AegisName: CassockA_AGI
+ Name: AGI Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAspdRate,10;
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bAgi,5*(.@r/3);
+ bonus2 bAddRace,RC_Angel,8*(.@r/4);
+ bonus2 bAddRace,RC_Demon,8*(.@r/4);
+ - Id: 15399
+ AegisName: CassockA_VIT
+ Name: VIT Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,5;
+ bonus bAspdRate,7;
+ bonus bVariableCastrate,-7;
+ bonus bMaxHPrate,2*(.@r/2);
+ bonus bVit,5*(.@r/3);
+ bonus2 bAddRace,RC_Angel,10*(.@r/4);
+ bonus2 bMagicAddRace,RC_Angel,10*(.@r/4);
+ bonus2 bAddRace,RC_Demon,10*(.@r/4);
+ bonus2 bMagicAddRace,RC_Demon,10*(.@r/4);
+ - Id: 15400
+ AegisName: CassockA_DEX
+ Name: DEX Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ bonus bMatkRate,(.@r/2);
+ bonus2 bAddClass,Class_All,(.@r/2);
+ bonus bDex,5*(.@r/3);
+ bonus2 bAddRace,RC_Angel,6*(.@r/4);
+ bonus2 bMagicAddRace,RC_Angel,6*(.@r/4);
+ bonus2 bAddRace,RC_Demon,6*(.@r/4);
+ bonus2 bMagicAddRace,RC_Demon,6*(.@r/4);
+ - Id: 15401
+ AegisName: CassockA_INT
+ Name: INT Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,15;
+ bonus bVariableCastrate,-10;
+ bonus bMatkRate,3*(.@r/2);
+ bonus bInt,5*(.@r/3);
+ bonus2 bMagicAddRace,RC_Angel,8*(.@r/4);
+ bonus2 bMagicAddRace,RC_Demon,8*(.@r/4);
+ - Id: 15402
+ AegisName: CassockA_LUK
+ Name: LUK Soutane
+ Type: Armor
+ Weight: 800
+ Defense: 100
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAspdRate,10;
+ bonus bCritAtkRate,4*(.@r/2);
+ bonus bCritical,3*(.@r/2);
+ bonus bLuk,5*(.@r/3);
+ bonus2 bAddRace,RC_Angel,8*(.@r/4);
+ bonus2 bAddRace,RC_Demon,8*(.@r/4);
+ - Id: 15405
+ AegisName: Fafnir_Scale_J
+ Name: Fafnir Scale
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 120
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,15;
+ bonus bUnbreakableArmor;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",50;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50;
+ bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER");
+ bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH");
+ if (.@r>=5) {
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,20;
+ bonus bDelayrate,-5;
+ }
+ if (.@r>=7) {
+ bonus bMaxHPrate,20;
+ bonus bMaxSPrate,20;
+ bonus bDelayrate,-5;
+ }
+ - Id: 15409
+ AegisName: Bloody_Doll's_Dress
+ Name: Bloody Doll's Dress
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMatk,10;
+ bonus bDex,3;
+ bonus2 bSubRace,RC_Player_Human,7;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=8)
+ bonus bUnbreakableArmor;
+ - Id: 15410
+ AegisName: H_AD_Suits
+ Name: High Adventurer Suit
+ Type: Armor
+ Defense: 35
+ Slots: 1
+ Locations:
+ Armor: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,100;
+ - Id: 15417
+ AegisName: Armor_of_Purple_Thread
+ Name: Armor of Purple Thread
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10;
+ bonus bPerfectHitAddRate,5;
+ if (.@r>=7) {
+ bonus bBaseAtk,20;
+ bonus bPerfectHitAddRate,5;
+ }
+ if (.@r>=8) {
+ bonus bBaseAtk,20;
+ bonus bPerfectHitAddRate,10;
+ }
+ if (.@r>=9) {
+ bonus bBaseAtk,30;
+ bonus bPerfectHitAddRate,10;
+ }
+ - Id: 15419
+ AegisName: Armor_of_White_Thread
+ Name: Mighty White Threaded Armor
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 60
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10;
+ bonus2 bIgnoreMdefRaceRate,RC_All,10;
+ if (.@r>=7) {
+ bonus bMatk,20;
+ bonus2 bIgnoreMdefRaceRate,RC_All,20;
+ }
+ if (.@r>=8) {
+ bonus bMatk,20;
+ bonus2 bIgnoreMdefRaceRate,RC_All,20;
+ bonus bUnbreakableArmor;
+ }
+ if (.@r>=9) {
+ bonus bMatk,30;
+ bonus2 bIgnoreMdefRaceRate,RC_All,20;
+ }
+ - Id: 15420
+ AegisName: Icefall_Dress
+ Name: Ice Prison Dress
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 120
+ Locations:
+ Armor: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bNoKnockback;
+ bonus bUnbreakableArmor;
+ bonus bDefEle,Ele_Water;
+ if (.@r>8)
+ .@a = 40;
+ else if (.@r>6)
+ .@a = 25;
+ else if (.@r>=5)
+ .@a = 10;
+ bonus2 bAddEle,Ele_Fire,.@a;
+ bonus2 bAddEle,Ele_Water,.@a;
+ bonus2 bMagicAddEle,Ele_Fire,.@a;
+ bonus2 bMagicAddEle,Ele_Water,.@a;
+ bonus2 bAddRace,RC_Demihuman,.@a;
+ bonus2 bAddRace,RC_Formless,.@a;
+ bonus2 bMagicAddRace,RC_Demihuman,.@a;
+ bonus2 bMagicAddRace,RC_Formless,.@a;
+ bonus2 bAddRace,RC_Player_Human,.@a;
+ bonus2 bMagicAddRace,RC_Player_Human,.@a;
+ bonus2 bAddRace,RC_Player_Doram,.@a;
+ bonus2 bMagicAddRace,RC_Player_Doram,.@a;
+ - Id: 15858
+ AegisName: C_Choco_Banana
+ Name: Costume Choco Banana Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 2087
+ - Id: 16000
+ AegisName: Erde
+ Name: Erde
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 500
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AM_ACIDTERROR",20;
+ bonus2 bSkillAtk,"AM_DEMONSTRATION",20;
+ bonus bMaxSP,50;
+ bonus bHealPower,10;
+ - Id: 16001
+ AegisName: Red_Square_Bag
+ Name: Red Square Bag
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 500
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bMaxHP,200;
+ bonus2 bSkillAtk,"AM_ACIDTERROR",20;
+ bonus2 bSkillAtk,"AM_DEMONSTRATION",20;
+ bonus2 bAddMonsterDropItem,501,50;
+ bonus2 bAddMonsterDropItem,502,20;
+ bonus2 bAddMonsterDropItem,503,20;
+ bonus2 bAddMonsterDropItem,504,20;
+ bonus2 bAddMonsterDropItem,505,10;
+ if (readparam(bStr)>=95)
+ bonus2 bAddEff,Eff_Stun,500;
+ - Id: 16002
+ AegisName: Stunner_C
+ Name: Stunner
+ Type: Weapon
+ SubType: Mace
+ Attack: 175
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ bonus2 bAddSize,Size_All,40;
+ - Id: 16003
+ AegisName: Carga_Mace
+ Name: Carga Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 175
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 16004
+ AegisName: P_Mace1
+ Name: Eden Mace I
+ Type: Weapon
+ SubType: Mace
+ Attack: 142
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 26
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16005
+ AegisName: P_Mace2
+ Name: Eden Mace II
+ Type: Weapon
+ SubType: Mace
+ Attack: 163
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16006
+ AegisName: Tourist_Mace
+ Name: Tourist Mace
+ Type: Weapon
+ SubType: Mace
+ Weight: 500
+ Attack: 45
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 16007
+ AegisName: Mjolnir_C
+ Name: Mjolnir
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 250
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bStr,15;
+ bonus bDex,40;
+ - Id: 16008
+ AegisName: F_Spanner_C
+ Name: Spanner
+ Type: Weapon
+ SubType: Mace
+ Buy: 2
+ Attack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ Script: |
+ bonus2 bAddEff,Eff_Stun,100;
+ bonus2 bAddEff,Eff_Blind,100;
+ bonus2 bAddEff,Eff_Freeze,100;
+ bonus2 bAddEff,Eff_Poison,100;
+ - Id: 16009
+ AegisName: E_Spanner_C
+ Name: Spanner
+ Type: Weapon
+ SubType: Mace
+ Buy: 2
+ Attack: 150
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ - Id: 16010
+ AegisName: Red_Ether_Bag
+ Name: Red Ether Bag
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1000
+ Attack: 15
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ 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;
+ }
+ - Id: 16011
+ AegisName: Adventure_Mace
+ Name: Adventure Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 60
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ - Id: 16012
+ AegisName: Academy_Mace
+ Name: Academy Mace
+ Type: Weapon
+ SubType: Mace
+ Weight: 1000
+ Attack: 110
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ - Id: 16013
+ AegisName: Mace_Of_Judgement
+ Name: Mace Of Judgement
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1200
+ Attack: 140
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,1;
+ bonus bInt,1;
+ autobonus "{ bonus2 bMagicAddRace,RC_Demon,20; }",30,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ autobonus "{ bonus2 bAddRace,RC_Demon,20; }",5,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 16014
+ AegisName: P_Mace3
+ Name: Eden Mace III
+ Type: Weapon
+ SubType: Mace
+ Attack: 172
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16015
+ AegisName: Cat_Club
+ Name: Cat Club
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 700
+ Attack: 88
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Brute,15;
+ bonus2 bAddRace,RC_Player_Doram,15;
+ - Id: 16016
+ AegisName: Tuna
+ Name: Tuna
+ Type: Weapon
+ SubType: Mace
+ Attack: 180
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Stun,1500;
+ bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20;
+ bonus2 bAddEff2,Eff_Freeze,100;
+ if (BaseLevel>99)
+ bonus bBaseAtk,20;
+ - Id: 16017
+ AegisName: Bloody_Cross
+ Name: Bloody Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ .@r = getrefine();
+ bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20);
+ - Id: 16018
+ AegisName: Mace_Of_Judgement2
+ Name: Empowered Mace Of Judgement
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1200
+ Attack: 170
+ MagicAttack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bStr,2;
+ bonus bInt,2;
+ autobonus "{ bonus2 bMagicAddRace,RC_Demon,40; }",60,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ autobonus "{ bonus2 bAddRace,RC_Demon,40; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 16019
+ AegisName: Upg_Mace
+ Name: Upg Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*10);
+ bonus bHealPower,.@r;
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*5);
+ - Id: 16020
+ AegisName: Velum_Stunner
+ Name: Vellum Stunner
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus2 bAddEff,Eff_Stun,300*.@r;
+ bonus4 bSetDefRace,RC_Player_Human,10000,5000,1;
+ bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1;
+ bonus4 bSetDefRace,RC_Player_Doram,10000,5000,1;
+ bonus4 bSetMDefRace,RC_Player_Doram,10000,5000,1;
+ bonus bAspdRate,2+.@r;
+ - Id: 16021
+ AegisName: Velum_Flail
+ Name: Vellum Flail
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000;
+ bonus3 bStateNoRecoverRace,RC_Player_Doram,10000,10000;
+ .@r = getrefine();
+ bonus bHit,.@r/2;
+ bonus bCritical,.@r;
+ - Id: 16022
+ AegisName: Nemesis_
+ Name: Nemesis
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 900
+ Attack: 120
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Holy;
+ .@r = max(1,min(10,getrefine()));
+ bonus4 bAutoSpell,"AL_CRUCIS",.@r,10,1;
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bAddEle,Ele_Dark,10;
+ autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_NORMAL,"{ specialeffect2 EF_BLOODDRAIN; }";
+ - Id: 16023
+ AegisName: Metal_Mace
+ Name: Metal Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,(getrefine()*5);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 16024
+ AegisName: Quadrille_
+ Name: Quadrille
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 900
+ Attack: 165
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ - Id: 16025
+ AegisName: TE_Woe_Mace
+ Name: TE Woe Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 120
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Freeze,1000;
+ bonus bHealPower,5;
+ - Id: 16026
+ AegisName: RWC_Memory_Mace
+ Name: RWC Memory Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@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
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 1350
+ Attack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bAddRace,RC_Undead,10;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));
+ - Id: 16028
+ AegisName: Thanos_Hammer
+ Name: Thanos Hammer
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 3000
+ Attack: 180
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 16029
+ AegisName: Noble_Cross
+ Name: Noble Cross
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 1500
+ Attack: 195
+ MagicAttack: 150
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus3 bAutoSpell,"PR_TURNUNDEAD",6,200;
+ bonus2 bSPDrainValueRace,RC_Undead,1;
+ bonus2 bSPGainRace,RC_Undead,12;
+ - Id: 16030
+ AegisName: Pilebuncker_S
+ Name: Pile Bunker S
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3000
+ Attack: 400
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bAspdRate,getrefine()/2;
+ - Id: 16031
+ AegisName: Pilebuncker_P
+ Name: Pile Bunker P
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 4000
+ Attack: 450
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,getrefine()*5;
+ - Id: 16032
+ AegisName: Pilebuncker_T
+ Name: Pile Bunker T
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 3500
+ Attack: 400
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bUseSPrate,getrefine()*-1;
+ - Id: 16033
+ AegisName: Robot's_Arm
+ Name: Robot's Arm
+ Type: Weapon
+ SubType: Mace
+ Buy: 30000
+ Weight: 3000
+ Attack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bCritical,20;
+ - Id: 16034
+ AegisName: Half_Mjolnir
+ Name: Half Mjolnir
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 6000
+ Attack: 350
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus bDex,50;
+ bonus bStr,20;
+ bonus bAspdRate,10;
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",10,100;
+ autobonus "{ bonus bSplashRange,1; }",50,10000;
+ - Id: 16035
+ AegisName: Half_BF_Morning_Star1
+ Name: Half BF Morning Star1
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ - Id: 16036
+ AegisName: Ru_Blue_Mace
+ Name: Blue Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bVit,5;
+ bonus bInt,5;
+ - Id: 16037
+ AegisName: Ru_Gold_Mace
+ Name: Ru Gold Mace
+ Type: Weapon
+ SubType: Mace
+ Weight: 1500
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bVit,8;
+ bonus bInt,8;
+ - Id: 16038
+ AegisName: Infinity_Mace
+ Name: Infinity Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 500
+ Attack: 155
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16039
+ AegisName: Spoon
+ Name: Spoon
+ Type: Weapon
+ SubType: Mace
+ Buy: 10
+ Weight: 1000
+ Attack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bAspd,10;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 16040
+ AegisName: Scarlet_Mace
+ Name: Crimson Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 80
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 16041
+ AegisName: Sinister_Mace
+ Name: Mace of Vicious Mind
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1300
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bUnbreakableWeapon;
+ - Id: 16043
+ AegisName: Meteor_Strike
+ Name: Meteor Strike
+ Type: Weapon
+ SubType: Mace
+ Weight: 20000
+ Attack: 1
+ Range: 1
+ Slots: 2
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,10*getskilllv("BS_WEAPONRESEARCH");
+ bonus bBaseAtk,30*getskilllv("MO_IRONHAND");
+ .@s = getskilllv("AM_AXEMASTERY");
+ bonus bBaseAtk,7*.@s;
+ bonus bHit,5*.@s;
+ bonus bBaseAtk,10*getrefine();
+ if (getskilllv("MC_PUSHCART") > 9)
+ skill "MC_CARTREVOLUTION",1;
+ if (getskilllv("SM_SWORD") > 0)
+ skill "KN_BOWLINGBASH",1;
+ .@str = readparam(bStr);
+ if (.@str > 119)
+ bonus bUseSPrate,-30;
+ else if (.@str > 107)
+ bonus bUseSPrate,-20;
+ - Id: 16048
+ AegisName: Unity_Mace
+ Name: Unity Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 400
+ Attack: 76
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 16051
+ AegisName: Valkyrie_Hammer_
+ Name: Valkyrie Hammer
+ Type: Weapon
+ SubType: Mace
+ Weight: 100
+ Attack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (BaseJob == Job_Novice) {
+ bonus bBaseAtk,150;
+ bonus bMatk,200;
+ bonus bUseSPrate,-5;
+ bonus bHit,10;
+ bonus bMaxHP,500+(200*.@r);
+ bonus bMaxSP,400;
+ bonus bVit,.@r;
+ bonus bFlee2,.@r;
+ bonus bAspdRate,.@r;
+ bonus bVariableCastrate,-.@r/2;
+ }
+ if (BaseClass == Job_Swordman) {
+ bonus bVit,.@r;
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ }
+ if (BaseJob == Job_Priest) {
+ bonus bBaseAtk,50;
+ bonus bMatk,100;
+ bonus bAspdRate,.@r;
+ }
+ if (BaseJob == Job_Monk) {
+ bonus bMaxSP,200;
+ bonus bUseSPrate,-5;
+ bonus bFlee2,.@r;
+ }
+ if (BaseClass == Job_Merchant) {
+ bonus bBaseAtk,100;
+ bonus bHit,10;
+ bonus bVariableCastrate,-.@r/2;
+ }
+ - Id: 16054
+ AegisName: Toughen_Metal_Mace
+ Name: Enhanced Metal Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 105
+ Range: 1
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"GN_CARTCANNON",10;
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",10;
+ bonus bBaseAtk,7*(getrefine()+(min(BaseLevel,150)/10));
+ - Id: 16060
+ AegisName: Bottle
+ Name: Liquor Bottle
+ Type: Weapon
+ SubType: Mace
+ Weight: 700
+ Attack: 120
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Monk: true
+ Novice: true
+ Priest: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bAddEff,Eff_Stun,(300*getrefine());
+ - Id: 16063
+ AegisName: Long_Mace_IL
+ Name: Illusion Long Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 185
+ Range: 3
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bLongAtkDef,(10+3*(getrefine()/2));
+ - Id: 16064
+ AegisName: Probation_Mace
+ Name: Trial Genetic's Mace
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Attack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"GN_CARTCANNON",20;
+ .@val = 6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ .@val += 3*getskilllv("AM_PHARMACY");
+ }
+ bonus bBaseAtk,.@val;
+ - Id: 16065
+ AegisName: Illusion_Iron_Driver
+ Name: Illusion Iron Driver
+ Type: Weapon
+ SubType: Mace
+ Weight: 2000
+ Attack: 210
+ Range: 2
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspd,(.@r/2);
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r);
+ bonus bUnbreakableWeapon;
+ - Id: 16075
+ AegisName: Rebeginer_NC_Mace
+ Name: Beginner Mechanic's Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15;
+ }
+ - Id: 16076
+ AegisName: Rebeginer_N2_Mace
+ Name: Beginner Super Novice's Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus bCritAtkRate,7;
+ }
+ - Id: 16088
+ AegisName: Saphir_Hall_OS
+ Name: Sapphire Mace-OS
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 800
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ }
+ - Id: 16089
+ AegisName: Ultio_Spes_OS
+ Name: Ultio-OS
+ Type: Weapon
+ SubType: Mace
+ Buy: 20
+ Weight: 1200
+ Attack: 150
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,3;
+ bonus bUnbreakableWeapon;
+ if (.@r >= 7) {
+ bonus bAspdRate,7;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"AB_ADORAMUS",20;
+ if (.@r >= 11) {
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ }
+ }
+ - Id: 16092
+ AegisName: Engine_Pilebuncker
+ Name: Engine Pilebuncker
+ Type: Weapon
+ SubType: Mace
+ Weight: 3200
+ Attack: 450
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,.@r;
+ bonus2 bSkillAtk,"NC_VULCANARM",10;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NC_ARMSCANNON",15;
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15;
+ }
+ if (.@r>=11)
+ bonus2 bSkillAtk,"NC_VULCANARM",15;
+ - Id: 16093
+ AegisName: Coolant_Injection
+ Name: Coolant Injection
+ Type: Weapon
+ SubType: Mace
+ Weight: 1400
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 16094
+ AegisName: Gene_Rod
+ Name: Gene Rod
+ Type: Weapon
+ SubType: Mace
+ Weight: 1400
+ Attack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 16095
+ AegisName: Lucis_Flail
+ Name: Lucis Flail
+ Type: Weapon
+ SubType: Mace
+ Weight: 1000
+ Attack: 180
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bAspd,1;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",40;
+ }
+ if (.@r>=11)
+ bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50;
+ /* Unknow Rates */
+ - Id: 16096
+ AegisName: Bright_Pendulum
+ Name: Bright Pendulum
+ Type: Weapon
+ SubType: Mace
+ Weight: 1300
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,4*.@r;
+ bonus bVariableCastrate,-10;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50;
+ bonus2 bSkillAtk,"MO_INVESTIGATE",50;
+ }
+ if (.@r>=11)
+ bonus2 bAddClass,Class_All,10;
+ - Id: 16099
+ AegisName: Ein_1HHAMMER
+ Name: Rubber Hammer
+ Type: Weapon
+ SubType: Mace
+ Weight: 1900
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,180;
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,7;
+ bonus bHealPower,15;
+ bonus2 bSkillAtk,"AB_ADORAMUS",10;
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,7;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"AB_ADORAMUS",15;
+ autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,5000,BF_MAGIC;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 18100
+ AegisName: Shooting_Star_C
+ Name: Shooting Star
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 190
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,20;
+ - Id: 18101
+ AegisName: F_Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 18102
+ AegisName: E_Bow_Of_Rudra_C
+ Name: Rudra Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 2
+ Attack: 185
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus bInt,5;
+ skill "AL_CURE",1;
+ skill "AL_HEAL",1;
+ bonus2 bResEff,Eff_Poison,5000;
+ bonus2 bResEff,Eff_Curse,5000;
+ bonus2 bResEff,Eff_Silence,5000;
+ bonus2 bResEff,Eff_Confusion,5000;
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 18103
+ AegisName: Mystic_Bow
+ Name: Mystic Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1700
+ Attack: 75
+ MagicAttack: 100
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 105
+ Refineable: true
+ Script: |
+ bonus bInt,4;
+ bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10;
+ - Id: 18104
+ AegisName: Adventure_Bow
+ Name: Adventure Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 60
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 1
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bAddMonsterDropItem,11518,100;
+ /* CONFIRM The Rate*/
+ - Id: 18105
+ AegisName: Academy_Bow
+ Name: Academy Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1200
+ Attack: 90
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bHit,20-(4*(BaseLevel/10));
+ - Id: 18106
+ AegisName: P_Bow3
+ Name: Eden Bow III
+ Type: Weapon
+ SubType: Bow
+ Attack: 140
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 18107
+ AegisName: Malang_Snow_Crab
+ Name: Malangdo Crab
+ Type: Weapon
+ SubType: Bow
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,3;
+ bonus bCritAtkRate,50;
+ if (BaseLevel>99)
+ bonus bLongAtkRate,20;
+ - Id: 18108
+ AegisName: Brindle_Eel
+ Name: Zebra Eel
+ Type: Weapon
+ SubType: Bow
+ Attack: 180
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,3;
+ autobonus "{ bonus bAspd,2; }",5,5000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ if (BaseLevel>99)
+ bonus bLongAtkRate,20;
+ - Id: 18109
+ AegisName: Catapult
+ Name: Thief Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 56000
+ Weight: 1100
+ Attack: 150
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2);
+ bonus2 bSkillUseSP,"SC_TRIANGLESHOT",-(.@r*2);
+ - Id: 18110
+ AegisName: Big_CrossBow
+ Name: Giant Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 56000
+ Weight: 900
+ Attack: 160
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5);
+ bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5);
+ if (readparam(bAgi)>=120) {
+ bonus bAspd,1;
+ }
+ - Id: 18111
+ AegisName: Creeper_Bow
+ Name: Creeper Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 56000
+ Weight: 1500
+ Attack: 150
+ Range: 5
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ bonus3 bAutoSpell,"PF_SPIDERWEB",1,200;
+ - Id: 18112
+ AegisName: Upg_Bow
+ Name: Upg Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 600
+ Attack: 60
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ 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);
+ - Id: 18113
+ AegisName: Velum_Arbalest
+ Name: Vellum Arbalest
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1100
+ Attack: 50
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4;
+ bonus bAspd,-5;
+ - Id: 18114
+ AegisName: Velum_CrossBow
+ Name: Vellum CrossBow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1100
+ Attack: 110
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddRace,RC_Player_Human,30+.@r;
+ bonus2 bAddRace,RC_Player_Doram,30+.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30;
+ - Id: 18115
+ AegisName: Orc_Archer_Bow_
+ Name: Orc Archer Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1600
+ Attack: 120
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bAddMonsterDropItem,1753,200;
+ - Id: 18116
+ AegisName: Metal_Bow
+ Name: Metal Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 50
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseJob == Job_Hunter && Upper!=2)
+ bonus bBaseAtk,10;
+ bonus bBaseAtk,(.@r*3);
+ bonus bLongAtkRate,.@r;
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 18117
+ AegisName: Royal_Bow
+ Name: Royal Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 200000
+ Weight: 1500
+ Attack: 80
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 105
+ Refineable: true
+ - Id: 18118
+ AegisName: TE_Woe_Bow
+ Name: TE Woe Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 120
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 18119
+ AegisName: Thanos_Bow
+ Name: Thanos Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10
+ Weight: 1300
+ Attack: 180
+ MagicAttack: 110
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 18120
+ AegisName: Bow_Of_Evil_Slayer
+ Name: Evil Slayer Piercer Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10
+ Weight: 1350
+ Attack: 115
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bAddRace,RC_Undead,10;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));
+ - Id: 18121
+ AegisName: Sinister_Bow
+ Name: Bow of Vicious Mind
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1700
+ Attack: 170
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 18122
+ AegisName: Gigantic_Bow
+ Name: Giant Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 3000
+ Attack: 195
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,40;
+ bonus bAspdRate,-15;
+ bonus bHit,-50;
+ - Id: 18123
+ AegisName: Bow_Of_Storm
+ Name: Bow of Storms
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1500
+ Attack: 160
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,30;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",-15;
+ - Id: 18124
+ AegisName: Half_BF_Bow1
+ Name: Half BF Bow1
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 100
+ Range: 5
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ - Id: 18125
+ AegisName: Arcus_Daemonicus
+ Name: Arcus Daemonicus
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 130
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ /*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/
+ if (getrefine()>9) {
+ bonus bAspd,1;
+ bonus bUseSPrate,-20;
+ }
+ - Id: 18126
+ AegisName: Ru_Blue_Bow
+ Name: Blue Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 10
+ Weight: 1200
+ Attack: 150
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,5;
+ bonus bDex,5;
+ - Id: 18127
+ AegisName: Ru_Gold_Bow
+ Name: Ru Gold Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1200
+ Attack: 150
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bAgi,8;
+ bonus bDex,8;
+ - Id: 18128
+ AegisName: Infinity_Bow
+ Name: Infinity Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 500
+ Attack: 160
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 18129
+ AegisName: Ixion_Wing_S
+ Name: Ixion Wing
+ Type: Weapon
+ SubType: Bow
+ Weight: 300
+ Attack: 135
+ Range: 5
+ Slots: 3
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Upper: true
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ View: 11
+ Script: |
+ autobonus "{ bonus bAspdRate,7; }",5+getrefine(),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";
+ bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;
+ - Id: 18130
+ AegisName: Scarlet_Bow
+ Name: Crimson Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 120
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 18132
+ AegisName: Unity_Bow
+ Name: Unity Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 600
+ Attack: 114
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 18137
+ AegisName: Burning_Bow_
+ Name: Burning Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ - Id: 18138
+ AegisName: Frozen_Bow_
+ Name: Frozen Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 100
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 18139
+ AegisName: Earth_Bow_
+ Name: Earth Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 105
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 18140
+ AegisName: Gust_Bow_
+ Name: Gust Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1400
+ Attack: 95
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 55
+ Refineable: true
+ - Id: 18141
+ AegisName: Toughen_Metal_Bow
+ Name: Enhanced Metal Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 75
+ Range: 5
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",10;
+ bonus bLongAtkRate,2*.@r;
+ .@val = (5*.@r)+6*(min(BaseLevel,150)/10);
+ if (BaseJob == JOB_HUNTER) {
+ .@val += 15;
+ }
+ bonus bBaseAtk,.@val;
+ - Id: 18145
+ AegisName: Vigilante_Bow
+ Name: Vigilante Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 140
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@bonus = 5*(readparam(bDex)/20);
+ if (.@r>=7) {
+ .@bonus += 10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"AC_DOUBLE",50;
+ }
+ bonus bLongAtkRate,.@bonus;
+ - Id: 18149
+ AegisName: Balistar_IL
+ Name: Illusion Ballista
+ Type: Weapon
+ SubType: Bow
+ Weight: 3500
+ Attack: 200
+ Range: 5
+ Slots: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,getrefine();
+ - Id: 18150
+ AegisName: Probation_CrossBow
+ Name: Trail Ranger' Crossbow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 180
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"RA_ARROWSTORM",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bLongAtkRate,getskilllv("HT_BEASTBANE");
+ }
+ - Id: 18151
+ AegisName: Probation_Bow
+ Name: Trail Wanderers & Minstrel's Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Attack: 160
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7)
+ bonus bLongAtkRate,getskilllv("BA_MUSICALLESSON")+getskilllv("DC_DANCINGLESSON");
+ - Id: 18164
+ AegisName: Royal_Bow_K
+ Name: Royal Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 180
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",.@r/3*12;
+ if (.@r>=9)
+ bonus bAspdRate,10;
+ if (.@r>=11)
+ bonus bLongAtkRate,5;
+ - Id: 18165
+ AegisName: Rebeginer_RN_Bow
+ Name: Beginner Ranger's Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 170
+ Range: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,5;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"RA_ARROWSTORM",15;
+ }
+ - Id: 18166
+ AegisName: Rebeginer_WM_Bow
+ Name: Beginner Wanderer & Minstrels' Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 170
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,5;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ }
+ - Id: 18170
+ AegisName: Narcis_Bow
+ Name: Narcissus Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 180
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus bLongAtkRate,.@r/3*4;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ - Id: 18174
+ AegisName: Illusion_Hunter_Bow
+ Name: Illusion Hunter Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1500
+ Attack: 165
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,.@r;
+ if (.@r >= 7) {
+ bonus bAspdRate,10;
+ if (.@r >= 9) {
+ bonus bCritAtkRate,15;
+ if (.@r >= 11) {
+ bonus2 bAddRace,RC_Insect,30;
+ bonus2 bAddRace,RC_Brute,30;
+ bonus2 bAddRace,RC_Player_Doram,30;
+ }
+ }
+ }
+ - Id: 18178
+ AegisName: Virtual_Bow_OS
+ Name: Virtual Bow-OS
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 200
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ - Id: 18179
+ AegisName: MH_P89_OS
+ Name: MH-P89-OS
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1200
+ Attack: 170
+ Range: 5
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ }
+ - Id: 18180
+ AegisName: AC_B44_OS
+ Name: AC-B44-OS
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 600
+ Attack: 190
+ MagicAttack: 135
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@dmg = 5;
+ if (.@r >= 7) {
+ bonus bAspdRate,7;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",15;
+ if (.@r >= 11) {
+ .@dmg += 10;
+ }
+ }
+ }
+ bonus2 bWeaponDamageRate,W_BOW,.@dmg;
+ - Id: 18182
+ AegisName: Evt_Royal_Bow_K
+ Name: Sealed Royal Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 180
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,5;
+ }
+ - Id: 18183
+ AegisName: Evt_Narcis_Bow
+ Name: Sealed Narcissus Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 180
+ Range: 5
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bLongAtkRate,4*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ }
+ - Id: 18184
+ AegisName: Rapid_Fire
+ Name: Rapid Fire
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1500
+ Attack: 185
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=11)
+ .@val = 35;
+ else if (.@r>=9)
+ .@val = 20;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val;
+ - Id: 18185
+ AegisName: Sharp_Star_Bow
+ Name: Sharp Star Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,5;
+ bonus bCritAtkRate,.@r;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ if (.@r>=11)
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10;
+ - Id: 18186
+ AegisName: Aiming_Bow
+ Name: Aiming Bow
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 210
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,-1*(5+.@r);
+ if (.@r>=9)
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",30;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",15;
+ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;
+ }
+ - Id: 18187
+ AegisName: Falken_Shooter
+ Name: Falken Shooter
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 210
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"RA_ARROWSTORM",25;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;
+ - Id: 18188
+ AegisName: Wind_Gale
+ Name: Wind Gale
+ Type: Weapon
+ SubType: Bow
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 5
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10+.@r;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ - Id: 18190
+ AegisName: Ein_BHBOW
+ Name: Bolt Shooter
+ Type: Weapon
+ SubType: Bow
+ Weight: 1700
+ Attack: 210
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",10;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bBaseAtk,60;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",15;
+ autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 18191
+ AegisName: G_Knight_Bow
+ Name: Royal Knight Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1500
+ Attack: 180
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 18198
+ AegisName: G_Knight_Archer_Bow
+ Name: Royal Knight Archer Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1700
+ Attack: 190
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus bDelayrate,-12;
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;
+ }
+ - Id: 18500
+ AegisName: Cheer_Scarf6
+ Name: Cheer Scarf6
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,60;
+ - Id: 18501
+ AegisName: Cheer_Scarf8
+ Name: Cheer Scarf8
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,80;
+ - Id: 18502
+ AegisName: Cheer_Scarf10
+ Name: Cheer Scarf10
+ Type: Armor
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,100;
+ - Id: 18503
+ AegisName: Small_Horn_Of_Devil
+ Name: Small Devil Horns
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 562
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ - Id: 18504
+ AegisName: Anubis_Helm_J
+ Name: Anubis Helm J
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 485
+ Script: |
+ bonus bMdefRate,-50;
+ bonus bDefRate,-50;
+ bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0;
+ - Id: 18505
+ AegisName: Umbala_Spirit
+ Name: Umbala Spirit
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 675
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,1;
+ bonus2 bAddMonsterDropItem,517,500;
+ bonus2 bAddItemHealRate,517,25;
+ /*Gold PC Room: bonus bAllStats,1;*/
+ - Id: 18506
+ AegisName: Hattah_Black
+ Name: Hattah Black
+ Type: Armor
+ Buy: 12000
+ Weight: 4000
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 676
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ - Id: 18507
+ AegisName: Elven_Ears_
+ Name: Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 73
+ - Id: 18508
+ AegisName: Garuda_Hat
+ Name: Garuda Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 677
+ Trade:
+ 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);
+ - Id: 18509
+ AegisName: RWC2010_Indonesia
+ Name: RWC2010 Indonesia
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 15
+ Refineable: true
+ View: 678
+ Script: |
+ bonus bLuk,5;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bAddItemHealRate,501,100;
+ bonus2 bAddItemHealRate,504,100;
+ bonus bCritical,10;
+ bonus bAspd,1;
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ - Id: 18510
+ AegisName: Blood_Angel_Hair_Band
+ Name: Blood Angel Hair Band
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 679
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ - Id: 18511
+ AegisName: Blood_Angel_Wing_Ear
+ Name: Blood Angel Wing Ear
+ Type: Armor
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 60
+ View: 680
+ - Id: 18512
+ AegisName: Juho_Necktie
+ Name: Juho Necktie
+ Type: Armor
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 443
+ - Id: 18513
+ AegisName: Shining_Sunflower
+ Name: Shining Sunflower
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ View: 681
+ Script: |
+ bonus bLuk,2;
+ bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10;
+ - Id: 18514
+ AegisName: Para_Team_Hat2
+ Name: Eden Team Hat II
+ Type: Armor
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 682
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ - Id: 18515
+ AegisName: RTC_Winner_Headgear
+ Name: RTC Winner Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 683
+ Script: |
+ bonus bAllStats,5;
+ bonus bIntravision;
+ bonus2 bSubRace,RC_DemiHuman,15;
+ bonus2 bSubRace,RC_Player_Human,15;
+ bonus2 bAddEff,Eff_Curse,50;
+ - Id: 18516
+ AegisName: RTC_2nd_Headgear
+ Name: RTC 2nd Winner Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 684
+ Script: |
+ bonus bAllStats,3;
+ bonus bIntravision;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bAddEff,Eff_Curse,50;
+ - Id: 18517
+ AegisName: RTC_3rd_Headgear
+ Name: RTC 3rd Winner Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 685
+ Script: |
+ bonus bAllStats,1;
+ bonus bIntravision;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddEff,Eff_Curse,50;
+ - Id: 18518
+ AegisName: Ear_Of_Angel's_Wing_
+ Name: Angel Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 158
+ Script: |
+ bonus bStr,1;
+ - Id: 18519
+ AegisName: Ear_Of_Devil's_Wing_
+ Name: Evil Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 152
+ Script: |
+ bonus bStr,1;
+ - Id: 18520
+ AegisName: Jaty_C
+ Name: Jaty Crown
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 686
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,5;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bAddRace,RC_Plant,5;
+ bonus2 bAddRace,RC_Brute,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ - Id: 18521
+ AegisName: Lucky_Clover
+ Name: Lucky Clover
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 571
+ Script: |
+ bonus bLuk,1;
+ bonus bMaxSP,20;
+ - Id: 18522
+ AegisName: Evil_Marcher_Hat
+ Name: Evil Marcher Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 687
+ Script: |
+ bonus bStr,2;
+ bonus bMdef,1;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bCritAtkRate,10;
+ }
+ bonus2 bAddClass,Class_All,(.@r>=9?7:2);
+ if (.@r>=9) {
+ bonus bLongAtkRate,5;
+ }
+ - Id: 18523
+ AegisName: Super_Scell
+ Name: Thunderstorm Cloud
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 688
+ Script: |
+ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5);
+ bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5);
+ - Id: 18524
+ AegisName: Dokkebi_Mask
+ Name: Dokkebi Mask
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 689
+ Script: |
+ bonus bStr,2;
+ - Id: 18525
+ AegisName: Watermelon_Hat
+ Name: Watermelon Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 690
+ Script: |
+ bonus bVit,1;
+ bonus bLuk,1;
+ bonus bMdef,4;
+ bonus2 bAddEle,Ele_Fire,3;
+ - Id: 18526
+ AegisName: Yummy_Lollipop
+ Name: Candy Cane In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 446
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,5;
+ bonus bBaseAtk,5;
+ bonus bAspd,1;
+ bonus bFixedCastrate,-20;
+ bonus bHealPower,5;
+ - Id: 18527
+ AegisName: Gloomy_Pumpkin_Hat
+ Name: Dark Pumpkin-head
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 691
+ Script: |
+ bonus2 bAddMonsterDropItem,12192,10;
+ bonus bMdef,5;
+ - Id: 18528
+ AegisName: Tare_Neko_Cru
+ Name: Drooping Neko Crew
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 692
+ Trade:
+ 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;
+ - Id: 18529
+ AegisName: Drooping_Wild_Rose
+ Name: Accurate Wild Rose
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 541
+ Script: |
+ bonus bMaxHPrate,-10;
+ bonus bAspdRate,3;
+ - Id: 18530
+ AegisName: Tha_Despero_Mask
+ Name: Thanatos Despero Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 693
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bLuk,-5;
+ bonus bFlee,4;
+ - Id: 18531
+ AegisName: Drooping_Permeter
+ Name: Drooping Permeter
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 694
+ Script: |
+ bonus2 bAddDefMonster,1314,-20;
+ bonus2 bAddDefMonster,1316,-20;
+ bonus2 bAddDefMonster,1319,-20;
+ bonus2 bAddDefMonster,1315,-20;
+ bonus2 bAddDefMonster,1318,-20;
+ bonus2 bAddDefMonster,1312,-20;
+ - Id: 18532
+ AegisName: Heart_Ribbon_Band
+ Name: Heart Ribbon Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 708
+ Script: |
+ bonus bInt,2;
+ - Id: 18533
+ AegisName: Honeybee_Hat
+ Name: Honey Bee Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 709
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddRace,RC_Insect,5;
+ bonus2 bMagicAddRace,RC_Insect,5;
+ bonus2 bSubRace,RC_Insect,5;
+ bonus3 bAddMonsterDropItem,518,RC_Insect,2;
+ - Id: 18534
+ AegisName: Fancy_Phantom_Mask
+ Name: Fancy Phantom Mask
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 20
+ 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;
+ - Id: 18535
+ AegisName: Pumpkin_Hat_2010
+ Name: Pumpkin Hat 2010
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 206
+ - Id: 18536
+ AegisName: Foxtail
+ Name: Foxtail
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 711
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMatk,10;
+ bonus bFixedCast,-100;
+ - Id: 18537
+ AegisName: Malangdo_Hat
+ Name: Malangdo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 726
+ Script: |
+ bonus bFlee,6;
+ - Id: 18538
+ AegisName: Devil_Whisper
+ Name: Spirit Whispers
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ View: 712
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_Angel,1;
+ bonus2 bSubRace,RC_Demon,1;
+ bonus3 bAddMonsterDropItem,12020,RC_Angel,400;
+ bonus3 bAddMonsterDropItem,523,RC_Demon,400;
+ - Id: 18539
+ AegisName: Skull_Cap
+ Name: Skull Cap
+ Type: Armor
+ Buy: 40
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 713
+ Script: |
+ bonus bMatkRate,2;
+ .@r = getrefine();
+ if (.@r >= 5) {
+ bonus bMatkRate,3;
+ }
+ if (.@r >= 7) {
+ bonus bMatkRate,3;
+ }
+ - Id: 18540
+ AegisName: Evil_Mask
+ Name: Evil Mask
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 714
+ Script: |
+ bonus2 bSPLossRate,1,2000;
+ bonus bAspdRate,1;
+ - Id: 18541
+ AegisName: Little_Fhat
+ Name: Little Feather Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 715
+ Script: |
+ bonus bDex,2;
+ bonus bCritAtkRate,10;
+ - Id: 18542
+ AegisName: All_Love_Guard
+ Name: Love Guard
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 716
+ Script: |
+ bonus bHealPower2,5;
+ bonus bAddItemHealRate,5;
+ bonus bHealPower,(getrefine()>6)?5:2;
+ - Id: 18543
+ AegisName: Witchs_Hat
+ Name: Witchs Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 717
+ Script: |
+ bonus bMdef,5;
+ bonus bVariableCastrate,(getrefine()>6?10:5);
+ - Id: 18544
+ AegisName: Blrabbit_Hband
+ Name: Blrabbit Hband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 718
+ - Id: 18545
+ AegisName: Whrabbit_Hband
+ Name: Whrabbit Hband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 719
+ - Id: 18546
+ AegisName: Lover_In_Mouth
+ Name: Lover In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ View: 720
+ - Id: 18547
+ AegisName: Campus_Festival
+ Name: Campus Festival
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 721
+ - Id: 18548
+ AegisName: Tiny_Hat
+ Name: Tiny Hat
+ Type: Armor
+ Buy: 20
+ Weight: 30
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 722
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ - Id: 18549
+ AegisName: Nabi_Hair_Pin
+ Name: Butterfly Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 723
+ Script: |
+ bonus bInt,1;
+ bonus bAgi,1;
+ bonus bMdef,3;
+ bonus2 bAddRace,RC_Plant,5;
+ bonus2 bMagicAddRace,RC_Plant,5;
+ bonus2 bSubRace,RC_Plant,5;
+ bonus3 bAddMonsterDropItem,709,RC_Plant,30;
+ - Id: 18550
+ AegisName: Asgard_Blessing
+ Name: Asgard Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 724
+ Script: |
+ bonus bAllStats,2;
+ bonus2 bSubEle,Ele_All,5;
+ bonus2 bRegenPercentHP,2,10000;
+ bonus2 bRegenPercentSP,1,10000;
+ - Id: 18551
+ AegisName: Galaxy_Circlet
+ Name: Galaxy Circlet
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 725
+ Script: |
+ .@r = getrefine();
+ .@a = .@r*10;
+ .@b = .@r/2;
+ bonus bMdef,5;
+ bonus bMaxHP,.@a;
+ bonus bMaxSP,.@a;
+ bonus2 bSubEle,Ele_Earth,.@b;
+ bonus2 bSubEle,Ele_Fire,.@b;
+ bonus2 bSubEle,Ele_Water,.@b;
+ - Id: 18552
+ AegisName: Proba_Angel_Blessing
+ Name: Proba Angel Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 444
+ Script: |
+ bonus bLuk,2;
+ - Id: 18553
+ AegisName: Mini_Tree
+ Name: Mini Tree
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 727
+ Script: |
+ .@r = getrefine();
+ bonus2 bResEff,Eff_Stun,2000;
+ bonus2 bResEff,Eff_Curse,2000;
+ bonus2 bResEff,Eff_Blind,2000;
+ bonus2 bResEff,Eff_Confusion,2000;
+ if (.@r>8)
+ bonus2 bAddMonsterDropItem,12130,900;
+ else if (.@r>6)
+ bonus2 bAddMonsterDropItem,12130,400;
+ else
+ bonus2 bAddMonsterDropItem,12130,100;
+ - Id: 18554
+ AegisName: King_Prawn_Hat
+ Name: King Prawn Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 8
+ Locations:
+ Head_Top: true
+ View: 728
+ Script: |
+ bonus2 bAddItemGroupHealRate,IG_Fish,100;
+ - Id: 18555
+ AegisName: General_Helmet
+ Name: General Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 729
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddRace,RC_Dragon,5;
+ bonus2 bMagicAddRace,RC_Dragon,5;
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus3 bAddMonsterDropItem,7444,RC_Dragon,2;
+ - Id: 18556
+ AegisName: Angel_Helmet
+ Name: Angel Helmet
+ Type: Armor
+ Locations:
+ Head_Mid: true
+ View: 3
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddMonsterIdDropItem,6464,2220,310;
+ - Id: 18557
+ AegisName: Devil_Helmet
+ Name: Devil Helmet
+ Type: Armor
+ Locations:
+ Head_Mid: true
+ View: 12
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus3 bAddMonsterIdDropItem,6345,1812,310;
+ - Id: 18558
+ AegisName: Sinsuncho_Hat
+ Name: Sinsuncho Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 730
+ Script: |
+ bonus2 bExpAddRace,RC_Plant,5;
+ bonus2 bSubRace,RC_Plant,-10;
+ - Id: 18559
+ AegisName: Fafnir_Skin
+ Name: Fafnir Skin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 152
+ Script: |
+ bonus bCritical,3;
+ bonus bHPrecovRate,-100;
+ - Id: 18560
+ AegisName: Fafnir_Mask
+ Name: Fafnir Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 180
+ Script: |
+ bonus bCritical,2;
+ - Id: 18561
+ AegisName: B_Feather_Beret
+ Name: B Feather Beret
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 731
+ Script: |
+ bonus bVit,2;
+ bonus bMdef,3;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ - Id: 18562
+ AegisName: Bone_Hat
+ Name: Bone Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 732
+ Script: |
+ bonus bMdef,3;
+ - Id: 18563
+ AegisName: Heart_Wing_Hairband
+ Name: Heart Wing Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 733
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine()/3;
+ bonus bUseSPrate,-(10+.@r*3);
+ bonus bDelayrate,-(5+.@r*3);
+ - Id: 18564
+ AegisName: Love_Piece
+ Name: Love Piece
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 734
+ Script: |
+ bonus bNoCastCancel;
+ bonus bUseSPrate,15;
+ - Id: 18565
+ AegisName: Leprechaun_Hat
+ Name: St Patrick's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 735
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bMdef,4;
+ if (getrefine()>7) {
+ bonus2 bAddMonsterDropItem,12135,8;
+ }
+ - Id: 18566
+ AegisName: Nut_Donut_In_Mouth
+ Name: Nut Donut In Mouth
+ Type: Armor
+ Buy: 20
+ Defense: 1
+ Locations:
+ Head_Low: true
+ View: 736
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ - Id: 18567
+ AegisName: Stretched_Nose
+ Name: Stretched Nose
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 737
+ - Id: 18568
+ AegisName: Humming_Bird
+ Name: Humming Bird
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 702
+ Script: |
+ bonus bMdef,6;
+ - Id: 18569
+ AegisName: Soft_Sheep_Hat
+ Name: Soft Sheep Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 738
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bMaxHPrate,1+getrefine();
+ if (getrefine()>9) {
+ bonus2 bExpAddClass,Class_All,5;
+ }
+ - Id: 18570
+ AegisName: Ancient_Gold_Deco
+ Name: Ancient Gold Ornament
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 7
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 739
+ Script: |
+ if (BaseLevel >= 150) {
+ bonus bAllStats,2;
+ }
+ if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) {
+ bonus2 bAddClass,Class_All,8;
+ }
+ if (BaseClass == Job_Mage || BaseClass == Job_Acolyte) {
+ bonus bMatkRate,8;
+ bonus bHealPower,7;
+ }
+ if (BaseClass == Job_Archer) {
+ bonus bDex,3;
+ if (getiteminfo(getequipid(EQI_HAND_R), II_VIEW) == W_BOW)
+ bonus bLongAtkRate,10;
+ }
+ - Id: 18571
+ AegisName: Lucky_Hat
+ Name: Lucky Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 740
+ Script: |
+ bonus2 bExpAddRace,RC_All,3;
+ - Id: 18572
+ AegisName: Korean_Judge_Hat
+ Name: Korean Judge Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 377
+ Trade:
+ 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;
+ - Id: 18573
+ AegisName: White_Feather
+ Name: White Feather
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 741
+ Script: |
+ .@r = getrefine();
+ if (.@r<5) {
+ bonus bHit,20;
+ bonus bMaxHPrate,-10;
+ } else if (.@r<7) {
+ bonus bHit,10;
+ } else if (.@r<9) {
+ bonus bHit,7;bonus bMaxHPrate,3;
+ }
+ else {
+ bonus bHit,4;bonus bMaxHPrate,4;
+ }
+ - Id: 18574
+ AegisName: Lord_of_Death
+ Name: Lord of Death
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 742
+ Trade:
+ 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;
+ - Id: 18575
+ AegisName: Wunderkammer
+ Name: Wunderkammer
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 20
+ View: 743
+ Script: |
+ bonus bMdef,10;
+ bonus3 bAutoSpell,"AS_SONICBLOW",1,30;
+ bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20;
+ bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20;
+ bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5;
+ bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5;
+ bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10;
+ bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10;
+ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5;
+ bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5;
+ - Id: 18576
+ AegisName: YinYang_Earring
+ Name: YinYang Earring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 744
+ Script: |
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",10;
+ bonus2 bSkillAtk,"MO_TRIPLEATTACK",5;
+ bonus2 bSkillAtk,"MO_COMBOFINISH",5;
+ bonus2 bSkillUseSP,"MO_CHAINCOMBO",-1;
+ bonus2 bSkillUseSP,"MO_COMBOFINISH",-1;
+ - Id: 18577
+ AegisName: 24_Bolt
+ Name: 24 Bolt
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 696
+ - Id: 18578
+ AegisName: Helm_Of_Valor
+ Name: Helm Of Valor
+ Type: Armor
+ Defense: 4
+ Locations:
+ Head_Top: true
+ View: 258
+ Script: |
+ bonus2 bAddRace,RC_All,3;
+ - Id: 18579
+ AegisName: 9th_Anni_Hat
+ Name: 9th Anni Hat
+ Type: Armor
+ Weight: 90
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 745
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,9;
+ - Id: 18580
+ AegisName: Yggdrasil_Crown
+ Name: Yggdrasil Crown
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 746
+ Trade:
+ 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;
+ }
+ - Id: 18581
+ AegisName: Red_Tiger_Mask
+ Name: Red Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 747
+ Script: |
+ bonus bStr,3;
+ bonus bMaxHP,100;
+ - Id: 18582
+ AegisName: Blue_Tiger_Mask
+ Name: Blue Tiger Mask
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 748
+ Script: |
+ bonus bStr,3;
+ - Id: 18583
+ AegisName: Navy_Drooping_Kitty
+ Name: Navy Drooping Kitty
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 749
+ Script: |
+ bonus bMdef,15;
+ - Id: 18584
+ AegisName: Brown_Drooping_Kitty
+ Name: Brown Drooping Kitty
+ Type: Armor
+ Buy: 250000
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 750
+ Script: |
+ bonus bMdef,15;
+ - Id: 18585
+ AegisName: Orange_Bunny_Hairband
+ Name: Orange Bunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 751
+ Script: |
+ bonus bInt,2;
+ bonus bVit,3;
+ bonus bStr,1;
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bFixedCastrate,-10;
+ }
+ - Id: 18586
+ AegisName: Violet_Bunny_Hairband
+ Name: Violet Bunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 752
+ Script: |
+ bonus bStr,1;
+ bonus bInt,3;
+ bonus bVit,2;
+ bonus bDex,1;
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bFixedCastrate,-10;
+ }
+ - Id: 18587
+ AegisName: Blue_Bunny_Hairband
+ Name: Blue Bunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 753
+ Script: |
+ bonus bStr,3;
+ bonus bInt,1;
+ bonus bVit,2;
+ bonus bDex,1;
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bFixedCastrate,-10;
+ }
+ - Id: 18588
+ AegisName: Silver_Bunny_Hairband
+ Name: Silver Bunny Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 754
+ Script: |
+ bonus bStr,2;
+ bonus bInt,3;
+ bonus bVit,1;
+ bonus bDex,1;
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bFixedCastrate,-10;
+ }
+ - Id: 18589
+ AegisName: Strawberry_Hat
+ Name: Strawberry Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 755
+ Script: |
+ bonus2 bAddMonsterDropItem,578,50*min(10,max(1,getrefine()));
+ - Id: 18590
+ AegisName: Gemma_Hairband
+ Name: Gemma Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 564
+ Script: |
+ bonus bMdef,3;
+ - Id: 18591
+ AegisName: Mini_Glasses_
+ Name: Mini Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 47
+ - Id: 18592
+ AegisName: Nestea_Hat
+ Name: Nestea Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 756
+ Script: |
+ bonus bMdef,5;
+ - Id: 18593
+ AegisName: Fancy_Mini_Crown
+ Name: Fancy Mini Crown
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 707
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,5;
+ bonus bVariableCastRate,-3;
+ bonus bHealPower,3;
+ bonus bUseSPrate,-3;
+ .@r = getrefine();
+ bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3));
+ - Id: 18594
+ AegisName: Magni_Cap_
+ Name: Magni Cap
+ Type: Armor
+ Buy: 30000
+ Weight: 1000
+ Defense: 9
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 250
+ Script: |
+ bonus bStr,2;
+ - Id: 18595
+ AegisName: Horn_Of_Ancient
+ Name: Horn of Ancient
+ Type: Armor
+ Buy: 40
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 757
+ Trade:
+ 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;
+ }
+ - Id: 18596
+ AegisName: Sprout_Hat
+ Name: Sprout Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 758
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ skill "WZ_HEAVENDRIVE",3;
+ - Id: 18597
+ AegisName: Mercury_Helm
+ Name: Mercury Riser
+ Type: Armor
+ Buy: 40
+ Weight: 400
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 759
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAspdRate,3;
+ bonus bCritical,3;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bAspdRate,2;
+ bonus bCritical,2;
+ }
+ if (.@r >= 9) {
+ bonus bAspdRate,2;
+ bonus bCritical,2;
+ }
+ - Id: 18598
+ AegisName: Mini_Tree_J
+ Name: Mini Tree J
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Slots: 1
+ Locations:
+ Head_Top: true
+ View: 727
+ Script: |
+ bonus bMdef,20;
+ - Id: 18599
+ AegisName: Black_Devil_Mask
+ Name: Black Devil Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 760
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,2;
+ - Id: 18600
+ AegisName: Cat_Ears_Beret
+ Name: Cat Ear Beret
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 761
+ Trade:
+ 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);
+ - Id: 18601
+ AegisName: Red_Bread_Hat
+ Name: Red Bread Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 762
+ Trade:
+ 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);
+ - Id: 18602
+ AegisName: Watermelon_Slice
+ Name: Watermelon Bite
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ View: 763
+ - Id: 18603
+ AegisName: Black_Devil_Mask_
+ Name: Black Devil Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 760
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAllStats,1;
+ - Id: 18604
+ AegisName: Falcon_Mask
+ Name: Falcon Mask
+ Type: Armor
+ Buy: 10
+ Weight: 30
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 782
+ Script: |
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 18605
+ AegisName: Dark_Age
+ Name: Dark Age
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 766
+ Script: |
+ bonus bMdef,3;
+ - Id: 18606
+ AegisName: Tear_Drop
+ Name: Tear Drop
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 767
+ - Id: 18607
+ AegisName: Blush_
+ Name: Blush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 125
+ - Id: 18608
+ AegisName: Pair_Of_Red_Ribbon2
+ Name: Small Ribbons
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 45
+ View: 169
+ - Id: 18609
+ AegisName: Dark_Blindfold_
+ Name: Dark Blinder
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 187
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,200;
+ - Id: 18610
+ AegisName: 7th_Anni_Hat_B
+ Name: 7th Anni Hat B
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 4
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 778
+ Script: |
+ bonus bAllStats,5;
+ bonus bMdef,4;
+ - Id: 18611
+ AegisName: Black_Glasses_
+ Name: Black Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 404
+ Script: |
+ bonus bInt,1;
+ bonus bMdef,2;
+ - Id: 18612
+ AegisName: White_Musang_Hat
+ Name: White Musang Hat
+ Type: Armor
+ Buy: 40
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 770
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bVit,2;
+ bonus bLuk,1;
+ bonus bUnbreakableHelm;
+ - Id: 18613
+ AegisName: Black_Musang_Hat
+ Name: Black Musang Hat
+ Type: Armor
+ Buy: 40
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 771
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus bAgi,1;
+ bonus bUnbreakableHelm;
+ - Id: 18614
+ AegisName: Grim_Reaper_Hat
+ Name: Grim Reaper Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 732
+ Script: |
+ bonus bFlee,3;
+ - Id: 18615
+ AegisName: Injured_Eyepatch
+ Name: Injured Eyepatch
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 772
+ - Id: 18616
+ AegisName: Long_Tongue
+ Name: Long Tongue
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 773
+ Script: |
+ bonus bMatkRate,2;
+ bonus bVariableCastrate,-3;
+ - Id: 18617
+ AegisName: Onigiri_In_Mouth
+ Name: Onigiri In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 774
+ Script: |
+ bonus2 bAddDamageClass,1400,5;
+ bonus2 bAddDamageClass,1406,5;
+ bonus2 bAddDamageClass,1404,5;
+ bonus2 bAddDamageClass,1402,5;
+ bonus2 bAddDefMonster,1400,5;
+ bonus2 bAddDefMonster,1406,5;
+ bonus2 bAddDefMonster,1404,5;
+ bonus2 bAddDefMonster,1402,5;
+ - Id: 18618
+ AegisName: Airplane_Hat
+ Name: Airplane Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 8
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 775
+ - Id: 18619
+ AegisName: Thief_Bandana
+ Name: Thief Bandana
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 776
+ Script: |
+ bonus4 bAutoSpell,"RG_SNATCHER",1,20,1;
+ - Id: 18620
+ AegisName: Heart_Eyepatch
+ Name: Heart Eyepatch
+ Type: Armor
+ Buy: 5
+ Weight: 50
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 779
+ - Id: 18621
+ AegisName: Gangster_Mask_A
+ Name: Gangster Mask A
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 52
+ Script: |
+ bonus2 bResEff,Eff_Silence,1500;
+ bonus bMagicDamageReturn,1;
+ - Id: 18622
+ AegisName: Rocket_Helm1
+ Name: Rocket Helm 1
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 764
+ Script: |
+ bonus bAllStats,5;
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ - Id: 18623
+ AegisName: Rocket_Helm2
+ Name: Rocket Helm 2
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 765
+ Script: |
+ bonus bAllStats,4;
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ - Id: 18624
+ AegisName: Rocket_Helm3
+ Name: Rocket Helm 3
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 768
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ - Id: 18625
+ AegisName: Rocket_Helm_RWC
+ Name: Rocket Helm RWC
+ Type: Armor
+ Buy: 10000
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ Refineable: true
+ View: 769
+ Script: |
+ bonus bAllStats,2;
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ bonus bSpeedRate,25;
+ - Id: 18626
+ AegisName: Gelato_Hat
+ Name: Gelato Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 777
+ - Id: 18627
+ AegisName: Dried_Leaf
+ Name: Dried Leaf
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 711
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 18628
+ AegisName: Tare_Brownie
+ Name: Tare Brownie
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 781
+ Script: |
+ bonus bMdef,5;
+ - Id: 18629
+ AegisName: B_Desert_Wolf_Hat
+ Name: Baby Desert Wolf Hat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 783
+ Script: |
+ bonus bMdef,5;
+ bonus bLongAtkDef,5;
+ - Id: 18630
+ AegisName: Dep_Alice_Hat
+ Name: Drooping Alicel
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 784
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ if (getrefine() > 10) {
+ autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ }
+ - Id: 18631
+ AegisName: Ribbon_Chef_Hat
+ Name: Ribbon Chef Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 785
+ Script: |
+ bonus bDex,3;
+ bonus bLuk,1;
+ if (getrefine() > 6) {
+ bonus2 bAddMonsterDropItem,12125,500;
+ bonus2 bAddMonsterDropItem,12126,500;
+ bonus2 bAddMonsterDropItem,12127,400;
+ bonus2 bAddMonsterDropItem,12128,300;
+ bonus2 bAddMonsterDropItem,12129,200;
+ }
+ - Id: 18632
+ AegisName: Yellow_Poring_Hairpin
+ Name: Yellow Poring Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 786
+ - Id: 18633
+ AegisName: Pink_Poring_Hairpin
+ Name: Pink Poring Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 787
+ - Id: 18634
+ AegisName: Green_Poring_Hairpin
+ Name: Green Poring Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 788
+ - Id: 18635
+ AegisName: Blue_Poring_Hairpin
+ Name: Blue Poring Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 789
+ - Id: 18636
+ AegisName: Bridal_Ribbon
+ Name: Bridal Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 790
+ Script: |
+ bonus bDex,1;
+ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10;
+ - Id: 18637
+ AegisName: Ancient_Admiral_Helm
+ Name: Ancient Admiral Helm
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 660
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ if (getrefine() > 7)
+ bonus bSpeedRate,25;
+ - Id: 18638
+ AegisName: Citron_Hat
+ Name: Citron Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 791
+ Script: |
+ bonus bLuk,3;
+ bonus2 bSubRace,RC_Plant,10;
+ - Id: 18639
+ AegisName: Naval_Officer_Hat
+ Name: Naval Officer Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 792
+ Script: |
+ bonus bLuk,3;
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 18640
+ AegisName: Starfish_Headband
+ Name: Starfish Headband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 793
+ - Id: 18641
+ AegisName: Ribbon_Magic_Hat
+ Name: Ribbon Magic Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 794
+ Script: |
+ bonus bMaxSP,50;
+ bonus bMatkRate,5;
+ - Id: 18642
+ AegisName: hand_Scissorhand_Model
+ Name: Scissorhand Model
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 795
+ Script: |
+ bonus bAgi,1;
+ - Id: 18643
+ AegisName: Rockhand_Model
+ Name: Rockhand Model
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 796
+ Script: |
+ bonus bStr,1;
+ - Id: 18644
+ AegisName: Paperhand_Model
+ Name: Paperhand Model
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 797
+ - Id: 18645
+ AegisName: Sailor_Hat
+ Name: Sailor Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 798
+ Script: |
+ bonus bInt,1;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 18646
+ AegisName: Cow_Hat
+ Name: Cow Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 799
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddMonsterDropItem,519,100;
+ - Id: 18647
+ AegisName: Star_Eyepatch
+ Name: Star Eyepatch
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 800
+ Script: |
+ bonus2 bResEff,Eff_Stun,1500;
+ - Id: 18648
+ AegisName: Tongue_Charm
+ Name: Tongue Charm
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 801
+ Script: |
+ bonus2 bSubRace,RC_Demon,3;
+ - Id: 18649
+ AegisName: Lude_Mask
+ Name: Lude Mask
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Refineable: true
+ View: 802
+ - Id: 18650
+ AegisName: RWC_Shouting_Mouth
+ Name: RWC Shouting Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 194
+ Script: |
+ bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10;
+ bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10;
+ bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10;
+ bonus3 bAutoSpell,"BS_MAXIMIZE",5,10;
+ bonus3 bAutoSpell,"MC_LOUD",1,10;
+ bonus3 bAutoSpell,"AC_CONCENTRATION",5,10;
+ bonus3 bAutoSpell,"PR_GLORIA",3,10;
+ autobonus "{ bonus bStr,3; bonus bAgi,3; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; showscript \"RWC 2011 Fighting!!\"; }";
+ autobonus "{ bonus bInt,3; bonus bLuk,3; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; showscript \"RWC 2011 Fighting!!\"; }";
+ - Id: 18651
+ AegisName: Ignis_Cap
+ Name: Ignis Cap
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 803
+ - Id: 18652
+ AegisName: Vanargand_Helm
+ Name: Vanargandr Helm
+ Type: Armor
+ Buy: 20
+ Weight: 1500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 804
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 9 ) {
+ bonus2 bHPDrainRate,60,8;
+ bonus2 bSPDrainRate,20,4;
+ } else if (.@r >= 8 ) {
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,2;
+ } else if (.@r >= 7 ) {
+ bonus2 bHPDrainRate,30,5;
+ bonus2 bSPDrainRate,10,2;
+ } else if (.@r >= 5 ) {
+ bonus2 bHPDrainRate,10,3;
+ bonus2 bSPDrainRate,10,1;
+ }
+ else {
+ bonus2 bHPDrainRate,10,1;
+ bonus2 bSPDrainRate,10,1;
+ }
+ - Id: 18653
+ AegisName: Devi_Headphone
+ Name: Deviruchi Headphone
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 805
+ Script: |
+ bonus bMdef,4;
+ - Id: 18655
+ AegisName: Lupin_One_Eyed_Glasses
+ Name: Goedo Monocle
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 807
+ Script: |
+ bonus bAgi,2;
+ - Id: 18656
+ AegisName: Wit_Pumpkin_Hat
+ Name: Witch's Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 717
+ Script: |
+ bonus bMdef,10;
+ bonus bStr,2;
+ bonus bInt,2;
+ bonus2 bAddRace,RC_Undead,15;
+ bonus2 bMagicAddRace,RC_Undead,15;
+ bonus2 bAddRace,RC_Demon,15;
+ bonus2 bMagicAddRace,RC_Demon,15;
+ - Id: 18657
+ AegisName: Pegasus_Wing_Ears
+ Name: Pegasus Wing Ears
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 80
+ View: 568
+ Script: |
+ bonus bUnbreakableHelm;
+ .@i = BaseLevel;
+ bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0)));
+ - Id: 18658
+ AegisName: Holy_Santa_Beard
+ Name: Holy Santa Beard
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 25
+ - Id: 18659
+ AegisName: Boitata_Hat
+ Name: Boitata Hat
+ Type: Armor
+ Buy: 20
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 808
+ Script: |
+ autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ bonus3 bAutospell,"AS_SONICBLOW",5,10;
+ - Id: 18660
+ AegisName: Indi_Feather_Band
+ Name: Indian Feather Headband
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 809
+ Script: |
+ bonus bAgi,2;
+ - Id: 18661
+ AegisName: Trident_Helmet
+ Name: Trident Helm
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 810
+ Script: |
+ bonus bStr,2;
+ - Id: 18662
+ AegisName: Antler_Fedora
+ Name: Antler Fedora
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 811
+ Script: |
+ bonus bInt,3;
+ - Id: 18663
+ AegisName: Sunglasses_Bball_Hat
+ Name: Sunglasses Baseball Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 812
+ Script: |
+ bonus bInt,3;
+ - Id: 18664
+ AegisName: Blind_Glasses
+ Name: Blind Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 813
+ Script: |
+ bonus2 bResEff,Eff_Stun,1000;
+ bonus2 bResEff,Eff_Freeze,1000;
+ - Id: 18665
+ AegisName: Orange_In_Mouth
+ Name: Orange In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 814
+ - Id: 18666
+ AegisName: CD_In_Mouth
+ Name: CD In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 815
+ Script: |
+ autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"MG_COLDBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",rand(1,5),400; bonus3 bAutoSpell,\"MG_SOULSTRIKE\",rand(1,5),400; }",60,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 18667
+ AegisName: Cat_Lace_Hairband
+ Name: Cat Lace Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 816
+ Script: |
+ bonus bDex,3;
+ - Id: 18668
+ AegisName: Droopy_Turtle_Hat
+ Name: Droopy Turtle Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 694
+ Script: |
+ skill "AL_DECAGI",3;
+ - Id: 18669
+ AegisName: Cowhide_Hat
+ Name: Cowhide Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 819
+ Script: |
+ bonus bDex,2;
+ bonus bMaxHPrate,1;
+ - Id: 18670
+ AegisName: Hankie_In_Mouth
+ Name: Hankie In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 12
+ View: 818
+ Script: |
+ bonus bDex,3;
+ bonus2 bSubRace,RC_DemiHuman,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ - Id: 18671
+ AegisName: Rudolf_Hairband
+ Name: Rudolf Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 836
+ - Id: 18672
+ AegisName: Tare_Pope
+ Name: Drooping Pope
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 817
+ Script: |
+ bonus bMdef,1;
+ bonus bSPrecovRate,2;
+ bonus bUnbreakableHelm;
+ - Id: 18673
+ AegisName: Tare_Pope_
+ Name: Drooping Pope
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 817
+ Trade:
+ 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 );
+ }
+ - Id: 18674
+ AegisName: Planewing_Hat
+ Name: Planewing Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 820
+ Script: |
+ bonus bAgi,3;
+ bonus bAspdRate,1;
+ bonus2 bSPLossRate,5,10000;
+ - Id: 18675
+ AegisName: Green_Apple_Hat
+ Name: Green Apple Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 821
+ Script: |
+ bonus bDex,2;
+ bonus bHit,5;
+ - Id: 18676
+ AegisName: Hexagon_Spectacles
+ Name: Hexagon Spectacles
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 822
+ Script: |
+ bonus2 bMagicAddRace,RC_Insect,4;
+ bonus2 bSubRace,RC_Insect,5;
+ bonus bUnbreakableHelm;
+ - Id: 18677
+ AegisName: Cherry_Twig_In_Mouth
+ Name: Cherry Twig In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 823
+ Script: |
+ bonus2 bAddRace,RC_Plant,2;
+ - Id: 18678
+ AegisName: Leek_In_Mouth
+ Name: Leek In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 824
+ Script: |
+ bonus2 bSubSize,Size_Small,2;
+ - Id: 18679
+ AegisName: Abacus_In_Mouth
+ Name: Abacus In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 825
+ Script: |
+ skill "MC_IDENTIFY",1;
+ - Id: 18680
+ AegisName: Tw_Frog_Hat
+ Name: Tw Frog Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 35
+ View: 826
+ Script: |
+ bonus bAgi,1;
+ bonus2 bExpAddRace,RC_Insect,5;
+ - Id: 18681
+ AegisName: Puppy_Ears_Hat
+ Name: Puppy Ears Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 827
+ Script: |
+ bonus bVit,2;
+ bonus bMaxHp,100;
+ - Id: 18682
+ AegisName: Teardrop
+ Name: Teardrop
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 828
+ Script: |
+ bonus bMaxSP,15;
+ - Id: 18683
+ AegisName: Carrot_In_Mouth
+ Name: Carrot In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 829
+ Script: |
+ bonus2 bSubRace,RC_Plant,3;
+ - Id: 18684
+ AegisName: Showy_High_Cap
+ Name: Showy High Cap
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 830
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ bonus2 bAddItemHealRate,505,50;
+ - Id: 18685
+ AegisName: Stardust_Hairband
+ Name: Stardust Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ View: 831
+ - Id: 18686
+ AegisName: 2011_RMSC_1
+ Name: 2011 RMSC 1
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 832
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bAllStats,5;
+ - Id: 18687
+ AegisName: 2011_RMSC_2
+ Name: 2011 RMSC 2
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 832
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bAllStats,3;
+ - Id: 18688
+ AegisName: 2011_RMSC_3
+ Name: 2011 RMSC 3
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 832
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bAllStats,1;
+ - Id: 18689
+ AegisName: 2011_RMSC_4
+ Name: 2011 RMSC 4
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 832
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 18690
+ AegisName: Sirt_Evil_Eye
+ Name: Sirt Evil Eye
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 345
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bStr,1;
+ - Id: 18691
+ AegisName: Rising_Black_Dragon
+ Name: Rising Black Dragon
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 863
+ - Id: 18692
+ AegisName: Mike_Hat
+ Name: Mike Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 837
+ Script: |
+ bonus bDex,2;
+ bonus bLuk,1;
+ - Id: 18693
+ AegisName: Sleeping_Kitty_Cat
+ Name: Sleeping Kitty Cat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 838
+ Script: |
+ bonus2 bAddRace,RC_Brute,2;
+ bonus2 bAddRace,RC_Player_Doram,2;
+ - Id: 18694
+ AegisName: Red_Hood
+ Name: Red Hood
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 839
+ Script: |
+ bonus bCritical,10;
+ - Id: 18695
+ AegisName: Phoenix_Crown
+ Name: Phoenix Crown
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 840
+ Script: |
+ bonus bInt,2;
+ - Id: 18696
+ AegisName: Orange_Hat
+ Name: Orange Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 841
+ Script: |
+ skill "MC_MAMMONITE",2;
+ - Id: 18697
+ AegisName: Syringe_In_Mouth
+ Name: Syringe In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 842
+ - Id: 18698
+ AegisName: Cheesy_Snack_In_Mouth
+ Name: Cheesy Snack In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 843
+ - Id: 18699
+ AegisName: Starving_Fish_Hat
+ Name: Starving Fish Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 844
+ - Id: 18700
+ AegisName: Rabbit_Ribbon
+ Name: Rabbit Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 845
+ Script: |
+ bonus bInt,1;
+ - Id: 18701
+ AegisName: Ancient_Civil_Man
+ Name: Ancient Civil Man
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ View: 846
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 847
+ - Id: 18703
+ AegisName: Stem_In_Mouth
+ Name: Stem In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 848
+ Script: |
+ bonus2 bResEff,Eff_Poison,2000;
+ - Id: 18704
+ AegisName: Drosera_Hairpin
+ Name: Drosera Hairpin
+ Type: Armor
+ Buy: 20
+ Weight: 640
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 64
+ Refineable: true
+ View: 850
+ Script: |
+ bonus bMdef,4;
+ bonus bMaxSP,64;
+ bonus2 bSubRace,RC_Insect,-10;
+ - Id: 18705
+ AegisName: FlipHat
+ Name: Flip Hat
+ Type: Armor
+ View: 862
+ Buy: 50000
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee2,5;
+ bonus bLuk,2;
+ autobonus "{ bonus bHit,30; }",1+.@r,6000,BF_WEAPON;
+ autobonus "{ bonus bVariableCastrate,-30; }",1+.@r,6000,BF_MAGIC;
+ bonus3 bAutoSpell,"AS_SONICBLOW",10,1;
+ - Id: 18706
+ AegisName: Can_Hat
+ Name: Can Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 851
+ Script: |
+ bonus bLuk,3;
+ - Id: 18707
+ AegisName: Maneater_Flower_Hat
+ Name: Maneater Flower Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 852
+ Script: |
+ bonus bFlee,20;
+ - Id: 18708
+ AegisName: Candy_Hat
+ Name: Candy Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 853
+ Script: |
+ skill "AL_HEAL",3;
+ - Id: 18709
+ AegisName: Black_Knitted_Hat
+ Name: Black Knitted Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 854
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 18710
+ AegisName: Sugared_Fruit_Stick
+ Name: Sugared Fruit Stick
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 855
+ - Id: 18711
+ AegisName: Electric_Sunglass
+ Name: Electric Sunglass
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 856
+ - Id: 18712
+ AegisName: Fan_In_Mouth
+ Name: Fan In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 20
+ View: 857
+ - Id: 18713
+ AegisName: Monkey_On_Fur_Hat
+ Name: Monkey On Fur Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 858
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bFlee,10;
+ - Id: 18714
+ AegisName: Hippo_Hat
+ Name: Hippo Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 859
+ Script: |
+ bonus2 bSubEle,Ele_Water,10;
+ bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0;
+ - Id: 18715
+ AegisName: Helm_Of_Thoth
+ Name: Helm Of Thoth
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 80
+ View: 860
+ Script: |
+ bonus bInt,2;
+ bonus bMdef,5;
+ bonus bMaxSP,100;
+ - Id: 18716
+ AegisName: Strawberry_In_Mouth
+ Name: Strawberry In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 861
+ - Id: 18718
+ AegisName: Rose_Hairband
+ Name: Rose Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ View: 864
+ Script: |
+ bonus bInt,1;
+ bonus bVit,1;
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-3;
+ - Id: 18720
+ AegisName: Magical_Booster
+ Name: Magical Booster
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 873
+ Script: |
+ bonus bMatkRate,3;
+ - Id: 18724
+ AegisName: L_Magestic_Goat_
+ Name: Gigantic Majestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 380
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,12;
+ bonus2 bAddRace,RC_Player_Human,12;
+ bonus bBaseAtk,(JobLevel*2)/7;
+ - Id: 18727
+ AegisName: Sedora_Hat
+ Name: Sedora Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 13
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 869
+ - Id: 18728
+ AegisName: Egir_Helm
+ Name: Egir Helm
+ Type: Armor
+ Buy: 200000
+ Weight: 800
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 110
+ Refineable: true
+ View: 870
+ Script: |
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ - Id: 18729
+ AegisName: MVP_Basketball
+ Name: MVP Basketball
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 871
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ bonus2 bAddItemHealRate,522,30;
+ .@r = getrefine();
+ bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3));
+ - Id: 18730
+ AegisName: Cryptura_Academy_Hat
+ Name: Cryptura Academy Hat
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 872
+ Script: |
+ bonus bMaxHP,15;
+ bonus bMaxSP,5;
+ - Id: 18731
+ AegisName: Valkyrie_Outing_Helm
+ Name: Valkyrie Randgris Helm
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Top: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ View: 225
+ Script: |
+ bonus bAllStats,1;
+ bonus bAspd,1;
+ bonus bFixedCastrate,-1;
+ - Id: 18732
+ AegisName: TE_Woe_Cap
+ Name: TE Woe Cap
+ Type: Armor
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 14
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ bonus2 bMagicAddRace,RC_Player_Doram,10;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 18733
+ AegisName: TE_Woe_Bone_Helm
+ Name: TE Woe Bone Helm
+ Type: Armor
+ Defense: 10
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 103
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,10;
+ bonus2 bAddRace,RC_Player_Human,20;
+ bonus2 bAddRace,RC_Player_Doram,20;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 18734
+ AegisName: TE_Woe_Magic_Eyes
+ Name: TE Woe Magic Eyes
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 209
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus bMatk,10;
+ bonus2 bMagicAddRace,RC_Player_Human,20;
+ bonus2 bMagicAddRace,RC_Player_Doram,20;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 18736
+ AegisName: Censor_Bar_
+ Name: Censor Bar
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 229
+ - Id: 18737
+ AegisName: Fortier_Mask
+ Name: Fortier Masque
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 876
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bMagicAtkEle,Ele_Fire,4;
+ - Id: 18739
+ AegisName: Carnation_Hairband
+ Name: Carnation Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 878
+ Script: |
+ bonus bLuk,1;
+ - Id: 18740
+ AegisName: C_Hair_Of_The_Strong
+ Name: RMSC2012 Special Costume
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 879
+ - Id: 18741
+ AegisName: C_Will_O_Wisp
+ Name: Costume Will O Wisp
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 880
+ EquipScript: |
+ sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_STRANGELIGHTS;
+ - Id: 18742
+ AegisName: C_MoonStar_Accessory
+ Name: Costume Moon and Stars
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ View: 881
+ Trade:
+ Override: 100
+ NoDrop: true
+ EquipScript: |
+ sc_start SC_MOONSTAR,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_MOONSTAR;
+ - Id: 18743
+ AegisName: C_Spirit_Of_Chung_E
+ Name: Costume Spirit Of Chung E
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 882
+ - Id: 18744
+ AegisName: C_World_Star
+ Name: Costume Twilight
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ View: 883
+ EquipScript: |
+ sc_start SC_SUPER_STAR,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_SUPER_STAR;
+ - Id: 18745
+ AegisName: Choco_Stick_In_Mouth
+ Name: Choco Stick In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 884
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 18746
+ AegisName: Chilly_Breath
+ Name: Chilly Breath
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 885
+ Script: |
+ bonus bInt,1;
+ - Id: 18747
+ AegisName: Eyes_Of_Ifrit
+ Name: Eyes Of Ifrit
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 886
+ Script: |
+ bonus bDex,1;
+ bonus2 bResEff,Eff_Curse,2500;
+ - Id: 18748
+ AegisName: Gold_Ingot_Poring_Hat
+ Name: Gold Ingot Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 887
+ Script: |
+ bonus bDex,2;
+ bonus bLuk,2;
+ - Id: 18749
+ AegisName: Majoruros_Horn
+ Name: Majoruros Horn
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 888
+ Script: |
+ bonus bStr,2;
+ bonus bMaxHP,100;
+ - Id: 18750
+ AegisName: Poker_Card_In_Mouth
+ Name: Poker Card In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 10
+ View: 889
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ - Id: 18752
+ AegisName: Cursed_Book
+ Name: Cursed Book
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Classes:
+ All_Upper: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 890
+ Script: |
+ .@r = getrefine();
+ bonus2 bHPLossRate,.@r,5000;
+ bonus2 bHPDrainRate,40,4+(.@r/2);
+ bonus2 bSPDrainRate,10,1+(.@r/3);
+ - Id: 18753
+ AegisName: Tw_Rice_Ball
+ Name: Tw Rice Ball
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 6
+ Locations:
+ Head_Top: true
+ View: 892
+ Script: |
+ bonus bLuk,1;
+ bonus2 bAddMonsterDropItem,564,100;
+ - Id: 18754
+ AegisName: Blood_Sucker
+ Name: Blood Sucker
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 40
+ View: 893
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bHPDrainRate,30,5;
+ bonus bHPrecovRate,-100;
+ bonus bSPrecovRate,-100;
+ - Id: 18755
+ AegisName: Feather_Beret_
+ Name: Feather Beret
+ Type: Armor
+ Weight: 600
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 224
+ Script: |
+ bonus bMdef,1;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ - Id: 18756
+ AegisName: Black_Shiba_Inu_Hat
+ Name: Black Shiba Inu Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 894
+ Script: |
+ bonus bBaseAtk,30;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ - Id: 18758
+ AegisName: Hat_Of_Scrat
+ Name: Hat Of Scrat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 896
+ - Id: 18759
+ AegisName: Stretched_Nose_M
+ Name: Wood Goblin's Nose
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 737
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bAddMonsterDropItem,1032,400;
+ bonus2 bAddMonsterDropItem,1033,100;
+ bonus3 bAddMonsterDropItem,576,RC_Plant,40;
+ - Id: 18760
+ AegisName: Remodel_Wizardry_Hat
+ Name: Improved Mage Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 112
+ Script: |
+ bonus bInt,2;
+ bonus bMaxSP,150;
+ .@r = getrefine();
+ bonus bMatk,.@r;
+ if (.@r>=7)
+ bonus bInt,.@r-6;
+ - Id: 18761
+ AegisName: Remodel_Magician_Hat
+ Name: Improved Magician Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 130
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMaxSP,50;
+ .@r = getrefine();
+ bonus bMaxSP,.@r*5;
+ if (.@r>=7)
+ bonus bDex,.@r-6;
+ - Id: 18762
+ AegisName: Remodel_Mask_Of_Fox
+ Name: Improved Kitsune Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 153
+ Script: |
+ bonus bAgi,2;
+ bonus bLuk,2;
+ if (getrefine()>=7)
+ bonus bFlee2,4;
+ - Id: 18763
+ AegisName: Remodel_Joker_Jester
+ Name: Improved Joker Jester
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 89
+ Script: |
+ bonus bLuk,2;
+ bonus bMdef,5;
+ if (getrefine()>=7)
+ bonus bCritAtkRate,5;
+ - Id: 18764
+ AegisName: Remodel_Bunny_Band
+ Name: Improved Bunny Band
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 15
+ Script: |
+ bonus bLuk,2;
+ if (getrefine()>=7)
+ bonus bCritical,5;
+ - Id: 18765
+ AegisName: Enhanced_Corsair
+ Name: Enhanced Corsair
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHprate,5;
+ .@r = getrefine();
+ if (.@r>=7)
+ bonus2 bSubEle,Ele_Neutral,1;
+ if (.@r>=9)
+ bonus bMaxHPrate,3;
+ - Id: 18766
+ AegisName: Enhanced_Helm_Of_Angel
+ Name: Enhanced Helm of Angel
+ Type: Armor
+ Buy: 20
+ Weight: 1600
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 110
+ Script: |
+ bonus bAgi,1;
+ bonus bLuk,1;
+ bonus bMdef,3;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bAgi,2;
+ bonus bLuk,2;
+ }
+ if (.@r>=9)
+ bonus bAspd,1;
+ - Id: 18767
+ AegisName: Enhanced_Helm_Of_Sun
+ Name: Enhanced Hat of the Sun God
+ Type: Armor
+ Buy: 20
+ Weight: 2400
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 138
+ Script: |
+ bonus bStr,3;
+ bonus bInt,2;
+ .@j = getrefine();
+ if (.@j>=7)
+ .@i = 1;
+ if (.@j>=9)
+ .@i = 2;
+ bonus bBaseAtk,10+(15*.@i);
+ bonus bMatk,10+(15*.@i);
+ - Id: 18768
+ AegisName: Enhanced_Bone_Helm
+ Name: Enhanced Bone Helm
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 103
+ Script: |
+ bonus2 bSubEle,Ele_Dark,-15;
+ .@j = getrefine();
+ if (.@j>=7)
+ .@i = 1;
+ if (.@j>=9)
+ .@i = 2;
+ bonus2 bSubEle,Ele_Neutral,2+(2*.@i);
+ - Id: 18769
+ AegisName: Remodel_Munak_Turban
+ Name: Improved Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 51
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ if (getrefine()>=7)
+ bonus2 bAddRace,RC_Undead,10;
+ - Id: 18770
+ AegisName: Remodel_Bongun_Hat
+ Name: Improved Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Refineable: true
+ View: 139
+ Script: |
+ bonus2 bSubRace,RC_Demon,10;
+ if (getrefine()>=7)
+ bonus2 bAddRace,RC_Demon,10;
+ - Id: 18771
+ AegisName: Remodel_Opera_Mask
+ Name: Improved Opera Phantom Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 128
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ - Id: 18772
+ AegisName: Improved_Binoculars
+ Name: Advanced Binoculars
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 83
+ Script: |
+ bonus bDex,1;
+ bonus bLongAtkRate,1;
+ - Id: 18773
+ AegisName: Improved_Fin_Helm
+ Name: Advanced Fin Helm
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 65
+ View: 100
+ Script: |
+ bonus bMaxHP,300+BaseLevel;
+ /* unconfirmed */
+ - Id: 18774
+ AegisName: Improved_Assassin_Mask
+ Name: Advanced Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Jobs:
+ Assassin: true
+ Priest: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 180
+ Script: |
+ bonus bCritical,1;
+ bonus bCritAtkRate,1;
+ - Id: 18775
+ AegisName: Improved_Welding_Mask
+ Name: Advanced Welding Mask
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 79
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus bDex,5;
+ bonus bLuk,5;
+ - Id: 18776
+ AegisName: Improved_Kiss_Of_Angel
+ Name: Advanced Angel's Kiss
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 255
+ Script: |
+ bonus bSPrecovRate,30;
+ - Id: 18779
+ AegisName: RWC_Champ_Crown_Red
+ Name: RWC Champ Crown First Place
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 902
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Stun,10000;
+ bonus2 bResEff,Eff_Curse,10000;
+ bonus bUnbreakableHelm;
+ bonus bAllStats,7;
+ bonus bMdef,5;
+ - Id: 18780
+ AegisName: RWC_Champ_Crown_Blue
+ Name: RWC Champ Crown Second Place
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 903
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,5;
+ bonus2 bResEff,Eff_Curse,10000;
+ bonus2 bResEff,Eff_Stun,10000;
+ bonus bUnbreakableHelm;
+ bonus bAllStats,7;
+ bonus bMdef,5;
+ - Id: 18781
+ AegisName: RWC_Champ_Crown_Black
+ Name: RWC Champ Crown Third Place
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 904
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,10000;
+ bonus bUnbreakableHelm;
+ bonus bAllStats,3;
+ bonus bMdef,1;
+ - Id: 18782
+ AegisName: Butterfly_Wing_Ear_J
+ Name: Butterfly Wing Ear
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ View: 695
+ Script: |
+ bonus bDex,2;
+ bonus bUnbreakableHelm;
+ - Id: 18785
+ AegisName: King_Poring_Hat
+ Name: King Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 905
+ Script: |
+ bonus bDex,1;
+ bonus bLuk,1;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bDex,(.@r-4);
+ bonus bLuk,(.@r-4);
+ }
+ - Id: 18786
+ AegisName: Anemos_Mask
+ Name: Anemos Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 906
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bMagicAtkEle,Ele_Wind,4;
+ - Id: 18787
+ AegisName: Goal_Tender_Mask
+ Name: Goal Tender Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 336
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,8;
+ bonus2 bAddRace,RC_Player_Human,8;
+ - Id: 18790
+ AegisName: Rainbow_Poring_Hat
+ Name: Rainbow Poring Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 900
+ - Id: 18791
+ AegisName: Shrine_Maiden_Hat
+ Name: Shrine Maiden Hat
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 901
+ Script: |
+ bonus bVit,10;
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ - Id: 18793
+ AegisName: Sorc_Night_Cap
+ Name: Sorcerer's Night Cap
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 911
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50;
+ bonus2 bSkillAtk,"MG_FIREBOLT",50;
+ bonus2 bSkillAtk,"MG_COLDBOLT",50;
+ bonus bMdef,10;
+ if (.@r>6)
+ bonus2 bSkillAtk,"SC_SPELLFIST",25;
+ if (.@r>8)
+ bonus bAspd,5;
+ - Id: 18796
+ AegisName: RWC_Champ_Crown_QF
+ Name: RWC Champ Crown Fourth Place
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 914
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bResEff,Eff_Curse,10000;
+ bonus bUnbreakableHelm;
+ bonus bAllStats,2;
+ - Id: 18803
+ AegisName: Rose_Cascade
+ Name: Rose Cascade
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 920
+ Script: |
+ .@dex = readparam(bDex);
+ bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0);
+ - Id: 18805
+ AegisName: Eclipse_Hat
+ Name: Eclipse Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 922
+ Script: |
+ bonus bLuk,3;
+ bonus bMdef,5;
+ - Id: 18806
+ AegisName: Black_Rabbit_Hat
+ Name: Black Rabbit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 923
+ Script: |
+ bonus bDex,2;
+ bonus bAgi,3;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;
+ - Id: 18807
+ AegisName: Yellow_Yuzu_Hat
+ Name: Yellow Yuzu Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 924
+ Script: |
+ bonus bVit,2;
+ bonus bLuk,3;
+ bonus2 bSubRace,RC_Plant,10;
+ - Id: 18808
+ AegisName: Wing_Form_Spectacle
+ Name: Wing Form Spectacle
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ Refineable: true
+ View: 925
+ Script: |
+ bonus bAgi,1;
+ - Id: 18810
+ AegisName: Hell_Pumpkin_Hat
+ Name: Hell Pumpkin Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 12
+ Locations:
+ Head_Top: true
+ 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;
+ - Id: 18813
+ AegisName: New_Wave_Sunglasses
+ Name: New Wave Sunglasses
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 856
+ Script: |
+ bonus bDelayrate,-10;
+ - Id: 18814
+ AegisName: Angel_School_Cap
+ Name: Angel School Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 927
+ Script: |
+ bonus bInt,2;
+ bonus bVit,1;
+ - Id: 18815
+ AegisName: Devil_School_Cap
+ Name: Devil School Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 928
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ - Id: 18816
+ AegisName: Adv_Angel_School_Cap
+ Name: Evoked Angel School Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 929
+ Script: |
+ bonus bInt,2;
+ bonus bVit,2;
+ bonus bLuk,1;
+ - Id: 18817
+ AegisName: Adv_Devil_School_Cap
+ Name: Evoked Devil School Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 930
+ Script: |
+ bonus bStr,2;
+ bonus bVit,2;
+ bonus bLuk,1;
+ - Id: 18818
+ AegisName: Red_Pencil_In_Mouth
+ Name: Red Pencil In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 931
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bHit,3;
+ - Id: 18819
+ AegisName: Blue_Pencil_In_Mouth
+ Name: Blue Pencil In Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ View: 932
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bHit,3;
+ - Id: 18820
+ AegisName: Gray_Helmet
+ Name: Gray Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 450
+ Defense: 35
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 120
+ Refineable: true
+ View: 941
+ Script: |
+ bonus2 bSubEle,Ele_Holy,3+getrefine()/2;
+ - Id: 18821
+ AegisName: Rainbow_Feather_Deco
+ Name: Rainbow Feather Deco
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 934
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 935
+ Script: |
+ 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
+ Type: Armor
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 940
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddEle,Ele_Dark,10;
+ bonus2 bAddRace,RC_Demon,10;
+ - Id: 18828
+ AegisName: 2012RMSCNO1
+ Name: 2012 RWC Winners Helmet
+ Type: Armor
+ Buy: 1000
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 942
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 1000
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 943
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 1000
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 944
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,3;
+ bonus bMdef,5;
+ bonus bSpeedAddRate,10;
+ skill "AL_TELEPORT",1;
+ bonus bUnbreakableHelm;
+ - Id: 18831
+ AegisName: 2012RMSCNO4
+ Name: 2012 RWC Special Helmet
+ Type: Armor
+ Weight: 1000
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 95
+ View: 945
+ Script: |
+ bonus bAllStats,2;
+ bonus bMdef,5;
+ bonus bSpeedAddRate,10;
+ - Id: 18832
+ AegisName: Rolf_Von_Gigue_666
+ Name: Rolf Von Gigue 666
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 946
+ Script: |
+ bonus3 bAutoSpell,"BS_ADRENALINE",2,5;
+ - Id: 18839
+ AegisName: Poring_Sunglasses
+ Name: Poring Sunglasses
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 954
+ Script: |
+ bonus bDex,1;
+ - Id: 18841
+ AegisName: Small_Poring_Band
+ Name: Small Poring Band
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 955
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>9)
+ bonus bAspd,1;
+ bonus2 bExpAddRace,RC_All,3;
+ - Id: 18842
+ AegisName: Hat_Of_Girl
+ Name: Hat Of Girl
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 956
+ Script: |
+ .@r = getrefine();
+ bonus bInt,2*(.@r/3);
+ bonus2 bSubRace,RC_DemiHuman,7;
+ bonus2 bSubRace,RC_Player_Human,7;
+ bonus bMaxHPrate,-3;
+ - Id: 18843
+ AegisName: Small_Deviling_Hat
+ Name: Small Deviling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 957
+ Script: |
+ .@r = getrefine();
+ if (.@r>7)
+ bonus bMaxHPrate,.@r-7;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 18844
+ AegisName: Blue_Poring_Bubble
+ Name: Blue Poring Bubble
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 5
+ Locations:
+ Head_Low: true
+ View: 958
+ Script: |
+ bonus bAllStats,2;
+ bonus bUnbreakableHelm;
+ bonus bFlee2,2;
+ - Id: 18845
+ AegisName: Banshee_Master_Kiss
+ Name: Banshee Master Kiss
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Low: true
+ View: 959
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bMaxSPrate,3;
+ autobonus2 "{ bonus2 bSubRace,RC_Player_Doram,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 18846
+ AegisName: Seagod_Protector
+ Name: Seagod Protector
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 960
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,5;
+ - Id: 18847
+ AegisName: Jolly_Roger
+ Name: Jolly Roger
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 962
+ Script: |
+ bonus bVit,1;
+ bonus2 bSubDefEle,Ele_Water,2;
+ bonus2 bAddEle,Ele_Water,2;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus2 bAddEle,Ele_Water,3;
+ }
+ if (.@r>8) {
+ bonus2 bSubDefEle,Ele_Water,3;
+ }
+ - Id: 18848
+ AegisName: Lush_Rose
+ Name: Lush Rose
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ MagicAttack: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 963
+ Script: |
+ bonus bMagicHPGainValue,100;
+ bonus bMatk,20+(getrefine()*5);
+ bonus2 bHPLossRate,50,5000;
+ - Id: 18849
+ AegisName: Celines_Ribbon
+ Name: Celines Ribbon
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 967
+ Script: |
+ bonus bDex,3;
+ bonus bMagicHPGainValue,200;
+ bonus bMatk,40+(getrefine()*7);
+ bonus2 bHPLossRate,50,5000;
+ - Id: 18850
+ AegisName: Polar_Bear_Cap
+ Name: Polar Bear Cap
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 7
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 966
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMdef,3;
+ bonus bHPrecovRate,5;
+ bonus bSPrecovRate,3;
+ bonus2 bAddMonsterDropItem,12354,100;
+ - Id: 18851
+ AegisName: ValentineHeart
+ Name: Valentine Heart
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 397
+ Script: |
+ bonus bMaxHPrate,5+(getrefine()/2);
+ bonus bAllStats,7;
+ - Id: 18852
+ AegisName: Berry_Hat_Decoration
+ Name: Tasty Strawberry Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 968
+ Script: |
+ bonus bAllStats,1;
+ if (getrefine()>11)
+ bonus bAspd,2;
+ - Id: 18853
+ AegisName: Berry_Hat_Decoration_
+ Name: Tasty Strawberry Hat
+ Type: Armor
+ Buy: 20
+ Weight: 150
+ Defense: 4
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 968
+ Script: |
+ bonus bAllStats,1;
+ if (getrefine()>11)
+ bonus bAspd,2;
+ - Id: 18854
+ AegisName: ValentineYellowHeart
+ Name: Yellow Valentine Heart
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 865
+ Script: |
+ bonus bMaxSPrate,2+(getrefine()/2);
+ bonus bAllStats,7;
+ - Id: 18855
+ AegisName: Aviator_Hat
+ Name: Aviator Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 972
+ Script: |
+ bonus bAgi,3;
+ bonus bInt,3;
+ autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL;
+ - Id: 18856
+ AegisName: W_King_Tiger_Doll_Hat
+ Name: W King Tiger Doll Hat
+ Type: Armor
+ Buy: 10
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 973
+ Script: |
+ bonus bStr,2;
+ bonus bDex,2;
+ bonus2 bAddRace,RC_Brute,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ .@r = getrefine();
+ autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*max(1,getrefine()); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }";
+ autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*max(1,getrefine()); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }";
+ - Id: 18857
+ AegisName: Curupira_Hat
+ Name: Curupira Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 974
+ Script: |
+ bonus bDex,3;
+ bonus2 bAddEffWhenHit,Eff_Confusion,600;
+ - Id: 18858
+ AegisName: Pink_Angeling_Bubble
+ Name: Pink Angeling Bubble
+ Type: Armor
+ Buy: 10
+ Weight: 50
+ Defense: 5
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 975
+ Script: |
+ bonus bAspd,1;
+ bonus bMaxHP,200;
+ - Id: 18859
+ AegisName: Angeling_Bubble
+ Name: Angeling Bubble
+ Type: Armor
+ Buy: 10
+ Weight: 50
+ Defense: 5
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 976
+ Script: |
+ bonus bDex,1;
+ bonus bMatkRate,2;
+ bonus bMaxHP,100;
+ - Id: 18860
+ AegisName: Red_Flower_Hat
+ Name: Red Flower Hat
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1033
+ Script: |
+ bonus bDex,5;
+ bonus2 bSubDefEle,Ele_Earth,3;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ if (getrefine() >= 12) {
+ bonus bShortWeaponDamageReturn,5;
+ }
+ - Id: 18861
+ AegisName: Zaha_Doll_Hat_J
+ Name: Zaha Doll J Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 461
+ Script: |
+ bonus bHealPower,15;
+ bonus bUseSPrate,15;
+ - Id: 18863
+ AegisName: Exorcist_Robe
+ Name: Exorcist Robe
+ Type: Armor
+ Buy: 10
+ Weight: 1700
+ Defense: 57
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ .@r = getrefine();
+ if (.@r >= 3) {
+ bonus2 bSubRace,RC_Demon,.@r/3*5;
+ }
+ if (BaseClass == Job_Acolyte)
+ bonus2 bSubEle,Ele_Dark,10;
+ - Id: 18864
+ AegisName: Earth_Goddess_Flower_J
+ Name: Earth Goddess Flower
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Defense: 6
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 864
+ Script: |
+ bonus bVit,2;
+ skill "WZ_EARTHSPIKE",5;
+ bonus2 bSubEle,Ele_Earth,15;
+ .@r = getrefine();
+ if (.@r>=8) {
+ bonus2 bSubEle,Ele_Earth,5;
+ }
+ - Id: 18865
+ AegisName: Sword_Master_Crown
+ Name: Sword Master Crown
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 30
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 981
+ Script: |
+ .@i = BaseLevel;
+ bonus bBaseAtk,(.@i>150)?(15):((.@i>100)?(10):((.@i>50)?(5):(0)));
+ if (getskilllv("SM_SWORD") == 10)
+ bonus bHit,10;
+ if (getskilllv("SM_TWOHAND") == 10)
+ bonus bUseSPrate,-5;
+ if (getskilllv("AM_AXEMASTERY") == 10)
+ bonus bVariableCastrate,-5;
+ if (getskilllv("AS_KATAR") == 10)
+ bonus bCritAtkRate,20;
+ if (getskilllv("PR_MACEMASTERY") == 10)
+ bonus bAspdRate,10;
+ - Id: 18867
+ AegisName: Vajra
+ Name: Vajra
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 48
+ View: 983
+ Script: |
+ bonus bDex,1;
+ bonus bLongAtkRate,2;
+ - Id: 18868
+ AegisName: Assassin_Skull_Mask
+ Name: Assassin Skull Mask
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 984
+ Script: |
+ bonus bCritical,5;
+ - Id: 18870
+ AegisName: Very_Sweet_Candy_Bar
+ Name: Very Sweet Candy Bar
+ 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;
+ - 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;
+ - Id: 18872
+ AegisName: Snake_Hat
+ Name: Snake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 986
+ Script: |
+ bonus bStr,3;
+ bonus bInt,3;
+ bonus bMdef,5;
+ bonus bUnbreakableHelm;
+ - Id: 18873
+ AegisName: Sweet_Valentine_Out
+ Name: Sweet Valentine Out
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 865
+ Script: |
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus bMaxHPrate,.@r-3;
+ bonus bMaxSPrate,.@r-3;
+ }
+ bonus4 bAutoSpellWhenHit,"AL_BLESSING",10,50,0;
+ - Id: 18874
+ AegisName: One_Eyed_Glass_
+ Name: Cyclops Glasses
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 23
+ - Id: 18877
+ AegisName: Baron_Evil_Eye
+ Name: Baron's Evil Eye
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 989
+ Script: |
+ bonus bDelayrate,-5;
+ bonus bUseSPrate,5;
+ - Id: 18878
+ AegisName: Palace_Guard_Cap
+ Name: Palace Guard Cap
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 15
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 991
+ Script: |
+ .@r = max(5,getrefine());
+ bonus2 bSubEle,Ele_Neutral,.@r;
+ bonus bLongAtkDef,.@r;
+ bonus bUnbreakableHelm;
+ - Id: 18879
+ AegisName: Angry_Scorpion_Hat
+ Name: Angry Scorpion Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 995
+ Script: |
+ bonus bMdef,5;
+ - Id: 18880
+ AegisName: BLACKDEATHKING_GOLDEN
+ Name: Advanced Jao King Hat
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 175
+ Refineable: true
+ View: 996
+ Script: |
+ bonus bAllStats,3;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 18882
+ AegisName: Kannam_On_Head
+ Name: Kannam On Head
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1003
+ Script: |
+ bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,100;
+ .@r = min(15,getrefine())/3;
+ .@r = max(1,.@r);
+ bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r,100;
+ - Id: 18885
+ AegisName: Jejecap
+ Name: Jejecap
+ Type: Armor
+ Weight: 100
+ Defense: 8
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 1011
+ Script: |
+ bonus bStr,2;
+ bonus bInt,3;
+ bonus2 bSubRace,RC_DemiHuman,11;
+ bonus2 bSubRace,RC_Player_Human,11;
+ bonus2 bAddItemHealRate,522,70;
+ - Id: 18887
+ AegisName: Aqua_Bunny_Band
+ Name: Aqua Bunny Band
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1012
+ Script: |
+ bonus bVit,3;
+ .@r = getrefine();
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bVariableCastrate,-10;
+ else if (.@r>8) {
+ bonus bMatkRate,4;
+ bonus bMdef,5;
+ }
+ - Id: 18888
+ AegisName: Maroon_Bunny_Band
+ Name: Maroon Bunny Band
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1013
+ Script: |
+ bonus bInt,5;
+ bonus bLuk,5;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bVariableCastrate,-10;
+ else if (.@r>8) {
+ bonus2 bAddClass,Class_All,4;
+ bonus bMatkRate,4;
+ }
+ - Id: 18889
+ AegisName: Golden_Bunny_Band
+ Name: Golden Bunny Band
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1014
+ Script: |
+ bonus bAgi,5;
+ bonus bLuk,5;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ if (.@r>11)
+ bonus bVariableCastrate,-10;
+ else if (.@r>8) {
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ }
+ - Id: 18890
+ AegisName: Gray_Bunny_Band
+ Name: Gray Bunny Band
+ Type: Armor
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1015
+ Script: |
+ bonus bInt,5;
+ bonus bLuk,5;
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (.@r>11)
+ bonus bVariableCastrate,-10;
+ else if (.@r>8) {
+ bonus2 bAddClass,Class_All,4;
+ bonus bMatkRate,4;
+ }
+ - Id: 18891
+ AegisName: Husky_Hat
+ Name: Husky Hat
+ Type: Armor
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 1016
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3);
+ - Id: 18892
+ AegisName: Ufo_Poring_Hat
+ Name: Ufo Poring Hat
+ Type: Armor
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 1017
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ bonus bHit,5;
+ bonus bFlee2,5;
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus bDelayrate,-5;
+ bonus bAspdRate,5;
+ } else if (.@r>6)
+ bonus bVariableCastrate,-5;
+ - Id: 18893
+ AegisName: Dragon_Claw_Helm
+ Name: Dragon Claw Helm
+ Type: Armor
+ Weight: 1000
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 1018
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,8;
+ bonus2 bSubRace,RC_Player_Human,8;
+ bonus2 bSubRace,RC_Dragon,8;
+ bonus2 bAddItemGroupHealRate,IG_Meat,200;
+ if (getrefine()>11) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,3;
+ }
+ - Id: 18894
+ AegisName: Rainbow_Star
+ Name: Rainbow Star
+ Type: Armor
+ Weight: 500
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1019
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 18895
+ AegisName: Celestial_Dark_Flame
+ Name: Celestial Dark Flame
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 1008
+ Script: |
+ bonus2 bSubEle,Ele_Fire,8;
+ - Id: 18896
+ AegisName: Pterios_Fins
+ Name: Pterios Fins
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 1009
+ Script: |
+ bonus2 bSubEle,Ele_Fire,8;
+ - Id: 18897
+ AegisName: Azure_Diadem
+ Name: Azure Diadem
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 1010
+ Script: |
+ bonus2 bSubEle,Ele_Water,8;
+ - Id: 18898
+ AegisName: Yggdrasil_Herald_Crown
+ Name: Yggdrasil Herald Crown
+ Type: Armor
+ Weight: 200
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 997
+ Script: |
+ bonus bAllStats,5;
+ bonus bMaxHP,100;
+ bonus bMaxSP,50;
+ .@r = getrefine();
+ .@rate = max(.@r,7)-7;
+ if (.@rate) {
+ bonus bMaxHPrate,.@rate;
+ bonus bVariableCastrate,-.@rate;
+ }
+ - Id: 18900
+ AegisName: Weisswurst
+ Name: Weisswurst
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 60
+ View: 1022
+ Script: |
+ bonus bMaxHP,50;
+ - Id: 18901
+ AegisName: Seppl_Hat
+ Name: Seppl Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 60
+ View: 1023
+ Script: |
+ bonus bVit,3;
+ bonus bHPrecovRate,10;
+ - Id: 18902
+ AegisName: Shovel_Hat
+ Name: Shovel Hat
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 1024
+ Script: |
+ bonus bVit,3;
+ bonus2 bAddMonsterDropItem,553,500;
+ bonus2 bAddItemHealRate,553,700;
+ - Id: 18908
+ AegisName: Isabella_Red_Ear
+ Name: Isabella Red Ear
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1030
+ Script: |
+ bonus bStr,5;
+ bonus bMaxHPrate,5;
+ bonus2 bSubDefEle,Ele_Fire,10;
+ .@r = getrefine();
+ if (.@r>=9)
+ bonus bAspd,1+(.@r-9)/2;
+ - Id: 18909
+ AegisName: Isabella_Brown_Ear
+ Name: Isabella Brown Ear
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1031
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bMatk,getrefine()*2;
+ - Id: 18910
+ AegisName: Isabella_Blue_Ear
+ Name: Isabella Blue Ear
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1032
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddSize,Size_Medium,10;
+ if (getrefine()>=12) {
+ bonus bShortWeaponDamageReturn,5;
+ }
+ - Id: 18917
+ AegisName: LoveLove_Balloon
+ Name: LoveLove Balloon
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1039
+ Script: |
+ bonus bAllStats,1;
+ bonus bUnbreakableHelm;
+ - Id: 18918
+ AegisName: Long_Octopus_Balloon
+ Name: Long Octopus Balloon
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 5
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1040
+ Script: |
+ bonus bVit,1;
+ bonus bInt,1;
+ bonus bMaxSP,30;
+ bonus bUnbreakableHelm;
+ - Id: 18925
+ AegisName: GodOfWinds_Fan
+ Name: GodOfWinds Fan
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Low: true
+ View: 1051
+ Script: |
+ bonus2 bSkillAtk,"WZ_VERMILION",3;
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3;
+ bonus bUseSPrate,5;
+ - Id: 18929
+ AegisName: Elephant_Model_Hat
+ Name: Elephant Model Hat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1065
+ Script: |
+ .@r = getrefine();
+ bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0));
+ bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,5;
+ - Id: 18930
+ AegisName: Gorilla_Model_Hat
+ Name: Gorilla Model Hat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1066
+ Script: |
+ bonus bStr,2;
+ .@m = gettime(DT_MONTH);
+ if (.@m == 1 || .@m == 2) {
+ bonus bStr,2;
+ bonus bVit,2;
+ }
+ bonus4 bAutoSpell,"KN_BOWLINGBASH",1,20,1;
+ if (getrefine()>10) {
+ bonus bStr,3;
+ }
+ - Id: 18931
+ AegisName: Lion_Model_Hat
+ Name: Lion Model Hat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1067
+ Script: |
+ .@r = getrefine();
+ bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0));
+ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,5;
+ - Id: 18932
+ AegisName: Rhino_Model_Hat
+ Name: Rhino Model Hat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1068
+ Script: |
+ .@r = getrefine();
+ bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0);
+ bonus3 bAutoSpellWhenHit,"WZ_VERMILION",5,5;
+ - Id: 18933
+ AegisName: Mechanical_Plant_Hat
+ Name: Mechanical Plant Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 45
+ Refineable: true
+ View: 1069
+ Script: |
+ .@r = getrefine()/2;
+ bonus bDex,2;
+ bonus bMdef,7;
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r);
+ - Id: 18934
+ AegisName: Fox_Ears_Bell_Ribbon
+ Name: Fox Ears Bell Ribbon
+ Type: Armor
+ Weight: 400
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1070
+ Script: |
+ bonus bAgi,2;
+ bonus bAspdRate,10;
+ .@r = getrefine();
+ autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }";
+ - Id: 18936
+ AegisName: Golden_Fish
+ Name: Golden Fish In Mouth
+ Type: Armor
+ Buy: 1
+ Weight: 10
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1081
+ Script: |
+ bonus bAllStats,2;
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ bonus2 bExpAddRace,RC_Fish,2;
+ bonus2 bSubRace,RC_Fish,2;
+ - Id: 18937
+ AegisName: Memories_Of_Lovers
+ Name: Memories Of Lovers
+ Type: Armor
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ Refineable: true
+ View: 1072
+ Script: |
+ bonus bMdef,7;
+ bonus bMaxHPrate,2;
+ - Id: 18938
+ AegisName: Astro_Circle
+ Name: Astro Circle
+ Type: Armor
+ Weight: 300
+ Defense: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 1073
+ Script: |
+ bonus bInt,1;
+ .@r = getrefine();
+ if (.@r>6) {
+ .@t = ((.@r-6)*2);
+ }
+ bonus2 bSubSkill,"WZ_METEOR",20+.@t;
+ bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t;
+ bonus2 bSubSkill,"WL_COMET",5;
+ bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5;
+ - Id: 18940
+ AegisName: 10_Gallon_Hat_Of_Flame
+ Name: 10 Gallon Hat Of Flame
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1075
+ - Id: 18947
+ AegisName: Pipe_Of_Jiraiya
+ Name: Jiraiya's Pipe
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 1088
+ Script: |
+ bonus2 bSkillUseSP,"NJ_KOUENKA",-5;
+ bonus2 bVariableCastrate,"NJ_KAENSIN",-10;
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",20;
+ - Id: 18948
+ AegisName: Mask_Of_Orochimaru
+ Name: Orochimaru's Mask
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 1089
+ Script: |
+ bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5;
+ bonus2 bVariableCastrate,"NJ_SUITON",-10;
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20;
+ - Id: 18949
+ AegisName: Scroll_Of_Tsunade
+ Name: Tsunade's Scroll
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 70
+ View: 1090
+ Script: |
+ 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
+ Type: Armor
+ Buy: 10
+ Weight: 10
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1104
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ if (readparam(bStr) >= 90) {
+ bonus bBaseAtk,15;
+ if (.@r >= 9)
+ bonus bBaseAtk,15;
+ }
+ if (readparam(bInt) >= 90) {
+ bonus bMatk,15;
+ if (.@r >= 9)
+ bonus bMatk,15;
+ }
+ if (readparam(bVit) >= 90) {
+ bonus bMaxHP,500;
+ if (.@r >= 9)
+ bonus bMaxHP,500;
+ }
+ if (readparam(bAgi) >= 90) {
+ bonus bAspdRate,2;
+ if (.@r >= 9)
+ bonus bAspdRate,3;
+ }
+ if (readparam(bDex) >= 90) {
+ bonus bLongAtkRate,3;
+ if (.@r >= 9)
+ bonus bLongAtkRate,3;
+ }
+ if (readparam(bLuk) >= 90) {
+ bonus bCritical,5;
+ if (.@r >= 9)
+ bonus bCritical,5;
+ }
+ - Id: 18970
+ AegisName: Magical_Moon_Cat
+ Name: Magical Moon Cat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1308
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "ALL_CATCRY",1;
+ bonus bAllStats,3;
+ bonus bDelayrate,-5-(getrefine()/2);
+ bonus bVariableCastrate,-5-(getrefine()/2);
+ - Id: 18971
+ AegisName: Old_Rune_Circlet
+ Name: Old Rune Circlet
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 623
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus bAspd,.@r/5;
+ bonus bMaxHPrate,.@r/2;
+ bonus bMaxSPrate,.@r/2;
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",20*.@r/2;
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15*.@r/2;
+ - Id: 18972
+ AegisName: Old_Mitra
+ Name: Old Mitra
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 624
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ bonus bMatk,2*.@r;
+ bonus bBaseAtk,4*.@r;
+ bonus bHealPower,2*.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"AB_JUDEX",20*(.@r/2);
+ bonus2 bSkillAtk,"PR_MAGNUS",10*(.@r/2);
+ - Id: 18973
+ AegisName: Old_Driver_Band_R
+ Name: Old Driver Band
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 626
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bBaseAtk,4*.@r;
+ bonus bAspd,(.@r/5);
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"NC_POWERSWING",20*(.@r/2);
+ bonus2 bSkillAtk,"NC_AXETORNADO",20*(.@r/2);
+ - Id: 18974
+ AegisName: Old_Driver_Band_Y
+ Name: Old Driver Band(Yellow)
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 637
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bBaseAtk,4*.@r;
+ bonus bAspd,(.@r/5);
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"NC_ARMSCANNON",15*(.@r/2);
+ bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4);
+ - Id: 18975
+ AegisName: Old_Shadow_Handicraft
+ Name: Old Shadow Handicraft
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 627
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bMatk,4*.@r;
+ bonus bBaseAtk,4*.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*(.@r/2);
+ if (.@r>=6) {
+ bonus2 bSkillCooldown,"SC_ENERVATION",-1000;
+ bonus2 bSkillCooldown,"SC_UNLUCKY",-1000;
+ if (.@r>=8) {
+ bonus2 bSkillCooldown,"SC_LAZINESS",-1000;
+ bonus2 bSkillCooldown,"SC_WEAKNESS",-1000;
+ if (.@r>=10) {
+ bonus2 bSkillCooldown,"SC_IGNORANCE",-1000;
+ bonus2 bSkillCooldown,"SC_GROOMY",-1000;
+ }
+ }
+ }
+ - Id: 18976
+ AegisName: Old_Minstrel_Song_Hat
+ Name: Old Minstrel Song's Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 628
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bLongAtkRate,.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20*(.@r/2);
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15*(.@r/2);
+ - Id: 18977
+ AegisName: Old_Midas_Whisper
+ Name: Old Midas Whisper
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 629
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bBaseAtk,4*.@r;
+ bonus bLongAtkRate,(.@r/2);
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"GN_CARTCANNON",15*(.@r/2);
+ - Id: 18978
+ AegisName: Old_Magic_Stone_Hat
+ Name: Old Magic Stone Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 630
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bSPrecovRate,20;
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ bonus bMatkRate,.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"WL_SOULEXPANSION",15*(.@r/2);
+ bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100);
+ - Id: 18979
+ AegisName: Old_Blazing_Soul
+ Name: Old Blazing Soul
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 631
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bCritical,2*.@r;
+ bonus bBaseAtk,4*.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*(.@r/2);
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*(.@r/2);
+ - Id: 18980
+ AegisName: Old_Wind_Whisper
+ Name: Old Wind Whisper
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 633
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ bonus bMatkRate,.@r;
+ bonus bBaseAtk,4*.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2);
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2);
+ - Id: 18981
+ AegisName: Old_Dying_Swan
+ Name: Old Dying Swan
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 635
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bLongAtkRate,.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20*(.@r/2);
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15*(.@r/2);
+ - Id: 18982
+ AegisName: Old_Circlet_Of_Bone
+ Name: Old Circlet Of Bones
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 1141
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bCritAtkRate,.@r;
+ bonus bAspdRate,.@r;
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",15*(.@r/2);
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*(.@r/2);
+ - Id: 18983
+ AegisName: Old_Protect_Of_Crown
+ Name: Old Protect Of Crown
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 1140
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bMdef,5;
+ bonus bBaseAtk,4*.@r;
+ bonus bAspd,(.@r/5);
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",20*(.@r/2);
+ bonus2 bSkillAtk,"LG_OVERBRAND",15*(.@r/2);
+ - Id: 18984
+ AegisName: Old_Camo_RabbitHood
+ Name: Old Camouflage Rabbit Hood
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ View: 1142
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,1;
+ bonus bLongAtkRate,.@r;
+ bonus bFlee2,(.@r/3);
+ bonus bMaxHPrate,(.@r/2);
+ bonus bMaxSPrate,(.@r/2);
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",15*(.@r/2);
+ bonus2 bSkillAtk,"RA_WUGSTRIKE",10*(.@r/2);
+ - Id: 18985
+ AegisName: Falconer_Flute
+ Name: Falconer Flute
+ Type: Armor
+ Weight: 100
+ Jobs:
+ Hunter: true
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 75
+ View: 1143
+ Script: |
+ set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1);
+ set .@luk,min(readparam(bLuk),120);
+ bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2);
+ - Id: 18987
+ AegisName: RWC13_Jormungandr_Hat
+ Name: RWC13 Jormungandr Hat
+ Type: Armor
+ Buy: 20
+ Weight: 2500
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1149
+ Script: |
+ bonus bAllStats,2;
+ bonus bVariableCastrate,-5;
+ bonus bDelayrate,-5;
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ .@r = getrefine();
+ if (.@r>6) {
+ bonus2 bAddItemHealRate,11596,20;
+ bonus bAspd,1;
+ }
+ if (.@r>9) {
+ bonus bVariableCastrate,-5;
+ bonus bDelayrate,-5;
+ }
+ bonus2 bAddItemHealRate,11596,150;
+ EquipScript: |
+ sc_end SC_SpeedUp0;
+ - Id: 18997
+ AegisName: Riot_Chip
+ Name: Runaway Chip
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1201
+ Script: |
+ bonus bHit,50;
+ bonus bFlee,50;
+ bonus bMaxSPrate,-50;
+ - Id: 19019
+ AegisName: Elemental_Crown
+ Name: Elemental Crown
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1219
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,4;
+ bonus bDex,(3+(BaseLevel>99?.@r:.@r/2));
+ - Id: 19020
+ AegisName: Survive_Circlet
+ Name: Survive Circlet
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1220
+ Script: |
+ .@r = getrefine();
+ bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2));
+ bonus bMatkRate,4;
+ - Id: 19021
+ AegisName: Gigant_Helm
+ Name: Gigant Helm
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1221
+ Script: |
+ .@r = getrefine();
+ bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2));
+ bonus2 bAddClass,Class_All,4;
+ - Id: 19022
+ AegisName: Floating_Stone_Of_Int
+ Name: Floating Stone Of Intelligence
+ Type: Armor
+ Locations:
+ Head_Top: true
+ View: 1230
+ EquipScript: |
+ sc_start SC_FSTONE,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_FSTONE;
+ - Id: 19024
+ AegisName: Protect_Feathers
+ Name: Protect Feathers
+ Type: Armor
+ Weight: 500
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1232
+ Script: |
+ bonus2 bSubRace,RC_Player_Doram,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus bAspdRate,5;
+ .@vit = readparam(bVit);
+ if (.@vit >= 108) {
+ bonus2 bSubRace,RC_Player_Doram,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ bonus bAspdRate,5;
+ if (.@vit >= 120) {
+ bonus bMaxHPRate,3;
+ bonus bMdef,3;
+ }
+ }
+ - Id: 19026
+ AegisName: Aegir_Helm
+ Name: Aegir Helm
+ Type: Armor
+ Buy: 10
+ Weight: 800
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 870
+ Script: |
+ bonus bVit,3;
+ - Id: 19030
+ AegisName: Pretty_Rabbit_Hood
+ Name: Pretty Rabbit Hood
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1085
+ Script: |
+ bonus bMaxHP,(15*BaseLevel);
+ - Id: 19031
+ AegisName: Fallen_Angel_Blessing
+ Name: Fallen Angel Blessing
+ Type: Armor
+ Weight: 200
+ Defense: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 1250
+ Script: |
+ bonus2 bAddRace,RC_Angel,5;
+ bonus2 bSubRace,RC_Angel,5;
+ - Id: 19033
+ AegisName: Rift_Ancient_Decoration
+ Name: Rift Ancient Decoration
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 376
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0);
+ - Id: 19038
+ AegisName: 12_Anniversary_Crown_Of_Saint
+ Name: 12 Anniversary Crown of Saint
+ Type: Armor
+ Buy: 10
+ Weight: 120
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1117
+ Script: |
+ bonus bAllStats,2;
+ bonus bMdef,12;
+ - Id: 19039
+ AegisName: 12th_ElvenEars
+ Name: 12 Anniversary Elf Ears
+ Type: Armor
+ Buy: 10
+ Weight: 120
+ Locations:
+ Head_Mid: true
+ Refineable: true
+ View: 875
+ Script: |
+ 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
+ Type: Armor
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 953
+ Script: |
+ bonus2 bSPGainRace,RC_Angel,5;
+ bonus bHPGainValue,100;
+ .@r = getrefine();
+ if (.@r >= 5) {
+ bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0);
+ }
+ - Id: 19048
+ AegisName: Elemental_Clothe
+ Name: Elemental Clothes
+ Type: Armor
+ Weight: 500
+ Defense: 45
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0);
+ if (.@r >= 7)
+ bonus bUnbreakableArmor;
+ - Id: 19050
+ AegisName: Loki_Nidhogg_Hat
+ Name: Loki & Nidhoggur's Hat
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1304
+ - Id: 19051
+ AegisName: Warrior_Moon_Cat
+ Name: Warrior Moon Cat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1308
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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
+ Type: Armor
+ Buy: 10
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 568
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (Class == Job_Swordman || Class == Job_Thief || Class == Job_Merchant || Class == Job_Taekwon || Class == Job_Star_Gladiator || Class == Job_Star_Gladiator2)
+ bonus bAspd,1;
+ else if (Class == Job_Mage || Class == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) {
+ bonus bMatk,5;
+ bonus bHealPower,2;
+ } else if (Class == Job_Archer || Class == Job_Gunslinger)
+ bonus bLongAtkRate,2;
+ else if (Class == Job_Novice || Class == Job_SuperNovice) {
+ bonus bMaxHP,120;
+ bonus bMaxSP,60;
+ }
+ - Id: 19053
+ AegisName: Fighter_Moon_Cat
+ Name: Fighter Moon Cat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1308
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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);
+ - Id: 19079
+ AegisName: CelestialWoman_Flower
+ Name: Celestial Woman's Flower
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 438
+ Script: |
+ bonus bHPGainValue,100;
+ bonus bMdef,5;
+ bonus2 bSPGainRace,RC_Undead,5;
+ if (getrefine()>=5) {
+ bonus2 bSubRace,RC_Undead,5;
+ }
+ if (getrefine()>=7) {
+ bonus2 bSubRace,RC_Undead,5;
+ }
+ - Id: 19080
+ AegisName: NettyHeart_BalloonGum
+ Name: Nettie Heart Bubble Gum
+ Type: Armor
+ View: 720
+ Buy: 10
+ Weight: 200
+ Locations:
+ Head_Low: true
+ - Id: 19081
+ AegisName: Faceworm_Egg_Shell
+ Name: Faceworm Egg Shell
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1356
+ Script: |
+ bonus bHit,20;
+ bonus2 bAddRace2,RC2_FACEWORM,5;
+ bonus2 bMagicAddRace2,RC2_FACEWORM,5;
+ bonus2 bSubRace2,RC2_FACEWORM,5;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus2 bAddRace2,RC2_FACEWORM,10;
+ bonus2 bMagicAddRace2,RC2_FACEWORM,10;
+ bonus2 bSubRace2,RC2_FACEWORM,10;
+ }
+ if (.@r>=7) {
+ bonus2 bAddRace2,RC2_FACEWORM,15;
+ bonus2 bMagicAddRace2,RC2_FACEWORM,15;
+ bonus2 bSubRace2,RC2_FACEWORM,15;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace2,RC2_FACEWORM,20;
+ bonus2 bMagicAddRace2,RC2_FACEWORM,20;
+ bonus2 bSubRace2,RC2_FACEWORM,20;
+ }
+ - Id: 19082
+ AegisName: Bio_Protector
+ Name: Bio Protector
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1366
+ Script: |
+ bonus bHit,10;
+ bonus bVariableCastrate,-5;
+ bonus bPerfectHitRate,5;
+ - Id: 19083
+ AegisName: Mask_of_Hero
+ Name: Mask of Hero
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1367
+ Script: |
+ bonus bVit,10;
+ bonus bMdef,10;
+ bonus bShortWeaponDamageReturn,1;
+ - Id: 19084
+ AegisName: Parfait_V_Hat
+ Name: Parfaille Vigilante Hat
+ Type: Armor
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 20
+ Refineable: true
+ View: 1368
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,1;
+ bonus5 bAutoSpell,"AL_BLESSING",3,30,BF_WEAPON|BF_MAGIC,0;
+ - Id: 19085
+ AegisName: Sigrun's_Wings_
+ Name: Sigrun's Wings
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ 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;
+ }
+ - Id: 19086
+ AegisName: Robo_Eye_
+ Name: Robo Eye
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 345
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ bonus bMatkRate,1;
+ bonus bDex,1;
+ - Id: 19087
+ AegisName: Angel_Spirit_
+ Name: Angel Spirit
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 394
+ Script: |
+ bonus bStr,1;
+ bonus bHit,8;
+ - Id: 19088
+ AegisName: Binoculars_
+ Name: Binoculars
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Jobs:
+ Archer: true
+ BardDancer: true
+ Hunter: true
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 50
+ View: 83
+ Script: |
+ bonus bDex,1;
+ - Id: 19089
+ AegisName: Blinker_
+ Name: Blinker
+ Type: Armor
+ Buy: 1500
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 82
+ Script: |
+ bonus2 bResEff,Eff_Blind,5000;
+ - Id: 19090
+ AegisName: Alarm_Mask_
+ Name: Alarm Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 170
+ Script: |
+ bonus2 bResEff,Eff_Blind,2500;
+ - Id: 19091
+ AegisName: Opera_Ghost_Mask_
+ Name: Opera Phantom Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 2
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 20
+ View: 128
+ - Id: 19092
+ AegisName: Machoman_Glasses_
+ Name: Machoman's Glasses
+ Type: Armor
+ Buy: 36000
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 92
+ - Id: 19093
+ AegisName: Spinning_Eyes_
+ Name: Geek Glasses
+ Type: Armor
+ Buy: 20000
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 27
+ Script: |
+ bonus2 bResEff,Eff_Blind,800;
+ - Id: 19094
+ AegisName: Mr_Smile_
+ Name: Mr. Smile
+ Type: Armor
+ Buy: 60
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ View: 65
+ - Id: 19095
+ AegisName: Happy_Balloon_K
+ Name: Happy Balloon
+ Type: Armor
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1289
+ Script: |
+ bonus2 bDropAddRace,RC_All,10;
+ bonus2 bExpAddRace,RC_All,5;
+ - Id: 19096
+ AegisName: Special_Kapra_Hat
+ Name: Special Kafra Hat
+ Type: Armor
+ View: 581
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,130*.@r;
+ bonus bMaxSP,13*.@r;
+ if (.@r>=10) {
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ }
+ - Id: 19097
+ AegisName: Ribbon_Piamat_K
+ Name: Piamette Ribbon
+ Type: Armor
+ View: 1403
+ Weight: 100
+ Defense: 1
+ Locations:
+ Head_Low: true
+ Script: |
+ bonus bMdef,1;
+ bonus bVit,1;
+ - Id: 19098
+ AegisName: Piamette_Hood
+ Name: Piamette Hood
+ Type: Armor
+ View: 1087
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ bonus2 bMagicAddRace,RC_DemiHuman,10;
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ if (getrefine()>=12) {
+ bonus bNoSizeFix;
+ }
+ - Id: 19101
+ AegisName: Glastheim_Onlooker
+ Name: Glastheim Observer
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 1041
+ Script: |
+ bonus2 bAddRace,RC_All,2;
+ bonus bDelayrate,-5;
+ - Id: 19102
+ AegisName: Pale_Moon_Hat
+ Name: Pale Moon Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 913
+ Script: |
+ bonus bFlee,20;
+ bonus2 bAddRace2,RC2_THANATOS,5;
+ bonus2 bSubRace2,RC2_THANATOS,5;
+ bonus2 bMagicAddRace2,RC2_THANATOS,5;
+ if (getrefine()>4) {
+ bonus2 bAddRace2,RC2_THANATOS,10;
+ bonus2 bSubRace2,RC2_THANATOS,10;
+ bonus2 bMagicAddRace2,RC2_THANATOS,10;
+ }
+ if (getrefine()>6) {
+ bonus2 bAddRace2,RC2_THANATOS,15;
+ bonus2 bSubRace2,RC2_THANATOS,15;
+ bonus2 bMagicAddRace2,RC2_THANATOS,15;
+ }
+ if (getrefine()>8) {
+ bonus2 bAddRace2,RC2_THANATOS,20;
+ bonus2 bSubRace2,RC2_THANATOS,20;
+ bonus2 bMagicAddRace2,RC2_THANATOS,20;
+ }
+ /* skill 3044,1; */
+ - Id: 19109
+ AegisName: Valhalla_Idol
+ Name: Valhalla Idol
+ Type: Armor
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1423
+ Script: |
+ bonus bMaxSP,50;
+ bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0;
+ hateffect(HAT_EF_VALHALLA_IDOL,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_VALHALLA_IDOL,false);
+ - Id: 19111
+ AegisName: Laser_Of_Eagle
+ Name: Laser of Eagle
+ Type: Armor
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1424
+ Script: |
+ bonus bDex,2;
+ bonus bLongAtkRate,10;
+ bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1;
+ /*TODO: Chance to transform become Shechil while attacking.*/
+ - Id: 19112
+ AegisName: Tengu_Scroll
+ Name: Tengu Scroll
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 40
+ View: 1445
+ Script: |
+ bonus2 bHPDrainRate,30,5;
+ - Id: 19114
+ AegisName: Sting_Silk_Ribbon
+ Name: Sting Silk Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 70
+ Refineable: true
+ View: 1457
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bSubEle,Ele_Earth,20;
+ if (getrefine()>4) {
+ bonus2 bSubSize,Size_All,2;
+ }
+ if (getrefine()>6) {
+ bonus2 bSubSize,Size_All,3;
+ }
+ - Id: 19115
+ AegisName: Republic_Hat
+ Name: Republic Hat
+ Type: Armor
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1458
+ Script: |
+ .@r = getrefine();
+ .@val = 6;
+ if (.@r >= 7) {
+ .@val += 2;
+ }
+ if (.@r >= 9) {
+ .@val += 4;
+ }
+ bonus bLongAtkRate,.@val;
+ - Id: 19116
+ AegisName: Red_Baby_Dragon
+ Name: Red Baby Dragon
+ Type: Armor
+ Weight: 700
+ Range: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1463
+ Script: |
+ .@r=getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15));
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15));
+ - Id: 19117
+ AegisName: Poring_Sunglasses_
+ Name: Poring Sunglasses
+ Type: Armor
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 954
+ Script: |
+ bonus2 bDropAddRace,RC_All,5;
+ bonus2 bExpAddRace,RC_All,5;
+ - Id: 19118
+ AegisName: Poring_Sunglasses__
+ Name: Poring Sunglasses
+ Type: Armor
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 954
+ Script: |
+ bonus2 bDropAddRace,RC_All,4;
+ bonus2 bExpAddRace,RC_All,4;
+ - Id: 19119
+ AegisName: Toughen_Time_Keeper_Hat
+ Name: Enhanced Time Keeper Hat
+ Type: Armor
+ View: 240
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAllStats,2;
+ bonus bVariableCastrate,-5;
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ bonus2 bSPDrainRate,30,3+(.@r/3);
+ bonus2 bHPDrainRate,10,1+(.@r/4);
+ - Id: 19125
+ AegisName: Cylinder_Hairband
+ Name: Cylinder Hairband
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1477
+ Script: |
+ bonus bStr,5;
+ bonus bInt,5;
+ bonus2 bVariableCastrate,"GN_CARTCANNON",-100;
+ bonus2 bSkillUseSP,"GN_CARTCANNON",30;
+ bonus2 bSkillUseSP,"GN_CART_TORNADO",5;
+ bonus2 bSkillAtk,"GN_CARTCANNON",10;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",5;
+ if (getrefine()>=5) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",20;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",10;
+ }
+ if (getrefine()>=8) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",30;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",20;
+ }
+ - Id: 19126
+ AegisName: Shadow_Booster_
+ Name: Magical Booster
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 873
+ Script: |
+ bonus bAspd,1;
+ bonus bDelayrate,-1;
+ - Id: 19127
+ AegisName: Zherlthsh_Mask_
+ Name: Zealotus Mask
+ Type: Armor
+ View: 200
+ Buy: 20
+ Weight: 400
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ - Id: 19128
+ AegisName: Ifrit's_Ear_
+ Name: Ears Of Ifrit
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ 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;
+ - Id: 19129
+ AegisName: Chick_Hat_
+ Name: Chick Hat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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;
+ - Id: 19130
+ AegisName: Magic_Eyes_
+ Name: Magic Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 3
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 54
+ Refineable: true
+ View: 209
+ Script: |
+ bonus bMdef,5;
+ bonus bVariableCastrate,-10;
+ bonus bUseSPrate,20;
+ - Id: 19131
+ AegisName: Radio_Antenna_
+ Name: Radio Antenna
+ Type: Armor
+ Weight: 1500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 347
+ Script: |
+ bonus bMdef,5;
+ bonus bCritical,5;
+ bonus bFlee,5;
+ skill "MG_LIGHTNINGBOLT",1;
+ bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;
+ - Id: 19132
+ AegisName: Masquerade_
+ Name: Masquerade
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Mid: true
+ View: 78
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ - Id: 19133
+ AegisName: Odin_Mask_
+ Name: Odin's Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 1
+ View: 480
+ Script: |
+ bonus2 bSubClass,Class_Boss,2;
+ - Id: 19134
+ AegisName: Wickebines_Black_Cat_Ears
+ Name: Wickebine's Black Cat Ears
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 368
+ Script: |
+ bonus bFlee,10;
+ bonus bCritAtkRate,10;
+ autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";
+ - Id: 19135
+ AegisName: Spirit_Of_Chung_E
+ Name: Spirit of Green Maiden
+ Type: Armor
+ View: 882
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bDropAddClass,Class_All,(.@r/2);
+ bonus2 bExpAddClass,Class_All,(.@r/2);
+ bonus bMaxHPrate,2*(.@r/4);
+ bonus bMaxSPrate,2*(.@r/4);
+ if (.@r>=9) {
+ bonus bHPrecovRate,40;
+ bonus bSPrecovRate,40;
+ }
+ if (.@r>=12) {
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ }
+ autobonus "{ bonus bCritAtkRate,30; bonus bMatkRate,30; }",1,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1519,5000; }";
+ - Id: 19136
+ AegisName: Spirit_Of_Chung_E_
+ Name: Spirit of Green Maiden
+ Type: Armor
+ View: 882
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bDropAddClass,Class_All,(.@r/2);
+ bonus2 bExpAddClass,Class_All,(.@r/2);
+ bonus bMaxHPrate,(.@r/4);
+ bonus bMaxSPrate,(.@r/4);
+ if (.@r>=9) {
+ bonus bHPrecovRate,40;
+ bonus bSPrecovRate,40;
+ }
+ if (.@r>=12) {
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ }
+ autobonus "{ bonus bCritAtkRate,30; bonus bMatkRate,30; }",1,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1519,5000; }";
+ - Id: 19137
+ AegisName: Strawberry_In_Mouth_
+ Name: Strawberry Mouth Guard
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 861
+ Script: |
+ bonus bVit,2;
+ bonus bLongAtkDef,5;
+ bonus bShortWeaponDamageReturn,5;
+ if (Baselevel>=100) {
+ bonus bMaxHP,2000;
+ }
+ else {
+ bonus bMaxHP,200;
+ }
+ - Id: 19138
+ AegisName: SeraphimCoronet
+ Name: Seraphim Coronet
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 70
+ View: 1487
+ Script: |
+ bonus bStr,2;
+ .@int = readparam(bInt);
+ bonus bBaseAtk,(.@int/8)*5;
+ bonus bHealPower,.@int/8;
+ bonus bVariableCastrate,.@int/8;
+ if (.@int>=108) {
+ bonus bBaseAtk,50;
+ bonus bHealPower,5;
+ bonus bVariableCastrate,4;
+ }
+ if (.@int>=120) {
+ bonus bBaseAtk,125;
+ bonus bHealPower,10;
+ bonus bVariableCastrate,6;
+ }
+ - Id: 19139
+ AegisName: SurviveOrb
+ Name: Survive Orb
+ Type: Armor
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 50
+ View: 1488
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatkRate,2;
+ bonus bVariableCastrate,-3;
+ - Id: 19140
+ AegisName: Squirrel_Ear_Hat
+ Name: Squirrel Ear Hat
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1486
+ Script: |
+ .@r = getrefine();
+ bonus bAspd,1;
+ bonus bCriticalLong,5;
+ bonus bCritAtkRate,10;
+ bonus2 bIgnoreDefRaceRate,RC_All,10;
+ if (.@r > 4) {
+ bonus bAspd,1;
+ bonus bCriticalLong,10;
+ bonus bCritAtkRate,2;
+ bonus2 bIgnoreDefRaceRate,RC_All,20;
+ }
+ if (.@r > 6) {
+ bonus bAspd,1;
+ bonus bCriticalLong,15;
+ bonus bCritAtkRate,6;
+ bonus2 bIgnoreDefRaceRate,RC_All,30;
+ }
+ if (.@r > 8) {
+ bonus bAspd,1;
+ bonus bCriticalLong,20;
+ bonus bCritAtkRate,12;
+ bonus2 bIgnoreDefRaceRate,RC_All,40;
+ autobonus "{ bonus bCritAtkRate,100; }",70,5000;
+ }
+ - Id: 19141
+ AegisName: Dolor_Thanatos_Mask
+ Name: Dolor Thanatos Mask
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 6
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ EquipLevelMin: 100
+ View: 666
+ Script: |
+ bonus bMdef,8;
+ bonus bAllStats,1;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,1;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ - Id: 19142
+ AegisName: Drooping_Rebellion
+ Name: Drooping Rebellion
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 1444
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 19143
+ AegisName: Poring_Balloon
+ Name: Poring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1426
+ Script: |
+ bonus2 bAddMonsterDropItem,909,2000;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19144
+ AegisName: Ferlock's_Hat
+ Name: Ferlock's Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ View: 1489
+ - Id: 19145
+ AegisName: Whistle
+ Name: Whistle
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1478
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ bonus bHPGainValue,10;
+ bonus bSPGainValue,3;
+ - Id: 19146
+ AegisName: Marin_Balloon
+ Name: Marin Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1430
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1427
+ Script: |
+ bonus bLuk,2;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19148
+ AegisName: Santa_Poring_Balloon
+ Name: Santa Poring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1428
+ Script: |
+ bonus2 bAddItemGroupHealRate,IG_Candy,200;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19149
+ AegisName: Poporing_Balloon
+ Name: Poporing Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1429
+ Script: |
+ bonus2 bAddEff,Eff_Poison,500;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19150
+ AegisName: Metalring_Balloon
+ Name: Metalring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1431
+ Script: |
+ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19151
+ AegisName: Devilring_Balloon
+ Name: Devilring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1434
+ Script: |
+ bonus2 bAddEff,Eff_Curse,500;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19152
+ AegisName: Angelring_Balloon
+ Name: Angelring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1435
+ Script: |
+ bonus2 bAddItemHealRate,504,100;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19153
+ AegisName: Ghostring_Balloon
+ Name: Ghostring Balloon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1436
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ View: 1437
+ Script: |
+ skill "ALL_RESURRECTION",1;
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19155
+ AegisName: Demons_Eyes
+ Name: Demon's Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 60
+ View: 1490
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,3;
+ bonus bFlee2,2;
+ - Id: 19156
+ AegisName: Lunar_Rainbow
+ Name: Lunar Rainbow
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 80
+ Refineable: true
+ View: 704
+ Script: |
+ bonus bAgi,3;
+ bonus bMdef,10;
+ bonus bMatk,(10*getrefine());
+ - Id: 19157
+ AegisName: Drooping_Rebellion_
+ Name: Drooping Rebellion
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1444
+ Script: |
+ bonus bAllStats,1;
+ bonus bUseSPrate,-10;
+ .@r = getrefine();
+ if (.@r >= 9) {
+ bonus bAspd,1;
+ }
+ if (.@r >= 12) {
+ bonus bSpeedRate,25;
+ }
+ bonus2 bExpAddRace,RC_All,5;
+ bonus2 bDropAddRace,RC_All,5;
+ - Id: 19158
+ AegisName: C_Gemini_Eyes
+ Name: Costume GeminiS58 Eyes Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 1456
+ - Id: 19159
+ AegisName: Barrel_Helm
+ Name: Barrel Helm
+ Type: Armor
+ Buy: 20
+ Weight: 420
+ Defense: 59
+ Slots: 1
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 60
+ Refineable: true
+ View: 1498
+ Script: |
+ bonus bVit,5;
+ bonus bHPrecovRate,-10;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bDef,100;
+ skill "CR_AUTOGUARD",1;
+ }
+ if (.@r >= 8) {
+ bonus2 bSubRace,RC_DemiHuman,10;
+ bonus2 bSubRace,RC_Player_Human,10;
+ if (BaseJob == Job_SuperNovice) {
+ skill "CR_AUTOGUARD",5;
+ }
+ }
+ - Id: 19162
+ AegisName: Scuba_Mask_
+ Name: Scuba Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 400
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ - Id: 19163
+ AegisName: CatharinaPawnBrad60
+ Name: Catherina Von Blood
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1529
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ if (.@r >= 9) {
+ bonus bAllStats,1;
+ if (.@r >= 12) {
+ bonus2 bRegenPercentSP,1,10000;
+ }
+ }
+ }
+ - Id: 19165
+ AegisName: Para_Team_Hat160
+ Name: Awakened Eden Group Hat II
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 160
+ Refineable: true
+ View: 1530
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bBaseAtk,15;
+ bonus bMatk,15;
+ if (.@r >= 9) {
+ bonus bAllStats,2;
+ if (.@r >= 12) {
+ bonus2 bRegenPercentHP,2,10000;
+ bonus2 bRegenPercentSP,1,10000;
+ }
+ }
+ }
+ - Id: 19166
+ AegisName: RO_Celebration_Hat
+ Name: RO Celebration Hat
+ Type: Armor
+ Buy: 20
+ Weight: 140
+ Defense: 14
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 14
+ Refineable: true
+ View: 1541
+ Script: |
+ bonus bMaxSP,140;
+ bonus2 bSPRegenRate,6,4000;
+ - Id: 19168
+ AegisName: Band_Of_Kafra_
+ Name: Kafra Staff Headband
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ 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;
+ - Id: 19169
+ AegisName: K_King_Tiger_Doll_Hat
+ Name: "[Katsua]Tiger King Doll Hat"
+ Type: Armor
+ View: 495
+ Buy: 20
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,2;
+ bonus bDex,2;
+ bonus2 bAddRace,RC_Brute,10;
+ 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_Knithat
+ Name: Magician Knit Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ View: 854
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ bonus2 bAddRace,RC_Undead,5;
+ bonus2 bMagicAddRace,RC_Undead,5;
+ bonus2 bSubRace,RC_Undead,2;
+ bonus bSPGainValue,5;
+ bonus bLongSPGainValue,5;
+ bonus bMagicSPGainValue,5;
+ if (.@r>=7) {
+ bonus bMdef,5;
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bMagicAddRace,RC_Undead,10;
+ bonus2 bSubRace,RC_Undead,3;
+ bonus bSPGainValue,10;
+ bonus bLongSPGainValue,10;
+ bonus bMagicSPGainValue,10;
+ }
+ if (.@r>=9) {
+ bonus bMdef,5;
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bMagicAddRace,RC_Undead,10;
+ bonus2 bSubRace,RC_Undead,5;
+ bonus bSPGainValue,10;
+ bonus bLongSPGainValue,10;
+ bonus bMagicSPGainValue,10;
+ }
+ - Id: 19172
+ AegisName: Sitting_Pope_Casual
+ Name: Sitting Pope Casual
+ Type: Armor
+ Buy: 1000
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1553
+ Script: |
+ bonus bInt,2;
+ bonus bDelayrate,-10;
+ .@r = getrefine();
+ if (.@r>=7)
+ bonus bDelayrate,-10;
+ if (.@r>=9)
+ bonus bDelayrate,-10;
+ - Id: 19173
+ AegisName: Floating_Ice
+ Name: Floating Ice
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 1562
+ Script: |
+ bonus2 bAddItemHealRate,536,100;
+ - Id: 19176
+ AegisName: Fallen_Angel_Blessing_
+ Name: Fallen Angel Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 10
+ View: 1250
+ Script: |
+ bonus2 bAddRace,RC_Angel,5;
+ bonus2 bSubRace,RC_Angel,5;
+ - Id: 19177
+ AegisName: Elemental_Crown_
+ Name: Elemental Crown
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1219
+ Script: |
+ .@r = getrefine();
+ bonus bDex,3 + (.@r/2);
+ bonus bLongAtkRate,4;
+ - Id: 19178
+ AegisName: Elemental_Crown__
+ Name: Elemental Crown
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1219
+ Script: |
+ .@r = getrefine();
+ bonus bDex,3 + (.@r/2);
+ bonus bLongAtkRate,4;
+ - Id: 19179
+ AegisName: Rabbit_Magic_Hat_
+ Name: Magic Rabit Hat
+ Type: Armor
+ Weight: 800
+ Defense: 4
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 497
+ Script: |
+ bonus bDex,1;
+ bonus bAgi,1;
+ bonus bMdef,1;
+ bonus bAspdRate,5;
+ bonus bDelayrate,-4;
+ - Id: 19180
+ AegisName: Anubis_Helm_
+ Name: Anubis Helm
+ Type: Armor
+ Buy: 20
+ Defense: 8
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ EquipLevelMin: 65
+ View: 485
+ Script: |
+ bonus bMdef,5;
+ bonus2 bSubClass,Class_Boss,10;
+ bonus bHealpower2,10;
+ bonus bAddItemHealRate,10;
+ - Id: 19181
+ AegisName: New_Wave_Sunglasses_
+ Name: New Wave Sunglasses
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 30
+ View: 856
+ Script: |
+ bonus bDelayrate,-5;
+ - Id: 19189
+ AegisName: Racing_Cap_MC
+ Name: Racing Cap (Mechanic)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*((.@r/3));
+ if (.@r>=8)
+ bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST");
+ if (.@r>=11) {
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ }
+ - Id: 19190
+ AegisName: Racing_Cap_GN
+ Name: Racing Cap (Geneticist)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY");
+ if (.@r>=11)
+ bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50;
+ /* Unknow Rates */
+ - Id: 19191
+ AegisName: Racing_Cap_GC
+ Name: Racing Cap (Guillotine Cross)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bCritAtkRate,5*getskilllv("AS_LEFT");
+ if (.@r>=11)
+ autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON;
+ /* Unknow Rate and Effect */
+ - Id: 19192
+ AegisName: Racing_Cap_SC
+ Name: Racing Cap (Shadow Chaser)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bMatk,5*getskilllv("RG_PLAGIARISM");
+ if (.@r>=11)
+ bonus3 bAutoSpell,"HW_MAGICPOWER",5,30;
+ /* Unknow Rates */
+ - Id: 19193
+ AegisName: Racing_Cap_WL
+ Name: Racing Cap (Warlock)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION"));
+ if (.@r>=11)
+ bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;
+ - Id: 19194
+ AegisName: Racing_Cap_SO
+ Name: Racing Cap (Sorcerer)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8) {
+ bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL");
+ bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL");
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"MG_FIREBOLT",50;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50;
+ }
+ - Id: 19195
+ AegisName: Racing_Cap_RK
+ Name: Racing Cap (Rune Knight)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN");
+ if (.@r>=11) {
+ bonus bUnbreakableWeapon;
+ skill "TF_DOUBLE",5;
+ bonus bDoubleRate,25;
+ }
+ - Id: 19196
+ AegisName: Racing_Cap_RG
+ Name: Racing Cap (Royal Guard)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY");
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000;
+ - Id: 19197
+ AegisName: Racing_Cap_AB
+ Name: Racing Cap (Archbishop)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",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)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH");
+ if (.@r>=11)
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",50;
+ - Id: 19199
+ AegisName: Racing_Cap_RA
+ Name: Racing Cap (Ranger)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW");
+ if (.@r>=11)
+ bonus bDelayrate,-15;
+ - Id: 19200
+ AegisName: Racing_Cap_MI
+ Name: Racing Cap (Minstrel)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON");
+ if (.@r>=11)
+ bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50;
+ /* Unknow rates*/
+ - Id: 19201
+ AegisName: Racing_Cap_WA
+ Name: Racing Cap (Wanderer)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON");
+ if (.@r>=11)
+ bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50;
+ /* Unknow rates*/
+ - Id: 19202
+ AegisName: Racing_Cap_GS
+ Name: Racing Cap (Gunslinger)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8) {
+ bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT");
+ bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT");
+ }
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"RL_C_MARKER",-1000;
+ - Id: 19203
+ AegisName: Racing_Cap_NJ
+ Name: Racing Cap (Ninja)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bLongAtkRate,getskilllv("NJ_HUUMA");
+ if (.@r>=11)
+ bonus2 bSkillAtk,"KO_HUUMARANKA",30;
+ - Id: 19204
+ AegisName: Racing_Cap_SN
+ Name: Racing Cap (Super Novice)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bCritAtkRate,10*getskilllv("TF_DOUBLE");
+ if (.@r>=11) {
+ bonus bAspd,1;
+ bonus bBaseAtk,20;
+ }
+ - Id: 19205
+ AegisName: Racing_Cap_SU
+ Name: Racing Cap (Summoner)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,5*(.@r/2);
+ bonus bMatk,5*.@r/2;
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8) {
+ bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT");
+ bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR");
+ bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP");
+ }
+ if (.@r>=11)
+ bonus bDelayrate,-15;
+ - Id: 19209
+ AegisName: Nurse_Cap_IL
+ Name: Illusion Nurse Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 4
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 64
+ Script: |
+ .@r = getrefine();
+ bonus bInt,(1+(.@r/2));
+ bonus bHealPower,(3*(.@r/2));
+ - Id: 19210
+ AegisName: Apple_Of_Archer_IL
+ Name: Illusion Apple of Archer
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 1
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ View: 72
+ Script: |
+ bonus bDex,(3+(getrefine()/2));
+ - Id: 19211
+ AegisName: Magical_Feather_K
+ Name: Magical Feather
+ Type: Armor
+ View: 1279
+ Buy: 20
+ Weight: 30
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUseSPrate,10*(.@r/3);
+ bonus2 bSkillAtk,"AL_HOLYLIGHT",100*(.@r/3);
+ if (.@r>=9) {
+ bonus2 bSubEle,Ele_Undead,17;
+ bonus2 bSubEle,Ele_Ghost,17;
+ bonus2 bSubEle,Ele_Poison,17;
+ bonus2 bSubEle,Ele_Holy,17;
+ bonus2 bSubEle,Ele_Dark,17;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddEle,Ele_Undead,10;
+ bonus2 bAddEle,Ele_Ghost,10;
+ bonus2 bAddEle,Ele_Poison,10;
+ bonus2 bAddEle,Ele_Holy,10;
+ bonus2 bAddEle,Ele_Dark,10;
+ }
+ else {
+ bonus2 bAddEle,Ele_Undead,5;
+ bonus2 bAddEle,Ele_Ghost,5;
+ bonus2 bAddEle,Ele_Poison,5;
+ bonus2 bAddEle,Ele_Holy,5;
+ bonus2 bAddEle,Ele_Dark,5;
+ }
+ if (.@r>=12) {
+ .@val = 1;
+ }
+ bonus5 bAutoSpell,"AL_HOLYLIGHT",1+.@val,10,BF_SHORT|BF_WEAPON,1;
+ bonus5 bAutoSpell,"AL_HOLYLIGHT",1+.@val,5,BF_LONG|BF_WEAPON,1;
+ - Id: 19218
+ AegisName: Time_Keeper_Glasses
+ Name: Time Keeper Glasses
+ Type: Armor
+ View: 47
+ Locations:
+ Head_Mid: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 19223
+ AegisName: Cap_IL
+ Name: Illusion Cap
+ Type: Armor
+ Weight: 400
+ Defense: 15
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ Rogue: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 120
+ Refineable: true
+ View: 14
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ bonus bBaseAtk,(2*getrefine());
+ - Id: 19238
+ AegisName: PoringTownOnion
+ Name: Poring Village Leek
+ Type: Armor
+ View: 824
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ Script: |
+ autobonus "{ bonus bSpeedRate,25; }",50,5000,BF_NORMAL,"{ showscript \"Smokie-formation!\"; active_transform 1056,5000; /*SMOKIE*/ }";
+ - Id: 19239
+ AegisName: PoringTownCarrot
+ Name: Poring Village Carrot
+ Type: Armor
+ View: 829
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 30
+ Script: |
+ autobonus "{ bonus bSpeedRate,25; }",50,5000,BF_NORMAL,"{ showscript \"Lunatic-formation!\"; active_transform 1063,5000; /*LUNATIC*/ }";
+ - Id: 19240
+ AegisName: Toy_Syringe_K
+ Name: Toy Syringe
+ Type: Armor
+ View: 842
+ Buy: 20
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Low: true
+ Refineable: true
+ Script: |
+ bonus2 bAddItemHealRate,11573,100;
+ bonus2 bAddItemHealRate,547,100;
+ - Id: 19241
+ AegisName: Magical_Booster_K
+ Name: Magical Booster
+ Type: Armor
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Refineable: true
+ View: 873
+ - Id: 19242
+ AegisName: Neko_Headress
+ Name: Costume Neko Headress
+ Type: Armor
+ Weight: 100
+ Defense: 20
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 816
+ Script: |
+ 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
+ Type: Armor
+ View: 1492
+ Buy: 20
+ Weight: 100
+ Defense: 8
+ Locations:
+ Head_Low: true
+ Script: |
+ bonus2 bDropAddClass,Class_All,5;
+ bonus2 bExpAddClass,Class_All,5;
+ - Id: 19244
+ AegisName: Necklace_Rosary_K
+ Name: Rosario Necklace
+ Type: Armor
+ View: 1471
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Locations:
+ Head_Low: true
+ Script: |
+ bonus bHealPower,5;
+ - Id: 19245
+ AegisName: Crimson_Booster
+ Name: Crimson Booster
+ Type: Armor
+ View: 1355
+ Buy: 3000000
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ - Id: 19246
+ AegisName: Royalguard_Necklace
+ Name: Royal Guard Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 1629
+ Script: |
+ bonus bAspd,1;
+ - Id: 19247
+ AegisName: Illusion_Fancy_Flower
+ Name: Illusion Fancy Flower
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 120
+ View: 4
+ Script: |
+ bonus bMatkRate,1;
+ bonus bMatk,(2*getrefine());
+ - Id: 19249
+ AegisName: Spell_Circuit
+ Name: Spell Circuit
+ Type: Armor
+ View: 1301
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,(.@r/2)*20;
+ if (.@r>6) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>8) {
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ if (.@r>10) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ }
+ .@val = max(min(.@r-15,5),0);
+ bonus bFixedCast,-.@val*100;
+ - Id: 19256
+ AegisName: Mobile_BeginnerMark
+ Name: Beginner Mark
+ Type: Armor
+ View: 1348
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMax: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bDropAddClass,Class_All,10;
+ bonus2 bExpAddClass,Class_All,10;
+ - Id: 19263
+ AegisName: General_Helmet_
+ Name: General's Helm
+ Type: Armor
+ View: 729
+ Buy: 20
+ Weight: 800
+ Defense: 12
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r/2)*15;
+ if (.@r>6) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>8) {
+ bonus bAspd,1;
+ bonus2 bAddClass,Class_All,5;
+ }
+ if (.@r>10) {
+ bonus bCritAtkRate,15;
+ }
+ .@val = max(min(.@r-15,5),0);
+ bonus bFixedCast,-.@val*100;
+ - Id: 19264
+ AegisName: GoldFish_Hat
+ Name: Gold Fish Head Hat
+ Type: Armor
+ View: 1645
+ Buy: 20
+ Weight: 400
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>8) {
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,10,1;
+ }
+ if (.@r<6) {
+ autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",10,60000,BF_MAGIC,"{ specialeffect2 EF_ASPERSIO; }";
+ }
+ else {
+ autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",(10+(.@r*2)),60000,BF_MAGIC,"{ specialeffect2 EF_ASPERSIO; }";
+ }
+ - Id: 19265
+ AegisName: Smoky_TransformHat
+ Name: Smokie Transformation Leaf
+ Type: Armor
+ Weight: 600
+ Defense: 7
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 1646
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_All,.@r;
+ autobonus "{ .@r = getrefine(); bonus3 bAutoSpell,\"MG_COLDBOLT\",2,50; bonus3 bAutoSpell,\"MG_FIREBOLT\",2,50; bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",2,50; bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",2,50; if (.@r>=7) { bonus3 bAutoSpell,\"WZ_FROSTNOVA\",5,40; if (.@r>=8) { bonus3 bAutoSpell,\"MG_THUNDERSTORM\",5,30; if (BaseLevel>100) { if (.@r>=9) { bonus3 bAutoSpell,\"WL_HELLINFERNO\",5,20; if (.@r>=10) { bonus3 bAutoSpell,\"WL_CHAINLIGHTNING\",3,10; } } } } } }",1,5000,BF_WEAPON,"{ active_transform 1056,5000; /*SMOKIE*/ }";
+ - Id: 19266
+ AegisName: Survive_Circlet_
+ Name: Survivor's Circlet
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1220
+ Script: |
+ .@r = getrefine();
+ bonus bInt,3;
+ bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0);
+ if (.@r >= 10) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19267
+ AegisName: SurviveOrb_K
+ Name: Survivor's Orb
+ Type: Armor
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1488
+ Script: |
+ bonus bMdef,2;
+ bonus bVariableCastrate,-2;
+ - Id: 19268
+ AegisName: FaceWorm_Breath
+ Name: Gigant Snake's Breath
+ Type: Armor
+ View: 1050
+ Buy: 20
+ Weight: 300
+ Defense: 2
+ Locations:
+ Head_Low: true
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Fire,1;
+ - Id: 19269
+ AegisName: Angel_Of_Happiness_J
+ Name: Happy Flapping Angel Wings
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 1251
+ Script: |
+ .@r = getrefine();
+ .@a = 15;
+ if (.@r >= 7)
+ .@a += 15;
+ if (.@r>=8)
+ bonus2 bResEff,Eff_Stone,10000;
+ if (.@r>=9)
+ .@a += 20;
+ bonus2 bAddRace2,RC2_CLOCKTOWER,.@a;
+ bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a;
+ bonus2 bSubRace2,RC2_CLOCKTOWER,.@a;
+ bonus3 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
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1653
+ Script: |
+ .@r = getrefine();
+ bonus bInt,5;
+ bonus bDex,5;
+ bonus2 bIgnoreMdefRaceRate,RC_All,20;
+ bonus2 bMagicAtkEle,Ele_All,10;
+ if (.@r>=7) {
+ bonus2 bIgnoreMdefRaceRate,RC_All,30;
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=9) {
+ bonus2 bIgnoreMdefRaceRate,RC_All,50;
+ bonus bVariableCastrate,-15;
+ }
+ UnEquipScript: |
+ sc_end SC_TELEKINESIS_INTENSE;
+ - Id: 19273
+ AegisName: Gemini_Red_Eyes
+ Name: Gemini Red Eyes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 100
+ View: 1654
+ Script: |
+ .@val = 100*(readparam(bVit)>89?50:10);
+ bonus2 bResEff,Eff_Sleep,.@val;
+ bonus2 bResEff,Eff_Stone,.@val;
+ - Id: 19274
+ AegisName: Open_Air_Headset
+ Name: Open Air Headset
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 1655
+ Script: |
+ bonus bDelayrate,-5;
+ bonus bUseSPrate,-5;
+ bonus bSPGainValue,5;
+ bonus bMagicSPGainValue,5;
+ bonus bLongSPGainValue,5;
+ - Id: 19275
+ AegisName: Rental_Scuba_Mask
+ Name: Rental Scuba Mask
+ Type: Armor
+ View: 400
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,20;
+ bonus bBaseAtk,20;
+ bonus2 bSubRace,RC_Fish,5;
+ - Id: 19277
+ AegisName: Soda_In_Mouth
+ Name: Soda in Mouth
+ Type: Armor
+ View: 1643
+ Weight: 50
+ Locations:
+ Head_Low: true
+ - Id: 19283
+ AegisName: K_Heart_Wing_Hairband
+ Name: "[Katsua]Heart Wings Hairband"
+ Type: Armor
+ View: 733
+ Weight: 300
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,-5-3*(.@r/3);
+ bonus bUseSPrate,-10-3*(.@r/3);
+ - Id: 19284
+ AegisName: K_New_Wave_Sunglasses
+ Name: "[Katsua]New Wave Sunglasses"
+ Type: Armor
+ View: 856
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDelayrate,-10;
+ - Id: 19285
+ AegisName: Helmet_Of_Siegfried_J
+ Name: Siegfried's Helmet
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1055
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubClass,Class_Boss,5;
+ bonus bUnbreakableHelm;
+ if (.@r>=6) {
+ bonus bFlee2,5;
+ bonus2 bSubClass,Class_Boss,5;
+ }
+ if (.@r>=8) {
+ bonus bFlee2,5;
+ bonus2 bSubClass,Class_Boss,10;
+ bonus bNoKnockback;
+ }
+ - Id: 19289
+ AegisName: C_Moon_Eyepatch
+ Name: Costume Moon Eyepatch
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 1370
+ - Id: 19291
+ AegisName: C_Shiba_Inu
+ Name: Costume Shiba Inu
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 1669
+ - Id: 19292
+ AegisName: C_Wildcat_Knit_Cap
+ Name: Costume Smokie Knit Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 1671
+ - Id: 19294
+ AegisName: C_CatEars_Cyber_HeadP_R
+ Name: Costume Cyber Cat Ear Headphones (Red)
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 1668
+ - Id: 19296
+ AegisName: Classical_Fhat
+ Name: Classical Feather Hat
+ Type: Armor
+ View: 1381
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ if (.@r>=7) {
+ bonus bLongAtkRate,7;
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,5;
+ bonus bAspd,1;
+ }
+ if (.@r>=11) {
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>=10) {
+ bonus bFixedCast,-100*(min((.@r-10),15)/1);
+ }
+ - Id: 19299
+ AegisName: Tree_Of_Sprout_JP
+ Name: Tree Sprout
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 848
+ Script: |
+ bonus bVariableCastrate,-5;
+ - Id: 19300
+ AegisName: Dog_Officer
+ Name: Dog Officer
+ Type: Armor
+ View: 1601
+ Weight: 400
+ Defense: 35
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ if (.@r>=7) {
+ bonus bBaseAtk,30;
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,5;
+ bonus bAspd,1;
+ }
+ if (.@r>=11) {
+ bonus bCritAtkRate,3;
+ bonus bLongAtkRate,3;
+ }
+ if (.@r>=10) {
+ bonus bFixedCast,-100*(min((.@r-10),15)/1);
+ }
+ - Id: 19306
+ AegisName: Heart_Card_In_Mouth
+ Name: Heart Card in Mouth
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 1679
+ Script: |
+ bonus bCritAtkRate,5;
+ - Id: 19308
+ AegisName: Amistr_Beret
+ Name: Amistr Beret
+ Type: Armor
+ View: 1294
+ Weight: 200
+ Defense: 15
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bBaseAtk,10*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ if (.@r>=11) {
+ bonus bMatkRate,3;
+ bonus2 bAddClass,Class_All,5;
+ }
+ if (.@r>=10) {
+ bonus bFixedCast,-100*(min((.@r-10),15)/1);
+ }
+ - Id: 19310
+ AegisName: Beginner's_Cap
+ Name: Beginner's Cap
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ View: 102
+ Script: |
+ bonus bAllStats,1;
+ bonus MaxHp,200;
+ - Id: 19326
+ AegisName: Book_of_Soyga
+ Name: Book of Soyga
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 423
+ - Id: 19327
+ AegisName: Feather_Of_Seraphim
+ Name: Seraphim Feather
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 80
+ View: 1704
+ Script: |
+ bonus bHealPower,5;
+ - Id: 19329
+ AegisName: Hand_Of_Devil
+ Name: Devil's Hand
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 18
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1018
+ Script: |
+ .@r = getrefine();
+ .@a = getskilllv("SR_RIDEINLIGHTNING");
+ .@b = getskilllv("SR_EARTHSHAKER");
+ .@c = getskilllv("SR_RAMPAGEBLASTER");
+ bonus bNoCastCancel;
+ bonus bAspdRate,10;
+ bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100;
+ bonus2 bSkillAtk,"SR_HOWLINGOFLION",20;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SR_HOWLINGOFLION",30;
+ bonus bAspdRate,5;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SR_HOWLINGOFLION",50;
+ bonus bAspdRate,5;
+ }
+ if (.@r>=10)
+ bonus bIgnoreDefRace,RC_All;
+ if (.@r>=10 && .@a == 5) {
+ bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50;
+ bonus2 bVariableCastrate,"MO_STEELBODY",-50;
+ bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50;
+ }
+ if (.@r>=10 && .@b == 5)
+ bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500;
+ if (.@r>=10 && .@c == 5)
+ bonus2 bAddClass,Class_Boss,50;
+ - Id: 19337
+ AegisName: Hat_of_Goggle
+ Name: Safety Glasses
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 1721
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Poison,10;
+ if (.@r<7)
+ .@a = 15;
+ else if (.@r<9)
+ .@a = 30;
+ else if (.@r>=9)
+ .@a = 50;
+ if (.@r>=8)
+ bonus2 bSubEle,Ele_Poison,15;
+ bonus2 bAddRace2,RC2_HEARTHUNTER,.@a;
+ bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a;
+ bonus2 bSubRace2,RC2_HEARTHUNTER,.@a;
+ - Id: 19338
+ AegisName: Clover_Silkhat
+ Name: Clover Silk Hat
+ Type: Armor
+ View: 735
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 15
+ Refineable: true
+ Script: |
+ bonus bHit,3;
+ bonus bAgi,2;
+ - Id: 19339
+ AegisName: Egg_Crispinette
+ Name: Egg Crispinette
+ Type: Armor
+ View: 1598
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 15
+ Refineable: true
+ Script: |
+ bonus bMaxHP,75;
+ bonus bMaxSP,25;
+ - Id: 19340
+ AegisName: Saint_Egg_Shell
+ Name: Holy Egg Shell
+ Type: Armor
+ View: 537
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 15
+ Refineable: true
+ Script: |
+ bonus bHealPower,2;
+ - Id: 19341
+ AegisName: Devil_Egg_Shell
+ Name: Wicket Egg Shell
+ Type: Armor
+ View: 999
+ Weight: 200
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 15
+ Refineable: true
+ Script: |
+ bonus bAspdRate,2;
+ - Id: 19342
+ AegisName: Bull_Hat
+ Name: Bull Hat
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ View: 819
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Wind,10;
+ if (.@r<7)
+ .@a = 15;
+ if (.@r>=7 && .@r<9)
+ .@a = 30;
+ if (.@r>=8)
+ bonus2 bSubEle,Ele_Wind,15;
+ if (.@r>=9)
+ .@a = 50;
+ bonus2 bAddRace2,RC2_ROCKRIDGE,.@a;
+ bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a;
+ bonus2 bSubRace2,RC2_ROCKRIDGE,.@a;
+ - Id: 19343
+ AegisName: Circlet_Of_Phoenix
+ Name: Circlet Of Phoenix
+ Type: Armor
+ Weight: 1000
+ Defense: 18
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1056
+ Script: |
+ .@r = getrefine();
+ .@mdef = 15;
+ .@hp = 10;
+ .@dmg = 10;
+ .@cast = -10;
+ bonus2 bFixedCastrate,"LG_OVERBRAND",-100;
+ if (.@r>=7) {
+ .@cast -= 5;
+ .@dmg += 15;
+ if (.@r>=9) {
+ .@cast -= 5;
+ .@dmg += 25;
+ if (.@r>=10) {
+ bonus bIgnoreDefRace,RC_All;
+ }
+ }
+ }
+ if (getskilllv("LG_KINGS_GRACE")>=5) {
+ bonus2 bSkillCooldown,"LG_INSPIRATION",-10000;
+ bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000;
+ }
+ if (getskilllv("LG_MOONSLASHER")>=5) {
+ bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000;
+ }
+ if (getskilllv("LG_FORCEOFVANGUARD")>=5) {
+ .@hp += 10;
+ .@mdef += 15;
+ bonus bMaxSPrate,10;
+ bonus bDef,150;
+ }
+ bonus bMdef,.@mdef;
+ bonus bMaxHPrate,.@hp;
+ bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg;
+ bonus bVariableCastrate,.@cast;
+ - Id: 19344
+ AegisName: Illusion_Hot_blooded_Headband
+ Name: Illusion Hot-blooded Headband
+ Type: Armor
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 120
+ Refineable: true
+ View: 154
+ Script: |
+ .@r = getrefine();
+ bonus bStr,2;
+ bonus bBaseAtk,(10*(.@r/2));
+ if (.@r >= 7) {
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Neutral,10;
+ if (.@r >= 9) {
+ bonus2 bAddSize,Size_Small,15;
+ bonus2 bAddSize,Size_Large,15;
+ }
+ }
+ - Id: 19364
+ AegisName: Engineer_Cap_K
+ Name: Engineer Cap
+ Type: Armor
+ View: 608
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bBaseAtk,10*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Formless,5;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Formless,10;
+ bonus2 bMagicAddRace,RC_Formless,10;
+ }
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ 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
+ Type: Armor
+ Weight: 1000
+ Defense: 25
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ View: 258
+ Script: |
+ .@r = getrefine();
+ .@vit = 3;
+ if (.@r >= 7) {
+ .@vit += 5;
+ if (.@r >= 9) {
+ bonus bDelayrate,-12;
+ }
+ }
+ bonus bVit,.@vit;
+ bonus bMdef,3;
+ - Id: 19379
+ AegisName: Striking_Hat
+ Name: Striking Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 5
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1759
+ Script: |
+ .@r = getrefine();
+ bonus bDex,5;
+ bonus bAgi,5;
+ bonus bLongAtkRate,5;
+ bonus bAspdRate,10;
+ bonus bPerfectHitAddRate,10;
+ bonus bHit,2*.@r;
+ bonus bDelayrate,-2*.@r;
+ if (.@r>=7) {
+ bonus bPerfectHitAddRate,20;
+ bonus bLongAtkRate,10;
+ }
+ if (.@r>=9) {
+ bonus bPerfectHitAddRate,20;
+ bonus bLongAtkRate,10;
+ }
+ - Id: 19380
+ AegisName: Floating_Ball
+ Name: Floating Ball
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 100
+ View: 1760
+ Script: |
+ bonus bMatk,35;
+ bonus2 bMagicAddClass,Class_Boss,2;
+ if (readparam(bDex)>=90) {
+ bonus bMatk,70;
+ bonus2 bMagicAddClass,Class_Boss,3;
+ }
+ if (readparam(bDex)>=125) {
+ bonus bMatk,140;
+ bonus2 bMagicAddClass,Class_Boss,5;
+ }
+ - Id: 19381
+ AegisName: Protect_Cloth
+ Name: Protect Cloth
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 90
+ View: 1761
+ Script: |
+ bonus bMdef,5;
+ bonus bMaxHPrate,5;
+ - Id: 19382
+ AegisName: Pop_Popcorn_Hat
+ Name: Pop Popcorn Hat
+ Type: Armor
+ View: 1763
+ Weight: 500
+ Defense: 6
+ Locations:
+ Head_Top: true
+ Refineable: true
+ - Id: 19387
+ AegisName: Exa_Goat_Cap
+ Name: Experimental Goat Cap
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 40
+ Refineable: true
+ View: 1768
+ Script: |
+ .@r = getrefine();
+ .@sub = 10;
+ .@dmg = 15;
+ if (.@r >= 7) {
+ .@dmg += 15;
+ if (.@r >= 8) {
+ .@sub += 15;
+ if (.@r >= 9) {
+ .@dmg += 20;
+ }
+ }
+ }
+ bonus2 bSubEle,Ele_Earth,.@sub;
+ bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg;
+ bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg;
+ bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg;
+ - Id: 19389
+ AegisName: E_Oxygen_Mask
+ Name: Advanced Oxygen Mask
+ Type: Armor
+ View: 90
+ Defense: 10
+ Locations:
+ Head_Low: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 19391
+ AegisName: Eyes_Of_Illusion
+ Name: Eyes Of Illusion
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Locations:
+ Head_Mid: true
+ EquipLevelMin: 100
+ View: 1779
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bResEff,Eff_Blind,10000;
+ if (getskilllv("GN_ILLUSIONDOPING") == 5)
+ skill "SA_DISPELL",5;
+ if (getskilllv("GN_MANDRAGORA") == 5)
+ bonus2 bFixedCastrate,"GN_MANDRAGORA",-70;
+ - Id: 19396
+ AegisName: Racing_Cap_SG
+ Name: Racing Cap (Star Gladiator)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus bBaseatk,5*getskilllv("TK_HPTIME");
+ if (.@r>=11)
+ autobonus3 "{ bonus2 bSkillAtk,\"SJ_SOLARBURST\",30; }",1000,10000,"SJ_PROMINENCEKICK";
+ - Id: 19397
+ AegisName: Racing_Cap_SL
+ Name: Racing Cap (Soul Linker)
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1134
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=8)
+ bonus 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
+ Type: Armor
+ View: 262
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bHPLossRate,10,5000;
+ bonus2 bHPDrainRate,40,2;
+ bonus2 bSPDrainRate,40,2;
+ autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC;
+ autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC;
+ - Id: 19407
+ AegisName: Work_Cap
+ Name: Work Cap
+ Type: Armor
+ Buy: 200
+ Weight: 1000
+ Defense: 18
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1793
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,15;
+ bonus bVit,10;
+ bonus2 bSkillAtk,"NC_AXETORNADO",20;
+ bonus2 bVariableCastrate,"BS_GREED",-100;
+ if (getskilllv("NC_MAGICDECOY") >= 5)
+ bonus2 bAddClass,Class_Boss,50;
+ if (getskilllv("NC_AXEBOOMERANG") >= 5)
+ bonus bBaseAtk,100;
+ if (getskilllv("NC_MAGMA_ERUPTION") >= 5)
+ bonus2 bAddMonsterDropItem,732,10;
+ if (.@r>=7)
+ bonus2 bSkillAtk,"NC_AXETORNADO",30;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"NC_AXETORNADO",50;
+ if (.@r>=10)
+ bonus bIgnoreDefRace,RC_All;
+ - Id: 19409
+ AegisName: Black_Feather
+ Name: Black Feather Hat
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 18
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 731
+ Script: |
+ .@r = getrefine();
+ bonus bSPGainValue,50;
+ bonus bLongSPGainValue,50;
+ bonus bMagicSPGainValue,50;
+ bonus bMdef,15;
+ bonus bDex,10;
+ bonus2 bSkillAtk,"SC_FEINTBOMB",10;
+ if (getskilllv("SC_INVISIBILITY") >= 5)
+ bonus2 bAddClass,Class_Boss,50;
+ if (getskilllv("SC_MAELSTROM") >= 3)
+ skill "TK_JUMPKICK",7;
+ if (getskilllv("SC_REPRODUCE") >= 10)
+ bonus bUseSPrate,-30;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SC_FEINTBOMB",15;
+ bonus bHit,30;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SC_FEINTBOMB",25;
+ bonus bHit,20;
+ }
+ if (.@r>=10)
+ bonus bIgnoreDefRace,RC_All;
+ - Id: 19415
+ AegisName: White_Bird_Rose
+ Name: White Bird Rose Decoration
+ Type: Armor
+ View: 1688
+ Defense: 6
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bUseSPrate,-3;
+ bonus bHealPower,3;
+ - Id: 19424
+ AegisName: C_Master_Cat
+ Name: Costume Master's Head
+ Type: Armor
+ View: 1806
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 19425
+ AegisName: Master_Cat
+ Name: Master's Head
+ Type: Armor
+ View: 1806
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ - Id: 19426
+ AegisName: King_Of_Spirit_Circlet
+ Name: Spirit King's Crown
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 12
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1118
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,15;
+ bonus bFixedCastrate,-7*.@r;
+ bonus bDelayrate,-10;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",10;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",10;
+ bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY");
+ if (getskilllv("SO_WARMER") >= 5) {
+ bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000;
+ bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000;
+ bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000;
+ }
+ if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5)
+ bonus2 bMagicAddClass,Class_Boss,25;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",15;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",15;
+ bonus bDelayrate,-5;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",25;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",25;
+ }
+ if (.@r>=10)
+ bonus bIgnoreMdefRace,RC_All;
+ - Id: 19428
+ AegisName: Illusion_Morpheus's_Hood
+ Name: Illusion Morpheus's Hood
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 15
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ View: 256
+ Script: |
+ .@r = getrefine();
+ bonus bInt,10;
+ bonus bMdef,15;
+ bonus bMaxSPrate,20;
+ bonus bVariableCastrate,-(3*(.@r/2));
+ if (.@r >= 7) {
+ bonus bMatk,30;
+ if (.@r >= 9) {
+ bonus bNoCastCancel;
+ }
+ }
+ - Id: 19433
+ AegisName: C_Resonate_Taego
+ Name: Costume Resonate Taego
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1823
+ Script: |
+ hateffect(HAT_EF_RESONATETAEGO,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_RESONATETAEGO,false);
+ - Id: 19439
+ AegisName: Subject_Aura
+ Name: Vicious Mind Aura
+ Type: Armor
+ View: 1267
+ Weight: 100
+ Defense: 5
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 170
+ - Id: 19451
+ AegisName: Heavenly_Order
+ Name: Heavenly Order
+ Type: Armor
+ Buy: 20
+ Locations:
+ Head_Mid: true
+ 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);
+ - Id: 19453
+ AegisName: Jejecap_JP
+ Name: Jeje Cap
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 18
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1011
+ Script: |
+ .@r = getrefine();
+ .@dmg = 10;
+ .@delay = -15-6*getskilllv("GN_CRAZYWEED");
+ bonus bMdef,15;
+ bonus bNoCastCancel;
+ bonus2 bVariableCastrate,"GN_CRAZYWEED",-50;
+ bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50;
+ bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50;
+ if (.@r>=7) {
+ .@dmg += 15;
+ if (.@r>=9) {
+ .@dmg += 25;
+ if (.@r>=10) {
+ bonus bIgnoreMDefRace,RC_All;
+ }
+ }
+ }
+ if (getskilllv("GN_FIRE_EXPANSION") == 5)
+ bonus2 bAddClass,Class_Boss,50;
+ if (getskilllv("GN_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: 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: C_Melon_Cap
+ Name: Costume melon bread hat # !todo check english name
+ Type: Armor
+ View: 1878
+ Locations:
+ Costume_Head_Top: true
+ - Id: 19465
+ AegisName: Cherry_Blossom_Hat_YL
+ Name: Yellow Cherry Blossom Hat
+ Type: Armor
+ View: 1727
+ Locations:
+ Head_Top: true
+ Refineable: true
+ - Id: 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: Crown_Of_Saint_Jp
+ Name: Saint Crown
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 12
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1117
+ Script: |
+ .@r = getrefine();
+ .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS"));
+ .@dmg = 20;
+ .@aspd = 10;
+ bonus bMdef,15;
+ bonus2 bSkillUseSP,"AB_JUDEX",15;
+ bonus2 bSkillUseSP,"AB_ADORAMUS",15;
+ bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO");
+ bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO");
+ if (getskilllv("AB_CLEARANCE") >= 5) {
+ bonus2 bMagicAddClass,Class_Boss,25;
+ }
+ bonus2 bMagicAddEle,Ele_Undead,.@a;
+ bonus2 bMagicAddEle,Ele_Ghost,.@a;
+ bonus2 bMagicAddEle,Ele_Earth,.@a;
+ bonus2 bMagicAddEle,Ele_Neutral,.@a;
+ bonus2 bMagicAddRace,RC_DemiHuman,2*.@r;
+ bonus2 bMagicAddRace,RC_Player_Human,2*.@r;
+ if (.@r >= 7) {
+ .@dmg += 30;
+ .@aspd += 5;
+ if (.@r >= 9) {
+ .@dmg += 50;
+ .@aspd += 5;
+ if (.@r >= 10) {
+ bonus bNoGemStone;
+ }
+ }
+ }
+ bonus bAspdRate,.@aspd;
+ bonus2 bSkillAtk,"AB_JUDEX",.@dmg;
+ bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg;
+ - Id: 19472
+ AegisName: C_S_Circlet_Of_Time
+ Name: Circlet of Costume Time # !todo check english name
+ Type: Armor
+ View: 1891
+ Locations:
+ Costume_Head_Top: true
+ - Id: 19474
+ AegisName: S_Circlet_Of_Time_RK
+ Name: Temporal Circlet (Rune Knight)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,250*(.@r/2);
+ bonus bMaxSPrate,2*(.@r/3);
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15*(.@r/3);
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",15*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19475
+ AegisName: S_Circlet_Of_Time_LG
+ Name: Temporal Circlet (Royal Guard)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15*(.@r/3);
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus2 bAddClass,Class_All,5;
+ }
+ - Id: 19476
+ AegisName: S_Circlet_Of_Time_NC
+ Name: Temporal Circlet (Mechanic)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",10*(.@r/3);
+ bonus2 bSkillAtk,"NC_ARMSCANNON",10*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19477
+ AegisName: S_Circlet_Of_Time_GN
+ Name: Temporal Circlet (Genetic)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20*(.@r/3);
+ bonus2 bSkillAtk,"GN_CART_TORNADO",20*(.@r/3);
+ bonus2 bAddSize,Size_All,2*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19478
+ AegisName: S_Circlet_Of_Time_GC
+ Name: Temporal Circlet (Guillotine Cross)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",20*(.@r/3);
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3);
+ bonus2 bAddClass,Class_All,2*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19479
+ AegisName: S_Circlet_Of_Time_SC
+ Name: Temporal Circlet (Shadow Chaser)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"SC_FATALMENACE",30*(.@r/3);
+ bonus2 bSkillAtk,"SC_FEINTBOMB",30*(.@r/3);
+ bonus2 bAddClass,Class_All,2*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19480
+ AegisName: S_Circlet_Of_Time_AB
+ Name: Temporal Circlet (Archbishop)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus2 bSkillAtk,"AB_ADORAMUS",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19481
+ AegisName: S_Circlet_Of_Time_SR
+ Name: Temporal Circlet (Sura)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bMaxHPrate,2*(.@r/3);
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",10*(.@r/3);
+ bonus2 bSkillAtk,"SR_TIGERCANNON",10*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus2 bAddClass,Class_All,5;
+ }
+ - Id: 19482
+ AegisName: S_Circlet_Of_Time_WL
+ Name: Temporal Circlet (Warlock)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20*(.@r/3);
+ bonus2 bSkillAtk,"WL_JACKFROST",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4);
+ bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19483
+ AegisName: S_Circlet_Of_Time_SO
+ Name: Temporal Circlet (Sorcerer)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",20*(.@r/3);
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Neutral,5*(.@r/4);
+ bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19484
+ AegisName: S_Circlet_Of_Time_RA
+ Name: Temporal Circlet (Ranger)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bCritAtkRate,5*(.@r/3);
+ bonus2 bSkillAtk,"RA_ARROWSTORM",20*(.@r/3);
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",20*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000;
+ }
+ - Id: 19485
+ AegisName: S_Circlet_Of_Time_WM
+ Name: Temporal Circlet (Wanderer & Minstrel)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bVariableCastrate,-5*(.@r/3);
+ bonus2 bSkillAtk,"WM_METALICSOUND",20*(.@r/3);
+ bonus2 bSkillAtk,"WM_REVERBERATION",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19486
+ AegisName: S_Circlet_Of_Time_SJ
+ Name: Temporal Circlet (Star Emperor)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",30*(.@r/3);
+ bonus2 bAddSize,Size_All,2*(.@r/4);
+ if (.@r>=11) {
+ bonus2 bAddClass,Class_All,5;
+ }
+ - Id: 19487
+ AegisName: S_Circlet_Of_Time_SP
+ Name: Temporal Circlet (Soul Reaper)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bVariableCastrate,-5*(.@r/3);
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20*(.@r/3);
+ bonus2 bSkillAtk,"SP_SWHOO",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19488
+ AegisName: S_Circlet_Of_Time_RL
+ Name: Temporal Circlet (Rebellion)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20*(.@r/3);
+ bonus2 bSkillAtk,"RL_R_TRIP",20*(.@r/3);
+ bonus bLongAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19489
+ AegisName: S_Circlet_Of_Time_OB
+ Name: Temporal Circlet (Oboro)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",30*(.@r/3);
+ bonus2 bSkillAtk,"NJ_HUUJIN",30*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4);
+ bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bMatkRate,5;
+ }
+ - Id: 19490
+ AegisName: S_Circlet_Of_Time_KG
+ Name: Temporal Circlet (Kagerou)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"KO_BAKURETSU",20*(.@r/3);
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20*(.@r/3);
+ bonus2 bAddSize,Size_All,2*(.@r/4);
+ if (.@r>=11) {
+ bonus2 bAddClass,Class_All,5;
+ }
+ - Id: 19491
+ AegisName: S_Circlet_Of_Time_NV
+ Name: Temporal Circlet (Super Novice)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,4*(.@r/3);
+ bonus bVariableCastrate,-4*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_All,5*(.@r/4);
+ bonus bCritAtkRate,5*(.@r/4);
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 19492
+ AegisName: S_Circlet_Of_Time_SU
+ Name: Temporal Circlet (Summoner)
+ Type: Armor
+ View: 1892
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ bonus2 bSkillAtk,"SU_CN_METEOR",20*(.@r/3);
+ bonus2 bSkillAtk,"SU_PICKYPECK",20*(.@r/3);
+ bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4);
+ 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
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 65
+ Script: |
+ bonus bStr,2;
+ - Id: 19501
+ AegisName: T_Spinx_Helm
+ Name: T Spinx Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 137
+ - Id: 19502
+ AegisName: T_Goggle
+ Name: T Goggle
+ Type: Armor
+ Locations:
+ 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 51
+ - Id: 19504
+ AegisName: T_Sunglasses
+ Name: T Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 12
+ - Id: 19505
+ AegisName: T_Cigarette
+ Name: T Cigarette
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 54
+ - Id: 19506
+ AegisName: T_Valkyrie_Feather_Band
+ Name: T Valkyrie Feather Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 300
+ - Id: 19507
+ AegisName: Fine_Sun
+ Name: Clear Sun
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 654
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19508
+ AegisName: T_Gemmed_Sallet
+ Name: T Gemmed Sallet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19509
+ AegisName: Butterfly_Wing_Ear
+ Name: Butterfly Wing Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 695
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19510
+ AegisName: Nut_On_Head
+ Name: Screw Stuck in Head
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 696
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19511
+ AegisName: Heart_Eye_Patch1
+ Name: Heart Eye Patch 1
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 697
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19512
+ AegisName: Heart_Eye_Patch2
+ Name: Heart Eye Patch 2
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 698
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19513
+ AegisName: Chicken_Beak
+ Name: Chicken Bill
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 699
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19514
+ AegisName: Charlie_Beard
+ Name: Charlies Beard
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 700
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19515
+ AegisName: Yellow_Hat
+ Name: Yellow Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 701
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19516
+ AegisName: Singing_Bird
+ Name: Singing Bird
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 702
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19517
+ AegisName: Cocks_Comb
+ Name: Chicken Crest
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 703
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19518
+ AegisName: Rainbow
+ Name: Rainbow
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 704
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19519
+ AegisName: Lightning_Cloud
+ Name: Thunderstorm Cloud
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 688
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19520
+ AegisName: Rain_Cloud
+ Name: Rain Cloud
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 705
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19521
+ AegisName: Charlie_Hat
+ Name: Charlies Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 706
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19522
+ AegisName: Mini_Crown1
+ Name: Mini Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 707
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19523
+ AegisName: Donation_Ribbon
+ Name: Green Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 244
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19524
+ AegisName: C_Green_Feeler
+ Name: Costume Green Feeler
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 85
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19525
+ AegisName: C_Jack_A_Dandy
+ Name: Costume Jack A Dandy
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 58
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19526
+ AegisName: C_Helm
+ Name: Costume Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 40
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19527
+ AegisName: C_Sharp_Gear
+ Name: Costume Spiky Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 43
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19528
+ AegisName: C_Iron_Cane
+ Name: Costume Iron Cain
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 53
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19529
+ AegisName: C_Angelic_Chain
+ Name: Costume Angel Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 38
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bVit,1;
+ bonus bAgi,1;
+ - Id: 19530
+ AegisName: C_Wild_Rose
+ Name: Costume Wild Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 541
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bBaseAtk,2;
+ bonus bMatk,2;
+ - Id: 19531
+ AegisName: C_Cube_Mask
+ Name: Costume Cube Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 472
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bFlee,1;
+ - Id: 19532
+ AegisName: C_Red_Bunny_Band
+ Name: Red Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 640
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bDex,1;
+ - Id: 19533
+ AegisName: C_Spore_Hat
+ Name: Costume Spore Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 114
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bVit,1;
+ bonus2 bExpAddRace,RC_All,1;
+ - Id: 19534
+ AegisName: C_Tha_Despero_Mask
+ Name: Costume Thanatos Despero Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 693
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ bonus bMatkRate,1;
+ bonus bHealPower,1;
+ - Id: 19535
+ AegisName: C_Sinsuncho_Hat
+ Name: Costume Sinsuncho Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 730
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bStr,1;
+ bonus2 bExpAddRace,RC_All,1;
+ - Id: 19536
+ AegisName: C_Rose_Corsage
+ Name: Costume Rose Corsage
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 533
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bInt,1;
+ - Id: 19537
+ AegisName: C_Gryphon_Hat
+ Name: Costume Gryphon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 591
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19538
+ AegisName: Full_Moon
+ Name: Full Moon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 780
+ Script: |
+ autobonus "{ bonus bBaseAtk,50; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";
+ autobonus "{ bonus bMatk,50; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }";
+ - Id: 19539
+ AegisName: C_Reginleif_Hairband
+ Name: Costume Hairband Of Reginleif
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 468
+ Script: |
+ bonus bAllStats,1;
+ - Id: 19540
+ AegisName: C_Rabbit_Earplug
+ Name: Costume Rabbit Earplugs
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 515
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,2;
+ - Id: 19541
+ AegisName: C_Romantic_White_Flower
+ Name: Costume Romantic White Flower
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 259
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19542
+ AegisName: C_Devil_Whisper
+ Name: Costume Devil Whisper
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 712
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus2 bSubRace,RC_Angel,1;
+ bonus2 bSubRace,RC_Demon,1;
+ bonus3 bAddMonsterDropItem,523,RC_Angel,400;
+ bonus3 bAddMonsterDropItem,12020,RC_Demon,400;
+ - Id: 19543
+ AegisName: Oliver_Wolf_Hood
+ Name: Oliver Wolf Hood
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 70
+ View: 849
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19544
+ AegisName: C_Tare_Neko_Cru
+ Name: Costume Tare Neko Cru
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 692
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19545
+ AegisName: C_Boys_Cap
+ Name: Costume Boy's Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 100
+ View: 102
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19546
+ AegisName: C_Valkyrie_Helm
+ Name: Costume Valkyrie Helm
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 100
+ View: 225
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19547
+ AegisName: C_Deviruchi_Cap
+ Name: Costume Deviruchi Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 100
+ View: 123
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19548
+ AegisName: C_Frog_Cap
+ Name: Costume Frog Cap
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 100
+ View: 448
+ EquipScript: |
+ bonus bUnbreakableHelm;
+ - Id: 19549
+ AegisName: C_Magestic_Goat
+ Name: Costume Magestic Goat
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 100
+ View: 41
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19550
+ AegisName: C_Blush
+ Name: Costume Blush
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 100
+ View: 125
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19551
+ AegisName: C_Elven_Ears
+ Name: Costume Elven Ears
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 100
+ View: 73
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19552
+ AegisName: C_Centimental_Flower
+ Name: Costume Centimental Flower
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 100
+ View: 56
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19553
+ AegisName: C_Assassin_Mask_
+ Name: Costume Assassin Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 100
+ View: 180
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19554
+ AegisName: C_Hahoe_Mask
+ Name: Costume Hahoe Mask
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 100
+ View: 230
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19555
+ AegisName: C_Crescent_Helm
+ Name: Costume Crescent Moon Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 213
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ - Id: 19556
+ AegisName: C_Kabuki_Mask
+ Name: Costume Kabuki Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 214
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ - Id: 19557
+ AegisName: C_Ayothaya_Hat
+ Name: Costume Ayothaya Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 334
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ - Id: 19558
+ AegisName: C_Crow_Hat
+ Name: Costume Crow Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 524
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ - Id: 19559
+ AegisName: C_Baby_Dragon_Hat
+ Name: Costume Baby Dragon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 525
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 19560
+ AegisName: C_Coati_Hat
+ Name: Costume Coati Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 527
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,1;
+ - Id: 19561
+ AegisName: C_Tucan_Hat
+ Name: Costume Tucan Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 528
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bDex,1;
+ - Id: 19562
+ AegisName: C_Jaguar_Hat
+ Name: Costume Jaguar Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 530
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ - Id: 19563
+ AegisName: C_Dragon_Arhat_Mask
+ Name: Costume Dragon Arhat Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 545
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19564
+ AegisName: C_Tiger_Arhat_Mask
+ Name: Costume Tiger Arhat Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 546
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19565
+ AegisName: C_Chung_Hairband
+ Name: Costume Chung Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 583
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ - Id: 19566
+ AegisName: C_Samurai_Mask
+ Name: Costume Samurai Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 644
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19567
+ AegisName: C_Hatta_Black
+ Name: Costume Hatta Black
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 676
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bVit,1;
+ - Id: 19568
+ AegisName: C_Ancient_Horns
+ Name: Costume Ancient Horns
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 757
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ - Id: 19569
+ AegisName: C_Sprout_Hat
+ Name: Costume Sprout Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 758
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ - Id: 19570
+ AegisName: C_Mercury_Riser
+ Name: Costume Mercury Riser
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 759
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 19571
+ AegisName: C_White_Musang_Hat
+ Name: Costume White Musang Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 770
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bStr,1;
+ - Id: 19572
+ AegisName: C_Black_Musang_Hat
+ Name: Costume Black Musang Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 771
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bInt,1;
+ - Id: 19573
+ AegisName: C_Heart_Wing_Hairband
+ Name: Costume Heart Wing Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 733
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19574
+ AegisName: C_Lord_of_Death
+ Name: Costume Lord of Death
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ View: 742
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19575
+ AegisName: C_Ascension_Black_Dragon
+ Name: Costume Ascension Black Dragon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 863
+ - Id: 19576
+ AegisName: C_Tare_Pope
+ Name: Costume Tare Pope
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 817
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19577
+ AegisName: 10th_Anni_Poring_Hat
+ Name: 10th Anni Poring Hat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 874
+ - Id: 19578
+ AegisName: C_Goggle
+ Name: Costume Googles
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1
+ - Id: 19579
+ AegisName: C_Red_Wind_Hat
+ Name: Costume Red Wind Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 613
+ Script: |
+ bonus bHPrecovRate,20;
+ bonus bSPrecovRate,20;
+ - Id: 19580
+ AegisName: C_Sphinx_Helm
+ Name: Costume Sphinx Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 137
+ - Id: 19581
+ 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 411
+ - Id: 19583
+ AegisName: C_Zorro_Mask
+ Name: Costume Zorro Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 50
+ - Id: 19584
+ AegisName: C_Pirate_Dagger
+ Name: Costume Dagger In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 327
+ - Id: 19585
+ AegisName: C_Feather_Beret
+ Name: Costume Feather Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 224
+ - Id: 19586
+ AegisName: C_Pink_Bunny_Band_J
+ Name: Costume Pink Bunny Hair Band
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 898
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19587
+ AegisName: C_King_Poring_Hat
+ Name: Costume King Poring Hat
+ Type: Armor
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 905
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19588
+ AegisName: C_Cat_Hat_J
+ Name: Costume Cat Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 182
+ Script: |
+ bonus bAllStats,3;
+ bonus2 bExpAddClass,Class_All,30;
+ - Id: 19589
+ AegisName: C_Fallen_Angel_Lost_J
+ Name: Costume Fallen Angel Lost
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 907
+ - Id: 19590
+ AegisName: C_Twin_Ribbon_J
+ Name: Costume Maiden's Twin Ribbon
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 239
+ - Id: 19591
+ AegisName: C_Ribbon_Red
+ Name: Costume Red Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 246
+ - Id: 19592
+ AegisName: C_Hibiscus
+ Name: Costume Hibiscus
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 210
+ - Id: 19593
+ AegisName: C_Laurel_Wreath
+ Name: Costume Laurel Wreath
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 237
+ - Id: 19594
+ AegisName: C_Decorative_Geographer
+ Name: Costume Decorative Geographer
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 238
+ - Id: 19595
+ AegisName: C_Dress_Hat_J
+ Name: Costume April's Fool Day
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 265
+ - Id: 19596
+ AegisName: C_Flapping_Angel_Wing
+ Name: Costume Flapping Angel Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 264
+ - Id: 19597
+ AegisName: C_Magic_Eyes
+ Name: Costume Magic Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 209
+ - Id: 19598
+ AegisName: C_Wondering_Wolf_Helm
+ Name: Costume Wandering Wolf Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ View: 490
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19599
+ AegisName: C_Imp_Hat
+ Name: Costume Imp Hat
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 589
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;
+ - Id: 19600
+ AegisName: Drooping_Kiehl
+ Name: Costume Drooping Kiehl
+ Type: Armor
+ Weight: 40
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 909
+ - Id: 19601
+ AegisName: Drooping_Aliot
+ Name: Costume Drooping Aliot
+ Type: Armor
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 910
+ - Id: 19602
+ AegisName: C_Invisible_Cap
+ Name: Costume Invisible Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ - Id: 19603
+ AegisName: C_Invisible_Sunglasses
+ Name: Costume Invisible Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ - Id: 19604
+ AegisName: C_Invisible_Mask
+ Name: Costume Invisible Flu Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ - Id: 19605
+ AegisName: C_Gang_Scarf
+ Name: Costume Gang Scarf
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 369
+ - Id: 19606
+ AegisName: C_Ninja_Scroll
+ Name: Costume Ninja Scroll
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 370
+ - Id: 19607
+ AegisName: C_Love_Chick_Hat
+ Name: Costume Love Chick Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 500
+ - Id: 19608
+ AegisName: C_Chick_Hat
+ Name: Costume Baby Chick
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 311
+ - Id: 19609
+ AegisName: C_Red_Glasses
+ Name: Costume Red Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 316
+ - Id: 19610
+ AegisName: C_Whisper_Mask
+ Name: Costume Whisper Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 321
+ - Id: 19611
+ AegisName: C_Peco_Ears
+ Name: Costume Peco Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 366
+ - Id: 19612
+ AegisName: C_Note_Headphone
+ Name: Costume Note Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 220
+ - Id: 19613
+ AegisName: C_Valkyrie_Feather_Band
+ Name: Costume Valkyrie Feather Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 300
+ - Id: 19614
+ AegisName: C_Super_Novice_Hat
+ Name: Costume Super Novice Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 193
+ - Id: 19615
+ AegisName: C_Loki_Mask
+ Name: Costume Loki Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 346
+ - Id: 19616
+ AegisName: C_Wickebines_Black_Cat_Ears
+ Name: Costume Wickebine's Black Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 368
+ - Id: 19617
+ AegisName: C_Puppy_Headband
+ Name: Costume Puppy Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 199
+ - Id: 19618
+ AegisName: C_Mask_Of_Fox
+ Name: Costume Kitsune Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 153
+ - Id: 19619
+ AegisName: C_Corsair
+ Name: Costume Corsair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 105
+ Script: |
+ bonus bVit,1;
+ - Id: 19620
+ AegisName: C_Dectective_Hat
+ Name: Costume Detective Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 189
+ - Id: 19621
+ AegisName: C_Ear_Of_Devils_Wing
+ Name: Costume Evil Wing Ear
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 152
+ - Id: 19622
+ AegisName: C_Crescent_Hairpin
+ Name: Costume Crescent Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 132
+ - Id: 19623
+ AegisName: C_Bijofnil_Wings
+ Name: Costume Bijofnil Wings
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 477
+ - Id: 19624
+ AegisName: C_Round_Eyes
+ Name: Costume Blank Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 185
+ - Id: 19625
+ AegisName: C_Bunny_Band
+ Name: Costume Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 15
+ - Id: 19627
+ AegisName: C_Satellite_Hairband
+ Name: Costume Satellite Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 266
+ Script: |
+ bonus2 bExpAddRace,RC_All,30;
+ - Id: 19628
+ AegisName: C_Headset
+ Name: Costume Headset
+ Type: Armor
+ View: 87
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 20
+ - Id: 19629
+ AegisName: C_Tiara
+ Name: Costume Tiara
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 19
+ - Id: 19630
+ AegisName: C_Crown
+ Name: Costume Crown
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 45
+ - Id: 19631
+ AegisName: C_Poring_Fedora_Hat
+ Name: Costume Poring Fedora Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 919
+ - Id: 19632
+ AegisName: C_Hat
+ Name: Costume Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 16
+ - Id: 19633
+ AegisName: C_Flower_Hairband
+ Name: Costume Flower Band
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 5
+ - Id: 19634
+ AegisName: C_Flu_Mask
+ Name: Costume Flu Mask
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 8
+ - Id: 19635
+ AegisName: C_Mini_Propeller
+ Name: Costume Mini Propeller
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 46
+ - Id: 19636
+ AegisName: C_Pierrot_Nose
+ Name: Costume Clown Nose
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 49
+ - Id: 19637
+ AegisName: C_Nurse_Cap
+ Name: Costume Nurse Cap
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 64
+ - Id: 19638
+ AegisName: C_Mr_Smile
+ Name: Costume Mr. Smile
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 65
+ - Id: 19639
+ AegisName: C_Sahkkat
+ Name: Costume Sakkat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 67
+ - Id: 19640
+ AegisName: C_Charming_Ribbon
+ Name: Costume Charming Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 211
+ - Id: 19641
+ AegisName: C_Helm_of_Darkness
+ Name: Costume Helm of Darkness
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 233
+ - Id: 19642
+ AegisName: C_Moonlight_Flower_Hat
+ Name: Costume Moonlight Flower Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 268
+ - Id: 19643
+ AegisName: C_Whikebain_Ears
+ Name: Costume Wickebine Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 368
+ - Id: 19644
+ AegisName: C_Takius_Blindfold
+ Name: Costume Takius Blindfold
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 184
+ - Id: 19645
+ AegisName: C_Phoenix_Crown
+ Name: Costume Phoenix Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 221
+ - Id: 19646
+ AegisName: C_Ramen_Hat
+ Name: Costume Ramen Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 320
+ - Id: 19647
+ AegisName: C_Red_Deviruchi_Hat
+ Name: Costume Red Deviruchi Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 271
+ - Id: 19648
+ AegisName: C_Autumn_Leaves
+ Name: Costume Autumn Leaves
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 241
+ - Id: 19649
+ AegisName: C_White_Baby_Cat_Ears
+ Name: Costume White Baby Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 926
+ - Id: 19650
+ AegisName: C_Rainbow_Feather_Deco
+ Name: Costume Rainbow Feather Deco
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 934
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19651
+ AegisName: C_RWC_Shouting_Mouth
+ Name: Costume RWC Shouting Mouth
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 194
+ - Id: 19652
+ AegisName: C_Rabbit_Magic_Hat
+ Name: Costume Rabbit Magic Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 497
+ - Id: 19653
+ AegisName: C_Marcher_Hat
+ Name: Costume Marcher Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 269
+ - Id: 19654
+ AegisName: C_J_Captain_Hat
+ Name: Costume Ship Captain Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 367
+ - Id: 19655
+ AegisName: C_Tiraya_Bonnet
+ Name: Costume Tiraya Bonnet
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 398
+ - Id: 19656
+ AegisName: C_Minstrel_Hat
+ Name: Wandering Minstrel Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 240
+ - Id: 19657
+ AegisName: C_Captain_Hat
+ Name: Costume Captain Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 236
+ - Id: 19658
+ AegisName: C_Vacation_Hat
+ Name: Costume Vacation Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 315
+ - Id: 19659
+ AegisName: C_Brown_Beanie
+ Name: Costume Brown Beanie
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 279
+ - Id: 19660
+ AegisName: C_Coppola
+ Name: Costume Coppola
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 252
+ - Id: 19661
+ AegisName: C_Sweet_Bonnet
+ Name: Costume Sweet Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 938
+ - Id: 19662
+ AegisName: C_Magician_Hat
+ Name: Costume Magician Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 130
+ - Id: 19663
+ AegisName: Wishing_Sky_Lantern
+ Name: Costume Wish Lamp
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 947
+ - Id: 19664
+ AegisName: C_Campus_Festival
+ Name: Costume Campus Festival
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 721
+ - Id: 19665
+ AegisName: C_Poring_Cake_Hat
+ Name: Costume Poring Cake Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 417
+ - Id: 19666
+ AegisName: C_Cookie_Hat
+ Name: Costume Cookie Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 217
+ Script: |
+ bonus2 bAddItemHealRate,513,1100;
+ - Id: 19667
+ AegisName: C_Dragon_Helm
+ Name: Costume Dragon Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 464
+ - Id: 19668
+ AegisName: C_Wind_Milestone
+ Name: Costume Wind Milestone
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 463
+ - Id: 19669
+ AegisName: C_Reginleif_Hairband_
+ Name: Costume Reginleif Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 214
+ - Id: 19670
+ AegisName: C_Southern_Cross
+ Name: Costume Southern Cross
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 601
+ - Id: 19671
+ AegisName: C_Piggie_Bank
+ Name: Costume Piggie Bank
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 603
+ - Id: 19672
+ AegisName: C_Poring_Letter
+ Name: Costume Poring Letter
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Low: true
+ View: 604
+ - Id: 19676
+ AegisName: C_Rainbow_Poring_Hat
+ Name: Costume Rainbow Poring Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 900
+ - Id: 19677
+ AegisName: C_Soulless_Wing
+ Name: Costume Soulless Wing
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 301
+ - Id: 19678
+ AegisName: C_Bell_Ribbon
+ Name: Costume Bell Ribbon
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 388
+ - Id: 19682
+ AegisName: C_Santa_Poring_Hat
+ Name: Costume SantaPoring Cap
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 387
+ - Id: 19683
+ AegisName: C_Sweet_Candy
+ Name: Costume Sweet Candy
+ Type: Armor
+ View: 414
+ Locations:
+ Costume_Head_Low: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,5;
+ - Id: 19684
+ AegisName: C_Happy_Wig
+ Name: Costume Happy Wig
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 305
+ - Id: 19685
+ AegisName: C_ShineSantaPoring
+ Name: Costume Shining Santa Poring
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 961
+ - Id: 19686
+ AegisName: C_SantaHairband
+ Name: Costume Santa Hairband
+ Type: Armor
+ Buy: 10
+ Locations:
+ 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
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 963
+ - Id: 19689
+ AegisName: C_Ati_Atihan_Hat
+ Name: Costume Ati Atihan
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 303
+ - Id: 19690
+ AegisName: C_Dark_Snake_Lord_Hat_J
+ Name: Costume Dark Snake Lord Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 372
+ - Id: 19694
+ AegisName: C_Vane_Hairpin
+ Name: Costume Vane Hairpin
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 313
+ - Id: 19695
+ AegisName: C_Kettle_Hat
+ Name: Costume Kettle Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 318
+ - Id: 19696
+ AegisName: C_Friend_Mochiring_Hat
+ Name: Costume Friend Mochiring Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 965
+ - Id: 19697
+ AegisName: C_Rudolph_Santa_Hat
+ Name: Costume Rudolph Santa Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 619
+ - Id: 19701
+ AegisName: C_Red_Bonnet
+ Name: Costume Red Bonnet
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 190
+ - Id: 19702
+ AegisName: C_Santa_Hat_1
+ Name: Costume Twin Pompom By JB
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 390
+ - Id: 19704
+ AegisName: C_Afro_Wig_Red
+ Name: Costume Red Afro Wig
+ Type: Armor
+ View: 970
+ Locations:
+ Costume_Head_Top: true
+ - Id: 19706
+ AegisName: C_Red_Dress_Hat
+ Name: Costume Red Dress Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 670
+ - Id: 19707
+ AegisName: C_Polar_Bear_Cap
+ Name: Costume Polar Bear Cap
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 966
+ Script: |
+ bonus bUnbreakableHelm;
+ - Id: 19708
+ AegisName: C_White_Snake_Hat
+ Name: Costume White Snake Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 1
+ View: 413
+ - Id: 19709
+ AegisName: C_Yellow_Ribbon
+ Name: Costume Yellow Ribbon
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 310
+ - Id: 19710
+ AegisName: C_Wings_Of_Victory
+ Name: Costume Wings Of Victory
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 365
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19712
+ AegisName: C_Little_Angel_Doll
+ Name: Costume Little Angel Doll
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 344
+ - Id: 19713
+ AegisName: C_Lucky_Clover
+ Name: Costume Lucky Clover
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 571
+ - Id: 19714
+ AegisName: C_Lady_Tanee_Doll
+ Name: Costume Lady Tanee Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 520
+ - Id: 19715
+ AegisName: C_Scarf
+ Name: Costume Scarf
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 343
+ - Id: 19716
+ AegisName: C_Alice_Doll
+ Name: Costume Alice Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 208
+ - Id: 19717
+ AegisName: C_Pink_Ribbon
+ Name: Costume Pink Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 245
+ - Id: 19718
+ AegisName: C_Gothic_Head_Dress
+ Name: Costume Gothic Headdress
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 978
+ - Id: 19719
+ AegisName: C_Coronet
+ Name: Costume Coronet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 33
+ - Id: 19720
+ AegisName: C_Romantic_Gent
+ Name: Costume Romantic Gent
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 31
+ - Id: 19721
+ AegisName: C_Darkness_Helm
+ Name: Costume Darkness Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 586
+ - Id: 19722
+ AegisName: C_Black_Glasses
+ Name: Costume Black Glasses
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 404
+ - Id: 19723
+ AegisName: C_Sacred_Torch_Coronet
+ Name: Costume Sacred Torch Coronet
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 431
+ - Id: 19724
+ AegisName: C_Deprotai_Doll_Hat
+ Name: Costume Deprote Doll Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 354
+ - Id: 19725
+ AegisName: C_Bread_Bag
+ Name: Costume Bread Bag
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 412
+ - Id: 19726
+ AegisName: C_Scarlet_Rose
+ Name: Costume Scarlet Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 534
+ - Id: 19727
+ AegisName: C_Devilring_Hat
+ Name: Costume Devilring Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 298
+ - Id: 19728
+ AegisName: C_Tare_Zonda
+ Name: Costume Tare Zonda
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 985
+ - Id: 19729
+ AegisName: C_Neko_Mimi_Kafra
+ Name: Costume Neko Mimi Kafra
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 392
+ - Id: 19730
+ AegisName: C_Snake_Hat
+ Name: Costume Snake Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 986
+ - Id: 19731
+ AegisName: C_Satanic_Chain
+ Name: Costume Evolved Evil Wing
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 39
+ Script: |
+ bonus bStr,1;
+ bonus bAgi,1;
+ bonus bFlee,3;
+ bonus2 bSubRace,RC_Angel,3;
+ - Id: 19732
+ AegisName: C_Goblin_Mask_04
+ Name: Costume Goblin Leader Mask
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 174
+ - Id: 19733
+ AegisName: C_Panda_Cap
+ Name: Costume Panda Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 115
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bExpAddClass,Class_All,10;
+ - Id: 19734
+ AegisName: C_Binoculars
+ Name: Costume Binoculars
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 83
+ Script: |
+ bonus bDex,1;
+ - Id: 19735
+ AegisName: C_Fin_Helm
+ Name: Costume Fin Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 100
+ - Id: 19736
+ AegisName: C_Gas_Mask
+ Name: Costume Gas Mask
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 91
+ Script: |
+ bonus2 bResEff,Eff_Poison,3000;
+ - Id: 19737
+ AegisName: C_Corsair_K
+ Name: Costume Refined Corsair
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 105
+ Script: |
+ bonus bVit,3;
+ bonus bInt,3;
+ - Id: 19738
+ AegisName: C_Detective_Hat_K
+ Name: Costume Renown Detective's Cap
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 189
+ - Id: 19739
+ AegisName: C_Sleeping_Kitty_Cat
+ Name: Costume Sleeping Kitty Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 838
+ Script: |
+ bonus2 bAddRace,RC_Brute,2;
+ bonus2 bAddRace,RC_Player_Doram,2;
+ - Id: 19741
+ AegisName: C_Majestic_Devil_Horns
+ Name: Costume Majestic Devil Horns
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 562
+ - Id: 19742
+ AegisName: C_Small_Golden_Wings
+ Name: Costume Small Golden Wings
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ View: 724
+ Script: |
+ bonus2 bExpAddRace,RC_All,1;
+ - Id: 19743
+ AegisName: C_Anubis_Helm
+ Name: Costume Anubis Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 485
+ - Id: 19744
+ AegisName: C_Black_Tail_Ribbon
+ Name: Costume Black Tail Ribbon
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 642
+ - Id: 19745
+ AegisName: C_Holy_Marching_Hat_J
+ Name: Costume Holy Marching Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 587
+ - Id: 19746
+ AegisName: C_Cap_Of_Blindness
+ Name: Costume Executioner Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 326
+ - Id: 19747
+ AegisName: C_Tha_Despero_Mask_
+ Name: Costume Tha Despero Mask
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 693
+ - Id: 19748
+ AegisName: C_Diadem
+ Name: Costume Diadem
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 335
+ - Id: 19749
+ AegisName: C_Gold_Spirit_Chain
+ Name: Costume Gold Spirit Chain
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 260
+ - Id: 19750
+ AegisName: C_Saint_Frill_Ribbon
+ Name: Costume Saint Frill Ribbon
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 987
+ - Id: 19751
+ AegisName: C_Light_Darkness_Crown
+ Name: Costume Light Darkness Crown
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 988
+ - Id: 19752
+ AegisName: C_Shelter_Wing_Ears
+ Name: Costume Shelter Wing Ears
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 3
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 990
+ - Id: 19753
+ AegisName: C_Celestial_Hat
+ Name: Costume Celestial Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 462
+ - Id: 19754
+ AegisName: C_Good_Wedding_Veil
+ Name: Costume Good Wedding Veil
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 489
+ - Id: 19755
+ AegisName: C_YinYang_Earring
+ Name: Costume YinYang Earring
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 3
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 744
+ - Id: 19756
+ AegisName: C_Holy_Mom_Love
+ Name: Costume Holy Mom Love
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 610
+ - Id: 19757
+ AegisName: C_Water_Lily_Crown
+ Name: Costume Water Lily Crown
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 312
+ - Id: 19758
+ AegisName: C_Frog_King_Hat
+ Name: Costume Frog King Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 522
+ - Id: 19759
+ AegisName: C_Umbrella_Hat
+ Name: Costume Umbrella Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 338
+ - Id: 19760
+ AegisName: C_Rainbow_Veil
+ Name: Costume Rainbow Veil
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 992
+ - Id: 19761
+ AegisName: C_White_Lily
+ Name: Costume White Lily
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 993
+ - Id: 19762
+ AegisName: C_Happy_Peace_Proof
+ Name: Costume Happy Peace Proof
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 994
+ - Id: 19763
+ AegisName: C_Leaf_Cat_Hat
+ Name: Costume Leaf Cat Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 539
+ - Id: 19764
+ AegisName: C_Monster_Card
+ Name: Costume Monster Card
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ View: 526
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 19765
+ AegisName: C_Wing_Angels_Ears
+ Name: Costume Wing Angels Ears
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 158
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 19767
+ AegisName: C_Home_Cherry_Blossom
+ Name: Costume Home Cherry Blossom
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 602
+ - Id: 19768
+ AegisName: C_Sakura_Coronet
+ Name: Costume Sakura Coronet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 645
+ - Id: 19769
+ AegisName: C_Elf_Ears
+ Name: Costume Elf Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 405
+ - Id: 19770
+ AegisName: C_Sake
+ Name: Costume Sake
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 557
+ - Id: 19771
+ AegisName: C_Butterfly_Hairpin
+ Name: Costume Buterfly Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 723
+ - Id: 19772
+ AegisName: C_Honeybee_Hat
+ Name: Costume Honeybee Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 709
+ - Id: 19773
+ AegisName: C_Angeling_Pin
+ Name: Costume Angeling Pin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 222
+ - Id: 19774
+ AegisName: C_Laurel
+ Name: Costume Laurel
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 261
+ - Id: 19775
+ AegisName: C_Marvelous_Wig
+ Name: Costume Dokebi Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 307
+ - Id: 19776
+ AegisName: C_Tomboy_Fairy
+ Name: Costume Tomboy Fairy
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 998
+ - Id: 19777
+ AegisName: C_Twinkle_Little_Star
+ Name: Costume Shiny Small Star
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1005
+ - Id: 19778
+ AegisName: C_King_Berry
+ Name: Costume King Berry
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 968
+ - Id: 19779
+ AegisName: C_Persika
+ Name: Costume Persika
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 659
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bExpAddClass,Class_All,10;
+ - Id: 19780
+ AegisName: C_Rabbit_Ear_Knit_Hat
+ Name: Costume Knit Rabbit Ears
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 867
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ - Id: 19781
+ AegisName: C_Ear_Of_Angel's_Wing_
+ Name: Costume Angel Wing Ears
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 158
+ - Id: 19782
+ AegisName: C_Drooping_Kitty
+ Name: Costume Refined Drooping Cat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 142
+ - Id: 19783
+ AegisName: C_Granpa_Beard
+ Name: Costume Grampa Beard
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 25
+ - Id: 19784
+ AegisName: C_Morrigane's_Helm
+ Name: Costume Morrigane's Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 257
+ - Id: 19785
+ AegisName: C_Well_Baked_Toast
+ Name: Costume Crunch Toast
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 188
+ - Id: 19786
+ AegisName: C_Mistress_Crown
+ Name: Costume Crown of Mistress
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 165
+ - Id: 19787
+ AegisName: C_Devoted_Eyes
+ Name: Costume Devoted Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1021
+ - Id: 19788
+ AegisName: C_Heart_Eyebandage
+ Name: Costume Heart Eyebandage
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 779
+ - Id: 19789
+ AegisName: C_Sweet_Gents
+ Name: Costume Sweet Gent
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 29
+ - Id: 19790
+ AegisName: C_Wedding_Veil
+ Name: Costume Wedding Veil
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 44
+ - Id: 19791
+ AegisName: C_Alarm_Mask
+ Name: Costume Alarm Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 170
+ - Id: 19792
+ AegisName: C_Goblin_Mask_01
+ Name: Costume Poker Face
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 171
+ - Id: 19793
+ AegisName: C_Goblin_Mask_02
+ Name: Costume Surprised Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 172
+ - Id: 19794
+ AegisName: C_Goblin_Mask_03
+ Name: Costume Annoyed Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 173
+ - Id: 19795
+ AegisName: C_Lord_Circlet
+ Name: Costume Grand Circlet
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 93
+ - Id: 19796
+ AegisName: C_Bone_Helm
+ Name: Costume Bone Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 103
+ - Id: 19797
+ AegisName: C_Apple_Of_Archer
+ Name: Costume Apple of Archer
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 72
+ - Id: 19798
+ AegisName: C_Angry_Mouth
+ Name: Costume Angry Snarl
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 194
+ - Id: 19799
+ AegisName: C_Golden_Gear
+ Name: Costume Golden Gear
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 30
+ - Id: 19800
+ AegisName: C_Carnation_Hairband
+ Name: Costume Carnation Headband
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 878
+ - Id: 19801
+ AegisName: C_Foxhat
+ Name: Costume Foxhat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 403
+ - Id: 19802
+ AegisName: C_Lazy_Ninetail
+ Name: Costume Lazy Ninetail
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 296
+ - Id: 19803
+ AegisName: C_Windtoy_Hat
+ Name: Costume Windtoy Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 456
+ - Id: 19804
+ AegisName: C_Red_Vane_Hairpin
+ Name: Costume Red Vane Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1044
+ - Id: 19805
+ AegisName: C_Taboo_Curse_Scroll
+ Name: Costume Curse Scroll
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1045
+ - Id: 19806
+ AegisName: C_Full_Bloom_Hairpin
+ Name: Costume Bloom Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1046
+ - Id: 19807
+ AegisName: C_Majestihelm
+ Name: Costume Majestihelm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1047
+ - Id: 19808
+ AegisName: C_Blazing_Sun
+ Name: Costume Blazing Sun
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 654
+ - Id: 19809
+ AegisName: C_Cowboy_Hat_J
+ Name: Costume Purple Cowboy Hat
+ Type: Armor
+ View: 411
+ Locations:
+ Costume_Head_Top: true
+ - Id: 19810
+ AegisName: C_Ifrit_Ear
+ Name: Costume Ifrit Ear
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 422
+ - Id: 19811
+ AegisName: C_Beer_Hat
+ Name: Costume Beer Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 418
+ - Id: 19812
+ AegisName: C_Big_Hibiscus
+ Name: Costume Big Hibiscus
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 333
+ - Id: 19813
+ AegisName: C_Icecream_Hat
+ Name: Costume Icecream Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 488
+ - Id: 19814
+ AegisName: C_Bright_Wig
+ Name: Costume Bright Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 306
+ - Id: 19815
+ AegisName: C_Lolita_Ten_Gallon_Hat
+ Name: Costume Lolita Ten Gallon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1048
+ - Id: 19816
+ AegisName: C_Pecopeco_Cap
+ Name: Costume Pecopeco Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1049
+ - Id: 19817
+ AegisName: C_Ifrits_Breath
+ Name: Costume Ifrits Breath
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1050
+ - Id: 19818
+ AegisName: C_Drooping_Morooc_Minion
+ Name: Costume Drooping Morooc Minion
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 600
+ - Id: 19819
+ AegisName: C_Gang_Doogun
+ Name: Costume Gang Doogun
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 491
+ - Id: 19821
+ AegisName: C_Hyegun_Hat
+ Name: Costume Yao Jun
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 375
+ - Id: 19822
+ AegisName: C_Yellow_Doogun
+ Name: Costume Yellow Doogun
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 309
+ - Id: 19823
+ AegisName: C_White_Cat_Hood
+ Name: Costume White Cat Hood
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1052
+ - Id: 19824
+ AegisName: C_Evil_Druid_Hat
+ Name: Costume Evil Druid Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1053
+ - Id: 19825
+ AegisName: C_Vicious_Stop_Bandage
+ Name: Costume Vicious Stop Bandage
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1054
+ - Id: 19826
+ AegisName: C_Ice_Wing_Ear
+ Name: Costume Ice Wing Ear
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 584
+ - Id: 19827
+ AegisName: C_Amistr_Cap
+ Name: Costume Amistr
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 643
+ - Id: 19828
+ AegisName: C_Fedora
+ Name: Costume Bucket Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 195
+ - Id: 19829
+ AegisName: C_Straw_Hat
+ Name: Costume Straw Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 146
+ - Id: 19830
+ AegisName: C_Sunglasses
+ Name: Costume Sunglasses
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 12
+ - Id: 19831
+ AegisName: C_Filir_Hat
+ Name: Costume Filir Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 408
+ - Id: 19832
+ AegisName: C_Poring_Hat
+ Name: Costume Poring Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 120
+ - Id: 19833
+ AegisName: C_Fillet
+ Name: Costume Fillet
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 34
+ - Id: 19834
+ AegisName: C_Baseball_Cap
+ Name: Costume Baseball Cap
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 216
+ - Id: 19835
+ AegisName: C_Lif_Doll_Hat
+ Name: Costume Lif Doll Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 297
+ - Id: 19836
+ AegisName: C_L_Magestic_Goat
+ Name: Costume Majestic Goat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 380
+ - Id: 19837
+ AegisName: C_Asara_Fairy
+ Name: Costume Asara Fairy Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 492
+ - Id: 19839
+ AegisName: C_Vanilmirth_Hat
+ Name: Costume Vanilmirth Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 317
+ - Id: 19841
+ AegisName: C_Dragonhelm_Copper
+ Name: Costume Dragon Helm Copper
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 454
+ - Id: 19842
+ AegisName: C_Puppy_Hat
+ Name: Costume Puppy Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 234
+ - Id: 19843
+ AegisName: C_Cat_Hairband
+ Name: Costume Kitty Band
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 2
+ - Id: 19844
+ AegisName: C_Turban
+ Name: Costume Turban
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 7
+ - Id: 19845
+ AegisName: C_Hair_Protector
+ Name: Costume Bao Bao
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 127
+ - Id: 19846
+ AegisName: C_Opera_Ghost_Mask
+ Name: Costume Opera Masque
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 128
+ - Id: 19847
+ AegisName: C_Big_Sis_Ribbon
+ Name: Costume Big Ribbon
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 28
+ - Id: 19848
+ AegisName: C_Angeling_Hat
+ Name: Costume Angeling Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 204
+ - Id: 19849
+ AegisName: C_Munak_Turban
+ Name: Costume Munak Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 51
+ - Id: 19850
+ AegisName: C_Bongun_Hat
+ Name: Costume Bongun Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 139
+ - Id: 19851
+ AegisName: C_Brown_Bear_Cap
+ Name: Costume Teddybear Hat
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 143
+ - Id: 19852
+ AegisName: C_Galapago_Cap
+ Name: Costume Galapago Cap
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 192
+ - Id: 19853
+ AegisName: C_Filir_Wing_Ears
+ Name: Costume Filir Wings
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 595
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,5;
+ - Id: 19854
+ AegisName: C_Ear_Of_Black_Cat_
+ Name: Costume Black Cat Ears
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 141
+ - Id: 19856
+ AegisName: C_Iceflake_Hat
+ Name: Costume Snow Cone Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1080
+ Script: |
+ bonus2 bAddEle,Ele_Fire,5;
+ bonus2 bMagicAddEle,Ele_Fire,5;
+ bonus2 bAddMonsterDropItem,11589,5;
+ - Id: 19857
+ AegisName: C_King_Prawn_Hat
+ Name: Costume Crayfish Hat
+ Type: Armor
+ Buy: 10
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 728
+ - Id: 19858
+ AegisName: C_Leaf_Headgear
+ Name: Costume Smokie Leaf
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 148
+ - Id: 19859
+ AegisName: C_Flying_Angel
+ Name: Costume Flying Angel
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 264
+ - Id: 19860
+ AegisName: C_Cryptura_Hair_Cap
+ Name: Costume School Criatura Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 872
+ - Id: 19861
+ AegisName: C_Heart_Hair_Pin
+ Name: Costume Heart Hairpin
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 126
+ - Id: 19862
+ AegisName: C_Horn_Of_Succubus
+ Name: Costume Succubus Horn
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 150
+ - Id: 19863
+ AegisName: C_Inccubus_Horn
+ Name: Costume Incubus Horn
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 156
+ - Id: 19864
+ AegisName: C_Dokebi's_Wig
+ Name: Costume Dokebi's Wig
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ View: 302
+ - Id: 19865
+ AegisName: C_Joker_Jester
+ Name: Costume Joker Jester
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 89
+ - Id: 19866
+ AegisName: C_Blue_Pajamas_Hat
+ Name: Costume Blue Pajamas
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 501
+ - Id: 19871
+ AegisName: C_Music_Decoration
+ Name: Costume Decoration of Music
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Mid: true
+ View: 1074
+ Trade:
+ Override: 100
+ NoDrop: true
+ EquipScript: |
+ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_DECORATION_OF_MUSIC;
+ - Id: 19874
+ AegisName: C_Carnival_Circlet
+ Name: Costume Carnival Circlet
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ View: 506
+ - Id: 19875
+ AegisName: C_Love_Rabbit_Hood
+ Name: Costume Love Rabbit Hood
+ Type: Armor
+ View: 549
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 19876
+ AegisName: C_Rabbit_Ear_Hat
+ Name: Costume Bunny Top Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 384
+ - Id: 19877
+ AegisName: C_Eyes_Of_Darkness
+ Name: "Costume: Eyes Of Darkness"
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 467
+ - Id: 19878
+ AegisName: C_Drooping_Bunny
+ Name: Costume Evolved Drooping Bunny
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 249
+ - Id: 19881
+ AegisName: C_Pretty_Rabbit_Hood
+ Name: Costume Pretty Rabbit Hood
+ Type: Armor
+ View: 1085
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 19882
+ AegisName: C_Flowerpot_Mask
+ Name: Costume Flowerpot Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1086
+ - Id: 19883
+ AegisName: C_Piamette_Hood
+ Name: Costume Piamette Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1087
+ - Id: 19884
+ AegisName: C_Vanargandr_Helm
+ Name: Costume Vanargand Helm
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 804
+ - Id: 19885
+ AegisName: C_Blinker
+ Name: Costume Blinker
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 82
+ - Id: 19886
+ AegisName: C_Luxury_Sunglasses
+ Name: Costume Purple Glasses
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 26
+ - Id: 19887
+ AegisName: C_One_Eyed_Glass
+ Name: Costume Cyclops Glasses
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 23
+ - Id: 19888
+ AegisName: C_Glasses
+ Name: Costume Glasses
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 3
+ - Id: 19889
+ AegisName: C_Pair_Of_Red_Ribbon
+ Name: Costume Small Ribbons
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 169
+ - Id: 19902
+ AegisName: C_Cigar
+ Name: Costume Cigarette
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 54
+ - Id: 19903
+ AegisName: C_Witchs_Hat
+ Name: Costume Witch's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 717
+ Script: |
+ bonus bVariableCastrate,-10;
+ - Id: 19910
+ AegisName: C_Halloween_Hat
+ Name: Costume Halloween Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Refineable: true
+ View: 1098
+ - Id: 19912
+ AegisName: C_Cat_Eye
+ Name: "Costume: Cat eye"
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1100
+ - Id: 19913
+ AegisName: C_Poo_Poo_Hat
+ Name: Costume Poo Poo Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Refineable: true
+ View: 76
+ - Id: 19914
+ AegisName: Felock_Cap
+ Name: Felrock's Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1101
+ - Id: 19916
+ AegisName: C_Black_Cat_Hat
+ Name: Costume Black Cat Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1105
+ - Id: 19917
+ AegisName: C_Gloomy_Pumpkin_Hat
+ Name: Costume Pumpkin Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 691
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 19918
+ AegisName: C_Lude_Mask
+ Name: Costume Lude Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 802
+ Script: |
+ bonus bAddItemHealRate,20;
+ - Id: 19919
+ AegisName: C_Cube_Mask_
+ Name: Costume Quve Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 472
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 19920
+ AegisName: C_Adv_Whisper_Mask
+ Name: Costume Evolved Whisper Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 458
+ Script: |
+ bonus bFlee,20;
+ - Id: 19922
+ AegisName: C_Noah_Hat
+ Name: Costume Noah's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 636
+ - Id: 19925
+ AegisName: C_One_Eyed_Glasses
+ Name: Costume Monocle
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 807
+ - Id: 19928
+ AegisName: C_Gothic_Heart_Wing
+ Name: Costume Gothic Heart Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1111
+ - Id: 19929
+ AegisName: C_Classical_Ribbon
+ Name: Costume Classical Ribbon
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1112
+ - Id: 19930
+ AegisName: C_Angel_Mini_Silk_Hat
+ Name: Costume Angel Mini Silk Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1113
+ - Id: 19931
+ AegisName: C_Lazy_Raccoon
+ Name: Costume Lazy Smokie
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 168
+ - Id: 19932
+ AegisName: C_Cap_Of_Concentration
+ Name: Costume Model Training Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 157
+ - Id: 19934
+ AegisName: C_10Gallon_Hat_Of_Flame
+ Name: Costume Alive Ten Gallon Hat Of Flame
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1075
+ - Id: 19935
+ AegisName: C_Hunting_Cap_Of_Gust
+ Name: Costume Hunting Cap Of Gust
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1076
+ - Id: 19936
+ AegisName: C_Knit_Cap_Of_Water
+ Name: Costume Knit Cap Of Water
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1077
+ - Id: 19937
+ AegisName: C_Silk_Hat_Of_Earth
+ Name: Costume Silk Hat of Earth
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1078
+ - Id: 19938
+ AegisName: LI_C_Love_Rabbit_Hood
+ Name: Costume Love Rabbit Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 549
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 19939
+ AegisName: C_Antler
+ Name: Costume Antlers
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 71
+ - Id: 19941
+ AegisName: C_Ear_Mufs
+ Name: Costume Ear Muffs
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 70
+ - Id: 19949
+ AegisName: C_RWC2013_Japan_Hat
+ Name: Costume RWC2013 Japan Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1136
+ - Id: 19951
+ AegisName: C_Solo_Play_Box2
+ Name: Costume Cardboard Box
+ Type: Armor
+ View: 450
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 19952
+ AegisName: C_Bubble_Gum_in_Mouth
+ Name: Costume Bubble Gum in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 572
+ - Id: 19953
+ AegisName: C_Parade_Cap
+ Name: Costume Parade Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 465
+ - Id: 19954
+ AegisName: C_3D_Glasses
+ Name: Costume 3D Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ - Id: 19955
+ AegisName: C_Mini_Tree_J
+ Name: Costume Mini Tree J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 727
+ - Id: 19956
+ AegisName: C_Soldier_Hat
+ Name: Costume Soldier Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 420
+ - Id: 19957
+ AegisName: C_Scooter_Hat
+ Name: Costume Scooter Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 588
+ - Id: 19958
+ AegisName: C_Choir_Hat
+ Name: Costume Choir Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1137
+ - Id: 19959
+ AegisName: C_Drooping_Argiope
+ Name: Costume Drooping Argiope
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1138
+ - Id: 19960
+ AegisName: C_Chain_Puppet
+ Name: Costume Chain Puppet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1139
+ - Id: 19961
+ AegisName: C_Rune_Circlet
+ Name: Costume Rune Circlet
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 623
+ - Id: 19962
+ AegisName: C_Mitra
+ Name: Costume Mitra
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 624
+ - Id: 19963
+ AegisName: C_Driver_Band_R
+ Name: Costume Driver Band(Red)
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 626
+ - Id: 19964
+ AegisName: C_Driver_Band_Y
+ Name: Costume Driver Band(Yellow)
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 637
+ - Id: 19965
+ AegisName: C_Shadow_Handicraft
+ Name: Costume Shadow Handicraft
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 627
+ - Id: 19966
+ AegisName: C_Minstrel_Song_Hat
+ Name: Costume Minstrel Song's Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 628
+ - Id: 19967
+ AegisName: C_Midas_Whisper
+ Name: Costume Midas Whisper
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 629
+ - Id: 19968
+ AegisName: C_Magic_Stone_Hat
+ Name: Costume Magic Stone Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 630
+ - Id: 19969
+ AegisName: C_Blazing_Soul
+ Name: Costume Blazing Soul
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 631
+ - Id: 19970
+ AegisName: C_Wind_Whisper
+ Name: Costume Wind Whisper
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 633
+ - Id: 19971
+ AegisName: C_Dying_Swan
+ Name: Costume Dying Swan
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 635
+ - Id: 19972
+ AegisName: C_Protect_Of_Crown
+ Name: Costume Protect Of Crown
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1140
+ - Id: 19973
+ AegisName: C_Circlet_Of_Bone
+ Name: Costume Circlet Of Bones
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1141
+ - Id: 19974
+ AegisName: C_Camouflage_RabbitHood
+ Name: Costume Camouflage Rabbit Hood
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1142
+ - Id: 19976
+ AegisName: C_Cat_Santa_Hat
+ Name: Cat Santa Hat
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1144
+ Script: |
+ bonus bAspdRate,10;
+ bonus bSpeedRate,25;
+ - Id: 19977
+ AegisName: C_Golden_Exclamation
+ Name: Costume Golden Exclamation Mark
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1145
+ - Id: 19978
+ AegisName: C_Silver_Exclamation
+ Name: Costume Silver Exclamation Mark
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1146
+ - Id: 19979
+ AegisName: C_Golden_Question
+ Name: Costume Golden Question Mark
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1147
+ - Id: 19980
+ AegisName: C_Silver_Question
+ Name: Costume Silver Question Mark
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1148
+ - Id: 19982
+ AegisName: C_Santa's_Hat
+ Name: Costume Santa Hat
+ Type: Armor
+ 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
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 145
+ - Id: 19984
+ AegisName: C_Winter_Hat
+ Name: Costume Fashion Winter Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 196
+ - Id: 19985
+ AegisName: C_Aura_Quartz_Crown
+ Name: Costume Aura Quartz
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 866
+ - Id: 19986
+ AegisName: C_Lunatic_Hat
+ Name: Costume Lunatic Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 521
+ - Id: 19987
+ AegisName: C_Blue_Fur_Hat
+ Name: Costume Blue Fur Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 280
+ - Id: 19988
+ AegisName: C_Elder_Crown
+ Name: Costume Elder Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 933
+ - Id: 19989
+ AegisName: C_Mouton_Life
+ Name: Costume Mouton Life
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1156
+ - Id: 19990
+ AegisName: C_Snow_Rabbit_Knit_Hat
+ Name: Costume Rabbit Knit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1157
+ - Id: 19991
+ AegisName: C_Galanthus_Guard
+ Name: Costume Galanthus Guard
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1158
+ - Id: 19992
+ AegisName: C_Chilly_Breath
+ Name: Costume Chilly Breath
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 885
+ - Id: 19994
+ AegisName: C_saLUsalo_Hat
+ Name: Costume saLUsalo Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1171
+ - Id: 19996
+ AegisName: Horse_King
+ Name: Horse King
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1189
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 19997
+ AegisName: C_Bomb_Hat
+ Name: Costume Bomb Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1191
+ - Id: 19998
+ AegisName: C_Dragon_Turtle_Hat
+ Name: Costume Dragon Turtle Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1192
+ - Id: 19999
+ AegisName: C_Mouse_Hat1
+ Name: Costume Mouse Hat 1
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1193
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20000
+ AegisName: C_Mouse_Hat2
+ Name: Costume Mouse Hat 2
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1194
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20001
+ AegisName: C_Mouse_Hat3
+ Name: Costume Mouse Hat 3
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1195
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20002
+ AegisName: C_Mouse_Hat4
+ Name: Costume Mouse Hat 4
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1196
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20003
+ AegisName: C_Mouse_Hat5
+ Name: Costume Mouse Hat 5
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1197
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20004
+ AegisName: C_Big_Golden_Bell
+ Name: Costume Big Golden Bell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 175
+ - Id: 20005
+ AegisName: C_Pegasus_Wing_Ears
+ Name: Costume Sigrun Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 568
+ - Id: 20006
+ AegisName: C_Dark_Knight_Mask
+ Name: Costume Dark Knight Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 479
+ - Id: 20007
+ AegisName: C_Bullock_Helm_J
+ Name: Costume Horned Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 322
+ - Id: 20008
+ AegisName: C_General_Helmet
+ Name: Costume Dragon General Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 729
+ - Id: 20009
+ AegisName: C_Dragon_Skull
+ Name: Costume Dragon Skull Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 319
+ - Id: 20010
+ AegisName: C_Rainbow_Wing_Ears
+ Name: Costume Rainbow Ears Feather
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1198
+ - Id: 20011
+ AegisName: C_Lightning_Speed
+ Name: Costume Lightning Speed
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1199
+ - Id: 20012
+ AegisName: C_Double_Horn_Helm
+ Name: Costume Double Horn Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1200
+ - Id: 20013
+ AegisName: C_Chef_Hat
+ Name: Costume Chef Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 111
+ - Id: 20014
+ AegisName: Lincoln_Hat
+ Name: Costume Lincoln Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1204
+ - Id: 20015
+ AegisName: Lincoln_Beard
+ Name: Costume Lincoln Beard
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ View: 1205
+ - Id: 20016
+ AegisName: Lobster_Hat
+ Name: Costume Cool Dinner Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1206
+ - Id: 20017
+ AegisName: C_Marionette_Doll
+ Name: Costume Marionette Doll
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 212
+ - Id: 20018
+ AegisName: C_Holo_Ear
+ Name: Costume Holo Ear
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1208
+ - Id: 20019
+ AegisName: Beret_Of_Artist
+ Name: Costume Beret Of Artist
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1209
+ - Id: 20020
+ AegisName: C_Zaha_Doll_Hat
+ Name: Costume Zaha Doll Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 461
+ - Id: 20021
+ AegisName: C_Heart_Ribbon_Hairband
+ Name: Costume Heart Ribbon Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 708
+ - Id: 20022
+ AegisName: C_Love_Piece
+ Name: Costume Love Fragment
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 734
+ - Id: 20023
+ AegisName: C_Red_Beret
+ Name: Costume Red Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 559
+ - Id: 20024
+ AegisName: C_Orange_Ribbon
+ Name: Costume Orange Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 247
+ - Id: 20025
+ AegisName: C_Cow_Hat1
+ Name: Costume Cow Hat 1
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1211
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddMonsterDropItem,519,100;
+ - Id: 20026
+ AegisName: C_Cow_Hat2
+ Name: Costume Cow Hat 2
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1212
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddMonsterDropItem,519,100;
+ - Id: 20027
+ AegisName: C_Cow_Hat3
+ Name: Costume Cow Hat 3
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1213
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddMonsterDropItem,519,100;
+ - Id: 20028
+ AegisName: C_Cow_Hat4
+ Name: Costume Cow Hat 4
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1214
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ bonus2 bAddMonsterDropItem,519,100;
+ - Id: 20029
+ AegisName: C_Donut_in_Mouth
+ Name: Costume Donut in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 569
+ - Id: 20030
+ AegisName: C_Choco_Donut_in_Mouth
+ Name: Costume Choco Donut in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 653
+ - Id: 20031
+ AegisName: C_Bunny_Head_Dress
+ Name: Costume Bunny Headress
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1215
+ - Id: 20032
+ AegisName: C_Firinto_Scarf
+ Name: Costume Firinto Scarf
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1216
+ - Id: 20033
+ AegisName: C_Buddhist_Priest_Crown
+ Name: Costume Monk Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1217
+ - Id: 20034
+ AegisName: C_Jack_Castle_Bat
+ Name: Costume Jack Castle Bat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1041
+ - Id: 20035
+ AegisName: C_Miracle_Blue_Rose
+ Name: Costume Miracle Blue Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1064
+ - Id: 20036
+ AegisName: C_Sword_Master_Crown
+ Name: Costume Sword Master Crown
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 981
+ - Id: 20037
+ AegisName: C_Owlduke_Silk_Hat
+ Name: Costume Owlduke Silk Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 982
+ - Id: 20038
+ AegisName: C_Alphonse_Helmet
+ Name: Costume Alphonse Helmet
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ View: 1214
+ - Id: 20039
+ AegisName: C_Butterfly_Wing_Ear_J
+ Name: Costume Butterfly Wing Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 695
+ - Id: 20040
+ AegisName: C_Rose_Crown
+ Name: Costume Chung Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 583
+ - Id: 20041
+ AegisName: C_Earth_Goddess_Flower
+ Name: Costume Rose Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 864
+ - Id: 20042
+ AegisName: C_Hermose_Cap
+ Name: Costume Hermos Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 478
+ - Id: 20043
+ AegisName: C_Red_Cherry_Blossom
+ Name: Costume Cherryblossom in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 823
+ - Id: 20044
+ AegisName: C_Carmen_Miranda_Hat
+ Name: Costume Carmen Miranda's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 329
+ - Id: 20045
+ AegisName: C_Samambaia
+ Name: Costume Samambaia
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 508
+ - Id: 20046
+ AegisName: C_Decoration_bluerose
+ Name: Costume Blue Ribbon Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1222
+ - Id: 20047
+ AegisName: C_Pray_Cherry_Blossom
+ Name: Costume Prayer Cherry Blossom
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1223
+ - Id: 20048
+ AegisName: C_Wind_Of_The_Prairie
+ Name: Costume Wind Prairie
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1224
+ - Id: 20049
+ AegisName: C_Plaster
+ Name: Costume Giant Band Aid
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 147
+ - Id: 20050
+ AegisName: C_Ph.D_Hat
+ Name: Costume Ph.D Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 98
+ - Id: 20051
+ AegisName: C_Stop_Post
+ Name: Costume Stop Post
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 59
+ - Id: 20052
+ AegisName: C_AFK_Hat
+ Name: Costume AFK Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 471
+ - Id: 20053
+ AegisName: C_W_King_Tiger_Doll_Hat
+ Name: Costume White King Tiger Doll Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 973
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20054
+ AegisName: C_Baby_Pacifier
+ Name: Costume Baby Pacifier
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 191
+ - Id: 20055
+ AegisName: C_Ghost_Bandana
+ Name: Costume Ghost Bandana
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 61
+ - Id: 20056
+ AegisName: C_Bride_Corolla
+ Name: Costume Bride's Corolla
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 437
+ - Id: 20057
+ AegisName: C_Feather_Bonnet
+ Name: Costume Feather Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 104
+ - Id: 20058
+ AegisName: C_Hot_Blood_Headband
+ Name: Costume Hot Blood Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 154
+ - Id: 20059
+ AegisName: C_Welding_Mask
+ Name: Costume Welding Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 79
+ - Id: 20060
+ AegisName: C_Construction_Helmet
+ Name: Costume Construction Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 95
+ - Id: 20061
+ AegisName: C_Demo_Mask
+ Name: Costume Demo Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 52
+ - Id: 20062
+ AegisName: C_Angel_Stair
+ Name: Costume Angel Stair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ EquipScript: |
+ sc_start SC_HAT_EFFECT,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_HAT_EFFECT;
+ - Id: 20063
+ AegisName: C_Yellow_Brain_Hat
+ Name: Costume Yellow Brain Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1228
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20064
+ AegisName: C_Blue_Brain_Hat
+ Name: Costume Blue Brain Hat
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1229
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20065
+ AegisName: C_Hairband_Of_Grandpeco
+ Name: Costume Grand Peco Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 473
+ - Id: 20066
+ AegisName: C_Pecopeco_Hairband
+ Name: Costume Pecopeco Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 314
+ - Id: 20067
+ AegisName: C_White_Rabbit_Headband
+ Name: Costume White Rabbit Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 719
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20068
+ AegisName: C_Black_Rabbit_Headband
+ Name: Costume Black Rabbit Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 718
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20069
+ AegisName: C_Gryphon_Hairband
+ Name: Costume Gryphon Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1233
+ - Id: 20070
+ AegisName: C_Alpaca_Hood
+ Name: Costume Alpaca Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1234
+ - Id: 20071
+ AegisName: C_Worg_In_Mouth
+ Name: Costume Worg In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1235
+ - Id: 20073
+ AegisName: C_Hair_Band
+ Name: Costume Hair Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 9
+ - Id: 20074
+ AegisName: C_Biretta
+ Name: Costume Biretta
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 11
+ - Id: 20075
+ AegisName: C_Little_Fhat
+ Name: Costume Little Feather Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 715
+ - Id: 20076
+ AegisName: C_Idun_Wing_Ears
+ Name: Costume Idun Feather Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 724
+ - Id: 20077
+ AegisName: C_Wing_Form_Spectacle
+ Name: Costume Wing Frame Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 925
+ - Id: 20078
+ AegisName: C_White_Feather
+ Name: Costume White Feather
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 741
+ - Id: 20079
+ AegisName: C_Love_Daddy_2013
+ Name: Costume Forgotten Angel Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1104
+ - Id: 20080
+ AegisName: C_Shaman's_Hair_Orna
+ Name: Costume Shaman Hair Ornament
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 476
+ - Id: 20081
+ AegisName: C_Metal_Dragon_Helm
+ Name: Costume Metal Dragon Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1242
+ - Id: 20082
+ AegisName: C_Metal_Dragon_Hat
+ Name: Costume Metal Dragon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1243
+ - Id: 20083
+ AegisName: C_Mythlit_Hat
+ Name: Costume Mythlit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1244
+ - Id: 20084
+ AegisName: C_Clover_Coronet
+ Name: Costume Ceremonial Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 325
+ - Id: 20085
+ AegisName: C_Clover_Silkhat
+ Name: Costume St Patrick's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 735
+ - Id: 20086
+ AegisName: C_Dragon_Cintamani_Hat1
+ Name: Costume Dragon Cintamani Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1245
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20087
+ AegisName: C_Dragon_Cintamani_Hat2
+ Name: Costume Dragon Cintamani Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1246
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20088
+ AegisName: C_Dragon_Cintamani_Hat3
+ Name: Costume Dragon Cintamani Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1247
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20089
+ AegisName: C_Dragon_Cintamani_Hat4
+ Name: Costume Dragon Cintamani Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1248
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20090
+ AegisName: C_Egg_Shell
+ Name: Costume Egg Shell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 101
+ - Id: 20091
+ AegisName: C_Smoking_Pipe
+ Name: Costume Pipe
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 55
+ - Id: 20092
+ AegisName: C_Sales_Signboard
+ Name: Costume Sales Banner
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 183
+ - Id: 20093
+ AegisName: C_Star_Sparkling
+ Name: Costume Wizard Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 36
+ - Id: 20094
+ AegisName: C_Fillet_Green
+ Name: Costume Green Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 439
+ - Id: 20095
+ AegisName: C_Fillet_Red
+ Name: Costume Red Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 440
+ - Id: 20096
+ AegisName: C_Fillet_Blue
+ Name: Costume Blue Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 441
+ - Id: 20097
+ AegisName: C_Fillet_White
+ Name: Costume White Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 442
+ - Id: 20098
+ AegisName: C_Vampire_Hairband
+ Name: Costume Vampire Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1238
+ - Id: 20099
+ AegisName: C_Ljosalfar
+ Name: Flying Ljosalfar
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1239
+ EquipScript: |
+ sc_start SC_LJOSALFAR,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_LJOSALFAR;
+ - Id: 20100
+ AegisName: C_Volume_Fhat
+ Name: Costume Volume Fhat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1240
+ - Id: 20101
+ AegisName: C_Bragi_Wing_Ears
+ Name: Costume Bragi Wing Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1241
+ - Id: 20102
+ AegisName: C_Horse_King_J
+ Name: Costume Horse King J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1189
+ - Id: 20103
+ AegisName: C_Drooping_Panda
+ Name: Costume Drooping Panda
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1029
+ - Id: 20104
+ AegisName: C_Picky_Egg_Shell
+ Name: Costume Picky Egg Shell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1001
+ - Id: 20105
+ AegisName: C_Fish_Head_Hat
+ Name: Costume Fish Head
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 386
+ - Id: 20106
+ AegisName: C_Classic_Hat
+ Name: Costume Classic Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 475
+ - Id: 20107
+ AegisName: C_Fish_In_Mouth
+ Name: Costume Fish In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 406
+ - Id: 20108
+ AegisName: C_Blind_Glasses
+ Name: Costume Blind Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 813
+ - Id: 20109
+ AegisName: C_Jolly_Roger
+ Name: Costume Jolly Roger Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 962
+ - Id: 20110
+ AegisName: C_Coiledup_Snake
+ Name: Costume Coiledup Snake
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1258
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20111
+ AegisName: C_Coiledup_Snake_Hat2
+ Name: Costume Coiledup Snake Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1259
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20112
+ AegisName: C_Aqua_Ten_Gallon_Hat
+ Name: Costume Aqua Ten Gallon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1256
+ - Id: 20113
+ AegisName: C_Star_Reading_Hat
+ Name: Costume Star Reading Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1253
+ - Id: 20114
+ AegisName: C_Funeral_Costume
+ Name: Costume Funeral Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 77
+ - Id: 20115
+ AegisName: C_Under_Rim_Glasses
+ Name: Under Rim Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1255
+ - Id: 20116
+ AegisName: C_Mermaid_Headphone
+ Name: Mermaid Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1254
+ - Id: 20117
+ AegisName: C_Raspberry_Mousse_Hat
+ Name: Raspberry Mousse Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1257
+ - Id: 20118
+ AegisName: C_Hat_Of_Cake
+ Name: Costume Cake Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 109
+ - Id: 20119
+ AegisName: C_Fur_Hat
+ Name: Costume Beanie
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 160
+ - Id: 20120
+ AegisName: C_Antenna
+ Name: Costume Aerial
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 97
+ - Id: 20121
+ AegisName: C_Lotus_Flower_Hat
+ Name: Costume Flower Lily
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 324
+ - Id: 20122
+ AegisName: Happy_Summer_Ribbon
+ Name: Costume Happy Summer Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1260
+ - Id: 20123
+ AegisName: C_Eagle_Eyes
+ Name: Costume Eagle Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 63
+ - Id: 20124
+ AegisName: C_Masquerade
+ Name: Costume Masquerade
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 78
+ - Id: 20125
+ AegisName: C_Mini_Glasses
+ Name: Costume Mini Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 47
+ - Id: 20126
+ AegisName: C_Odium_Thanatos_Mask
+ Name: Costume Odium Thanatos Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 667
+ - Id: 20127
+ AegisName: C_Abysmal_Knight_Helm
+ Name: Costume Abysmal Knight Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 371
+ - Id: 20128
+ AegisName: C_Remover_Hat
+ Name: Costume Remover Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 655
+ - Id: 20129
+ AegisName: C_Poporing_Cap
+ Name: Costume Poporing Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 361
+ - Id: 20130
+ AegisName: C_Whisper_Tall_Hat
+ Name: Costume Whisper Tall Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1265
+ - Id: 20131
+ AegisName: C_C_Tower_Manager_Incom
+ Name: Costume Clock Tower Manager
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1266
+ - Id: 20132
+ AegisName: C_Subject_Aura
+ Name: Costume Aura Vicious Mind
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1267
+ - Id: 20133
+ AegisName: C_Poring_Mascot_Costume
+ Name: Costume Poring Mascot
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1268
+ - Id: 20134
+ AegisName: C_Helm_Of_Abyss_White
+ Name: Costume White Helm Of Abyss
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1269
+ - Id: 20135
+ AegisName: C_12_Anniversary_Crown_Of_Saint
+ Name: Costume 12 Anniversary Crown of Saint
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1117
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20136
+ AegisName: C_12_Anniversary_Elf_Ears
+ Name: Costume 12 Anniversary Elf Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 875
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20137
+ AegisName: C_Bomb_Wick
+ Name: Costume Bomb Wick
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 66
+ - Id: 20138
+ AegisName: C_Sea_Otter_Hat
+ Name: Costume Sea Otter Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 162
+ - Id: 20139
+ AegisName: C_Horse_Hairpin
+ Name: Costume Horse Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1271
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20140
+ AegisName: C_Horse_Hairpin_
+ Name: Costume Horse Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1272
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20141
+ AegisName: C_Observer
+ Name: Costume Observer
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 337
+ - Id: 20142
+ AegisName: C_Machoman_Glasses
+ Name: Costume Machoman Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 92
+ - Id: 20143
+ AegisName: C_Candy_Cane_In_Mouth
+ Name: Costume Candy Cane In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 665
+ - Id: 20144
+ AegisName: C_Ancient_Elven_Ear
+ Name: Costume Ancient Elven Ear
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 665
+ - Id: 20145
+ AegisName: C_Robo_Eye
+ Name: Costume Robo Eye
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 345
+ - Id: 20146
+ AegisName: C_Angel_Spirit
+ Name: Costume Angel of Ghost
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 394
+ - Id: 20147
+ AegisName: C_Bell_Pigeon
+ Name: Costume Bell of Piegon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1034
+ - Id: 20148
+ AegisName: C_Musketeer_Hat
+ Name: Costume Musketeer Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 466
+ - Id: 20149
+ AegisName: C_Hexagon_Spectacles
+ Name: Costume Hexagon Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 822
+ - Id: 20150
+ AegisName: C_Wind_Fan
+ Name: Costume Wind Fan
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1051
+ - Id: 20151
+ AegisName: C_Poison_Spore_Hat
+ Name: Costume Poison Spore Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 899
+ - Id: 20152
+ AegisName: C_Straw_Rice_Bag
+ Name: Costume Straw Rice Bag
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1273
+ - Id: 20153
+ AegisName: C_Monochrome_Cap
+ Name: Costume Monochrome Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1274
+ - Id: 20154
+ AegisName: C_Maple_Which_Falls
+ Name: Costume Maple Which Falls
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1275
+ EquipScript: |
+ sc_start SC_MAPLE_FALLS,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_MAPLE_FALLS;
+ - Id: 20155
+ AegisName: C_Ladys_Feather_Hat
+ Name: Costume Lady's Feather Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 1276
+ - Id: 20156
+ AegisName: C_Fan_in_Mouth
+ Name: Costume Fan in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 857
+ - Id: 20157
+ AegisName: C_Fish_On_Head
+ Name: Costume Evolved Blue Fish
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 149
+ - Id: 20158
+ AegisName: C_Circlet
+ Name: Costume Circlet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 18
+ - Id: 20159
+ AegisName: C_Blue_Hair_Band
+ Name: Costume Blue Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 136
+ - Id: 20160
+ AegisName: C_Fried_Egg
+ Name: Costume Magnolia Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 373
+ - Id: 20161
+ AegisName: C_Prontera_Army_Cap
+ Name: Costume Army Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 48
+ - Id: 20162
+ AegisName: C_Fleece_Hat
+ Name: Costume Fleece Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1277
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20163
+ AegisName: C_Fleece_Hat_
+ Name: Costume Fleece Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1278
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20164
+ AegisName: C_Duneyrr_Hat
+ Name: Costume Duneyrr Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 639
+ - Id: 20165
+ AegisName: C_Tendrilion_Hat
+ Name: Costume Tendrilion Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 658
+ - Id: 20166
+ AegisName: C_Hockey_Mask
+ Name: Costume Hockey Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 336
+ - Id: 20167
+ AegisName: C_Deviruchi_Headphone
+ Name: Costume Deviruchi Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 805
+ - Id: 20168
+ AegisName: C_Skull_Hood
+ Name: Costume Skull Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 598
+ - Id: 20169
+ AegisName: C_Long_Tongue
+ Name: Costume Long Tongue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 773
+ - Id: 20170
+ AegisName: C_Brown_Deviruchi_Cap
+ Name: Costume Brown Deviruchi Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 273
+ - Id: 20171
+ AegisName: C_Sepia_Cap
+ Name: Costume Sepia Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1280
+ - Id: 20172
+ AegisName: C_Pumpkin_Head
+ Name: Costume Pumpkin Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1281
+ - Id: 20173
+ AegisName: C_Lude_Hood
+ Name: Costume Lude Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1282
+ - Id: 20174
+ AegisName: C_Halloween_Hat_Orange
+ Name: Costume Orange Halloween Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1283
+ - Id: 20175
+ AegisName: C_Diabolic_Headphone
+ Name: Costume Diabolic Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1284
+ - Id: 20176
+ AegisName: Happy_Pierrot_Mask
+ Name: Costume Happy Pierrot Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1288
+ - Id: 20177
+ AegisName: C_Drooping_Dorasuke
+ Name: Costume Drooping Dorasuke
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1290
+ - Id: 20178
+ AegisName: C_Puppy_Love
+ Name: Costume Puppy Love
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 94
+ - Id: 20179
+ AegisName: C_Monkey_On_Fur_Hat
+ Name: Costume Monkey Coat Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 858
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20180
+ AegisName: C_Westren_Grace
+ Name: Costume Western Grace
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 32
+ - Id: 20181
+ AegisName: C_Mistic_Rose
+ Name: Costume Mystic Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 198
+ - Id: 20182
+ AegisName: C_Mottled_Egg_Shell
+ Name: Costume Rainbow Eggshell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 124
+ - Id: 20183
+ AegisName: C_There_Is_Something
+ Name: Costume There's..Something..
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1091
+ - Id: 20184
+ AegisName: C_Party_Hat
+ Name: Costume Party Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 144
+ - Id: 20185
+ AegisName: C_Fashionable_Glasses
+ Name: Costume Fashionable Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 131
+ - Id: 20186
+ AegisName: C_Magni_Cap
+ Name: Costume Magni's Cap
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 250
+ - Id: 20187
+ AegisName: C_Fricca's_Circlet
+ Name: Costume Fricca's Circlet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 251
+ - Id: 20188
+ AegisName: C_Morpheus's_Hood
+ Name: Costume Morpheus's Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 256
+ - Id: 20189
+ AegisName: C_Goibne's_Helm
+ Name: Costume Goibne's Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 258
+ - Id: 20190
+ AegisName: C_Chick_Hat_J
+ Name: Costume Chick Hat J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 432
+ - Id: 20191
+ AegisName: C_Black_Cat_Ears_Beret
+ Name: Costume Black Cat Ears Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1071
+ - Id: 20192
+ AegisName: C_Green_Foxtail
+ Name: Costume Green Foxtail
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1058
+ - Id: 20193
+ AegisName: C_Foxtail
+ Name: Costume Foxtail
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 711
+ - Id: 20194
+ AegisName: C_Lion_Mask
+ Name: Costume Lion Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 202
+ - Id: 20195
+ AegisName: C_Scratching_Cat
+ Name: Costume Scratching Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1292
+ - Id: 20196
+ AegisName: C_Leopard_Ear_Hat
+ Name: Costume Leopard Ear Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1293
+ - Id: 20197
+ AegisName: C_Amistr_Beret
+ Name: Costume Amistr Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1294
+ - Id: 20198
+ AegisName: C_Misty_Ears
+ Name: Costume Misty Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1295
+ - Id: 20199
+ AegisName: C_Evil_Marcher_Hat
+ Name: Costume Evil Marcher Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 687
+ - Id: 20200
+ AegisName: C_Rabbit_Head_Dress
+ Name: Costume Rabbit Head Dress
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1095
+ - Id: 20201
+ AegisName: C_Banshee_Master_Kiss
+ Name: Costume Banshee Master Kiss
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 959
+ - Id: 20202
+ AegisName: C_Deviruchi_Balloon
+ Name: Costume Deviruchi Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1082
+ - Id: 20203
+ AegisName: C_Bandana
+ Name: Costume Bandana
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 6
+ - Id: 20204
+ AegisName: C_Hunting_Cap
+ Name: Costume Hunter Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 389
+ - Id: 20205
+ AegisName: C_Fancy_Flower
+ Name: Costume Fancy Flower
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 4
+ - Id: 20206
+ AegisName: C_Chicken_Hat
+ Name: Costume Chicken Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1296
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20207
+ AegisName: C_Stripe_Band
+ Name: Costume Striped Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 133
+ - Id: 20208
+ AegisName: C_Necktie
+ Name: Costume Neck Tie
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 443
+ - Id: 20209
+ AegisName: C_Mermaid_Longing
+ Name: Costume Mermaid Bubbles
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1299
+ EquipScript: |
+ sc_start SC_MERMAID_LONGING,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_MERMAID_LONGING;
+ - Id: 20210
+ AegisName: C_Chicken_Hat_
+ Name: Costume Chicken Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1297
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20211
+ AegisName: C_Chicken_Hat__
+ Name: Costume Chicken Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1298
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20212
+ AegisName: C_Loki_Nidhogg_Hat
+ Name: Costume Loki & Nidhoggur's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1304
+ - Id: 20213
+ AegisName: C_Sirt_Evil_Eye
+ Name: Costume Robot Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 345
+ - Id: 20214
+ AegisName: C_Evil_Marcher_Hat_J
+ Name: Costume Evil Marcher Hat J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1002
+ - Id: 20215
+ AegisName: C_Black_Devil_Mask
+ Name: Costume Black Devil Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 760
+ - Id: 20216
+ AegisName: C_Rideword_Hat
+ Name: Costume Rideword Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 890
+ - Id: 20217
+ AegisName: C_Arabian_Veil
+ Name: Costume Arabian Veil
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1300
+ - Id: 20218
+ AegisName: C_Spell_Circuit
+ Name: Costume Spell Circuit
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1301
+ - Id: 20219
+ AegisName: C_Angel_Marcher_Hat
+ Name: Costume Angel Marcher Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1302
+ - Id: 20220
+ AegisName: C_Dark_Night_Veil
+ Name: Costume Dark Night Veil
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1303
+ - Id: 20221
+ AegisName: C_Eyes_Of_Ifrit
+ Name: C Eyes Of Ifrit
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 886
+ - Id: 20222
+ AegisName: C_Santa_Hat_2
+ Name: Costume Blue Pigtail Santa Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 395
+ - Id: 20223
+ AegisName: C_Centimental_Leaf
+ Name: Costume Romantic Leaf
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 57
+ - Id: 20224
+ AegisName: C_Red_Tailed_Ribbon
+ Name: Costume Red Tailed Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 167
+ - Id: 20225
+ AegisName: C_Pumpkin_Hat
+ Name: Costume Pumpkin-Head
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 206
+ - Id: 20226
+ AegisName: C_Hair_Brush
+ Name: Costume Red Comb
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 445
+ - Id: 20227
+ AegisName: C_Husky_Hat
+ Name: Costume Husky Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1016
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20228
+ AegisName: C_Pig_MoneyBox
+ Name: Costume Pig MoneyBox
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 603
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20230
+ AegisName: C_Mask_Of_Bankrupt
+ Name: Costume Bankruptcy Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 936
+ - Id: 20231
+ AegisName: C_Snowman_Hat
+ Name: Costume Snowman Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 616
+ - Id: 20232
+ AegisName: C_Celines_Ribbon
+ Name: Costume Celine Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 967
+ - Id: 20233
+ AegisName: C_Gold_Angel_Sculpture
+ Name: Costume Golden Angel
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 646
+ - Id: 20234
+ AegisName: C_Baphomet_Hat
+ Name: Costume Baphomet Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ 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;
+ - Id: 20235
+ AegisName: C_Frozen_Land_Rose
+ Name: Costume Frozen Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1025
+ - Id: 20236
+ AegisName: C_Hellomother_Hat
+ Name: Costume Arc Angeling Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 341
+ - Id: 20237
+ AegisName: C_Pink_Fur_Hat
+ Name: Costume Pink Beanie
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 281
+ - Id: 20238
+ AegisName: C_Blue_Drooping_Kitty
+ Name: Costume Drooping Blue Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 277
+ - Id: 20239
+ AegisName: C_Large_Ribbon_Muffler
+ Name: Costume Large Ribbon Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1312
+ - Id: 20240
+ AegisName: C_Gift_Of_Snow
+ Name: Costume Gift of Snow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ Script: |
+ /*TODO: ViewID*/
+ - Id: 20241
+ AegisName: C_Eclipse_Hat
+ Name: Costume Eclipse Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 922
+ - Id: 20242
+ AegisName: C_Snownow_Hat
+ Name: Costume Snownow Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1313
+ - Id: 20243
+ AegisName: C_Choco_Mint_Bonnet
+ Name: Costume Choco Mint Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1314
+ - Id: 20244
+ AegisName: C_Zealotus_Mask
+ Name: Costume Zealotus Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 200
+ - Id: 20245
+ AegisName: C_Cat_Paw_Hairpin
+ Name: Costume Cat Paw Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 447
+ - Id: 20246
+ AegisName: C_Time_Accessory
+ Name: Costume Decoration Time
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1309
+ EquipScript: |
+ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_TIME_ACCESSORY;
+ - Id: 20247
+ AegisName: C_Fate_Of_Black_Hand
+ Name: Costume Fate Of Black Hand
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1310
+ - Id: 20248
+ AegisName: C_Black_Strong_Hair
+ Name: Costume Black Strong Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1315
+ - Id: 20249
+ AegisName: C_Red_Strong_Hair
+ Name: Costume Red Strong Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1316
+ - Id: 20250
+ AegisName: C_White_Strong_Hair
+ Name: Costume White Strong Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1317
+ - Id: 20251
+ AegisName: C_Rose_Cascade
+ Name: Costume Rose Cascade
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 920
+ - Id: 20252
+ AegisName: C_Accessory_of_Ascetic
+ Name: Costume Mage Decoration
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1150
+ - Id: 20253
+ AegisName: C_Droopy_Alice_Doll
+ Name: Costume Drooping Alicel
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 784
+ - Id: 20254
+ AegisName: C_Ribbon_Yellow
+ Name: Costume Yellow Ribbonn
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 243
+ - Id: 20255
+ AegisName: C_Love_Cheek
+ Name: Costume Love Cheeks
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1318
+ - Id: 20256
+ AegisName: C_Honey_Pancakes
+ Name: Costume Honey Pancake
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1319
+ - Id: 20257
+ AegisName: C_Black_Rabbit_Bonnet
+ Name: Costume Black Rabbit Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1320
+ - Id: 20258
+ AegisName: C_Blue_Head_Dress
+ Name: Costume Blue Headdress
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1321
+ - Id: 20259
+ AegisName: C_Pink_Clover
+ Name: Costume Pink Clover
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1322
+ - Id: 20260
+ AegisName: C_Stardust
+ Name: Costume Stardust
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 81
+ - Id: 20262
+ AegisName: C_Fox_Ears_Bell_Ribbon
+ Name: Costume Fox Ears Drop Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1070
+ - Id: 20263
+ AegisName: C_Hat_Of_Drowsy_Cat
+ Name: Costume Sleeping Cat Hat J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 838
+ - Id: 20264
+ AegisName: C_Blood_Sucker
+ Name: Costume Blood Sucker
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 893
+ - Id: 20265
+ AegisName: C_Bird_Nest_Hat
+ Name: Costume Bird Nest Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 235
+ - Id: 20266
+ AegisName: C_Secret_Zipper
+ Name: Costume Secret Zipper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1324
+ - Id: 20267
+ AegisName: C_Penguin_Cap
+ Name: Costume Penguin Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1325
+ - Id: 20268
+ AegisName: C_Sleep_Eclipse_Family
+ Name: Costume Sleep Eclipse Family
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1326
+ - Id: 20269
+ AegisName: C_White_Fox_Ear_Ribbon
+ Name: Costume White Fox Ear Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1327
+ - Id: 20270
+ AegisName: C_Gryphon_Wing_Ears
+ Name: Costume Gryphon Wing Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1328
+ - Id: 20271
+ AegisName: C_Sunflower
+ Name: Costume Sunflower
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 37
+ - Id: 20272
+ AegisName: C_Snowy_Horn
+ Name: Costume Unicorn Horn
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 42
+ - Id: 20273
+ AegisName: C_Soft_Sheep_Hat
+ Name: Costume Soft Sheep Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 738
+ - Id: 20274
+ AegisName: C_Polar_Bear_Cap_J
+ Name: Costume Polar Bear Cap J
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 966
+ - Id: 20277
+ AegisName: C_Balloon_Hat
+ Name: Costume Balloon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 385
+ - Id: 20278
+ AegisName: C_Man_Medal
+ Name: Costume Man's Medal
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 775
+ - Id: 20279
+ AegisName: C_Cheering_Whistle
+ Name: Costume Cheering Whistle
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 952
+ - Id: 20280
+ AegisName: C_Well-Chewed_Pencil
+ Name: Costume Well-Chewed Pencil
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 555
+ - Id: 20281
+ AegisName: C_Kindergarten_Hat
+ Name: Costume Kindergarten Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 977
+ - Id: 20282
+ AegisName: C_White_Student_Cap
+ Name: Costume White Student Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 877
+ - Id: 20283
+ AegisName: C_Over_Protector
+ Name: Costume Over Protector
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1329
+ - Id: 20284
+ AegisName: C_Cherry_Blossom_Hat
+ Name: Costume Sakura Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1330
+ - Id: 20285
+ AegisName: C_Blossom_Fluttering
+ Name: Costume Dancing Fallen Sakura
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1331
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ hateffect HAT_EF_BLOSSOM_FLUTTERING,true;
+ UnEquipScript: |
+ hateffect HAT_EF_BLOSSOM_FLUTTERING,false;
+ - Id: 20286
+ AegisName: C_Under_Rim_Glasses_Red
+ Name: Costume Under Rim Glasses Red
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1332
+ - Id: 20287
+ AegisName: C_Mans_Medal_Gold
+ Name: Costume Man's Medal(Gold)
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1333
+ - Id: 20288
+ AegisName: C_Bijou_Hat
+ Name: Costume Bijou Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1334
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 860
+ - Id: 20292
+ AegisName: C_Black_Ramen_Hat
+ Name: Costume Black Ramen Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1338
+ - Id: 20293
+ AegisName: C_Sleeper_Hat
+ Name: Costume Sleeper Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 590
+ - Id: 20294
+ AegisName: C_Savage_Babe_Hat
+ Name: Costume Savage Babe Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 553
+ - Id: 20295
+ AegisName: C_Poring_Sunglasses
+ Name: Costume Poring Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 954
+ - Id: 20296
+ AegisName: C_Yoyo_Hat
+ Name: Costume Yoyo Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 391
+ - Id: 20297
+ AegisName: C_Cactus_Hat
+ Name: Costume Cactus Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 615
+ - Id: 20298
+ AegisName: C_Happy_Lunatic_Ear
+ Name: Costume Happy Lunatic Hanging Ear
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1340
+ - Id: 20299
+ AegisName: C_Face_Crusher
+ Name: Costume Face Crusher
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1341
+ - Id: 20300
+ AegisName: C_Hill_Wind_Mask
+ Name: Costume Hill Wind Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1342
+ - Id: 20301
+ AegisName: C_Golden_Savage_Hat
+ Name: Costume Golden Savage Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 648
+ - Id: 20302
+ AegisName: C_Beelzebub_Crown
+ Name: Costume Beelzebub Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1343
+ - Id: 20303
+ AegisName: C_Mandragora_Cap
+ Name: Costume Mandragora Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 402
+ - Id: 20304
+ AegisName: C_Raccoon_Hat
+ Name: Costume Raccoon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 118
+ - Id: 20305
+ AegisName: C_NettyHeart_BalloonGum
+ Name: Costume Nettie Heart Bubble Gum
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Low: true
+ View: 720
+ - Id: 20307
+ AegisName: C_Beginner_Cap
+ Name: Costume Beginner Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1348
+ - Id: 20311
+ AegisName: C_Magical_Booster
+ Name: Costume Magical Booster
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 873
+ - Id: 20312
+ AegisName: C_Barons_Evil_Eye
+ Name: Costume Baron's Evil Eye
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 989
+ - Id: 20313
+ AegisName: C_CD_in_Mouth
+ Name: Costume CD in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 815
+ - Id: 20314
+ AegisName: C_New_Wave_Sunglasses
+ Name: Costume New Wave Sunglasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 856
+ - Id: 20315
+ AegisName: C_Analyze_Eye
+ Name: Costume Analyze Eye
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1351
+ - Id: 20316
+ AegisName: C_Seraph_Wing_Helm
+ Name: Costume Seraph Wing Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1352
+ - Id: 20317
+ AegisName: C_Nekomimi_Cyber_Headphone
+ Name: Costume Nekomimi Cyber Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1353
+ - Id: 20318
+ AegisName: C_Charleston_Antenna
+ Name: Costume Charleston Antenna
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1354
+ - Id: 20319
+ AegisName: C_Crimson_Booster
+ Name: Costume Crimson Booster
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1355
+ - Id: 20320
+ AegisName: C_Red_Bandana
+ Name: Costume Red Bandana
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 62
+ - Id: 20321
+ AegisName: C_Pterios_Fins
+ Name: Costume Pterios Fins
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1009
+ - Id: 20322
+ AegisName: C_Seal_Hat
+ Name: Costume Seal Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 540
+ - Id: 20323
+ AegisName: C_Sparkling_Sound
+ Name: Costume Sparkling Sound
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1074
+ EquipScript: |
+ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_DECORATION_OF_MUSIC;
+ - Id: 20324
+ AegisName: C_Pigeon_Hat
+ Name: Costume Pigeon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1362
+ - Id: 20325
+ AegisName: C_Little_Aquarium
+ Name: Costume Little Aquarium
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1363
+ - Id: 20326
+ AegisName: C_Sailor_Collar
+ Name: Costume Sailor Collar
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1364
+ - Id: 20327
+ AegisName: C_Marine_Cap
+ Name: Costume Marine Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1365
+ - Id: 20328
+ AegisName: C_Mackerel_Pike
+ Name: Costume Mackerel Pike
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1081
+ - Id: 20329
+ AegisName: C_Tare_HSchool_Doll_Hat
+ Name: Costume Very Cute Doll Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1084
+ - Id: 20330
+ AegisName: C_Sombrero
+ Name: Costume Sombrero
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 151
+ - Id: 20331
+ AegisName: C_Desert_Prince
+ Name: Costume Desert Prince
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 567
+ - Id: 20332
+ AegisName: C_Pure_White_Ribbon
+ Name: Costume Pure White Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1175
+ - Id: 20333
+ AegisName: C_Family_Hat
+ Name: Costume Family Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 650
+ - Id: 20334
+ AegisName: C_Joystick_Hat
+ Name: Costume Joystick Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1305
+ - Id: 20335
+ AegisName: C_Watery_Eyes
+ Name: Costume Watery Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 828
+ - Id: 20338
+ AegisName: C_Colorful_Dancing_Octopus
+ Name: Costume Colorful Dancing Octopus
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1007
+ - Id: 20339
+ AegisName: C_Flower_Summer_Hat
+ Name: Costume Flower Summer Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1369
+ - Id: 20340
+ AegisName: C_Straight_Pony_Black
+ Name: Costume Straight Pony Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1371
+ - Id: 20341
+ AegisName: C_Bouncing_Hair_Black
+ Name: Costume Bouncing Hair Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1372
+ - Id: 20342
+ AegisName: C_Loose_Wave_Twin
+ Name: Costume Loose Wave Twin
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1373
+ - Id: 20344
+ AegisName: C_Happy_Balloon_J
+ Name: "Costume: Happy Balloon"
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1289
+ - Id: 20345
+ AegisName: C_Seagod_Protector
+ Name: Costume Seagod Protector
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 960
+ - Id: 20346
+ AegisName: C_Drooping_Permeter
+ Name: Costume Drooping Permeter
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 694
+ - Id: 20347
+ AegisName: C_Poring_Pirate_Hat
+ Name: Costume Poring Pirate Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 726
+ - Id: 20348
+ AegisName: C_Sunday_Hat
+ Name: Costume Sunday Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 117
+ - Id: 20349
+ AegisName: C_FlyingGalapago
+ Name: Costume Flying Galapago
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1358
+ - Id: 20350
+ AegisName: C_Cowlick_YL
+ Name: Costume Bouncing Hair Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1382
+ - Id: 20351
+ AegisName: C_Cowlick_GN
+ Name: Costume Bouncing Hair Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1383
+ - Id: 20352
+ AegisName: C_Cowlick_PP
+ Name: Costume Bouncing Hair Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1384
+ - Id: 20353
+ AegisName: C_Cowlick_RD
+ Name: Costume Bouncing Hair Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1385
+ - Id: 20354
+ AegisName: C_Cowlick_OM
+ Name: Costume Bouncing Hair Crimson
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1386
+ - Id: 20355
+ AegisName: C_Cowlick_BU
+ Name: Costume Bouncing Hair Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1387
+ - Id: 20356
+ AegisName: C_Cowlick_WH
+ Name: Costume Bouncing Hair White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1388
+ - Id: 20357
+ AegisName: C_Straight_Pony_YL
+ Name: Costume Straight Pony Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1389
+ - Id: 20358
+ AegisName: C_Straight_Pony_GN
+ Name: Costume Straight Pony Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1390
+ - Id: 20359
+ AegisName: C_Straight_Pony_PP
+ Name: Costume Straight Pony Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1391
+ - Id: 20360
+ AegisName: C_Straight_Pony_RD
+ Name: Costume Straight Pony Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1392
+ - Id: 20361
+ AegisName: C_Straight_Pony_OM
+ Name: Costume Straight Pony Crimson
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1393
+ - Id: 20362
+ AegisName: C_Straight_Pony_BU
+ Name: Costume Straight Pony Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1394
+ - Id: 20363
+ AegisName: C_Straight_Pony_WH
+ Name: Costume Straight Pony White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1395
+ - Id: 20364
+ AegisName: C_Loose_Wave_Twin_YL
+ Name: Costume Loose Wave Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1396
+ - Id: 20365
+ AegisName: C_Loose_Wave_Twin_GN
+ Name: Costume Loose Wave Twin Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1397
+ - Id: 20366
+ AegisName: C_Loose_Wave_Twin_PP
+ Name: Costume Loose Wave Twin Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1398
+ - Id: 20367
+ AegisName: C_Loose_Wave_Twin_RD
+ Name: Costume Loose Wave Twin Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1399
+ - Id: 20368
+ AegisName: C_Loose_Wave_Twin_OM
+ Name: Costume Loose Wave Twin Crimson
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1400
+ - Id: 20369
+ AegisName: C_Loose_Wave_Twin_BU
+ Name: Costume Loose Wave Twin Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1401
+ - Id: 20370
+ AegisName: C_Loose_Wave_Twin_WH
+ Name: Costume Loose Wave Twin White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1402
+ - Id: 20371
+ AegisName: C_Special_Kafra_Hat
+ Name: Costume Special Kafra Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 581
+ - Id: 20372
+ AegisName: C_Ribbon_Hat
+ Name: Costume Ribbon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 956
+ - Id: 20373
+ AegisName: C_Watermelon_Hat
+ Name: Costume Watermelon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 690
+ - Id: 20374
+ AegisName: C_Mechanical_Plant_Hat
+ Name: Costume Mechanical Plant Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1069
+ - Id: 20375
+ AegisName: C_Ignis_Cap
+ Name: Costume Ignis Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 803
+ - Id: 20376
+ AegisName: C_Memories_Of_Lovers
+ Name: Costume Memory of Lovers
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1072
+ - Id: 20377
+ AegisName: C_Flight_Cap
+ Name: Costume Flight Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 820
+ - Id: 20378
+ AegisName: C_Skymet
+ Name: Costume Sky Met
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 868
+ - Id: 20379
+ AegisName: C_Pocketwatch_Hair_Ornament
+ Name: Costume Pocketwatch Hair Ornament
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1404
+ - Id: 20380
+ AegisName: C_Mechanical_Feather_Hairband
+ Name: Costume Mechanical Feather Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1405
+ - Id: 20381
+ AegisName: C_Steampunk_Hat
+ Name: Costume Steampunk Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1406
+ - Id: 20382
+ AegisName: C_Silver_Sniper_Doll
+ Name: Costume Silver Sniper Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1407
+ - Id: 20383
+ AegisName: C_Magicdecoy_Doll
+ Name: Costume Magic Decoy Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1408
+ - Id: 20384
+ AegisName: C_Douce_Tiara
+ Name: Costume Douce Tiara
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1410
+ - Id: 20386
+ AegisName: C_Victory_Wing_Helm
+ Name: Costume Victory Wing Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 677
+ - Id: 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_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 632
+ - Id: 20392
+ AegisName: C_Sniper_Google
+ Name: Costume Sniper Google
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 625
+ - Id: 20393
+ AegisName: C_Schmitz_Helm
+ Name: Costume Schmitz Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 634
+ - Id: 20394
+ AegisName: C_Pumpkin_Toque
+ Name: Costume Pumpkin Toque
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1411
+ - Id: 20395
+ AegisName: C_Black_Witch_Hat
+ Name: Costume Black Witch Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 1006
+ - Id: 20396
+ AegisName: C_Green_Hat
+ Name: Costume Green Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 939
+ - Id: 20397
+ AegisName: C_Jakk
+ Name: Costume Jack
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1415
+ Script: |
+ autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; showscript \"Yikes!!! That hurts!!!\"; }";
+ - Id: 20398
+ AegisName: C_Niflheim_Bunny_Hat
+ Name: Costume Niffleheim Bunny Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1285
+ - Id: 20399
+ AegisName: C_Crow_Tengu_Mask
+ Name: Costume Crow Tengu Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1287
+ - Id: 20400
+ AegisName: C_Ichthys_Rosario
+ Name: Costume Ichthys Rosario
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1028
+ - Id: 20401
+ AegisName: C_Angel_Guidance
+ Name: Costume Angel Guidance
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1188
+ - Id: 20402
+ AegisName: C_Holy_Klobuk
+ Name: Costume Holy Klobuk
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 895
+ - Id: 20403
+ AegisName: C_Dolor_Thanatos
+ Name: Costume Dolor Thanatos
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 547
+ - Id: 20404
+ AegisName: C_Blessing_Of_Angels
+ Name: Costume Blessing of Angel
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1425
+ Script: |
+ hateffect(HAT_EF_BLESSING_OF_ANGELS,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_BLESSING_OF_ANGELS,false);
+ - Id: 20405
+ AegisName: C_Eremes_Scarf
+ Name: Costume Eremes Scarf
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1416
+ - Id: 20406
+ AegisName: C_Commandments_Of_Chain
+ Name: Costume Chain of Commandments
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1417
+ - Id: 20407
+ AegisName: C_Subject_Aura_Red
+ Name: Costume Vicious Mind Aura Crimson
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1418
+ - Id: 20408
+ AegisName: C_Requiem_Crown_of_Light_and_Dark
+ Name: Costume Requiem Crown of Light and Dark
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1419
+ - Id: 20409
+ AegisName: C_There_is_Something_
+ Name: Costume There is Something
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1091
+ - Id: 20413
+ AegisName: C_Isabella_Brown_Ear
+ Name: C Piamette Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 1031
+ - Id: 20416
+ AegisName: C_1Grade_Balloon
+ Name: Costume Grade 1 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1426
+ - Id: 20417
+ AegisName: C_2Grade_Balloon
+ Name: Costume Grade 2 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1427
+ - Id: 20418
+ AegisName: C_3Grade_Balloon
+ Name: Costume Grade 3 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1428
+ - Id: 20419
+ AegisName: C_4Grade_Balloon
+ Name: Costume Grade 4 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1429
+ - Id: 20420
+ AegisName: C_5Grade_Balloon
+ Name: Costume Grade 5 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1430
+ - Id: 20421
+ AegisName: C_6Grade_Balloon
+ Name: Costume Grade 6 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1431
+ - Id: 20422
+ AegisName: C_7Grade_Balloon
+ Name: Costume Grade 7 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1432
+ - Id: 20423
+ AegisName: C_8Grade_Balloon
+ Name: Costume Grade 8 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1433
+ - Id: 20424
+ AegisName: C_9Grade_Balloon
+ Name: Costume Grade 9 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1434
+ - Id: 20425
+ AegisName: C_10Grade_Balloon
+ Name: Costume Grade 10 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1435
+ - Id: 20426
+ AegisName: C_11Grade_Balloon
+ Name: Costume Grade 11 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1436
+ - Id: 20427
+ AegisName: C_12Grade_Balloon
+ Name: Costume Grade 12 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1437
+ - Id: 20428
+ AegisName: C_13Grade_Balloon
+ Name: Costume Grade 13 Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1438
+ - Id: 20429
+ AegisName: C_Piamette_Bowtie
+ Name: Costume Piamette Bowtie
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1439
+ - Id: 20430
+ AegisName: C_Morocc_Kid_Servant
+ Name: Costume Loyal Servant of Devil Morocc
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1440
+ - Id: 20431
+ AegisName: C_Magician_Headdress
+ Name: Costume Magician Headdress
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1441
+ - Id: 20432
+ AegisName: C_Khalitzburg_KN_Helm
+ Name: Costume Khalitzburg Knight Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1442
+ - Id: 20433
+ AegisName: C_Louise_Red_Hat
+ Name: Costume Louise Red Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1443
+ - Id: 20434
+ AegisName: C_Drooping_Gunslinger
+ Name: Costume Drooping Gunslinger
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1444
+ - Id: 20435
+ AegisName: C_Camellia_Hair_Pin
+ Name: Costume Camellia Hair Pin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1203
+ Script: |
+ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);
+ - Id: 20436
+ AegisName: C_Angelring_Furhat
+ Name: Costume Angelring Furhat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 953
+ - Id: 20437
+ AegisName: C_Sakura_Hairband
+ Name: Costume Sakura Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 949
+ - Id: 20438
+ AegisName: C_Abacus_In_Mouth
+ Name: Costume Abacus In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 825
+ - Id: 20439
+ AegisName: C_New_Year_Shine
+ Name: Costume New Year Shine
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false);
+ - Id: 20440
+ AegisName: C_Tone_of_Gold
+ Name: Costume Tone of Gold
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1447
+ - Id: 20441
+ AegisName: C_Large_Ribbon_Muffler_Red
+ Name: Costume Large Ribbon Muffler Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1448
+ - Id: 20442
+ AegisName: C_Red_and_White_Mochiring_Hat
+ Name: Costume Red and White Mochiring Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1449
+ - Id: 20446
+ AegisName: C_Bunny_Eggshell
+ Name: Costume Bunny Eggshell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1339
+ - Id: 20447
+ AegisName: C_Small_Poring_Band
+ Name: Costume Small Porings Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 955
+ - Id: 20448
+ AegisName: C_Cons_Of_Water
+ Name: Costume Water Spellcaster
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1451
+ - Id: 20449
+ AegisName: C_White_Black_Temp
+ Name: Costume White and Black Temptation
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1452
+ - Id: 20450
+ AegisName: C_Gram_Peony
+ Name: Costume Gram Peony
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1453
+ - Id: 20451
+ AegisName: C_Sky_of_Memory
+ Name: Costume Sky of Memory
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1454
+ - Id: 20452
+ AegisName: C_Crown_of_Strawberry_Prince
+ Name: Costume Crown of Strawberry Prince
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1455
+ - Id: 20455
+ AegisName: C_Republic_Hat
+ Name: Costume Republic Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1458
+ - Id: 20456
+ AegisName: C_Combat_Vestige
+ Name: Costume Combat Vestige
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1460
+ - Id: 20457
+ AegisName: C_Feather_Fluttering
+ Name: Costume Fluttering Feathers
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1461
+ Script: |
+ hateffect(HAT_EF_FEATHER_FLUTTERING,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_FEATHER_FLUTTERING,false);
+ - Id: 20458
+ AegisName: C_Wild_Poring_Rider
+ Name: Costume Wild Poring Rider
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1422
+ - Id: 20459
+ AegisName: C_Valhalla_Idol
+ Name: Costume Valhalla Idol
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1423
+ Script: |
+ hateffect(HAT_EF_VALHALLA_IDOL,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_VALHALLA_IDOL,false);
+ - Id: 20460
+ AegisName: C_Thorny_Hairband
+ Name: Costume Thorny Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 921
+ - Id: 20461
+ AegisName: C_93_Style_Bloody_Wings
+ Name: Costume 93 Style Bloody Wings
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1037
+ - Id: 20462
+ AegisName: C_Cat_Ears_Cape
+ Name: Costume Cat Ears Cape
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1464
+ - Id: 20463
+ AegisName: C_Two_Tone_Beret
+ Name: Costume Two Tone Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1465
+ - Id: 20464
+ AegisName: C_Monochrome_RibbonHat
+ Name: Costume Monochrome Ribbon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1466
+ - Id: 20465
+ AegisName: C_Glasses_Without_Lens
+ Name: Costume Glasses Without Lens
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1467
+ - Id: 20466
+ AegisName: C_Crimson_Ribbon
+ Name: Costume Crimson Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1468
+ - Id: 20467
+ AegisName: C_Elemental_Crown
+ Name: Costume Elemental Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1219
+ - Id: 20468
+ AegisName: C_Youinone_Mask
+ Name: You in ONE
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1462
+ - Id: 20470
+ AegisName: C_SweetChocolate_Hat
+ Name: Costume Sweet Chocolate Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1469
+ - Id: 20472
+ AegisName: C_Helm_Of_Angel
+ Name: Costume Helm of Angel
+ Type: Armor
+ View: 110
+ Locations:
+ Costume_Head_Top: true
+ - Id: 20481
+ AegisName: C_Mask_of_Ifrit
+ Name: Costume Mask of Ifrit
+ Type: Armor
+ Buy: 20
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 421
+ - Id: 20482
+ AegisName: C_Heaven_Cage
+ Name: Costume Heaven Cage
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1286
+ - Id: 20483
+ AegisName: C_Butterfly_Barrettes
+ Name: Costume Butterfly Barrettes
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1027
+ - Id: 20486
+ AegisName: C_Twin_Margaret
+ Name: Costume Twin Margaret
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1472
+ - Id: 20487
+ AegisName: C_Floral_Waltz
+ Name: Costume Floral Waltz
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1473
+ Script: |
+ hateffect(HAT_EF_FLORAL_WALTZ,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_FLORAL_WALTZ,false);
+ - Id: 20488
+ AegisName: C_Pope_Ribbon
+ Name: Costume Pope Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1474
+ - Id: 20489
+ AegisName: C_Pope_Crown
+ Name: Costume Pope Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1475
+ - Id: 20490
+ AegisName: C_Full_Blossom_Sakura_Hairpin_Blue
+ Name: Costume Full Blossom Sakura Hairpin Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1476
+ - Id: 20491
+ AegisName: C_Laser_of_Eagle
+ Name: Costume Laser of Eagle
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1424
+ - Id: 20492
+ AegisName: C_Unidentified_Flying_Poring
+ Name: Costume Unidentified Flying Poring
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1017
+ - Id: 20493
+ AegisName: C_Wing_Headphone
+ Name: Costume Wing Headphone
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1347
+ - Id: 20495
+ AegisName: C_Quati_Hat_J
+ Name: Costume Quati Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 527
+ - Id: 20496
+ AegisName: C_Black_Shiba_Inu_Hat
+ Name: Costume Black Shiba Inu Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 894
+ - Id: 20497
+ AegisName: C_Umbala_Spirit
+ Name: Costume Umbala Spirit
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 675
+ - Id: 20498
+ AegisName: C_Elephant_Hat
+ Name: Costume Elephant Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 215
+ - Id: 20499
+ AegisName: C_Cat_Ears_Hat
+ Name: Costume Cat Ears Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1479
+ - Id: 20500
+ AegisName: T_Archangel_Wing
+ Name: Archangel Wing
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 1
+ - Id: 20502
+ AegisName: C_Devil_Wing
+ Name: Costume Little Devil Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 12
+ - Id: 20504
+ AegisName: C_Cupid_Wing_Pink
+ Name: Costume Cupid's Pink Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 14
+ - Id: 20506
+ AegisName: Invisible_Manteau
+ Name: Invisible Manteau
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ - Id: 20507
+ AegisName: C_Poring_Bag
+ Name: Costume Poring Bag
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 16
+ - Id: 20508
+ AegisName: C_Poster_Girl_Hat
+ Name: Costume Poster Girl Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1446
+ - Id: 20509
+ AegisName: C_Wings_of_Uriel
+ Name: Costume Wings of Uriel
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 17
+ - Id: 20510
+ AegisName: C_SwordWing
+ Name: Costume Sword Wing
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 19
+ - Id: 20511
+ AegisName: C_Blue_Fairy_Wing
+ Name: Blue Wings of Fairy
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 21
+ - Id: 20512
+ AegisName: C_Bag_of_Adventurer_j
+ Name: Costume Adventurer's Backpack
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 2
+ - Id: 20514
+ AegisName: C_Thanatos_Sword
+ Name: Costume Thanatos Sword
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 23
+ - Id: 20515
+ AegisName: C_Magic_Circle
+ Name: Costume Magic Circle
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_MAGICCIRCLE,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_MAGICCIRCLE,false);
+ - Id: 20516
+ AegisName: C_Wings_of_Michael
+ Name: Costume Wings of Michael
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 24
+ - Id: 20517
+ AegisName: C_GiantCatBag_TW
+ Name: Costume Giant Cat Bag
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 25
+ - Id: 20519
+ AegisName: C_Full_BloomCherry_Tree
+ Name: Costume Full Bloom Cherry Tree
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false);
+ - Id: 20522
+ AegisName: C_Blessings_Of_Soul
+ Name: Costume Blessings Of Soul
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false);
+ - Id: 20524
+ AegisName: C_Shining_Angel_Wings
+ Name: Costume Shining Angel Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_C_SHINING_ANGEL_WING,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_SHINING_ANGEL_WING,false);
+ - Id: 20525
+ AegisName: C_Bloody_Wing
+ Name: Costume Crimson Wings
+ Type: Armor
+ View: 33
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Garment: true
+ - Id: 20526
+ AegisName: C_BlueAngeling_Wing
+ Name: Costume Brilliant Blue Angel Wings
+ Type: Armor
+ View: 34
+ Locations:
+ Costume_Garment: true
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 37
+ - Id: 20533
+ AegisName: C_PinkButterfly_Wing_T
+ Name: Costume Pink Butterfly Wing
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 38
+ - Id: 20535
+ AegisName: C_Digital_Space
+ Name: Costume Digital Space
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_DIGITAL_SPACE,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_DIGITAL_SPACE,false);
+ - Id: 20537
+ AegisName: C_Maple_Which_Falls_Rd
+ Name: Costume Falling Red Foliage
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false);
+ - Id: 20538
+ AegisName: C_Magic_Circle_Rainbow
+ Name: Costume Magic Circle Rainbow
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_MAGICCIRCLERAINBOW,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_MAGICCIRCLERAINBOW,false);
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 44
+ - Id: 20546
+ AegisName: C_Backside_Ribbon_Bell
+ Name: Costume Giant Ribbon Bell
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 46
+ - Id: 20547
+ AegisName: C_Ghost_Effect
+ Name: Costume Ghost Effect
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_C_GHOST_EFFECT,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_GHOST_EFFECT,false);
+ - Id: 20548
+ AegisName: Costume_Popping_Poring_Aura
+ Name: Costume Popping Poring Aura
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_C_POPPING_PORING_AURA,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_POPPING_PORING_AURA,false);
+ - Id: 20570
+ AegisName: C_HeartChocoBag
+ Name: Costume HeartChocoBag
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 47
+ - Id: 20571
+ AegisName: C_Valkyrie_Wing
+ Name: Costume Valkyrie Wings
+ Type: Armor
+ View: 48
+ Locations:
+ Costume_Garment: true
+ Script: |
+ hateffect HAT_EF_C_VALKYRIE_WING,true;
+ UnEquipScript: |
+ hateffect HAT_EF_C_VALKYRIE_WING,false;
+ - Id: 20572
+ AegisName: C_WingOfHeart
+ Name: Costume WingOfHeart
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 50
+ - Id: 20575
+ AegisName: C_School_Bag_BL
+ Name: Costume Backpack (Black)
+ Type: Armor
+ View: 52
+ Locations:
+ Costume_Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20576
+ AegisName: C_Cat_Fork
+ Name: Costume Cat Fork
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 53
+ - Id: 20577
+ AegisName: C_Balloon_Wing
+ Name: Costume inflatable wings # !todo check english name
+ Type: Armor
+ View: 54
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Garment: true
+ - Id: 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: C_Wings_Of_Raphael
+ Name: Costume Raphael's Wings # !todo check english name
+ Type: Armor
+ View: 57
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Garment: true
+ - Id: 20582
+ AegisName: C_T_Bear_Bag
+ Name: Costume Bear Backpack
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 60
+ - Id: 20584
+ AegisName: C_Big_Foxtail
+ Name: Costume Fox Tail
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 62
+ - Id: 20586
+ AegisName: C_Loli_Ruri_Moon
+ Name: "Costume: Loli Ruri's Crescent"
+ Type: Armor
+ View: 64
+ Locations:
+ Costume_Garment: true
+ - Id: 20588
+ AegisName: C_Nifl_Bloom
+ Name: Costume Broom of Witch
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 65
+ - Id: 20589
+ AegisName: C_Gimmick_One_Feather
+ Name: Costume One Wing
+ Type: Armor
+ View: 66
+ Locations:
+ Costume_Garment: true
+ - Id: 20590
+ AegisName: C_Evil_Druid_Cross
+ Name: Costume Evil Druid Cross
+ Type: Armor
+ View: 67
+ Locations:
+ Costume_Garment: true
+ - Id: 20592
+ AegisName: C_Santa_Backpack
+ Name: Costume Santa's Pocket
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 70
+ - Id: 20593
+ AegisName: C_Ice_Wing
+ Name: "Costume: Ice Wings"
+ Type: Armor
+ View: 71
+ Locations:
+ Costume_Garment: true
+ - Id: 20594
+ AegisName: C_Big_Ribbon_Cloak
+ Name: Costume Big Ribbon Manteau
+ Type: Armor
+ View: 76
+ Locations:
+ Costume_Garment: true
+ - Id: 20595
+ AegisName: C_School_Bag_RD_E
+ Name: Costume beginners red backpack # !todo check english name
+ Type: Armor
+ View: 51
+ Locations:
+ Costume_Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 20597
+ AegisName: C_Evil_Scythe
+ Name: "Costume: Evil Scythe"
+ Type: Armor
+ View: 79
+ Locations:
+ Costume_Garment: true
+ - Id: 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"
+ Type: Armor
+ View: 83
+ Locations:
+ Costume_Garment: true
+ - Id: 20600
+ AegisName: Fantastic_Aura
+ Name: Fantastic Aura
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Script: |
+ /*TODO: View ID*/
+ bonus bUnbreakableHelm;
+ - Id: 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: 20604
+ AegisName: C_Blessed_Veil
+ Name: "Costume: Blessed Veil"
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 86
+ - Id: 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
+ Type: Armor
+ Buy: 200000
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ .@r = getrefine();
+ if (.@r > 10)
+ .@r = 10;
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) {
+ bonus bFlee2,5+(.@r*2);
+ } else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) {
+ bonus bShortWeaponDamageReturn,5+(.@r*2);
+ }
+ - Id: 20701
+ AegisName: Sol_Manteau
+ Name: Sol Manteau
+ Type: Armor
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Defense: 5
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMdef,5;
+ bonus2 bAddRace,RC_Player_Human,5;
+ bonus2 bAddRace,RC_Player_Doram,5;
+ bonus2 bMagicAddRace,RC_Player_Human,5;
+ bonus2 bMagicAddRace,RC_Player_Doram,5;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 20703
+ AegisName: TE_Woe_Manteau
+ Name: TE Woe Manteau
+ Type: Armor
+ Defense: 10
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,10;
+ bonus2 bAddRace,RC_Player_Doram,10;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 20704
+ AegisName: TE_Woe_Magic_Manteau
+ Name: TE Woe Magic Manteau
+ Type: Armor
+ Defense: 5
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ bonus2 bMagicAddRace,RC_Player_Doram,10;
+ bonus2 bResEff,Eff_Freeze,2500;
+ - Id: 20705
+ AegisName: Lumiere_Manteau
+ Name: Lumiere Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubDefEle,Ele_Holy,5;
+ bonus2 bSubRace,RC_Dragon,-5;
+ - Id: 20706
+ AegisName: Amistr_Bag
+ Name: Amistr Bag
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 18
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ View: 4
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bSubEle,Ele_All,5;
+ - Id: 20707
+ AegisName: Kirin_Wing
+ Name: Kirin Wing
+ Type: Armor
+ Buy: 20
+ Defense: 18
+ Locations:
+ Garment: true
+ Refineable: true
+ View: 6
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 20708
+ AegisName: Poison_Manteau
+ Name: Poison Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Poison,5;
+ bonus2 bSubRace,RC_Plant,-5;
+ - Id: 20709
+ AegisName: Mana_Manteau
+ Name: Mana Manteau
+ Type: Armor
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ EquipLevelMax: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 20710
+ AegisName: Impr_Angel's_Warmth
+ Name: Advanced Angelic Cardigan
+ Type: Armor
+ Buy: 10000
+ Weight: 400
+ Defense: 6
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bHPrecovRate,50;
+ - Id: 20711
+ AegisName: Manteau_Of_Diego
+ Name: Manteau Of Diego
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ bonus bMdef,3;
+ - Id: 20712
+ AegisName: Valkyrie_Cape
+ Name: Valkyrie Cape
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Classes:
+ Upper: true
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@val = 2 * (min(10,getrefine())/2);
+ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)
+ bonus bFlee2,(5+.@val);
+ else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)
+ bonus bShortWeaponDamageReturn,(5+.@val);
+ - Id: 20714
+ AegisName: Assassin_Muffler
+ Name: Assassin's Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 16
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bAgi,(.@r-5)*2;
+ }
+ - Id: 20716
+ AegisName: Spirit_Manteau
+ Name: Spirit Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Ghost,5;
+ bonus2 bSubRace,RC_Angel,-5;
+ - Id: 20717
+ AegisName: FaceWorm_Skin
+ Name: Gigant Snake Skin
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 38
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 20718
+ AegisName: FaceWorm_Skin_
+ Name: Gigant Snake Skin
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ - Id: 20721
+ AegisName: Cloak_Of_Gray
+ Name: Cloak of Gray
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 45
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Holy,5+getrefine()/2;
+ - Id: 20724
+ AegisName: Love_Dad_Wings_2012
+ Name: Love Dad Wings 2012
+ Type: Armor
+ Weight: 100
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 5
+ Script: |
+ .@r = getrefine();
+ if (readparam(bStr)>89) {
+ bonus bAllStats,1;
+ bonus bStr,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ if (readparam(bAgi)>89) {
+ bonus bAllStats,1;
+ bonus bAgi,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ if (readparam(bVit)>89) {
+ bonus bAllStats,1;
+ bonus bVit,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ if (readparam(bInt)>89) {
+ bonus bAllStats,1;
+ bonus bInt,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ if (readparam(bDex)>89) {
+ bonus bAllStats,1;
+ bonus bDex,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ if (readparam(bLuk)>89) {
+ bonus bAllStats,1;
+ bonus bLuk,.@r;
+ bonus bMaxHPRate,1;
+ bonus bMaxSPRate,1;
+ }
+ - Id: 20725
+ AegisName: Ribbon_Piamat
+ Name: Ribbon Piamat
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ MagicAttack: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 30
+ Refineable: true
+ View: 7
+ Script: |
+ bonus bInt,1;
+ bonus bDex,1;
+ - Id: 20726
+ AegisName: Fire_Dragon_Coat
+ Name: Fire Dragon's Coat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus2 bMagicAtkEle,Ele_Fire,2;
+ if (getrefine()>=7) {
+ bonus2 bMagicAtkEle,Ele_Fire,3;
+ }
+ bonus2 bMagicAtkEle,Ele_Water,-10;
+ - Id: 20727
+ AegisName: Brilliant_Golden_Wings
+ Name: Brilliant Golden Wings
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 5
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 20728
+ AegisName: Water_Dragon_Coat
+ Name: Water Dragon Coat
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus2 bMagicAtkEle,Ele_Water,2;
+ if (getrefine()>=7) {
+ bonus2 bMagicAtkEle,Ele_Water,3;
+ }
+ bonus2 bMagicAtkEle,Ele_Wind,-10;
+ - Id: 20730
+ AegisName: Loyalists_Hood
+ Name: Loyalists Hood
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bStr,2;
+ bonus bMaxHPrate,10;
+ bonus bNoKnockback;
+ bonus2 bSubEle,Ele_All,-20;
+ - Id: 20732
+ AegisName: Supplement_Part_Con
+ Name: Supplement Part Con
+ Type: Armor
+ Buy: 25000
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,6+(.@r/2);
+ if (.@r>=9) {
+ bonus bHPrecovRate,50;
+ }
+ - Id: 20733
+ AegisName: Upgrade_Part_Engine
+ Name: Reinforced Parts - Engine
+ Type: Armor
+ Buy: 10
+ Weight: 1500
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bDelayrate,-10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubEle,Ele_Neutral,10;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ - Id: 20737
+ AegisName: C_Kirin_Wing
+ Name: Costume Kirin Wing
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 6
+ - Id: 20743
+ AegisName: Airship_Cape
+ Name: Airship's Cloak
+ Type: Armor
+ Buy: 10
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bFlee,20;
+ bonus bVariableCastrate,-20;
+ - Id: 20744
+ AegisName: Felock_Cape
+ Name: Felrock's Cloak
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 12
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 125
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bFlee,20;
+ bonus bVariableCastrate,-10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=12) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 20746
+ AegisName: C_Rudra_Wing
+ Name: Costume Rudra Wings
+ Type: Armor
+ Buy: 10
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 8
+ - Id: 20748
+ AegisName: Manteau_Of_Fallen
+ Name: Fallen Warrior Manteau
+ Type: Armor
+ Buy: 10
+ Weight: 600
+ Defense: 20
+ Locations:
+ Garment: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAgi,5;
+ bonus bFlee,10;
+ if (readparam(bStr)>=90)
+ bonus bBaseAtk,10+(.@r*2);
+ if (readparam(bInt)>=90)
+ bonus bMatk,20+(.@r*3);
+ if (readparam(bVit)>=90)
+ bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0);
+ if (readparam(bAgi)>=90) {
+ bonus bAspdRate,3+(.@r/2);
+ bonus bAspd,((.@r>=10)?1:0);
+ }
+ if (readparam(bDex)>=90)
+ bonus bLongAtkRate,3+(.@r/2);
+ if (readparam(bLuk)>=90)
+ bonus bCritAtkRate,5+.@r;
+ - Id: 20749
+ AegisName: Manteau_Of_Fallen_
+ Name: Fallen Warrior Manteau
+ Type: Armor
+ Buy: 10
+ Weight: 600
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,.@r/2;
+ bonus bMaxSPrate,.@r/2;
+ bonus bAgi,5;
+ bonus bFlee,10;
+ if (readparam(bStr)>=90)
+ bonus bBaseAtk,10+(.@r*2);
+ if (readparam(bInt)>=90)
+ bonus bMatk,20+(.@r*3);
+ if (readparam(bVit)>=90)
+ bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0);
+ if (readparam(bAgi)>=90) {
+ bonus bAspdRate,3+(.@r/2);
+ bonus bAspd,((.@r>=10)?1:0);
+ }
+ if (readparam(bDex)>=90)
+ bonus bLongAtkRate,3+(.@r/2);
+ if (readparam(bLuk)>=90)
+ bonus bCritAtkRate,5+.@r;
+ - Id: 20750
+ AegisName: Rouban_Manteau
+ Name: Levain Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bSubRace,RC_Insect,-5;
+ - Id: 20753
+ AegisName: Lian_Robe
+ Name: Lian Robe
+ Type: Armor
+ Weight: 700
+ Defense: 20
+ Range: 1
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 65
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubRace,RC_Formless,-5;
+ - Id: 20756
+ AegisName: Egir_Manteau_K
+ Name: Aegir Cloak
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bUnbreakableGarment;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ - Id: 20761
+ AegisName: C_Wing_Of_Happiness
+ Name: Costume Happiness Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 9
+ - Id: 20762
+ AegisName: C_GreatDevilWing
+ Name: Costume Great Devil Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 10
+ - Id: 20763
+ AegisName: C_Amistr_Bag
+ Name: Costume Amistr Bag
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 4
+ - Id: 20764
+ AegisName: C_Fallen_Angel_Wing
+ Name: Costume Fallen Angel Wing
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 3
+ - Id: 20765
+ AegisName: C_Archangel_Wing
+ Name: Costume Archangel Wing
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ EquipLevelMin: 1
+ View: 49
+ - Id: 20773
+ AegisName: Excelion_Wing
+ Name: Excelion Wing
+ Type: Armor
+ Buy: 20
+ Weight: 900
+ Defense: 40
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bFlee,getrefine() * 2;
+ bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0);
+ - Id: 20778
+ AegisName: RedLotus_Stole
+ Name: Red Lotus Stole
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 8
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,10;
+ bonus bMdef,3;
+ bonus bUseSPrate,-1*(1+(2*.@r/3));
+ if (.@r>=10) {
+ bonus bSPGainValue,20;
+ }
+ - Id: 20779
+ AegisName: Rift_Manteau
+ Name: Rift Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 16
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300);
+ bonus bMaxSP,-50;
+ - Id: 20780
+ AegisName: Unity_STR_Manteau
+ Name: Unity STR Manteau
+ Type: Armor
+ Buy: 32000
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 32000
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Armor
+ Buy: 32000
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bUseSPrate,-(.@r/2);
+ }
+ - Id: 20783
+ AegisName: Hero_Cape
+ Name: Hero Cape
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 10
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Neutral,1+(.@r/3);
+ bonus bFlee,1+(.@r/3);
+ if (.@r > 9) {
+ bonus2 bSubEle,Ele_Neutral,20;
+ bonus bFlee,20;
+ }
+ - Id: 20787
+ AegisName: Unity_Exquisite_Muffler
+ Name: Unity Exquisite Muffler
+ Type: Armor
+ Buy: 32000
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bCritical,2*(.@r/2);
+ }
+ - Id: 20788
+ AegisName: Doram_Only_Cape
+ Name: Private Doram Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bFlee,5;
+ bonus2 bSubEle,Ele_Neutral,2;
+ bonus bFlee2,getrefine()/3;
+ - Id: 20789
+ AegisName: Doram_High_Cape
+ Name: Luxury Doram Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bFlee,7;
+ bonus2 bSubEle,Ele_Neutral,3;
+ .@r = getrefine()/3;
+ bonus bFlee2,.@r;
+ bonus bLuk,.@r;
+ - Id: 20790
+ AegisName: Doram_Ele_Cape
+ Name: Elegant Doram Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bFlee,10;
+ bonus2 bSubEle,Ele_Neutral,5;
+ .@r = getrefine()/2;
+ bonus bFlee2,.@r;
+ bonus bInt,.@r;
+ bonus bDex,.@r;
+ bonus bLuk,.@r;
+ - Id: 20797
+ AegisName: Etran_Shirt
+ Name: Etran Shirt
+ Type: Armor
+ Weight: 150
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,2;
+ .@r = getrefine();
+ if (.@r >= 6)
+ bonus bMaxHPrate,4;
+ if (.@r >= 7)
+ bonus bMaxHPrate,6;
+ if (.@r >= 8)
+ bonus bMaxHPrate,8;
+ if (.@r >= 9)
+ bonus bNoKnockback;
+ - Id: 20798
+ AegisName: GrimReaper_Protection
+ Name: Costume Grim Reaper Protection
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1450
+ - Id: 20799
+ AegisName: Elemental_Towel
+ Name: Elemental Towel
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 13
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bLongAtkRate,2;
+ if (getrefine()>=7) {
+ bonus2 bSkillUseSP,"RA_ARROWSTORM",20;
+ bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60;
+ }
+ if (getrefine()>=8) {
+ bonus bLongAtkRate,2;
+ }
+ if (getrefine()>=9) {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 20800
+ AegisName: Enforcer_cape
+ Name: Enforcer Cape
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ if (getskilllv("AS_GRIMTOOTH") == 5) {
+ bonus2 bSkillAtk,"AS_GRIMTOOTH",50;
+ }
+ if (getskilllv("GC_CROSSIMPACT") == 5) {
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",5;
+ }
+ if (getskilllv("ASC_BREAKER") == 10) {
+ bonus2 bSkillAtk,"ASC_BREAKER",50;
+ }
+ if (.@r>=7) {
+ .@delay += 3;
+ bonus2 bSkillAtk,"AS_GRIMTOOTH",Baselevel;
+ bonus2 bSkillAtk,"ASC_BREAKER",Baselevel/3;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",Baselevel/30;
+ }
+ if (.@r>=9) {
+ .@delay += 3;
+ bonus bMaxSPrate,5;
+ }
+ bonus bDelayrate,-.@delay;
+ if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) {
+ if (.@r >= 7) {
+ bonus bMaxHPrate,20;
+ bonus bLongAtkDef,35;
+ }
+ else {
+ bonus bMaxHPrate,15;
+ bonus bLongAtkDef,20;
+ }
+ }
+ - Id: 20801
+ AegisName: Toughen_Time_Keepr_MT
+ Name: Enhanced Time Keeper Manteau
+ Type: Armor
+ Defense: 13
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bFlee2,5;
+ bonus bMdef,5;
+ bonus bFlee,20;
+ bonus2 bSubEle,Ele_Neutral,15;
+ - Id: 20802
+ AegisName: AmistrBag_Teleport
+ Name: Teleport Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "AL_TELEPORT",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20803
+ AegisName: AmistrBag_Heal
+ Name: Heal Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "AL_HEAL",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20804
+ AegisName: AmistrBag_Greed
+ Name: Greed Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "BS_GREED",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20805
+ AegisName: AmistrBag_Incagi
+ Name: Increase Agility Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "AL_INCAGI",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20806
+ AegisName: AmistrBag_Magnum
+ Name: Magnum Break Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "SM_MAGNUM",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20807
+ AegisName: AmistrBag_Endure
+ Name: Endure Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "SM_ENDURE",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20808
+ AegisName: AmistrBag_Sight
+ Name: Sight Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "MG_SIGHT",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20809
+ AegisName: AmistrBag_Concentrate
+ Name: Improve Concentration Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "AC_CONCENTRATION",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20811
+ AegisName: AmistrBag_Hiding
+ Name: Hiding Amistr Bag
+ Type: Armor
+ View: 4
+ Buy: 300000
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ .@r = getrefine();
+ skill "TF_HIDING",1;
+ bonus2 bExpAddRace,RC_All,.@r/2;
+ bonus2 bDropAddRace,RC_All,.@r/2;
+ if (.@r>8) {
+ bonus bSPGainValue,3;
+ bonus bLongSPGainValue,3;
+ bonus bMagicSPGainValue,3;
+ }
+ if (.@r>11) {
+ bonus bNoCastCancel;
+ }
+ - Id: 20813
+ AegisName: Coak_of_Survival
+ Name: Cloak of Survival
+ Type: Armor
+ Buy: 1000
+ Weight: 550
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 75
+ Refineable: true
+ Script: |
+ bonus bMdef,5;
+ bonus bVit,10;
+ - Id: 20814
+ AegisName: Wakwak_Manteau
+ Name: Wakwak Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 40
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_All,5;
+ .@s = readparam(bStr);
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus bBaseAtk,2*(.@s/10);
+ }
+ if (.@r>=7) {
+ bonus bBaseAtk,3*(.@s/10);
+ }
+ - Id: 20815
+ AegisName: SeraphimRobe
+ Name: Seraphim Robe
+ Type: Armor
+ Weight: 300
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ .@r = getrefine();
+ .@s = getskilllv("CR_TRUST");
+ if (.@r > 6) {
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Holy,20;
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ if (.@r > 8) {
+ bonus2 bSubEle,Ele_Dark,10;
+ bonus2 bSubEle,Ele_Holy,10;
+ bonus bVariableCastrate,-5;
+ }
+ if (.@s > 0) {
+ bonus2 bSubEle,Ele_Holy,-.@s*3;
+ }
+ - Id: 20817
+ AegisName: Diffusion_Bravery_Bag
+ Name: "[Katsua]Adventurer's Backpack"
+ Type: Armor
+ View: 2
+ Weight: 200
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ skill "BS_GREED",1;
+ if (.@r>=9) {
+ bonus bBaseAtk,20;
+ bonus bMatk,30;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus bAspdRate,8;
+ bonus bLongAtkRate,5;
+ bonus bCritAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bBaseAtk,30;
+ bonus bMatk,50;
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bAspdRate,8;
+ bonus bAspd,1;
+ bonus bLongAtkRate,10;
+ bonus bCritAtkRate,15;
+ }
+ - Id: 20819
+ AegisName: Oxygen_Bottle
+ Name: Oxygen Bottle
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bFlee,12+getrefine();
+ bonus bHit,getrefine();
+ - Id: 20820
+ AegisName: Cloak_Of_Elemental
+ Name: Elemental Cape
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee,(10+5*(.@r/3));
+ bonus2 bSubEle,Ele_Neutral,10;
+ if (.@r>=9)
+ bonus bAspdRate,5;
+ - Id: 20821
+ AegisName: Golden_Scarf
+ Name: Golden Scarf
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee,20;
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ } else if (.@r>=7) {
+ bonus bLongAtkRate,5;
+ }
+ - Id: 20822
+ AegisName: Mine_Worker_Backpack
+ Name: Mine Worker's Backpack
+ Type: Armor
+ Weight: 600
+ Defense: 16
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,(5+(.@r/2));
+ if (.@r>=9)
+ bonus bBaseAtk,20;
+ - Id: 20823
+ AegisName: Para_Team_Manteau100
+ Name: Awakened Eden Group Manteau I
+ Type: Armor
+ Defense: 20
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bFlee,12;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bMaxHP,500;
+ bonus bFlee2,2;
+ if (.@r >= 9) {
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_All,10;
+ bonus2 bSubEle,Ele_Neutral,-10;
+ }
+ }
+ - Id: 20824
+ AegisName: Para_Team_Manteau130
+ Name: Awakened Eden Group Manteau II
+ Type: Armor
+ Defense: 25
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,10;
+ bonus bFlee,12;
+ bonus bMaxHP,500;
+ bonus bFlee2,2;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus bMaxHP,500;
+ bonus2 bSubEle,Ele_All,10;
+ bonus2 bSubEle,Ele_Neutral,-10;
+ if (.@r >= 9) {
+ bonus2 bSubEle,Ele_Neutral,5;
+ }
+ }
+ - Id: 20825
+ AegisName: Para_Team_Manteau160
+ Name: Awakened Eden Group Manteau III
+ Type: Armor
+ Defense: 30
+ Locations:
+ Garment: true
+ EquipLevelMin: 160
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_All,10;
+ bonus bFlee,12;
+ bonus bMaxHP,1000;
+ bonus bFlee2,2;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ bonus2 bSubEle,Ele_Neutral,5;
+ if (.@r >= 9) {
+ skill "BS_GREED",1;
+ }
+ }
+ - Id: 20826
+ AegisName: Angel_Feather
+ Name: Angel Feather
+ Type: Armor
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 18
+ - Id: 20830
+ AegisName: Wings_of_Seraph
+ Name: Wings of Seraph
+ Type: Armor
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 8
+ - Id: 20831
+ AegisName: Elder_Spirit
+ Name: Adventurer's Spirit
+ Type: Armor
+ Buy: 1000
+ Weight: 400
+ Defense: 40
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,5;
+ if (.@r>=5)
+ bonus bMatk,5*(readparam(bInt)/60);
+ if (.@r>=7)
+ bonus bMatk,5*(readparam(bInt)/10);
+ - Id: 20834
+ AegisName: Manteau_Of_Vagabond
+ Name: Drifter's Cape
+ Type: Armor
+ Weight: 400
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ .@bonus = 20;
+ if (.@r>=7) {
+ .@bonus += 5;
+ }
+ if (.@r>=9) {
+ .@bonus += 5;
+ }
+ bonus2 bSubEle,Ele_Neutral,.@bonus;
+ - Id: 20835
+ AegisName: Fallen_Angel_Wings_
+ Name: "[Katsuya] Fallen Angel Wings"
+ Type: Armor
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ 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;
+ - Id: 20836
+ AegisName: Skin_Of_Lindwurm
+ Name: Skin of Lindwyrm
+ Type: Armor
+ Buy: 1000
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgiVit,5;
+ bonus bMdef,10;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubRace,RC_Dragon,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ .@r = getrefine();
+ .@val = (readparam(bAgi)+readparam(bVit))/20;
+ if (.@r>=7) {
+ skill "TF_HIDING",1;
+ if (.@r>=8) {
+ bonus bMaxHPrate,.@val;
+ bonus bVariableCastrate,-2*.@val;
+ if (.@r>=9) {
+ skill "AS_CLOAKING",1;
+ }
+ }
+ }
+ - Id: 20837
+ AegisName: Skin_Of_Gwiber
+ Name: Skin of Gwiber
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bInt,5;
+ bonus bDex,5;
+ bonus bMdef,10;
+ bonus2 bSubEle,Ele_Dark,5;
+ bonus2 bSubEle,Ele_Undead,5;
+ bonus2 bSubRace,RC_Demon,5;
+ bonus2 bSubRace,RC_Undead,5;
+ .@r = getrefine();
+ .@val = (readparam(bInt)+readparam(bDex))/20;
+ if (.@r>=7) {
+ bonus bSPGainValue,10;
+ if (.@r>=8) {
+ bonus bBaseAtk,5*.@val;
+ bonus bDelayrate,-1*.@val;
+ if (.@r>=9) {
+ bonus bSPGainValue,10;
+ }
+ }
+ }
+ - Id: 20838
+ AegisName: Muffler_IL
+ Name: Illusion Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 8
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,(100+(100*.@r));
+ bonus bMaxSP,(10+(5*.@r));
+ - Id: 20840
+ AegisName: Cape_Of_Ancient_Lord_IL
+ Name: Illusion Ancient Cape
+ Type: Armor
+ Weight: 600
+ Defense: 18
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@val = min(getrefine(),10)/2;
+ bonus bAgi,(2+.@val);
+ - Id: 20842
+ AegisName: Bag_Of_Antonio_P
+ Name: Candy Pouch Bag (Physical)
+ Type: Armor
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20843
+ AegisName: Bag_Of_Antonio_S
+ Name: Candy Pouch Bag (Range)
+ Type: Armor
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20844
+ AegisName: Bag_Of_Antonio_
+ Name: Candy Pouch Bag (Magic)
+ Type: Armor
+ Weight: 200
+ Defense: 30
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20845
+ AegisName: Skin_Of_Marraco
+ Name: Malach's Skin
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bLuk,5;
+ bonus bMdef,10;
+ bonus2 bSubEle,Ele_Ghost,5;
+ bonus2 bSubEle,Ele_Holy,5;
+ bonus2 bSubRace,RC_Angel,5;
+ bonus2 bSubRace,RC_Formless,5;
+ .@r = getrefine();
+ .@s = (readparam(bStr)+readparam(bLuk))/20;
+ if (.@r>=7) {
+ bonus bCritAtkRate,5;
+ if (.@r>=8) {
+ bonus bAspdRate,.@s;
+ bonus bCritical,.@s;
+ if (.@r>=9) {
+ bonus bCritAtkRate,5;
+ }
+ }
+ }
+ - Id: 20846
+ AegisName: Temporal_Manteau
+ Name: Temporal Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 20847
+ AegisName: Illusion_Survivor_Manteau
+ Name: Illusion Survivor Manteau
+ Type: Armor
+ Weight: 550
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bVit,15;
+ - Id: 20855
+ AegisName: Rental_Oxygen_Bomb
+ Name: Costume Oxygen Tank
+ Type: Armor
+ Locations:
+ Garment: true
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,30;
+ bonus bFlee,30;
+ bonus2 bSubRace,RC_Fish,10;
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bSubEle,Ele_Water,15;
+ - Id: 20856
+ AegisName: YSF01_Manteau
+ Name: YSF01 Manteau
+ Type: Armor
+ Weight: 750
+ Defense: 32
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 8) {
+ bonus bBaseAtk,20;
+ if (.@r >= 11) {
+ .@val = -3;
+ if (.@r >= 13) {
+ .@val += -4;
+ }
+ }
+ }
+ if (readparam(bVit) >= 125) {
+ .@val += -10;
+ }
+ if (.@val) {
+ bonus bDelayrate,.@val;
+ }
+ - Id: 20859
+ AegisName: Phreeoni_Wing
+ Name: Phreeoni Wings
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bHit,10;
+ if (.@r>=7)
+ bonus bHit,20;
+ if (.@r>=8)
+ bonus bHit,30;
+ if (.@r>=9)
+ bonus bHit,40;
+ if (.@r>=10)
+ bonus bHit,100;
+ - Id: 20860
+ AegisName: BattleSurcoat
+ Name: Battle Surcoat
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20863
+ AegisName: MenblattWing
+ Name: Menblatt's Wings
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 40
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,30;
+ if (.@r>=5)
+ bonus bLongAtkRate,readparam(bDex)/60;
+ if (.@r>=7)
+ bonus bLongAtkRate,readparam(bDex)/10;
+ - Id: 20902
+ AegisName: True_Hunting_Manteau
+ Name: True Hunting Manteau
+ Type: Armor
+ Weight: 700
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-10;
+ bonus bFlee,15;
+ bonus bVariableCastrate,-5*(getrefine()/3);
+ bonus2 bSubRace,RC_Insect,10;
+ bonus2 bSubRace,RC_Brute,10;
+ - Id: 20903
+ AegisName: R_Hunting_Manteau
+ Name: Short-term Hunting Manteau
+ Type: Armor
+ Defense: 18
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-15;
+ bonus bFlee,15;
+ bonus2 bSubRace,RC_Insect,10;
+ bonus2 bSubRace,RC_Brute,10;
+ - Id: 20906
+ AegisName: Beginner's_Cloak
+ Name: Beginner's Cloak
+ Type: Armor
+ Buy: 20
+ Defense: 10
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ bonus bVariableCastrate,-5;
+ - Id: 20922
+ AegisName: Leviathan_muffler
+ Name: Leviathan Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus2 bAddEle,Ele_Water,15+.@r;
+ bonus2 bMagicAddEle,Ele_Water,15+.@r;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus bAspdRate,.@r;
+ if (.@r>=10)
+ bonus2 bSubEle,Ele_Water,100;
+ - Id: 20923
+ AegisName: Illusion_Goibne_Spaulders
+ Name: Illusion Goibne Spaulders
+ Type: Armor
+ Weight: 1000
+ Defense: 47
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,2;
+ bonus bVit,1;
+ if (.@r >= 7) {
+ .@val = 5;
+ if (.@r >= 9) {
+ .@val += 10;
+ }
+ }
+ if (.@val) {
+ bonus2 bAddEle,Ele_Water,.@val;
+ bonus2 bAddEle,Ele_Wind,.@val;
+ bonus2 bAddEle,Ele_Earth,.@val;
+ bonus2 bAddEle,Ele_Fire,.@val;
+ }
+ - Id: 20925
+ AegisName: Commander_Manteau2
+ Name: Commander Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus bMdef,10;
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ bonus2 bSubRace,RC_Player_Human,3;
+ if (.@r>=5) {
+ bonus bBaseAtk,20;
+ bonus bMatk,20;
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ }
+ if (.@r>=7) {
+ bonus bBaseAtk,30;
+ bonus bMatk,30;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ }
+ - Id: 20931
+ AegisName: Rainbow_Scarf_Jp
+ Name: Prism Rangers Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ if (.@r >= 7) {
+ .@val = 10;
+ } else if (.@r >= 5) {
+ .@val = 5;
+ }
+ else {
+ .@val = 2;
+ }
+ bonus bMaxHPrate,.@val;
+ bonus bMaxSPrate,.@val;
+ bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT");
+ if (getskilllv("RA_WUGRIDER") == 3) {
+ bonus2 bSkillCooldown,"RA_UNLIMIT",-180000;
+ }
+ if (getskilllv("RA_CAMOUFLAGE") == 5) {
+ bonus bDelayrate,-10;
+ }
+ bonus2 bSkillCooldown,"RA_ARROWSTORM",-200;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",getskilllv("RA_AIMEDBOLT");
+ UnEquipScript: |
+ sc_end SC_UNLIMIT;
+ - Id: 20932
+ AegisName: Old_Moc_Shawl
+ Name: Old Morocc Shawl
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r= getrefine();
+ bonus bMaxHPrate,5;
+ bonus bFlee,10;
+ if (.@r>=7)
+ bonus bFlee,20;
+ if (.@r>=8) {
+ bonus bFlee,30;
+ bonus bRestartFullRecover;
+ }
+ if (.@r>=9)
+ bonus bFlee,40;
+ if (.@r>=10)
+ bonus bFlee2,25;
+ - Id: 20933
+ AegisName: Illusion_Engine_A
+ Name: Illusion Engine wing A-type
+ Type: Armor
+ Weight: 900
+ Defense: 50
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000+(100*(.@r/2));
+ if (.@r >= 7) {
+ bonus bAspdRate,5;
+ }
+ - Id: 20934
+ AegisName: Illusion_Engine_B
+ Name: Illusion Engine wing B-type
+ Type: Armor
+ Weight: 900
+ Defense: 50
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000+(100*(.@r/2));
+ if (.@r >= 7) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 20935
+ AegisName: Lava_Leather_Manteau
+ Name: Lava Leather Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 50
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bHit,10;
+ .@r = getrefine();
+ if (.@r>=7)
+ bonus bHit,5;
+ if (.@r>=9)
+ bonus bHit,5;
+ if (.@r>=11)
+ bonus bDelayrate,-3;
+ - Id: 20936
+ AegisName: Lava_Leather_Muffler
+ Name: Lava Leather Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 350
+ Defense: 35
+ Slots: 1
+ Locations:
+ Garment: true
+ 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;
+ - Id: 20937
+ AegisName: Lava_Leather_Hood
+ Name: Lava Leather Hood
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-10;
+ .@r = getrefine();
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus bVariableCastrate,-10;
+ if (.@r>=11)
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ - Id: 20939
+ AegisName: Time_Overload_Hood
+ Name: Temporal Transcendence Manteau
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus bHit,10;
+ bonus bFlee,30;
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ - Id: 20940
+ AegisName: Violet_Halo
+ Name: Violet Halo
+ Type: Armor
+ View: 39
+ Weight: 100
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20+((.@r/3)*20);
+ bonus bLongAtkRate,3+((.@r/3)*3);
+ bonus bCritAtkRate,3+((.@r/3)*3);
+ if (.@r>10) {
+ bonus bDelayrate,-4;
+ }
+ - Id: 20941
+ AegisName: Phoenix_Muffler
+ Name: Phoenix Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Defense: 18
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus2 bAddEle,Ele_Fire,15+.@r;
+ bonus2 bMagicAddEle,Ele_Fire,15+.@r;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus bAspdRate,.@r;
+ if (.@r>=10)
+ bonus2 bSubEle,Ele_Fire,100;
+ - Id: 20942
+ AegisName: Manteau_Of_Guardsman
+ Name: Manteau Of Guardsman
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,15;
+ bonus bMaxHPrate,5+3*(.@r/3);
+ bonus bMaxSPrate,5+3*(.@r/3);
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ - Id: 20943
+ AegisName: Geffen_Magic_Muffler
+ Name: Geffen Magic Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 550
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@val = -10;
+ bonus bMatk,(10*(.@r/2));
+ bonus bMatkRate,(.@r/3);
+ if (.@r >= 7) {
+ bonus2 bMagicAtkEle,Ele_All,5;
+ }
+ if (.@r >= 9) {
+ .@val -= 10;
+ }
+ bonus bVariableCastrate,.@val;
+ - Id: 20944
+ AegisName: Anti_Magic_Manteau
+ Name: Anti Magic Manteau
+ Type: Armor
+ Buy: 20
+ Weight: 750
+ Defense: 23
+ Slots: 1
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20945
+ AegisName: Regia_Hunting_Manteau
+ Name: Regia Hunting Manteau
+ Type: Armor
+ Weight: 700
+ Defense: 9
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bFlee,15;
+ bonus2 bSubRace,RC_Insect,7;
+ bonus2 bSubRace,RC_Brute,7;
+ bonus bVariableCastrate,-2*(getrefine()/3);
+ - Id: 20946
+ AegisName: Drag_Manteau
+ Name: Dragon Scale Hood
+ Type: Armor
+ Weight: 500
+ Defense: 23
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,2;
+ bonus bDef,20;
+ bonus bHealPower2,15;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Dragon,2;
+ }
+ if (.@r>=9) {
+ autobonus2 "{ bonus2 bHPRegenRate,2000,1000; }",1,3000,BF_MAGIC|BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus2 bSubRace,RC_Dragon,3;
+ }
+ - Id: 20947
+ AegisName: Cassock_Manteau
+ Name: Clergy's Manteau
+ Type: Armor
+ Weight: 450
+ Defense: 40
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,5;
+ bonus bMdef,10;
+ bonus bVariableCastrate,-10;
+ bonus2 bMagicAddRace,RC_Angel,(.@r/2);
+ bonus2 bMagicAddRace,RC_Demon,(.@r/2);
+ bonus2 bSubRace,RC_Angel,(.@r/3);
+ bonus2 bSubRace,RC_Demon,(.@r/3);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ - Id: 20948
+ AegisName: Illusion_Morpheus's_Shawl
+ Name: Illusion Morpheus's Shawl
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 8
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bMdef,5;
+ .@r = getrefine();
+ if (.@r >= 7) {
+ .@bonus = -10;
+ if (.@r >= 9) {
+ .@bonus -= 10;
+ }
+ bonus bVariableCastrate,.@bonus;
+ }
+ - Id: 20949
+ AegisName: Skin_Of_Ladon_J
+ Name: Ladon's Skin
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus bAgi,5;
+ bonus bVit,5;
+ bonus bMdef,10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ .@val = 10;
+ bonus bSPGainValue,10;
+ bonus bLongSPGainValue,10;
+ if (.@r>=8) {
+ .@s = (readparam(bAgi)+readparam(bVit))/20;
+ bonus bBaseAtk,15*.@s;
+ bonus bHit,5*.@s;
+ if (.@r>=9) {
+ .@val += 10;
+ }
+ }
+ bonus bSPGainValue,.@val;
+ bonus bLongSPGainValue,.@val;
+ }
+ - Id: 20952
+ AegisName: Anony_As_Muffler
+ Name: Nameless Assassin's Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r= getrefine();
+ bonus bMdef,5;
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus2 bSubRace,RC_Player_Human,5;
+ if (.@r>=7) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus bAspd,1;
+ bonus bHPGainValue,5;
+ bonus bLongHPGainValue,5;
+ }
+ if (.@r>=8)
+ bonus bSpeedRate,40;
+ if (.@r>=9) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bAspd,1;
+ bonus bHPGainValue,5;
+ bonus bLongHPGainValue,5;
+ }
+ if (.@r>=10)
+ skill "AS_CLOAKING",3;
+ - Id: 20953
+ AegisName: H_AD_Hood
+ Name: High Adventurer Hood
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,10;
+ - Id: 20955
+ AegisName: Chrismas_Tree
+ Name: Christmas Guardian Tree
+ Type: Armor
+ Weight: 100
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,(.@r/2);
+ bonus2 bAddClass,Class_All,(.@r/2);
+ if (.@r>=9) {
+ bonus bMatk,30;
+ bonus bBaseAtk,30;
+ }
+ if (.@r>=11) {
+ autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Holy,20; }",1,10000,BF_WEAPON;
+ }
+ - Id: 20962
+ AegisName: Skin_Of_Typhon
+ Name: Typhon's Skin
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Fish,5;
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubEle,Ele_Poison,5;
+ bonus bAgi,5;
+ bonus bVit,5;
+ bonus bMdef,10;
+ .@r = getrefine();
+ if (.@r>=7) {
+ .@sp = 10;
+ if (.@r>=8) {
+ .@s = (readparam(bAgi)+readparam(bVit))/20;
+ bonus bMatk,15*.@s;
+ bonus bDef,20*.@s;
+ if (.@r>=9) {
+ .@sp += 10;
+ }
+ }
+ bonus bMagicSPGainValue,.@sp;
+ }
+ - Id: 20963
+ AegisName: Temporal_M_Str
+ Name: Temporal Str Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20964
+ AegisName: Temporal_M_Agi
+ Name: Temporal Agi Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20965
+ AegisName: Temporal_M_Vit
+ Name: Temporal Vit Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20966
+ AegisName: Temporal_M_Int
+ Name: Temporal Int Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,(.@r/2);
+ bonus bMatk,10*(.@r/2);
+ bonus2 bMagicAtkEle,Ele_All,3*(.@r/4);
+ if (.@r>=7) {
+ bonus bMatkRate,7;
+ }
+ if (.@r>=9) {
+ bonus2 bIgnoreDefRaceRate,RC_Demon,20;
+ bonus2 bIgnoreMDefRaceRate,RC_Demon,20;
+ bonus2 bIgnoreDefRaceRate,RC_Brute,20;
+ bonus2 bIgnoreMDefRaceRate,RC_Brute,20;
+ }
+ if (.@r>=11) {
+ bonus2 bIgnoreDefRaceRate,RC_Demon,10;
+ bonus2 bIgnoreMDefRaceRate,RC_Demon,10;
+ bonus2 bIgnoreDefRaceRate,RC_Brute,10;
+ bonus2 bIgnoreMDefRaceRate,RC_Brute,10;
+ }
+ - Id: 20967
+ AegisName: Temporal_M_Dex
+ Name: Temporal Dex Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20968
+ AegisName: Temporal_M_Luk
+ Name: Temporal Luk Manteau
+ Type: Armor
+ Weight: 400
+ Defense: 38
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 20969
+ AegisName: Rainbow_Muffler_Jp
+ Name: Rainbow Muffler
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 12
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@lvl = getskilllv("WM_GLOOMYDAY");
+ if (.@r >= 7) {
+ .@val = 10;
+ } else if (.@r >= 5) {
+ .@val = 5;
+ }
+ else {
+ .@val = 2;
+ }
+ bonus bMaxHPrate,.@val;
+ bonus bMaxSPrate,.@val;
+ bonus bMatkRate,.@val+(4*.@lvl);
+ bonus2 bSubRace,RC_Player_Human,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
+ bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl;
+ if (getskilllv("WM_FRIGG_SONG") == 5) {
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-200;
+ bonus bAspdRate,10;
+ }
+ if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) {
+ skill "AL_HEAL",10;
+ bonus bMagicHPGainValue,200;
+ bonus bMagicSPGainValue,20;
+ }
+ - Id: 20988
+ AegisName: C_Mechanical_Butterfly
+ Name: "Costume: Mechanical Butterfly"
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 92
+ - Id: 20990
+ AegisName: C_Rotating_Gears
+ Name: "Costume: Rotating Gears"
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ - Id: 21000
+ AegisName: Upg_Twohand_Sword
+ Name: Upg Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1500
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*12);
+ bonus bMatk,(.@r*5);
+ if (BaseLevel>70)
+ bonus bBaseAtk,(((BaseLevel-70)/10)*10);
+ - Id: 21001
+ AegisName: Velum_Claymore
+ Name: Vellum Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3500
+ Attack: 260
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,80;
+ bonus2 bAddRace,RC_Player_Doram,80;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30;
+ .@r = getrefine();
+ if (.@r>=6) {
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ }
+ if (.@r>=9) {
+ bonus bShortWeaponDamageReturn,20;
+ bonus bMagicDamageReturn,20;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,300,BF_MAGIC,0;
+ }
+ - Id: 21002
+ AegisName: Velum_Katzbalger
+ Name: Vellum Katzbalger
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2500
+ Attack: 100
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 95
+ Refineable: true
+ Script: |
+ bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8;
+ bonus3 bHPVanishRaceRate,RC_Player_Doram,1000,8;
+ - Id: 21003
+ AegisName: Muramasa_
+ Name: Muramasa
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 155
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 48
+ Refineable: true
+ Script: |
+ bonus bCritical,30;
+ bonus bAspdRate,8;
+ bonus2 bAddEff2,Eff_Curse,10;
+ - Id: 21004
+ AegisName: Alca_Bringer_
+ Name: Alca Bringer
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3400
+ Attack: 280
+ Range: 2
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAspd,(getrefine()/2);
+ - Id: 21005
+ AegisName: Metal_Two_Hand_Sword
+ Name: Metal Two Hand Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,(.@r*6);
+ bonus bMatk,(.@r*2);
+ .@i = min(BaseLevel/10,12);
+ if (.@i>2)
+ bonus bBaseAtk,((.@i-2)*5);
+ - Id: 21006
+ AegisName: TE_Woe_Two_Hand_Sword
+ Name: TE Woe Two Hand Sword
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 40
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,40;
+ bonus2 bAddRace,RC_Player_Doram,40;
+ bonus2 bAddEff,Eff_Bleeding,1000;
+ - Id: 21007
+ AegisName: Heavy_Sword
+ Name: Heavy Greatsword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2500
+ Attack: 330
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 1
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bStr,20;
+ - Id: 21008
+ AegisName: Small_Karasuma
+ Name: Small Karasuma
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1000
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bCritAtkRate,getrefine()*2;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;
+ - Id: 21009
+ AegisName: Thanos_Great_Sword
+ Name: Thanos Great Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 10
+ Weight: 1300
+ Attack: 280
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 21010
+ AegisName: Tw_Sword_Of_Evil_Slayer
+ Name: Evil Slayer Slaher Sword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 2000
+ Attack: 225
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_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
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 30000
+ Weight: 5000
+ Attack: 300
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,-5;
+ bonus bCritAtkRate,getrefine();
+ if (readparam(bStr)<=110) {
+ bonus bBaseAtk,-250;
+ }
+ - Id: 21012
+ AegisName: Some_Wizard_MagicSword
+ Name: Some Wizard MagicSword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 2200
+ Attack: 200
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ - Id: 21013
+ AegisName: Hetairoi_Sword
+ Name: Hetairoi Sword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 2200
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2;
+ bonus2 bSkillUseSP,"LK_PARRYING",25;
+ - Id: 21014
+ AegisName: Infinity_Two-Handed_Sword
+ Name: Infinity Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 500
+ Attack: 230
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 21015
+ AegisName: Scarlet_Twohand_Sword
+ Name: Crimson Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1700
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);
+ - Id: 21016
+ AegisName: Sinister_Twohand_Sword
+ Name: Two-Handed Sword of Vicious Mind
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2200
+ Attack: 220
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2)/2;
+ - Id: 21018
+ AegisName: Two_Hand_Spear_170
+ Name: Lindy Hop
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 3400
+ Attack: 340
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,.@r/2;
+ bonus bAspdRate,.@r;
+ bonus bUnbreakableWeapon;
+ - Id: 21019
+ AegisName: Onimaru
+ Name: Onimaru
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 4200
+ Attack: 75
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@bStr = readparam(bStr);
+ .@r = getrefine();
+ bonus bBaseAtk,(min(120,.@bStr));
+ if (.@bStr > 119)
+ bonus bBaseAtk,160;
+ else if (.@bStr > 107)
+ bonus bBaseAtk,80;
+ else if (.@bStr > 94)
+ bonus bBaseAtk,40;
+ if (.@r > 6)
+ bonus bUnbreakableWeapon;
+ bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0;
+ if (.@r > 8)
+ bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100;
+ - Id: 21023
+ AegisName: Toughen_Metal_TH_Sword
+ Name: Enhanced Metal Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",10;
+ bonus bAspdRate,2*.@r;
+ bonus bMatk,3*.@r;
+ bonus bBaseAtk,(8*.@r)+7*(min(BaseLevel,150)/10);
+ - Id: 21030
+ AegisName: Probation_TH_Sword
+ Name: Trial Rune Knight's Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus bCritical,10;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN");
+ }
+ - Id: 21037
+ AegisName: Rebeginer_RK_T_Sword
+ Name: Beginner Rune Knight's Two-Handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus bCritAtkRate,7;
+ }
+ - Id: 21038
+ AegisName: Oriental_Sword
+ Name: Oriental Sword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 1000
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Locations:
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10;
+ if (.@r >= 9)
+ bonus5 bAutoSpell,"RK_SONICWAVE",max(2,getskilllv("RK_SONICWAVE")),100,BF_SHORT|BF_WEAPON,1;
+ if (.@r >= 11)
+ bonus bUnbreakableWeapon;
+ - Id: 21039
+ AegisName: Royal_Knight's_Broadsword
+ Name: Royal Knight's Broadsword
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 4000
+ Attack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7)
+ bonus bCritAtkRate,10;
+ if (.@r>=9)
+ bonus bUnbreakableWeapon;
+ - Id: 21047
+ AegisName: Beam_Claymore_OS
+ Name: Beam Claymor-OS
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 1800
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bCritical,5;
+ if (.@r >= 7) {
+ bonus bAspdRate,7;
+ if (.@r >= 9) {
+ bonus bCritAtkRate,15;
+ if (.@r >= 11) {
+ bonus2 bAddSize,Size_Small,20;
+ bonus2 bAddSize,Size_Medium,20;
+ bonus2 bMagicAddSize,Size_Small,20;
+ bonus2 bMagicAddSize,Size_Medium,20;
+ }
+ }
+ }
+ - Id: 21049
+ AegisName: Evt_Oriental_Sword
+ Name: Sealed Eastern Sword
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus2 bSkillAtk,"RK_SONICWAVE",10*(.@r/3);
+ if (.@r>=7) {
+ bonus5 bAutoSpell,"RK_SONICWAVE",max(2,getskilllv("RK_SONICWAVE")),100,BF_SHORT|BF_WEAPON,1;
+ }
+ if (.@r>=9) {
+ bonus bUnbreakableWeapon;
+ }
+ - Id: 21050
+ AegisName: Illusion_Tae_Goo_Lyeon
+ Name: Illusion Tae Goo Lyeon
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bFlee2,10;
+ bonus bLongAtkRate,.@r*2;
+ if (.@r >= 7) {
+ bonus bUseSPrate,-20;
+ if (.@r >= 9) {
+ bonus bDelayrate,-20;
+ if (.@r >= 11) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ }
+ }
+ }
+ - Id: 21051
+ AegisName: Volar
+ Name: Volar
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 2800
+ Attack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"KN_BOWLINGBASH",30;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000;
+ bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000;
+ }
+ if (.@r>=11) {
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"KN_BOWLINGBASH",20;
+ }
+ - Id: 21052
+ AegisName: Vernan
+ Name: Vernan
+ Type: Weapon
+ SubType: 2hSword
+ Buy: 20
+ Weight: 6500
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 21054
+ AegisName: Ein_BHSWORD
+ Name: Claw Sword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 3500
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,5;
+ bonus2 bAddClass,Class_All,15;
+ if (.@r>=7) {
+ bonus bCritAtkRate,25;
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ autobonus "{ bonus2 bAddSize,Size_All,20; }",1,5000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ bonus bCritical,7;
+ }
+ - Id: 21055
+ AegisName: G_Knight_Sword
+ Name: Guardian Knight Claymore
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 4000
+ Attack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus bCritAtkRate,25;
+ bonus bCritical,5;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus bUnbreakableWeapon;
+ }
+ - Id: 21058
+ AegisName: Up_Dragonic_Slayer
+ Name: Patent Dragonic Slayer
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 2000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,.@r/2*5;
+ bonus bMaxSPrate,.@r/2*5;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5;
+ if (.@r>=7) {
+ bonus bDelayrate,-10;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-7;
+ bonus bMaxSPrate,5;
+ }
+ - Id: 21202
+ AegisName: C_Eat_Coin
+ Name: Costume Eatcoin Helm
+ Type: Armor
+ View: 1869
+ Weight: 100
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 21205
+ AegisName: aegis_21205
+ Name: Nut Cracker # !todo check english name
+ Type: Armor
+ View: 1991
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ - Id: 21206
+ AegisName: aegis_21206
+ Name: Costume Nutcracker # !todo check english name
+ Type: Armor
+ View: 1991
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ - Id: 21207
+ AegisName: C_Bullhead
+ Name: Costume Bull Head
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ View: 2078
+ - Id: 21300
+ AegisName: C_Guardian_Lion_Mask
+ Name: Costume Lion Mask
+ Type: Armor
+ View: 231
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ - Id: 22000
+ AegisName: Temporal_Str_Boots
+ Name: Temporal Boots Of Strength
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bBaseAtk,7*(.@r/3);
+ if (readparam(bStr)>=120)
+ bonus bBaseAtk,50;
+ - Id: 22001
+ AegisName: Temporal_Int_Boots
+ Name: Temporal Boots Of Intelligence
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMatk,10*(.@r/3);
+ if (readparam(bInt)>=120)
+ bonus bMatk,60;
+ - Id: 22002
+ AegisName: Temporal_Agi_Boots
+ Name: Temporal Boots Of Agility
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bAspdRate,3*(.@r/3);
+ if (readparam(bAgi)>=120)
+ bonus bAspd,1;
+ - Id: 22003
+ AegisName: Temporal_Vit_Boots
+ Name: Temporal Boots Of Vitality
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(300*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ if (readparam(bVit)>=120)
+ bonus bMaxHPrate,8;
+ - Id: 22004
+ AegisName: Temporal_Dex_Boots
+ Name: Temporal Boots Of Dexterity
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bDex,3*(.@r/3);
+ if (readparam(bDex)>=120) {
+ bonus bLongAtkRate,5;
+ bonus bFixedCast,-500;
+ }
+ - Id: 22005
+ AegisName: Temporal_Luk_Boots
+ Name: Temporal Boots Of Luck
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMdef,5;
+ bonus bCritAtkRate,2*(.@r/3);
+ if (readparam(bLuk)>=120)
+ bonus bCritAtkRate,30;
+ - Id: 22006
+ AegisName: Temporal_Str_Boots_
+ Name: Temporal Boots Of Strength
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bBaseAtk,7*(.@r/3);
+ if (readparam(bStr)>=120)
+ bonus bBaseAtk,50;
+ - Id: 22007
+ AegisName: Temporal_Vit_Boots_
+ Name: Temporal Boots Of Vitality
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(300*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ if (readparam(bVit)>=120)
+ bonus bMaxHPrate,8;
+ - Id: 22008
+ AegisName: Temporal_Dex_Boots_
+ Name: Temporal Boots Of Dexterity
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bDex,3*(.@r/3);
+ if (readparam(bDex)>=120) {
+ bonus bLongAtkRate,5;
+ bonus bFixedCast,-500;
+ }
+ - Id: 22009
+ AegisName: Temporal_Int_Boots_
+ Name: Temporal Boots Of Intelligence
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMatk,10*(.@r/3);
+ if (readparam(bInt)>=120)
+ bonus bMatk,60;
+ - Id: 22010
+ AegisName: Temporal_Agi_Boots_
+ Name: Temporal Boots Of Agility
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bAspdRate,3*(.@r/3);
+ if (readparam(bAgi)>=120)
+ bonus bAspd,1;
+ - Id: 22011
+ AegisName: Temporal_Luk_Boots_
+ Name: Temporal Boots Of Luck
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMdef,5;
+ bonus bCritAtkRate,2*(.@r/3);
+ if (readparam(bLuk)>=120)
+ bonus bCritAtkRate,30;
+ - Id: 22012
+ AegisName: Mana_Boots
+ Name: Mana Boots
+ Type: Armor
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ EquipLevelMax: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,10;
+ - Id: 22014
+ AegisName: Enhanced_Variant_Shoes
+ Name: Enhanced Variant Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 13
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,12;
+ bonus bMaxSPrate,12;
+ .@r = getrefine();
+ bonus bDef,.@r;
+ bonus bMdef,.@r;
+ - Id: 22015
+ AegisName: Impr_Angel's_Arrival
+ Name: Advanced Angel's Reincarnation
+ Type: Armor
+ Buy: 10000
+ Weight: 300
+ Defense: 8
+ Slots: 1
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ - Id: 22016
+ AegisName: Assassin_Shoes
+ Name: Assassin's Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_DemiHuman,5+getrefine();
+ - Id: 22017
+ AegisName: Fisherman_Shoes
+ Name: Fisherman's Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_Fish,5+getrefine();
+ - Id: 22018
+ AegisName: Shoes_Of_Wise_Man
+ Name: Shoes Of Wise Man
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>5) {
+ bonus bInt,.@r-5;
+ bonus bMaxHPrate,-(.@r-5);
+ }
+ - Id: 22032
+ AegisName: Shoes_Of_Exorcism
+ Name: Exorcist's Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_Demon,5+getrefine();
+ - Id: 22033
+ AegisName: Boots_Of_Gray
+ Name: Boots of Gray
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Holy,2+getrefine()/3;
+ - Id: 22034
+ AegisName: Crimson_Gaiter
+ Name: Crimson Gaiter
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bCritical,2;
+ bonus bCritAtkRate,2;
+ if (getrefine()>=7) {
+ bonus bCritical,3;
+ bonus bCritAtkRate,3;
+ }
+ - Id: 22035
+ AegisName: Vet_Nepen_Heel
+ Name: Heoric Nepenthes Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=8 && .@r<=10)
+ .@i=5+.@r;
+ else if (.@r>=11 && .@r<=13)
+ .@i=5+(.@r*3);
+ else if (.@r>13)
+ .@i=42;
+ bonus bVariableCastrate,-10-.@i;
+ - Id: 22036
+ AegisName: Vet_SliverFox_Boots
+ Name: Heroic Silver Fox Leather Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=8 && .@r<=13)
+ .@i=.@r;
+ else if (.@r>13)
+ .@i=13;
+ bonus bLongAtkRate,5+.@i;
+ - Id: 22037
+ AegisName: Vet_Ungo_Boots
+ Name: Heroic Ungoliant Upgrade Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=8 && .@r<=13)
+ .@i=.@r;
+ else if (.@r>13)
+ .@i=13;
+ bonus bUseSPrate,-5-.@i;
+ - Id: 22042
+ AegisName: Talaria_Shoes
+ Name: Talaria Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ bonus bAspd,1;
+ bonus bMdef,5;
+ - Id: 22043
+ AegisName: Supplement_Part_Agi
+ Name: Supplement Part Agi
+ Type: Armor
+ Buy: 25000
+ Weight: 350
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAspdRate,5+(getrefine()/4);
+ - Id: 22044
+ AegisName: Upgrade_Part_Booster
+ Name: Reinforced Parts - Booster
+ Type: Armor
+ Buy: 10
+ Weight: 1000
+ Defense: 23
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSP,"NC_HOVERING",15;
+ if (getrefine()>=7) {
+ bonus2 bSkillUseSP,"NC_ACCELERATION",20;
+ }
+ - Id: 22045
+ AegisName: Beach_Sandals
+ Name: Summer Sandals
+ Type: Armor
+ Buy: 10
+ Weight: 200
+ Defense: 5
+ Locations:
+ Shoes: true
+ Refineable: true
+ Script: |
+ bonus bFlee,5;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300;
+ - Id: 22046
+ AegisName: Airship_Boots
+ Name: Airship's Boots
+ Type: Armor
+ Buy: 10
+ Defense: 26
+ Locations:
+ Shoes: true
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,1;
+ bonus bAspdRate,10;
+ - Id: 22047
+ AegisName: Felock_Boots
+ Name: Felrock's Boots
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Defense: 13
+ Locations:
+ Shoes: true
+ EquipLevelMin: 125
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ .@r = getrefine();
+ bonus bAspdRate,5;
+ if (.@r>=7) {
+ bonus bAgi,1;
+ bonus bAspdRate,5;
+ }
+ if (.@r>=9) {
+ bonus bAgi,1;
+ bonus bAspdRate,5;
+ }
+ if (.@r>=12) {
+ bonus bAspd,1;
+ }
+ - Id: 22048
+ AegisName: Sombre_Shoes
+ Name: Sombre Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Dark,5;
+ bonus bMaxHPrate,.@r;
+ bonus bMaxSPrate,.@r;
+ - Id: 22049
+ AegisName: Sol_Shoes
+ Name: Sol Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Earth,5;
+ .@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
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Undead,5;
+ .@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
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Fire,5;
+ .@r = getrefine();
+ bonus bMaxHPrate,.@r;
+ bonus bMaxSPrate,.@r;
+ - Id: 22057
+ AegisName: Flow_Shoes
+ Name: Flower Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,3;
+ 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: Egir_Shoes_K
+ Name: Aegir Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 13
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 40
+ Refineable: true
+ Script: |
+ bonus bUnbreakableShoes;
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ - Id: 22060
+ AegisName: Boots_Of_Hunter
+ Name: Hunter Shoes
+ Type: Armor
+ Weight: 300
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_Brute,5+getrefine();
+ - Id: 22061
+ AegisName: Lumiere_Shoes
+ Name: Lumiere Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Holy,5;
+ .@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
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus bMaxHPrate,.@r;
+ bonus bMaxSPrate,.@r;
+ - Id: 22064
+ AegisName: Thorny_Shoes
+ Name: Thorny Shoes
+ Type: Armor
+ Weight: 1000
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ bonus bShortWeaponDamageReturn,getrefine()/2;
+ - Id: 22065
+ AegisName: Poison_Shoes
+ Name: Poison Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Poison,5;
+ bonus bMaxHPrate,.@r;
+ bonus bMaxSPrate,.@r;
+ - Id: 22066
+ AegisName: Spirit_Shoes
+ Name: Spirit Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ 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
+ Type: Armor
+ Buy: 10
+ Weight: 400
+ Defense: 10
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "ALL_CATCRY",1;
+ - Id: 22069
+ AegisName: Lian_Shoes
+ Name: Lian Shoes
+ Type: Armor
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bMdef,3;
+ bonus2 bSubEle,Ele_Neutral,5;
+ .@r = getrefine();
+ bonus bMaxHPrate,.@r;
+ bonus bMaxSPrate,.@r;
+ - Id: 22072
+ AegisName: Hikingboots
+ Name: Hikingboots
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPRate,4+(.@r/3);
+ bonus bMaxSPRate,4+(.@r/3);
+ if (.@r > 9)
+ bonus bSpeedRate,25;
+ - Id: 22075
+ AegisName: Rift_Shoes
+ Name: Rift Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 250
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300);
+ bonus bMaxSP,-50;
+ - Id: 22076
+ AegisName: Hardwood_Slipper
+ Name: Wooden Slipper
+ Type: Armor
+ Buy: 20
+ Weight: 50
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 9
+ Refineable: true
+ Script: |
+ bonus2 bHPRegenRate,2,10000;
+ - Id: 22077
+ AegisName: Red_Eco_Boots
+ Name: Red Eco-Friendly Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 20
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 18
+ Refineable: true
+ Script: |
+ bonus bCritical,5;
+ bonus2 bHPRegenRate,4,10000;
+ bonus2 bSPRegenRate,1,10000;
+ - Id: 22078
+ AegisName: Unity_STR_Boots
+ Name: Unity STR Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bStr,.@r/2;
+ }
+ - Id: 22079
+ AegisName: Unity_AGI_Boots
+ Name: Unity AGI Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bAgi,.@r/2;
+ }
+ - Id: 22080
+ AegisName: Unity_DEX_Boots
+ Name: Unity DEX Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bDex,.@r/2;
+ }
+ - Id: 22081
+ AegisName: Unity_INT_Boots
+ Name: Unity INT Boots
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel<100) {
+ bonus2 bExpAddRace,RC_All,4;
+ bonus bInt,.@r/2;
+ }
+ - Id: 22082
+ AegisName: Polyhedron_Shoes
+ Name: Polyhedron Shoes
+ Type: Armor
+ Weight: 500
+ Defense: 12
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubEle,Ele_Neutral,5;
+ bonus2 bSubEle,Ele_Fire,5;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Wind,5;
+ if (.@r > 4) {
+ .@b = (.@r > 6) ? 10 : 5;
+ bonus2 bAddEle,Ele_Neutral,.@b;
+ bonus2 bAddEle,Ele_Fire,.@b;
+ bonus2 bAddEle,Ele_Water,.@b;
+ bonus2 bAddEle,Ele_Wind,.@b;
+ }
+ - Id: 22083
+ AegisName: Doram_Only_Shoes
+ Name: Private Doram Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 25
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bMaxSP,50;
+ .@r = getrefine()/3;
+ bonus bHPrecovRate,.@r*10;
+ bonus bSPrecovRate,.@r*10;
+ - Id: 22084
+ AegisName: Doram_High_Shoes
+ Name: Luxury Doram Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 30
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxHP,300;
+ bonus bMaxSP,100;
+ .@r = getrefine()/3;
+ bonus bHPrecovRate,20*.@r;
+ bonus bSPrecovRate,20*.@r;
+ - Id: 22085
+ AegisName: Doram_Ele_Shoes
+ Name: Elegant Doram Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 700
+ Defense: 35
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ .@r = getrefine()/2;
+ bonus bMaxHP,100*.@r;
+ bonus bMaxSP,20*.@r;
+ if (.@r >= 4)
+ bonus2 bSkillUseSP,"SU_LOPE",5;
+ - Id: 22089
+ AegisName: Crimson_Gaiter_
+ Name: Crimson Gaiter
+ Type: Armor
+ Weight: 500
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bCritical,2;
+ bonus bCritAtkRate,2;
+ if (getrefine()>=7) {
+ bonus bCritical,3;
+ bonus bCritAtkRate,3;
+ }
+ - Id: 22091
+ AegisName: Fisherman_Shoes_
+ Name: Fisherman's Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ 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
+ Type: Armor
+ Buy: 10
+ Weight: 300
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,1;
+ skill "AL_HEAL",1;
+ - Id: 22102
+ AegisName: Toughen_Time_Keepr_Bts
+ Name: Enhanced Time Keeper Boots
+ Type: Armor
+ Defense: 23
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-5;
+ bonus bMdef,4;
+ bonus bMaxHP,500;
+ bonus bMaxSP,100;
+ - Id: 22103
+ AegisName: Excelion_Leg
+ Name: Excelion Leg
+ Type: Armor
+ Weight: 500
+ Defense: 13
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3;
+ bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3;
+ - Id: 22104
+ AegisName: Pororoca_Shoes
+ Name: Pororoca Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus bMdef,15;
+ bonus bMatkRate,2;
+ bonus2 bMagicAtkEle,Ele_Water,2;
+ skill "SA_DELUGE",5;
+ if (getrefine()>=5) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus bMatkRate,3;
+ bonus2 bMagicAtkEle,Ele_Water,3;
+ }
+ if (getrefine()>=7) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bMatkRate,5;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ }
+ - Id: 22106
+ AegisName: Giant_Boots
+ Name: Giant Boots
+ Type: Armor
+ Weight: 500
+ Defense: 13
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 85
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ bonus bMaxHPrate,2;
+ bonus bMaxSPrate,2;
+ .@r = getrefine();
+ if (.@r > 4) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus bMaxHPrate,4;
+ bonus bMaxSPrate,4;
+ }
+ if (.@r > 6) {
+ bonus2 bSubRace,RC_DemiHuman,2;
+ bonus2 bSubRace,RC_Player_Human,2;
+ bonus bMaxHPrate,4;
+ bonus bMaxSPrate,4;
+ }
+ - Id: 22107
+ AegisName: Modify_Str_Boots
+ Name: Modified Str Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bBaseAtk,7*(.@r/3);
+ if (readparam(bStr)>=120)
+ bonus bBaseAtk,50;
+ - Id: 22108
+ AegisName: Modify_Int_Boots
+ Name: Modified Int Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMatk,10*(.@r/3);
+ if (readparam(bInt)>=120)
+ bonus bMatk,60;
+ - Id: 22109
+ AegisName: Modify_Agi_Boots
+ Name: Modified Agi Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bAspdRate,3*(.@r/3);
+ if (readparam(bAgi)>=120)
+ bonus bAspd,1;
+ - Id: 22110
+ AegisName: Modify_Vit_Boots
+ Name: Modified Vit Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(300*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ if (readparam(bVit)>=120)
+ bonus bMaxHPrate,8;
+ - Id: 22111
+ AegisName: Modify_Dex_Boots
+ Name: Modified Dex Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bDex,3*(.@r/3);
+ if (readparam(bDex)>=120) {
+ bonus bLongAtkRate,5;
+ bonus bFixedCast,-500;
+ }
+ - Id: 22112
+ AegisName: Modify_Luk_Boots
+ Name: Modified Luk Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMdef,5;
+ bonus bCritAtkRate,2*(.@r/3);
+ if (readparam(bLuk)>=120)
+ bonus bCritAtkRate,30;
+ - Id: 22113
+ AegisName: Modify_Str_Boots_
+ Name: Modified Str Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bBaseAtk,7*(.@r/3);
+ if (readparam(bStr)>=120)
+ bonus bBaseAtk,50;
+ - Id: 22114
+ AegisName: Modify_Int_Boots_
+ Name: Modified Int Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMatk,10*(.@r/3);
+ if (readparam(bInt)>=120)
+ bonus bMatk,60;
+ - Id: 22115
+ AegisName: Modify_Agi_Boots_
+ Name: Modified Agi Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bAspdRate,3*(.@r/3);
+ if (readparam(bAgi)>=120)
+ bonus bAspd,1;
+ - Id: 22116
+ AegisName: Modify_Vit_Boots_
+ Name: Modified Vit Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(300*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ if (readparam(bVit)>=120)
+ bonus bMaxHPrate,8;
+ - Id: 22117
+ AegisName: Modify_Dex_Boots_
+ Name: Modified Dex Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 25
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bDex,3*(.@r/3);
+ if (readparam(bDex)>=120) {
+ bonus bLongAtkRate,5;
+ bonus bFixedCast,-500;
+ }
+ - Id: 22118
+ AegisName: Modify_Luk_Boots_
+ Name: Modified Luk Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 20
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Rebellion: true
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,300+(100*(.@r/3));
+ bonus bMaxSP,30+(10*(.@r/3));
+ bonus bMdef,5;
+ bonus bCritAtkRate,2*(.@r/3);
+ if (readparam(bLuk)>=120)
+ bonus bCritAtkRate,30;
+ - Id: 22120
+ AegisName: Shoes_Of_Punishment
+ Name: Shoes of Punishment
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,15;
+ bonus bMatkRate,2;
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus2 bSkillAtk,"AB_JUDEX",30;
+ bonus2 bMagicAddEle,Ele_Holy,2;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus bMatkRate,3;
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus2 bMagicAddEle,Ele_Holy,3;
+ }
+ if (.@r>=7) {
+ bonus bMatkRate,5;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bMagicAddEle,Ele_Holy,5;
+ }
+ - Id: 22122
+ AegisName: Para_Team_Boots100
+ Name: Awakened Eden Group Boots I
+ Type: Armor
+ Defense: 22
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bHPrecovRate,30;
+ bonus bSPrecovRate,14;
+ - Id: 22123
+ AegisName: Para_Team_Boots115
+ Name: Awakened Eden Group Boots II
+ Type: Armor
+ Defense: 25
+ Locations:
+ Shoes: true
+ EquipLevelMin: 115
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ bonus bHPrecovRate,36;
+ bonus bSPrecovRate,18;
+ - Id: 22124
+ AegisName: Para_Team_Boots130
+ Name: Awakened Eden Group Boots III
+ Type: Armor
+ Defense: 27
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bHPrecovRate,36;
+ bonus bSPrecovRate,18;
+ - Id: 22125
+ AegisName: Para_Team_Boots145
+ Name: Awakened Eden Group Boots IV
+ Type: Armor
+ Defense: 30
+ Locations:
+ Shoes: true
+ EquipLevelMin: 145
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bHPrecovRate,40;
+ bonus bSPrecovRate,20;
+ - Id: 22126
+ AegisName: Para_Team_Boots160
+ Name: Awakened Eden Group Boots V
+ Type: Armor
+ Defense: 30
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,2;
+ bonus bHPrecovRate,40;
+ bonus bSPrecovRate,20;
+ bonus bUseSPrate,-5;
+ - Id: 22131
+ AegisName: Cowboy_Boots
+ Name: Spurred Boots
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ 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;
+ - Id: 22133
+ AegisName: Shoes_IL
+ Name: Illusion Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 10
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,(100+(100*.@r));
+ bonus bMaxSP,(10+(5*.@r));
+ - Id: 22134
+ AegisName: Enforcer_Shoes
+ Name: Enforcer Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 12
+ Locations:
+ Shoes: true
+ 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 bIgnoreDefRaceRate,RC_All,20*.@c;
+ bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c);
+ - Id: 22138
+ AegisName: Demonist_Shoes
+ Name: Devil Worshipper Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ 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;
+ }
+ - Id: 22141
+ AegisName: YSF01_Greave
+ Name: YSF01 Greave
+ Type: Armor
+ Weight: 1300
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 8) {
+ bonus bAspdRate,8;
+ if (.@r >= 11) {
+ bonus bAspd,1;
+ if (.@r >= 13) {
+ .@val = 10;
+ }
+ }
+ }
+ if (readparam(bLuk) >= 125) {
+ .@val += 30;
+ }
+ if (.@val) {
+ bonus bCritAtkRate,.@val;
+ }
+ - Id: 22145
+ AegisName: TenguShoes
+ Name: Tengu's Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 12
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE");
+ .@b = getskilllv("SR_GENTLETOUCH_CURE");
+ .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN");
+ .@hpsp = 3;
+ if (.@r >= 5) {
+ .@hpsp += 7;
+ .@red = 5;
+ if (.@r >= 7) {
+ .@hpsp += 10;
+ .@red += 5;
+ }
+ bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red;
+ }
+ bonus bMdef,10;
+ bonus bMaxHPrate,.@hpsp+(2*.@b);
+ bonus bMaxSPrate,.@hpsp;
+ skill "SA_CASTCANCEL",1;
+ bonus2 bSkillUseSP,"MO_BODYRELOCATION",5;
+ bonus bDef,30*.@a;
+ bonus2 bSubRace,RC_Player_Doram,.@a;
+ bonus2 bSubRace,RC_Player_Human,.@a;
+ bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10;
+ bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10;
+ bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10;
+ bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE");
+ bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET");
+ - Id: 22168
+ AegisName: True_Hunting_Boots
+ Name: True Hunting Boots
+ Type: Armor
+ Weight: 500
+ Defense: 13
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAspdRate,8+2*(getrefine()/3);
+ - Id: 22169
+ AegisName: R_Hunting_Boots
+ Name: Short-term Hunting Boots
+ Type: Armor
+ Defense: 13
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,8;
+ - Id: 22170
+ AegisName: Shoes_Of_Servival
+ Name: Survivor's Shoes
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 7) {
+ .@hpsp = 20;
+ .@dmg = 10;
+ } else if (.@r >= 5) {
+ .@hpsp = 10;
+ .@dmg = 5;
+ }
+ else {
+ .@hpsp = 3;
+ .@dmg = 2;
+ }
+ bonus bMdef,15;
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus bMaxHPrate,.@hpsp;
+ bonus bMaxSPrate,.@hpsp;
+ bonus bMatkRate,.@dmg;
+ bonus2 bMagicAtkEle,Ele_Wind,.@dmg;
+ bonus2 bMagicAtkEle,Ele_Earth,.@dmg;
+ - Id: 22171
+ AegisName: Ancient_Hero_Boots
+ Name: Ancient Hero Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus bMaxHPrate,2*(.@r/3);
+ bonus bMaxSPrate,.@r/3;
+ if (.@r >= 9) {
+ .@val = -300;
+ if (.@r >= 12) {
+ .@val -= 200;
+ if (.@r >= 14) {
+ bonus bDelayrate,-5;
+ }
+ }
+ bonus bFixedCast,.@val;
+ }
+ - Id: 22172
+ AegisName: Gray_Wing_Boots
+ Name: Gray Wing Boots
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus bMdef,15;
+ bonus bLongAtkRate,2;
+ bonus bCritAtkRate,2;
+ skill "TF_HIDING",1;
+ if (.@r>=5) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus bLongAtkRate,3;
+ bonus bCritAtkRate,3;
+ }
+ if (.@r>=7) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bLongAtkRate,5;
+ bonus bCritAtkRate,5;
+ }
+ - Id: 22173
+ AegisName: Beginner's_Boots
+ Name: Beginner's Boots
+ Type: Armor
+ Buy: 20
+ 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;
+ - Id: 22189
+ AegisName: Shoes_Of_Pilgrim
+ Name: Pilgrim Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ bonus bDef,50*getskilllv("AB_SECRAMENT");
+ bonus bMdef,15;
+ bonus bAspdRate,4*getskilllv("AB_CANTO");
+ bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000;
+ bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO");
+ bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT");
+ bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT");
+ bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL");
+ if (.@r>=5) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus bUseSPrate,-3;
+ }
+ if (.@r>=7) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bUseSPrate,-5;
+ }
+ - Id: 22190
+ AegisName: Illusion_Boots
+ Name: Illusion Boots
+ Type: Armor
+ Weight: 600
+ Defense: 16
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,(5*(.@r/3));
+ bonus bAspdRate,.@r;
+ - Id: 22192
+ AegisName: Illusion_Goibne's_Greaves
+ Name: Illusion Goibne's Greaves
+ Type: Armor
+ Weight: 1200
+ Defense: 42
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ if (.@r >= 7) {
+ bonus bVariableCastrate,-5;
+ if (.@r >= 9) {
+ bonus bLongAtkRate,10;
+ }
+ }
+ - Id: 22195
+ AegisName: Booster_Shoes
+ Name: Booster Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 30
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSubRace,RC_Player_Human,5;
+ if (.@r>=7) {
+ if (readparam(bStr)>=125)
+ bonus bBaseAtk,90;
+ if (readparam(bAgi)>=125)
+ bonus bAspd,2;
+ if (readparam(bVit)>=125)
+ bonus bMaxHPrate,12;
+ if (readparam(bInt)>=125)
+ bonus bMatk,120;
+ if (readparam(bDex)>=125)
+ bonus bLongAtkRate,10;
+ if (readparam(bLuk)>=125)
+ bonus bCritAtkRate,20;
+ }
+ if (.@r>=9) {
+ if (readparam(bStr)>=125)
+ bonus bBaseAtk,90;
+ if (readparam(bAgi)>=125)
+ bonus bAspd,2;
+ if (readparam(bVit)>=125)
+ bonus bMaxHPrate,12;
+ if (readparam(bInt)>=125)
+ bonus bMatk,120;
+ if (readparam(bDex)>=125)
+ bonus bLongAtkRate,10;
+ if (readparam(bLuk)>=125)
+ bonus bCritAtkRate,20;
+ }
+ - Id: 22196
+ AegisName: Illusion_Leg_A
+ Name: Illusion Leg A-type
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,200+(20*(.@r/2));
+ if (.@r >= 7) {
+ bonus bLongAtkRate,5;
+ }
+ - Id: 22197
+ AegisName: Illusion_Leg_B
+ Name: Illusion Leg B-type
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,200+(20*(.@r/2));
+ if (.@r >= 7) {
+ bonus2 bMagicAtkEle,Ele_All,5;
+ }
+ - Id: 22198
+ AegisName: Traveler_Shoes
+ Name: Traveler Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 15
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMdef,15;
+ bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG"));
+ bonus bMaxSPrate,3;
+ bonus bMatkRate,2;
+ bonus2 bMagicAddEle,Ele_Neutral,5;
+ bonus bAllStats,getskilllv("WA_SWING_DANCE");
+ bonus bAspdRate,4*getskilllv("MI_HARMONIZE");
+ bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY");
+ bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY");
+ bonus3 bAddEff,Eff_Sleep,400*min(5,getskilllv("WM_LULLABY_DEEPSLEEP")),ATF_MAGIC;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ bonus bMatkRate,3;
+ bonus2 bMagicAddEle,Ele_Neutral,3;
+ }
+ if (.@r>=7) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bMatkRate,5;
+ bonus2 bMagicAddEle,Ele_Neutral,5;
+ }
+ - Id: 22199
+ AegisName: Lava_Leather_Boots
+ Name: Lava Leather Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 50
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@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: 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;
+ - Id: 22201
+ AegisName: Lava_Leather_Sandals
+ Name: Lava Leather Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Fire,3;
+ if (.@r>=7)
+ bonus bMatk,25;
+ if (.@r>=9)
+ bonus bMatk,15;
+ - Id: 22204
+ AegisName: Time_Overload_Boots
+ Name: Temporal Transcendence Boots
+ Type: Armor
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritical,10;
+ bonus2 bMagicAtkEle,Ele_All,10;
+ bonus bCritAtkRate,10;
+ - Id: 22206
+ AegisName: Regia_Hunting_Boots
+ Name: Regia Hunting Boots
+ Type: Armor
+ Weight: 500
+ Defense: 5
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 50
+ Refineable: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bHit,2*(getrefine()/3);
+ - Id: 22207
+ AegisName: Imperial_Boots
+ Name: Imperial Boots
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Defense: 12
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ skill "AL_INCAGI",1;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR");
+ bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION");
+ if (getskilllv("LG_INSPIRATION")>=5)
+ bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000;
+ bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("LG_PINPOINTATTACK");
+ if (.@r>=5) {
+ bonus bMaxSPrate,7;
+ bonus bMaxHPrate,7;
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>=7) {
+ bonus bMaxSPrate,10;
+ bonus bMaxHPrate,10;
+ bonus bLongAtkRate,5;
+ }
+ - Id: 22208
+ AegisName: Dragon_Boots
+ Name: Dragon Scale Boots
+ Type: Armor
+ Weight: 600
+ Defense: 35
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,500;
+ bonus bAspdRate,7;
+ bonus bVariableCastrate,-7;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Dragon,2;
+ }
+ if (.@r>=9) {
+ autobonus2 "{ bonus2 bSPRegenRate,500,1000; }",1,3000,BF_MAGIC|BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus2 bSubRace,RC_Dragon,3;
+ }
+ - Id: 22209
+ AegisName: Cassock_Boots
+ Name: Clergy's Boots
+ Type: Armor
+ Weight: 400
+ Defense: 35
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bDef,30;
+ bonus bAspdRate,10;
+ bonus2 bAddRace,RC_Angel,(.@r/2);
+ bonus2 bAddRace,RC_Demon,(.@r/2);
+ bonus2 bSubRace,RC_Angel,(.@r/3);
+ bonus2 bSubRace,RC_Demon,(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ - Id: 22210
+ AegisName: Fluffy_FishShoes_J
+ Name: Fluffy Fish Shoes
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 12
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@hpsp = 3;
+ .@val = -10 * getskilllv("SU_SHRIMPARTY");
+ if (.@r>=5) {
+ .@hpsp += 7;
+ .@delay = -10;
+ if (.@r>=7) {
+ .@hpsp += 10;
+ .@delay -= 10;
+ }
+ bonus bDelayrate,.@delay;
+ }
+ if (getskilllv("SU_SPIRITOFSEA") == 1) {
+ autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING","{ specialeffect2 777; specialeffect2 826; }";
+ }
+ if (getskilllv("SU_GROOMING") == 5) {
+ bonus bFixedCastrate,-50;
+ bonus bNoKnockback;
+ }
+ bonus bMaxHPrate,.@hpsp;
+ bonus bMaxSPrate,.@hpsp;
+ bonus bMdef,10;
+ bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val;
+ bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val;
+ bonus2 bVariableCastrate,"SU_TUNABELLY",.@val;
+ bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val;
+ bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val;
+ bonus bHealPower,10*getskilllv("SU_PURRING");
+ - Id: 22214
+ AegisName: Authority_Sandals
+ Name: Authority Sandals
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 10
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,10;
+ bonus bAllStats,10;
+ bonus2 bIgnoreDefRaceRate,RC_All,50;
+ bonus2 bIgnoreMdefRaceRate,RC_All,50;
+ if (.@r>=7)
+ bonus bAllStats,10;
+ if (.@r>=9)
+ bonus bAllStats,10;
+ - Id: 22215
+ AegisName: H_AD_Sandle
+ Name: High Adventurer Sandals
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,15;
+ bonus bBaseAtk,15;
+ - Id: 22238
+ AegisName: Great_Hero_Boots
+ Name: Great Hero Boots
+ Type: Armor
+ Buy: 20
+ Weight: 600
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ 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;
+ }
+ - Id: 24000
+ AegisName: T1_Shadow_Armor
+ Name: Shadow Armor (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ - Id: 24001
+ AegisName: T1_Shadow_Weapon
+ Name: Shadow Gauntlets (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 24002
+ AegisName: T1_Shadow_Shield
+ Name: Shadow Shield (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 24003
+ AegisName: T1_Shadow_Shoes
+ Name: Shadow Shoes (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 24004
+ AegisName: T1_Shadow_R_Accessory
+ Name: Shadow Ring (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ - Id: 24005
+ AegisName: T1_Shadow_L_Accessory
+ Name: Shadow Pendant (Tier 1)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 24006
+ AegisName: T2_Shadow_Armor
+ Name: Shadow Armor (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,2;
+ - Id: 24007
+ AegisName: T2_Shadow_Weapon
+ Name: Shadow Gauntlets (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 30
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ - Id: 24008
+ AegisName: T2_Shadow_Shield
+ Name: Shadow Shield (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 60
+ Refineable: true
+ Script: |
+ bonus bLuk,2;
+ - Id: 24009
+ AegisName: T2_Shadow_Shoes
+ Name: Shadow Shoes (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 90
+ Refineable: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 24010
+ AegisName: T2_Shadow_R_Accessory
+ Name: Shadow Ring (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bVit,2;
+ - Id: 24011
+ AegisName: T2_Shadow_L_Accessory
+ Name: Shadow Pendant (Tier 2)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ - Id: 24012
+ AegisName: S_Promotion_Weapon
+ Name: Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ - Id: 24013
+ AegisName: S_Promotion_Armor
+ Name: Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 24014
+ AegisName: S_Promotion_Shoes
+ Name: Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 24015
+ AegisName: S_Promotion_Shield
+ Name: Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ - Id: 24016
+ AegisName: S_Promotion_Earring
+ Name: Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ - Id: 24017
+ AegisName: S_Promotion_Pendant
+ Name: Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ - Id: 24018
+ AegisName: S_Physical_Earring
+ Name: Physical Earring (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bAspdRate,(.@r>=7)?2:1;
+ - Id: 24019
+ AegisName: S_Physical_Weapon
+ Name: Physical Weapon (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r;
+ bonus bBaseAtk,10+.@r;
+ if (.@r>=7) {
+ bonus2 bAddClass,Class_All,1;
+ }
+ - Id: 24020
+ AegisName: S_Physical_Pendant
+ Name: Physical Pendant (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxHP,100;
+ if (.@r>6) {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24021
+ AegisName: S_Magical_Earring
+ Name: Magical Earring (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bVariableCastrate,-(.@r>=7)?2:1;
+ - Id: 24022
+ AegisName: S_Magical_Weapon
+ Name: Magical Weapon (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMatk,10;
+ if (.@r>6) {
+ bonus bMatkRate,1;
+ }
+ - Id: 24023
+ AegisName: S_Magical_Pendant
+ Name: Magical Pencil (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSP,50;
+ if (.@r>6) {
+ bonus bMaxSPrate,1;
+ }
+ - Id: 24024
+ AegisName: S_Breezy_Armor
+ Name: Breeze Armor (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bFlee,5;
+ if (.@r>6) {
+ bonus bFlee,10;
+ }
+ - Id: 24025
+ AegisName: S_Champion_Shoes
+ Name: Champion Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,20+.@r*10;
+ bonus bMaxSP,10;
+ if (.@r>6) {
+ bonus bMaxHPrate,1;
+ bonus bMaxSPrate,1;
+ }
+ - Id: 24026
+ AegisName: S_Athena_Shield
+ Name: Athena Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bDef,10;
+ if (.@r>6) {
+ bonus bDef,10;
+ }
+ - Id: 24027
+ AegisName: S_Immune_Armor
+ Name: Immune Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,1;
+ - Id: 24028
+ AegisName: S_Hard_Armor
+ Name: Hard Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxHP,50;
+ if (.@r>6) {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24029
+ AegisName: S_Ancient_Armor
+ Name: Ancient Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bHit,10;
+ if (.@r>6) {
+ bonus bHit,10;
+ }
+ - Id: 24030
+ AegisName: S_Critical_Armor
+ Name: Critital Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bCritical,5;
+ if (.@r>6) {
+ bonus bCritical,5;
+ }
+ - Id: 24031
+ AegisName: S_Kingbird_Weapon
+ Name: Kingbird's Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10+.@r;
+ bonus bMatk,.@r;
+ if (.@r>6) {
+ bonus bLongAtkRate,1;
+ }
+ - Id: 24032
+ AegisName: S_Cri_Hit_Weapon
+ Name: Critical Hit Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10+.@r;
+ bonus bMatk,.@r;
+ if (.@r>6) {
+ bonus bCritAtkRate,1;
+ }
+ - Id: 24033
+ AegisName: S_Healing_Weapon
+ Name: Healing Shadow Weapon
+ Type: Shadowgear
+ MagicAttack: 10
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bLuk,1;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ if (.@r>6) {
+ bonus bLuk,1;
+ }
+ if (.@r>8) {
+ bonus bLuk,1;
+ }
+ - Id: 24035
+ AegisName: S_Power_Earring
+ Name: Power Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>6) {
+ bonus bStr,1;
+ }
+ if (.@r>=9) {
+ bonus bStr,1;
+ }
+ - Id: 24036
+ AegisName: S_Int_Pendant
+ Name: Intelligent Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>6) {
+ bonus bInt,1;
+ }
+ if (.@r>=9) {
+ bonus bInt,1;
+ }
+ - Id: 24037
+ AegisName: S_Dexterous_Armor
+ Name: Dexterous Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>6) {
+ bonus bDex,1;
+ }
+ if (.@r>=9) {
+ bonus bDex,1;
+ }
+ - Id: 24038
+ AegisName: S_Vital_Shoes
+ Name: Vital Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>6) {
+ bonus bVit,1;
+ }
+ if (.@r>=9) {
+ bonus bVit,1;
+ }
+ - Id: 24039
+ AegisName: S_Athletic_Shield
+ Name: Athletic Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>6) {
+ bonus bAgi,1;
+ }
+ if (.@r>=9) {
+ bonus bAgi,1;
+ }
+ - Id: 24040
+ AegisName: S_Lucky_Armor
+ Name: Lucky Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bLuk,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bCritical,(.@r/2);
+ - Id: 24041
+ AegisName: S_Power_Pendant
+ Name: Power Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bBaseAtk,.@r;
+ - Id: 24042
+ AegisName: S_Int_Earring
+ Name: Intelligent Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bInt,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMatk,.@r;
+ - Id: 24043
+ AegisName: S_Dexterous_Weapon
+ Name: Dexterous Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDex,1;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bHit,.@r;
+ - Id: 24044
+ AegisName: S_Vital_Shield
+ Name: Vital Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVit,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bDef,.@r;
+ - Id: 24045
+ AegisName: S_Athletic_Shoes
+ Name: Athletic Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAgi,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bFlee,.@r;
+ - Id: 24046
+ AegisName: S_Resist_Spell_Pendant
+ Name: Resist Spell Power Pendant (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMdef,3;
+ if (.@r>6) {
+ bonus bMdef,3;
+ }
+ - Id: 24047
+ AegisName: S_Rapid_Pendant
+ Name: Rapid Pendant (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bAspdRate,1;
+ if (.@r>8) {
+ bonus bAspdRate,3;
+ }
+ else if (.@r>6) {
+ bonus bAspdRate,1;
+ }
+ - Id: 24048
+ AegisName: S_Caster_Pendant
+ Name: Caster Pendant (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bVariableCastrate,-1;
+ if (.@r>8) {
+ bonus bVariableCastrate,-3;
+ }
+ else if (.@r>6) {
+ bonus bVariableCastrate,-1;
+ }
+ - Id: 24049
+ AegisName: S_Hard_Earring
+ Name: Hard Earring (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,100+.@r*10;
+ if (.@r>8) {
+ bonus bMaxHPrate,2;
+ }
+ else if (.@r>6) {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24050
+ AegisName: S_Wise_Earring
+ Name: Wise Earring (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSP,50;
+ if (.@r>8) {
+ bonus bMaxSPrate,2;
+ }
+ else if (.@r>6) {
+ bonus bMaxSPrate,1;
+ }
+ - Id: 24051
+ AegisName: S_Athena_Earring
+ Name: Athena Earring (Shadow)
+ Type: Shadowgear
+ Defense: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bDef,10;
+ if (.@r>6) {
+ bonus bDef,10;
+ }
+ - Id: 24052
+ AegisName: S_Cranial_Shield
+ Name: Cranial Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ if (.@r>6) {
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_DemiHuman,1;
+ bonus2 bSubRace,RC_Player_Human,1;
+ }
+ - Id: 24053
+ AegisName: S_Safeguard_Shield
+ Name: Safeguard Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubClass,Class_Boss,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubClass,Class_Boss,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubClass,Class_Boss,1;
+ }
+ - Id: 24054
+ AegisName: S_Brutal_Shield
+ Name: Brutal Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Insect,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Insect,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Insect,1;
+ }
+ - Id: 24056
+ AegisName: S_Homers_Shield
+ Name: Homers Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Fish,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Fish,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Fish,1;
+ }
+ - Id: 24057
+ AegisName: S_Dragoon_Shield
+ Name: Dragoon Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Dragon,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Dragon,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Dragon,1;
+ }
+ - Id: 24058
+ AegisName: S_Satanic_Shield
+ Name: Satanic Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Angel,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Angel,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Angel,1;
+ }
+ - Id: 24059
+ AegisName: S_Flameguard_Shield
+ Name: Flameguard Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Formless,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Formless,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Formless,1;
+ }
+ - Id: 24060
+ AegisName: S_Requiem_Shield
+ Name: Requiem Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Undead,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Undead,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Undead,1;
+ }
+ - Id: 24061
+ AegisName: S_Cadi_Shield
+ Name: Cadi Shield (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubRace,RC_Plant,1;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bSubRace,RC_Plant,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Plant,1;
+ }
+ - Id: 24062
+ AegisName: S_Bloody_Shoes
+ Name: Bloody Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ bonus2 bMagicAddRace,RC_DemiHuman,2;
+ bonus2 bMagicAddRace,RC_Player_Human,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_DemiHuman,1;
+ bonus2 bMagicAddRace,RC_DemiHuman,1;
+ bonus2 bAddRace,RC_Player_Human,1;
+ bonus2 bMagicAddRace,RC_Player_Human,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_DemiHuman,2;
+ bonus2 bMagicAddRace,RC_DemiHuman,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ bonus2 bMagicAddRace,RC_Player_Human,2;
+ }
+ - Id: 24063
+ AegisName: S_Liberation_Shoes
+ Name: Liberation Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_Boss,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddClass,Class_Boss,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_Boss,2;
+ }
+ - Id: 24064
+ AegisName: S_Chemical_Shoes
+ Name: Chemical Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Plant,2;
+ bonus2 bMagicAddRace,RC_Plant,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Plant,1;
+ bonus2 bMagicAddRace,RC_Plant,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Plant,2;
+ bonus2 bMagicAddRace,RC_Plant,2;
+ }
+ - Id: 24065
+ AegisName: S_Clamorous_Shoes
+ Name: Clamorous Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Brute,2;
+ bonus2 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)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Insect,2;
+ bonus2 bMagicAddRace,RC_Insect,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Insect,1;
+ bonus2 bMagicAddRace,RC_Insect,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Insect,2;
+ bonus2 bMagicAddRace,RC_Insect,2;
+ }
+ - Id: 24067
+ AegisName: S_Fisher_Shoes
+ Name: Fisher Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Fish,2;
+ bonus2 bMagicAddRace,RC_Fish,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Fish,1;
+ bonus2 bMagicAddRace,RC_Fish,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Fish,2;
+ bonus2 bMagicAddRace,RC_Fish,2;
+ }
+ - Id: 24068
+ AegisName: S_Seraphim_Shoes
+ Name: Seraphim Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Angel,2;
+ bonus2 bMagicAddRace,RC_Angel,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Angel,1;
+ bonus2 bMagicAddRace,RC_Angel,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Angel,2;
+ bonus2 bMagicAddRace,RC_Angel,2;
+ }
+ - Id: 24069
+ AegisName: S_Beholder_Shoes
+ Name: Beholder Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Formless,2;
+ bonus2 bMagicAddRace,RC_Formless,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Formless,1;
+ bonus2 bMagicAddRace,RC_Formless,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Formless,2;
+ bonus2 bMagicAddRace,RC_Formless,2;
+ }
+ - Id: 24070
+ AegisName: S_Divine_Shoes
+ Name: Divine Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Undead,2;
+ bonus2 bMagicAddRace,RC_Undead,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Undead,1;
+ bonus2 bMagicAddRace,RC_Undead,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Undead,2;
+ bonus2 bMagicAddRace,RC_Undead,2;
+ }
+ - Id: 24071
+ AegisName: S_Dragoon_Shoes
+ Name: Dragoon Shoes (Shadow)
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Dragon,2;
+ bonus2 bMagicAddRace,RC_Dragon,2;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Dragon,1;
+ bonus2 bMagicAddRace,RC_Dragon,1;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Dragon,2;
+ bonus2 bMagicAddRace,RC_Dragon,2;
+ }
+ - Id: 24072
+ AegisName: S_Big_Armor
+ Name: Large Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Large,2;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubSize,Size_Large,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubSize,Size_Large,2;
+ }
+ - Id: 24073
+ AegisName: S_Medium_Armor
+ Name: Medium Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Medium,2;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubSize,Size_Medium,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubSize,Size_Medium,2;
+ }
+ - Id: 24074
+ AegisName: S_Small_Armor
+ Name: Small Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bSubSize,Size_Small,2;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSubSize,Size_Small,1;
+ }
+ if (.@r>=9) {
+ bonus2 bSubSize,Size_Small,2;
+ }
+ - Id: 24075
+ AegisName: S_Big_Weapon
+ Name: Large Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bSPrecovRate,5;
+ if (getrefine()>=7)
+ bonus bSPrecovRate,5;
+ - Id: 24079
+ AegisName: S_Spiritual_Earring
+ Name: Spiritual Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxSP,50;
+ if (getrefine()>=7)
+ bonus bMaxSPrate,1;
+ - Id: 24080
+ AegisName: S_Spiritual_Pendent
+ Name: Spiritual Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,(getrefine()>=7?2:1);
+ - Id: 24081
+ AegisName: S_Malicious_Armor
+ Name: Malicious Shas Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,100+.@r*10;
+ if (.@r>6) {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24082
+ AegisName: S_Malicious_Shoes
+ Name: Malicious Shas Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxHPrate,1;
+ if (.@r>6) {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24083
+ AegisName: S_Malicious_Shield
+ Name: Malicious Shas Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bHPrecovRate,5;
+ if (.@r>6) {
+ bonus bHPrecovRate,5;
+ }
+ - Id: 24084
+ AegisName: S_Gemstone_Armor
+ Name: Gemstone Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bCritical,5+(getrefine()/2);
+ - Id: 24085
+ AegisName: S_Gemstone_Shoes
+ Name: Gemstone Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bFlee,5+(getrefine()/2);
+ - Id: 24086
+ AegisName: S_Gemstone_Shield
+ Name: Gemstone Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,5+(getrefine()/2);
+ - Id: 24087
+ AegisName: S_Gemstone_Weapon
+ Name: Gemstone Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bHit,5+(getrefine()/2);
+ - Id: 24088
+ AegisName: S_Gemstone_Earring
+ Name: Gemstone Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatk,5+(getrefine()/2);
+ - Id: 24089
+ AegisName: S_Gemstone_Pendent
+ Name: Gemstone Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,5+(getrefine()/2);
+ - Id: 24090
+ AegisName: S_Stability_Shield
+ Name: Stability Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,3;
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bResEff,Eff_Stun,(.@r/2)*100;
+ bonus2 bResEff,Eff_Freeze,(.@r/2)*100;
+ bonus2 bResEff,Eff_Curse,(.@r/2)*100;
+ bonus2 bResEff,Eff_Bleeding,(.@r/2)*100;
+ bonus2 bResEff,Eff_Stone,.@r*100;
+ bonus2 bResEff,Eff_Sleep,.@r*100;
+ bonus2 bResEff,Eff_Silence,.@r*100;
+ bonus2 bResEff,Eff_Blind,.@r*100;
+ - Id: 24091
+ AegisName: S_Plasterer's_Armor
+ Name: Harrods Plaster Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stone,getrefine();
+ - Id: 24092
+ AegisName: S_Plasterer's_Shoes
+ Name: Harrods Plaster Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stone,getrefine();
+ - Id: 24093
+ AegisName: S_Insomniac_Armor
+ Name: Insomnia Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Sleep,getrefine();
+ - Id: 24094
+ AegisName: S_Insomniac_Shoes
+ Name: Insomnia Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Sleep,getrefine();
+ - Id: 24095
+ AegisName: S_Peerless_Armor
+ Name: Peerless Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Silence,getrefine();
+ - Id: 24096
+ AegisName: S_Peerless_Shoes
+ Name: Peerless Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Silence,getrefine();
+ - Id: 24097
+ AegisName: S_Adurate_Armor
+ Name: Andre Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Blind,getrefine();
+ - Id: 24098
+ AegisName: S_Adurate_Shoes
+ Name: Andre Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Blind,getrefine();
+ - Id: 24099
+ AegisName: Unfreez_Weapon_S
+ Name: Unfreezing Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Freeze,.@r*100;
+ - Id: 24100
+ AegisName: Unfreeze_Earing_S
+ Name: Unfreezing Shadow Earring
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Freeze,.@r*100;
+ - Id: 24101
+ AegisName: Unfreeze_Pendent_S
+ Name: Unfreezing Shadow Pendant
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Freeze,.@r*100;
+ - Id: 24102
+ AegisName: Vitality_Earing_S
+ Name: Vitality Shadow Earring
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Bleeding,getrefine();
+ - Id: 24103
+ AegisName: Vitality_Pendant_S
+ Name: Vitality Shadow Pendant
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Bleeding,getrefine();
+ - Id: 24104
+ AegisName: S_Neutral_Weapon
+ Name: Neutral Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,getrefine()/2;
+ - Id: 24105
+ AegisName: S_Neutral_Earring
+ Name: Neutral Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,getrefine();
+ - Id: 24106
+ AegisName: S_Neutral_Pendent
+ Name: Neutral Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,getrefine();
+ - Id: 24107
+ AegisName: S_Curse_Lift_Earring
+ Name: Frozen Curse Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Curse,getrefine();
+ - Id: 24108
+ AegisName: S_Curse_Lift_Pendent
+ Name: Frozen Curse Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Curse,getrefine();
+ - Id: 24109
+ AegisName: S_Caster_earring
+ Name: Caster Shadow Earrings
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-1-((getrefine()>=7)?1:0);
+ - Id: 24110
+ AegisName: S_Caster_Weapon
+ Name: Caster Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0);
+ - Id: 24111
+ AegisName: S_Spell_Flow_Shoes
+ Name: Spellflow Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bUseSPrate,-1;
+ if (.@r>6)
+ bonus bSPrecovRate,5;
+ - Id: 24112
+ AegisName: S_Spell_Flow_Armor
+ Name: Spellflow Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bUseSPrate,-1;
+ if (.@r>8) {
+ bonus bUseSPrate,-2;
+ }
+ else if (.@r>6) {
+ bonus bUseSPrate,-1;
+ }
+ - Id: 24113
+ AegisName: S_Spell_Flow_Shield
+ Name: Spellflow Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bUseSPrate,-1;
+ if (.@r>6)
+ bonus bMaxSPrate,1;
+ - Id: 24114
+ AegisName: S_Greed_Armor
+ Name: Grid Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24115
+ AegisName: S_Greed_Shoes
+ Name: Grid Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24116
+ AegisName: S_Greed_Shield
+ Name: Grid Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24117
+ AegisName: S_Greed_Weapon
+ Name: Grid Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24118
+ AegisName: S_Greed_Earring
+ Name: Grid Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24119
+ AegisName: S_Greed_Pendant
+ Name: Grid Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "BS_GREED",1;
+ bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);
+ - Id: 24120
+ AegisName: S_Heal_Armor
+ Name: Heal Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24121
+ AegisName: S_Heal_Shoes
+ Name: Heal Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24122
+ AegisName: S_Heal_Shield
+ Name: Heal Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24123
+ AegisName: S_Heal_Weapon
+ Name: Heal Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24124
+ AegisName: S_Heal_Earring
+ Name: Heal Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24125
+ AegisName: S_Heal_Pendant
+ Name: Heal Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_HEAL",1;
+ bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);
+ - Id: 24126
+ AegisName: S_Hiding_Armor
+ Name: Hiding Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24127
+ AegisName: S_Hiding_Shoes
+ Name: Hiding Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24128
+ AegisName: S_Hiding_Shield
+ Name: Hiding Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24129
+ AegisName: S_Hiding_Weapon
+ Name: Hiding Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24130
+ AegisName: S_Hiding_Earring
+ Name: Hiding Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24131
+ AegisName: S_Hiding_Pendant
+ Name: Hiding Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_HIDING",1;
+ bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 24132
+ AegisName: S_Cloaking_Armor
+ Name: Cloaking Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24133
+ AegisName: S_Cloaking_Shoes
+ Name: Cloaking Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24134
+ AegisName: S_Cloaking_Shield
+ Name: Cloaking Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24135
+ AegisName: S_Cloaking_Weapon
+ Name: Cloaking Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24136
+ AegisName: S_Cloaking_Earring
+ Name: Cloaking Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24137
+ AegisName: S_Cloaking_Pendant
+ Name: Cloaking Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AS_CLOAKING",1;
+ bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 24138
+ AegisName: S_Teleport_Armor
+ Name: Teleport Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24139
+ AegisName: S_Teleport_Shoes
+ Name: Teleport Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24140
+ AegisName: S_Teleport_Shield
+ Name: Teleport Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24141
+ AegisName: S_Teleport_Weapon
+ Name: Teleport Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24142
+ AegisName: S_Teleport_Earring
+ Name: Teleport Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24143
+ AegisName: S_Teleport_Pendant
+ Name: Teleport Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);
+ - Id: 24144
+ AegisName: S_Steal_Armor
+ Name: Steal Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24145
+ AegisName: S_Steal_Shoes
+ Name: Steal Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24146
+ AegisName: S_Steal_Shield
+ Name: Steal Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24147
+ AegisName: S_Steal_Weapon
+ Name: Steal Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24148
+ AegisName: S_Steal_Earring
+ Name: Steal Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24149
+ AegisName: S_Steal_Pendant
+ Name: Steal Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ skill "TF_STEAL",1;
+ bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);
+ - Id: 24150
+ AegisName: S_Infinity_Earring
+ Name: Infinity Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);
+ - Id: 24151
+ AegisName: S_Infinity_Pendant
+ Name: Infinity Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);
+ - Id: 24152
+ AegisName: S_Solid_Weapon
+ Name: Solid Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,5+(getrefine()/2);
+ - Id: 24153
+ AegisName: S_Solid_Earring
+ Name: Solid Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bHit,5+(getrefine()/2);
+ - Id: 24154
+ AegisName: S_Immortal_Armor
+ Name: Solid Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,5+(getrefine()/2);
+ - Id: 24155
+ AegisName: S_Immortal_Pendant
+ Name: Solid Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,(getrefine()/2);
+ - Id: 24156
+ AegisName: S_Executioner_Weapon
+ Name: Demi-Human Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(.@r/2);
+ - Id: 24157
+ AegisName: S_Exorcist_Weapon
+ Name: Exorcist Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Demon,5+(.@r/2);
+ - Id: 24158
+ AegisName: S_Hunting_Weapon
+ Name: Hunting Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Brute,5+(.@r/2);
+ - Id: 24159
+ AegisName: S_Insect_Net_Weapon
+ Name: Insect Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Insect,5+(.@r/2);
+ - Id: 24160
+ AegisName: S_Fishing_Weapon
+ Name: Fishing Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Fish,5+(.@r/2);
+ - Id: 24161
+ AegisName: S_Dragon_Killer_Weapon
+ Name: Dragon Killer Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(.@r/2);
+ - Id: 24162
+ AegisName: S_Corrupt_Weapon
+ Name: Angelus Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Angel,5+(.@r/2);
+ - Id: 24163
+ AegisName: S_Vibration_Weapon
+ Name: Formless Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Formless,5+(.@r/2);
+ - Id: 24164
+ AegisName: S_Holy_Water_Weapon
+ Name: Holy Water Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Undead,5+(.@r/2);
+ - Id: 24165
+ AegisName: S_Scissors_Weapon
+ Name: Plant Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefRaceRate,RC_Plant,5+(.@r/2);
+ - Id: 24166
+ AegisName: S_Penetration_Earring
+ Name: Penetration Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2);
+ - Id: 24167
+ AegisName: S_Penetration_Pendent
+ Name: Penetration Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2);
+ - Id: 24168
+ AegisName: S_Tempest_Earring
+ Name: Tempest Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24169
+ AegisName: S_Tempest_Pendent
+ Name: Tempest Pendant Shadow
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24170
+ AegisName: S_M_Executioner_Weapon
+ Name: Magic Demi-Human Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2);
+ - Id: 24171
+ AegisName: S_M_Exorcist_Weapon
+ Name: Magic Exorcist Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2);
+ - Id: 24172
+ AegisName: S_M_Hunting_Weapon
+ Name: Magic Hunting Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2);
+ - Id: 24174
+ AegisName: S_M_Fishing_Weapon
+ Name: Magic Fishing Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2);
+ - Id: 24175
+ AegisName: S_M_Dragon_K_Weapon
+ Name: Magic Dragon Killer Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2);
+ - Id: 24176
+ AegisName: S_M_Corrupt_Weapon
+ Name: Magic Angelus Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2);
+ - Id: 24177
+ AegisName: S_M_Vibration_Weapon
+ Name: Magic Formless Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2);
+ - Id: 24178
+ AegisName: S_M_Holy_Water_Weapon
+ Name: Magic Holy Water Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2);
+ - Id: 24179
+ AegisName: S_M_Scissors_Weapon
+ Name: Magic Caesars Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2);
+ - Id: 24180
+ AegisName: S_Bearers_Armor
+ Name: Bearer's Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMdef,1+(getrefine()/2);
+ - Id: 24181
+ AegisName: S_Bearers_Shoes
+ Name: Bearer's Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxSP,50+(5*(getrefine()/2));
+ - Id: 24182
+ AegisName: S_Bearers_Shield
+ Name: Bearer's Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,5+(getrefine()/2);
+ - Id: 24183
+ AegisName: S_Bearers_Weapon
+ Name: Bearer's Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxHP,100+(10*(getrefine()/2));
+ - Id: 24184
+ AegisName: S_Bearers_Earring
+ Name: Bearer's Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatk,5+(getrefine()/2);
+ - Id: 24185
+ AegisName: S_Bearers_Pendent
+ Name: Bearer's Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,5+(getrefine()/2);
+ - Id: 24186
+ AegisName: S_Basis_Armor
+ Name: Basis Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Neutral,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Neutral,(1+(.@r/2));
+ - Id: 24187
+ AegisName: S_Hallowed_Armor
+ Name: Hallowed Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Dark,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Dark,(1+(.@r/2));
+ - Id: 24188
+ AegisName: S_Saharic_Armor
+ Name: Underneith Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Water,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Water,(1+(.@r/2));
+ - Id: 24189
+ AegisName: S_Underneath_Armor
+ Name: Underneath Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Earth,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Earth,(1+(.@r/2));
+ - Id: 24190
+ AegisName: S_Flam_Armor
+ Name: Flame Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Fire,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Fire,(1+(.@r/2));
+ - Id: 24191
+ AegisName: S_Windy_Armor
+ Name: Windy Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Wind,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Wind,(1+(.@r/2));
+ - Id: 24192
+ AegisName: S_Envenom_Armor
+ Name: Envenom Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Poison,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Poison,(1+(.@r/2));
+ - Id: 24193
+ AegisName: S_Damned_Armor
+ Name: Damned Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Holy,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Holy,(1+(.@r/2));
+ - Id: 24194
+ AegisName: S_Geist_Armor
+ Name: Exorcism Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Ghost,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Ghost,(1+(.@r/2));
+ - Id: 24195
+ AegisName: S_Divine_Armor
+ Name: Divine Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bAddEle,Ele_Undead,(1+(.@r/2));
+ bonus2 bMagicAddEle,Ele_Undead,(1+(.@r/2));
+ - Id: 24196
+ AegisName: S_Hasty_Shoes
+ Name: Hasty Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bFlee,5+(getrefine()/2);
+ - Id: 24197
+ AegisName: S_Hasty_Armor
+ Name: Hasty Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bFlee,5+(getrefine()/2);
+ - Id: 24198
+ AegisName: S_Basis_Shield
+ Name: Basis Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Neutral,.@i;
+ bonus2 bMagicSubDefEle,Ele_Neutral,.@i;
+ - Id: 24199
+ AegisName: S_Hallowed_Shield
+ Name: Hallowed Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Dark,.@i;
+ bonus2 bMagicSubDefEle,Ele_Dark,.@i;
+ - Id: 24200
+ AegisName: S_Saharic_Shield
+ Name: Saharic Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Water,.@i;
+ bonus2 bMagicSubDefEle,Ele_Water,.@i;
+ - Id: 24201
+ AegisName: S_Underneath_Shield
+ Name: Underneath Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Earth,.@i;
+ bonus2 bMagicSubDefEle,Ele_Earth,.@i;
+ - Id: 24202
+ AegisName: S_Flam_Shield
+ Name: Flame Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Fire,.@i;
+ bonus2 bMagicSubDefEle,Ele_Fire,.@i;
+ - Id: 24203
+ AegisName: S_Windy_Shield
+ Name: Windy Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Wind,.@i;
+ bonus2 bMagicSubDefEle,Ele_Wind,.@i;
+ - Id: 24204
+ AegisName: S_Envenom_Shield
+ Name: Envenom Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Poison,.@i;
+ bonus2 bMagicSubDefEle,Ele_Poison,.@i;
+ - Id: 24205
+ AegisName: S_Damned_Shield
+ Name: Damned Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Holy,.@i;
+ bonus2 bMagicSubDefEle,Ele_Holy,.@i;
+ - Id: 24206
+ AegisName: S_Geist_Shield
+ Name: Exorcism Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Ghost,.@i;
+ bonus2 bMagicSubDefEle,Ele_Ghost,.@i;
+ - Id: 24207
+ AegisName: S_Divine_Shield
+ Name: Divine Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@i = (.@r<7)?1:((.@r<9)?2:3);
+ bonus2 bSubDefEle,Ele_Undead,.@i;
+ bonus2 bMagicSubDefEle,Ele_Undead,.@i;
+ - Id: 24208
+ AegisName: S_Expert_Shoes
+ Name: Expert Shadow Shoes
+ Type: Shadowgear
+ Weight: 100
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 150
+ EquipLevelMax: 175
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/4);
+ - Id: 24209
+ AegisName: S_Expert_Shield
+ Name: Expert Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 150
+ EquipLevelMax: 175
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/4);
+ - Id: 24210
+ AegisName: S_Beginner_Shoes
+ Name: Beginner Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ EquipLevelMax: 49
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,getrefine();
+ - Id: 24211
+ AegisName: S_Beginner_Shield
+ Name: Beginner Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ EquipLevelMax: 49
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,getrefine();
+ - Id: 24212
+ AegisName: S_Rookie_Shoes
+ Name: Rookie Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 50
+ EquipLevelMax: 99
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/2);
+ - Id: 24213
+ AegisName: S_Rookie_Shield
+ Name: Rookie Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 50
+ EquipLevelMax: 99
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/2);
+ - Id: 24214
+ AegisName: S_Advanced_Shoes
+ Name: Advanced Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ EquipLevelMax: 149
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/3);
+ - Id: 24215
+ AegisName: S_Advanced_Shield
+ Name: Advanced Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 100
+ EquipLevelMax: 149
+ Refineable: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,(getrefine()/3);
+ - Id: 24216
+ AegisName: S_Attack_Armor
+ Name: Attack Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL;
+ - Id: 24217
+ AegisName: S_Blitz_Earring
+ Name: Blitz Shadow Earring
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHit,(.@r/2)+5;
+ if (.@r>=7) {
+ bonus bAspd,1;
+ }
+ - Id: 24218
+ AegisName: S_Blitz_Pendent
+ Name: Blitz Shadow Pendant
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAtk2,(.@r/2)+5;
+ if (.@r>=7) {
+ bonus bAspd,1;
+ }
+ - Id: 24219
+ AegisName: S_ColdBolt_Armor
+ Name: Cold Bolt Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2)
+ autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;
+ - Id: 24220
+ AegisName: S_FireBolt_Armor
+ Name: Fire Bolt Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2)
+ autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;
+ - Id: 24221
+ AegisName: S_LightingBolt_Armor
+ Name: Lightning Bolt Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2)
+ autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;
+ - Id: 24222
+ AegisName: S_EarthSpike_Armor
+ Name: Earth Spike Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2)
+ autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;
+ - Id: 24223
+ AegisName: S_Enhance_Force_Weapon
+ Name: Enhanced Force Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtk2,10;
+ bonus2 bAddClass,Class_All,(getrefine()/2);
+ - Id: 24224
+ AegisName: S_Force_Weapon
+ Name: Force Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3);
+ - Id: 24225
+ AegisName: S_Force_Earring
+ Name: Force Shadow Earring
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus 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
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatk,10;
+ bonus bMatkRate,(getrefine()/2);
+ - Id: 24228
+ AegisName: S_Spirit_Weapon
+ Name: Soul Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3);
+ - Id: 24229
+ AegisName: S_Spirit_Earring
+ Name: Soul Shadow Earring
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,(5+.@r);
+ if (.@r>=7)
+ bonus bMaxHPrate,1;
+ if (.@r>=9)
+ bonus bMatkRate,1;
+ - Id: 24230
+ AegisName: S_Spirit_Pendant
+ Name: Soul Shadow Pendant
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ 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;
+ - Id: 24235
+ AegisName: S_Titan_Pendant
+ Name: Titan Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ 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;
+ - Id: 24236
+ AegisName: S_Boned_Earring
+ Name: Boned Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ 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;
+ - Id: 24237
+ AegisName: S_Boned_Pendant
+ Name: Boned Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ 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;
+ - Id: 24238
+ AegisName: S_Gigantic_Earring
+ Name: Gigantic Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ 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;
+ - Id: 24239
+ AegisName: S_Gigantic_Pendant
+ Name: Gigantic Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ 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;
+ - Id: 24240
+ AegisName: S_Caster_Shoes
+ Name: Caster Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatk,5;
+ bonus bUseSPrate,-1-(getrefine()/2);
+ - Id: 24241
+ AegisName: S_Caster_Shield
+ Name: Caster Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatk,5;
+ bonus bUseSPrate,-1-(getrefine()/2);
+ - Id: 24242
+ AegisName: S_Caster_Armor
+ Name: Caster Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatk,5;
+ bonus bUseSPrate,-1-(getrefine()/2);
+ - Id: 24243
+ AegisName: S_Reload_Shoes
+ Name: Reload Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);
+ - Id: 24244
+ AegisName: S_Reload_Shield
+ Name: Reload Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);
+ - Id: 24245
+ AegisName: S_Reload_Armor
+ Name: Reload Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);
+ - Id: 24246
+ AegisName: S_Swordman_earring
+ Name: Swordman Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r);
+ - Id: 24247
+ AegisName: S_Merchant_earring
+ Name: Merchant Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"MC_MAMMONITE",20+(5*.@r);
+ - Id: 24248
+ AegisName: S_Acolyte_earring
+ Name: Acolyte Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r);
+ - Id: 24249
+ AegisName: S_Magician_earring
+ Name: Magician Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bVariableCastrate,"MG_COLDBOLT",-20-(5*.@r);
+ bonus2 bVariableCastrate,"MG_FIREBOLT",-20-(5*.@r);
+ bonus2 bVariableCastrate,"MG_LIGHTNINGBOLT",-20-(5*.@r);
+ - Id: 24250
+ AegisName: S_Swordman_Pendant
+ Name: Swordman Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r);
+ - Id: 24251
+ AegisName: S_Merchant_Pendant
+ Name: Merchant Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r);
+ - Id: 24252
+ AegisName: S_Acolyte_Pendant
+ Name: Acolyte Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"AL_HOLYLIGHT",50+(.@r*10);
+ - Id: 24253
+ AegisName: S_Thief_Pendant
+ Name: Thief Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"TF_POISON",20+(5*.@r);
+ - Id: 24254
+ AegisName: S_Magician_Pendant
+ Name: Magician Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r;
+ - Id: 24255
+ AegisName: S_Archer_Pendant
+ Name: Archer Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r);
+ - Id: 24256
+ AegisName: S_Knight_Shoes
+ Name: Knight Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5;
+ - Id: 24257
+ AegisName: S_Crusader_Shoes
+ Name: Crusader Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r));
+ - Id: 24258
+ AegisName: S_Blacksmith_Shoes
+ Name: Blacksmith Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 20+(5*.@r);
+ bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val;
+ bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val;
+ - Id: 24259
+ AegisName: S_Alchemist_Shoes
+ Name: Alchemist Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ if (BaseJob == Job_Alchemist)
+ bonus bHealPower,30+7*.@r;
+ - Id: 24260
+ AegisName: S_Priest_Shoes
+ Name: Priest Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 20+(3*.@r);
+ bonus2 bSkillUseSPrate,"PR_KYRIE",.@val;
+ bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val;
+ - Id: 24261
+ AegisName: S_Monk_Shoes
+ Name: Monk Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5;
+ - Id: 24262
+ AegisName: S_Assassin_Shoes
+ Name: Assassin Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5;
+ - Id: 24263
+ AegisName: S_Rogue_Shoes
+ Name: Rogue Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@a = getskilllv("SM_SWORD");
+ .@r = max(.@r,6);
+ bonus bBaseAtk,.@a+((.@r-6)*.@a);
+ - Id: 24264
+ AegisName: S_Wizard_Shoes
+ Name: Wizard Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r));
+ bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r));
+ bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r));
+ - Id: 24265
+ AegisName: S_Sage_Shoes
+ Name: Sage Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5;
+ - Id: 24266
+ AegisName: S_Hunter_Shoes
+ Name: Hunter Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"SN_FALCONASSAULT",20+(.@r*5);
+ bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5;
+ - Id: 24267
+ AegisName: S_Bard_Shoes
+ Name: Bard Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@a = getskilllv("BA_MUSICALLESSON");
+ .@r = max(.@r,6);
+ bonus bBaseAtk,.@a+((.@r-6)*.@a);
+ - Id: 24268
+ AegisName: S_Dancer_Shoes
+ Name: Dancer Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@a = getskilllv("DC_DANCINGLESSON");
+ .@r = max(.@r,6);
+ bonus bBaseAtk,.@a+((.@r-6)*.@a);
+ - Id: 24269
+ AegisName: S_Knight_Armor
+ Name: Knight Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3));
+ - Id: 24270
+ AegisName: S_Crusader_Armor
+ Name: Crusader Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5;
+ - Id: 24271
+ AegisName: S_Blacksmith_Armor
+ Name: Blacksmith Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 5;
+ if (.@r > 6) {
+ .@val += .@r-6;
+ }
+ autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT";
+ - Id: 24272
+ AegisName: S_Alchemist_Armor
+ Name: Alchemist Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@a = getskilllv("AM_LEARNINGPOTION");
+ .@r = max(.@r,6);
+ bonus bBaseAtk,.@a+((.@r-6)*.@a);
+ - Id: 24273
+ AegisName: S_Priest_Armor
+ Name: Priest Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5;
+ - Id: 24274
+ AegisName: S_Monk_Armor
+ Name: Monk Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5;
+ bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5;
+ - Id: 24275
+ AegisName: S_Assassin_Armor
+ Name: Assassin Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3));
+ - Id: 24276
+ AegisName: S_Rogue_Armor
+ Name: Rogue Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5;
+ - Id: 24277
+ AegisName: S_Wizard_Armor
+ Name: Wizard Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5;
+ - Id: 24278
+ AegisName: S_Sage_Armor
+ Name: Sage Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxHP,getrefine()*10;
+ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL";
+ - Id: 24279
+ AegisName: S_Hunter_Armor
+ Name: Hunter Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5;
+ bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5;
+ - Id: 24280
+ AegisName: S_Bard_Armor
+ Name: Bard Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_DISSONANCE";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_WHISTLE";
+ - Id: 24281
+ AegisName: S_Dancer_Armor
+ Name: Dancer Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_HUMMING";
+ autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_UGLYDANCE";
+ - Id: 24282
+ AegisName: S_SuperNovice_Weapon
+ Name: Super Novice Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxHP,1000;
+ bonus bMaxSP,200;
+ bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r);
+ bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r);
+ if (.@r>=7) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ }
+ if (.@r>=9) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bSPrecovRate,100;
+ }
+ - Id: 24283
+ AegisName: S_Gunslinger_Weapon
+ Name: Gunslinger Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r);
+ .@aspd = 1;
+ if (.@r>=7) {
+ .@aspd += 1;
+ bonus bLongAtkRate,3;
+ }
+ if (.@r>=9) {
+ .@aspd += 1;
+ bonus bLongAtkRate,5;
+ bonus bAspd,.@aspd;
+ }
+ - Id: 24284
+ AegisName: S_Taekwon_Weapon
+ Name: Taekwondo Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ SoulLinker: true
+ StarGladiator: true
+ Taekwon: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bAspd,1;
+ 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
+ Type: Shadowgear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ .@val = 3;
+ bonus2 bSkillCooldown,"KO_BAKURETSU",-2000;
+ bonus bMatk,.@r+(3*getskilllv("NJ_NINPOU"));
+ if (.@r >= 7) {
+ .@val += 3;
+ if (.@r >= 9) {
+ .@val += 4;
+ }
+ }
+ bonus2 bAddClass,Class_Normal,.@val;
+ bonus bMatkRate,.@val;
+ - Id: 24286
+ AegisName: S_DoramMagical_Weapon
+ Name: Doram Magical Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bVariableCastrate,-(5+.@r);
+ if (getskilllv("SU_POWEROFLAND") == 1)
+ bonus bFixedCast,-100;
+ if (getskilllv("SU_POWEROFSEA") == 1) {
+ bonus bUseSPrate,-3;
+ }
+ if (.@r>=7)
+ bonus bMatkRate,5;
+ if (.@r>=9)
+ bonus bMatkRate,5;
+ - Id: 24287
+ AegisName: S_DoramPhysical_Weapon
+ Name: Doram Physical Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bLongAtkRate,.@r;
+ if (getskilllv("SU_POWEROFLIFE") == 1)
+ bonus bAspd,1;
+ if (.@r>=7)
+ bonus bFlee2,2;
+ if (.@r>=9)
+ bonus bFlee2,3;
+ - Id: 24288
+ AegisName: S_Runeknight_Weapon
+ Name: Rune Knight Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5;
+ - Id: 24289
+ AegisName: S_Royalguard_Weapon
+ Name: Royal Guard Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5;
+ - Id: 24290
+ AegisName: S_Mechanic_weapon
+ Name: Mechanic Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5;
+ - Id: 24291
+ AegisName: S_Genetic_Weapon
+ Name: Genetic Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5;
+ - Id: 24292
+ AegisName: S_Archbishop_Weapon
+ Name: Arcbishop Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5;
+ - Id: 24293
+ AegisName: S_Sura_weapon
+ Name: Sura Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r);
+ - Id: 24294
+ AegisName: S_Guillotine_Weapon
+ Name: Guillotine Cross Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3));
+ - Id: 24295
+ AegisName: S_Shadowchaser_Weapon
+ Name: Shadow Chaser Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5;
+ - Id: 24296
+ AegisName: S_Warlock_Weapon
+ Name: Warlock Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5;
+ - Id: 24297
+ AegisName: S_Sorcerer_Weapon
+ Name: Sorcerer Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000);
+ - Id: 24298
+ AegisName: S_Ranger_Weapon
+ Name: Ranger Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5;
+ - Id: 24299
+ AegisName: S_Minstrel_Weapon
+ Name: Maestro Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxHPrate,3;
+ bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"));
+ - Id: 24300
+ AegisName: S_Wanderer_Weapon
+ Name: Wanderer Shadow Weapon
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxHPrate,3;
+ bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"));
+ - Id: 24301
+ AegisName: S_Runeknight_Shield
+ Name: Rune Knight Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE";
+ - Id: 24302
+ AegisName: S_Royalguard_Shield
+ Name: Royal Guard Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5;
+ - Id: 24303
+ AegisName: S_Mechanic_Shield
+ Name: Mechanic Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5;
+ - Id: 24304
+ AegisName: S_Genetic_Shield
+ Name: Genetic Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxHPrate,3;
+ bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON"));
+ - Id: 24305
+ AegisName: S_Archbishop_Shield
+ Name: Archbishop Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5;
+ - Id: 24306
+ AegisName: S_Sura_Shield
+ Name: Sura Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5;
+ - Id: 24307
+ AegisName: S_Guillotine_Shield
+ Name: Guillotine Cross Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r));
+ - Id: 24308
+ AegisName: S_Shadowchaser_Shield
+ Name: Shadow Chaser Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL";
+ - Id: 24309
+ AegisName: S_Warlock_Shield
+ Name: Warlock Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5;
+ - Id: 24310
+ AegisName: S_Sorcerer_Shield
+ Name: Sorcerer Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000);
+ - Id: 24311
+ AegisName: S_Ranger_Shield
+ Name: Ranger Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r));
+ - Id: 24312
+ AegisName: S_Minstrel_Shield
+ Name: Minstrel Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSPrate,3;
+ bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5;
+ - Id: 24313
+ AegisName: S_Wanderer_Shield
+ Name: Wanderer Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSPrate,3;
+ bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5;
+ - Id: 24314
+ AegisName: S_Ninja_Shield
+ Name: Ninja Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bAspd,1;
+ bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU"));
+ autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN";
+ .@val = 4 * .@r;
+ if (.@r >= 7) {
+ .@val += 10;
+ if (.@r >= 9) {
+ .@val += 10;
+ }
+ }
+ bonus2 bIgnoreDefClassRate,Class_Normal,.@val;
+ bonus2 bIgnoreMdefClassRate,Class_Normal,.@val;
+ - Id: 24315
+ AegisName: S_Taekwon_Shield
+ Name: Taekwon Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ SoulLinker: true
+ StarGladiator: true
+ Taekwon: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 3;
+ if (.@r >= 7) {
+ .@val += 2;
+ if (.@r >= 9) {
+ .@val += 3;
+ }
+ }
+ bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r));
+ bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r));
+ bonus2 bAddClass,Class_All,.@val;
+ bonus bMatkRate,.@val;
+ - Id: 24316
+ AegisName: S_DoramPhysical_Shield
+ Name: Doram Physical Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMatkRate,3;
+ autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP";
+ bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100);
+ if (.@r>=7)
+ bonus2 bSkillAtk,"SU_CN_METEOR",5;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"SU_CN_METEOR",5;
+ - Id: 24318
+ AegisName: S_SuperNovice_Shield
+ Name: Super Novice Shadow Shield
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxHP,1000;
+ bonus bMaxSP,200;
+ bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r);
+ bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r);
+ if (.@r>=7) {
+ 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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bCritAtkRate,5;
+ bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r;
+ if (.@r>=7)
+ bonus bCritAtkRate,2;
+ if (.@r>=9)
+ bonus bCritAtkRate,3;
+ - Id: 24320
+ AegisName: S_Hasty_Shoes_II
+ Name: Hasty Shadow Shoes II
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMatkRate,1 + (getrefine() >= 7);
+ bonus bUseSPrate,-1;
+ - Id: 24324
+ AegisName: S_Spiritual_Weapon_II
+ Name: Spiritual Shadow Weapon II
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bSPrecovRate,5;
+ bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);
+ - Id: 24325
+ AegisName: S_Malicious_Armor_II
+ Name: Malicious Shadow Armor II
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);
+ - Id: 24326
+ AegisName: S_Sigrun_Armor
+ Name: Sigrun Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLuk,1;
+ bonus bHit,.@r;
+ if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) {
+ bonus bBaseAtk,15;
+ } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) {
+ bonus bLongAtkRate,3;
+ } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) {
+ bonus bMatk,15;
+ } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) {
+ bonus bAspdRate,5;
+ bonus bMaxHP,1000;
+ }
+ - Id: 24327
+ AegisName: S_Sigrun_Shield
+ Name: Sigrun Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,5+.@r;
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2;
+ - Id: 24330
+ AegisName: S_Caster_Armor_II
+ Name: Caster Shadow Armor II
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bSPrecovRate,20;
+ bonus bVariableCastrate,-getrefine()/2;
+ - Id: 24331
+ AegisName: S_Reload_Armor_II
+ Name: Reload Shadow Armor II
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bHPrecovRate,20;
+ bonus bVit,3;
+ bonus bDelayrate,-(getrefine()/3);
+ - Id: 24332
+ AegisName: S_Critical_Shield
+ Name: Critical Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,5+.@r/2;
+ if (.@r >= 9) {
+ bonus bCritAtkRate,2;
+ } else if (.@r >= 7) {
+ bonus bCritAtkRate,1;
+ }
+ - Id: 24333
+ AegisName: S_Critical_Shoes
+ Name: Critical Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ 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;
+ }
+ - Id: 24335
+ AegisName: S_Gemstone_Weapon_II
+ Name: Gemstone Shadow Weapon II
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bMaxSP,50;
+ if (getrefine() >= 7) {
+ bonus bMaxHPrate,3;
+ }
+ else {
+ bonus bMaxHPrate,1;
+ }
+ - Id: 24339
+ AegisName: S_Almighty_Earring
+ Name: Almighty Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,getrefine();
+ - Id: 24340
+ AegisName: S_Almighty_Pendant
+ Name: Almighty Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bAllStats,getrefine();
+ - Id: 24341
+ AegisName: S_All_Race_Shoes
+ Name: All Race Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ 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;
+ - Id: 24342
+ AegisName: S_All_Race_Shield
+ Name: All Race Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ 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;
+ - Id: 24343
+ AegisName: S_Blitz_Weapon
+ Name: Blitz Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ 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;
+ }
+ }
+ - Id: 24345
+ AegisName: S_Tempest_Shield
+ Name: Tempest Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24346
+ AegisName: S_Tempest_Shoes
+ Name: Tempest Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24347
+ AegisName: S_Magic_Executioner_Holy_Water_Armor
+ Name: Magic Executioner Holy Water Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ 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;
+ - Id: 24351
+ AegisName: S_Magic_Fishing_Insect_Net_Armor
+ Name: Magic Fishing Insect Net Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stone,100*getrefine();
+ - Id: 24353
+ AegisName: S_Insomniac_Shoes_II
+ Name: Insomniac Shadow Shoes II
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Sleep,100*getrefine();
+ - Id: 24354
+ AegisName: S_Peerless_Armor_II
+ Name: Peerless Shadow Armor II
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Silence,100*getrefine();
+ - Id: 24355
+ AegisName: S_Adulate_Shoes_II
+ Name: Adulate Shadow Shoes II
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Blind,100*getrefine();
+ - Id: 24356
+ AegisName: S_Unfreezing_Weapon_II
+ Name: Unfreezing Shadow Weapon II
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Freeze,100*getrefine();
+ - Id: 24357
+ AegisName: S_Vitality_Earring_II
+ Name: Vitality Shadow Earring II
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Bleeding,100*getrefine();
+ - Id: 24358
+ AegisName: S_Neutral_Weapon_II
+ Name: Neutral Shadow Weapon II
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,100*(getrefine()/2);
+ - Id: 24359
+ AegisName: S_Uncursed_Pendant_II
+ Name: Uncursed Shadow Pendant II
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Curse,100*getrefine();
+ - Id: 24360
+ AegisName: S_Tension_Weapon
+ Name: Tension Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxHP,100+((.@r/2)*150);
+ - Id: 24361
+ AegisName: S_Tension_Earring
+ Name: Tension Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,1;
+ bonus bBaseAtk,5;
+ bonus bMaxHP,.@r*10+50*(.@r/2);
+ - Id: 24362
+ AegisName: S_Tension_Pendent
+ Name: Tension Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 2 + (.@r/3);
+ bonus bBaseAtk,5;
+ bonus bHealPower2,.@val;
+ bonus bAddItemHealRate,.@val;
+ - Id: 24363
+ AegisName: S_Elegant_Weapon
+ Name: Elegant Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxHP,100+((.@r/2)*150);
+ - Id: 24364
+ AegisName: S_Elegant_Earring
+ Name: Elegant Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10+((.@r/2)*50);
+ bonus bMaxHPrate,1;
+ bonus bMatk,5;
+ - Id: 24365
+ AegisName: S_Elegant_Pendent
+ Name: Elegant Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ .@val = 2 + (.@r/3);
+ bonus bMatk,5;
+ bonus bHealPower2,.@val;
+ bonus bAddItemHealRate,.@val;
+ - Id: 24366
+ AegisName: S_Healing_Shield
+ Name: Healing Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10;
+ if (.@r >= 7) {
+ .@val = 3;
+ if (.@r >= 9) {
+ .@val += 5;
+ }
+ bonus bHealPower,.@val;
+ }
+ - Id: 24367
+ AegisName: S_Healing_Shoes
+ Name: Healing Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10;
+ if (.@r >= 7) {
+ .@val = 3;
+ if (.@r >= 9) {
+ .@val += 5;
+ }
+ bonus bHealPower,.@val;
+ }
+ - Id: 24368
+ AegisName: S_Restore_Earring
+ Name: Restore Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24374
+ AegisName: S_Penetration_Shield
+ Name: Penetration Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24375
+ AegisName: S_Executioner_Holy_Water_Armor
+ Name: Executioner Holy Water Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ 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;
+ - Id: 24379
+ AegisName: S_Fishing_Insect_Net_Armor
+ Name: Fishing Insect Net Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@val = 5 + (getrefine()/2);
+ bonus2 bIgnoreDefRaceRate,RC_Fish,.@val;
+ bonus2 bIgnoreDefRaceRate,RC_Insect,.@val;
+ - Id: 24380
+ AegisName: Sentimental_Weapone_S
+ Name: Sentimental Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxSP,10+((.@r/2)*15);
+ - Id: 24381
+ AegisName: Sentimental_Earring_S
+ Name: Sentimental Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSP,(.@r/2)*5;
+ bonus bMaxSPrate,1;
+ bonus bBaseAtk,5;
+ - Id: 24382
+ AegisName: Sentimental_Pendant_S
+ Name: Sentimental Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bSPrecovRate,2+.@r/3;
+ bonus bBaseAtk,5;
+ - Id: 24383
+ AegisName: Enchanting_Weapone_S
+ Name: Enchanting Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ bonus bMaxSP,10+(.@r/2*15);
+ - Id: 24384
+ AegisName: Enchanting_Earring_S
+ Name: Enchanting Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bMaxSP,(.@r/2)*5;
+ bonus bMaxSPrate,1;
+ bonus bMatk,5;
+ - Id: 24385
+ AegisName: Enchanting_Pendant_S
+ Name: Enchanting Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus bSPrecovRate,2+.@r/3;
+ bonus bMatk,5;
+ - Id: 24386
+ AegisName: S_Infinity_Weapon
+ Name: Infinity Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 24388
+ AegisName: S_Beginner's_Shield
+ Name: Beginner's Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ - Id: 24389
+ AegisName: S_Beginner's_Shoes
+ Name: Beginner's Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAgi,2;
+ - Id: 24390
+ AegisName: S_Beginner's_Weapon
+ Name: Beginner's Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 24391
+ AegisName: S_Beginner's_Earring
+ Name: Beginner's Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ - Id: 24392
+ AegisName: S_Beginner's_Pendant
+ Name: Beginner's Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLuk,2;
+ - Id: 24393
+ AegisName: S_Physical_Shoes
+ Name: Physical Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 9) {
+ bonus bAspdRate,8;
+ } else if (.@r >= 7) {
+ bonus bAspdRate,5;
+ }
+ else {
+ bonus bAspdRate,2;
+ }
+ - Id: 24394
+ AegisName: S_Physical_Shield
+ Name: Physical Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,200;
+ if (.@r >= 9) {
+ bonus bMaxHPrate,5;
+ } else if (.@r >= 7) {
+ bonus bMaxHPrate,2;
+ }
+ - Id: 24395
+ AegisName: S_Physical_Armor
+ Name: Physical Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus 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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bDef,50+20*(getrefine()/2);
+ - Id: 24400
+ AegisName: S_Hard_Champion_Shoes
+ Name: Hard Champion Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2);
+ - Id: 24403
+ AegisName: S_Kagerou_Armor
+ Name: Kagerou Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5;
+ - Id: 24404
+ AegisName: S_Oboro_Armor
+ Name: Oboro Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5;
+ bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5;
+ - Id: 24405
+ AegisName: S_Rebellion_Shoes
+ Name: Rebellion Shadow Shoes
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5;
+ - Id: 24406
+ AegisName: S_Kagerou_Shoes
+ Name: Kagerou Shadow Shoes
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5;
+ - Id: 24407
+ AegisName: S_Oboro_Shoes
+ Name: Oboro Shadow Shoes
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"KO_ZANZOU",-2000*(1+.@r/2);
+ - Id: 24408
+ AegisName: S_DoramPhysical_Armor
+ Name: Doram Physical Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"SU_PICKYPECK",20;
+ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3;
+ - Id: 24409
+ AegisName: S_DoramPhysical_Shoes
+ Name: Doram Physical Shadow Shoes
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2);
+ - Id: 24410
+ AegisName: S_DoramMagical_Armor
+ Name: Doram Magical Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillAtk,"SU_CN_METEOR",20;
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3;
+ - Id: 24411
+ AegisName: S_DoramMagical_Shoes
+ Name: Doram Magical Shadow Shoes
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2);
+ - Id: 24412
+ AegisName: S_Star_Emperor_Armor
+ Name: Star Emperor Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2);
+ - Id: 24414
+ AegisName: S_Soul_Reaper_Armor
+ Name: Soul Reaper Shadow Armor
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Buy: 10
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2);
+ - Id: 24416
+ AegisName: S_Temporal_Transcendent_Weapon
+ Name: Temporal Transcendent Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bCritAtkRate,7;
+ - Id: 24417
+ AegisName: S_Temporal_Transcendent_Armor
+ Name: Temporal Transcendent Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspd,1;
+ - Id: 24418
+ AegisName: S_Temporal_Transcendent_Shield
+ Name: Temporal Transcendent Shadow Shield
+ Type: Shadowgear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-10;
+ - Id: 24419
+ AegisName: S_Temporal_Transcendent_Shoes
+ Name: Temporal Transcendent Shadow Shoes
+ Type: Shadowgear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,7;
+ - Id: 24420
+ AegisName: S_Temporal_Transcendent_Earring
+ Name: Temporal Transcendent Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,15;
+ - Id: 24421
+ AegisName: S_Temporal_Transcendent_Pendant
+ Name: Temporal Transcendent Shadow Pendant
+ Type: Shadowgear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,15;
+ - Id: 24423
+ AegisName: S_Tempest_Weapon
+ Name: Tempest Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24424
+ AegisName: S_Tempest_Armor
+ Name: Tempest Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ Refineable: true
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);
+ - Id: 24425
+ AegisName: S_Perfect_Size_Weapon
+ Name: Perfect Size Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,2;
+ bonus2 bMagicAddSize,Size_All,2;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*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
+ Type: Shadowgear
+ Locations:
+ 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;*/
+ }
+ - Id: 24427
+ AegisName: S_M_Exo_Co_Weapon
+ Name: Magic Exorcist Current Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_Demon,5+.@r/2;
+ bonus2 bIgnoreMdefRaceRate,RC_Angel,5+.@r/2;
+ - Id: 24428
+ AegisName: S_M_Viv_Dr_Weapon
+ Name: Magic Vibration Dragon Killer Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_Formless,5+.@r/2;
+ bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+.@r/2;
+ - Id: 24429
+ AegisName: S_M_Sci_Hu_Weapon
+ Name: Magic Caesars Hunting Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_Brute,5+.@r/2;
+ bonus2 bIgnoreMdefRaceRate,RC_Plant,5+.@r/2;
+ - Id: 24430
+ AegisName: S_M_Fis_In_Weapon
+ Name: Magic Fishing Insect Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_Fish,5+.@r/2;
+ bonus2 bIgnoreMdefRaceRate,RC_Insect,5+.@r/2;
+ - Id: 24431
+ AegisName: S_M_Exe_Ho_Weapon
+ Name: Magic Executioner Holy Water Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+.@r/2;
+ bonus2 bIgnoreMdefRaceRate,RC_Undead,5+.@r/2;
+ - Id: 24432
+ AegisName: S_Penetration_Weapon
+ Name: Penetration Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2;
+ - Id: 24433
+ AegisName: S_Penetration_Armor
+ Name: Penetration Shadow Armor
+ Type: Shadowgear
+ Locations:
+ Shadow_Armor: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2;
+ - Id: 24434
+ AegisName: S_Exe_Ho_Weapon
+ Name: Executioner Holy Water Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+.@r/2;
+ bonus2 bIgnoreDefRaceRate,RC_Undead,5+.@r/2;
+ - Id: 24435
+ AegisName: S_Fis_In_Weapon
+ Name: Fishing Insect Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_Fish,5+.@r/2;
+ bonus2 bIgnoreDefRaceRate,RC_Insect,5+.@r/2;
+ - Id: 24436
+ AegisName: S_Sci_Hu_Weapon
+ Name: Scissors Hunting Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_Brute,5+.@r/2;
+ bonus2 bIgnoreDefRaceRate,RC_Plant,5+.@r/2;
+ - Id: 24437
+ AegisName: S_Viv_Dr_Weapon
+ Name: Vibration Dragon Killer Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_Formless,5+.@r/2;
+ bonus2 bIgnoreDefRaceRate,RC_Dragon,5+.@r/2;
+ - Id: 24438
+ AegisName: S_Exo_Co_Weapon
+ Name: Exorcist Corrupt Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_Demon,5+.@r/2;
+ bonus2 bIgnoreDefRaceRate,RC_Angel,5+.@r/2;
+ - Id: 24439
+ AegisName: S_Hasty_Weapon
+ Name: Hasty Shadow Weapon
+ Type: Shadowgear
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ 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
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RK_SONICWAVE",5+2*(getrefine()/2);
+ - Id: 24441
+ AegisName: S_Sonic_Shield
+ Name: Sonic Shadow Shield # !todo check english name
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24442
+ AegisName: S_Sonic_Shoes
+ Name: Sonic Shadow Shoes
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"RK_SONICWAVE",2+(getrefine()/2);
+ - Id: 24443
+ AegisName: S_Ignition_Weapon
+ Name: Ignition Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ 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);
+ - Id: 24444
+ AegisName: S_Ignition_Pendant
+ Name: Ignition Shadow Pendant
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",5+2*(getrefine()/2);
+ - Id: 24445
+ AegisName: S_Ignition_Earing
+ Name: Ignition Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-200-100*(getrefine()/3);
+ - Id: 24446
+ AegisName: S_W_Breath_Armor
+ Name: Cold Breath Shadow Armor
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5+2*(getrefine()/2);
+ - Id: 24447
+ AegisName: S_W_Breath_Shield
+ Name: Cold Breath Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"RK_DRAGONBREATH_WATER",2+(getrefine()/2);
+ - Id: 24449
+ AegisName: S_F_Breath_Weapon
+ Name: Fire Breath Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",5+2*(getrefine()/2);
+ - Id: 24451
+ AegisName: S_F_Breath_Earing
+ Name: Fire Breath Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"RK_DRAGONBREATH",2+(getrefine()/2);
+ - Id: 24452
+ AegisName: S_Cluster_Armor
+ Name: Cluster Shadow Armor
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+2*(getrefine()/2);
+ - Id: 24453
+ AegisName: S_Cluster_Shield
+ Name: Cluster Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+3*(getrefine()/2);
+ - Id: 24455
+ AegisName: S_Aimed_Weapon
+ Name: Aimed Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24456
+ AegisName: S_Aimed_Pendant
+ Name: Aimed Shadow Pendant
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",5+2*(getrefine()/2);
+ - Id: 24457
+ AegisName: S_Aimed_Earing
+ Name: Aimed Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,3+2*(getrefine()/3);
+ - Id: 24458
+ AegisName: S_Arrow_Armor
+ Name: Arrow Shadow Armor
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RA_ARROWSTORM",5+2*(getrefine()/2);
+ - Id: 24459
+ AegisName: S_Arrow_Shield
+ Name: Arrow Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24460
+ AegisName: S_Arrow_Shoes
+ Name: Arrow Shadow Shoes
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"RA_ARROWSTORM",2+(getrefine()/2);
+ - Id: 24461
+ AegisName: S_Shooting_Weapon
+ Name: Shooting Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24462
+ AegisName: S_Shooting_Pendant
+ Name: Shooting Shadow Pendant
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",5+2*(getrefine()/2);
+ - Id: 24463
+ AegisName: S_Shooting_Earing
+ Name: Shooting Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SN_SHARPSHOOTING",2+(getrefine()/2);
+ - Id: 24464
+ AegisName: S_Tornado_Armor
+ Name: Tornado Shadow Armor
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"NC_AXETORNADO",5+2*(getrefine()/2);
+ - Id: 24465
+ AegisName: S_Tornado_Shield
+ Name: Tornado Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"NC_AXETORNADO",2+(getrefine()/2);
+ - Id: 24467
+ AegisName: S_Boomerang_Weapon
+ Name: Boomerang Shadow Weapon
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24468
+ AegisName: S_Boomerang_Pendant
+ Name: Boomerang Shadow Pendant
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",5+2*(getrefine()/2);
+ - Id: 24469
+ AegisName: S_Boomerang_Earing
+ Name: Boomerang Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-100-100*(getrefine()/4);
+ - Id: 24470
+ AegisName: S_Vulcan_Armor
+ Name: Vulcan Shadow Armor
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"NC_VULCANARM",5+2*(getrefine()/2);
+ - Id: 24471
+ AegisName: S_Vulcan_Shield
+ Name: Vulcan Shadow Shield
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24472
+ AegisName: S_Vulcan_Shoes
+ Name: Vulcan Shadow Shoes # !todo check english name
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"NC_VULCANARM",2+(getrefine()/2);
+ - Id: 24473
+ AegisName: S_Arms_Weapon
+ Name: Arm Shadow Weapon # !todo check english name
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0);
+ - Id: 24474
+ AegisName: S_Arms_Pendant
+ Name: Arm Shadow Pendant
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"NC_ARMSCANNON",5+2*(getrefine()/2);
+ - Id: 24475
+ AegisName: S_Arms_Earing
+ Name: Arm Shadow Earring
+ Type: Shadowgear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"NC_ARMSCANNON",2+(getrefine()/2);
+ - Id: 24476
+ AegisName: S_Rampage_Armor
+ Name: Rampage Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",5+2*(getrefine()/2);
+ - Id: 24477
+ AegisName: S_Rampage_Shield
+ Name: Rampage Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24478
+ AegisName: S_Rampage_Shoes
+ Name: Rampage Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-200-100*(getrefine()/3);
+ - Id: 24479
+ AegisName: S_Skynetblow_Weapon
+ Name: Sky Blow Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24480
+ AegisName: S_Skynetblow_Pendant
+ Name: Sky Blow Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",5+2*(getrefine()/2);
+ - Id: 24481
+ AegisName: S_Skynetblow_Earing
+ Name: Sky Net Blow Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,2+(getrefine()/3);
+ - Id: 24482
+ AegisName: S_Knucklearrow_Armor
+ Name: Knuckle Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",5+2*(getrefine()/2);
+ - Id: 24483
+ AegisName: S_Knucklearrow_Shield
+ Name: Knuckle Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24484
+ AegisName: S_Knucklearrow_Shoes
+ Name: Knuckle Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,3+2*(getrefine()/3);
+ - Id: 24485
+ AegisName: S_TigerCannon_Weapon
+ Name: Tiger Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24486
+ AegisName: S_Tigercannon_Pendant
+ Name: Tiger Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SR_TIGERCANNON",5+2*(getrefine()/2);
+ - Id: 24487
+ AegisName: S_Tigercannon_Earing
+ Name: Tiger Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SR_TIGERCANNON",2+(getrefine()/2);
+ - Id: 24488
+ AegisName: S_Duplelight_Armor
+ Name: Duplex Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",5+2*(getrefine()/2);
+ - Id: 24489
+ AegisName: S_Duplelight_Shield
+ Name: Duplex Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,5;
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,3;
+ bonus2 bMagicAtkEle,Ele_Holy,3;
+ }
+ else {
+ bonus2 bAddSize,Size_All,1;
+ bonus2 bMagicAtkEle,Ele_Holy,1;
+ }
+ - Id: 24490
+ AegisName: S_Duplelight_Shoes
+ Name: Duplex Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bCritAtkRate,5+(getrefine()/2);
+ - Id: 24491
+ AegisName: S_Adoramus_Weapon
+ Name: Adora Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Holy,3;
+ }
+ - Id: 24492
+ AegisName: S_Adoramus_Pendant
+ Name: Adora Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AB_ADORAMUS",5+2*(getrefine()/2);
+ - Id: 24493
+ AegisName: S_Adoramus_Earing
+ Name: Adora Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"AB_ADORAMUS",2+(getrefine()/2);
+ - Id: 24494
+ AegisName: S_Judex_Armor
+ Name: Judex Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"AB_JUDEX",5+2*(getrefine()/2);
+ - Id: 24495
+ AegisName: S_Judex_Shield
+ Name: Judex Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Holy,3;
+ }
+ - Id: 24496
+ AegisName: S_Judex_Shoes
+ Name: Judex Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAddSize,Size_All,3+2*(getrefine()/3);
+ - Id: 24497
+ AegisName: S_Magnus_Weapon
+ Name: Magnus Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Holy,3;
+ }
+ - Id: 24498
+ AegisName: S_Magnus_Pendant
+ Name: Magnus Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"PR_MAGNUS",5+2*(getrefine()/2);
+ - Id: 24499
+ AegisName: S_Magnus_Earing
+ Name: Magnus Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"PR_MAGNUS",2+(getrefine()/2);
+ - Id: 24500
+ AegisName: S_Rainstorm_Armor
+ Name: Rainstorm Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5+2*(getrefine()/2);
+ - Id: 24501
+ AegisName: S_Rainstorm_Shield
+ Name: Rainstorm Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24502
+ AegisName: S_Rainstorm_Shoes
+ Name: Rainstorm Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",2+(getrefine()/2);
+ - Id: 24503
+ AegisName: S_Arrowvulcan_Weapon
+ Name: Arrow Vulcan Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24504
+ AegisName: S_Arrowvulcan_Pendant
+ Name: Arrow Vulcan Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",5+2*(getrefine()/2);
+ - Id: 24505
+ AegisName: S_Arrowvulcan_Earing
+ Name: Arrow Vulcan Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"CG_ARROWVULCAN",-200-100*(getrefine()/3);
+ - Id: 24506
+ AegisName: S_Metalic_Armor
+ Name: Metallic Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WM_METALICSOUND",5+2*(getrefine()/2);
+ - Id: 24507
+ AegisName: S_Metalic_Shield
+ Name: Metallic Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Neutral,3;
+ }
+ - Id: 24508
+ AegisName: S_Metalic_Shoes
+ Name: Metallic Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"WM_METALICSOUND",2+(getrefine()/2);
+ - Id: 24509
+ AegisName: S_Reverberation_Weapon
+ Name: Vibrating Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Neutral,3;
+ }
+ - Id: 24510
+ AegisName: S_Reverberation_Pendant
+ Name: Vibration Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WM_REVERBERATION",5+2*(getrefine()/2);
+ - Id: 24511
+ AegisName: S_Reverberation_Earing
+ Name: Vibration Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"WM_REVERBERATION",2+(getrefine()/2);
+ - Id: 24512
+ AegisName: S_Jack_Armor
+ Name: Jack Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WL_JACKFROST",5+2*getrefine();
+ - Id: 24513
+ AegisName: S_Jack_Shield
+ Name: Jack Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Water,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Water,3;
+ }
+ - Id: 24514
+ AegisName: S_Jack_Shoes
+ Name: Jack Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"WL_JACKFROST",-1000-100*(getrefine()/2);
+ - Id: 24515
+ AegisName: S_Strain_Weapon
+ Name: Strain Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Earth,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Earth,3;
+ }
+ - Id: 24516
+ AegisName: S_Strain_Pendant
+ Name: Strain Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",5+2*getrefine();
+ - Id: 24517
+ AegisName: S_Strain_Earing
+ Name: Strain Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-200-100*(getrefine()/3);
+ - Id: 24518
+ AegisName: S_Crimson_Armor
+ Name: Crimson Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",5+2*getrefine();
+ - Id: 24519
+ AegisName: S_Crimson_Shield
+ Name: Crimson Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Fire,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Fire,3;
+ }
+ - Id: 24520
+ AegisName: S_Crimson_Shoes
+ Name: Crimson Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"WL_CRIMSONROCK",4+(getrefine()/2);
+ - Id: 24521
+ AegisName: S_Chain_Weapon
+ Name: Chain Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Wind,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Wind,3;
+ }
+ - Id: 24522
+ AegisName: S_Chain_Pendant
+ Name: Chain Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",5+2*getrefine();
+ - Id: 24523
+ AegisName: S_Chain_Earing
+ Name: Chain Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"WL_CHAINLIGHTNING",4+(getrefine()/2);
+ - Id: 24524
+ AegisName: S_Triangle_Armor
+ Name: Triangle Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",5+2*(getrefine()/2);
+ - Id: 24525
+ AegisName: S_Triangle_Shield
+ Name: Triangle Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24526
+ AegisName: S_Triangle_Shoes
+ Name: Triangle Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SC_TRIANGLESHOT",2+(getrefine()/2);
+ - Id: 24527
+ AegisName: S_Shadowspell_Weapon
+ Name: Shadowspell Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ 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
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"WZ_METEOR",5+3*(getrefine()/2);
+ - Id: 24529
+ AegisName: S_Shadowspell_Earing
+ Name: Shadowspell Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@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
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SC_FATALMENACE",5+2*(getrefine()/2);
+ - Id: 24531
+ AegisName: S_Menace_Shield
+ Name: Menace Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24532
+ AegisName: S_Menace_Shoes
+ Name: Menace Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SC_FATALMENACE",2+(getrefine()/2);
+ - Id: 24533
+ AegisName: S_Paint_Weapon
+ Name: Paint Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24534
+ AegisName: S_Paint_Pendant
+ Name: Paint Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SC_FEINTBOMB",5+2*(getrefine()/2);
+ - Id: 24535
+ AegisName: S_Paint_Earing
+ Name: Paint Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"SC_FEINTBOMB",-200-100*(getrefine()/3);
+ - Id: 24536
+ AegisName: S_Rolling_Armor
+ Name: Rolling Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",5+2*(getrefine()/2);
+ - Id: 24537
+ AegisName: S_Rolling_Shield
+ Name: Rolling Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24538
+ AegisName: S_Rolling_Shoes
+ Name: Rolling Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"GC_ROLLINGCUTTER",2+(getrefine()/2);
+ - Id: 24539
+ AegisName: S_Katar_Weapon
+ Name: Katar Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ autobonus "{ bonus2 bAddSize,Size_All,15; bonus bCritAtkRate,15; }",1,10000,BF_WEAPON;
+ }
+ else if (.@r>=7) {
+ autobonus "{ bonus2 bAddSize,Size_All,15; bonus bCritAtkRate,15; }",1,5000,BF_WEAPON;
+ }
+ else {
+ autobonus "{ bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,10; }",1,5000,BF_WEAPON;
+ }
+ - Id: 24540
+ AegisName: S_Katar_Pendant
+ Name: Katar Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bCritAtkRate,5+(getrefine()/2);
+ - Id: 24541
+ AegisName: S_Katar_Earing
+ Name: Katar Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24542
+ AegisName: S_Slash_Armor
+ Name: Slash Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",5+2*(getrefine()/2);
+ - Id: 24543
+ AegisName: S_Slash_Shield
+ Name: Slash Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24544
+ AegisName: S_Slash_Shoes
+ Name: Slash Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"GC_COUNTERSLASH",2+(getrefine()/2);
+ - Id: 24545
+ AegisName: S_Ripper_Weapon
+ Name: Ripper Slasher Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24546
+ AegisName: S_Ripper_Pendant
+ Name: Ripper Slasher Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",5+2*(getrefine()/2);
+ - Id: 24547
+ AegisName: S_Ripper_Earing
+ Name: Ripper Slasher Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24548
+ AegisName: S_Dust_Armor
+ Name: Dust Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",5+2*getrefine();
+ - Id: 24549
+ AegisName: S_Dust_Shield
+ Name: Dust Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Water,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Water,3;
+ }
+ - Id: 24550
+ AegisName: S_Dust_Shoes
+ Name: Dust Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SO_DIAMONDDUST",4+(getrefine()/2);
+ - Id: 24551
+ AegisName: S_Grave_Weapon
+ Name: Grave Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Earth,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Earth,3;
+ }
+ - Id: 24552
+ AegisName: S_Grave_Pendant
+ Name: Grave Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",5+2*getrefine();
+ - Id: 24553
+ AegisName: S_Grave_Earing
+ Name: Grave Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"SO_EARTHGRAVE",-200-100*(getrefine()/3);
+ - Id: 24554
+ AegisName: S_Psychic_Armor
+ Name: Psychic Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5+2*getrefine();
+ - Id: 24555
+ AegisName: S_Psychic_Shield
+ Name: Psychic Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Neutral,3;
+ }
+ - Id: 24556
+ AegisName: S_Psychic_Shoes
+ Name: Psychic Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SO_PSYCHIC_WAVE",4+(getrefine()/2);
+ - Id: 24557
+ AegisName: S_Varetyr_Weapon
+ Name: Varetyr Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Wind,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Wind,3;
+ }
+ - Id: 24558
+ AegisName: S_Varetyr_Pendant
+ Name: Varetyr Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",5+2*getrefine();
+ - Id: 24559
+ AegisName: S_Varetyr_Earing
+ Name: Varetyr Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"SO_VARETYR_SPEAR",4+(getrefine()/2);
+ - Id: 24560
+ AegisName: S_Cart_Tornado_Armor
+ Name: Tornado Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GN_CART_TORNADO",5+2*(getrefine()/2);
+ - Id: 24561
+ AegisName: S_Cart_Tornado_Shield
+ Name: Tornado Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24562
+ AegisName: S_Cart_Tornado_Shoes
+ Name: Tornado Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillUseSPrate,"GN_CART_TORNADO",2+(getrefine()/2);
+ - Id: 24563
+ AegisName: S_Cannon_Cart_Weapon
+ Name: Cannon Cart Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24564
+ AegisName: S_Cannon_Cart_Pendant
+ Name: Cannon Cart Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GN_CARTCANNON",5+2*(getrefine()/2);
+ - Id: 24565
+ AegisName: S_Cannon_Cart_Earing
+ Name: Cannon Cart Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24566
+ AegisName: S_Spore_Bomb_Armor
+ Name: Spore Bomb Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+2*(getrefine()/2);
+ - Id: 24567
+ AegisName: S_Spore_Bomb_Shield
+ Name: Spore Bomb Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24568
+ AegisName: S_Spore_Bomb_Shoes
+ Name: Spore Bomb Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-200-100*(getrefine()/3);
+ - Id: 24569
+ AegisName: S_Crazy_Weapon
+ Name: Crazy Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24570
+ AegisName: S_Crazy_Pendant
+ Name: Crazy Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"GN_CRAZYWEED",5+2*(getrefine()/2);
+ - Id: 24571
+ AegisName: S_Crazy_Earing
+ Name: Crazy Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"GN_CRAZYWEED",-200-100*(getrefine()/3);
+ - Id: 24572
+ AegisName: S_Brand_Armor
+ Name: Brand Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"LG_OVERBRAND",5+2*(getrefine()/2);
+ - Id: 24573
+ AegisName: S_Brand_Shield
+ Name: Brand Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24574
+ AegisName: S_Brand_Shoes
+ Name: Brand Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"LG_OVERBRAND",5;
+ bonus bDelayrate,-1*(getrefine()/3);
+ - Id: 24575
+ AegisName: S_Chain_Press_Weapon
+ Name: Chain Press Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24576
+ AegisName: S_Chain_Press_Pendant
+ Name: Chain Press Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",5+2*(getrefine()/2);
+ - Id: 24577
+ AegisName: S_Chain_Press_Earing
+ Name: Chain Press Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",5+2*(getrefine()/2);
+ - Id: 24578
+ AegisName: S_Banish_Cannon_Armor
+ Name: Banishing Cannon Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ 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
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddSize,Size_All,6;
+ }
+ else {
+ bonus2 bAddSize,Size_All,3;
+ }
+ - Id: 24580
+ AegisName: S_Banish_Cannon_Shoes
+ Name: Banishing Cannon Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"LG_CANNONSPEAR",-200-100*(getrefine()/3);
+ - Id: 24581
+ AegisName: S_Genesis_Weapon
+ Name: Genesis Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Holy,3;
+ }
+ - Id: 24582
+ AegisName: S_Genesis_Pendant
+ Name: Genesis Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",5+2*(getrefine()/2);
+ - Id: 24583
+ AegisName: S_Genesis_Earing
+ Name: Genesis Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-200-100*(getrefine()/3);
+ - Id: 24584
+ AegisName: S_Booster_Armor
+ Name: Booster Shadow Armor
+ Type: ShadowGear
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bAspd,1;
+ - Id: 24585
+ AegisName: S_Booster_Shield
+ Name: Booster Shadow Shield
+ Type: ShadowGear
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bVariableCastrate,-10;
+ - Id: 24586
+ AegisName: S_Booster_Shoes
+ Name: Booster Shadow Shoes
+ Type: ShadowGear
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bAspdRate,7;
+ - Id: 24587
+ AegisName: S_Booster_Earing
+ Name: Booster Shadow Earring
+ Type: ShadowGear
+ MagicAttack: 15
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 24588
+ AegisName: S_Booster_Pandent
+ Name: Booster Shadow Pendant
+ Type: ShadowGear
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,100;
+ bonus bBaseAtk,15;
+ - Id: 24589
+ AegisName: S_RK_B_Weapon
+ Name: Rune Knight's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24590
+ AegisName: S_LG_B_Weapon
+ Name: Royal Guard's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24591
+ AegisName: S_NC_B_Weapon
+ Name: Mechanic's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24592
+ AegisName: S_GN_B_Weapon
+ Name: Genetic's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24593
+ AegisName: S_GC_B_Weapon
+ Name: Guillotine Cross' Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24594
+ AegisName: S_SC_B_Weapon
+ Name: Shadow Chaser's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24595
+ AegisName: S_WL_B_Weapon
+ Name: Warlock's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24596
+ AegisName: S_SO_B_Weapon
+ Name: Sorcerer's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24597
+ AegisName: S_AB_B_Weapon
+ Name: Archbishop's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24598
+ AegisName: S_SR_B_Weapon
+ Name: Sura's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24599
+ AegisName: S_RA_B_Weapon
+ Name: Ranger's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24600
+ AegisName: S_WM_B_Weapon
+ Name: Minstrel&Wanderer's Booster Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 24601
+ AegisName: S_Tail_Dragon_Weapon
+ Name: Tail Dragon Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24602
+ AegisName: S_Tail_Dragon_Shield
+ Name: Tail Dragon Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_D_TAIL",5+2*(getrefine()/2);
+ - Id: 24603
+ AegisName: S_Tail_Dragon_Armor
+ Name: Tail Dragon Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24604
+ AegisName: S_Flare_Dance_Earing
+ Name: Flare Dance Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ if (.@r>=7) {
+ bonus bMaxHPrate,5;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,7;
+ bonus bMaxHP,2000;
+ bonus bMaxSP,200;
+ }
+ - Id: 24605
+ AegisName: S_Flare_Dance_Pendant
+ Name: Flare Dance Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_FIREDANCE",5+2*(getrefine()/2);
+ - Id: 24606
+ AegisName: S_Flare_Dance_Shoes
+ Name: Flare Dance Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24607
+ AegisName: S_God_Hammer_Weapon
+ Name: God Hammer Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24608
+ AegisName: S_God_Hammer_Shield
+ Name: God Hammer Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",5+2*(getrefine()/2);
+ - Id: 24609
+ AegisName: S_God_Hammer_Armor
+ Name: God Hammer Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_All,5+(getrefine()/2);
+ - Id: 24610
+ AegisName: S_Shatter_Buster_Earing
+ Name: Shatter Buster Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,5;
+ if (.@r>=7) {
+ bonus bLongAtkRate,7;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15;
+ }
+ - Id: 24611
+ AegisName: S_Shatter_B_Pendant
+ Name: Shatter Buster Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_S_STORM",5+2*(getrefine()/2);
+ - Id: 24612
+ AegisName: S_Shatter_Buster_Shoes
+ Name: Shatter Buster Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",5+2*(getrefine()/2);
+ - Id: 24613
+ AegisName: S_Trip_Weapon
+ Name: Trip Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3;
+ if (.@r>=7) {
+ bonus bLongAtkRate,3;
+ }
+ if (.@r>=9) {
+ bonus bMaxHPrate,10;
+ }
+ - Id: 24614
+ AegisName: S_Trip_Shield
+ Name: Trip Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RL_R_TRIP",5+2*(getrefine()/2);
+ - Id: 24615
+ AegisName: S_Trip_Armor
+ Name: Trip Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24616
+ AegisName: S_Super_Magic_Shield
+ Name: Super Magic Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@val = 5;
+ if (.@r>=7) {
+ .@val += 5;
+ }
+ if (.@r>=9) {
+ skill "WZ_WATERBALL",getskilllv("HW_GRAVITATION");
+ }
+ bonus2 bMagicAtkEle,Ele_Neutral,.@val;
+ bonus2 bMagicAtkEle,Ele_Fire,.@val;
+ bonus2 bMagicAtkEle,Ele_Earth,.@val;
+ bonus2 bMagicAtkEle,Ele_Water,.@val;
+ bonus2 bMagicAtkEle,Ele_Wind,.@val;
+ - Id: 24617
+ AegisName: S_Super_Magic_Armor
+ Name: Super Magic Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",10+4*(.@r/2);
+ bonus2 bSkillAtk,"MG_FIREBOLT",10+4*(.@r/2);
+ bonus2 bSkillAtk,"MG_COLDBOLT",10+4*(.@r/2);
+ - Id: 24618
+ AegisName: S_Super_Magic_Shoes
+ Name: Super Magic Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WZ_VERMILION",10+4*(.@r/2);
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10+4*(.@r/2);
+ bonus2 bSkillAtk,"WZ_STORMGUST",10+4*(.@r/2);
+ bonus2 bSkillAtk,"WZ_METEOR",10+4*(.@r/2);
+ - Id: 24619
+ AegisName: S_Super_Power_Weapon
+ Name: Super Power Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,5;
+ bonus bShortAtkRate,5;
+ if (.@r>=7) {
+ bonus bLongAtkRate,5;
+ bonus bShortAtkRate,5;
+ }
+ if (.@r>=9) {
+ skill "BS_WEAPONRESEARCH",getskilllv("WS_MELTDOWN");
+ }
+ - Id: 24620
+ AegisName: S_Super_Power_Pendant
+ Name: Super Power Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"RG_RAID",10+4*(getrefine()/2);
+ - Id: 24621
+ AegisName: S_Super_Power_Earing
+ Name: Super Power Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10+4*(.@r/2);
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",10+4*(.@r/2);
+ - Id: 24622
+ AegisName: S_Kunai_Weapon
+ Name: Kunai Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24623
+ AegisName: S_Kunai_Shield
+ Name: Kunai Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24624
+ AegisName: S_Kunai_Armor
+ Name: Kunai Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"KO_BAKURETSU",5+2*(getrefine()/2);
+ - Id: 24625
+ AegisName: S_Syuriken_Earing
+ Name: Cross Shuriken Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3;
+ if (.@r>=7) {
+ bonus bLongAtkRate,3;
+ }
+ if (.@r>=9) {
+ bonus bUseSPrate,-10;
+ }
+ - Id: 24626
+ AegisName: S_Syuriken_Pendant
+ Name: Cross Shuriken Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"KO_HUUMARANKA",5+2*(getrefine()/2);
+ - Id: 24627
+ AegisName: S_Syuriken_Shoes
+ Name: Cross Shuriken Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",5+2*(getrefine()/2);
+ - Id: 24628
+ AegisName: S_Kamaenraku_Weapon
+ Name: First Exploding Draft Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",15;
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15;
+ bonus2 bSkillAtk,"NJ_KAMAITACHI",15;
+ }
+ else if (.@r>=7) {
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",10;
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",10;
+ bonus2 bSkillAtk,"NJ_KAMAITACHI",10;
+ }
+ else {
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",5;
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",5;
+ bonus2 bSkillAtk,"NJ_KAMAITACHI",5;
+ }
+ - Id: 24629
+ AegisName: S_Kamaenraku_Shield
+ Name: First Exploding Draft Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",5+2*(.@r/2);
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",5+2*(.@r/2);
+ bonus2 bSkillAtk,"NJ_KAMAITACHI",5+2*(.@r/2);
+ - Id: 24630
+ AegisName: S_Kamaenraku_Armor
+ Name: First Exploding Draft Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,5+(getrefine()/2);
+ - Id: 24631
+ AegisName: S_Huusouka_Earing
+ Name: Wind Spear Petal Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ bonus2 bSkillAtk,"NJ_HUUJIN",10;
+ }
+ else if (.@r>=7) {
+ bonus2 bSkillAtk,"NJ_KOUENKA",6;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",6;
+ bonus2 bSkillAtk,"NJ_HUUJIN",6;
+ }
+ else {
+ bonus2 bSkillAtk,"NJ_KOUENKA",3;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",3;
+ bonus2 bSkillAtk,"NJ_HUUJIN",3;
+ }
+ - Id: 24632
+ AegisName: S_Huusouka_Pendant
+ Name: Wind Spear Petal Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,2+(getrefine()/2);
+ - Id: 24633
+ AegisName: S_Huusouka_Shoes
+ Name: Wind Spear Petal Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24634
+ AegisName: S_Pickyrush_Weapon
+ Name: Picky Rush Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bLongAtkRate,6;
+ }
+ else {
+ bonus bLongAtkRate,3;
+ }
+ - Id: 24635
+ AegisName: S_Pickyrush_Shield
+ Name: Picky Rush Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24636
+ AegisName: S_Pickyrush_Armor
+ Name: Picky Rush Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SU_PICKYPECK",5+(getrefine()/2);
+ - Id: 24637
+ AegisName: S_SavageRabbit_Earing
+ Name: Savage Rabbit Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,5;
+ if (.@r>=7) {
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>=9) {
+ bonus bUseSPrate,-10;
+ }
+ - Id: 24638
+ AegisName: S_SavageRabbit_Pendant
+ Name: Savage Rabbit Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5;
+ bonus2 bSkillAtk,"SU_SVG_SPIRIT",3*(getrefine()/2);
+ - Id: 24639
+ AegisName: S_SavageRabbit_Shoes
+ Name: Savage Rabbit Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24640
+ AegisName: S_Catnip_Weapon
+ Name: Catnip Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SU_CN_METEOR",5;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SU_CN_METEOR",5;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 24641
+ AegisName: S_Catnip_Shield
+ Name: Catnip Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"SU_NYANGGRASS",-4000;
+ bonus2 bSkillAtk,"SU_CN_METEOR",3*(getrefine()/2);
+ - Id: 24642
+ AegisName: S_Catnip_Armor
+ Name: Catnip Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24643
+ AegisName: S_Silvervine_Earing
+ Name: Silvervine Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Ghost,10;
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Ghost,6;
+ bonus2 bMagicAtkEle,Ele_Fire,6;
+ bonus2 bMagicAtkEle,Ele_Earth,6;
+ bonus2 bMagicAtkEle,Ele_Water,6;
+ bonus2 bMagicAtkEle,Ele_Wind,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Ghost,3;
+ bonus2 bMagicAtkEle,Ele_Fire,3;
+ bonus2 bMagicAtkEle,Ele_Earth,3;
+ bonus2 bMagicAtkEle,Ele_Water,3;
+ bonus2 bMagicAtkEle,Ele_Wind,3;
+ }
+ - Id: 24644
+ AegisName: S_Silvervine_Pendant
+ Name: Silvervine Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-3-1*(getrefine()/2);
+ - Id: 24645
+ AegisName: S_Silvervine_Shoes
+ Name: Silvervine Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ Summoner: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,5+(getrefine()/2);
+ - Id: 24646
+ AegisName: S_Sunshine_Weapon
+ Name: Sunshine Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bShortAtkRate,10;
+ }
+ else if (.@r>=7) {
+ bonus bShortAtkRate,6;
+ }
+ else {
+ bonus bShortAtkRate,3;
+ }
+ - Id: 24647
+ AegisName: S_Sunshine_Shield
+ Name: Sunshine Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24648
+ AegisName: S_Sunshine_Armor
+ Name: Sunshine Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",5+2*(getrefine()/2);
+ - Id: 24649
+ AegisName: S_Moonlight_Earring
+ Name: Moonlight Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bShortAtkRate,3;
+ if (.@r>=7) {
+ bonus bShortAtkRate,3;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillUseSPrate,"SJ_FULLMOONKICK",10;
+ }
+ - Id: 24650
+ AegisName: S_Moonlight_Pendant
+ Name: Moonlight Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddSize,Size_All,5+(getrefine()/2);
+ - Id: 24651
+ AegisName: S_Moonlight_Shoes
+ Name: Moonlight Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillAtk,"SJ_NEWMOONKICK",5+2*(getrefine()/2);
+ - Id: 24652
+ AegisName: S_Stardust_Weapon
+ Name: Stardust Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SJ_FLASHKICK",10;
+ if (.@r>=7) {
+ bonus bAspdRate,5;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,5;
+ }
+ - Id: 24653
+ AegisName: S_Stardust_Shield
+ Name: Stardust Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bAspd,1;
+ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",3*(getrefine()/2);
+ - Id: 24654
+ AegisName: S_Stardust_Armor
+ Name: Stardust Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ StarGladiator: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bAddEle,Ele_All,5+(getrefine()/2);
+ - Id: 24655
+ AegisName: S_S_Weapon
+ Name: Es Shadow Weapon
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Weapon: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,5;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SL_SMA",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillUseSPrate,"SP_SPA",10;
+ }
+ - Id: 24656
+ AegisName: S_S_Shield
+ Name: Es Shadow Shield
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Shield: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAddSize,Size_All,5+2*(getrefine()/2);
+ - Id: 24657
+ AegisName: S_S_Armor
+ Name: Es Shadow Armor
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Armor: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SL_SMA",10;
+ bonus2 bSkillAtk,"SP_SPA",(.@r/2);
+ bonus2 bSkillAtk,"SP_SWHOO",(.@r/2);
+ - Id: 24658
+ AegisName: S_Evilcurse_Earring
+ Name: Evil Curse Shadow Earring
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Dark,6;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Dark,3;
+ }
+ - Id: 24659
+ AegisName: S_Evilcurse_Pendant
+ Name: Evil Curse Shadow Pendant
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Left_Accessory: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",3*(getrefine()/2);
+ - Id: 24660
+ AegisName: S_Evilcurse_Shoes
+ Name: Evil Curse Shadow Shoes
+ Type: ShadowGear
+ Jobs:
+ SoulLinker: true
+ Locations:
+ Shadow_Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus2 bSkillCooldown,"SP_SOULCURSE",-1000-100*(getrefine()/2);
+ - Id: 24661
+ AegisName: S_FullPene_Earring
+ Name: Full Penetration Earring Shadow # !todo check english name
+ Type: ShadowGear
+ Locations:
+ Shadow_Right_Accessory: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2);
+ if (.@r>=10) {
+ bonus2 bAddRace,RC_All,3;
+ bonus2 bAddRace,RC_Player_Human,-3;
+ bonus2 bAddRace,RC_Player_Doram,-3;
+ }
+ - Id: 24662
+ AegisName: S_FullPene_Pendant
+ Name: Full Penetration Pendant Shadow # !todo check english name
+ Type: ShadowGear
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Shadow_Left_Accessory: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2);
+ if (.@r>=10) {
+ bonus2 bAddRace,RC_All,3;
+ bonus2 bAddRace,RC_Player_Human,-3;
+ bonus2 bAddRace,RC_Player_Doram,-3;
+ }
+ - Id: 24663
+ AegisName: S_FullPene_Armor
+ Name: Full Penetration Armor Shadow # !todo check english name
+ Type: ShadowGear
+ Locations:
+ Shadow_Armor: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2);
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2);
+ if (.@r>=10) {
+ bonus2 bAddRace,RC_All,3;
+ bonus2 bAddRace,RC_Player_Human,-3;
+ bonus2 bAddRace,RC_Player_Doram,-3;
+ }
+ - Id: 24664
+ AegisName: S_FullPene_Shoes
+ Name: Full Penetration Shoes Shadow # !todo check english name
+ Type: ShadowGear
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Shadow_Shoes: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ 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
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Attack: 125
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,9*.@r+8*(min(BaseLevel,150)/10);
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10*.@r;
+ bonus2 bSkillAtk,"LG_OVERBRAND",10*.@r;
+ - Id: 26007
+ AegisName: Spectral_Spear_IL
+ Name: Illusion Spectral Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 2000
+ Attack: 240
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@val = 3*(.@r/2);
+ bonus2 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
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 170
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"LG_OVERBRAND",15;
+ }
+ - Id: 26016
+ AegisName: Royal_Knight's_Lance
+ Name: Royal Knight's Lance
+ Type: Weapon
+ SubType: 2hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 205
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ 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;
+ - Id: 26100
+ AegisName: P_Foxtail2
+ Name: Eden Group Foxtail Staff II
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 135
+ MagicAttack: 165
+ Range: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 2
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ bonus bInt,4;
+ bonus bLongAtkRate,6;
+ - Id: 26101
+ AegisName: P_Foxtail3
+ Name: Eden Group Foxtail Staff III
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 150
+ MagicAttack: 195
+ Range: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,5;
+ bonus bInt,5;
+ bonus bLongAtkRate,7;
+ - Id: 26107
+ AegisName: Staff_Of_Elder
+ Name: Elder Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 500
+ Attack: 60
+ MagicAttack: 150
+ Range: 1
+ Slots: 3
+ Jobs:
+ Acolyte: true
+ Monk: true
+ Priest: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@bonus = 10;
+ if (.@r>=7) {
+ .@bonus += 5;
+ }
+ if (.@r>=9) {
+ .@bonus += 10;
+ }
+ bonus bHealPower,.@bonus;
+ - Id: 26109
+ AegisName: Staff_Of_Bordeaux_IL
+ Name: Illusion Staff of Bordeaux
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 60
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bInt,3;
+ bonus bDex,2;
+ if (getskilllv("SA_DRAGONOLOGY") == 5) {
+ .@val = getrefine()/3;
+ bonus bMatkRate,(5+.@val);
+ bonus bUseSPrate,(-15-(5*.@val));
+ }
+ - Id: 26110
+ AegisName: CandyCaneRod
+ Name: Candy Cane Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 500
+ Attack: 10
+ MagicAttack: 140
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Novice: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bFlee,2*getrefine();
+ if (getrefine()>= 10) {
+ bonus bFlee2,10;
+ }
+ - Id: 26111
+ AegisName: Metal_Foxtail
+ Name: Metal Foxtail
+ Type: Weapon
+ SubType: Staff
+ Attack: 120
+ MagicAttack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine() * 3;
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ if (BaseLevel >= 20) {
+ .@r = min(BaseLevel,120)/10*3;
+ bonus bBaseAtk,.@r;
+ bonus bMatk,.@r;
+ }
+ bonus bUnbreakableWeapon;
+ - Id: 26112
+ AegisName: Probation_Foxtail
+ Name: Trial Summoner's Foxtail
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Attack: 220
+ MagicAttack: 220
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bVariableCastrate,-10;
+ bonus bMatk,3*(min(BaseLevel,160)/10);
+ bonus bBaseAtk,3*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bDelayrate,-2*getskilllv("SU_PICKYPECK");
+ bonus bVariableCastrate,-2*getskilllv("SU_SV_STEMSPEAR");
+ }
+ - Id: 26118
+ AegisName: Shadow_Staff_K
+ Name: Shadow Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 500
+ Attack: 40
+ MagicAttack: 155
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r*10;
+ if (.@r>=3)
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",.@r/3;
+ if (.@r>=9)
+ bonus bVariableCastrate,-10;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000;
+ - Id: 26119
+ AegisName: Rebeginer_SO_Rod
+ Name: Beginner Sorcerer's Staff
+ Type: Weapon
+ SubType: Staff
+ Attack: 70
+ MagicAttack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bVariableCastrate,-10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15;
+ }
+ - Id: 26120
+ AegisName: Rebeginer_DO_Rod
+ Name: Beginner Summoner's Foxtail
+ Type: Weapon
+ SubType: Staff
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Classes:
+ Normal: true
+ Upper: true
+ Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatk,130;
+ bonus bUnbreakableWeapon;
+ bonus bVariableCastrate,-10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"SU_CN_METEOR",15;
+ }
+ - Id: 26138
+ AegisName: Hellfire_Staff
+ Name: Hellfire Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine;
+ bonus bInt,5;
+ bonus bMatk,15*(.@r/2);
+ bonus bUnbreakableWeapon;
+ if (.@r>=9)
+ .@val = 15;
+ else if (.@r>=7)
+ .@val = 5;
+ bonus2 bMagicAtkEle,Ele_Fire,.@val;
+ bonus2 bMagicAtkEle,Ele_Earth,.@val;
+ - Id: 26139
+ AegisName: Icicle_Staff
+ Name: Icicle Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Buy: 20
+ Weight: 800
+ Attack: 110
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Acolyte: true
+ Mage: true
+ Monk: true
+ Priest: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine;
+ bonus bInt,5;
+ bonus bMatk,15*(.@r/2);
+ bonus bUnbreakableWeapon;
+ if (.@r>=9)
+ .@val = 15;
+ else if (.@r>=7)
+ .@val = 5;
+ bonus2 bMagicAtkEle,Ele_Water,.@val;
+ bonus2 bMagicAtkEle,Ele_Holy,.@val;
+ - Id: 26151
+ AegisName: Rutilus_Stick_OS
+ Name: Rutilus Stick-OS
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 900
+ Attack: 80
+ MagicAttack: 175
+ Range: 1
+ Slots: 2
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAddEle,Ele_Neutral,5;
+ bonus2 bMagicAddEle,Ele_Earth,5;
+ if (.@r >= 7) {
+ bonus bVariableCastrate,-7;
+ if (.@r >= 9) {
+ autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",40,10000,BF_MAGIC,"{ specialeffect2 255; }";
+ if (.@r >= 11) {
+ bonus bDelayrate,-10;
+ }
+ }
+ }
+ - Id: 26154
+ AegisName: SoulWeight
+ Name: Spirit Pendulum
+ Type: Weapon
+ SubType: Staff
+ Weight: 1100
+ Attack: 70
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 26155
+ AegisName: MeawFoxtail
+ Name: Meowmeow Foxtail
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 1100
+ Attack: 300
+ MagicAttack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ }
+ - Id: 26156
+ AegisName: Evt_Shadow_Staff_K
+ Name: Sealed Shadow Staff
+ Type: Weapon
+ SubType: Staff
+ Attack: 40
+ MagicAttack: 155
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatk,10*(.@r/2);
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000;
+ }
+ - Id: 26158
+ AegisName: Crimson_Rose_Stick
+ Name: Crimson Rose Stick
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 100
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"WL_HELLINFERNO",30;
+ }
+ if (.@r >= 11) {
+ bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000;
+ }
+ - Id: 26159
+ AegisName: Psychic_Spear_Rod
+ Name: Psychic Spear Rod
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Wind,5;
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30;
+ }
+ if (.@r >= 11) {
+ bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000;
+ }
+ - Id: 26160
+ AegisName: Dust_Grave
+ Name: Dust Grave
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 11)
+ .@val = 50;
+ else if (.@r >= 9)
+ .@val = 30;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val;
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ bonus2 bMagicAtkEle,Ele_Earth,5;
+ - Id: 26161
+ AegisName: Penitentia
+ Name: Penitentia
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 700
+ Attack: 100
+ MagicAttack: 175
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30;
+ bonus2 bSkillAtk,"AB_JUDEX",30;
+ }
+ - Id: 26162
+ AegisName: Ein_1HWAND
+ Name: Welding Wand
+ Type: Weapon
+ SubType: Staff
+ Weight: 1200
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,200;
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ bonus2 bMagicAtkEle,Ele_Fire,7;
+ bonus2 bMagicAtkEle,Ele_Water,7;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bMatk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,8;
+ bonus2 bMagicAtkEle,Ele_Fire,8;
+ bonus2 bMagicAtkEle,Ele_Water,8;
+ autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_MAGIC;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 26164
+ AegisName: ElectricFox_OS
+ Name: Electric Fox-OS
+ Type: Weapon
+ SubType: Staff
+ Weight: 1200
+ Attack: 250
+ MagicAttack: 350
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,5;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ bonus2 bMagicAtkEle,Ele_Ghost,15;
+ bonus2 bMagicAtkEle,Ele_Neutral,15;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SU_CN_METEOR",30;
+ }
+ - Id: 26165
+ AegisName: R_Cleric_Staff
+ Name: Royal Cleric Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 1000
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,5;
+ bonus bMatk,170;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"AB_ADORAMUS",20;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ }
+ - Id: 26166
+ AegisName: R_Magician_Wand
+ Name: Royal Magician Wand
+ Type: Weapon
+ SubType: Staff
+ Weight: 800
+ Attack: 80
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ bonus bMatk,180;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WL_HELLINFERNO",20;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",20;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ }
+ - Id: 26172
+ AegisName: R_Foxtail_rod
+ Name: Royal Foxtail
+ Type: Weapon
+ SubType: Staff
+ Weight: 1200
+ Attack: 275
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,5;
+ bonus bMatk,350;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SU_CN_METEOR",20;
+ bonus2 bSkillAtk,"SU_PICKYPECK",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 26200
+ AegisName: Hippie_Rope
+ Name: Hippie Rope
+ Type: Weapon
+ SubType: Whip
+ Weight: 1000
+ Attack: 140
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@lvl = getskilllv("WM_LESSON");
+ bonus bAspdRate,.@lvl;
+ if (.@r>=7)
+ bonus bBaseAtk,(5*.@lvl);
+ if (.@r>=9)
+ bonus bAspd,1;
+ - Id: 26212
+ AegisName: Heart_Whip
+ Name: Heart Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 1200
+ Attack: 100
+ MagicAttack: 190
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"WM_METALICSOUND",30;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ - Id: 26213
+ AegisName: Scarlet_Ribbon
+ Name: Scarlet Ribbon
+ Type: Weapon
+ SubType: Whip
+ Weight: 1200
+ Attack: 180
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-10;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9)
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ if (.@r>=11)
+ bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;
+ - Id: 26215
+ AegisName: Ein_1HWHIP
+ Name: Safety Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 1400
+ Attack: 200
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ }
+ - Id: 26216
+ AegisName: R_Wheep
+ Name: Royal Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 1000
+ Attack: 100
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus bMatk,180;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;
+ bonus2 bSkillAtk,"WM_METALICSOUND",20;
+ bonus2 bSkillAtk,"WM_REVERBERATION",20;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;
+ }
+ - Id: 28000
+ AegisName: Thanos_Katar
+ Name: Thanos Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 10
+ Weight: 1800
+ Attack: 220
+ MagicAttack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 28001
+ AegisName: Katar_Of_Evil_Slayer
+ Name: Evil Slayer Ripper Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1200
+ Attack: 120
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bAddRace,RC_Undead,10;
+ .@r = getrefine();
+ if (.@r>=9) {
+ .@dmg = 5;
+ if (.@r>=12) {
+ .@dmg += 7;
+ }
+ bonus2 bAddRace,RC_All,.@dmg;
+ }
+ - Id: 28002
+ AegisName: Half_BF_Katar2
+ Name: Half BF Katar2
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,1;
+ bonus bDex,1;
+ bonus bLuk,1;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus2 bAddRace,RC_Player_Human,35;
+ bonus bCritAtkRate,10;
+ bonus bAspdRate,3;
+ bonus bUnbreakableWeapon;
+ - Id: 28005
+ AegisName: Ru_Blue_Katar
+ Name: Blue Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 10
+ Weight: 1200
+ Attack: 190
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,5;
+ bonus bStr,5;
+ - Id: 28006
+ AegisName: Ru_Gold_Katar
+ Name: Ru Gold Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1200
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bAgi,8;
+ bonus bStr,8;
+ - Id: 28007
+ AegisName: Scarlet_Katar
+ Name: Crimson Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1300
+ Attack: 130
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ - Id: 28008
+ AegisName: Sinister_Katar
+ Name: Katar of Vicious Mind
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1800
+ Attack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ - Id: 28010
+ AegisName: Katar_170
+ Name: Juliette D. Rachel
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 2500
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,(.@r/2);
+ bonus bAspdRate,.@r;
+ bonus bUnbreakableWeapon;
+ - Id: 28011
+ AegisName: Unity_Katar
+ Name: Unity Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 650
+ Attack: 123
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 28015
+ AegisName: Toughen_Metal_Katar
+ Name: Enhanced Metal Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;
+ bonus bCritAtkRate,2*.@r;
+ bonus bAspdRate,2*.@r;
+ bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10));
+ - Id: 28022
+ AegisName: Infiltrator_IL
+ Name: Illusion Infiltrator
+ Type: Weapon
+ SubType: Katar
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,60;
+ bonus bDef,3;
+ .@flee = 5;
+ .@flee2 = 2;
+ if (getrefine() >= 9) {
+ .@flee += 5;
+ .@flee2 += 2;
+ bonus2 bAddClass,Class_All,5;
+ }
+ bonus bFlee,.@flee;
+ bonus bFlee2,.@flee2;
+ - Id: 28023
+ AegisName: Ghoul_Leg_IL
+ Name: Illusion Sharpened Legbone of Ghoul
+ Type: Weapon
+ SubType: Katar
+ Weight: 1700
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; specialeffect2 EF_POTION_BERSERK; /* todo replace by 3753 when implemented */ }";
+ - Id: 28024
+ AegisName: Probation_Katar
+ Name: Trial Guillotine Cross's Katar
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Attack: 180
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bAspdRate,getskilllv("AS_KATAR");
+ }
+ - Id: 28027
+ AegisName: Rebeginer_GC_Katar
+ Name: Beginner Guillotine Cross's Katar
+ Type: Weapon
+ SubType: Katar
+ Attack: 170
+ Range: 1
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus bCritAtkRate,7;
+ }
+ - Id: 28038
+ AegisName: Meuchler_OS
+ Name: Meuchler-OS
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1300
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ 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
+ Type: Weapon
+ SubType: Katar
+ Weight: 1200
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ 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 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
+ Type: Weapon
+ SubType: Katar
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bCritAtkRate,4*(.@r/3);
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Brute,35;
+ bonus2 bAddRace,RC_DemiHuman,35;
+ bonus bAspdRate,10;
+ }
+ else if (.@r>=7) {
+ bonus2 bAddRace,RC_Brute,15;
+ bonus2 bAddRace,RC_DemiHuman,15;
+ }
+ - Id: 28042
+ AegisName: Ripper_Cross
+ Name: Ripper Cross
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 1500
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 28044
+ AegisName: Agudo_Filo
+ Name: Agudo Filo
+ Type: Weapon
+ SubType: Katar
+ Buy: 20
+ Weight: 2000
+ Attack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritAtkRate,5;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,15;
+ if (.@r>=11) {
+ bonus bUnbreakableWeapon;
+ bonus2 bAddClass,Class_All,7;
+ }
+ - Id: 28045
+ AegisName: Ein_BHKATAR
+ Name: Bolt Crusher
+ Type: Weapon
+ SubType: Katar
+ Weight: 2000
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bBaseAtk,60;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;
+ autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 28046
+ AegisName: R_Katar
+ Name: Royal Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bBaseAtk,5*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 28100
+ AegisName: Thanos_Axe
+ Name: Thanos Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10
+ Weight: 4000
+ Attack: 300
+ MagicAttack: 80
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bInt,6;
+ bonus bVit,6;
+ bonus bLuk,-6;
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,5;
+ bonus2 bHPLossRate,100,10000;
+ UnEquipScript: |
+ heal -1000,0;
+ - Id: 28101
+ AegisName: Tornado_Axe
+ Name: Tornado Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 30000
+ Weight: 4000
+ Attack: 320
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ - Id: 28102
+ AegisName: Half_BF_Two_Handed_Axe1
+ Name: Half BF Two Handed Axe1
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bStr,3;
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ - Id: 28103
+ AegisName: Ru_Blue_Axe_M
+ Name: Blue Twohand Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10
+ Weight: 3000
+ Attack: 330
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ bonus bStr,5;
+ bonus bVit,5;
+ - Id: 28104
+ AegisName: Ru_Gold_Axe_M
+ Name: Ru Gold Axe M
+ Type: Weapon
+ SubType: 2hAxe
+ Weight: 3000
+ Attack: 330
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,8;
+ bonus bVit,8;
+ - Id: 28105
+ AegisName: Infinity_Axe
+ Name: Infinity Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10
+ Weight: 500
+ Attack: 265
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 28106
+ AegisName: Scarlet_Twohand_Axe
+ Name: Crimson Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bUnbreakableWeapon;
+ - Id: 28107
+ AegisName: Sinister_Twohand_Axe
+ Name: Two Handed Axe of Vicious Mind
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 2500
+ Attack: 250
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bUnbreakableWeapon;
+ - Id: 28110
+ AegisName: Unity_Two-Handed_Axe
+ Name: Unity Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 1000
+ Attack: 190
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 28113
+ AegisName: Toughen_Metal_THand_Axe
+ Name: Enhanced Metal Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"NC_AXETORNADO",10;
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,9*getrefine()+8*(min(BaseLevel,150)/10);
+ - Id: 28116
+ AegisName: Mine_Worker_Pickax
+ Name: Mine Worker's Pickaxe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 10
+ Weight: 4000
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus bCritical,20; }",50,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }";
+ .@r = getrefine();
+ if (.@r>=9) {
+ bonus bCritAtkRate,15;
+ } else if (.@r>=7) {
+ bonus bCritAtkRate,5;
+ }
+ - Id: 28120
+ AegisName: Probation_TH_Axe
+ Name: Trial Mechanic's Two-Handed Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Attack: 200
+ Range: 1
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"NC_AXETORNADO",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-100*getskilllv("BS_WEAPONRESEARCH");
+ }
+ - Id: 28130
+ AegisName: Avenger
+ Name: Avenger
+ Type: Weapon
+ SubType: 2hAxe
+ Weight: 6000
+ Attack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bBaseAtk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bSkillAtk,"NC_AXETORNADO",.@r/3*10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ }
+ - Id: 28136
+ AegisName: Blasti_OS
+ Name: Blasti-OS
+ Type: Weapon
+ SubType: 2hAxe
+ Buy: 20
+ Weight: 4500
+ Attack: 400
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@red = 10;
+ bonus bUnbreakableWeapon;
+ if (.@r >= 7) {
+ .@red += 15;
+ if (.@r >= 9) {
+ bonus bLongAtkRate,15;
+ if (.@r >= 11) {
+ bonus bDelayrate,-10;
+ }
+ }
+ }
+ bonus2 bSubSize,Size_Medium,.@red;
+ bonus2 bSubSize,Size_Large,.@red;
+ bonus2 bMagicSubSize,Size_Medium,.@red;
+ bonus2 bMagicSubSize,Size_Large,.@red;
+ - Id: 28137
+ AegisName: Evt_Avenger
+ Name: Sealed Avenger
+ Type: Weapon
+ SubType: 1hAxe
+ Attack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,10*(.@r/2);
+ bonus2 bSkillAtk,"NC_POWERSWING",10*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ }
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,15;
+ }
+ - Id: 28138
+ AegisName: Maxi_Spanner
+ Name: Maxi Spanner
+ Type: Weapon
+ SubType: 2hAxe
+ Weight: 4500
+ Attack: 340
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus bUnbreakableWeapon;
+ bonus2 bSubSize,Size_Small,10;
+ bonus2 bSubSize,Size_Medium,10;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000;
+ }
+ if (.@r>=11)
+ bonus2 bSkillAtk,"NC_AXETORNADO",15;
+ - Id: 28140
+ AegisName: Ein_BHAXE
+ Name: Saw Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 5000
+ Attack: 350
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"NC_ARMSCANNON",10;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bBaseAtk,60;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,5000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 28141
+ AegisName: G_Knight_BattleAxe
+ Name: Guardian Knight Battle Axe
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 5000
+ Attack: 270
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_Medium,10;
+ bonus2 bMagicSubSize,Size_Medium,10;
+ bonus2 bSubSize,Size_Large,10;
+ bonus2 bMagicSubSize,Size_Large,10;
+ bonus2 bAddClass,Class_All,5;
+ bonus bUnbreakableWeapon;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ bonus2 bSkillAtk,"NC_AXETORNADO",20;
+ bonus2 bSkillAtk,"NC_MAGMA_ERUPTION",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 28200
+ AegisName: END_OF_HORIZON
+ Name: End Of The Horizon
+ Type: Weapon
+ SubType: Grenade
+ Buy: 2700000
+ Weight: 2400
+ Attack: 410
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 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
+ Type: Weapon
+ SubType: Grenade
+ Buy: 2800000
+ Weight: 2000
+ Attack: 480
+ Range: 9
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 141
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,300;
+ bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1;
+ - Id: 28202
+ AegisName: Southern_Cross_R_
+ Name: Southern Cross
+ Type: Weapon
+ SubType: Grenade
+ Buy: 2800000
+ Weight: 2000
+ Attack: 480
+ Range: 9
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 141
+ Refineable: true
+ Script: |
+ bonus2 bAddEff,Eff_Curse,300;
+ bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1;
+ - Id: 28203
+ AegisName: Half_BF_Rifle1
+ Name: Half BF Rifle1
+ Type: Weapon
+ SubType: Rifle
+ Attack: 50
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,8;
+ bonus bCritical,8;
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bVariableCastrate,"GS_TRACKING",-20;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ bonus bUnbreakableWeapon;
+ - Id: 28204
+ AegisName: Half_BF_Shotgun1
+ Name: Half BF Shotgun1
+ Type: Weapon
+ SubType: Shotgun
+ Attack: 100
+ Range: 9
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 80
+ Refineable: true
+ Script: |
+ bonus bDex,2;
+ bonus bSplashRange,1;
+ bonus2 bAddRace,RC_DemiHuman,30;
+ bonus2 bAddRace,RC_Player_Human,30;
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,10;
+ autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";
+ bonus bUnbreakableWeapon;
+ - Id: 28215
+ AegisName: Probation_Rifle
+ Name: Trial Rebel's Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Attack: 200
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,10;
+ bonus bCritical,20;
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20;
+ bonus bBaseAtk,((min(BaseLevel,160)/10)*6);
+ if (getrefine()>6) {
+ bonus bLongAtkRate,getskilllv("GS_TRACKING");
+ }
+ - Id: 28216
+ AegisName: Probation_Gatling_Gun
+ Name: Trial Rebel's Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Buy: 20
+ Attack: 180
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHit,-20;
+ bonus bCritical,10;
+ bonus bAspd,1;
+ bonus2 bSkillAtk,"RL_FIRE_RAIN",20;
+ bonus bBaseAtk,((min(BaseLevel,160)/10)*6);
+ if (getrefine()>6) {
+ bonus bLongAtkRate,getskilllv("GS_GATLINGFEVER");
+ }
+ - Id: 28217
+ AegisName: Probation_Launcher
+ Name: Trial Rebel's Grenade Launcher
+ Type: Weapon
+ SubType: Grenade
+ Buy: 20
+ Attack: 350
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"RL_D_TAIL",20;
+ bonus bBaseAtk,((min(BaseLevel,160)/10)*6);
+ if (getrefine()>6) {
+ bonus bLongAtkRate,getskilllv("GS_GROUNDDRIFT");
+ }
+ - Id: 28218
+ AegisName: Probation_Shotgun
+ Name: Trial Rebel's Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 20
+ Attack: 180
+ Range: 9
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bSplashRange,1;
+ bonus bHit,-15;
+ bonus2 bSkillAtk,"RL_S_STORM",20;
+ bonus bBaseAtk,((min(BaseLevel,160)/10)*6);
+ if (getrefine()>6) {
+ bonus bLongAtkRate,getskilllv("GS_DUST");
+ }
+ - Id: 28223
+ AegisName: Just_Finish
+ Name: Finisher
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 2000
+ Attack: 200
+ Range: 9
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ if (.@r >= 7) {
+ bonus2 bSkillAtk,"RL_AM_BLAST",30;
+ bonus2 bSkillAtk,"RL_MASS_SPIRAL",30;
+ if (.@r >= 9) {
+ bonus2 bSkillCooldown,"RL_AM_BLAST",-1000;
+ }
+ }
+ - Id: 28224
+ AegisName: Dust_Fire
+ Name: Dustfire
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 20
+ Weight: 1300
+ Attack: 300
+ Range: 9
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSplashRange,1;
+ bonus3 bAddEff,Eff_Blind,50,ATF_LONG;
+ if (.@r >= 7) {
+ bonus2 bSkillAtk,"RL_S_STORM",15;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15;
+ }
+ }
+ - Id: 28225
+ AegisName: Burning_Rose
+ Name: Burning Rose
+ Type: Weapon
+ SubType: Gatling
+ Buy: 20
+ Weight: 2500
+ Attack: 200
+ Range: 9
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ 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;
+ }
+ }
+ - Id: 28226
+ AegisName: Revenger
+ Name: Avenger
+ Type: Weapon
+ SubType: Grenade
+ Buy: 20
+ Weight: 1800
+ Attack: 350
+ Range: 9
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 3
+ 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;
+ }
+ }
+ - Id: 28240
+ AegisName: Calf_Kingcobra
+ Name: Calf Kingcobra
+ Type: Weapon
+ SubType: Rifle
+ Weight: 900
+ Attack: 230
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,10 + (.@r > 6 ? 5 : 0);
+ bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0);
+ if (.@r > 8) {
+ bonus bCritAtkRate,15;
+ }
+ - Id: 28241
+ AegisName: Calf_Diamondback
+ Name: Calf Diamondback
+ Type: Weapon
+ SubType: Gatling
+ Weight: 3000
+ Attack: 220
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,2;
+ 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
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 10
+ Weight: 1400
+ Attack: 305
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSplashRange,1;
+ bonus bMaxSPrate,2;
+ bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0);
+ if (.@r > 6) {
+ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20;
+ }
+ if (.@r > 11) {
+ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15;
+ }
+ - Id: 28243
+ AegisName: Calf_Python
+ Name: Calf Python
+ Type: Weapon
+ SubType: Grenade
+ Buy: 10
+ Weight: 2000
+ Attack: 360
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,2;
+ 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
+ Type: Weapon
+ SubType: Shotgun
+ Weight: 1300
+ Attack: 240
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bDex,1;
+ bonus bSplashRange,1;
+ .@val = 5*(.@r/2);
+ if (.@r >= 7) {
+ bonus bAspdRate,15;
+ if (.@r >= 9) {
+ .@val += 5;
+ if (.@r >= 11) {
+ bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1;
+ }
+ }
+ }
+ bonus bLongAtkRate,.@val;
+ - Id: 28253
+ AegisName: HR_S55_OS
+ Name: HR-S55-OS
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 1000
+ Attack: 250
+ Range: 9
+ Slots: 2
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ }
+ }
+ - Id: 28254
+ AegisName: Illusion_Butcher
+ Name: Illusion Butcher
+ Type: Weapon
+ SubType: Gatling
+ Buy: 20
+ Weight: 2500
+ Attack: 210
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,2*(readparam(bStr)/15);
+ bonus bBaseAtk,10*.@r;
+ if (.@r >= 7) {
+ bonus2 bSkillAtk,"RL_FIRE_RAIN",20;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"RL_R_TRIP",15;
+ if (.@r >= 11) {
+ bonus2 bAddRace,RC_Brute,30;
+ bonus2 bAddRace,RC_Player_Doram,30;
+ bonus2 bAddRace,RC_Demon,30;
+ }
+ }
+ }
+ - Id: 28255
+ AegisName: Master_Soul_Rifle
+ Name: Master Soul Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ MagicAttack: 210
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/3);
+ bonus bAspdRate,3*(.@r/3);
+ if (.@r >= 7) {
+ bonus bAspd,1;
+ bonus bMatkRate,5;
+ if (.@r >= 9) {
+ .@chance = 1;
+ /* unknown rate*/
+ if (.@r >= 11) {
+ .@chance += 1;
+ bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1;
+ }
+ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1;
+ }
+ }
+ - Id: 28256
+ AegisName: Demon_S_Shot
+ Name: Demon Slayer Shot
+ Type: Weapon
+ SubType: Shotgun
+ Buy: 20
+ Weight: 1400
+ Attack: 275
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSplashRange,1;
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bMaxSPrate,2*(.@r/3);
+ if (.@r >= 7) {
+ bonus2 bAddClass,Class_Boss,10;
+ if (.@r >= 9) {
+ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER";
+ if (.@r >= 11) {
+ bonus2 bAddRace,RC_Undead,15;
+ bonus2 bAddRace,RC_Demon,15;
+ }
+ }
+ }
+ - Id: 28257
+ AegisName: Golden_L_Launcher
+ Name: Golden Lord Launcher
+ Type: Weapon
+ SubType: Grenade
+ Buy: 20
+ Weight: 2100
+ Attack: 320
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bBaseAtk,15*(.@r/3);
+ if (.@r >= 7) {
+ .@val = 15;
+ if (.@r >= 9) {
+ bonus2 bSkillCooldown,"RL_D_TAIL",-1000;
+ if (.@r >= 11) {
+ .@val += 15;
+ }
+ }
+ bonus2 bSkillAtk,"RL_D_TAIL",.@val;
+ }
+ - Id: 28258
+ AegisName: The_Black_Gatling
+ Name: The Black
+ Type: Weapon
+ SubType: Gatling
+ Buy: 20
+ Weight: 2700
+ Attack: 205
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,2*(.@r/3);
+ bonus bBaseAtk,10*(.@r/2);
+ if (.@r >= 7) {
+ .@val = 15;
+ bonus2 bSkillUseSPrate,"RL_R_TRIP",-10;
+ if (.@r >= 9) {
+ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER";
+ if (.@r >= 11) {
+ .@val += 15;
+ }
+ }
+ bonus2 bSkillAtk,"RL_R_TRIP",.@val;
+ }
+ - Id: 28302
+ AegisName: Vesper_Core01_
+ Name: Vesper Core 01
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bInt,2;
+ bonus bMaxSPrate,5;
+ - Id: 28303
+ AegisName: Vesper_Core02_
+ Name: Vesper Core 02
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bStr,3;
+ bonus bBaseAtk,10;
+ - Id: 28304
+ AegisName: Vesper_Core03_
+ Name: Vesper Core 03
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bAgi,3;
+ bonus bFlee,5;
+ - Id: 28305
+ AegisName: Vesper_Core04_
+ Name: Vesper Core 04
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ Knight: true
+ Monk: true
+ Priest: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Wizard: true
+ Classes:
+ All_Upper: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bMdef,3;
+ bonus bDex,3;
+ bonus bHit,10;
+ - Id: 28306
+ AegisName: Bless_Of_Moon
+ Name: Luna's Blessing
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 5
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAllStats,1;
+ bonus bMdef,2;
+ bonus3 bAutoSpell,"CG_TAROTCARD",5,100;
+ - Id: 28310
+ AegisName: Earring_Of_Sarah_L
+ Name: Sarah's Left Earring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "AL_HEAL",1;
+ - Id: 28311
+ AegisName: Earring_Of_Sarah_R
+ Name: Sarah's Right Earring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skill "AL_TELEPORT",1;
+ - Id: 28315
+ AegisName: RCC2013_ARMLET
+ Name: RCC2013_ARMLET
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 28316
+ AegisName: RCC2013_ARMLET_
+ Name: RCC2013_ARMLET_
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 28317
+ AegisName: RCC2013_RING
+ Name: RCC2013_RING
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 28318
+ AegisName: RCC2013_RING_
+ Name: RCC2013_RING_
+ Type: Armor
+ Buy: 200
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 28320
+ AegisName: Assassin_Acc
+ Name: Assassin's Despair
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bAspd,1;
+ - Id: 28321
+ AegisName: Falconer_Claw
+ Name: Falconer Claw
+ Type: Armor
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bDex,1;
+ bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10;
+ - Id: 28322
+ AegisName: Falconer_Glove
+ Name: Falconer Glove
+ Type: Armor
+ Weight: 100
+ Defense: 5
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bDex,1;
+ bonus bUseSPrate,-5;
+ - Id: 28326
+ AegisName: Broken_Chip_1
+ Name: Broken Chips 01
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bStr,4;
+ - Id: 28327
+ AegisName: Broken_Chip_2
+ Name: Broken Chips 02
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bInt,4;
+ - Id: 28332
+ AegisName: Jewel_Ring
+ Name: Jewerly Ring
+ Type: Armor
+ Buy: 10
+ Weight: 100
+ Locations:
+ 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; }";
+ - Id: 28333
+ AegisName: Gold_PC_Room_Ring
+ Name: Gold PC Room Ring
+ Type: Armor
+ Buy: 10
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ - Id: 28342
+ AegisName: Critical_Anklet
+ Name: Critical Anklet
+ Type: Armor
+ Weight: 200
+ Defense: 3
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bCritical,5;
+ bonus bMdef,3;
+ - Id: 28352
+ AegisName: Vesper_Gear_01
+ Name: Vesper Gear 01
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus bMatkRate,5;
+ - Id: 28353
+ AegisName: VesperGear2
+ Name: Vesper Gear 02
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus2 bAddClass,Class_All,5;
+ - Id: 28354
+ AegisName: DowntownMap_
+ Name: City Map
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ skill "AL_INCAGI",3;
+ - Id: 28355
+ AegisName: ShiningHolyWater_
+ Name: Shining Holy Water
+ Type: Armor
+ Weight: 150
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bHPRegenRate,100,10000;
+ bonus2 bSPRegenRate,5,10000;
+ bonus2 bAddDefMonster,3445,20;
+ bonus2 bAddDefMonster,3446,20;
+ bonus2 bAddDefMonster,3447,20;
+ bonus2 bAddDefMonster,3448,20;
+ bonus2 bAddDefMonster,3449,20;
+ bonus2 bAddDefMonster,3450,20;
+ bonus2 bAddDefMonster,3451,20;
+ bonus2 bAddDefMonster,3452,20;
+ - Id: 28356
+ AegisName: BadgeOfProntera_
+ Name: Prontera Badge
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 40
+ Delay:
+ Duration: 900000
+ Script: |
+ skill "ALL_PRONTERA_RECALL",2;
+ - Id: 28357
+ AegisName: Vesper_Gear_03
+ Name: Vesper Gear 03
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus bFlee,10;
+ - Id: 28358
+ AegisName: Cursed_Lucky_Clover
+ Name: Cursed Lucky Clover
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bLuk,2;
+ bonus bFlee2,3;
+ bonus2 bAddEff2,Eff_Curse,50;
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ /*FIXME: Because the combo has Cloaking skill*/
+ - Id: 28359
+ AegisName: VesperGear4
+ Name: Vesper Gear 04
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMdef,3;
+ bonus bHit,10;
+ - Id: 28370
+ AegisName: Broken_Chip_Green
+ Name: Broken Chip (Green)
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bDelayrate,-5;
+ - Id: 28371
+ AegisName: Broken_Chip_Red
+ Name: Broken Chip (Red)
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bMagicAddClass,Class_All,5;
+ bonus bVariableCastrate,-10;
+ - Id: 28372
+ AegisName: Imperial_Ring
+ Name: Imperial Ring
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bStr,1;
+ bonus bInt,1;
+ bonus bMaxHPRate,3;
+ bonus bMaxSPRate,3;
+ - Id: 28374
+ AegisName: Foxtail_Ring
+ Name: Foxtail Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddRace,RC_All,5;
+ .@lvl = min(BaseLevel/5,10);
+ bonus bBaseAtk,2*.@lvl;
+ bonus bMatk,2*.@lvl;
+ bonus bMaxHP,10*.@lvl;
+ bonus bMaxSP,5*.@lvl;
+ - Id: 28377
+ AegisName: Magical_Ring
+ Name: Magical Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ bonus2 bMagicAtkEle,Ele_Earth,5;
+ bonus2 bMagicAtkEle,Ele_Wind,5;
+ if (BaseLevel > 4) {
+ bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5;
+ bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5;
+ }
+ - Id: 28379
+ AegisName: Shadow_Ring
+ Name: Shadow Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ .@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_G_Necklace
+ Name: Fresh Grass Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bFlee2,5;
+ bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000;
+ - Id: 28381
+ AegisName: Pretty_G_Necklace
+ Name: Cute Grass Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bHealPower,5;
+ bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000;
+ - Id: 28382
+ AegisName: Charm_G_Necklace
+ Name: Charm Grass Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,5;
+ bonus2 bVariableCastrate,"SU_CN_METEOR",-1000;
+ - Id: 28386
+ AegisName: Fallen_Monk_Rosary
+ Name: Fallen Monk Rosary
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ bonus bAspdRate,5;
+ bonus bCritical,5;
+ bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5;
+ if (BaseLevel > 14)
+ bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15;
+ if (BaseLevel > 19)
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20;
+ if (BaseLevel > 29)
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30;
+ - Id: 28387
+ AegisName: Bishop_Necklace
+ Name: Fuze Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ - Id: 28391
+ AegisName: S_Thief_earring
+ Name: Thief Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 28392
+ AegisName: S_Archer_earring
+ Name: Archer Shadow Earring
+ Type: Shadowgear
+ Locations:
+ Shadow_Right_Accessory: true
+ EquipLevelMin: 1
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,.@r*10;
+ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 28394
+ AegisName: King_of_Spirit_Ring
+ Name: Spirit King's Ring
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bVit,5;
+ bonus bDelayrate,-5;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",(BaseLevel/8);
+ bonus2 bSkillCooldown,"SO_DIAMONDDUST",-2000;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",(BaseLevel/8);
+ bonus2 bSkillCooldown,"SO_EARTHGRAVE",-2000;
+ bonus2 bSkillVariableCast,"SO_VARETYR_SPEAR",-1500;
+ bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-500;
+ bonus2 bVariableCastrate,"SO_WARMER",-50;
+ bonus2 bFixedCastrate,"SO_WARMER",-50;
+ bonus2 bSkillCooldown,"SO_WARMER",-15000;
+ - Id: 28410
+ AegisName: Sapphire_Wrist
+ Name: Sapphire Wrist
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bDex,5;
+ bonus bLuk,5;
+ bonus bInt,5;
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5;
+ bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4);
+ .@n = getskilllv("CR_SLIMPITCHER");
+ bonus bDex,.@n/2;
+ bonus bLuk,.@n/2;
+ bonus bInt,.@n/2;
+ bonus bMatk,(.@n/2)*20;
+ - Id: 28411
+ AegisName: Emerald_Earring
+ Name: Emerald Earring
+ Type: Armor
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28412
+ AegisName: The_One_Apple_Ring
+ Name: Green Apple Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,20;
+ - Id: 28413
+ AegisName: LowSaurelCharm
+ Name: Lesser Mackerel Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,1;
+ - Id: 28414
+ AegisName: MiddleSaurelCharm
+ Name: Intermediate Mackerel Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 140
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ - Id: 28415
+ AegisName: HigherSaurelCharm
+ Name: Greater Mackerel Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 175
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,3;
+ - Id: 28416
+ AegisName: LowLeafCharm
+ Name: Lesser Leaf Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ - Id: 28417
+ AegisName: MiddleLeafCharm
+ Name: Intermediate Leaf Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 140
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 28418
+ AegisName: HigherLeafCharm
+ Name: Greater Leaf Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 175
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ - Id: 28419
+ AegisName: LowRabbitCharm
+ Name: Lesser Rabbit Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,1;
+ - Id: 28420
+ AegisName: MiddleRabbitCharm
+ Name: Intermediate Rabbit Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 140
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ - Id: 28421
+ AegisName: HigherRabbitCharm
+ Name: Greater Rabbit Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 175
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ - Id: 28422
+ AegisName: ShiningTwigCharm
+ Name: Shiny Branch Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50;
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/6)*getskilllv("SU_SV_STEMSPEAR");
+ - Id: 28423
+ AegisName: FreshTunaCharm
+ Name: Fresh Tuna Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000;
+ bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10;
+ - Id: 28424
+ AegisName: PlumpyWormCharm
+ Name: Chubby Worm Talisman
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bVariableCastrate,"SU_PICKYPECK",-50;
+ bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/6)*getskilllv("SU_PICKYPECK");
+ - Id: 28425
+ AegisName: Mercenary_Ring_A
+ Name: Mercenary Ring Type A
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bVit,3;
+ if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) {
+ bonus bMaxHP,1000;
+ bonus bMaxSP,200;
+ }
+ - Id: 28426
+ AegisName: Mercenary_Ring_B
+ Name: Mercenary Ring Type B
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bInt,3;
+ if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) {
+ bonus bVariableCastrate,-30;
+ }
+ - Id: 28429
+ AegisName: Arquien's_Necklace
+ Name: Arquien's Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ 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,150;
+ bonus2 bAddItemHealRate,529,100;
+ bonus2 bAddItemHealRate,530,100;
+ - Id: 28430
+ AegisName: Archpriest_Ring
+ Name: Arch Bishop Ring
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ 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;
+ }
+ - Id: 28434
+ AegisName: Boxer_Glove
+ Name: Fist Fighter's Glove
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bStr,2;
+ bonus bMaxSP,100;
+ bonus2 bAddRace,RC_All,2;
+ skill "MO_ABSORBSPIRITS",1;
+ if (readparam(bStr)>99)
+ bonus2 bAddRace,RC_All,5;
+ - Id: 28437
+ AegisName: ArchPriest_Glove
+ Name: Hibram's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28438
+ AegisName: Fairy_Leaf_Powder
+ Name: Fairy Leaf Powder
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28439
+ AegisName: Sea_Otter_Mini_Fan
+ Name: Sea Otter Mini Fan
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus bAllStats,1;
+ bonus2 bExpAddClass,Class_All,5;
+ - Id: 28440
+ AegisName: FurSeal_Fan
+ Name: Seal Mini Fan
+ Type: Armor
+ Buy: 3000000
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,5;
+ bonus bAllStats,1;
+ - Id: 28441
+ AegisName: Vigilante_Bedge
+ Name: Vigilante Badge
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bFlee,10;
+ bonus bLongAtkRate,5;
+ - Id: 28442
+ AegisName: Hippie_Feather
+ Name: Hippie Feather
+ Type: Armor
+ Weight: 200
+ Defense: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bCritical,5;
+ bonus bFlee,5;
+ - Id: 28443
+ AegisName: Para_Team_Str_Ring100
+ Name: Awakened Eden Group Ring of Strength I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ - Id: 28444
+ AegisName: Para_Team_Str_Necklace100
+ Name: Awakened Eden Group Necklace of Strength I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,1;
+ - Id: 28445
+ AegisName: Para_Team_Str_Ring115
+ Name: Awakened Eden Group Ring of Strength II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ - Id: 28446
+ AegisName: Para_Team_Str_Necklace115
+ Name: Awakened Eden Group Necklace of Strength II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,2;
+ - Id: 28447
+ AegisName: Para_Team_Str_Ring130
+ Name: Awakened Eden Group Ring of Strength III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ - Id: 28448
+ AegisName: Para_Team_Str_Necklace130
+ Name: Awakened Eden Group Necklace of Strength III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,3;
+ - Id: 28449
+ AegisName: Para_Team_Str_Ring145
+ Name: Awakened Eden Group Ring of Strength IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 28450
+ AegisName: Para_Team_Str_Necklace145
+ Name: Awakened Eden Group Necklace of Strength IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,4;
+ - Id: 28451
+ AegisName: Para_Team_Str_Ring160
+ Name: Awakened Eden Group Ring of Strength V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ skill "AL_HEAL",1;
+ - Id: 28452
+ AegisName: Para_Team_Str_Necklace160
+ Name: Awakened Eden Group Necklace of Strength V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bStr,4;
+ skill "AL_TELEPORT",1;
+ - Id: 28453
+ AegisName: Para_Team_Magic_Ring100
+ Name: Awakened Eden Group Ring of Magic I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,2;
+ - Id: 28454
+ AegisName: Para_Team_Magic_Necklace100
+ Name: Awakened Eden Group Necklace of Magic I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,1;
+ - Id: 28455
+ AegisName: Para_Team_Magic_Ring115
+ Name: Awakened Eden Group Ring of Magic II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,3;
+ - Id: 28456
+ AegisName: Para_Team_Magic_Necklace115
+ Name: Awakened Eden Group Necklace of Magic II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,2;
+ - Id: 28457
+ AegisName: Para_Team_Magic_Ring130
+ Name: Awakened Eden Group Ring of Magic III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,4;
+ - Id: 28458
+ AegisName: Para_Team_Magic_Necklace130
+ Name: Awakened Eden Group Necklace of Magic III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,3;
+ - Id: 28459
+ AegisName: Para_Team_Magic_Ring145
+ Name: Awakened Eden Group Ring of Magic IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 28460
+ AegisName: Para_Team_Magic_Necklace145
+ Name: Awakened Eden Group Necklace of Magic IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ - Id: 28461
+ AegisName: Para_Team_Magic_Ring160
+ Name: Awakened Eden Group Ring of Magic V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,5;
+ skill "AL_HEAL",1;
+ - Id: 28462
+ AegisName: Para_Team_Magic_Necklace160
+ Name: Awakened Eden Group Necklace of Magic V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bInt,4;
+ skill "AL_TELEPORT",1;
+ - Id: 28463
+ AegisName: Para_Team_Agi_Ring100
+ Name: Awakened Eden Group Ring of Agility I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,1;
+ - Id: 28464
+ AegisName: Para_Team_Agi_Necklace100
+ Name: Awakened Eden Group Necklace of Agility I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,1;
+ - Id: 28465
+ AegisName: Para_Team_Agi_Ring115
+ Name: Awakened Eden Group Ring of Agility II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,2;
+ - Id: 28466
+ AegisName: Para_Team_Agi_Necklace115
+ Name: Awakened Eden Group Necklace of Agility II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,2;
+ - Id: 28467
+ AegisName: Para_Team_Agi_Ring130
+ Name: Awakened Eden Group Ring of Agility III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 28468
+ AegisName: Para_Team_Agi_Necklace130
+ Name: Awakened Eden Group Necklace of Agility III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,3;
+ - Id: 28469
+ AegisName: Para_Team_Agi_Ring145
+ Name: Awakened Eden Group Ring of Agility IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,4;
+ - Id: 28470
+ AegisName: Para_Team_Agi_Necklace145
+ Name: Awakened Eden Group Necklace of Agility IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ - Id: 28471
+ AegisName: Para_Team_Agi_Ring160
+ Name: Awakened Eden Group Ring of Agility V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bLongAtkRate,4;
+ skill "AL_HEAL",1;
+ - Id: 28472
+ AegisName: Para_Team_Agi_Necklace160
+ Name: Awakened Eden Group Necklace of Agility V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDex,4;
+ skill "AL_TELEPORT",1;
+ - Id: 28473
+ AegisName: Para_Team_Ring100D
+ Name: Eden Group Ring of Recovery I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,2;
+ - Id: 28474
+ AegisName: Para_Team_Necklace100D
+ Name: Eden Group Necklace of Recovery I
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,1;
+ - Id: 28475
+ AegisName: Para_Team_Ring115D
+ Name: Eden Group Ring of Recovery II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,3;
+ - Id: 28476
+ AegisName: Para_Team_Necklace115D
+ Name: Eden Group Necklace of Recovery II
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 115
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,2;
+ - Id: 28477
+ AegisName: Para_Team_Ring130D
+ Name: Eden Group Ring of Recovery III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,4;
+ - Id: 28478
+ AegisName: Para_Team_Necklace130D
+ Name: Eden Group Necklace of Recovery III
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,3;
+ - Id: 28479
+ AegisName: Para_Team_Ring145D
+ Name: Eden Group Ring of Recovery IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,5;
+ - Id: 28480
+ AegisName: Para_Team_Necklace145D
+ Name: Eden Group Necklace of Recovery IV
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 145
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,4;
+ - Id: 28481
+ AegisName: Para_Team_Ring160D
+ Name: Eden Group Ring of Recovery V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bHealPower,5;
+ skill "AL_HEAL",1;
+ - Id: 28482
+ AegisName: Para_Team_Necklace160D
+ Name: Eden Group Necklace of Recovery V
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVit,4;
+ skill "AL_TELEPORT",1;
+ - Id: 28483
+ AegisName: Royal_Guardian_Ring
+ Name: Royal Guardian Ring
+ Type: Armor
+ Weight: 10
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Script: |
+ .@b = min(BaseLevel/25,7);
+ bonus bMaxHPrate,.@b;
+ bonus bMaxSPrate,.@b;
+ - Id: 28484
+ AegisName: Scarf_Of_Rebellion
+ Name: Rebel Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ .@M = getskilllv("RL_MASS_SPIRAL");
+ .@F = getskilllv("RL_FIRE_RAIN");
+ .@S = getskilllv("RL_S_STORM");
+ .@D = getskilllv("RL_D_TAIL");
+ .@E = getskilllv("RL_E_CHAIN");
+ 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
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ 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");
+ - Id: 28491
+ AegisName: Matagi_Swordaxe
+ Name: Hunting Knife
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ 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;
+ }
+ - Id: 28492
+ AegisName: Tip_Of_Thief_Vol1
+ Name: Thieve's Guide Vol.1
+ Type: Armor
+ Buy: 20
+ Weight: 10
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bStr,5;
+ bonus bAgi,5;
+ bonus bInt,5;
+ if (getskilllv("SC_ENERVATION")>2)
+ skill "SN_WINDWALK",5;
+ if (getskilllv("SC_GROOMY")>2)
+ skill "HP_ASSUMPTIO",5;
+ if (getskilllv("SC_IGNORANCE")>2)
+ skill "WS_OVERTHRUSTMAX",5;
+ if (getskilllv("SC_LAZINESS")>2)
+ skill "ASC_METEORASSAULT",5;
+ if (getskilllv("SC_UNLUCKY")>2)
+ skill "LK_BERSERK",1;
+ if (getskilllv("SC_WEAKNESS")>2)
+ skill "HW_MAGICPOWER",5;
+ if (getskilllv("RG_GRAFFITI")>0) {
+ bonus bStr,5;
+ bonus bAgi,5;
+ bonus bInt,5;
+ }
+ - Id: 28495
+ AegisName: Badge_Of_Vigilante1
+ Name: Sheriff's Left Badge
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 28496
+ AegisName: Badge_Of_Vigilante2
+ Name: Sheriff's Right Badge
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (readparam(bVit) > 89)
+ bonus bMaxHP,1000;
+ if (readparam(bInt) > 89)
+ bonus bMatkRate,3;
+ if (readparam(bDex) > 89)
+ bonus bVariableCastrate,-5;
+ - Id: 28499
+ AegisName: Proof_of_Glory
+ Name: Proof of Glory
+ Type: Armor
+ Weight: 100
+ Locations:
+ 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;
+ }
+ - Id: 28500
+ AegisName: Zealous_Necklace
+ Name: Zealous Necklace
+ Type: Armor
+ Buy: 20
+ Weight: 200
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ - Id: 28501
+ AegisName: Horn_Of_Kirin
+ Name: Horn of Kirin
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 3
+ Slots: 1
+ Locations:
+ 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;
+ }
+ - Id: 28502
+ AegisName: Mob_Scarf
+ Name: Mob Scarf
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 100
+ View: 1568
+ Script: |
+ skill "SA_SPELLBREAKER",2;
+ - Id: 28503
+ AegisName: Keraunos
+ Name: Keraunos
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus2 bAddClass,Class_All,5;
+ bonus bAspdRate,5;
+ bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20);
+ bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15);
+ bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000;
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5;
+ - Id: 28506
+ AegisName: StormStone
+ Name: Storm Stone
+ Type: Armor
+ Buy: 30000
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 90
+ Script: |
+ bonus bMaxSPrate,5;
+ bonus bAspdRate,5;
+ bonus2 bAddClass,Class_All,5;
+ - Id: 28507
+ AegisName: Glove_Of_Wizard
+ Name: Magician's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28508
+ AegisName: Skul_Ring_IL
+ Name: Illusion Skull Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bAddEff,Eff_Curse,5000;
+ bonus2 bAddEff2,Eff_Curse,5000;
+ - Id: 28509
+ AegisName: Ring_IL
+ Name: Illusion Ring
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ SuperNovice: false
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bStr,3;
+ if (readparam(bStr) >= 100) {
+ bonus bBaseAtk,30;
+ }
+ - Id: 28510
+ AegisName: Vampire's_Servant
+ Name: A Vampire's Servant
+ Type: Armor
+ Weight: 100
+ Defense: 1
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bSPDrainRate,10,1;
+ - Id: 28511
+ AegisName: Time_Keeper_Ring
+ Name: Time Keeper Ring
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMaxHP,50+15*(BaseLevel/2);
+ - Id: 28513
+ AegisName: Celine_Brooch
+ Name: Celine's Brooch
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,250;
+ bonus bMatkRate,5;
+ bonus bAspd,1;
+ bonus bVariableCastrate,-10;
+ - Id: 28514
+ AegisName: Bless_Flower_Ring
+ Name: Flower Ring of Benediction
+ Type: Armor
+ Weight: 100
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 28520
+ AegisName: EgirRing
+ Name: Egir Ring
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28521
+ AegisName: Giant_Protection
+ Name: Giant's Protection
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ if (readparam(bStr)>=120) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bBaseAtk,50;
+ }
+ - Id: 28522
+ AegisName: Ring_Of_Fallen
+ Name: Ring of The Fallen
+ Type: Armor
+ Buy: 10
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bDex,1;
+ bonus bMaxHP,200;
+ - Id: 28523
+ AegisName: Ring_Of_Disaster
+ Name: Ring of Calamity
+ Type: Armor
+ Buy: 10
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 10
+ Script: |
+ bonus bDex,1;
+ bonus bMaxSP,150;
+ - Id: 28531
+ AegisName: Glove_Of_Smith
+ Name: Blacksmith's Gloves
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bDelayrate,-10;
+ bonus2 bAddClass,Class_Boss,5;
+ bonus2 bIgnoreDefRaceRate,RC_All,50;
+ - Id: 28533
+ AegisName: ChemicalGlove
+ Name: Chemical Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 20
+ Script: |
+ .@s = getskilllv("GN_REMODELING_CART");
+ bonus bHit,20;
+ bonus bAspdRate,5+.@s;
+ bonus bBaseAtk,15*.@s;
+ bonus bMaxHPrate,2*.@s;
+ bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s;
+ bonus2 bAddItemHealRate,501,100;
+ bonus2 bAddItemHealRate,502,100;
+ bonus2 bAddItemHealRate,503,100;
+ bonus2 bAddItemHealRate,504,100;
+ bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel;
+ bonus2 bSkillAtk,"GN_CARTCANNON",2*(Baselevel/20);
+ bonus2 bSkillAtk,"GN_CART_TORNADO",2*(Baselevel/30);
+ - Id: 28534
+ AegisName: RKC_2017_Pendant
+ Name: RKC Participant Memorial Ring
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUseSPrate,-3;
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-5;
+ bonus2 bAddClass,Class_All,3;
+ bonus bMatkRate,3;
+ bonus2 bHPDrainRate,10,3;
+ autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,5000,BF_MAGIC;
+ - Id: 28535
+ AegisName: RKC_2017_Ring
+ Name: RKC Winner Memorial Ring
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bUseSPrate,-7;
+ bonus bLongAtkRate,3;
+ bonus bCritAtkRate,3;
+ bonus2 bMagicAtkEle,Ele_All,3;
+ bonus2 bSPDrainRate,10,1;
+ autobonus "{ bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC;
+ - Id: 28551
+ AegisName: Imperial_Glove
+ Name: Imperial Glove
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ 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: True_Hunting_Ring1
+ Name: True Hunting Physical Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bAspdRate,7;
+ - Id: 28563
+ AegisName: True_Hunting_Ring2
+ Name: True Hunting Magical Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 50
+ Script: |
+ bonus bVariableCastrate,-7;
+ - Id: 28564
+ AegisName: Valkyrie_Drop
+ Name: Valkyrie Drop
+ Type: Armor
+ Buy: 20
+ Weight: 30
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ 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;
+ - Id: 28565
+ AegisName: Perverse_Demon_Mask
+ Name: Perverse Demon Mask
+ Type: Armor
+ Buy: 20
+ Weight: 60
+ Slots: 1
+ Locations:
+ 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 bIgnoreMdefRaceRate,RC_All,15*(.@s/18);
+ - Id: 28566
+ AegisName: Beginner's_Ring
+ Name: Beginner's Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ - Id: 28573
+ AegisName: Emerald_Ring
+ Name: Emerald Ring
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28575
+ AegisName: Verus_Core
+ Name: Verus Core
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 80
+ Script: |
+ bonus bAspdRate,10;
+ bonus2 bAddEle,Ele_All,5;
+ bonus bPerfectHitAddRate,20;
+ - Id: 28594
+ AegisName: Temporal_Ring
+ Name: Temporal Ring
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bBaseAtk,50;
+ bonus bMatk,50;
+ - Id: 28598
+ AegisName: Supplement_Part_Chip
+ Name: Powered Chip
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 28600
+ AegisName: Ru_Blue_Book
+ Name: Blue Book
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 500
+ Attack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAgi,5;
+ bonus bDex,5;
+ - Id: 28601
+ AegisName: Ru_Gold_Book
+ Name: Ru Gold Book
+ Type: Weapon
+ SubType: Book
+ Weight: 500
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Archer: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bVit,8;
+ bonus bInt,8;
+ - Id: 28602
+ AegisName: Demon_Hunting_Bible_K
+ Name: Demon Hunting Bible
+ Type: Weapon
+ SubType: Book
+ Weight: 500
+ Attack: 30
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 110
+ Refineable: true
+ Script: |
+ bonus bInt,2;
+ bonus bDex,2;
+ .@b = readparam(bInt);
+ bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120);
+ bonus bHealPower,10;
+ bonus bAddItemHealRate,10;
+ .@r = (getrefine()*1000);
+ autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST; }";
+ bonus bUnbreakableWeapon;
+ bonus bAtkEle,Ele_Holy;
+ - Id: 28604
+ AegisName: Scarlet_Bible
+ Name: Crimson Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 450
+ Attack: 45
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);
+ - Id: 28605
+ AegisName: Sinister_Book
+ Name: Book of Vicious Mind
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 950
+ Attack: 95
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2);
+ bonus bUnbreakableWeapon;
+ - Id: 28606
+ AegisName: Unity_Bible
+ Name: Unity Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 220
+ Attack: 42
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 1
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bBaseAtk,pow(getrefine(),2)*125/100;
+ - Id: 28607
+ AegisName: Toughen_Metal_Book
+ Name: Enhanced Metal Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 70
+ MagicAttack: 40
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Sage: true
+ Taekwon: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10;
+ bonus2 bSkillAtk,"AL_HEAL",0;
+ bonus bMatk,5*.@r+3*(min(BaseLevel,150)/10);
+ bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10));
+ if (BaseJob == JOB_WIZARD) {
+ bonus bMatk,10;
+ }
+ - Id: 28608
+ AegisName: Origin_Of_Elemental
+ Name: Elemental Origin
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bInt,4;
+ .@bonus = 10;
+ if (.@r>=7) {
+ .@bonus += 10;
+ }
+ if (.@r>=9) {
+ .@bonus += 10;
+ }
+ bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus;
+ bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",.@bonus;
+ - Id: 28612
+ AegisName: Book_Of_The_Apo_IL
+ Name: Illusion Apocalypse
+ Type: Weapon
+ SubType: Book
+ Weight: 800
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@val = 10 + 10*(min(getrefine(),10)/3);
+ bonus2 bAddEle,Ele_Water,.@val;
+ bonus2 bAddEle,Ele_Earth,.@val;
+ bonus2 bAddEle,Ele_Fire,.@val;
+ bonus2 bAddEle,Ele_Wind,.@val;
+ bonus2 bSubDefEle,Ele_Holy,-30;
+ - Id: 28613
+ AegisName: Probation_Magicbook
+ Name: Trial Sorcerer's Magic Book
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 60
+ MagicAttack: 160
+ Range: 1
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",20;
+ bonus bMatk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bMatkRate,getskilllv("SA_ADVANCEDBOOK");
+ }
+ - Id: 28614
+ AegisName: Probation_Bible
+ Name: Trial Archbishop's Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Attack: 120
+ MagicAttack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",20;
+ bonus bMatk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bMatkRate,getskilllv("PR_KYRIE");
+ }
+ - Id: 28616
+ AegisName: Rebeginer_AB_Bible
+ Name: Beginner Archbishop's Bible
+ Type: Weapon
+ SubType: Book
+ Attack: 100
+ MagicAttack: 130
+ Range: 1
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"AB_ADORAMUS",15;
+ }
+ - Id: 28618
+ AegisName: Book_of_the_Sun_God
+ Name: Book of the Sun God
+ Type: Weapon
+ SubType: Book
+ Buy: 10
+ Weight: 500
+ Attack: 180
+ MagicAttack: 170
+ Range: 1
+ Slots: 4
+ Jobs:
+ Priest: true
+ Sage: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,200*.@r;
+ bonus bMaxSP,50*.@r;
+ bonus bAspdRate,.@r;
+ if (.@r>=10)
+ bonus3 bAutoSpell,"WZ_METEOR",5,200;
+ else if (.@r>=8)
+ bonus3 bAutoSpell,"WZ_METEOR",4,150;
+ else
+ bonus3 bAutoSpell,"WZ_METEOR",3,100;
+ - Id: 28619
+ AegisName: Prisoner_Diary
+ Name: Prisoner's Diary
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 800
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 175
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=9)
+ .@val = 25;
+ else if (.@r>=7)
+ .@val = 10;
+ if (.@r>=11) {
+ bonus2 bAddEle,Ele_Dark,15;
+ bonus2 bMagicAddEle,Ele_Dark,15;
+ bonus2 bAddEle,Ele_Undead,15;
+ bonus2 bMagicAddEle,Ele_Undead,15;
+ }
+ bonus2 bAddRace,RC_Demon,.@val;
+ bonus2 bAddRace,RC_Undead,.@val;
+ bonus2 bMagicAddRace,RC_Demon,.@val;
+ bonus2 bMagicAddRace,RC_Undead,.@val;
+ - Id: 28626
+ AegisName: Illusion_Tablet
+ Name: Illusion Tablet
+ Type: Weapon
+ SubType: Book
+ Weight: 800
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@val = 10 + 10*(min(getrefine(),10)/3);
+ bonus2 bAddEle,Ele_Dark,.@val;
+ bonus2 bAddEle,Ele_Undead,.@val;
+ bonus2 bAddEle,Ele_Poison,.@val;
+ bonus2 bAddEle,Ele_Ghost,.@val;
+ bonus2 bSubDefEle,Ele_Dark,-30;
+ - Id: 28629
+ AegisName: Circuit_Board_OS
+ Name: Circuit Board-OS
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 1200
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Sage: true
+ StarGladiator: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ 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
+ Type: Weapon
+ SubType: Book
+ Weight: 500
+ Attack: 165
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",.@r/3*25;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",30;
+ }
+ - Id: 28631
+ AegisName: OneSkyOneSun
+ Name: Thousand Sun
+ Type: Weapon
+ SubType: Book
+ Weight: 900
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bBaseAtk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus 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
+ Type: Weapon
+ SubType: Book
+ Attack: 165
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",30;
+ }
+ - Id: 28633
+ AegisName: Boltijin
+ Name: Boltijin
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 800
+ Attack: 120
+ MagicAttack: 175
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ if (.@r>=9)
+ .@val = 30;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",50;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50;
+ }
+ bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val;
+ bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val;
+ - Id: 28635
+ AegisName: Ein_1HBOOK
+ Name: Safety Manual
+ Type: Weapon
+ SubType: Book
+ Weight: 700
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,3;
+ bonus2 bAddClass,Class_All,10;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ bonus bCritAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus bCritAtkRate,15;
+ bonus bDelayrate,-20;
+ }
+ - Id: 28636
+ AegisName: R_Sage_Book
+ Name: Royal Sage Book
+ Type: Weapon
+ SubType: Book
+ Weight: 1000
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Wind,5;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ bonus bMatk,170;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",20;
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ }
+ - Id: 28700
+ AegisName: Ru_Gold_Dagger
+ Name: Ru Gold Dagger
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bStr,8;
+ bonus bInt,8;
+ - Id: 28701
+ AegisName: Ru_Gold_Knife
+ Name: Ru Gold Knife
+ Type: Weapon
+ SubType: Dagger
+ Weight: 500
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bVit,8;
+ bonus bInt,8;
+ - Id: 28702
+ AegisName: Ru_Gold_Ashura
+ Name: Ru Gold Ashura
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 150
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 120
+ Refineable: true
+ - Id: 28703
+ AegisName: Infinity_Dagger
+ Name: Infinity Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 500
+ Attack: 125
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 28705
+ AegisName: Scarlet_Dagger
+ Name: Crimson Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 550
+ Attack: 55
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);
+ bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);
+ - Id: 28706
+ AegisName: Sinister_Dagger
+ Name: Dagger of Vicious Mind
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1050
+ Attack: 105
+ MagicAttack: 50
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,pow(min(getrefine(),15),2);
+ bonus bMatk,pow(min(getrefine(),15),2)/2;
+ - Id: 28714
+ AegisName: Toughen_Metal_Dagger
+ Name: Enhanced Metal Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 90
+ MagicAttack: 40
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ SuperNovice: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,40+(4*.@r)+3*(min(BaseLevel,150)/10);
+ bonus bAspd,1;
+ bonus bAspdRate,2*.@r;
+ bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10));
+ - Id: 28717
+ AegisName: Valkyrie_Knife
+ Name: Valkyrie Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 50
+ Weight: 100
+ Attack: 50
+ MagicAttack: 50
+ Range: 1
+ Slots: 4
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ SuperNovice: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 70
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@b = readparam(bDex)/10;
+ if (BaseClass == Job_Novice) {
+ bonus bMaxHP,300+(200*.@r);
+ bonus bMaxSP,300+(20*.@r);
+ bonus bBaseAtk,100;
+ bonus bMatk,150+(15*.@r);
+ bonus bUseSPrate,-5;
+ bonus bUnbreakableWeapon;
+ bonus bInt,2*.@r;
+ bonus bDex,(2*.@r)-(.@r*.@b);
+ bonus bCritical,7*.@r;
+ bonus bAspdRate,10*.@r;
+ bonus bCritAtkRate,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"
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 650
+ Attack: 45
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Novice: true
+ SuperNovice: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMatk,40;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=6) {
+ bonus2 bAddSize,Size_Medium,8;
+ bonus2 bMagicAddSize,Size_Medium,8;
+ autobonus "{ bonus bNoSizeFix; }",1,5000,BF_WEAPON;
+ }
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_Medium,20;
+ bonus2 bMagicAddSize,Size_Medium,20;
+ }
+ if (.@r>=12) {
+ bonus bNoSizeFix;
+ }
+ - Id: 28721
+ AegisName: Monokage
+ Name: Monokage
+ Type: Weapon
+ SubType: Dagger
+ Buy: 10
+ Weight: 800
+ Attack: 100
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU");
+ if (.@r>=9) {
+ bonus bLongAtkRate,5;
+ } else if (.@r>=7) {
+ bonus bLongAtkRate,2;
+ }
+ - Id: 28725
+ AegisName: Moonlight_Sword_IL
+ Name: Illusion Moonlight Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 150
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ bonus bMaxSPrate,10;
+ .@val = 3;
+ if (getrefine() >= 10) {
+ .@val += 4;
+ }
+ bonus bSPDrainValue,.@val;
+ - Id: 28726
+ AegisName: Probation_Dagger
+ Name: Trial Shadow Chaser's Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Attack: 120
+ MagicAttack: 140
+ Range: 1
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus bMatk,3*(min(BaseLevel,160)/10);
+ bonus bBaseAtk,3*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bMatkRate,getskilllv("RG_SNATCHER");
+ }
+ - Id: 28740
+ AegisName: Rebeginer_SC_Dagger
+ Name: Beginner Shadow Chaser's Dagger
+ Type: Weapon
+ SubType: Dagger
+ Attack: 120
+ MagicAttack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ if (getrefine()>=7) {
+ bonus2 bMagicAtkEle,Ele_All,7;
+ }
+ - Id: 28744
+ AegisName: Magic_Sword
+ Name: Madogum
+ Type: Weapon
+ SubType: Dagger
+ Weight: 800
+ Attack: 150
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus bAspdRate,.@r/3*2;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,10;
+ }
+ if (.@r>=11) {
+ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,50,BF_WEAPON|BF_SHORT,1;
+ }
+ - Id: 28745
+ AegisName: Illusion_Counter_Dagger
+ Name: Illusion Counter Dagger
+ Type: Weapon
+ SubType: Dagger
+ Weight: 900
+ Attack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Mage: true
+ Sage: true
+ SoulLinker: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ 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;
+ }
+ }
+ }
+ - Id: 28755
+ AegisName: Kuroiro_OS
+ Name: Kuroiro-OS
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 150
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@dmg = 5;
+ if (.@r >= 7) {
+ .@dmg += 10;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;
+ if (.@r >= 11) {
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bMagicAddRace,RC_Demon,10;
+ bonus2 bAddRace,RC_Undead,10;
+ bonus2 bMagicAddRace,RC_Undead,10;
+ }
+ }
+ }
+ bonus2 bAddEle,Ele_Undead,.@dmg;
+ bonus2 bMagicAddEle,Ele_Undead,.@dmg;
+ bonus2 bAddEle,Ele_Dark,.@dmg;
+ bonus2 bMagicAddEle,Ele_Dark,.@dmg;
+ - Id: 28759
+ AegisName: Evt_Magic_Sword
+ Name: Sealed Mado Sword
+ Type: Weapon
+ SubType: Dagger
+ Attack: 150
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ bonus bAspdRate,2*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,10;
+ }
+ if (.@r>=9) {
+ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,100,BF_SHORT|BF_WEAPON,1;
+ }
+ - Id: 28762
+ AegisName: Illusion_Bazerald
+ Name: Illusion Bazerald
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 500
+ Attack: 120
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Blacksmith: true
+ Crusader: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Ninja: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ Swordman: true
+ Thief: true
+ Wizard: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ bonus bInt,5;
+ .@r = getrefine();
+ bonus bMatkRate,(.@r/2);
+ if (.@r >= 7) {
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ if (.@r >= 9) {
+ bonus2 bSkillAtk,"MG_FIREBOLT",40;
+ bonus2 bSkillAtk,"MG_FIREBALL",40;
+ if (.@r >= 11) {
+ bonus2 bSkillAtk,"WZ_METEOR",30;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",30;
+ }
+ }
+ }
+ - Id: 28763
+ AegisName: Sharp_Wind_Sword
+ Name: Surudoi Kaze
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 28764
+ AegisName: Fog_Dew_Sword
+ Name: Kiri no Tsuyu
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1000
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ - Id: 28765
+ AegisName: Judgement_Slasher
+ Name: Judgement Slasher
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1100
+ Attack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ - Id: 28766
+ AegisName: Repent_Slasher
+ Name: Repent Slasher
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 700
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ - Id: 28767
+ AegisName: Jack_The_Knife
+ Name: Jack The Knife
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 900
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus2 bSkillAtk,"RG_BACKSTAP",40;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"SC_FATALMENACE",30;
+ if (.@r>=11)
+ bonus2 bSkillUseSPrate,"SC_FATALMENACE",10;
+ - Id: 28768
+ AegisName: Platinum_Dagger
+ Name: Platinum Dagger
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1500
+ Attack: 150
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus bMatkRate,5;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ }
+ if (.@r>=11)
+ autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";
+ /* Unknow Rates and Specialeffect */
+ - Id: 28771
+ AegisName: Ein_1HDAGGER
+ Name: Metal Detector Mk47
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",10;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 28772
+ AegisName: Ein_1HMAGGER
+ Name: Jewel Detector Mk47
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 190
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,10;
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ bonus2 bMagicAtkEle,Ele_Fire,7;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bMatk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,8;
+ bonus2 bMagicAtkEle,Ele_Fire,8;
+ autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 28774
+ AegisName: R_Gladius_R
+ Name: Royal Gladius (R)
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 28775
+ AegisName: R_Gladius_L
+ Name: Royal Gladius (L)
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 100
+ Range: 1
+ Slots: 3
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ - Id: 28776
+ AegisName: R_Magician_Dagger
+ Name: Royal Magician Dagger
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,5;
+ bonus bMatk,170;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ }
+ - Id: 28900
+ AegisName: ShieldOfGuardsman
+ Name: Guardsmen's Shield
+ Type: Armor
+ Buy: 20
+ Weight: 3000
+ Defense: 30
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ skill "LG_SHIELDSPELL",1;
+ bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,5+(.@r*3);
+ bonus bDef,(.@r*10);
+ bonus bMdef,.@r;
+ - Id: 28901
+ AegisName: Mad_Bunny_K
+ Name: Cursed Mad Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bAspd,3;
+ bonus2 bAddRace,RC_All,5;
+ bonus2 bMagicAddRace,RC_All,5;
+ bonus bShortWeaponDamageReturn,10;
+ bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,100,BF_MAGIC,0;
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bBaseAtk,5;
+ bonus bMatk,5;
+ }
+ if (.@r>=9) {
+ bonus bBaseAtk,15;
+ bonus bMatk,15;
+ }
+ if (.@r>=12) {
+ bonus bCritical,10;
+ bonus bNoCastCancel;
+ }
+ - Id: 28902
+ AegisName: Mad_Bunny_K_
+ Name: Mad Bunny
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Script: |
+ 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
+ Type: Armor
+ Weight: 500
+ Defense: 1
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ bonus bFlee,5;
+ bonus bFlee2,1+(.@r/3*2);
+ if (.@r >= 10) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ }
+ - Id: 28904
+ AegisName: Unity_Guard
+ Name: Unity Guard
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 60
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseLevel<100) {
+ bonus bDef,12*getrefine();
+ }
+ - Id: 28905
+ AegisName: Unity_Buckler
+ Name: Unity Buckler
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Defense: 60
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 1
+ Refineable: true
+ View: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (BaseLevel<100) {
+ bonus bMaxSPrate,2*getrefine();
+ }
+ - Id: 28906
+ AegisName: Shield_Of_Flame
+ Name: Shield Of Flame
+ Type: Armor
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubEle,Ele_Fire,25;
+ .@r = getrefine();
+ if (.@r > 4) {
+ bonus bAspd,1+((.@r > 6) ? 1 : 0);
+ }
+ - Id: 28907
+ AegisName: Shield_Of_Gust
+ Name: Shield Of Gust
+ Type: Armor
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ 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
+ Type: Armor
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubEle,Ele_Water,25;
+ .@r = getrefine();
+ if (.@r > 4) {
+ bonus bAspd,1+((.@r > 6) ? 1 : 0);
+ }
+ - Id: 28909
+ AegisName: Shield_Of_Earth
+ Name: Shield Of Earth
+ Type: Armor
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus2 bSubEle,Ele_Earth,25;
+ .@r = getrefine();
+ if (.@r > 4) {
+ bonus bAspd,1+((.@r > 6) ? 1 : 0);
+ }
+ - Id: 28910
+ AegisName: Imuke_Upper_Shield
+ Name: Rectangular Large Sleeve
+ Type: Armor
+ Buy: 20
+ Weight: 800
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bLongAtkDef,5;
+ .@r = getrefine();
+ if (.@r>=5) {
+ bonus bLongAtkDef,5;
+ }
+ if (.@r>=7) {
+ bonus bLongAtkDef,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkDef,15;
+ }
+ - Id: 28913
+ AegisName: Ultra_Light_MShield
+ Name: Ultralight Magic Shield
+ Type: Armor
+ Weight: 100
+ Defense: 50
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ .@val = 5;
+ bonus2 bIgnoreDefClassRate,Class_Normal,10;
+ if (.@r >= 9) {
+ .@val += 5;
+ } else if (.@r >= 7) {
+ .@val += 2;
+ }
+ bonus bAspdRate,.@val;
+ bonus2 bSubEle,Ele_Neutral,.@val;
+ - Id: 28914
+ AegisName: Toughen_Time_Keepr_Shd
+ Name: Enhanced Time Keeper Shield
+ Type: Armor
+ View: 3
+ Defense: 25
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus bMdef,5;
+ bonus bMaxHP,500;
+ - Id: 28915
+ AegisName: Bunker_Shield_
+ Name: Bunker Shield
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 90
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 50
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ if (.@r >= 5) {
+ .@dmg = .@r - 4;
+ }
+ bonus2 bAddClass,Class_All,(4+.@dmg);
+ bonus bAspdRate,-5;
+ - Id: 28916
+ AegisName: Gaia_Shield
+ Name: Gaia Shield
+ Type: Armor
+ Buy: 20
+ Weight: 2000
+ Defense: 150
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubEle,Ele_Earth,10;
+ bonus2 bAddEle,Ele_Earth,5;
+ bonus2 bMagicAddEle,Ele_Earth,5;
+ .@r = getrefine();
+ if (.@r>=6) {
+ bonus2 bSubEle,Ele_Earth,15;
+ bonus2 bAddEle,Ele_Earth,10;
+ bonus2 bMagicAddEle,Ele_Earth,10;
+ }
+ if (.@r>=8) {
+ if (readparam(bStr)>=90) {
+ bonus bBaseAtk,50;
+ }
+ if (readparam(bAgi)>=90) {
+ bonus bAspdRate,5;
+ }
+ if (readparam(bVit)>=90) {
+ bonus bHealPower2,10;
+ bonus bAddItemHealRate,10;
+ }
+ if (readparam(bInt)>=90) {
+ bonus bMatk,30;
+ }
+ if (readparam(bDex)>=90) {
+ bonus bVariableCastrate,-5;
+ }
+ if (readparam(bLuk)>=90) {
+ bonus bCritAtkRate,5;
+ }
+ }
+ - Id: 28918
+ AegisName: Shield_Of_Chaos
+ Name: Shield of Chaos
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Dark,25;
+ if (.@r>=5)
+ bonus bAspd,1;
+ if (.@r>=7)
+ bonus bAspd,1;
+ - Id: 28920
+ AegisName: Diamond_Shield
+ Name: Diamond Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 50
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ if (BaseLevel>=150) {
+ bonus bDef,100+(20*(.@r/3));
+ }
+ - Id: 28921
+ AegisName: Anemos_Shield
+ Name: Anemos Shield
+ Type: Armor
+ Buy: 20
+ Weight: 3500
+ Defense: 150
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,15;
+ bonus2 bAddEle,Ele_Wind,5;
+ bonus2 bMagicAddEle,Ele_wind,5;
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus bUnbreakableShield;
+ .@r = getrefine();
+ if (.@r>=6) {
+ bonus2 bAddEle,Ele_Wind,10;
+ bonus2 bMagicAddEle,Ele_wind,10;
+ bonus2 bSubEle,Ele_Wind,15;
+ }
+ if (.@r>=8) {
+ if (readparam(bStr)>=90)
+ bonus bBaseAtk,50;
+ if (readparam(bAgi)>=90)
+ bonus bAspdRate,5;
+ if (readparam(bVit)>=90)
+ bonus bAddItemHealRate,10;
+ if (readparam(bInt)>=90)
+ bonus bMatk,30;
+ if (readparam(bDex)>=90)
+ bonus bVariableCastrate,-5;
+ if (readparam(bLuk)>=90)
+ bonus bCritAtkRate,5;
+ }
+ - Id: 28922
+ AegisName: Herald_Of_GOD_IL
+ Name: Illusion Sacred Mission
+ Type: Armor
+ Weight: 1600
+ Defense: 190
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 120
+ Refineable: true
+ View: 4
+ Script: |
+ bonus bVit,3;
+ bonus bInt,2;
+ bonus bMdef,3;
+ bonus bUnbreakableShield;
+ bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine());
+ - Id: 28929
+ AegisName: Happy_Shield
+ Name: Happy Shield
+ Type: Armor
+ Buy: 10
+ Weight: 3500
+ Defense: 150
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ bonus bMdef,10;
+ - Id: 28941
+ AegisName: Excelion_Shield
+ Name: Excelion Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1200
+ Defense: 95
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 100
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,5;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bBaseAtk,30*(.@r/3);
+ bonus bMatk,30*(.@r/3);
+ if (readparam(Baselevel)>=130) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ }
+ - Id: 28942
+ AegisName: Bloody_Knight_Shield
+ Name: Cursed Knight's Shield
+ Type: Armor
+ Weight: 800
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ 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;
+ }
+ - Id: 28945
+ AegisName: Bloody_Knight_Shield_
+ Name: Bloody Knight's Shield
+ Type: Armor
+ Weight: 800
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ 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;
+ }
+ - Id: 28946
+ AegisName: Bloody_Knight_Shield__
+ Name: Purified Knight's Shield
+ Type: Armor
+ Weight: 800
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ 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;
+ }
+ - Id: 28951
+ AegisName: Nero_Shield
+ Name: Nero Shield
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableShield;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Water,10;
+ bonus2 bAddEle,Ele_Water,5;
+ bonus2 bMagicAddEle,Ele_Water,5;
+ if (.@r>=6) {
+ bonus2 bSubEle,Ele_Water,15;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bMagicAddEle,Ele_Water,10;
+ }
+ if (.@r>=8) {
+ if (readparam(bStr)>=90)
+ bonus bBaseAtk,50;
+ if (readparam(bAgi)>=90)
+ bonus bAspdRate,5;
+ if (readparam(bInt)>=90)
+ bonus bMatk,30;
+ if (readparam(bVit)>=90)
+ bonus bAddItemHealRate,10;
+ if (readparam(bDex)>=90)
+ bonus bVariableCastrate,-5;
+ if (readparam(bLuk)>=90)
+ bonus bCritAtkRate,5;
+ }
+ - Id: 28953
+ AegisName: Poring_B_Shield
+ Name: Poring Battle Shield
+ Type: Armor
+ Defense: 80
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ View: 1 # unknown view
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubSize,Size_All,2*(.@r/3);
+ bonus2 bMagicSubSize,Size_All,2*(.@r/3);
+ if (.@r>=7) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ }
+ if (.@r>=9) {
+ bonus bAspd,1;
+ }
+ if (.@r>=12) {
+ autobonus "{ bonus2 bHPRegenRate,100,1000; }",50,4000,BF_MAGIC;
+ bonus bShortWeaponDamageReturn,1;
+ }
+ - Id: 28955
+ AegisName: Fotia_Shield
+ Name: Fotia Shield
+ Type: Armor
+ Buy: 20
+ Weight: 1000
+ Defense: 120
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 90
+ Refineable: true
+ View: 1
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableShield;
+ bonus bMdef,5;
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus2 bAddEle,Ele_Fire,5;
+ bonus2 bMagicAddEle,Ele_Fire,5;
+ if (.@r>=6) {
+ bonus2 bSubEle,Ele_Fire,15;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus2 bMagicAddEle,Ele_Fire,10;
+ }
+ if (.@r>=8) {
+ if (readparam(bStr)>=90)
+ bonus bBaseAtk,50;
+ if (readparam(bAgi)>=90)
+ bonus bAspdRate,5;
+ if (readparam(bInt)>=90)
+ bonus bMatk,30;
+ if (readparam(bVit)>=90)
+ bonus bAddItemHealRate,10;
+ if (readparam(bDex)>=90)
+ bonus bVariableCastrate,-5;
+ if (readparam(bLuk)>=90)
+ bonus bCritAtkRate,5;
+ }
+ - Id: 31027
+ AegisName: C_Pretty_Bear
+ Name: Costume Pretty Bear
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1480
+ - Id: 31028
+ AegisName: C_Black_Cat_Hood
+ Name: Costume Black Cat Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1481
+ - Id: 31029
+ AegisName: C_Pig_Nose
+ Name: Costume Pig Nose
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1482
+ - Id: 31030
+ AegisName: C_Tiger_Face
+ Name: Costume Tiger Face
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 483
+ - Id: 31031
+ AegisName: C_Tare_Pope_Casual
+ Name: Costume Drooping Pope Casual
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1483
+ - Id: 31032
+ AegisName: C_Tare_Luwmin
+ Name: "Costume: Sailing Lumin"
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1484
+ - Id: 31033
+ AegisName: C_BelieversCap
+ Name: Costume Believer's Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1485
+ - Id: 31034
+ AegisName: C_Pirates_Hood
+ Name: Costume Pirates Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 592
+ - Id: 31035
+ AegisName: C_Bankruptcy_Of_Heart
+ Name: Costume Bankruptcy of Heart
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 107
+ - Id: 31036
+ AegisName: C_Satto_Hat
+ Name: Costume Used Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 227
+ - Id: 31037
+ AegisName: C_Beret
+ Name: Costume Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 226
+ - Id: 31038
+ AegisName: C_Cheks_Bandana
+ Name: Costume Cheks Bandana
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1174
+ - Id: 31039
+ AegisName: C_Crown_of_Old_King_Red
+ Name: Costume Crown of Old King Red
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1491
+ - Id: 31040
+ AegisName: C_Magical_Feather
+ Name: Costume Magical Feather
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1279
+ Script: |
+ hateffect(HAT_EF_MAGICAL_FEATHER,true);
+ EquipScript: |
+ /* commented because only the last sentence is seen
+ showscript "Oh Holy Light!";
+ showscript "Strike down my foes!";
+ showscript "Blessings be upon me as I strike the undead and demonic with my Demon Bane!";
+ showscript "I am a Magical Acolyte who fights against the black Porings of Satan Morroc!";
+ */
+ showscript "Every day I struggle against the darkness but today will be magical!";
+ UnEquipScript: |
+ hateffect(HAT_EF_MAGICAL_FEATHER,false);
+ - Id: 31041
+ AegisName: C_Cat_Lace_Hairband
+ Name: Costume Cat Lace Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 816
+ - Id: 31042
+ AegisName: C_Survival_Circlet
+ Name: Costume Survival Circlet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1220
+ - Id: 31043
+ AegisName: C_Ribbon_White
+ Name: Costume Ribbon White
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 248
+ - Id: 31044
+ AegisName: C_Drooping_Kitty_Pink
+ Name: Costume Drooping Kitty Pink
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 276
+ - Id: 31045
+ AegisName: C_Blue_Rear_Ribbon
+ Name: Costume Blue Rear Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1492
+ - Id: 31046
+ AegisName: C_White_Rose_Princess
+ Name: Costume White Rose Princess
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1493
+ - Id: 31047
+ AegisName: C_First_Love_Cheek
+ Name: Costume First Love Cheek
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1494
+ - Id: 31048
+ AegisName: C_White_Lily_Black_Ribbon
+ Name: Costume White Lily Black Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1495
+ - Id: 31049
+ AegisName: C_Marin_Hat
+ Name: Costume Marin Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 948
+ - Id: 31050
+ AegisName: C_Golden_Poring_Hat
+ Name: Costume Golden Poring Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1236
+ - Id: 31051
+ AegisName: C_Poring_Sun_Visor
+ Name: Costume Poring Sun Visor
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1496
+ - Id: 31052
+ AegisName: C_Alchemist_Mask
+ Name: Costume Alchemist Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1497
+ - Id: 31053
+ AegisName: C_Drooping_Eddga
+ Name: Costume Drooping Eddga
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 495
+ - Id: 31054
+ AegisName: C_Sting_Hat
+ Name: Costume Sting Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 504
+ - Id: 31055
+ AegisName: C_Poring_Soap_Pipe
+ Name: Costume Poring Soap Pipe
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1499
+ - Id: 31056
+ AegisName: C_Furious_Wave
+ Name: Costume Furious Wave
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ Script: |
+ hateffect(HAT_EF_DOUBLEGUMGANG,true);
+ /* Need to confirm this */
+ UnEquipScript: |
+ hateffect(HAT_EF_DOUBLEGUMGANG,false);
+ - Id: 31057
+ AegisName: C_Eremes_Scarf_Black
+ Name: "Costume: Eremes' Scarf (Black)"
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1501
+ - Id: 31058
+ AegisName: C_Gelato_Hat
+ Name: Costume Gelato Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 777
+ - Id: 31059
+ AegisName: C_Sailor_Hat
+ Name: Costume Sailor Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 798
+ - Id: 31060
+ AegisName: C_Starfish_Headband
+ Name: Costume Starfish Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 793
+ - Id: 31061
+ AegisName: C_Nipper_Hairpin
+ Name: Costume Nipper Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 470
+ - Id: 31062
+ AegisName: C_Eleanor_Wig
+ Name: Costume Eleanor Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1502
+ - Id: 31063
+ AegisName: C_Hair_Bun_BU
+ Name: Costume Hair in a Bun(Blue)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1503
+ - Id: 31064
+ AegisName: C_Hair_Bun_RD
+ Name: Costume Hair in a Bun(Red)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1504
+ - Id: 31065
+ AegisName: C_Hair_Bun_YL
+ Name: Costume Hair in a Bun(Yellow)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1505
+ - Id: 31066
+ AegisName: C_Hair_Bun_GN
+ Name: Costume Hair in a Bun(Green)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1506
+ - Id: 31067
+ AegisName: C_Hair_Bun_BL
+ Name: Costume Hair in a Bun(Black)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1507
+ - Id: 31068
+ AegisName: C_Hair_Bun_WH
+ Name: Costume Hair in a Bun(White)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1508
+ - Id: 31069
+ AegisName: C_Hair_Bun_OM
+ Name: Costume Hair in a Bun(Brown)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1509
+ - Id: 31070
+ AegisName: C_Hair_Bun_PP
+ Name: Costume Hair in a Bun(Purple)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1510
+ - Id: 31071
+ AegisName: C_Roll_Twin_BU
+ Name: Costume Roll Twin(Blue)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1511
+ - Id: 31072
+ AegisName: C_Roll_Twin_RD
+ Name: Costume Roll Twin(Red)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1512
+ - Id: 31073
+ AegisName: C_Roll_Twin_YL
+ Name: Costume Roll Twin(Yellow)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1513
+ - Id: 31074
+ AegisName: C_Roll_Twin_GN
+ Name: Costume Roll Twin(Green)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1514
+ - Id: 31075
+ AegisName: C_Roll_Twin_BL
+ Name: Costume Roll Twin(Black)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1515
+ - Id: 31076
+ AegisName: C_Roll_Twin_WH
+ Name: Costume Roll Twin(White)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1516
+ - Id: 31077
+ AegisName: C_Roll_Twin_OM
+ Name: Costume Roll Twin(Brown)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1517
+ - Id: 31078
+ AegisName: C_Roll_Twin_PP
+ Name: Costume Roll Twin(Purple)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1518
+ - Id: 31079
+ AegisName: C_Long_Pony_BU
+ Name: Costume Long Pony(Blue)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1519
+ - Id: 31080
+ AegisName: C_Long_Pony_RD
+ Name: Costume Long Pony(Red)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1520
+ - Id: 31081
+ AegisName: C_Long_Pony_YL
+ Name: Costume Long Pony(Yellow)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1521
+ - Id: 31082
+ AegisName: C_Long_Pony_GN
+ Name: Costume Long Pony(Green)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1522
+ - Id: 31083
+ AegisName: C_Long_Pony_BL
+ Name: Costume Long Pony(Black)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1523
+ - Id: 31084
+ AegisName: C_Long_Pony_WH
+ Name: Costume Long Pony(White)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1524
+ - Id: 31085
+ AegisName: C_Long_Pony_OM
+ Name: Costume Long Pony(Brown)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1525
+ - Id: 31086
+ AegisName: C_Long_Pony_PP
+ Name: Costume Long Pony(Purple)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1526
+ - Id: 31087
+ AegisName: C_Dwarf_Beard
+ Name: Costume Dwarf Beard
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1349
+ - Id: 31088
+ AegisName: C_Mad_Hatter
+ Name: Costume Mad Hatter
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1421
+ - Id: 31089
+ AegisName: C_Exploding_Crimson_Flame
+ Name: Costume Exploding Crimson Flame
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1500
+ Script: |
+ hateffect(HAT_EF_BAKURETSU_HADOU,true);
+ /* Need to confirm this */
+ UnEquipScript: |
+ hateffect(HAT_EF_BAKURETSU_HADOU,false);
+ - Id: 31090
+ AegisName: C_Angelring_Hat
+ Name: Costume Angelring Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 348
+ - Id: 31091
+ AegisName: C_Gold_Shower
+ Name: Costume Show Me The Zeny
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1528
+ Script: |
+ hateffect(HAT_EF_GOLD_SHOWER,true);
+ bonus2 bGetZenyNum,500,3;
+ UnEquipScript: |
+ hateffect(HAT_EF_GOLD_SHOWER,false);
+ - Id: 31092
+ AegisName: C_Rabbit_Ribbon_Hat
+ Name: Costume Bunny Ribbon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 845
+ - Id: 31093
+ AegisName: C_Under_Lamp
+ Name: Costume Under Lamp
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1531
+ - Id: 31094
+ AegisName: C_Dice_Hat
+ Name: Costume Dice Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 494
+ - Id: 31095
+ AegisName: C_JP_EV01
+ Name: Costume Mythical Baphomet Horns
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1532
+ - Id: 31096
+ AegisName: C_JP_EV02
+ Name: Costume Dog Ears of Bau Alma
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1533
+ - Id: 31097
+ AegisName: C_JP_EV03
+ Name: Costume Bunny Ears of Minnie Doe Alma
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1534
+ - Id: 31098
+ AegisName: C_JP_EV04
+ Name: Costume Fox Ears of Tamamo Loa
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1535
+ - Id: 31099
+ AegisName: C_JP_EV05
+ Name: Costume Headdress of Ontama Aria
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1536
+ - Id: 31100
+ AegisName: C_JP_EV06
+ Name: Costume Hat of Dumpty Alma
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1537
+ - Id: 31101
+ AegisName: C_JP_EV07
+ Name: Costume Taini Hat Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1538
+ - Id: 31102
+ AegisName: C_JP_EV08
+ Name: Costume Taini Hat Orange
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1539
+ - Id: 31103
+ AegisName: C_JP_EV09
+ Name: Costume Taini Hat Green
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1540
+ - Id: 31104
+ AegisName: C_Taini_Hat
+ Name: Costume Taini Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 722
+ - Id: 31105
+ AegisName: C_RO_Celebration_Hat
+ Name: Costume RO Celebration Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1541
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31106
+ AegisName: C_Eyepatch_of_Peace
+ Name: Costume Eyepatch of Peace
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 697
+ - Id: 31107
+ AegisName: C_Eyepatch_of_Prosperity
+ Name: Costume Eyepatch of Prosperity
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 698
+ - Id: 31113
+ AegisName: C_Doctor_Headband
+ Name: Costume Doctor headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 60
+ - Id: 31114
+ AegisName: C_Theater_Prop
+ Name: Costume Theater Prop
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 80
+ - Id: 31117
+ AegisName: C_Hoplite_Helmet
+ Name: Costume Hoplite Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 660
+ - Id: 31118
+ AegisName: C_Assassin_Skull_Mask
+ Name: Costume Scratch Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 984
+ - Id: 31119
+ AegisName: C_Blue_Magicianhat
+ Name: Costume Magician Hat Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 285
+ - Id: 31120
+ AegisName: C_Vampire_Familiar
+ Name: Costume Vampire Familiar
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1548
+ - Id: 31121
+ AegisName: C_Stall_Of_Bat
+ Name: Costume Stall Of Bat
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1549
+ - Id: 31122
+ AegisName: C_Bloody_Stop_Bandage
+ Name: Costume Bloody Stop Bandage
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1550
+ - Id: 31123
+ AegisName: C_Ghostring_Tall_Hat
+ Name: Costume Ghostring Tall Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1551
+ - Id: 31124
+ AegisName: C_Ribbon_Chef_Hat
+ Name: Costume Ribbon Chief Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 785
+ - Id: 31125
+ AegisName: C_QueenAnzRevenge
+ Name: Costume Queen Anne's Revenge
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1360
+ - Id: 31126
+ AegisName: C_Nestea_Hat
+ Name: Costume Nestea Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 756
+ - Id: 31127
+ AegisName: C_Flag_Cap
+ Name: Costume Flag Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 482
+ - Id: 31128
+ AegisName: C_Bride_Mask
+ Name: Costume Bride Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 223
+ - Id: 31129
+ AegisName: C_Munchs_Scream
+ Name: Costume Scratch Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 75
+ - Id: 31130
+ AegisName: C_Indian_Hairband
+ Name: Costume Indian Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 96
+ - Id: 31131
+ AegisName: C_Monk_Hat
+ Name: Costume Monk Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 35
+ - Id: 31132
+ AegisName: C_Christmas_Wreath
+ Name: Costume Christmas Wreath
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1554
+ - Id: 31133
+ AegisName: C_Gambler_Seal
+ Name: Costume Gambler Seal
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1202
+ - Id: 31134
+ AegisName: C_Happy_Parrot_J
+ Name: Costume Talkactive Parrot
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1116
+ - Id: 31135
+ AegisName: C_Mini_Crown1
+ Name: Costume Luxury Mini Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 707
+ - Id: 31136
+ AegisName: C_Clock_Casket
+ Name: Costume Clock Casket
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1555
+ - Id: 31137
+ AegisName: C_Blue_Rose_Ornament
+ Name: Costume Blue Rose Ornament
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1556
+ - Id: 31138
+ AegisName: C_Piamette_Red_Hood
+ Name: Costume Piamette's Red Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1557
+ - Id: 31139
+ AegisName: C_White_Rabbit_Ear
+ Name: Costume White Rabbit Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1558
+ - Id: 31140
+ AegisName: C_Cowboy_Hat_
+ Name: Costume Black Cowboy Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1569
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31141
+ AegisName: C_Rose_Corsage_
+ Name: Costume Cactus Flower Corsage
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1570
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31142
+ AegisName: C_Time_Prison
+ Name: Costume Prison of Time
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1309
+ EquipScript: |
+ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_TIME_ACCESSORY;
+ - Id: 31143
+ AegisName: C_Krathong_Crown_TH
+ Name: "Costume: Krathong Crown"
+ Type: Armor
+ View: 1560
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31144
+ AegisName: C_Indi_Feather_Band
+ Name: Costume Indian Feather Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 809
+ - Id: 31145
+ AegisName: C_AliceFriesinger_Hat_69
+ Name: Costume AliceFriesinger Hat 69
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1249
+ - Id: 31146
+ AegisName: C_KarduiEar
+ Name: Costume Kardui Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1357
+ - Id: 31147
+ AegisName: C_Tare_Domovoi
+ Name: Costume Drooping Domovoi
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 781
+ - Id: 31148
+ AegisName: C_Tare_W_Doll
+ Name: Costume Drooping W Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 359
+ - Id: 31149
+ AegisName: C_Nydhog_Wig
+ Name: Costume Nydhoggur Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1563
+ - Id: 31150
+ AegisName: C_Shalosh_Head_Dress
+ Name: Costume Shalosh Headdress
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1564
+ - Id: 31151
+ AegisName: C_Chasher_Ear
+ Name: Costume Cheshire's Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1565
+ - Id: 31152
+ AegisName: C_Piamette_BowTie_Red
+ Name: Costume Piamette's Red Bow Tie
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1566
+ - Id: 31153
+ AegisName: C_Aniv_Star_Hat2
+ Name: Costume Cactus Flower Corsage
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1567
+ - Id: 31154
+ AegisName: C_Cap
+ Name: C Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 14
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1486
+ - Id: 31160
+ AegisName: C_RuneHelm
+ Name: Costume Rune Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1361
+ - Id: 31161
+ AegisName: C_Tiger_Mask
+ Name: Costume Tiger Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 181
+ - Id: 31162
+ AegisName: C_Shaving_Foam
+ Name: Costume Shaving Foam
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1129
+ - Id: 31163
+ AegisName: C_Goat_Hat
+ Name: Costume Sheep Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 205
+ - Id: 31164
+ AegisName: C_Brown_Stall
+ Name: Costume Brown Stole
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1572
+ - Id: 31165
+ AegisName: C_Piggyback
+ Name: Costume Piggyback
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1574
+ - Id: 31166
+ AegisName: C_Teddy_Bear_Hood
+ Name: Costume Teddy Bear Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1571
+ - Id: 31167
+ AegisName: C_Lunatic_Hanging_Ear_BL
+ Name: Costume Hanging Black Lunatic Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1575
+ - Id: 31168
+ AegisName: C_Mouton_Life_BL
+ Name: Costume Blue Mouton Life
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1573
+ - Id: 31169
+ AegisName: C_Hat_Of_Outlaw
+ Name: Costume Hilarious Bandit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 486
+ - Id: 31170
+ AegisName: C_Wind_Wings
+ Name: Costume Wings of Wind
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 493
+ - Id: 31171
+ AegisName: C_Nekomimi
+ Name: Costume Nekomimi
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 182
+ - Id: 31172
+ AegisName: C_Roast_Memory
+ Name: Costume Roast Memory
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1576
+ - Id: 31173
+ AegisName: C_Oyster_Parakeet
+ Name: Costume Oyster Parakeet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 419
+ - Id: 31174
+ AegisName: C_Suspicious_Bread_Bag
+ Name: C Suspicious Bread Bag
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 429
+ - Id: 31175
+ AegisName: C_Strawberry_Hat
+ Name: Costume Strawberry Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 755
+ - Id: 31176
+ AegisName: C_Looking
+ Name: C Looking
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1577
+ - Id: 31177
+ AegisName: C_Tail_Hat
+ Name: C Tail Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1578
+ - Id: 31178
+ AegisName: C_Flame_Muffler
+ Name: C Fire Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1579
+ - Id: 31179
+ AegisName: C_Wolf_Masquerade
+ Name: C Wolf Masquerade
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1580
+ - Id: 31180
+ AegisName: C_Shura_King_Pledge
+ Name: C King Sura Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1581
+ - Id: 31181
+ AegisName: C_Necklace_Rosary
+ Name: Costume Necklace Rosary
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1471
+ - Id: 31182
+ AegisName: C_Side_Cap
+ Name: Costume Side Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 529
+ - Id: 31183
+ AegisName: C_Fallen_Angel_Blessing
+ Name: Costume Blessing of Fallen Angel
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1250
+ - Id: 31184
+ AegisName: C_Hawkeye
+ Name: Costume Hawkeye
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 609
+ - Id: 31185
+ AegisName: C_Engineer_Cap
+ Name: Costume Engineer Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 608
+ - Id: 31186
+ AegisName: C_Black_Cat
+ Name: Costume Black Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1582
+ - Id: 31187
+ AegisName: C_War_Princess_Ribbon
+ Name: Costume War Princess Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1583
+ - Id: 31188
+ AegisName: C_Mono_Gothic_Bonnet
+ Name: Costume Mono Gothic Bonnet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1584
+ - Id: 31189
+ AegisName: C_Cat_Ears_Cape_Red
+ Name: Costume Red Cat Ears Cape
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1591
+ - Id: 31190
+ AegisName: C_Angel_Mini_Silk_Hat_B
+ Name: Costume Black Angel Mini Silk Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1586
+ - Id: 31191
+ AegisName: C_Whikebain_Ears_Gold
+ Name: Vibrant Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1588
+ - Id: 31192
+ AegisName: C_Bluecat_Ear
+ Name: Blue Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1589
+ - Id: 31193
+ AegisName: C_Tare_Ahat
+ Name: Costume Drooping Ahat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1590
+ - Id: 31194
+ AegisName: C_Spinning_Propeller
+ Name: Costume Spinning Propeller
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 270
+ - Id: 31195
+ AegisName: C_Choco_Minihat
+ Name: Costume Mini Chocolate Hat
+ Type: Armor
+ Locations:
+ 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1596
+ - Id: 31197
+ AegisName: C_Egg_Crispinette
+ Name: Costume Egg Crispinette
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1598
+ - Id: 31198
+ AegisName: C_Octopus_Hat
+ Name: C Octopus Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 538
+ - Id: 31199
+ AegisName: C_Weird_Beard
+ Name: C Weird Beard
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 21
+ - Id: 31200
+ AegisName: C_Wrapping_Ribbon
+ Name: C Wrapping Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1599
+ - Id: 31201
+ AegisName: C_Royal_Rabbit_Crown
+ Name: C Royal Rabbit Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1600
+ - Id: 31202
+ AegisName: C_Dog_Officer
+ Name: C Dog Officer
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1601
+ - Id: 31203
+ AegisName: C_Charcoal_Stove
+ Name: C Charcoal Stove
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1602
+ - Id: 31204
+ AegisName: C_Drooping_White_Cat
+ Name: C Drooping White Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 378
+ - Id: 31205
+ AegisName: C_Large_Orc_Hero_Helm
+ Name: C Large Orc Hero Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 381
+ - Id: 31206
+ AegisName: C_Rune_Hairband
+ Name: C Rune Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 564
+ - Id: 31207
+ AegisName: C_Dokkebi_Mask
+ Name: C Dokkebi Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 689
+ - Id: 31208
+ AegisName: C_Straight_Long_YL
+ Name: C Straight_Long Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1603
+ - Id: 31209
+ AegisName: C_Straight_Long_WH
+ Name: C Straight Long White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1604
+ - Id: 31210
+ AegisName: C_Side_Pigtail_BU
+ Name: C Side Pigtail Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1605
+ - Id: 31211
+ AegisName: C_Side_Pigtail_RD
+ Name: C Side Pigtail Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1606
+ - Id: 31212
+ AegisName: C_Side_Pigtail_YL
+ Name: C Side Pigtail Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1607
+ - Id: 31213
+ AegisName: C_Side_Pigtail_GN
+ Name: C Side Pigtail Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1608
+ - Id: 31214
+ AegisName: C_Side_Pigtail_BL
+ Name: C Side Pigtail Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1609
+ - Id: 31215
+ AegisName: C_Side_Pigtail_WH
+ Name: C Side Pigtail White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1610
+ - Id: 31216
+ AegisName: C_Side_Pigtail_OM
+ Name: C Side Pigtail Brown
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1611
+ - Id: 31217
+ AegisName: C_Side_Pigtail_PP
+ Name: C Side Pigtail Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1612
+ - Id: 31218
+ AegisName: C_Low_Pony_BU
+ Name: C Low Pony Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1613
+ - Id: 31219
+ AegisName: C_Low_Pony_RD
+ Name: C Low Pony Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1614
+ - Id: 31220
+ AegisName: C_Low_Pony_YL
+ Name: C Low Pony Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1615
+ - Id: 31221
+ AegisName: C_Low_Pony_GN
+ Name: C Low Pony Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1616
+ - Id: 31222
+ AegisName: C_Low_Pony_BL
+ Name: C Low Pony Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1617
+ - Id: 31223
+ AegisName: C_Low_Pony_WH
+ Name: C Low Pony White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1618
+ - Id: 31224
+ AegisName: C_Low_Pony_OM
+ Name: C Low Pony Brown
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1619
+ - Id: 31225
+ AegisName: C_Low_Pony_PP
+ Name: C Low Pony Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1620
+ - Id: 31226
+ AegisName: C_Long_Twin_BU
+ Name: C Long Twin Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1621
+ - Id: 31227
+ AegisName: C_Long_Twin_RD
+ Name: C Long Twin Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1622
+ - Id: 31228
+ AegisName: C_Long_Twin_YL
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1623
+ - Id: 31229
+ AegisName: C_Long_Twin_GN
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1624
+ - Id: 31230
+ AegisName: C_Long_Twin_BL
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1625
+ - Id: 31231
+ AegisName: C_Long_Twin_WH
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1626
+ - Id: 31232
+ AegisName: C_Long_Twin_OM
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1627
+ - Id: 31233
+ AegisName: C_Long_Twin_PP
+ Name: C Long Twin Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1628
+ - Id: 31234
+ AegisName: C_Persica
+ Name: C Persica
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 659
+ - Id: 31235
+ AegisName: C_Large_Ribbon_Muffler_Mid
+ Name: C Large Ribbon Muffler Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1312
+ - Id: 31236
+ AegisName: C_Vicious_Mind_Aura_Mid
+ Name: C Vicious Mind Aura Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1267
+ - Id: 31237
+ AegisName: C_Pale_Yellow_Ribbon_Lower
+ Name: C Pale Yellow Ribbon Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1474
+ - Id: 31238
+ AegisName: C_True_Love_Upper
+ Name: C True Love Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 489
+ - Id: 31239
+ AegisName: C_Love_Rabbit_Hood_Upper
+ Name: C Love Rabbit Hood Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 549
+ - Id: 31240
+ AegisName: C_Whisper_Mask_
+ Name: C Whisper Mask Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 321
+ - Id: 31241
+ AegisName: C_Burning_Sun_Lower
+ Name: C Burning Sun Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 654
+ - Id: 31242
+ AegisName: C_Anubis_Helm_
+ Name: C Anubis Hat Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 485
+ - Id: 31243
+ AegisName: C_Tongue_Mask_Mid
+ Name: C Tongue Mask Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 253
+ - Id: 31244
+ AegisName: C_Skymet_
+ Name: C Skymet Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 868
+ - Id: 31245
+ AegisName: C_Cherry
+ Name: C Cherry
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 602
+ - Id: 31246
+ AegisName: C_Humming_Bird
+ Name: C Humming Bird
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 702
+ - Id: 31247
+ AegisName: C_Hippo_Hat
+ Name: C Hippo Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 859
+ - Id: 31248
+ AegisName: C_Isabella_Red_Ears
+ Name: C Isabella Red Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1030
+ - Id: 31249
+ AegisName: C_Rabbit_Hopping
+ Name: C Hopping Rabbit
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1635
+ - Id: 31250
+ AegisName: C_Wonderful_Beast_Ear
+ Name: C Wonderful Beast Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1636
+ - Id: 31251
+ AegisName: C_Cat_Mouth
+ Name: C Cats Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1637
+ - Id: 31252
+ AegisName: C_Cat_Ear_Hat_White
+ Name: C White Cat Ears Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1638
+ - Id: 31253
+ AegisName: C_Rinzu_Helmet
+ Name: C Rinzu Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 548
+ - Id: 31254
+ AegisName: C_Red_Hare_Hat
+ Name: C Red Hare Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1631
+ - Id: 31255
+ AegisName: C_Sweet_Helmet
+ Name: C Sweet Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1374
+ - Id: 31256
+ AegisName: C_Jaguar_Mask
+ Name: C Jaguar Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 530
+ - Id: 31259
+ AegisName: C_Bubble_A_Angel_H
+ Name: Costume Bubbly Arc Angeling Hairband
+ Type: Armor
+ View: 1633
+ Weight: 10
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31260
+ AegisName: C_Observer_J
+ Name: C Observer
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1639
+ - Id: 31261
+ AegisName: C_Soda_in_Mouth
+ Name: C Soda in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1643
+ - Id: 31262
+ AegisName: C_Disposable_3D_Glasses
+ Name: C Disposable 3D Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 661
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31263
+ AegisName: C_Disposable_Popcorn_Hat
+ Name: C Disposable Popcorn Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 415
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31264
+ AegisName: C_Wings_of_Protector_Lower
+ Name: C Wings of Protector Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 990
+ - Id: 31265
+ AegisName: C_Straight_Pony_Blue_Mid
+ Name: C Straight Pony Blue Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1394
+ - Id: 31266
+ AegisName: C_Straight_Pony_Red_Mid
+ Name: C Straight Pony Red Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1392
+ - Id: 31267
+ AegisName: C_Straight_Pony_Yellow_Mid
+ Name: C Straight Pony Yellow Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1389
+ - Id: 31268
+ AegisName: C_Straight_Pony_Green_Mid
+ Name: C Straight_Pony Green Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1390
+ - Id: 31269
+ AegisName: C_Straight_Pony_Black_Mid
+ Name: C Straight Pony Black Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1371
+ - Id: 31270
+ AegisName: C_Straight_Pony_White_Mid
+ Name: C Straight Pony White Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1395
+ - Id: 31271
+ AegisName: C_Straight_Pony_Crimson_Mid
+ Name: C Straight Pony Crimson Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1393
+ - Id: 31272
+ AegisName: C_Straight_Pony_Purple_Mid
+ Name: C Straight Pony Purple Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1391
+ - Id: 31273
+ AegisName: C_Cowlick_Blue_Mid
+ Name: C Cowlick Blue Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1387
+ - Id: 31274
+ AegisName: C_Cowlick_Red_Mid
+ Name: C Cowlick Red Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1385
+ - Id: 31275
+ AegisName: C_Cowlick_Yellow_Mid
+ Name: C Cowlick Yellow Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1382
+ - Id: 31276
+ AegisName: C_Cowlick_Green_Mid
+ Name: C Cowlick Green Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1383
+ - Id: 31277
+ AegisName: C_Cowlick_Black_Mid
+ Name: C Cowlick Black Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1372
+ - Id: 31278
+ AegisName: C_Cowlick_White_Mid
+ Name: C Cowlick White Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1388
+ - Id: 31279
+ AegisName: C_Cowlick_Crimson_Mid
+ Name: C Cowlick Crimson Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1386
+ - Id: 31280
+ AegisName: C_Cowlick_Purple_Mid
+ Name: C Cowlick Purple Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1384
+ - Id: 31281
+ AegisName: C_Loose_Wave_Twin_Blue_Mid
+ Name: C Loose Wave Twin Blue Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1401
+ - Id: 31282
+ AegisName: C_Loose_Wave_Twin_Red_Mid
+ Name: C Loose Wave Twin Red Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1399
+ - Id: 31283
+ AegisName: C_Loose_Wave_Twin_Yellow_Mid
+ Name: C Loose Wave Twin Yellow Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1396
+ - Id: 31284
+ AegisName: C_Loose_Wave_Twin_Green_Mid
+ Name: C Loose Wave Twin Green Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1397
+ - Id: 31285
+ AegisName: C_Loose_Wave_Twin_Black_Mid
+ Name: C Loose Wave Twin Black Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1373
+ - Id: 31286
+ AegisName: C_Loose_Wave_Twin_White_Mid
+ Name: C Loose Wave Twin White Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1402
+ - Id: 31287
+ AegisName: C_Loose_Wave_Twin_Crimson_Mid
+ Name: C Loose Wave Twin Crimson Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1400
+ - Id: 31288
+ AegisName: C_Loose_Wave_Twin_Purple_Mid
+ Name: C Loose Wave Twin Purple Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1398
+ - Id: 31289
+ AegisName: C_Black_Wing_Ears_Lower
+ Name: C Black Wing Ears Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1336
+ - Id: 31290
+ AegisName: C_Angels_Feather_Cap
+ Name: C Angels Feather Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 929
+ - Id: 31291
+ AegisName: C_Devils_Feather_Cap
+ Name: C Devils Feather Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 930
+ - Id: 31293
+ AegisName: C_Kings_Crown_Purple
+ Name: C Crown of Ancient King Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1651
+ - Id: 31294
+ AegisName: C_Jirant_Circlet_Red
+ Name: C Jirant Circlet Red
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1652
+ - Id: 31295
+ AegisName: C_Red_Wing_Hat
+ Name: C Red Wing Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 613
+ - Id: 31296
+ AegisName: C_Strawberry_in_Mouth
+ Name: C Strawberry in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 861
+ - Id: 31297
+ AegisName: C_Fruit_of_Love
+ Name: C Fruit of Love
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 140
+ - Id: 31298
+ AegisName: C_Sepia_Parade_Hat
+ Name: C Sepia Parade Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 682
+ - Id: 31299
+ AegisName: C_White_Rabbit
+ Name: C White Rabbit
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1656
+ - Id: 31300
+ AegisName: C_Warm_Cat_Muffler
+ Name: C Warm Cat Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1657
+ - Id: 31301
+ AegisName: C_Blinking_Eyes
+ Name: C Blinking Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1658
+ - Id: 31302
+ AegisName: C_Black_Magenta_Ribbon
+ Name: C Black Magenta Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1659
+ - Id: 31303
+ AegisName: C_Black_Ramen_Hat_
+ Name: C Black Ramen Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1338
+ - Id: 31304
+ AegisName: C_Summer_Fan
+ Name: C Summer Fan
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1051
+ - Id: 31306
+ AegisName: C_Toucan_Hat
+ Name: C Toucan Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 528
+ - Id: 31307
+ AegisName: C_Violet_Macaw
+ Name: C Violet Macaw
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 656
+ - Id: 31308
+ AegisName: C_Protect_Feathers
+ Name: C Protect Feathers
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1232
+ - Id: 31309
+ AegisName: C_Pure_White_Marching_Hat
+ Name: C Pure White Marching Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1470
+ - Id: 31310
+ AegisName: C_666_Black_Elven_Ears
+ Name: C 666 Black_ Elven Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 498
+ - Id: 31311
+ AegisName: C_Dolor_Thanatos_Mask
+ Name: C Dolor Thanatos Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 666
+ - Id: 31312
+ AegisName: C_Hades_Helm
+ Name: C Hades Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 523
+ - Id: 31313
+ AegisName: C_FallenAngelWingEar
+ Name: C Fallen Angel Wing Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1662
+ - Id: 31314
+ AegisName: C_Ghost_Holiday
+ Name: C Ghost Holiday
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1663
+ - Id: 31315
+ AegisName: C_Stall_Of_Angel
+ Name: C Stall of Angel
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1664
+ - Id: 31316
+ AegisName: C_C_FlutterButterfly_BL
+ Name: C Black Fluttering Butterfly
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1665
+ Script: |
+ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false);
+ - Id: 31317
+ AegisName: C_15th_Anniversary_Wing
+ Name: C 15th Anniversary Wing
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1660
+ - Id: 31318
+ AegisName: C_Gerhard_Von_Devi
+ Name: Costume Gerhard Von Devi
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1092
+ - Id: 31319
+ AegisName: C_Summer_Fan_
+ Name: C Summer Fan
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1051
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31320
+ AegisName: C_Pinwheel_Hat
+ Name: C Pinwheel Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 456
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 31321
+ AegisName: C_Shining_Sunflower
+ Name: C Shining Sunflower
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 681
+ - Id: 31322
+ AegisName: C_Candy_Hat
+ Name: C Candy Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 853
+ - Id: 31323
+ AegisName: C_Yellow_Hunting_Cap
+ Name: C Yellow Hunting Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 484
+ - Id: 31325
+ AegisName: C_Queen_Scarabas_Helmet
+ Name: C Queen Scarabas Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1231
+ Script: |
+ hateffect(HAT_EF_QSCARABA,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_QSCARABA,false);
+ - Id: 31326
+ AegisName: C_Rolf_Von_Ziege_666_II
+ Name: C Rolf Von Ziege 666 II
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 946
+ - Id: 31327
+ AegisName: C_Stretched_Nose_M
+ Name: C Wood Goblins Nose
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 737
+ - Id: 31328
+ AegisName: C_Faceworm_Eggshell
+ Name: C Faceworm Eggshell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1356
+ - Id: 31329
+ AegisName: C_Alice_Wig
+ Name: Costume Alice Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1673
+ - Id: 31330
+ AegisName: C_Fallen_Angel_Valletta
+ Name: Costume Fallen Angel Valletta
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1674
+ - Id: 31331
+ AegisName: C_Chung_E_Shinyon_Cap
+ Name: C Chung e Shinyon Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1675
+ - Id: 31332
+ AegisName: Khalitzburg_KN_Helm_BL
+ Name: C Black Khalitzburg Knight Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1676
+ - Id: 31368
+ AegisName: C_Harvest_Festa_Hat
+ Name: C Thanksgiving Memorial Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1677
+ - Id: 31369
+ AegisName: C_Straight_Long_WH_
+ Name: Costume Straight Long White
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1604
+ - Id: 31370
+ AegisName: C_Straight_Long_YLK
+ Name: Costume Straight Long Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1603
+ - Id: 31372
+ AegisName: C_Binit_Doll_Hat
+ Name: "Costume: Binit Doll"
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 358
+ - Id: 31373
+ AegisName: C_Crown_of_Ancient_king
+ Name: C Crown of Ancient king
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1412
+ - Id: 31374
+ AegisName: C_Explosion_gum
+ Name: C Explosion gum
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1414
+ - Id: 31375
+ AegisName: C_Mystic_Eye
+ Name: C Mystic Eye
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1490
+ - Id: 31376
+ AegisName: C_Ancient_Dragon_Coronet_Purple
+ Name: C Ancient Dragon Coronet Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1680
+ - Id: 31377
+ AegisName: C_Glastheim_Obeserver
+ Name: C Glastheim Obeserver
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1041
+ - Id: 31378
+ AegisName: C_Catharina_Von_Brad_60th
+ Name: C Catharina Von Brad 60th
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1527
+ - Id: 31379
+ AegisName: C_Wind-Up_Key
+ Name: C Wind-Up Key
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1335
+ - Id: 31380
+ AegisName: C_Crow
+ Name: C Crow
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1035
+ - Id: 31381
+ AegisName: C_Diabolic_Lapel
+ Name: Costume Diabolic Lapel
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1681
+ - Id: 31382
+ AegisName: C_Cat_Ears_Punkish
+ Name: Costume Cat Ears Punkish
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1682
+ - Id: 31383
+ AegisName: C_Volume_Low_Twin
+ Name: Costume Volume Low Twin
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1683
+ - Id: 31384
+ AegisName: C_False_Ears
+ Name: Costume False Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1684
+ - Id: 31385
+ AegisName: C_Gothic_Pumpkin_Head
+ Name: Costume Gothic Pumpkin Head
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1685
+ - Id: 31386
+ AegisName: C_Survive_Orb
+ Name: C Survive Orb
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1488
+ - Id: 31387
+ AegisName: C_Jjakk
+ Name: C Jjakk
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1687
+ - Id: 31388
+ AegisName: C_Garden_Of_Eden
+ Name: Costume Garden of Eden
+ Type: Armor
+ View: 1653
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31389
+ AegisName: C_White_Bird_Rose
+ Name: C White Bird Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1688
+ - Id: 31390
+ AegisName: C_Let_It_Snow
+ Name: C Let It Snow
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1690
+ - Id: 31391
+ AegisName: C_Floating_Stone_Of_Int
+ Name: C Floating Stone of Sage
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1230
+ EquipScript: |
+ sc_start SC_FSTONE,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_FSTONE;
+ - Id: 31392
+ AegisName: C_Radio_Antenna
+ Name: C Radio Antenna
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 347
+ - Id: 31393
+ AegisName: C_Vajra
+ Name: C Vajra
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 983
+ - Id: 31394
+ AegisName: C_Magician_White_Hat
+ Name: C Magician White Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 283
+ - Id: 31395
+ AegisName: C_Book_Of_Magic
+ Name: C Book of Magic
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1691
+ - Id: 31396
+ AegisName: C_Sorcerer_Hood
+ Name: C Sorcerer Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1692
+ - Id: 31397
+ AegisName: C_Pope_Sitting_Head
+ Name: C Sitting Pope
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1553
+ - Id: 31398
+ AegisName: C_Blinking_Thin_Eyes
+ Name: C Blinking Thin Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1693
+ - Id: 31399
+ AegisName: C_Darkness_Veil
+ Name: C Darkness Veil
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1694
+ - Id: 31400
+ AegisName: C_Ribbon
+ Name: C Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 17
+ - Id: 31401
+ AegisName: C_Nuns_Veil
+ Name: C Nuns Veil
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 176
+ - Id: 31402
+ AegisName: C_Idun_Green_Apple
+ Name: C Iduns Green Apple
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1698
+ - Id: 31403
+ AegisName: C_Wall
+ Name: C Wall
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1699
+ - Id: 31404
+ AegisName: C_Poring_Traffic_Light
+ Name: C Poring Traffic Light
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1700
+ - Id: 31405
+ AegisName: C_Eleanor_Wig_YL
+ Name: C Eleanor Wig Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1701
+ - Id: 31406
+ AegisName: C_Nydhog_Wig_WH
+ Name: C Nydhoggur Wig White
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1702
+ - Id: 31407
+ AegisName: C_Alice_Wig_PK
+ Name: C Alice Wig Peach
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1703
+ - Id: 31408
+ AegisName: C_Ragnarok_Rush_Goat
+ Name: C Ragnarok Rush Goat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 41
+ - Id: 31409
+ AegisName: C_Barrel_Helm
+ Name: C Barrel Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1498
+ - Id: 31410
+ AegisName: C_GodsHelm
+ Name: Costume God's Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1678
+ - Id: 31411
+ AegisName: C_Leo_Diadem
+ Name: C Leo Diadem
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 566
+ - Id: 31412
+ AegisName: C_Virgo_Crown
+ Name: C Virgo Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 573
+ - Id: 31413
+ AegisName: C_Taurus_Crown
+ Name: C_ Taurus Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 536
+ - Id: 31414
+ AegisName: C_Cancer_Diadem
+ Name: C Cancer Diadem
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 560
+ - Id: 31415
+ AegisName: C_Wanderer_Sakkat
+ Name: Costume Wanderer's Sakkat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 558
+ - Id: 31416
+ AegisName: C_SeraphimCoronet
+ Name: Costume Seraphim Coronet
+ Type: Armor
+ View: 1487
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31417
+ AegisName: C_Rice_Ball_Hat
+ Name: C Rice Ball Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 556
+ - Id: 31418
+ AegisName: C_Leek_In_Mouth
+ Name: C Green Onion in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 824
+ - Id: 31420
+ AegisName: C_SantaPoring_Promo
+ Name: C Shining Santa Poring
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 961
+ - Id: 31430
+ AegisName: C_Seppl_Hat_TW
+ Name: "Costume: Seppl Hat"
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1023
+ - Id: 31431
+ AegisName: C_Curupira_Hat_TW
+ Name: "Costume: Curupira Hat"
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 974
+ - Id: 31432
+ AegisName: C_Luwmin_Ice
+ Name: C Floating Ice
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1562
+ - Id: 31433
+ AegisName: C_Astro_Circle
+ Name: Costume Astro Circle
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1073
+ - Id: 31434
+ AegisName: C_Cloud_Burst
+ Name: C Cloud Burst
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 705
+ - Id: 31435
+ AegisName: C_Ghost_Magicians_Knit_Hat
+ Name: C Ghost Magicians Knit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 854
+ - Id: 31436
+ AegisName: C_Lazy_Cat
+ Name: C Lazy Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 274
+ - Id: 31437
+ AegisName: C_Baby_Penguin
+ Name: C Baby Penguin
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1705
+ - Id: 31438
+ AegisName: C_Fluffy_Angel_Cape
+ Name: C Fluffy Angel Cape
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1706
+ - Id: 31439
+ AegisName: C_Fluffy_Heart_Earmuffs
+ Name: C Fluffy Heart Earmuffs
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1707
+ - Id: 31440
+ AegisName: C_Snow_Bear_Food
+ Name: C Snow Bear Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1708
+ - Id: 31441
+ AegisName: C_Penguin_Cap_BU
+ Name: C Penguin Cap Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1709
+ - Id: 31442
+ AegisName: C_Smile_Mask_Middle
+ Name: C Smile Mask Middle
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 65
+ - Id: 31443
+ AegisName: C_Munak_Hat_
+ Name: C Munak Hat Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 51
+ - Id: 31444
+ AegisName: C_Bongun_Hat_
+ Name: C Bongun Hat Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 139
+ - Id: 31446
+ AegisName: C_Toy_Syringe
+ Name: C Toy Syringe
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 842
+ - Id: 31447
+ AegisName: C_Light_Moonlight_Hat
+ Name: C Light Moonlight_Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 913
+ - Id: 31448
+ AegisName: C_Stings_Silk_Ribbon
+ Name: C Stings Silk Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1457
+ - Id: 31449
+ AegisName: C_Blue_Rose_Eyepatch
+ Name: C Blue Rose Eyepatch
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1712
+ - Id: 31450
+ AegisName: C_Lolita_Two_Side_Up
+ Name: C Lolita Two Side Up
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1713
+ - Id: 31451
+ AegisName: C_Blue_Frill_Ribbon
+ Name: C Blue Frill Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1714
+ - Id: 31452
+ AegisName: C_White_Cat
+ Name: C White Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1715
+ - Id: 31453
+ AegisName: C_L_RibbonMuff_Black
+ Name: C Large Ribbon Muffler Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1716
+ - Id: 31454
+ AegisName: C_Love_Feelings
+ Name: C Love Feelings
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1717
+ - Id: 31455
+ AegisName: C_Enchanted_Dog
+ Name: C Super Cute Dog
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1718
+ - Id: 31456
+ AegisName: C_Baby_Leopard_Cat
+ Name: C Baby Leopard Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1719
+ - Id: 31457
+ AegisName: C_Laughing_Wonderful_Wolf_Hat
+ Name: C Laughing Wonderful Wolf Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1016
+ - Id: 31459
+ AegisName: C_Sweet_Bonbon
+ Name: Costume Sweets Bonbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 853
+ - Id: 31460
+ AegisName: C_Blessing_Sky_Lantern
+ Name: C Blessing Sky Lantern
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1720
+ - Id: 31461
+ AegisName: C_Male_Poring_Earmuff
+ Name: Costume Marin Earrings
+ Type: Armor
+ View: 1160
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31463
+ AegisName: C_Flying_Drone
+ Name: C Flying Drone
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1561
+ - Id: 31464
+ AegisName: C_Bloom_Afro
+ Name: C Bloom Afro
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 837
+ - Id: 31465
+ AegisName: C_Robin_Egg_Minihat
+ Name: C Robin Egg Minihat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1722
+ - Id: 31466
+ AegisName: C_Holy_Eggshell
+ Name: C Holy Egg Shell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 537
+ - Id: 31467
+ AegisName: C_Evil_Eggshell
+ Name: C Evil Eggshell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 999
+ - Id: 31468
+ AegisName: C_Stripe_Hat
+ Name: C Stripe Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1728
+ - Id: 31469
+ AegisName: C_Eleanor_Wig_R
+ Name: Rental C Eleanors Wig Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1502
+ - Id: 31470
+ AegisName: C_Scroll_of_Tengu
+ Name: C Scroll of Tengu
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1445
+ - Id: 31471
+ AegisName: C_Celestial_Flower
+ Name: C Celestial Flower
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 438
+ - Id: 31472
+ AegisName: C_Fairy_Feathers
+ Name: C Fairy Feathers
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1723
+ - Id: 31473
+ AegisName: C_Tipsy
+ Name: C Tipsy
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1724
+ - Id: 31474
+ AegisName: C_Straight_Long_BL
+ Name: C Straight Long Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1725
+ - Id: 31475
+ AegisName: C_Black_Fox_Ear_Ribbon
+ Name: C Black Fox Ears Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1726
+ - Id: 31476
+ AegisName: C_Cherry_Blossom_Hat_YL
+ Name: C Yellow Cherry Blossom Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1727
+ - Id: 31477
+ AegisName: C_Straight_Long_BL_
+ Name: Rental C Straight Long Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1725
+ - Id: 31478
+ AegisName: C_Eleanor_Wig_
+ Name: C Eleanors Wig Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1502
+ - Id: 31479
+ AegisName: C_ManyStars_TW
+ Name: Costume Group of Stars
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1729
+ Script: |
+ hateffect(HAT_EF_MANYSTARS,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_MANYSTARS,false);
+ - Id: 31481
+ AegisName: C_CatCoffeeCup_TW
+ Name: C TriColor CatCup
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1731
+ - Id: 31482
+ AegisName: C_LunaticMuffler_TW
+ Name: Costume Lunatic Shawl
+ Type: Armor
+ View: 1732
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31483
+ AegisName: C_CatEarRibbon_TW
+ Name: Costume Cat Ear Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1733
+ - Id: 31484
+ AegisName: C_JP_EV13
+ Name: C BearCompanion Female
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1736
+ - Id: 31485
+ AegisName: C_JP_EV14
+ Name: C BearCompanion Male
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1737
+ - Id: 31486
+ AegisName: C_Divers_Goggles
+ Name: C Diver's Goggles
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 10
+ - Id: 31487
+ AegisName: C_Eye_Bandage
+ Name: C Eye Bandage
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 13
+ - Id: 31488
+ AegisName: C_MVP
+ Name: Costume MVP
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1738
+ - Id: 31489
+ AegisName: C_Bouquet_Hat
+ Name: Costume Bouquet Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1739
+ - Id: 31490
+ AegisName: C_Poring_Muffler
+ Name: C Poring Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1740
+ - Id: 31491
+ AegisName: C_Orange_Tabby_Cat
+ Name: C Orange Tabby Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1741
+ - Id: 31492
+ AegisName: C_Cat_Ears_Cape_Brown
+ Name: C Brown Cat Ears Cape
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1742
+ - Id: 31493
+ AegisName: C_Volume_Low_Twin_WH
+ Name: C Volume Low Twin WH
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1743
+ - Id: 31494
+ AegisName: C_Volume_Low_Twin_Upper
+ Name: C Volume Low Twin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1683
+ - Id: 31495
+ AegisName: C_Lolita_Two_Side_Up_
+ Name: C Lolita Two Side Up Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1713
+ - Id: 31496
+ AegisName: C_Yggdrasil_Crown
+ Name: C Yggdrasil Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 746
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1745
+ - Id: 31499
+ AegisName: C_Easter_Egg_Shell
+ Name: C Easter Egg Shell
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 537
+ - Id: 31504
+ AegisName: C_Starving_Fish_Hat
+ Name: C Large Hungry Fish
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 844
+ - Id: 31505
+ AegisName: C_Falcon_Mask
+ Name: C Falcon Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 782
+ - Id: 31506
+ AegisName: C_Cat_Ear_Bandana
+ Name: C Cat Ear Bandana
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1587
+ - Id: 31507
+ AegisName: C_Drooping_Cat_Yellow
+ Name: C Drooping Cat Yellow
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 278
+ - Id: 31508
+ AegisName: C_Isabella_Blue_Ears
+ Name: C Isabella Blue Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1032
+ - Id: 31509
+ AegisName: C_Fawn_Ear
+ Name: C Fawn Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1751
+ - Id: 31510
+ AegisName: C_ShortHair_CatEar
+ Name: C Short Haired Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1752
+ - Id: 31511
+ AegisName: C_LongHair_CatEar
+ Name: C Long Haired Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1753
+ - Id: 31512
+ AegisName: C_Panda_Rabbit
+ Name: C Panda Rabbit
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1754
+ - Id: 31513
+ AegisName: C_Black_Rabbit_Ears
+ Name: C Black Rabbit Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1755
+ - Id: 31516
+ AegisName: C_Mini_Melon
+ Name: C Mini Melon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1758
+ - Id: 31517
+ AegisName: C_JP_EV15
+ Name: C Fluffy Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1762
+ - Id: 31518
+ AegisName: C_Popping_Popcorn_Hat
+ Name: C Popping Popcorn Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1763
+ - Id: 31519
+ AegisName: C_Noodles_Hat
+ Name: C Noodles Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1764
+ - Id: 31520
+ AegisName: C_Popcorn_Hat
+ Name: C Popcorn Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 415
+ - Id: 31521
+ AegisName: C_Yuzu_Helmet
+ Name: C Yuzu Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 791
+ - Id: 31522
+ AegisName: C_Orange_Helmet
+ Name: C Orange Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 841
+ - Id: 31523
+ AegisName: C_Pomelo_Helmet
+ Name: C Pomelo Helmet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 924
+ - Id: 31524
+ AegisName: C_Bento_Hat
+ Name: C Bento Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1766
+ - Id: 31526
+ AegisName: C_Shaman_Hat
+ Name: C Shaman Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 596
+ - Id: 31527
+ AegisName: C_Radiant_Rainbow_Wings
+ Name: C Radiant Rainbow Wings
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1186
+ - Id: 31528
+ AegisName: C_Star_Dust_Hairband
+ Name: C Star Dust Hairband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 831
+ - Id: 31529
+ AegisName: C_Happy_Rabbit_Ribbon
+ Name: C Happy Rabbit Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1769
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1770
+ - Id: 31533
+ AegisName: C_Warm_Cat_Muffler_BL
+ Name: C Warm Cat Muffler Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1771
+ - Id: 31538
+ AegisName: C_Lovely_Feeling
+ Name: C Lovely Feeling
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1717
+ - Id: 31540
+ AegisName: C_GeminiS58_Eyes_Red
+ Name: C GeminiS58 Eyes Red
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1654
+ - Id: 31541
+ AegisName: C_Drosera_Hairpin
+ Name: C Drosera Hairpin
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 850
+ - Id: 31542
+ AegisName: C_Clay_Poring_Jar
+ Name: C Clay Poring Jar
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1634
+ - Id: 31543
+ AegisName: C_Siorava_Hat
+ Name: C Siorava Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1774
+ - Id: 31544
+ AegisName: C_Piamette_Curls
+ Name: Costume Piamette Curls
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1775
+ - Id: 31545
+ AegisName: C_Eremes_Scarf_BU
+ Name: C Eremes Scarf Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1776
+ - Id: 31546
+ AegisName: C_Clock_Casket_RD
+ Name: C Clock Casket Red
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1777
+ - Id: 31547
+ AegisName: C_Poporing_Mascot_Head
+ Name: C Poporing Mascot Head
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1778
+ - Id: 31548
+ AegisName: C_Love_Cheek_Lower
+ Name: C Love Cheeks Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1318
+ - Id: 31549
+ AegisName: C_Little_Aquarium_Lower
+ Name: C Little Aquarium Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1363
+ - Id: 31550
+ AegisName: C_Tone_of_Gold_Mid
+ Name: C Tone of Gold Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1447
+ - Id: 31551
+ AegisName: C_Black_Glasses_Lower
+ Name: C Black Glasses Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 404
+ - Id: 31552
+ AegisName: C_Blue_Ribbon_Mid
+ Name: C Blue Ribbon Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 407
+ - Id: 31553
+ AegisName: C_Wings_Of_Victory_Mid
+ Name: C Wings Of Victory Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 365
+ - Id: 31554
+ AegisName: C_Bread_Bag_Mid
+ Name: C Bread Bag Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 412
+ - Id: 31555
+ AegisName: C_Hoplite_Helmet_Upper
+ Name: C Hoplite Helmet Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 660
+ - Id: 31556
+ AegisName: C_Moonlight_Flower_Hat_Upper
+ Name: C Moonlight Flower Hat Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 268
+ - Id: 31559
+ AegisName: C_Royalguard_Necklace
+ Name: C Royal Guard Necklace
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1629
+ - Id: 31560
+ AegisName: C_Clergy_Nurse_Cap
+ Name: C Nurse Cap of Clergy
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1359
+ - Id: 31561
+ AegisName: C_Heavenly_Dark_Flame
+ Name: C Heavenly Dark Flame
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1008
+ - Id: 31562
+ AegisName: C_Zealotus Doll
+ Name: C Zealotus Doll
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1376
+ - Id: 31563
+ AegisName: C_Blue_Eye_Shadow
+ Name: C Blue Eye Shadow
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1020
+ - Id: 31564
+ AegisName: C_Variant_Veil
+ Name: C Variant Veil
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1785
+ - Id: 31565
+ AegisName: C_Princess_Ribbon_Crown
+ Name: C Princess Ribbon Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1786
+ - Id: 31566
+ AegisName: C_Stole_Of_Dominion
+ Name: C Stole Of Dominion
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1784
+ - Id: 31567
+ AegisName: C_Sheep_Horn
+ Name: C Sheep Horns
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1783
+ - Id: 31568
+ AegisName: C_Floating_Ball_TW
+ Name: Costume Floating Ball
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1760
+ - Id: 31569
+ AegisName: C_OpenAir_Headset
+ Name: C Open Air Headset
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1655
+ - Id: 31570
+ AegisName: C_Cyclops_Visor
+ Name: C Cyclops Visor
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 207
+ - Id: 31571
+ AegisName: C_Guardian_Processor
+ Name: C Guardian Processor
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1552
+ - Id: 31572
+ AegisName: C_Mobile_Pursuit_System
+ Name: C Mobile Pursuit System
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1788
+ - Id: 31573
+ AegisName: C_Mecha_Cat_Ears
+ Name: C Mecha Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1789
+ - Id: 31574
+ AegisName: C_Cyber_Income
+ Name: C Cyber Income
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1790
+ - Id: 31575
+ AegisName: C_Electro_Two_Sides_Up
+ Name: C Electro Two Sides Up
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1791
+ - Id: 31576
+ AegisName: C_Moon_Rabbit_Hat
+ Name: C Moon Rabbit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 455
+ - Id: 31577
+ AegisName: C_Roast_Memory_Upper
+ Name: C Roast Memory Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1576
+ - Id: 31578
+ AegisName: C_Alchemist_Mask_ML
+ Name: C Alchemist Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1497
+ - Id: 31579
+ AegisName: C_Love_Games
+ Name: C I LOVE GAMES
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1306
+ - Id: 31580
+ AegisName: C_Autumn_Flavor
+ Name: C Autumn Flavor
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1792
+ - Id: 31581
+ AegisName: C_Jack_Upper
+ Name: C Jack Upper
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1415
+ - Id: 31582
+ AegisName: C_Jirant_Circlet
+ Name: C Jirant Circlet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1644
+ - Id: 31583
+ AegisName: C_Will_O_Wisp_Lower
+ Name: C Will O Wisp Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 880
+ EquipScript: |
+ sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;
+ UnEquipScript: |
+ sc_end SC_STRANGELIGHTS;
+ - Id: 31586
+ AegisName: C_Poporing_Muffler
+ Name: C Poporing Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1797
+ - Id: 31588
+ AegisName: C_SnowFlake_Tiara
+ Name: C Snow Flower
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1799
+ Script: |
+ hateffect(HAT_EF_SNOWFLAKE_TIARA,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_SNOWFLAKE_TIARA,false);
+ - Id: 31589
+ AegisName: C_Golden_Majestic_Goat
+ Name: C Golden Majestic Goat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1800
+ - Id: 31590
+ AegisName: C_Designer_Brush
+ Name: C Designer's Brush
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1291
+ - Id: 31593
+ AegisName: C_Yellow_Scarf
+ Name: C Yellow Scarf
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1170
+ - Id: 31594
+ AegisName: C_Red_Pencil_In_Mouth
+ Name: C Red Pencil in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 931
+ - Id: 31595
+ AegisName: C_Book_File_Hat
+ Name: C Book File Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 423
+ - Id: 31596
+ AegisName: C_Spider_Seduction
+ Name: C Spider Seduction
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1711
+ - Id: 31597
+ AegisName: C_Golden_Fish_Hat
+ Name: C Golden Fish Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1645
+ - Id: 31598
+ AegisName: C_Forest_Guide
+ Name: C Forest Guide
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1802
+ - Id: 31599
+ AegisName: C_Medium_Wave
+ Name: C Medium Wave
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1803
+ - Id: 31600
+ AegisName: C_Kishu_Inu
+ Name: C Kishu Dog
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1804
+ - Id: 31601
+ AegisName: C_Under_Rim_Glasses_Blue
+ Name: C Under Rim Glasses Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1805
+ - Id: 31602
+ AegisName: C_Midgarts_Glory
+ Name: C Rune-Midgarts Glory
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1807
+ Script: |
+ hateffect(HAT_EF_MIDGARTS_GLORY,true);
+ UnEquipScript: |
+ hateffect(HAT_EF_MIDGARTS_GLORY,false);
+ - Id: 31606
+ AegisName: C_Autumn_Headband
+ Name: C Autumn Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1119
+ - Id: 31607
+ AegisName: C_Cat_Ear_Witch_Hat
+ Name: C Cat Ear Witch Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1808
+ - Id: 31608
+ AegisName: C_Magicstone_of_Grace
+ Name: C Magic Stone of Grace
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1420
+ - Id: 31609
+ AegisName: C_Noble_Mask
+ Name: C Noble Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1409
+ - Id: 31610
+ AegisName: C_Yellow_Wizardry_Hat
+ Name: C Yellow Wizardry Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 286
+ - Id: 31611
+ AegisName: C_Dark_Snake_Lord_Stall
+ Name: C Snake Lord Stole
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1810
+ - Id: 31612
+ AegisName: C_Large_Sorcerer_Crown
+ Name: C Large Sorcerer Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1811
+ - Id: 31614
+ AegisName: C_Fox
+ Name: C Fox
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1812
+ - Id: 31615
+ AegisName: Costume_Geisha_Make_Up
+ Name: C Geisha Make Up
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1813
+ - Id: 31616
+ AegisName: C_Sleep_Sheep_TW
+ Name: C Sleep Sheep
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1814
+ - Id: 31617
+ AegisName: C_Lady_Tanee_TW
+ Name: Costume Lady Tanee
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 1815
+ - Id: 31618
+ AegisName: C_DancingButterfly_TW
+ Name: Costume Butterfly Charm
+ Type: Armor
+ View: 1816
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1822
+ - Id: 31625
+ AegisName: C_Protect_Cloth
+ Name: C Protection Cloth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1761
+ - Id: 31628
+ AegisName: C_Bogy_Cap_TW
+ Name: C Dokebi
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 430
+ - Id: 31630
+ AegisName: Costume_Baphomet_Balloon
+ Name: C Baphomet Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1746
+ - Id: 31631
+ AegisName: Costume_Drooping_Schmidt
+ Name: C Drooping Schmidt
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1859
+ - Id: 31632
+ AegisName: Costume_Drooping_Oscar
+ Name: C Drooping Oscar
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1860
+ - Id: 31633
+ AegisName: Costume_Drooping_Heinrich
+ Name: C Drooping Heinrich
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1861
+ - Id: 31634
+ AegisName: Costume_Reindeer_Hair_Band
+ Name: C Reindeer Hair Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 836
+ - Id: 31635
+ AegisName: Costume_Flowing_Long_BD
+ Name: C Flowing Long Blonde
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1832
+ - Id: 31636
+ AegisName: Costume_Flowing_Long_SV
+ Name: C Flowing Long Silver
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1833
+ - Id: 31637
+ AegisName: Costume_Straight_Long_BU
+ Name: C Straight Long Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1834
+ - Id: 31638
+ AegisName: Costume_Straight_Long_RD
+ Name: C Straight Long Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1835
+ - Id: 31639
+ AegisName: Costume_Straight_Long_BD
+ Name: C Straight Long Blonde
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1836
+ - Id: 31640
+ AegisName: Costume_Straight_Long_GN
+ Name: C Straight Long Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1837
+ - Id: 31641
+ AegisName: Costume_Straight_Long_JBL
+ Name: C Straight Long Jet Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1838
+ - Id: 31642
+ AegisName: Costume_Straight_Long_LPP
+ Name: C Straight Long Light Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1839
+ - Id: 31643
+ AegisName: Costume_Straight_Long_OM
+ Name: C Straight Long Brown
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1840
+ - Id: 31644
+ AegisName: Costume_Straight_Long_PP
+ Name: C Straight Long Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1841
+ - Id: 31645
+ AegisName: Costume_Side_Pony_BU
+ Name: C Side Pony Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1842
+ - Id: 31646
+ AegisName: Costume_Side_Pony_RD
+ Name: C Side Pony Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1843
+ - Id: 31647
+ AegisName: Costume_Side_Pony_BD
+ Name: C Side Pony Blonde
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1844
+ - Id: 31648
+ AegisName: Costume_Side_Pony_GN
+ Name: C Side Pony Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1845
+ - Id: 31649
+ AegisName: Costume_Side_Pony_BL
+ Name: C Side Pony Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1846
+ - Id: 31650
+ AegisName: Costume_Side_Pony_WH
+ Name: C Side Pony White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1847
+ - Id: 31651
+ AegisName: Costume_Side_Pony_OM
+ Name: C Side Pony Brown
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1848
+ - Id: 31652
+ AegisName: Costume_Side_Pony_PP
+ Name: C Side Pony Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1849
+ - Id: 31653
+ AegisName: Costume_Chignon_BU
+ Name: C Chignon Blue
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1850
+ - Id: 31654
+ AegisName: Costume_Chignon_RB
+ Name: C Chignon Red
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1851
+ - Id: 31655
+ AegisName: Costume_Chignon_BD
+ Name: C Chignon Blonde
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1852
+ - Id: 31656
+ AegisName: Costume_Chignon_GN
+ Name: C Chignon Green
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1853
+ - Id: 31657
+ AegisName: Costume_Chignon_BL
+ Name: C Chignon Black
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1854
+ - Id: 31658
+ AegisName: Costume_Chignon_WH
+ Name: C Chignon White
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1855
+ - Id: 31659
+ AegisName: Costume_Chignon_OM
+ Name: C Chignon Brown
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1856
+ - Id: 31660
+ AegisName: Costume_Chignon_PP
+ Name: C Chignon Purple
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1857
+ - Id: 31664
+ AegisName: Costume_Desert_Wolf_Hat
+ Name: C Drooping Ernst Von Wolf 11th
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 783
+ - Id: 31667
+ AegisName: Costume_Poring_Beret
+ Name: C Poring Beret
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1825
+ - Id: 31668
+ AegisName: Costume_Majorous_Horns
+ Name: C Majorous Horns
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 888
+ - Id: 31669
+ AegisName: C_Adv_Whisper_Mask_M
+ Name: C Evolved Whisper Mask Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 458
+ - Id: 31670
+ AegisName: C_Miyabi_Long_Hair
+ Name: C Miyabi Long Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1864
+ - Id: 31671
+ AegisName: Costume_Twin_Cannon
+ Name: C Twin Cannon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1865
+ - Id: 31672
+ AegisName: Costume_Mermaid_Wig
+ Name: C Mermaid Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1866
+ - Id: 31673
+ AegisName: C_Picnic_Basket
+ Name: C Picnic Basket
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1867
+ - Id: 31674
+ AegisName: Costume_Jitterbug_Cap
+ Name: C Jitterbug Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1868
+ - Id: 31675
+ AegisName: Costume_Orange_Hat
+ Name: C Orange Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 620
+ - Id: 31676
+ AegisName: Costume_Orange_In_Mouth
+ Name: C Orange In Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 814
+ - Id: 31682
+ AegisName: Costume_Drooping_Elven_Ears
+ Name: C Drooping Elven Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 875
+ - Id: 31684
+ AegisName: Costume_Kururinpa_Tails
+ Name: C Kururinpa Tails
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1873
+ - Id: 31685
+ AegisName: Costume_Fluffy_Semi_Long
+ Name: C Fluffy Semi Long
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1874
+ - Id: 31686
+ AegisName: Costume_Desert_Wolf_Baby
+ Name: C Desert Wolf Baby
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1875
+ - Id: 31687
+ AegisName: Costume_Alchemist_Bag
+ Name: C Alchemist Bag
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1876
+ - Id: 31688
+ AegisName: C_Poring_On_Shoulder
+ Name: C Poring On Shoulder
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1877
+ - Id: 31689
+ AegisName: C_Piamette_Curls_
+ Name: C Piamette Curls
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1775
+ - Id: 31690
+ AegisName: Costume_Flame_Bird
+ Name: C Flame Bird
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 832
+ - Id: 31691
+ AegisName: C_Bell_Pigeon_Low
+ Name: Costume Bell of Pigeon Lower
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1034
+ - Id: 31692
+ AegisName: Costume_Dragon_Emperor_Wings
+ Name: C Dragon Emperor Wings
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1413
+ - Id: 31693
+ AegisName: C_LunaticMuffler
+ Name: C Lunatic Muffler
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1732
+ - Id: 31695
+ AegisName: Costume_Stem_In_Mouth
+ Name: C Stem in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 848
+ - Id: 31696
+ AegisName: Costume_Shark_Hat
+ Name: C Shark Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 503
+ - Id: 31697
+ AegisName: Costume_Bird_Nest
+ Name: C Bird Nest
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 201
+ - Id: 31698
+ AegisName: C_Pigtail_Red_Hood
+ Name: C Red Riding Hood
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1879
+ - Id: 31699
+ AegisName: C_Smiling_Eyes
+ Name: C Smiling Eyes
+ Type: Armor
+ Jobs:
+ All: true
+ Summoner: false
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1880
+ - Id: 31702
+ AegisName: Costume_Moon_Cat_Hat
+ Name: C Moon Cat Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1308
+ - Id: 31703
+ AegisName: Costume_Valentine_Hat
+ Name: C Love Valentine's Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 397
+ - Id: 31704
+ AegisName: Costume_Sweet_Valentine_Out
+ Name: C Sweet Valentine Out
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 865
+ - Id: 31705
+ AegisName: Costume_Red_White_Hat
+ Name: C Red Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 469
+ - Id: 31706
+ AegisName: Costume_Trident_Helmet
+ Name: C Trident Helm
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 810
+ - Id: 31707
+ AegisName: Costume_Nine_Tail_Fox_Hair
+ Name: C Nine Tail Fox Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1884
+ - Id: 31708
+ AegisName: Costume_Gothic_Skull_Ribbon
+ Name: C Gothic Skull Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1885
+ - Id: 31709
+ AegisName: Costume_Golden_Violet
+ Name: C Golden Violet
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1886
+ - Id: 31710
+ AegisName: Costume_Lucky_Hat
+ Name: C Lucky Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 740
+ - Id: 31711
+ AegisName: Costume_Jewel_Crown
+ Name: C Jewel Crown
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 88
+ - Id: 31712
+ AegisName: Costume_Oxygen_Mask
+ Name: C Oxygen Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 90
+ - Id: 31713
+ AegisName: Costume_Mystical_Fruit_Hat
+ Name: Costume Mystical Fruit Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 134
+ - Id: 31714
+ AegisName: Costume_Indian_Headband
+ Name: Costume Indian Headband
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 155
+ - Id: 31715
+ AegisName: Costume_Orange_Rabbit
+ Name: C Orange Rabbit
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1887
+ - Id: 31716
+ AegisName: Costume_Twinkling_Red_Eyes
+ Name: Costume Twinkling Red Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1888
+ - Id: 31717
+ AegisName: Costume_Medium_Wave_BD
+ Name: C Medium Wave Blonde
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1889
+ - Id: 31718
+ AegisName: Costume_Sky_Lantern_Mid
+ Name: C Blessing Sky Lantern Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1720
+ - Id: 31719
+ AegisName: Costume_Master_Of_Flames
+ Name: C Master Of Flames
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1890
+ - Id: 31720
+ AegisName: Costume_Vesper_Hat
+ Name: C Vesper Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1827
+ - Id: 31721
+ AegisName: Costume_Resonating_Drums
+ Name: C Resonating Drums
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1823
+ - Id: 31723
+ AegisName: Costume_TW_Rice_Ball
+ Name: C Tw Rice Ball
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 892
+ - Id: 31724
+ AegisName: Costume_TW_Bulgogi
+ Name: C Tw Bulgogi
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1773
+ - Id: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1893
+ - Id: 31730
+ AegisName: Costume_Volume_Low_Twin_SK
+ Name: C Volume Low Twin Sakura
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1894
+ - Id: 31731
+ AegisName: Costume_Sweets_Party
+ Name: C Sweets Party
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1896
+ - Id: 31732
+ AegisName: Costume_Bear_Balloon
+ Name: C Bear Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1734
+ - Id: 31733
+ AegisName: Costume_Phantom_Masquerade
+ Name: C Phantom Masquerade
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1899
+ - Id: 31734
+ AegisName: Costume_Cirtrus_Ribbon
+ Name: C Citrus Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1900
+ - Id: 31735
+ AegisName: Costume_Yawata_Seal
+ Name: C Yawata Seal
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1901
+ - Id: 31736
+ AegisName: Costume_Popcorn_Wig
+ Name: C Popcorn Wig
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1895
+ - Id: 31737
+ AegisName: C_Wings_Of_Lucifer
+ Name: Costume Lucifer's Wings
+ Type: Armor
+ View: 55
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Garment: true
+ - Id: 31762
+ AegisName: Costume_Gambler_Card
+ Name: C Heart Card in Mouth
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1679
+ - Id: 31763
+ AegisName: Costume_Fortier_Mask
+ Name: C Fortier Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 876
+ - Id: 31764
+ AegisName: C_Rainbow_Veil_Mid
+ Name: Costume Rainbow Veil Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 992
+ - Id: 31765
+ AegisName: C_Garnet_Tiara
+ Name: C Garnet Tiara
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1906
+ - Id: 31766
+ AegisName: C_Peony_Hair_Ornament
+ Name: C Peony Hair Ornament
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1907
+ - Id: 31769
+ AegisName: Costume_Orange_Bunny_Band
+ Name: C Orange Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 751
+ - Id: 31770
+ AegisName: Costume_Violet_Bunny_Band
+ Name: C Violet Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 752
+ - Id: 31771
+ AegisName: Costume_Blue_Bunny_Band
+ Name: C Blue Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 753
+ - Id: 31772
+ AegisName: Costume_Silver_Bunny_Band
+ Name: C Silver Bunny Band
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 754
+ - Id: 31783
+ AegisName: Costume_Doram_Balloon
+ Name: C Doram Baloon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1595
+ - Id: 31784
+ AegisName: Costume_Experimental_Goat_Cap
+ Name: C Experimental Goat Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1768
+ - Id: 31785
+ AegisName: Costume_Monster_Fish_Gill
+ Name: C Monster Fish Gills
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1218
+ - Id: 31786
+ AegisName: Costume_Red_Baby_Dragon_Hat
+ Name: C Red Baby Dragon Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1463
+ - Id: 31787
+ AegisName: C_SavageB_On_Shoulder
+ Name: C Savage Bebe On Shoulder
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1915
+ - Id: 31788
+ AegisName: C_Piamette_Curls_SV
+ Name: C Piamette Curls Silver
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1916
+ - Id: 31789
+ AegisName: Costume_Turkey_Hat
+ Name: C Turkey Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ - Id: 31791
+ AegisName: Costume_Pig_Mask
+ Name: C Pig Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1869
+ - Id: 31793
+ AegisName: Costume_Seraphim_Feather
+ Name: C Seraphim Feather
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1704
+ - Id: 31794
+ AegisName: Costume_Puppy_Ears_Hat
+ Name: C Puppy_Ears_Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 827
+ - Id: 31795
+ AegisName: C_Elephangel_TH_Mid
+ Name: C Elephangel Mid
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1745
+ - Id: 31796
+ AegisName: Costume_Drooping_Boto
+ Name: C Drooping Boto
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 657
+ - Id: 31797
+ AegisName: Costume_Shih_Tzu_Hair
+ Name: C Shih Tzu Hair
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1921
+ - Id: 31798
+ AegisName: C_Baby_Panda
+ Name: C Baby Panda
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1922
+ - Id: 31799
+ AegisName: C_Pretty_Bear_WH
+ Name: C Pretty White Bear
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1923
+ - Id: 31800
+ AegisName: Costume_BR_Twin_Ribbon
+ Name: C Brazil Twin Ribbon
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 575
+ - Id: 31801
+ AegisName: Costume_Karada_Meguri_Tea_Hat
+ Name: C Karada Meguri Tea Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 427
+ - Id: 31802
+ AegisName: Costume_Royal_Milk_Tea_Hat
+ Name: C Black Tea Kochakaden Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 428
+ - Id: 31803
+ AegisName: Costume_Master_Of_Wind
+ Name: C Master of Wind
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1924
+ - Id: 31805
+ AegisName: C_Sunglasses_Bball_Hat
+ Name: "Costume: Sunglass Baseball Cap"
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 812
+ - Id: 31813
+ AegisName: Costume_Lunatic_On_Shoulder
+ Name: C Lunatic On Shoulder
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1881
+ - Id: 31814
+ AegisName: Costume_Lunatic_Family_Balloon
+ Name: C Lunatic Family Balloon
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1809
+ - Id: 31815
+ AegisName: Costume_Angola_Intention
+ Name: C Angola Intention
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1925
+ - Id: 31816
+ AegisName: Costume_Moon_Messenger_Robe
+ Name: C Moon Messenger Robe
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1926
+ - Id: 31817
+ AegisName: Costume_Rabbit_Two_Side_Up
+ Name: C Rabbit Two Side Up
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1927
+ - Id: 31819
+ AegisName: Costume_Dullahan_Mask
+ Name: C Dullahan Mask
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1931
+ - Id: 31823
+ AegisName: Costume_Nose_Glasses
+ Name: C Nose Glasses
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1933
+ - Id: 31824
+ AegisName: Costume_Cat_Mask
+ Name: C Mask of Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ EquipLevelMin: 1
+ View: 1934
+ - Id: 31826
+ AegisName: Costume_Sunglass_Bear_Cap
+ Name: C Sunglass Bear Cap
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1935
+ - Id: 31827
+ AegisName: Costume_Durumagi
+ Name: C Durumagi
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1936
+ - Id: 31831
+ AegisName: Costume_Disguise_Mantle
+ Name: C Disguise Mantle
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1937
+ - Id: 31832
+ AegisName: C_Bicolor_Cat_Witch_Hat
+ Name: C Bicolor Cat Witch Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1938
+ - Id: 31833
+ AegisName: C_Halloween_CatShort
+ Name: C Halloween Short Haired Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1939
+ - Id: 31834
+ AegisName: C_Halloween_Cat_Long
+ Name: C Halloween Long Haired Cat Ears
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1940
+ - Id: 31837
+ AegisName: Costume_Shark_Head
+ Name: C Shark Head
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1919
+ - Id: 31840
+ AegisName: Costume_BJ_Headset_A
+ Name: C BJ Headset
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1942
+ - Id: 31841
+ AegisName: Costume_BJ_Headset_B
+ Name: C OnAir BJ Headset
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1943
+ - Id: 31844
+ AegisName: C_Mob_Scarf
+ Name: Costume Runaway Scarf
+ Type: Armor
+ View: 1568
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31845
+ AegisName: C_Palace_Guard_Cap
+ Name: Costume Guard's Hat
+ Type: Armor
+ View: 991
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31846
+ AegisName: C_Lovely_Ribbon_Hair
+ Name: Costume Lovely Ribbon Hair
+ Type: Armor
+ View: 1944
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31847
+ AegisName: c_Blinking_Eyes_Cocktai_BU
+ Name: Costume Blinking Blue Eyes
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 1945
+ - Id: 31848
+ AegisName: C_Rose_Gothic_Bonnet
+ Name: Costume Rose Gothic Bonnet
+ Type: Armor
+ View: 1946
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31849
+ AegisName: C_Runaway_Accelerator
+ Name: Costume Runaway Accelerator
+ Type: Armor
+ View: 1947
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31850
+ AegisName: C_Gift_of_Panagia
+ Name: Costume Crown of Faithful Faith
+ Type: Armor
+ View: 1948
+ Locations:
+ Costume_Head_Top: true
+ - Id: 31851
+ AegisName: C_Phalanx
+ Name: Costume Floating Shield
+ Type: Armor
+ View: 1949
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31853
+ AegisName: C_ZombieMask
+ Name: Costume Zombie Mask
+ Type: Armor
+ View: 1951
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31855
+ AegisName: Mushroom_Hair
+ Name: Costume Chocolate Mushroom Wig
+ Type: Armor
+ View: 1953
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31856
+ AegisName: C_Airy_Two_Side_Up_BD
+ Name: Costume Airy Two Side Up (Blonde)
+ Type: Armor
+ View: 1954
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Signon_Princ_Wave_RD
+ Name: Costume Signon Princess Wave (Red)
+ Type: Armor
+ View: 1957
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Signon_Princ_Wave_GN
+ Name: Costume Signon Princess Wave (Green)
+ Type: Armor
+ View: 1959
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Signon_Princ_Wave_WH
+ Name: Costume Signon Princess Wave (White)
+ Type: Armor
+ View: 1961
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Signon_Princ_Wave_PP
+ Name: Costume Signon Princess Wave (Purple)
+ Type: Armor
+ View: 1963
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Exotic_Bob_L_YL
+ Name: Costume Himelmez's Wig (Yellow)
+ Type: Armor
+ View: 1973
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Exotic_Bob_L_LPP
+ Name: Costume Himelmez's Wig (Light Purple)
+ Type: Armor
+ View: 1975
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: C_Exotic_Bob_R_BG
+ Name: Costume Himelmez's Wig (Blue Green)
+ Type: Armor
+ View: 1977
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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: 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
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1917
+ - Id: 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
+ Type: Armor
+ View: 1981
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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
+ Type: Armor
+ View: 1984
+ Locations:
+ Costume_Head_Top: true
+ - Id: 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
+ Type: Armor
+ View: 1830
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31916
+ AegisName: C_Frill_Collar
+ Name: Costume Frill Neckcap
+ Type: Armor
+ View: 1988
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31921
+ AegisName: C_Fairy_Long_CB
+ Name: Costume Fairy Long (Sakura)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 1992
+ - Id: 31922
+ AegisName: C_Fluffy_Semi_Long_SV
+ Name: Costume Fluffy Semi-Long (Silver)
+ Type: Armor
+ View: 1993
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31923
+ AegisName: C_Baby_Polar_Bear
+ Name: Costume Baby Polar Bear
+ Type: Armor
+ View: 1994
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 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: C_Mike_Stand
+ Name: Costume Standing Mic
+ Type: Armor
+ View: 2000
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31931
+ AegisName: C_Half_Rim_Glasses
+ Name: Costume Half Rim Glasses
+ Type: Armor
+ View: 2001
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 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: 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: C_Blink_Eyes_Sakura
+ Name: Costume Blinking Purple Eyes
+ Type: Armor
+ View: 2004
+ Locations:
+ Costume_Head_Mid: true
+ - Id: 31936
+ AegisName: C_Nut_Donut_In_Mouth
+ Name: Costume Honeynut Donut
+ Type: Armor
+ View: 736
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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
+ Type: Armor
+ View: 2007
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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
+ Type: Armor
+ View: 2011
+ Locations:
+ Costume_Head_Low: true
+ - Id: 31959
+ AegisName: C_RK_Hair_BL
+ Name: Costume Firm Wave Hair(Black)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2062
+ - Id: 31960
+ AegisName: C_RK_Hair_BU
+ Name: Costume Firm Wave Hair(Blue)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2063
+ - Id: 31961
+ AegisName: C_RK_Hair_GN
+ Name: Costume Firm Wave Hair(Green)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2064
+ - Id: 31962
+ AegisName: C_RK_Hair_OM
+ Name: Costume Firm Wave Hair(Brown)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2065
+ - Id: 31963
+ AegisName: C_RK_Hair_PK
+ Name: Costume Firm Wave Hair(Pink)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2066
+ - Id: 31964
+ AegisName: C_RK_Hair_PP
+ Name: Costume Firm Wave Hair(Purple)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2067
+ - Id: 31965
+ AegisName: C_RK_Hair_RD
+ Name: Costume Firm Wave Hair(Red)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2068
+ - Id: 31966
+ AegisName: C_RK_Hair_WH
+ Name: Costume Firm Wave Hair(White)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2069
+ - Id: 31967
+ AegisName: C_RK_Hair_YL
+ Name: Costume Firm Wave Hair(Yellow)
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2070
+ - Id: 32004
+ AegisName: Probation_Lance
+ Name: Trial Royal Guard's Lance
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Attack: 140
+ Range: 3
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 3
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;
+ bonus bBaseAtk,6*(min(BaseLevel,160)/10);
+ if (getrefine()>=7) {
+ bonus bLongAtkRate,getskilllv("KN_SPEARMASTERY");
+ }
+ - Id: 32005
+ AegisName: Illusion_Pole_Axe
+ Name: Illusion Pole Axe
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 1500
+ Attack: 190
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bStr,3;
+ bonus bInt,2;
+ bonus bDex,2;
+ if (.@r >= 13) {
+ .@val = -2000;
+ } else if (.@r >= 9) {
+ .@val = -1000;
+ }
+ bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val;
+ - Id: 32013
+ AegisName: Metal_Stick
+ Name: Metal Stick
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 2000
+ Attack: 180
+ Range: 3
+ Slots: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",10;
+ if (.@r > 6) {
+ bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0);
+ }
+ if (.@r > 11) {
+ bonus bDelayrate,-15;
+ }
+ - Id: 32014
+ AegisName: Brute_Spear
+ Name: Brute Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Attack: 150
+ Range: 3
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bIgnoreDefRaceRate,RC_All,5*.@r;
+ bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0);
+ if (.@r > 9) {
+ bonus bMaxHPrate,15;
+ bonus bMaxSPrate,15;
+ }
+ - Id: 32018
+ AegisName: Undine_Spear_K
+ Name: Aquatic Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 1200
+ Attack: 180
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bBaseAtk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus bLongAtkRate,.@r/3*4;
+ }
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",20;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;
+ }
+ - Id: 32019
+ AegisName: Boost_Lance_OS
+ Name: Boost Lance-OS
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 190
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@aspd = 3;
+ if (.@r >= 7) {
+ .@aspd += 7;
+ if (.@r >= 9) {
+ .@dmg = 20;
+ if (.@r >= 11) {
+ .@dmg += 15;
+ }
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg;
+ }
+ }
+ bonus bAspdRate,.@aspd;
+ - Id: 32021
+ AegisName: Evt_Undine_Spear_K
+ Name: Sealed Aquatic Spear
+ Type: Weapon
+ SubType: Staff
+ Attack: 180
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 99
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bLongAtkRate,4*(.@r/3);
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",35;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",35;
+ }
+ else if (.@r>=7) {
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15;
+ }
+ - Id: 32023
+ AegisName: Argen_Blanco
+ Name: Argen Blanco
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 3
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9)
+ bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500;
+ if (.@r>=11)
+ bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20;
+ - Id: 32024
+ AegisName: Harve
+ Name: Harve
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1500
+ Attack: 210
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",40;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",30;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"PA_SHIELDCHAIN",20;
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",20;
+ }
+ - Id: 32025
+ AegisName: Fortridge
+ Name: Fortridge
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1700
+ Attack: 205
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 32026
+ AegisName: Ein_1HSPEAR
+ Name: Blocking Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 3000
+ Attack: 210
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",10;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 32027
+ AegisName: G_Knight_Spear
+ Name: Guardian Knight Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Weight: 4000
+ Attack: 205
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 32107
+ AegisName: Black_Circle
+ Name: Black Circle
+ Type: Weapon
+ SubType: Musical
+ Weight: 1200
+ Attack: 100
+ MagicAttack: 190
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,4*.@r;
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"WM_METALICSOUND",30;
+ if (.@r>=11)
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ - Id: 32108
+ AegisName: Antique_Cello
+ Name: Antique Cello
+ Type: Weapon
+ SubType: Musical
+ Weight: 1200
+ Attack: 180
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-10;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9)
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ if (.@r>=11)
+ bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;
+ - Id: 32110
+ AegisName: Ein_1HLUTE
+ Name: Safety Lute
+ Type: Weapon
+ SubType: Musical
+ Weight: 1400
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ }
+ - Id: 32111
+ AegisName: R_Cello
+ Name: Royal Chello
+ Type: Weapon
+ SubType: Musical
+ Weight: 1000
+ Attack: 90
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus bMatk,180;
+ bonus bUnbreakableWeapon;
+ bonus bMatk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;
+ bonus2 bSkillAtk,"WM_METALICSOUND",20;
+ bonus2 bSkillAtk,"WM_REVERBERATION",20;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;
+ }
+ - Id: 32202
+ AegisName: Comp_All_In_One_Ring
+ Name: Ring of Apology
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAllStats,1;
+ skill "AL_TELEPORT",1;
+ skill "AL_HEAL",1;
+ bonus bNoCastCancel;
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ - Id: 32203
+ AegisName: Accelerator_Chip
+ Name: Accelerator Chip
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ bonus bAspdRate,5;
+ - Id: 32204
+ AegisName: Immortal_Dog_Tag
+ Name: Immortal Dog Tag
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bBaseAtk,50;
+ bonus bMatk,50;
+ bonus2 bSubRace,RC_Undead,4;
+ - Id: 32206
+ AegisName: Prta_Mil_Glove
+ Name: Prontera Militia Glove
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bVit,5;
+ bonus bMdef,5;
+ bonus bAspdRate,5;
+ bonus2 bSubRace,RC_Player_Doram,3;
+ bonus2 bSubRace,RC_Player_Human,3;
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus2 bSubEle,Ele_Wind,5;
+ bonus2 bSubEle,Ele_Fire,5;
+ - Id: 32207
+ AegisName: Illusion_B_R
+ Name: Illusion Booster R
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 32208
+ AegisName: Illusion_B_L
+ Name: Illusion Booster L
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 32209
+ AegisName: Illusion_BC_R
+ Name: Illusion Battle chip R
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 32210
+ AegisName: Illusion_BC_L
+ Name: Illusion Battle chip L
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 32221
+ AegisName: Time_Overload_Ring
+ Name: Temporal Transcendence Ring
+ Type: Armor
+ Defense: 15
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 99
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ - Id: 32222
+ AegisName: Brooch_Of_Hero
+ Name: Brooch of Hero
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMatkRate,5;
+ if ((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) {
+ bonus bMaxHPrate,10;
+ bonus2 bAddRace,RC_All,5;
+ }
+ if ((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) {
+ bonus bAspdRate,10;
+ bonus2 bAddRace,RC_All,5;
+ }
+ if ((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) {
+ bonus bUseSPrate,-10;
+ bonus2 bAddRace,RC_All,5;
+ }
+ - Id: 32227
+ AegisName: Fenrir_Chain
+ Name: Hrodvitnir's Chain
+ Type: Armor
+ Buy: 20
+ Weight: 300
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAspdRate,5;
+ bonus bDelayrate,-5;
+ skill "AL_TELEPORT",1;
+ - Id: 32228
+ AegisName: Schmidt_Insignia_Power
+ Name: King Schmidt's Power Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus2 bAddClass,Class_All,10;
+ - Id: 32229
+ AegisName: Schmidt_Insignia_Divine_Power
+ Name: King Schmidt's Divine Power Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus bMatkRate,10;
+ - Id: 32230
+ AegisName: Schmidt_Insignia_Hundred_Lucks
+ Name: King Schmidt's Hundred Lucks Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus bCritAtkRate,7;
+ - Id: 32231
+ AegisName: Schmidt_Insignia_Rigid_Body
+ Name: King Schmidt's Rigid Body Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus bMaxHPrate,10;
+ - Id: 32232
+ AegisName: Schmidt_Insignia_Flash
+ Name: King Schmidt's Flash Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus bAspdRate,5;
+ - Id: 32233
+ AegisName: Schmidt_Insignia_Celestial
+ Name: King Schmidt's Celestial Insignia
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 150
+ Script: |
+ bonus bLongAtkRate,7;
+ - Id: 32234
+ AegisName: UnrivaledRing
+ Name: Warrior's Ring
+ Type: Armor
+ Weight: 300
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 32237
+ AegisName: Celine_Brooch_K
+ Name: Celine's Brooch
+ Type: Armor
+ Buy: 10
+ Weight: 500
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMatkRate,5;
+ bonus bVariableCastrate,-10;
+ - Id: 32238
+ AegisName: Illusion_Morpheus's_Ring
+ Name: Illusion Morpheus's Ring
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bInt,3;
+ bonus bMaxSPrate,5;
+ - Id: 32239
+ AegisName: Illusion_Morpheus's_Bracelet
+ Name: Illusion Morpheus's Bracelet
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bInt,3;
+ bonus bMaxSPrate,5;
+ - Id: 32242
+ AegisName: Old_DetachmentsRing_J
+ Name: Old Detachment Ring
+ Type: Armor
+ Buy: 20
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bMdef,10;
+ bonus2 bSubRace,RC_Player_Human,3;
+ - Id: 32248
+ AegisName: Ein_SAFETY_PENDR
+ Name: Safety Pendant R
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,5;
+ bonus bAllStats,5;
+ - Id: 32249
+ AegisName: Ein_SAFETY_PENDL
+ Name: Safety Pendant B
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAllStats,5;
+ bonus bVariableCastrate,-5;
+ - Id: 32250
+ AegisName: Ein_SAFETY_EPAULR
+ Name: Safety Epaulet R
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 32251
+ AegisName: Ein_SAFETY_EPAULL
+ Name: Safety Epaulet B
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 32252
+ AegisName: H_AD_Clip
+ Name: High Adventurer Clip
+ Type: Armor
+ Defense: 2
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-5;
+ - Id: 32258
+ AegisName: RingofJupiter
+ Name: Ring of Jupiter
+ Type: Armor
+ Buy: 20
+ Weight: 500
+ Defense: 2
+ Slots: 1
+ Locations:
+ 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;
+ bonus2 bSubRace,RC_Player_Doram,3;
+ }
+ }
+ - Id: 32262
+ AegisName: Ball_Of_RasenHuuma
+ Name: Rasen Fuma's Orb
+ Type: Armor
+ Buy: 20
+ Weight: 100
+ Slots: 1
+ Locations:
+ 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,1000,1;
+ }
+ if (getskilllv("KO_MEIKYOUSISUI")>=5) {
+ bonus bSPDrainValue,2;
+ bonus2 bSkillCooldown,"KO_IZAYOI",-25000;
+ }
+ if (getskilllv("KO_SETSUDAN")>=5) {
+ bonus2 bVariableCastrate,"KO_HUUMARANKA",-50;
+ }
+ - Id: 32263
+ AegisName: Shield_Ring
+ Name: Shield Ring
+ Type: Armor
+ Buy: 20
+ Weight: 400
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bStr,5;
+ bonus bInt,5;
+ bonus bDex,5;
+ bonus2 bAddClass,Class_All,5;
+ if (getskilllv("LG_EARTHDRIVE") == 5)
+ bonus bDelayrate,-30;
+ if (getskilllv("LG_INSPIRATION") == 5)
+ bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500;
+ if (getskilllv("CR_DEVOTION") == 5) {
+ bonus bStr,5;
+ bonus bInt,5;
+ bonus bDex,5;
+ bonus bBaseAtk,100;
+ }
+ if (getskilllv("LG_PINPOINTATTACK") == 5) {
+ bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500;
+ bonus2 bSkillUseSP,"LG_EARTHDRIVE",25;
+ }
+ - Id: 32301
+ AegisName: Illusion_Gold_Lux
+ Name: Illusion Gold Lux
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 1800
+ Attack: 160
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHit,10;
+ bonus bLongAtkRate,3*(.@r/2);
+ if (.@r >= 7) {
+ bonus2 bSkillAtk,"GS_DESPERADO",40;
+ if (.@r >= 9) {
+ bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000;
+ if (.@r >= 11) {
+ bonus2 bSkillAtk,"RL_FIREDANCE",30;
+ }
+ }
+ }
+ - Id: 32302
+ AegisName: Crimson_Rose
+ Name: Crimson Rose
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 700
+ Attack: 150
+ Range: 7
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10*(.@r/2);
+ bonus bAspdRate,3*(.@r/3);
+ if (.@r >= 7) {
+ bonus bAspd,1;
+ 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: Ein_1HGUN
+ Name: Bolt Revolver
+ Type: Weapon
+ SubType: Revolver
+ Weight: 1800
+ Attack: 200
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus2 bSkillAtk,"RL_FIREDANCE",15;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bBaseAtk,60;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RL_FIREDANCE",20;
+ autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 32304
+ AegisName: R_Revolver
+ Name: Royal Revolver
+ Type: Weapon
+ SubType: Revolver
+ Weight: 700
+ Attack: 150
+ Range: 7
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,15;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RL_FIREDANCE",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000;
+ }
+ - Id: 32350
+ AegisName: Farthezan
+ Name: Farthezan
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 1100
+ Attack: 130
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"PA_PRESSURE",40;
+ bonus bVariableCastrate,-.@r;
+ if (.@r>=9)
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",30;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",20;
+ bonus2 bSkillAtk,"PA_PRESSURE",20;
+ }
+ - Id: 32351
+ AegisName: Estal
+ Name: Estal
+ Type: Weapon
+ SubType: 1hSword
+ Buy: 20
+ Weight: 700
+ Attack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=11)
+ .@val = 50;
+ else if (.@r>=9)
+ .@val = 30;
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;
+ - Id: 32352
+ AegisName: Ein_1HSWORD
+ Name: Safety Saber
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 2500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"GN_CARTCANNON",10;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus bBaseAtk,40;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,7;
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 32353
+ AegisName: G_Knight_JewelSword
+ Name: Guardian Knight Jewel Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 4000
+ Attack: 130
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,.@r;
+ bonus2 bSkillAtk,"CR_GRANDCROSS",2*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bMagicAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bMagicAddRace,RC_Angel,20;
+ }
+ - Id: 32401
+ AegisName: R_Pillar
+ Name: Royal Pillar
+ Type: Weapon
+ SubType: Mace
+ Weight: 5000
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bUnbreakableWeapon;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20;
+ bonus2 bSkillAtk,"NC_ARMSCANNON",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 32402
+ AegisName: R_Syringe
+ Name: Royal Syringe
+ Type: Weapon
+ SubType: Mace
+ Weight: 1500
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bUnbreakableWeapon;
+ bonus bLongAtkRate,.@r;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",20;
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 32403
+ AegisName: G_Alchemist_Staff
+ Name: Royal Alchemy Staff
+ Type: Weapon
+ SubType: Mace
+ Weight: 1500
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"GN_CRAZYWEED",-1000;
+ bonus2 bSkillAtk,"GN_CRAZYWEED",30;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 400000
+ AegisName: WhistleK
+ Name: Whistle
+ Type: Armor
+ View: 1478
+ Weight: 100
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Head_Low: true
+ EquipLevelMin: 120
+ Script: |
+ bonus bMatkRate,1;
+ bonus2 bAddClass,Class_All,1;
+ - Id: 400001
+ AegisName: Victory_Wing_Ear
+ Name: Victory Wing Ears
+ Type: Armor
+ View: 1185
+ Weight: 100
+ Locations:
+ Head_Mid: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ bonus bDelayrate,-8;
+ - Id: 400002
+ AegisName: Victory_Wing_Ear_
+ Name: Victory Wing Ears
+ Type: Armor
+ View: 1185
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ Script: |
+ bonus bMatk,5;
+ bonus bBaseAtk,5;
+ bonus bDelayrate,-4;
+ - Id: 400003
+ AegisName: TimeExtensionArmor
+ Name: TimeExtension (loan) # !todo check english name
+ Type: Armor
+ View: 15
+ Locations:
+ Head_Top: true
+ Refineable: true
+ - Id: 400011
+ AegisName: Officer_Cap
+ Name: Officer's Hat
+ Type: Armor
+ View: 1759
+ Weight: 400
+ Defense: 35
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bHPLossRate,10,5000;
+ bonus bMatk,5*(.@r/2);
+ bonus bBaseAtk,5*(.@r/2);
+ if (.@r>=7) {
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ }
+ if (.@r>=9) {
+ bonus2 bHPDrainRate,50,5;
+ bonus2 bSPDrainRate,10,3;
+ autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC;
+ autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC;
+ }
+ - Id: 400016
+ AegisName: Turkey_Hat
+ Name: Turkey Hat
+ Type: Armor
+ Locations:
+ Head_Top: true
+ Refineable: true
+ - Id: 400020
+ AegisName: C_BeachBall
+ Name: Costume Beachball
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 1
+ View: 1918
+ - Id: 400021
+ AegisName: aegis_400021
+ Name: Red Clark Casquette
+ Type: Armor
+ View: 1777
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus bShortAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Small,15;
+ bonus2 bAddSize,Size_Medium,15;
+ }
+ - Id: 400022
+ AegisName: aegis_400022
+ Name: Ignis Cap
+ Type: Armor
+ View: 803
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Small,15;
+ bonus2 bAddSize,Size_Medium,15;
+ }
+ - Id: 400023
+ AegisName: aegis_400023
+ Name: Drooping Thanatos's Dolor
+ Type: Armor
+ View: 547
+ Weight: 100
+ Defense: 30
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Holy,10+(.@r/2);
+ bonus2 bMagicAtkEle,Ele_Dark,10+(.@r/2);
+ bonus2 bAddRace,RC_Angel,20+(.@r/2);
+ bonus2 bAddRace,RC_Dragon,20+(.@r/2);
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ if (.@r>=7) {
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-15;
+ }
+ - Id: 400044
+ AegisName: aegis_400044
+ Name: Phantom Cap
+ Type: Armor
+ View: 1899
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bMagicAddSize,Size_Small,15;
+ bonus2 bMagicAddSize,Size_Medium,15;
+ }
+ - Id: 400045
+ AegisName: aegis_400045
+ Name: Pierced apple # !todo check english name
+ Type: Armor
+ View: 1952
+ Locations:
+ Head_Top: true
+ Refineable: true
+ - Id: 400046
+ AegisName: aegis_400046
+ Name: Costume pierced apple # !todo check english name
+ Type: Armor
+ View: 1952
+ Locations:
+ Costume_Head_Top: true
+ - Id: 400049
+ AegisName: aegis_400049
+ Name: Stripe Hat
+ Type: Armor
+ View: 1728
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Small,15;
+ bonus2 bAddSize,Size_Medium,15;
+ }
+ - Id: 400053
+ AegisName: Morrigane's_Helm_IL
+ Name: Illusion Morrigane's Helm
+ Type: Armor
+ View: 257
+ Weight: 500
+ Defense: 15
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,5;
+ bonus bStr,5;
+ if (.@r>=7) {
+ bonus bBaseAtk,50;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ - Id: 400054
+ AegisName: Large_Sorcerer_Crown
+ Name: Great Magician's Ceremonial Crown
+ Type: Armor
+ View: 1811
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bMagicAddSize,Size_Small,15;
+ bonus2 bMagicAddSize,Size_Medium,15;
+ }
+ - Id: 400055
+ AegisName: C_ShineSantaPoringE
+ Name: Costume shiny santa poring hat # !todo check english name
+ Type: Armor
+ View: 961
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Costume_Head_Top: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bExpAddClass,Class_All,10;
+ - Id: 400056
+ AegisName: VIP_Hair_Female
+ Name: "Costume: Blue Devil Wig"
+ Type: Armor
+ View: 1990
+ Locations:
+ Costume_Head_Low: true
+ - Id: 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
+ Type: Armor
+ View: 606
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bMagicAddSize,Size_Small,15;
+ bonus2 bMagicAddSize,Size_Medium,15;
+ }
+ - Id: 400061
+ AegisName: aegis_400061
+ Name: Sagittarius Celestial Coronet
+ Type: Armor
+ View: 618
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_Small,15;
+ bonus2 bAddSize,Size_Medium,15;
+ }
+ - Id: 400073
+ AegisName: C_Romance_Rose_TW
+ Name: Costume Romantic Rose
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ - Id: 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
+ Type: Armor
+ View: 2005
+ Locations:
+ Costume_Head_Low: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 400078
+ AegisName: aegis_400078
+ Name: Goral Crown
+ Type: Armor
+ View: 532
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400079
+ AegisName: aegis_400079
+ Name: Trial Diadem
+ Type: Armor
+ View: 594
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ bonus2 bAddClass,Class_All,15;
+ }
+ if (.@r>=11) {
+ bonus bFixedCast,-200;
+ bonus2 bAddSize,Size_All,10;
+ bonus2 bMagicAddSize,Size_All,10;
+ }
+ - Id: 400094
+ AegisName: aegis_400094
+ Name: Jade Crown
+ Type: Armor
+ View: 510
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSPrecovRate,6*(.@r/2);
+ bonus bMatkRate,2*(.@r/2);
+ if (.@r>=7) {
+ bonus bAllStats,3;
+ }
+ if (.@r>=9) {
+ bonus bMatkRate,4;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Ghost,20;
+ bonus2 bMagicAtkEle,Ele_Neutral,20;
+ bonus2 bMagicAtkEle,Ele_Fire,20;
+ }
+ - Id: 400095
+ AegisName: aegis_400095
+ Name: Spinel Diadem
+ Type: Armor
+ View: 509
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSPrecovRate,6*(.@r/2);
+ bonus bMatkRate,2*(.@r/2);
+ if (.@r>=7) {
+ bonus bAllStats,3;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Neutral,20;
+ bonus2 bMagicAtkEle,Ele_Earth,20;
+ bonus2 bMagicAtkEle,Ele_Water,20;
+ }
+ - Id: 400097
+ AegisName: Egirnion_Helm
+ Name: Aegirnion Helm
+ Type: Armor
+ View: 870
+ Weight: 800
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bUnbreakableHelm;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ if (getrefine()>=9) {
+ bonus bMatk,40;
+ bonus bBaseAtk,40;
+ }
+ - Id: 400098
+ AegisName: aegis_400098
+ Name: Bull Crown
+ Type: Armor
+ View: 536
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400099
+ AegisName: aegis_400099
+ Name: Taurus Diadem
+ Type: Armor
+ View: 535
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400115
+ AegisName: C_Rag_Origin_Hat
+ Name: Costume angeling bread hat # !todo check english name
+ Type: Armor
+ View: 2019
+ Locations:
+ Costume_Head_Top: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 400116
+ AegisName: aegis_400116
+ Name: Celestial Jewel Crown
+ Type: Armor
+ View: 574
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400117
+ AegisName: aegis_400117
+ Name: Libra Crown
+ Type: Armor
+ View: 593
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_All,10;
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400118
+ AegisName: aegis_400118
+ Name: Saint Crown
+ Type: Armor
+ View: 560
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus bMatkRate,15;
+ bonus2 bAddClass,Class_All,15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_All,10;
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400119
+ AegisName: aegis_400119
+ Name: Lion Crown
+ Type: Armor
+ View: 565
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bMaxHPrate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400120
+ AegisName: aegis_400120
+ Name: Goat Crown
+ Type: Armor
+ View: 621
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20*(.@r/2);
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bMatkRate,15;
+ bonus2 bAddClass,Class_All,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ bonus2 bMagicAddSize,Size_All,10;
+ }
+ - Id: 400121
+ AegisName: aegis_400121
+ Name: Twin Crown
+ Type: Armor
+ View: 551
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 400124
+ AegisName: C_Magestic_Goat2
+ Name: Majestic Goat of Costume Dawn # !todo check english name
+ Type: Armor
+ View: 513
+ Locations:
+ Costume_Head_Top: true
+ EquipLevelMin: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 400127
+ AegisName: Ep18_Mini_Elly
+ Name: Mini Elly
+ Type: Armor
+ Locations:
+ Head_Top: true
+ Refineable: true
+ View: 2077
+ Trade:
+ Override: 100
+ NoDrop: True
+ NoTrade: True
+ NoSell: True
+ NoCart: True
+ NoStorage: True
+ NoGuildStorage: True
+ NoMail: True
+ NoAuction: True
+ - Id: 400128
+ AegisName: aegis_400128
+ Name: Costume Dropping Elly
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ View: 2077
+ - Id: 400134
+ AegisName: Thanos_Helm_1
+ Name: Thanos Warrior Helmet
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Head_Top: true
+ EquipLevelMin: 190
+ Refineable: true
+ View: 511
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,4*(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ if (.@r>=9) {
+ bonus bShortAtkRate,10;
+ if (.@r>=11) {
+ bonus2 bAddEle,Ele_All,15;
+ }
+ }
+ }
+ - Id: 410005
+ AegisName: C_Magic_Heir_TW
+ Name: Costume Magic Heir
+ Type: Armor
+ View: 1996
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ - Id: 410013
+ AegisName: EXP_Processor_
+ Name: EXP Advisor # !todo check english name
+ Type: Armor
+ Slots: 1
+ Locations:
+ Head_Mid: true
+ View: 1266
+ Script: |
+ bonus2 bExpAddRace,RC_All,1;
+ - Id: 410016
+ AegisName: aegis_410016
+ Name: Battle Processor
+ Type: Armor
+ View: 1552
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ Script: |
+ bonus bMatk,20;
+ bonus bBaseAtk,20;
+ - Id: 410017
+ AegisName: Battle_Processor_
+ Name: Battle Processor
+ Type: Armor
+ View: 1552
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ Script: |
+ bonus bMatk,10;
+ bonus bBaseAtk,10;
+ - Id: 410018
+ AegisName: Booster_Mask_A
+ Name: Booster Mask A-type
+ Type: Armor
+ View: 876
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bDelayrate,-8;
+ - Id: 410019
+ AegisName: Booster_Mask_B
+ Name: Booster Mask B-type
+ Type: Armor
+ View: 917
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-8;
+ - Id: 410020
+ AegisName: Booster_Mask_C
+ Name: Booster Mask C-type
+ Type: Armor
+ View: 906
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Low: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,8;
+ - Id: 410029
+ AegisName: C_Wonder_Egg_Basket
+ Name: Costume Wonder Egg Basket
+ Type: Armor
+ Locations:
+ Costume_Head_Mid: true
+ View: 2055
+ - Id: 420003
+ AegisName: aegis_420003
+ Name: CD in Mouth
+ Type: Armor
+ View: 815
+ Weight: 200
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ EquipLevelMin: 10
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,5;
+ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,100,BF_SHORT|BF_WEAPON,1;
+ - Id: 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ 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
+ Type: Armor
+ View: 848
+ Weight: 50
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ EquipLevelMin: 100
+ - Id: 420025
+ AegisName: aegis_420025
+ Name: Costume One Eyed Jack # !todo check english name
+ Type: Armor
+ View: 2023
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ - Id: 420029
+ AegisName: C_Imperial_Glory
+ Name: "Costume: Imperial Glory"
+ Type: Armor
+ Locations:
+ Costume_Head_Low: true
+ View: 2056
+ - Id: 420030
+ AegisName: aegis_420030
+ Name: A feather in the mouth # !todo check english name
+ Type: Armor
+ View: 1143
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ Script: |
+ bonus bLongAtkRate,5;
+ - Id: 420031
+ AegisName: aegis_420031
+ Name: Ninja's Blue Mask # !todo check english name
+ Type: Armor
+ View: 1089
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ Head_Low: true
+ Script: |
+ bonus bShortAtkRate,5;
+ - Id: 436000
+ AegisName: aegis_436000
+ Name: Thanatos's Maeror Mask
+ Type: Armor
+ View: 666
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ 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
+ Type: Armor
+ View: 693
+ Weight: 100
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ 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
+ Type: Armor
+ View: 667
+ Weight: 100
+ Defense: 3
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ 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
+ Type: Armor
+ View: 667
+ Weight: 100
+ Defense: 3
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ 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
+ Type: Armor
+ View: 693
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ 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
+ Type: Armor
+ View: 666
+ Weight: 100
+ Slots: 1
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ EquipLevelMin: 99
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ bonus2 bMagicAddRace,RC_Player_Doram,10;
+ bonus bMatkRate,3;
+ - Id: 440000
+ AegisName: C_SharkHead
+ Name: Costume Shark Hat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1919
+ - Id: 440002
+ AegisName: C_Happy_Cat_TW
+ Name: Costume Happy Cat
+ Type: Armor
+ Locations:
+ Costume_Head_Top: true
+ Costume_Head_Mid: true
+ Costume_Head_Low: true
+ EquipLevelMin: 1
+ View: 1980
+ - Id: 440003
+ AegisName: C_Pretty_Rabbit_Hood_E
+ Name: Costume beginner rabbit hood # !todo check english name
+ Type: Armor
+ View: 1085
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ Head_Low: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 440006
+ AegisName: C_Black_Cat_Hood_kr
+ Name: Costume black cat hood # !todo check english name
+ Type: Armor
+ View: 1481
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ Head_Low: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 450000
+ AegisName: IDTest_armor
+ Name: IDTest armor
+ Type: Armor
+ Buy: 10
+ Weight: 10
+ Defense: 10
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ # Flags:
+ # BuyingStore: true
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 450001
+ AegisName: Attacker_Booster_Plate_
+ Name: Attacker Booster Plate
+ Type: Armor
+ Defense: 120
+ Slots: 1
+ Locations:
+ Armor: true
+ 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;
+ }
+ - Id: 450002
+ AegisName: Elemental_Booster_Robe_
+ Name: Elemental Booster Robe
+ Type: Armor
+ Defense: 80
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatk,100;
+ bonus bVariableCastrate,-5;
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatkRate,.@r/2;
+ }
+ if (.@r>=3) {
+ bonus bVariableCastrate,.@r/3*-1;
+ }
+ if (.@r>=7) {
+ bonus bMatk,50;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 450003
+ AegisName: Defender_Booster_Robe_
+ Name: Defender Booster Robe
+ Type: Armor
+ Defense: 90
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatk,100;
+ bonus bVariableCastrate,-5;
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatkRate,.@r/2;
+ }
+ if (.@r>=3) {
+ bonus bVariableCastrate,.@r/3*-1;
+ }
+ if (.@r>=7) {
+ bonus bMatk,50;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 450004
+ AegisName: Ranger_Booster_Suits_
+ Name: Ranger Booster Suits
+ Type: Armor
+ Defense: 100
+ Slots: 1
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,100;
+ bonus bDelayrate,-5;
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bAspdRate,.@r/2;
+ }
+ if (.@r>=3) {
+ bonus bLongAtkRate,.@r/3;
+ }
+ if (.@r>=7) {
+ bonus bBaseAtk,50;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ }
+ - Id: 450018
+ AegisName: Noblesse_Breath_Armor
+ Name: Noblesse Breath Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus bMaxHPrate,5;
+ - Id: 450019
+ AegisName: Noblesse_Knight_Armor
+ Name: Noblesse Knight Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bCritAtkRate,5;
+ - Id: 450020
+ AegisName: Noblesse_Spear_Armor
+ Name: Noblesse Spear Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450021
+ AegisName: Noblesse_Genesis_Armor
+ Name: Noblesse Genesis Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ - Id: 450022
+ AegisName: Noblesse_Sharp_Suit
+ Name: Noblesse Sharp Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450023
+ AegisName: Noblesse_Aimed_suit
+ Name: Noblesse Aimed suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450024
+ AegisName: Noblesse_Severe_Suit
+ Name: Noblesse Severe Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450025
+ AegisName: Noblesse_Reverb_Suit
+ Name: Noblesse Reverb Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ - Id: 450026
+ AegisName: Noblesse_Adora_Robe
+ Name: Noblesse Adora Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ - Id: 450027
+ AegisName: Noblesse_Duple_Robe
+ Name: Noblesse Duple Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bCritAtkRate,5;
+ - Id: 450028
+ AegisName: Noblesse_Tornado_Armor
+ Name: Noblesse Tornado Armor
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,5;
+ - Id: 450029
+ AegisName: Noblesse_Vulcan_Armor
+ Name: Noblesse Vulcan Armor
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450030
+ AegisName: Noblesse_Cart_Cannon_Suit
+ Name: Noblesse Cart Cannon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450031
+ AegisName: Noblesse_Cart_Tornado_Suit
+ Name: Noblesse Cart Tornado Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,5;
+ - Id: 450032
+ AegisName: Noblesse_Rolling_Suit
+ Name: Noblesse Rolling Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450033
+ AegisName: Noblesse_Assassin_Suit
+ Name: Noblesse Assassin Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bCritAtkRate,5;
+ - Id: 450034
+ AegisName: Noblesse_Fatal_Suit
+ Name: Noblesse Fatal Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,5;
+ - Id: 450035
+ AegisName: Noblesse_Stalker_Suit
+ Name: Noblesse Stalker Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ - Id: 450036
+ AegisName: Noblesse_Picky_Robe
+ Name: Noblesse Picky Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450037
+ AegisName: Noblesse_Catnip_Robe
+ Name: Noblesse Catnip Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ - Id: 450038
+ AegisName: Noblesse_Trip_Suit
+ Name: Noblesse Trip Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450039
+ AegisName: Noblesse_Fire_Rain_Suit
+ Name: Noblesse Fire Rain Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450040
+ AegisName: Noblesse_Crimson_Robe
+ Name: Noblesse Crimson Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,5;
+ - Id: 450041
+ AegisName: Noblesse_Frost_Robe
+ Name: Noblesse Frost Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ - Id: 450042
+ AegisName: Noblesse_Psychic_Robe
+ Name: Noblesse Psychic Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ - Id: 450043
+ AegisName: Noblesse_Dust_Robe
+ Name: Noblesse Dust Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ - Id: 450044
+ AegisName: Noblesse_Sun_Suit
+ Name: Noblesse Sun Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus2 bAddClass,Class_All,5;
+ - Id: 450045
+ AegisName: Noblesse_Moon_Suit
+ Name: Noblesse Moon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 450046
+ AegisName: Noblesse_Ninja_Suit
+ Name: Noblesse Ninja Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bVariableCastrate,-10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,5;
+ - Id: 450047
+ AegisName: Noblesse_Kunai_Suit
+ Name: Noblesse Kunai Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 450048
+ AegisName: Noblesse_Eswhoo_Robe
+ Name: Noblesse Eswhoo Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ - Id: 450049
+ AegisName: Noblesse_Explosion_Robe
+ Name: Noblesse Explosion Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ - Id: 450050
+ AegisName: Noblesse_Knuckle_Suit
+ Name: Noblesse Knuckle Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bMaxSPrate,10;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,5;
+ - Id: 450051
+ AegisName: Noblesse_Tiger_Suit
+ Name: Noblesse Tiger Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,5;
+ if (.@r>=7)
+ bonus bMaxHPrate,3;
+ if (.@r>=9)
+ bonus bMaxHPrate,3;
+ - Id: 450052
+ AegisName: Imperial_Breath_Armor
+ Name: Imperial Breath Armor
+ Type: Armor
+ Buy: 20
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,7;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus bMaxHPrate,7;
+ - Id: 450053
+ AegisName: Imperial_Knight_Armor
+ Name: Imperial Knight Armor
+ Type: Armor
+ Buy: 20
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bCritAtkRate,7;
+ - Id: 450054
+ AegisName: Imperial_Spear_Armor
+ Name: Imperial Spear Armor
+ Type: Armor
+ Buy: 20
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450055
+ AegisName: Imperial_Genesis_Armor
+ Name: Imperial Genesis Armor
+ Type: Armor
+ Buy: 20
+ Defense: 120
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,7;
+ - Id: 450056
+ AegisName: Imperial_Sharp_Suit
+ Name: Imperial Sharp Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450057
+ AegisName: Imperial_Aimed_Suit
+ Name: Imperial Aimed Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450058
+ AegisName: Imperial_Severe_Suit
+ Name: Imperial Severe Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450059
+ AegisName: Imperial_Reverb_Suit
+ Name: Imperial Reverb Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ - Id: 450060
+ AegisName: Imperial_Adora_Robe
+ Name: Imperial Adora Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,7;
+ - Id: 450061
+ AegisName: Imperial_Duple_Robe
+ Name: Imperial Duple Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bCritAtkRate,7;
+ - Id: 450062
+ AegisName: Imperial_Knuckle_Suit
+ Name: Imperial Knuckle Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bMaxSPrate,15;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,7;
+ - Id: 450063
+ AegisName: Imperial_Tiger_Suit
+ Name: Imperial Tiger Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,7;
+ if (.@r>=7)
+ bonus bMaxHPrate,4;
+ if (.@r>=9)
+ bonus bMaxHPrate,4;
+ - Id: 450064
+ AegisName: Imperial_Tornado_Armor
+ Name: Imperial Tornado Armor
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,7;
+ - Id: 450065
+ AegisName: Imperial_Vulcan_Armor
+ Name: Imperial Vulcan Armor
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450066
+ AegisName: Imperial_Cart_Cannon_Suit
+ Name: Imperial Cart Cannon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450067
+ AegisName: Imperial_Cart_Tornado_Suit
+ Name: Imperial Cart Tornado Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,7;
+ - Id: 450068
+ AegisName: Imperial_Rolling_Suit
+ Name: Imperial Rolling Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450069
+ AegisName: Imperial_Assassin_Suit
+ Name: Imperial Assassin Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bCritAtkRate,7;
+ - Id: 450070
+ AegisName: Imperial_Fatal_Suit
+ Name: Imperial Fatal Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,7;
+ - Id: 450071
+ AegisName: Imperial_Stalker_Suit
+ Name: Imperial Stalker Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,7;
+ - Id: 450072
+ AegisName: Imperial_Picky_Robe
+ Name: Imperial Picky Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450073
+ AegisName: Imperial_Catnip_Robe
+ Name: Imperial Catnip Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ - Id: 450074
+ AegisName: Imperial_Trip_Suit
+ Name: Imperial Trip Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450075
+ AegisName: Imperial_Fire_Rain_Suit
+ Name: Imperial Fire Rain Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450076
+ AegisName: Imperial_Crimson_Robe
+ Name: Imperial Crimson Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,7;
+ - Id: 450077
+ AegisName: Imperial_Frost_Robe
+ Name: Imperial Frost Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,7;
+ - Id: 450078
+ AegisName: Imperial_Psychic_Robe
+ Name: Imperial Psychic Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,7;
+ - Id: 450079
+ AegisName: Imperial_Dust_Robe
+ Name: Imperial Dust Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,7;
+ - Id: 450080
+ AegisName: Imperial_Sun_Suit
+ Name: Imperial Sun Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus2 bAddClass,Class_All,7;
+ - Id: 450081
+ AegisName: Imperial_Moon_Suit
+ Name: Imperial Moon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 450082
+ AegisName: Imperial_Ninja_Suit
+ Name: Imperial Ninja Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bVariableCastrate,-15;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,7;
+ - Id: 450083
+ AegisName: Imperial_Kunai_Suit
+ Name: Imperial Kunai Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 450084
+ AegisName: Imperial_Eswhoo_Robe
+ Name: Imperial Eswhoo Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,7;
+ - Id: 450085
+ AegisName: Imperial_Explosion_Robe
+ Name: Imperial Explosion Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,7;
+ - Id: 450086
+ AegisName: Grace_Breath_Armor
+ Name: Grace Breath Armor
+ Type: Armor
+ Buy: 20
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus bMaxHPrate,10;
+ - Id: 450087
+ AegisName: Grace_Knight_Armor
+ Name: Grace Knight Armor
+ Type: Armor
+ Buy: 20
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bCritAtkRate,10;
+ - Id: 450088
+ AegisName: Grace_Spear_Armor
+ Name: Grace Spear Armor
+ Type: Armor
+ Buy: 20
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450089
+ AegisName: Grace_Genesis_Armor
+ Name: Grace Genesis Armor
+ Type: Armor
+ Buy: 20
+ Defense: 130
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ - Id: 450090
+ AegisName: Grace_Sharp_Suit
+ Name: Grace Sharp Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450091
+ AegisName: Grace_Aimed_Suit
+ Name: Grace Aimed Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450092
+ AegisName: Grace_Severe_Suit
+ Name: Grace Severe Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450093
+ AegisName: Grace_Reverb_Suit
+ Name: Grace Reverb Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ - Id: 450094
+ AegisName: Grace_Adora_Robe
+ Name: Grace Adora Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ - Id: 450095
+ AegisName: Grace_Duple_Robe
+ Name: Grace Duple Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bCritAtkRate,10;
+ - Id: 450096
+ AegisName: Grace_Knuckle_Suit
+ Name: Grace Knuckle Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bMaxSPrate,20;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,10;
+ - Id: 450097
+ AegisName: Grace_Tiger_Suit
+ Name: Grace Tiger Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,10;
+ if (.@r>=7)
+ bonus bMaxHPrate,5;
+ if (.@r>=9)
+ bonus bMaxHPrate,5;
+ - Id: 450098
+ AegisName: Grace_Tornado_Armor
+ Name: Grace Tornado Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,10;
+ - Id: 450099
+ AegisName: Grace_Vulcan_Armor
+ Name: Grace Vulcan Armor
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450100
+ AegisName: Grace_Cart_Cannon_Suit
+ Name: Grace Cart Cannon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450101
+ AegisName: Grace_Cart_Tornado_Suit
+ Name: Grace Cart Tornado Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,10;
+ - Id: 450102
+ AegisName: Grace_Rolling_Suit
+ Name: Grace Rolling Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450103
+ AegisName: Grace_Assassin_Suit
+ Name: Grace Assassin Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bCritAtkRate,10;
+ - Id: 450104
+ AegisName: Grace_Fatal_Suit
+ Name: Grace Fatal Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,10;
+ - Id: 450105
+ AegisName: Grace_Stalker_Suit
+ Name: Grace Stalker Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ - Id: 450106
+ AegisName: Grace_Picky_Robe
+ Name: Grace Picky Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450107
+ AegisName: Grace_Catnip_Robe
+ Name: Grace Catnip Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Summoner: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ - Id: 450108
+ AegisName: Grace_Trip_Suit
+ Name: Grace Trip Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,10;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450109
+ AegisName: Grace_Fire_Rain_Suit
+ Name: Grace Fire Rain Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Rebellion: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,10;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450110
+ AegisName: Grace_Crimson_Robe
+ Name: Grace Crimson Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ - Id: 450111
+ AegisName: Grace_Frost_Robe
+ Name: Grace Frost Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ - Id: 450112
+ AegisName: Grace_Psychic_Robe
+ Name: Grace Psychic Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ - Id: 450113
+ AegisName: Grace_Dust_Robe
+ Name: Grace Dust Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ - Id: 450114
+ AegisName: Grace_Sun_Suit
+ Name: Grace Sun Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus2 bAddClass,Class_All,10;
+ - Id: 450115
+ AegisName: Grace_Moon_Suit
+ Name: Grace Moon Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ 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;
+ - Id: 450116
+ AegisName: Grace_Ninja_Suit
+ Name: Grace Ninja Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bVariableCastrate,-20;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,10;
+ - Id: 450117
+ AegisName: Grace_Kunai_Suit
+ Name: Grace Kunai Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus2 bAddClass,Class_All,10;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 450118
+ AegisName: Grace_Eswhoo_Robe
+ Name: Grace Eswhoo Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ - Id: 450119
+ AegisName: Grace_Explosion_Robe
+ Name: Grace Explosion Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_Dark,10;
+ - Id: 450121
+ AegisName: Noblesse_Super_Novice_Suit
+ Name: Noblesse Super Novice Suit
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bMaxHPrate,5;
+ - Id: 450122
+ AegisName: Noblesse_Super_Novice_Robe
+ Name: Noblesse Super Novice Robe
+ Type: Armor
+ Buy: 20
+ Defense: 70
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,50;
+ if (.@r>=7)
+ bonus bAspdRate,3;
+ if (.@r>=9)
+ bonus bMaxHPrate,5;
+ - Id: 450123
+ AegisName: Imperial_Super_Novice_Suit
+ Name: Imperial Super Novice Suit
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bMaxHPrate,7;
+ - Id: 450124
+ AegisName: Imperial_Super_Novice_Robe
+ Name: Imperial Super Novice Robe
+ Type: Armor
+ Buy: 20
+ Defense: 90
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,75;
+ if (.@r>=7)
+ bonus bAspdRate,5;
+ if (.@r>=9)
+ bonus bMaxHPrate,7;
+ - Id: 450125
+ AegisName: Grace_Super_Novice_Suit
+ Name: Grace Super Novice Suit
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bMaxHPrate,10;
+ - Id: 450126
+ AegisName: Grace_Super_Novice_Robe
+ Name: Grace Super Novice Robe
+ Type: Armor
+ Buy: 20
+ Defense: 100
+ Slots: 1
+ Jobs:
+ SuperNovice: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100;
+ if (.@r>=7)
+ bonus bAspdRate,7;
+ if (.@r>=9)
+ bonus bMaxHPrate,10;
+ - Id: 450127
+ AegisName: Auto_Armor_A
+ Name: Automatic Armor Type A
+ Type: Armor
+ Weight: 1000
+ Defense: 135
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,125;
+ bonus bBaseAtk,10*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,15;
+ }
+ - Id: 450128
+ AegisName: Auto_Armor_B
+ Name: Automatic Armor Type B
+ Type: Armor
+ Weight: 1000
+ MagicAttack: 125
+ Defense: 135
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ - Id: 450144
+ AegisName: Saint_Robe_IL
+ Name: Illusion Saint Robe
+ Type: Armor
+ Weight: 600
+ Defense: 60
+ Slots: 1
+ Jobs:
+ Acolyte: true
+ Alchemist: true
+ Blacksmith: true
+ Merchant: true
+ Monk: true
+ Priest: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bMdef,10;
+ if (.@r>=9) {
+ bonus2 bSubRace,RC_Fish,15;
+ }
+ if (.@r>=11) {
+ bonus2 bIgnoreDefRaceRate,RC_Fish,20;
+ }
+ - Id: 450145
+ AegisName: Water_Sprits_Armor_IL
+ Name: Illusion Saphien's Armor of Ocean
+ Type: Armor
+ Weight: 2200
+ Defense: 50
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Swordman: true
+ Locations:
+ Armor: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxHP,125*.@r;
+ if (.@r>=7) {
+ bonus bDef,50;
+ }
+ if (.@r>=9) {
+ autobonus2 "{ bonus2 bSubEle,Ele_Water,15; }",1,5000,BF_MAGIC|BF_WEAPON;
+ }
+ - Id: 450146
+ AegisName: Chain_Mail_IL
+ Name: Illusion Chain Mail
+ Type: Armor
+ Weight: 3300
+ Defense: 70
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus bBaseAtk,4*.@r;
+ bonus2 bAddEle,Ele_Fire,4*(.@r/3);
+ bonus2 bAddEle,Ele_Water,4*(.@r/3);
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,10;
+ }
+ if (.@r>=11) {
+ bonus bAspdRate,10;
+ }
+ - Id: 450147
+ AegisName: E_Illusion_Armor_A
+ Name: Illusion Armor Type A (Bound) # !todo check english name
+ Type: Armor
+ Defense: 105
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,100+10*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ }
+ - Id: 450148
+ AegisName: E_Illusion_Armor_B
+ Name: Illusion Armor Type B (Bound) # !todo check english name
+ Type: Armor
+ Defense: 105
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,100+10*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ - Id: 450151
+ AegisName: aegis_450151
+ Name: Reinforced Cotton Shirt
+ Type: Armor
+ Slots: 1
+ Locations:
+ Armor: true
+ Refineable: true
+ - Id: 450164
+ AegisName: Egirnion_Armor
+ Name: Aegirnion Armor
+ Type: Armor
+ Weight: 1000
+ Defense: 80
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ bonus bUnbreakableArmor;
+ if (getrefine()>=9) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,2;
+ }
+ - Id: 450177
+ AegisName: Gray_W_Suits
+ Name: Gray Wolf Suit
+ Type: Armor
+ Weight: 1000
+ Defense: 160
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,130+15*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,15;
+ }
+ - Id: 450178
+ AegisName: Gray_W_Robe
+ Name: Gray Wolf Robe
+ Type: Armor
+ Weight: 1000
+ MagicAttack: 130
+ Defense: 160
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-15;
+ }
+ - Id: 450179
+ AegisName: Bloody_Dress
+ Name: Celine's Dress
+ Type: Armor
+ Weight: 500
+ MagicAttack: 50
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,10;
+ if (.@r>=11) {
+ bonus bDelayrate,-10;
+ if (.@r>=12) {
+ bonus bDelayrate,-5;
+ }
+ }
+ }
+ }
+ - Id: 450182
+ AegisName: Sprint_Mail_IL
+ Name: Illusion Sprint Mail
+ Type: Armor
+ Weight: 1500
+ Defense: 40
+ Slots: 1
+ Locations:
+ Armor: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bHPrecovRate,20;
+ bonus bVit,5;
+ if (.@r>=7) {
+ bonus bHPrecovRate,20;
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ if (.@r>=11) {
+ bonus bDelayrate,-7;
+ }
+ }
+ }
+ - Id: 460012
+ AegisName: aegis_460012
+ Name: Reinforced Shield
+ Type: Armor
+ Weight: 500
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ Refineable: true
+ - Id: 460017
+ AegisName: Guard_IL
+ Name: Illusion Guard
+ Type: Armor
+ Weight: 600
+ Defense: 60
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bAspd,2;
+ bonus bPerfectHitAddRate,3*(min(getrefine(),12)/2);
+ - Id: 460018
+ AegisName: Siver_Guard_IL
+ Name: Illusion Silver Guard
+ Type: Armor
+ Weight: 300
+ Defense: 60
+ Slots: 1
+ Locations:
+ Left_Hand: true
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bDelayrate,-(min(getrefine(),12)/2);
+ - Id: 470000
+ AegisName: Attacker_Booster_Greaves_
+ Name: Attacker Booster Greaves
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,20;
+ bonus bFlee,20;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMaxHPrate,.@r/3;
+ }
+ if (.@r>=7) {
+ bonus bMaxHPrate,5;
+ }
+ if (.@r>=9) {
+ bonus bFixedCast,-500;
+ }
+ - Id: 470001
+ AegisName: Elemental_Booster_Shoes_
+ Name: Elemental Booster Shoes
+ Type: Armor
+ Defense: 15
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatk,20;
+ bonus bFlee,20;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMaxHP,.@r/3*400;
+ }
+ if (.@r>=7) {
+ bonus bMaxHP,1800;
+ }
+ if (.@r>=9) {
+ bonus bFixedCast,-500;
+ }
+ - Id: 470002
+ AegisName: Defender_Booster_Shoes_
+ Name: Defender Booster Shoes
+ Type: Armor
+ Defense: 18
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatk,20;
+ bonus bFlee,20;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMaxHP,.@r/3*400;
+ }
+ if (.@r>=7) {
+ bonus bMaxHP,1800;
+ }
+ if (.@r>=9) {
+ bonus bFixedCast,-500;
+ }
+ - Id: 470003
+ AegisName: Ranger_Booster_Boots_
+ Name: Ranger Booster Boots
+ Type: Armor
+ Defense: 18
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bBaseAtk,20;
+ bonus bHit,15;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMaxSP,.@r/3*50;
+ }
+ if (.@r>=7) {
+ bonus bMaxSP,300;
+ }
+ if (.@r>=9) {
+ bonus bFixedCast,-500;
+ }
+ - Id: 470016
+ AegisName: Noblesse_Attack_Boots
+ Name: Noblesse Attack Boots
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,10;
+ bonus bHit,10;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus bLongAtkRate,5;
+ - Id: 470017
+ AegisName: Noblesse_Magic_Boots
+ Name: Noblesse Magic Boots
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,10;
+ bonus bFlee,10;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,5;
+ - Id: 470018
+ AegisName: Imperial_Attack_Boots
+ Name: Imperial Attack Boots
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15;
+ bonus bHit,15;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus bLongAtkRate,7;
+ - Id: 470019
+ AegisName: Imperial_Magic_Boots
+ Name: Imperial Magic Boots
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15;
+ bonus bFlee,15;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,7;
+ - Id: 470020
+ AegisName: Grace_Attack_Boots
+ Name: Grace Attack Boots
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,20;
+ bonus bHit,20;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus bLongAtkRate,10;
+ - Id: 470021
+ AegisName: Grace_Magic_Boots
+ Name: Grace Magic Boots
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,20;
+ bonus bFlee,20;
+ if (.@r>=7)
+ bonus bFixedCast,-500;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,10;
+ - Id: 470022
+ AegisName: Auto_Leg_A
+ Name: Automatic Leg Type A
+ Type: Armor
+ Weight: 500
+ Defense: 70
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,250;
+ bonus bMaxSP,20*(.@r/2);
+ if (.@r>=7) {
+ bonus bLongAtkRate,7;
+ }
+ - Id: 470023
+ AegisName: Auto_Leg_B
+ Name: Automatic Leg Type B
+ Type: Armor
+ Weight: 500
+ Defense: 70
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,250;
+ bonus bMaxSP,20*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,7;
+ }
+ - Id: 470033
+ AegisName: Elemental_BootsK
+ Name: Elemental Boots
+ Type: Armor
+ Weight: 100
+ Defense: 10
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 99
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MG_FIREBOLT",15+2*.@r;
+ bonus2 bSkillAtk,"MG_COLDBOLT",15+2*.@r;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+2*.@r;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15+2*.@r;
+ if (.@r>=7) {
+ bonus bMatk,20;
+ }
+ if (.@r>=9) {
+ autobonus "{ bonus bMatkRate,10; bonus bInt,70; }",1,5000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ - Id: 470054
+ AegisName: E_Illusion_Leg_A
+ Name: Illusion Leg A Type (Bound) # !todo check english name
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,200+20*(.@r/2);
+ if (.@r>=7) {
+ bonus bLongAtkRate,5;
+ }
+ - Id: 470055
+ AegisName: E_Illusion_Leg_B
+ Name: Illusion Leg B Type (Bound) # !todo check english name
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,200+20*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,5;
+ }
+ - Id: 470066
+ AegisName: Sprint_Shoes_IL
+ Name: Illusion Sprint Shoes
+ Type: Armor
+ Weight: 700
+ Defense: 20
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSPrecovRate,20;
+ bonus bAgi,5;
+ if (.@r>=7) {
+ bonus bSPrecovRate,20;
+ if (.@r>=9) {
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ }
+ }
+ }
+ - Id: 470070
+ AegisName: Egirnion_Shoes
+ Name: Aegirnion Shoes
+ Type: Armor
+ Weight: 300
+ Defense: 35
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ if (getrefine()>=9) {
+ bonus bAspdRate,10;
+ }
+ - Id: 470087
+ AegisName: Gray_W_Boots
+ Name: Gray Wolf Boots
+ Type: Armor
+ Weight: 500
+ Defense: 70
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,300+50*(.@r/2);
+ if (.@r>=7) {
+ bonus bLongAtkRate,7;
+ }
+ - Id: 470088
+ AegisName: Gray_W_Shoes
+ Name: Gray Wolf Shoes
+ Type: Armor
+ Weight: 500
+ Defense: 70
+ Slots: 1
+ Locations:
+ Shoes: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSP,250+20*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,7;
+ }
+ - Id: 480000
+ AegisName: Attacker_Booster_Manteau_
+ Name: Attacker Booster Manteau
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bAspdRate,5;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bCritical,.@r/3*2;
+ }
+ if (.@r>=7) {
+ bonus bCritAtkRate,5;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ - Id: 480001
+ AegisName: Elemental_Booster_Muffler_
+ Name: Elemental Booster Muffler
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ 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;
+ }
+ - Id: 480002
+ AegisName: Defender_Booster_Muffler_
+ Name: Defender Booster Muffler
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-5;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bMatk,.@r/3*4;
+ }
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Undead,5;
+ bonus2 bMagicAtkEle,Ele_Poison,5;
+ bonus2 bMagicAtkEle,Ele_Dark,5;
+ bonus2 bMagicAtkEle,Ele_Ghost,5;
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ - Id: 480003
+ AegisName: Ranger_Booster_Manteau_
+ Name: Ranger Booster Manteau
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bVariableCastrate,-5;
+ .@r = getrefine();
+ if (.@r>=3) {
+ bonus bBaseAtk,.@r/3*2;
+ }
+ if (.@r>=7) {
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ - Id: 480012
+ AegisName: Noblesse_Attack_Manteau
+ Name: Noblesse Attack Manteau
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,3;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,5;
+ - Id: 480014
+ AegisName: Noblesse_Magic_Manteau
+ Name: Noblesse Magic Manteau
+ Type: Armor
+ Defense: 20
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 100
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-5;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,5;
+ - Id: 480016
+ AegisName: Imperial_Attack_Manteau
+ Name: Imperial Attack Manteau
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,5;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,7;
+ - Id: 480017
+ AegisName: Imperial_Magic_Manteau
+ Name: Imperial Magic Manteau
+ Type: Armor
+ Defense: 25
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 125
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-7;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,7;
+ - Id: 480018
+ AegisName: Grace_Attack_Manteau
+ Name: Grace Attack Manteau
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bAspdRate,7;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bAddSize,Size_All,10;
+ - Id: 480019
+ AegisName: Grace_Magic_Manteau
+ Name: Grace Magic Manteau
+ Type: Armor
+ Defense: 30
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 150
+ Refineable: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-10;
+ if (.@r>=7)
+ bonus bDelayrate,-5;
+ if (.@r>=9)
+ bonus2 bMagicAtkEle,Ele_All,10;
+ - Id: 480020
+ AegisName: Auto_Engine_A
+ Name: Automatic Engine Wing Type A
+ Type: Armor
+ Weight: 900
+ Defense: 70
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1500;
+ bonus bMaxHP,100*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,7;
+ }
+ - Id: 480021
+ AegisName: Auto_Engine_B
+ Name: Automatic Engine Wing Type B
+ Type: Armor
+ Weight: 900
+ Defense: 70
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 160
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1500;
+ bonus bMaxHP,100*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-7;
+ }
+ - Id: 480054
+ AegisName: Morrigane's_Manteau_IL
+ Name: Illusion Morrigane's Manteau
+ Type: Armor
+ Weight: 600
+ Defense: 12
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLuk,5;
+ bonus bFlee,20;
+ if (.@r>=7) {
+ bonus2 bAddRace,RC_Fish,5;
+ bonus2 bAddRace,RC_Insect,5;
+ bonus2 bAddRace,RC_Demon,5;
+ bonus2 bAddRace,RC_DemiHuman,5;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Fish,10;
+ bonus2 bAddRace,RC_Insect,10;
+ bonus2 bAddRace,RC_Demon,10;
+ bonus2 bAddRace,RC_DemiHuman,10;
+ }
+ - Id: 480056
+ AegisName: aegis_480056
+ Name: Costume Heavenly Fallen Angel's Wings # !todo check english name
+ Type: Armor
+ Locations:
+ Garment: true
+ Refineable: true
+ - Id: 480062
+ AegisName: E_Illusion_Engine_A
+ Name: Illusion engine wing type A (attributable) # !todo check english name
+ Type: Armor
+ Defense: 50
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000+100*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,5;
+ }
+ - Id: 480063
+ AegisName: E_Illusion_Engine_B
+ Name: Illusion engine wing type B (attributable) # !todo check english name
+ Type: Armor
+ Defense: 50
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1000+100*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 480069
+ AegisName: C_Wing_Of_Angel_Move
+ Name: Costume Heavenly Angel Wings
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 61
+ - Id: 480071
+ AegisName: Calabash
+ Name: Costume Vial
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 82
+ - Id: 480083
+ AegisName: Egirnion_Manteau
+ Name: Aegirnion Manteau
+ Type: Armor
+ Weight: 300
+ Defense: 40
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 140
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ if (getrefine()>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ - Id: 480090
+ AegisName: Gray_W_Muffler
+ Name: Gray Wolf Muffler
+ Type: Armor
+ Weight: 900
+ Defense: 70
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,1500+100*(.@r/2);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-7;
+ }
+ - Id: 480091
+ AegisName: Gray_W_Manteau
+ Name: Gray Wolf Manteau
+ Type: Armor
+ Weight: 900
+ Defense: 70
+ Slots: 1
+ Locations:
+ Garment: true
+ EquipLevelMin: 190
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHP,2500+150*(.@r/2);
+ if (.@r>=7) {
+ bonus bAspdRate,7;
+ }
+ - Id: 480095
+ AegisName: C_Giant_White_Rabbit
+ Name: costume large white rabbit # !todo check english name
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 98
+ - Id: 480097
+ AegisName: C_Snow_Powder
+ Name: "Costume: Snow Powder"
+ Type: Armor
+ Locations:
+ Costume_Garment: true
+ View: 100
+ - Id: 490004
+ AegisName: Attacker_Booster_Ring
+ Name: Attacker Booster Ring
+ Type: Armor
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ bonus bMaxHPrate,3;
+ bonus bCritAtkRate,5;
+ - Id: 490005
+ AegisName: Elemental_Booster_Earring
+ Name: Elemental Booster Earrings
+ Type: Armor
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 490006
+ AegisName: Defender_Booster_Earring
+ Name: Defender Booster Earrings
+ Type: Armor
+ Slots: 1
+ Locations:
+ 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;
+ - Id: 490007
+ AegisName: Range_Booster_Brooch
+ Name: Range Booster Brooches
+ Type: Armor
+ Slots: 1
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ bonus bMaxHPrate,3;
+ bonus bLongAtkRate,2;
+ - Id: 490014
+ AegisName: Noblesse_Attack_Ring
+ Name: Noblesse Attack Ring
+ Type: Armor
+ Defense: 5
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-5;
+ bonus bCritAtkRate,5;
+ - Id: 490015
+ AegisName: Noblesse_Magic_Ring
+ Name: Noblesse Magic Ring
+ Type: Armor
+ Defense: 5
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,3;
+ bonus bVariableCastrate,-5;
+ bonus2 bMagicAddEle,Ele_All,5;
+ - Id: 490017
+ AegisName: Imperial_Attack_Ring
+ Name: Imperial Attack Ring
+ Type: Armor
+ Weight: 0
+ Defense: 8
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-7;
+ bonus bCritAtkRate,7;
+ - Id: 490018
+ AegisName: Imperial_Magic_Ring
+ Name: Imperial Magic Ring
+ Type: Armor
+ Weight: 0
+ Defense: 8
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,5;
+ bonus bVariableCastrate,-7;
+ bonus2 bMagicAddEle,Ele_All,7;
+ - Id: 490019
+ AegisName: Grace_Attack_Ring
+ Name: Grace Attack Ring
+ Type: Armor
+ Weight: 0
+ Defense: 10
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,7;
+ bonus bVariableCastrate,-10;
+ bonus bCritAtkRate,10;
+ - Id: 490020
+ AegisName: Grace_Magic_Ring
+ Name: Grace Magic Ring
+ Type: Armor
+ Weight: 0
+ Defense: 10
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAspdRate,7;
+ bonus bVariableCastrate,-10;
+ bonus2 bMagicAddEle,Ele_All,10;
+ - Id: 490024
+ AegisName: Auto_B_R
+ Name: Automatic Booster R
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 160
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMaxHPrate,5;
+ - Id: 490025
+ AegisName: Auto_B_L
+ Name: Automatic Booster L
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 160
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ bonus bMaxSPrate,5;
+ - Id: 490026
+ AegisName: Auto_BC_R
+ Name: Automatic Battle Chip R
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 160
+ Script: |
+ bonus bMatkRate,5;
+ bonus bMaxHPrate,5;
+ - Id: 490027
+ AegisName: Auto_BC_L
+ Name: Automatic Battle Chip L
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 160
+ Script: |
+ bonus bMatkRate,5;
+ bonus bMaxSPrate,5;
+ - Id: 490044
+ AegisName: Sin_Ring_R
+ Name: Sinful Ruby Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490045
+ AegisName: Sin_Necklace_R
+ Name: Sinful Ruby Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490046
+ AegisName: Sin_Ring_E
+ Name: Sinful Emerald Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490047
+ AegisName: Sin_Necklace_E
+ Name: Sinful Emerald Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490048
+ AegisName: Sin_Ring_T
+ Name: Sinful Topaz Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490049
+ AegisName: Sin_Necklace_T
+ Name: Sinful Topaz Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490050
+ AegisName: Sin_Ring_A
+ Name: Sinful Amethyst Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490051
+ AegisName: Sin_Necklace_A
+ Name: Sinful Amethyst Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490052
+ AegisName: Sin_Ring_S
+ Name: Sinful Sapphire Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,10;
+ - Id: 490053
+ AegisName: Sin_Necklace_S
+ Name: Sinful Sapphire Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,10;
+ - Id: 490054
+ AegisName: Sin_Ring_O
+ Name: Sinful Opal Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490055
+ AegisName: Sin_Necklace_O
+ Name: Sinful Opal Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490056
+ AegisName: Shine_Ring_R
+ Name: Brilliant Light Ruby Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490057
+ AegisName: Shine_Necklace_R
+ Name: Brilliant Light Ruby Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490058
+ AegisName: Shine_Ring_A
+ Name: Brilliant Light Amethyst Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490059
+ AegisName: Shine_Necklace_A
+ Name: Brilliant Light Amethyst Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490060
+ AegisName: Shine_Ring_E
+ Name: Brilliant Light Emerald Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490061
+ AegisName: Shine_Necklace_E
+ Name: Brilliant Light Emerald Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ - Id: 490062
+ AegisName: Shine_Ring_Z
+ Name: Brilliant Light Zircon Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490063
+ AegisName: Shine_Necklace_Z
+ Name: Brilliant Light Zircon Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490064
+ AegisName: Shine_Ring_S
+ Name: Brilliant Light Sapphire Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus bMatkRate,10;
+ - Id: 490065
+ AegisName: Shine_Necklace_S
+ Name: Brilliant Light Sapphire Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus bMatkRate,10;
+ - Id: 490066
+ AegisName: Shine_Ring_AQ
+ Name: Brilliant Light Aquamarine Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bAspdRate,7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490067
+ AegisName: Shine_Necklace_AQ
+ Name: Brilliant Light Aquamarine Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 170
+ Script: |
+ bonus bVariableCastrate,-7;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 490069
+ AegisName: Morrigane's_Belt_IL
+ Name: Illusion Morrigane's Belt
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bStr,3;
+ - Id: 490070
+ AegisName: Morrigane's_Pendant_IL
+ Name: Illusion Morrigane's Pendant
+ Type: Armor
+ Weight: 200
+ Slots: 1
+ Jobs:
+ All: true
+ Novice: false
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bCritical,5;
+ bonus bBaseAtk,20;
+ - Id: 490072
+ AegisName: E_Illusion_B_R
+ Name: Illusion Booster R (Bound) # !todo check english name
+ Type: Armor
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 490073
+ AegisName: E_Illusion_B_L
+ Name: Illusion Booster L (Bound) # !todo check english name
+ Type: Armor
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ 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
+ Type: Armor
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 490075
+ AegisName: E_Illusion_BC_L
+ Name: Illusion Battle Chip L (Bound) # !todo check english name
+ Type: Armor
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 490087
+ AegisName: 4th_Q_Necklace
+ Name: Hourglass necklace # !todo check english name
+ Type: Armor
+ Locations:
+ Both_Accessory: true
+ EquipLevelMin: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 490090
+ AegisName: aegis_490090
+ Name: Egir Ring # !todo check english name
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,2;
+ bonus bMatk,10;
+ - Id: 490091
+ AegisName: aegis_490091
+ Name: Aegir necklace # !todo check english name
+ Type: Armor
+ Weight: 200
+ Defense: 5
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 40
+ Script: |
+ bonus bLongAtkRate,2;
+ bonus bShortAtkRate,2;
+ bonus bBaseAtk,10;
+ - Id: 490092
+ AegisName: Egirnion_Ring
+ Name: Aegirnion Ring
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 140
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,5;
+ bonus bMatk,30;
+ - Id: 490093
+ AegisName: Egirnion_Necklace
+ Name: Aegirnion Necklace
+ Type: Armor
+ Weight: 200
+ Defense: 10
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 140
+ Script: |
+ bonus bLongAtkRate,5;
+ bonus bShortAtkRate,5;
+ bonus bBaseAtk,30;
+ - Id: 490099
+ AegisName: Thanatos_Pendant
+ Name: Thanatos' Necklace # !todo check english name
+ Type: Armor
+ Weight: 100
+ Locations:
+ Right_Accessory: true
+ Script: |
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ - Id: 490100
+ AegisName: Blue_Mental_Pendant
+ Name: Red force pendant # !todo check english name
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ Script: |
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ - Id: 490101
+ AegisName: Red_Force_Pendant
+ Name: Blue mental pendant # !todo check english name
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ Script: |
+ bonus bMatkRate,5;
+ bonus2 bAddClass,Class_All,5;
+ - Id: 490106
+ AegisName: Gray_W_Pendant
+ Name: Gray Wolf Pendant
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 190
+ Script: |
+ bonus2 bAddClass,Class_All,7;
+ bonus bMaxHPrate,5;
+ - Id: 490107
+ AegisName: Gray_W_Ring
+ Name: Gray Wolf Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 190
+ Script: |
+ bonus2 bAddClass,Class_All,7;
+ bonus bMaxSPrate,5;
+ - Id: 490108
+ AegisName: Gray_W_Earing
+ Name: Gray Wolf Earring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 190
+ Script: |
+ bonus bMatkRate,7;
+ bonus bMaxHPrate,5;
+ - Id: 490109
+ AegisName: Gray_W_Necklace
+ Name: Gray Wolf Necklace
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 190
+ Script: |
+ bonus bMatkRate,7;
+ bonus bMaxSPrate,5;
+ - Id: 490120
+ AegisName: Sprint_Ring_IL
+ Name: Illusion Sprint Ring
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Left_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bVariableCastrate,-10;
+ - Id: 490121
+ AegisName: Sprint_Glove_IL
+ Name: Illusion Sprint Glove
+ Type: Armor
+ Weight: 100
+ Slots: 1
+ Locations:
+ Right_Accessory: true
+ EquipLevelMin: 130
+ Script: |
+ bonus bDelayrate,-3;
+ - Id: 500000
+ AegisName: IDTest_weapon
+ Name: IDTest weapon
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 10
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Alchemist: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Knight: true
+ Merchant: true
+ Novice: true
+ SuperNovice: true
+ Swordman: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 1
+ Refineable: true
+ # Flags:
+ # BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_COLDBOLT",1,1;
+ - Id: 500001
+ AegisName: Boost_Sword
+ Name: Booster Sword
+ Type: Weapon
+ SubType: Dagger
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 500003
+ AegisName: Light_Blade
+ Name: Light Blade
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 130
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bSkillAtk,"PA_PRESSURE",5*(.@r/3);
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ - Id: 500004
+ AegisName: Slate_Sword
+ Name: Slate Sword
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1000
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bBaseAtk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",20;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-10;
+ }
+ - Id: 500007
+ AegisName: Ep172_1h_Sword
+ Name: Hypocrisy Machine
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 3000
+ Attack: 250
+ Range: 1
+ Slots: 3
+ Jobs:
+ Novice: true
+ SuperNovice: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bShortAtkRate,3*(.@r/2);
+ bonus bCritical,2*(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,20;
+ }
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_Small,25;
+ bonus2 bAddSize,Size_Large,25;
+ }
+ if (.@r>=11) {
+ skill "SM_SWORD",getskilllv("MS_BOWLINGBASH");
+ }
+ - Id: 500008
+ AegisName: Ep172_1h_Sword2
+ Name: Invidia Bundle
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1800
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GN_CART_TORNADO",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",15;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",25;
+ }
+ - Id: 500013
+ AegisName: Up_Sword_Of_Bluefire
+ Name: Patent Red Lotus Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1000
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bLongAtkRate,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10;
+ bonus bVariableCastrate,-7;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GN_CARTCANNON",20;
+ }
+ if (.@r>=11) {
+ bonus bVariableCastrate,-5;
+ bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10;
+ }
+ - Id: 500014
+ AegisName: Up_Slate_Sword
+ Name: Patent Slate Sword
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1200
+ Attack: 205
+ Range: 1
+ Slots: 2
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10;
+ bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",20;
+ bonus2 bSkillAtk,"GN_HELLS_PLANT",10;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-5;
+ bonus bMaxHPrate,10;
+ }
+ - Id: 500015
+ AegisName: PG_B_Sword
+ Name: Pressure Genesis Booster Sword
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 150
+ Range: 1
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,2;
+ bonus bMatk,180;
+ bonus bMatk,3*.@r;
+ bonus bMatk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,getskilllv("CR_TRUST");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",25;
+ bonus2 bSkillAtk,"PA_PRESSURE",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15;
+ bonus2 bSkillAtk,"PA_PRESSURE",15;
+ }
+ - Id: 500016
+ AegisName: HS_T_Sword
+ Name: Hell Tornado Booster Sword
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 190
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bShortAtkRate,2*getskilllv("GN_TRAINING_SWORD");
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ bonus2 bSkillAtk,"GN_CART_TORNADO",25;
+ bonus2 bSkillAtk,"GN_HELLS_PLANT",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,20;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"GN_CART_TORNADO",15;
+ bonus2 bSkillAtk,"GN_HELLS_PLANT",15;
+ }
+ - Id: 500017
+ AegisName: Up_Light_Blade
+ Name: Patent Light Blade
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1200
+ Attack: 130
+ MagicAttack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5;
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bSkillAtk,"PA_PRESSURE",15;
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15;
+ }
+ - Id: 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
+ Type: Weapon
+ SubType: Dagger
+ Attack: 150
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 510002
+ AegisName: Boost_Nindo
+ Name: Booster Nindo
+ Type: Weapon
+ SubType: Dagger
+ Attack: 150
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 510006
+ AegisName: Fatalist
+ Name: Fatalist
+ Type: Weapon
+ SubType: Dagger
+ Weight: 900
+ Attack: 165
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus bAspdRate,(.@r*2/3);
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SC_FATALMENACE",20;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-7;
+ }
+ - Id: 510008
+ AegisName: Ep172_1h_Dagger
+ Name: Wrath Rack
+ Type: Weapon
+ SubType: Dagger
+ Weight: 800
+ Attack: 160
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ bonus bMatk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ }
+ - Id: 510009
+ AegisName: Ep172_1h_Dagger2
+ Name: Gula Teeth
+ Type: Weapon
+ SubType: Dagger
+ Weight: 900
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SC_FATALMENACE",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SC_FATALMENACE",10;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SC_FATALMENACE",15;
+ }
+ - Id: 510017
+ AegisName: CA_B_Dagger
+ Name: Counter Assault Booster Dagger
+ Type: Weapon
+ SubType: Dagger
+ Attack: 180
+ Range: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bDelayrate,-1*getskilllv("KO_LEFT");
+ }
+ if (.@r>=9) {
+ bonus bShortAtkRate,10;
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",25;
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",15;
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",15;
+ }
+ - Id: 510018
+ AegisName: MF_B_Dagger
+ Name: Magic Fatal Booster Dagger
+ Type: Weapon
+ SubType: Dagger
+ Attack: 190
+ MagicAttack: 180
+ Range: 1
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,2;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatk,3*(.@r+(min(BaseLevel,195)/15));
+ bonus bBaseAtk,3*(.@r+(min(BaseLevel,195)/15));
+ if (.@r>=7) {
+ bonus bDelayrate,-1*getskilllv("RG_BACKSTAP");
+ }
+ if (.@r>=9) {
+ bonus bAspd,1;
+ bonus2 bSkillAtk,"SC_FATALMENACE",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus bShortAtkRate,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15;
+ bonus2 bSkillAtk,"SC_FATALMENACE",15;
+ }
+ - Id: 510019
+ AegisName: Up_Magic_Sword
+ Name: Patent Madogum
+ Type: Weapon
+ SubType: Dagger
+ Weight: 800
+ Attack: 150
+ MagicAttack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus bAspdRate,(.@r/3*2);
+ if (.@r>=7) {
+ bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1;
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=11) {
+ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1;
+ }
+ - Id: 510020
+ AegisName: Up_Fatalist
+ Name: Patent Fatalist
+ Type: Weapon
+ SubType: Dagger
+ Weight: 1200
+ Attack: 205
+ Range: 1
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bAspdRate,(.@r*2/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SC_FATALMENACE",25;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillUseSPrate,"SC_FATALMENACE",-15;
+ bonus bDelayrate,-7;
+ }
+ if (.@r>=11) {
+ bonus bShortAtkRate,10;
+ bonus bDelayrate,-7;
+ }
+ - Id: 510022
+ AegisName: Up_Fog_Dew_Sword
+ Name: Patent Kiri no Tsuyu
+ Type: Weapon
+ SubType: Dagger
+ Buy: 20
+ Weight: 1200
+ Attack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ /*Is combo set with 28763 Surudoi Kaze*/
+ - Id: 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
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ - Id: 520002
+ AegisName: Ep172_1h_Axe
+ Name: Pride Steel
+ Type: Weapon
+ SubType: 1hAxe
+ Weight: 3000
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"NC_POWERSWING",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"NC_POWERSWING",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",25;
+ }
+ - Id: 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
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 160
+ MagicAttack: 160
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 530002
+ AegisName: Ep172_1h_Spear
+ Name: Gluttony Stick
+ Type: Weapon
+ SubType: 2hSpear
+ Weight: 2000
+ Attack: 190
+ MagicAttack: 200
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",10;
+ bonus bMatk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",10;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15;
+ }
+ - Id: 530005
+ AegisName: BC_B_Spear
+ Name: Vanishing Cannon Booster Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 200
+ Range: 3
+ Jobs:
+ Crusader: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bAspdRate,getskilllv("CR_SPEARQUICKEN");
+ }
+ if (.@r>=9) {
+ bonus bAspd,1;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",25;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15;
+ }
+ - Id: 530006
+ AegisName: Up_Undine_Spear_K
+ Name: Patent Aquatic Spear
+ Type: Weapon
+ SubType: 1hSpear
+ Buy: 20
+ Weight: 1400
+ Attack: 195
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bLongAtkRate,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",20;
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;
+ }
+ if (.@r>=11) {
+ bonus bPerfectHitAddRate,7;
+ bonus bMaxSPrate,5;
+ }
+ - Id: 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
+ Type: Weapon
+ SubType: Book
+ Attack: 165
+ MagicAttack: 165
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMatkRate,2;
+ bonus2 bMagicAtkEle,Ele_Neutral,3;
+ .@r = getrefine();
+ bonus bMatk,.@r;
+ bonus bMatk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("PF_HPCONVERSION");
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAddSize,Size_All,10;
+ }
+ - Id: 540001
+ AegisName: Boost_Book
+ Name: Booster Book
+ Type: Weapon
+ SubType: Book
+ Attack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bBaseAtk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus bAspdRate,getskilllv("TK_RUN");
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,10;
+ }
+ - Id: 540004
+ AegisName: Ep172_1h_Book
+ Name: Sloth Text
+ Type: Weapon
+ SubType: Book
+ Weight: 500
+ Attack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"SJ_NEWMOONKICK",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SJ_NEWMOONKICK",15;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SJ_FULLMOONKICK",25;
+ }
+ - Id: 540005
+ AegisName: Ep172_1h_Book2
+ Name: Sloth Bible
+ Type: Weapon
+ SubType: Book
+ Weight: 700
+ Attack: 160
+ MagicAttack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ autobonus "{ bonus2 bSubClass,Class_Normal,15; bonus2 bSPRegenRate,300,1000; }",1,5000,BF_WEAPON|BF_MAGIC;
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus bMatk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",30;
+ }
+ - Id: 540009
+ AegisName: SB_B_Book
+ Name: Spell Bolt Booster Book
+ Type: Weapon
+ SubType: Book
+ Attack: 150
+ Range: 1
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ .@val = getskilllv("SA_AUTOSPELL");
+ bonus2 bMagicAtkEle,Ele_Fire,.@val;
+ bonus2 bMagicAtkEle,Ele_Earth,.@val;
+ bonus2 bMagicAtkEle,Ele_Water,.@val;
+ bonus2 bMagicAtkEle,Ele_Wind,.@val;
+ }
+ if (.@r>=9) {
+ bonus bAspd,1;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",25;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",25;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ bonus bAspd,1;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15;
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",15;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15;
+ }
+ - Id: 540010
+ AegisName: Up_Thousand_Sun
+ Name: Patent One Sky One Sun
+ Type: Weapon
+ SubType: Book
+ Weight: 1100
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ StarGladiator: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bShortAtkRate,4*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20;
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SJ_SOLARBURST",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ }
+ - Id: 540011
+ AegisName: Up_Demon_Hunting_Bible
+ Name: Patent Exorcist's Bible
+ Type: Weapon
+ SubType: Book
+ Buy: 20
+ Weight: 700
+ Attack: 205
+ MagicAttack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus bMatk,.@r/2*10;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",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
+ Type: Weapon
+ SubType: Staff
+ Weight: 700
+ Attack: 120
+ MagicAttack: 170
+ Range: 1
+ Slots: 2
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus2 bMagicAtkEle,Ele_Dark,3;
+ .@r = getrefine();
+ bonus bMatk,.@r*3;
+ bonus bMatk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Dark,getskilllv("TK_RUN");
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAddSize,Size_All,10;
+ }
+ - Id: 550002
+ AegisName: Boost_Foxtail
+ Name: Booster Foxtail
+ Type: Weapon
+ SubType: Staff
+ Weight: 700
+ Attack: 250
+ MagicAttack: 260
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*2;
+ bonus bMatk,.@r*2;
+ .@i = min(BaseLevel,180)/15*3;
+ bonus bBaseAtk,.@i;
+ bonus bMatk,.@i;
+ 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: Ein_1H_Foxtail
+ Name: Safety Foxtail
+ Type: Weapon
+ SubType: Staff
+ Weight: 1500
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 170
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,350;
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,7;
+ bonus2 bAddClass,Class_All,7;
+ bonus2 bSkillAtk,"SU_CN_METEOR",15;
+ bonus2 bSkillAtk,"SU_PICKYPECK",15;
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SU_CN_METEOR",20;
+ bonus2 bSkillAtk,"SU_PICKYPECK",20;
+ autobonus "{ bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; }",1,10000,BF_MAGIC;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-20;
+ }
+ - Id: 550007
+ AegisName: Freezing_Rod
+ Name: Chilling Cane
+ Type: Weapon
+ SubType: Staff
+ Weight: 500
+ Attack: 40
+ MagicAttack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*10;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8;
+ if (.@r>=9) {
+ bonus2 bMagicAddEle,Ele_Undead,10;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Water,7;
+ }
+ - Id: 550008
+ AegisName: Ep172_1h_Wand
+ Name: Greed Wand
+ Type: Weapon
+ SubType: Staff
+ Weight: 800
+ Attack: 130
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"SP_SPA",10;
+ bonus bMatk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SP_SPA",15;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SP_SWHOO",25;
+ }
+ - Id: 550009
+ AegisName: Ep172_1h_Foxtail
+ Name: Addiction Wand
+ Type: Weapon
+ SubType: Staff
+ Weight: 1500
+ Attack: 280
+ MagicAttack: 330
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ autobonus "{ bonus2 bSubClass,Class_Normal,15; bonus2 bSPRegenRate,300,1000; }",1,5000,BF_MAGIC;
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus bMatk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15;
+ bonus2 bSkillAtk,"SU_CN_METEOR",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"SU_CN_METEOR",-1500;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20;
+ bonus2 bSkillAtk,"SU_CN_METEOR",20;
+ }
+ - Id: 550010
+ AegisName: ES_B_Stick
+ Name: Elemental Spell Booster Stick
+ Type: Weapon
+ SubType: Staff
+ Attack: 150
+ Range: 1
+ Jobs:
+ Sage: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ .@val = getskilllv("SA_LANDPROTECTOR");
+ bonus2 bMagicAtkEle,Ele_Neutral,.@val;
+ bonus2 bMagicAtkEle,Ele_Earth,.@val;
+ bonus2 bMagicAtkEle,Ele_Water,.@val;
+ bonus2 bMagicAtkEle,Ele_Wind,.@val;
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",25;
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25;
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",15;
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15;
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",15;
+ }
+ - Id: 550011
+ AegisName: AN_B_Wand
+ Name: Adonus Booster Wand
+ Type: Weapon
+ SubType: Staff
+ Attack: 150
+ Range: 1
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_MEDITATIO");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"PR_MAGNUS",25;
+ bonus2 bSkillAtk,"AB_ADORAMUS",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"PR_MAGNUS",15;
+ bonus2 bSkillAtk,"AB_ADORAMUS",15;
+ }
+ - Id: 550012
+ AegisName: Up_Shadow_Staff_K
+ Name: Patent Shadow Staff
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 750
+ Attack: 40
+ MagicAttack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Neutral,15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25;
+ bonus bVariableCastrate,-7;
+ }
+ if (.@r>=11) {
+ bonus bVariableCastrate,-8;
+ bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000;
+ }
+ - Id: 550013
+ AegisName: Up_Freezing_Rod
+ Name: Patent Chilling Cane
+ Type: Weapon
+ SubType: Staff
+ Weight: 750
+ Attack: 40
+ MagicAttack: 195
+ Range: 1
+ Slots: 2
+ Jobs:
+ Sage: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*10;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12;
+ if (.@r>=7) {
+ bonus2 bMagicAddEle,Ele_All,15;
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20;
+ bonus bVariableCastrate,-7;
+ }
+ if (.@r>=11) {
+ bonus bVariableCastrate,-8;
+ bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000;
+ }
+ - Id: 550014
+ AegisName: Up_MeawFoxtail
+ Name: Patent Meowmeow Foxtail
+ Type: Weapon
+ SubType: Staff
+ Buy: 20
+ Weight: 1200
+ Attack: 350
+ MagicAttack: 350
+ Range: 1
+ Slots: 2
+ Jobs:
+ Summoner: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus bBaseAtk,15*(.@r/2);
+ 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
+ Type: Weapon
+ SubType: Staff
+ Weight: 1200
+ Attack: 70
+ MagicAttack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ SoulLinker: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - 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
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus2 bAddClass,Class_All,3;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bBaseAtk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus bMaxHPrate,getskilllv("MO_EXPLOSIONSPIRITS")*2;
+ }
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,10;
+ }
+ - Id: 560002
+ AegisName: Ray_Knuckle
+ Name: Ray Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 700
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SR_TIGERCANNON",15;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000;
+ }
+ - Id: 560004
+ AegisName: Ep172_Bh_Knuck
+ Name: Ira Fist
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 800
+ Attack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SR_HOWLINGOFLION",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-2000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SR_HOWLINGOFLION",10;
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10;
+ }
+ - Id: 560006
+ AegisName: PS_B_Knuckle
+ Name: Rampage Arrow Booster Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 190
+ Range: 1
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("MO_CALLSPIRITS");
+ }
+ if (.@r>=9) {
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",25;
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",15;
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
+ }
+ - Id: 560007
+ AegisName: CP_B_Knuckle
+ Name: Sky Cannon Booster Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Attack: 190
+ Range: 1
+ Jobs:
+ Monk: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2+(min(BaseLevel,195)/15);
+ bonus bMaxHP,250*.@r;
+ bonus bMaxSP,20*.@r;
+ if (.@r>=7) {
+ bonus bMaxHPrate,2*getskilllv("MO_CHAINCOMBO");
+ }
+ if (.@r>=9) {
+ bonus2 bAddClass,Class_All,5;
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",25;
+ bonus2 bSkillAtk,"SR_TIGERCANNON",25;
+ }
+ if (.@r>=11) {
+ bonus bShortAtkRate,15;
+ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"SR_SKYNETBLOW",15;
+ bonus2 bSkillAtk,"SR_TIGERCANNON",15;
+ }
+ - Id: 560008
+ AegisName: Up_Iron_Nail_K
+ Name: Patent Iron Nail
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 1200
+ Attack: 205
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bLongAtkRate,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10;
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;
+ bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
+ bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
+ bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15;
+ }
+ - Id: 560009
+ AegisName: Up_Ray_Knuckle
+ Name: Patent Ray Knuckle
+ Type: Weapon
+ SubType: Knuckle
+ Weight: 800
+ Attack: 205
+ Range: 1
+ Slots: 2
+ Jobs:
+ Monk: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SR_TIGERCANNON",15;
+ bonus2 bSkillAtk,"SR_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
+ Type: Weapon
+ SubType: Musical
+ Attack: 150
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 570002
+ AegisName: Trumpet_Shell_K
+ Name: Trumpet Shell
+ Type: Weapon
+ SubType: Musical
+ Weight: 700
+ Attack: 160
+ MagicAttack: 190
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bMagicAtkEle,Ele_Neutral,.@r/3*4;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillFixedCast,"WM_REVERBERATION",-500;
+ }
+ - Id: 570005
+ AegisName: Ep172_1h_Inst
+ Name: Pigritia Wave
+ Type: Weapon
+ SubType: Musical
+ Weight: 700
+ Attack: 150
+ MagicAttack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ bonus bMatk,8*(.@r/3);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillUseSPrate,"WM_REVERBERATION",20;
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ }
+ - Id: 570008
+ AegisName: Electronic_Guitar_IL
+ Name: Illusion Electric Guitar
+ Type: Weapon
+ SubType: Musical
+ Weight: 1800
+ Attack: 170
+ MagicAttack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bMatk,6*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ }
+ - Id: 570009
+ AegisName: Up_Trumpet_Shell_K
+ Name: Patent Trumpet Shell
+ Type: Weapon
+ SubType: Musical
+ Weight: 1000
+ Attack: 160
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bMagicAtkEle,Ele_All,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillFixedCast,WM_REVERBERATION,-500;
+ }
+ if (.@r>=11) {
+ bonus bMatkRate,7;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ }
+ - Id: 570010
+ AegisName: MV_B_Violin
+ Name: Metallic Vibration Booster Violin
+ Type: Weapon
+ SubType: Musical
+ Attack: 150
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,2+(min(BaseLevel,195)/15);
+ bonus bMatk,180+(3*.@r);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,2*getskilllv("BA_MUSICALLESSON");
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ bonus2 bSkillAtk,"WM_METALICSOUND",25;
+ bonus2 bSkillAtk,"WM_REVERBERATION",25;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillFixedCast,"WM_REVERBERATION",-500;
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ }
+ - Id: 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: 570024
+ AegisName: RS_B_Violin
+ Name: Rainstorm Booster Violin # !todo check english name
+ Type: Weapon
+ SubType: Musical
+ Attack: 150
+ Range: 1
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Male
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: True
+ NoTrade: True
+ NoCart: True
+ NoStorage: True
+ NoGuildStorage: True
+ NoMail: True
+ NoAuction: True
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("BA_MUSICALLESSON");
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",25;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ }
+ }
+ }
+ }
+ - Id: 580000
+ AegisName: Boost_Whip
+ Name: Booster Whip
+ Type: Weapon
+ SubType: Whip
+ Attack: 150
+ MagicAttack: 160
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 580002
+ AegisName: Barb_Wire_K
+ Name: Barbed Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 700
+ Attack: 160
+ MagicAttack: 190
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ if (.@r>=2) {
+ bonus bMatk,.@r/2*10;
+ }
+ if (.@r>=3) {
+ bonus2 bMagicAtkEle,Ele_Neutral,.@r/3*4;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillFixedCast,"WM_REVERBERATION",-5000;
+ }
+ - Id: 580005
+ AegisName: Ep172_1h_Whip
+ Name: Pigritia Spark
+ Type: Weapon
+ SubType: Whip
+ Weight: 700
+ Attack: 150
+ MagicAttack: 210
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ bonus bMatk,8*(.@r/3);
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillUseSPrate,"WM_REVERBERATION",20;
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ }
+ - Id: 580008
+ AegisName: Electric_Eel_IL
+ Name: Illusion Electric Eel
+ Type: Weapon
+ SubType: Whip
+ Weight: 1800
+ Attack: 170
+ MagicAttack: 180
+ Range: 2
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bMatk,6*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ }
+ - Id: 580009
+ AegisName: Up_Barb_Wire_K
+ Name: Patent Barbed Wire Whip
+ Type: Weapon
+ SubType: Whip
+ Weight: 1000
+ Attack: 160
+ MagicAttack: 230
+ Range: 1
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bMagicAtkEle,Ele_All,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ bonus2 bSkillAtk,"WM_METALICSOUND",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillFixedCast,WM_REVERBERATION,-500;
+ }
+ if (.@r>=11) {
+ bonus bMatkRate,7;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ }
+ - Id: 580010
+ AegisName: MV_B_Whip
+ Name: Metallic Vibration Booster Whip
+ Type: Weapon
+ SubType: Whip
+ Attack: 150
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,2+(min(BaseLevel,195)/15);
+ bonus bMatk,180+(3*.@r);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_All,2*getskilllv("DC_DANCINGLESSON");
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;
+ bonus2 bSkillAtk,"WM_METALICSOUND",25;
+ bonus2 bSkillAtk,"WM_REVERBERATION",25;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillFixedCast,"WM_REVERBERATION",-500;
+ bonus2 bMagicAtkEle,Ele_All,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ }
+ - Id: 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: 580024
+ AegisName: RS_B_Whip
+ Name: Rainstorm Booster Whip # !todo check english name
+ Type: Weapon
+ SubType: Whip
+ Attack: 150
+ Range: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Gender: Female
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: True
+ NoTrade: True
+ NoCart: True
+ NoStorage: True
+ NoGuildStorage: True
+ NoMail: True
+ NoAuction: True
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("DC_DANCINGLESSON");
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",25;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ }
+ }
+ }
+ }
+ - Id: 590000
+ AegisName: Boost_Mace
+ Name: Booster Mace
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 160
+ MagicAttack: 160
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Left_Hand: 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;
+ }
+ - Id: 590002
+ AegisName: Meteor_Striker
+ Name: Meteor Striker
+ Type: Weapon
+ SubType: 2hAxe
+ Weight: 3000
+ Attack: 300
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ }
+ - Id: 590003
+ AegisName: Saint_Hall
+ Name: Saint Mace
+ Type: Weapon
+ SubType: Mace
+ Weight: 800
+ Attack: 170
+ MagicAttack: 165
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 590006
+ AegisName: Ep172_1h_Hammer
+ Name: Envy Blunt
+ Type: Weapon
+ SubType: Mace
+ Weight: 1500
+ Attack: 180
+ MagicAttack: 210
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",15;
+ bonus bMatk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",20;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillFixedCast,"AB_DUPLELIGHT",-500;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",35;
+ }
+ - Id: 590008
+ AegisName: AK_B_Mace
+ Name: Arm Knuckle Booster Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 400
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("NC_MADOLICENCE");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;
+ bonus2 bSkillAtk,"NC_ARMSCANNON",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,20;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15;
+ bonus2 bSkillAtk,"NC_ARMSCANNON",15;
+ }
+ - Id: 590009
+ AegisName: AC_B_Club
+ Name: Acid Cannon Booster Club
+ Type: Weapon
+ SubType: Mace
+ Attack: 190
+ Range: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("AM_LEARNINGPOTION");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25;
+ bonus2 bSkillAtk,"GN_CARTCANNON",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,20;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15;
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ }
+ - Id: 590010
+ AegisName: DD_B_Mace
+ Name: Dupledex Booster Mace
+ Type: Weapon
+ SubType: Mace
+ Attack: 190
+ Range: 1
+ Jobs:
+ Priest: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus2 bAddClass,Class_All,2;
+ bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15);
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_MEDITATIO");
+ bonus2 bMagicAtkEle,Ele_Earth,getskilllv("HP_MEDITATIO");
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",25;
+ bonus2 bSkillAtk,"AB_JUDEX",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Holy,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",15;
+ bonus2 bSkillAtk,"AB_JUDEX",15;
+ }
+ - Id: 590011
+ AegisName: Up_Meteor_Striker
+ Name: Patent Meteor Striker
+ Type: Weapon
+ SubType: Mace
+ Weight: 3500
+ Attack: 320
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10;
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"NC_VULCANARM",15;
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"NC_ARMSCANNON",25;
+ }
+ if (.@r>=11) {
+ bonus bLongAtkRate,15;
+ bonus bVariableCastrate,-15;
+ }
+ - Id: 590012
+ AegisName: Up_Saint_Hall
+ Name: Patent Saint Mace
+ Type: Weapon
+ SubType: Mace
+ Weight: 1000
+ Attack: 170
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Priest: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - 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: IDTest_bothhand
+ Name: IDTest bothhand
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 10
+ Attack: 100
+ Range: 1
+ Slots: 1
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 1
+ # Flags:
+ # BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_COLDBOLT",1,1;
+ - Id: 600001
+ AegisName: Boost_TH_Sword
+ Name: Booster Two-handed Sword
+ Type: Weapon
+ SubType: 1hSword
+ Attack: 250
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bCritical,10;
+ bonus bMaxHPrate,3;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r;
+ bonus bBaseAtk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN");
+ }
+ if (.@r>=9) {
+ bonus bCritAtkRate,10;
+ }
+ - Id: 600004
+ AegisName: Dragonic_Slayer
+ Name: Dragonic Slayer
+ Type: Weapon
+ SubType: 1hSword
+ Weight: 1000
+ Attack: 180
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ }
+ - Id: 600008
+ AegisName: Ep172_Bh_Sword
+ Name: Hypocrisy Edge
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 3000
+ Attack: 280
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"RK_WINDCUTTER",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RK_WINDCUTTER",10;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RK_WINDCUTTER",15;
+ }
+ - Id: 600009
+ AegisName: Up_Oriental_Sword
+ Name: Patent Oriental Sword
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 2000
+ Attack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ .@i = max(2,getskilllv("RK_SONICWAVE"));
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10;
+ if (.@r>=7) {
+ bonus bUnbreakableWeapon;
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1;
+ }
+ if (.@r>=11) {
+ bonus bCritical,15;
+ bonus bCritAtkRate,15;
+ }
+ - Id: 600011
+ AegisName: Death_Guidance_IL
+ Name: Illusion Death Guidance
+ Type: Weapon
+ SubType: 2hSword
+ Weight: 2000
+ Attack: 240
+ Range: 1
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ Upper: true
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RK_STORMBLAST",20;
+ }
+ if (.@r>=9) {
+ autobonus "{ bonus2 bHPRegenRate,getrefine()*50,1000; }",30,4000,BF_WEAPON;
+ }
+ if (.@r>=11) {
+ bonus bCritAtkRate,15;
+ bonus bCritical,15;
+ }
+ - Id: 600012
+ AegisName: IW_B_T_Sword
+ Name: Ignition Wave Booster Two-handed Sword
+ Type: Weapon
+ SubType: 2hSword
+ Attack: 250
+ Range: 1
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,15;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN");
+ }
+ if (.@r>=9) {
+ bonus bCritAtkRate,10;
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",25;
+ bonus2 bSkillAtk,"RK_SONICWAVE",25;
+ bonus3 bAutoSpell,"RK_SONICWAVE",getskilllv("RK_SONICWAVE"),1;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bCritical,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",15;
+ bonus2 bSkillAtk,"RK_SONICWAVE",15;
+ }
+ - 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
+ Type: Weapon
+ SubType: Katar
+ Attack: 150
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ 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;
+ }
+ - Id: 610003
+ AegisName: Blade_Katar
+ Name: Blade Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1000
+ Attack: 185
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus bAspdRate,.@r/3*2;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-7;
+ }
+ - Id: 610006
+ AegisName: Ep172_Bh_Katar
+ Name: Avaritia Metal
+ Type: Weapon
+ SubType: Katar
+ Weight: 1800
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;
+ }
+ - Id: 610008
+ AegisName: Up_Shiver_Katar_K
+ Name: Patent Shiver Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1400
+ Attack: 255
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10;
+ if (.@r>=7) {
+ bonus bCritAtkRate,15;
+ bonus bAspdRate,10;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Brute,25;
+ bonus2 bAddRace,RC_DemiHuman,25;
+ }
+ if (.@r>=11) {
+ bonus bCritical,15;
+ bonus2 bSkillCooldown,"GC_DARKCROW",-10000;
+ }
+ - Id: 610009
+ AegisName: Up_Blade_Katar
+ Name: Patent Blade Katar
+ Type: Weapon
+ SubType: Katar
+ Weight: 1400
+ Attack: 275
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bAspdRate,(.@r*2/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25;
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-12;
+ }
+ if (.@r>=11) {
+ bonus bShortAtkRate,10;
+ bonus bLongAtkRate,10;
+ }
+ - Id: 610012
+ AegisName: KatarOfCold_Icicle_IL
+ Name: Illusion Katar of Frozen Icicle
+ Type: Weapon
+ SubType: Katar
+ Weight: 1200
+ Attack: 220
+ Range: 1
+ Slots: 2
+ Jobs:
+ Assassin: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,5*.@r;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",20;
+ }
+ if (.@r>=9) {
+ bonus bAspdRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Insect,10;
+ bonus2 bAddEle,Ele_Fire,10;
+ bonus bCritical,15;
+ }
+ - Id: 610013
+ AegisName: RC_B_Katar
+ Name: Rolling Cross Booster Katar
+ Type: Weapon
+ SubType: Katar
+ Attack: 200
+ Range: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,15;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bShortAtkRate,2;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",25;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;
+ }
+ - Id: 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: 610028
+ AegisName: CA_B_Katar
+ Name: Counter Assault Booster Qatar # !todo check english name
+ Type: Weapon
+ SubType: Katar
+ Attack: 240
+ Range: 1
+ Jobs:
+ Assassin: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: True
+ NoTrade: True
+ NoCart: True
+ NoStorage: True
+ NoGuildStorage: True
+ NoMail: True
+ NoAuction: True
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r;
+ bonus bBaseAtk,3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bDelayrate,-(getskilllv("AS_KATAR")/2);
+ if (.@r>=9) {
+ bonus bShortAtkRate,10;
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",25;
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",25;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bDelayrate,-10;
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"ASC_METEORASSAULT",15;
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",15;
+ }
+ }
+ }
+ }
+ - Id: 620003
+ AegisName: PT_B_Axe
+ Name: Power Swing Booster Axe
+ Type: Weapon
+ SubType: 2hAxe
+ Attack: 300
+ Range: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bShortAtkRate,getskilllv("BS_WEAPONRESEARCH");
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
+ bonus2 bSkillAtk,"NC_AXETORNADO",25;
+ bonus2 bSkillAtk,"NC_POWERSWING",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,20;
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"NC_AXETORNADO",15;
+ bonus2 bSkillAtk,"NC_POWERSWING",15;
+ }
+ - Id: 620004
+ AegisName: Up_Avenger
+ Name: Patent Avenger
+ Type: Weapon
+ SubType: 2hAxe
+ Weight: 7000
+ Attack: 290
+ Range: 1
+ Slots: 2
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40;
+ bonus2 bSkillCooldown,"NC_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: Ep172_Bh_Spear
+ Name: Luxuria Pierce
+ Type: Weapon
+ SubType: 2hSpear
+ Weight: 3300
+ Attack: 250
+ Range: 3
+ Slots: 2
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",20;
+ }
+ - Id: 630006
+ AegisName: Brionac_IL
+ Name: Illusion Brionac
+ Type: Weapon
+ SubType: 2hSpear
+ Weight: 3000
+ Attack: 210
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,10;
+ bonus2 bSkillAtk,"LG_OVERBRAND",5*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"LG_OVERBRAND",20;
+ }
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_Medium,15;
+ bonus2 bAddSize,Size_Large,15;
+ }
+ if (.@r>=11) {
+ bonus2 bAddRace,RC_Fish,30;
+ bonus2 bAddRace,RC_Demon,30;
+ }
+ - Id: 630007
+ AegisName: Zephyrus_IL
+ Name: Illusion Zephyrus
+ Type: Weapon
+ SubType: 2hSpear
+ Weight: 3300
+ Attack: 250
+ Range: 3
+ Slots: 2
+ Jobs:
+ Crusader: true
+ Knight: true
+ Swordman: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 120
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,4*.@r;
+ bonus bLongAtkRate,3*(.@r/2);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"LK_SPIRALPIERCE",20;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,5;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_Medium,10;
+ bonus2 bAddSize,Size_Large,10;
+ bonus bHit,10;
+ }
+ - Id: 630008
+ AegisName: HB_B_T_Spear
+ Name: Hundred Breath Booster Spear
+ Type: Weapon
+ SubType: 2hSpear
+ Attack: 250
+ Range: 3
+ Jobs:
+ Knight: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2+(min(BaseLevel,195)/15);
+ bonus bMaxHP,250*.@r;
+ bonus bMaxSP,20*.@r;
+ if (.@r>=7) {
+ bonus bDelayrate,-3*getskilllv("RK_DRAGONTRAINING");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",25;
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",25;
+ }
+ if (.@r>=11) {
+ bonus bLongAtkRate,15;
+ bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-2000;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15;
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
+ }
+ - Id: 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
+ Type: Weapon
+ SubType: Staff
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus2 bMagicAtkEle,Ele_Fire,3;
+ .@r = getrefine();
+ bonus bMatk,.@r*3;
+ bonus bMatk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Fire,getskilllv("HW_MAGICPOWER");
+ }
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Ghost,10;
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ }
+ - Id: 640004
+ AegisName: Blue_Crystal_Staff
+ Name: Blue Crystal Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 800
+ Attack: 100
+ MagicAttack: 200
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*10;
+ bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Water,7;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"WL_JACKFROST",-1000;
+ bonus2 bMagicAddEle,Ele_Fire,7;
+ }
+ - Id: 640005
+ AegisName: Ep172_Bh_Staff
+ Name: Pride Stone
+ Type: Weapon
+ SubType: Huuma
+ Weight: 2000
+ Attack: 180
+ MagicAttack: 320
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus2 bMagicAtkEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus bVariableCastrate,-3*(.@r/3);
+ bonus bMatk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WL_JACKFROST",10;
+ bonus2 bSkillAtk,"WL_COMET",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WL_JACKFROST",-1500;
+ bonus2 bSkillCooldown,"WL_COMET",-10000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"WL_JACKFROST",20;
+ bonus2 bSkillAtk,"WL_COMET",20;
+ }
+ - Id: 640009
+ AegisName: CS_B_Staff
+ Name: Crimson Strain Booster Staff
+ Type: Weapon
+ SubType: Huuma
+ Attack: 150
+ Range: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus bMatk,230+(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Earth,getskilllv("HW_MAGICPOWER");
+ bonus2 bMagicAtkEle,Ele_Fire,getskilllv("HW_MAGICPOWER");
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",25;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",15;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",15;
+ }
+ - Id: 640010
+ AegisName: CJ_B_Staff
+ Name: Chain Jack Booster Staff
+ Type: Weapon
+ SubType: Huuma
+ Attack: 150
+ Range: 1
+ Jobs:
+ Wizard: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus bUnbreakableWeapon;
+ bonus bMatkRate,2;
+ bonus bMatk,230+(3*.@r)+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus2 bMagicAtkEle,Ele_Water,getskilllv("HW_MAGICPOWER");
+ bonus2 bMagicAtkEle,Ele_Wind,getskilllv("HW_MAGICPOWER");
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",25;
+ bonus2 bSkillAtk,"WL_JACKFROST",25;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15;
+ bonus2 bSkillAtk,"WL_JACKFROST",15;
+ }
+ - Id: 640011
+ AegisName: Up_Iron_Staff
+ Name: Patent Iron Staff
+ Type: Weapon
+ SubType: 2hStaff
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 235
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus2 bMagicAtkEle,Ele_Earth,15;
+ bonus2 bMagicAtkEle,Ele_Fire,15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000;
+ bonus bVariableCastrate,-5;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",15;
+ }
+ - Id: 640012
+ AegisName: Up_Blue_Crystal_Staff
+ Name: Patent Blue Crystal Staff
+ Type: Weapon
+ SubType: Staff
+ Weight: 1000
+ Attack: 100
+ MagicAttack: 235
+ Range: 1
+ Slots: 2
+ Jobs:
+ Wizard: true
+ Classes:
+ All_Third: true
+ Locations:
+ Right_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bMatk,.@r/2*15;
+ bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-10;
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ bonus2 bMagicAtkEle,Ele_Wind,15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WL_JACKFROST",-1000;
+ bonus bDelayrate,-5;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAddSize,Size_All,15;
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",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: Ep172_Bh_Huuma
+ Name: Wrath Wheel
+ Type: Weapon
+ SubType: Huuma
+ Weight: 1800
+ Attack: 320
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus bAtkEle,Ele_Wind;
+ bonus bUnbreakableWeapon;
+ bonus2 bSkillAtk,"KO_HUUMARANKA",15;
+ bonus bVariableCastrate,-2*(.@r/3);
+ bonus bBaseAtk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-1000;
+ bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"KO_HUUMARANKA",20;
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20;
+ }
+ - Id: 650004
+ AegisName: Up_Humma_Clear
+ Name: Patent Huuma Shuriken Clearness
+ Type: Weapon
+ SubType: Huuma
+ Buy: 20
+ Weight: 2300
+ Attack: 290
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ bonus bUnbreakableWeapon;
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bLongAtkRate,.@r/3*2;
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"KO_HUUMARANKA",30;
+ bonus bVariableCastrate,-10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000;
+ }
+ if (.@r>=11) {
+ bonus2 bAddEle,Ele_Fire,20;
+ bonus2 bAddEle,Ele_Dark,20;
+ bonus2 bAddEle,Ele_Holy,20;
+ bonus2 bAddRace,RC_Undead,20;
+ bonus2 bAddRace,RC_Demon,20;
+ bonus2 bAddRace,RC_Angel,20;
+ }
+ - Id: 650008
+ AegisName: Adulter_F_Humma
+ Name: Adulter Fides Huuma Shuriken
+ Type: Weapon
+ SubType: Huuma
+ Weight: 2000
+ Attack: 360
+ Range: 1
+ Slots: 2
+ Jobs:
+ KagerouOboro: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 180
+ 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: IDTest_bow
+ Name: IDTest bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 10
+ Attack: 100
+ Range: 5
+ Slots: 1
+ Jobs:
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 1
+ # Flags:
+ # BuyingStore: true
+ Script: |
+ bonus3 bAutoSpell,"MG_COLDBOLT",1,1;
+ - Id: 700001
+ AegisName: Boost_Bow
+ Name: Booster Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 160
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus bCritical,10;
+ bonus bMaxHPrate,3;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bBaseAtk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus bAspdRate,getskilllv("SN_WINDWALK");
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ - Id: 700003
+ AegisName: Scalet_Dragon_L_Bow
+ Name: Scarlet Dragon Leather Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 800
+ Attack: 170
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus bDelayrate,-(.@r/3*4);
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",35;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;
+ }
+ - Id: 700007
+ AegisName: Ep172_Bh_Bow
+ Name: Superbia String
+ Type: Weapon
+ SubType: Bow
+ Weight: 1400
+ Attack: 220
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RA_ARROWSTORM",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RA_ARROWSTORM",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RA_ARROWSTORM",15;
+ }
+ - Id: 700008
+ AegisName: Ep172_Bh_Bow2
+ Name: Gula Gun
+ Type: Weapon
+ SubType: Bow
+ Weight: 1200
+ Attack: 220
+ Range: 5
+ Slots: 2
+ Jobs:
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",15;
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;
+ }
+ - Id: 700009
+ AegisName: Ep172_Bh_Bow3
+ Name: Pigritia Rhythm
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 190
+ Range: 5
+ Slots: 2
+ Jobs:
+ BardDancer: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ bonus bBaseAtk,12*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20;
+ }
+ - Id: 700013
+ AegisName: Up_Narcis_Bow
+ Name: Patent Narcissus Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1000
+ Attack: 210
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bLongAtkRate,.@r/3*4;
+ if (.@r>=7) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",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
+ Type: Weapon
+ SubType: Bow
+ Attack: 210
+ Range: 5
+ Jobs:
+ Rogue: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bDelayrate,-1*(getskilllv("AC_VULTURE")/2);
+ }
+ if (.@r>=9) {
+ bonus bVariableCastrate,-10;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",25;
+ bonus2 bSkillAtk,"SC_FEINTBOMB",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus bLongAtkRate,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",25;
+ bonus2 bSkillAtk,"SC_FEINTBOMB",25;
+ }
+ - Id: 700015
+ AegisName: AS_B_Bow
+ Name: Arrow Booster Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 205
+ Range: 5
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,getskilllv("AC_OWL");
+ }
+ if (.@r>=9) {
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",25;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;
+ bonus2 bAddSize,Size_All,15;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"RA_ARROWSTORM",15;
+ }
+ - Id: 700016
+ AegisName: SB_B_Bow
+ Name: Sharpbolt Booster Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 200
+ Range: 5
+ Jobs:
+ Hunter: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,getskilllv("AC_VULTURE");
+ }
+ if (.@r>=9) {
+ bonus bDelayrate,-10;
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",25;
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus2 bAddClass,Class_All,10;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",15;
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",15;
+ }
+ - Id: 700017
+ AegisName: RS_B_Bow
+ Name: Rainstorm Booster Bow
+ Type: Weapon
+ SubType: Bow
+ Attack: 200
+ Range: 5
+ Jobs:
+ BardDancer: true
+ Classes:
+ Third: true
+ Third_Upper: true
+ Third_Baby: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2;
+ bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15);
+ if (.@r>=7) {
+ bonus bLongAtkRate,2*getskilllv("BA_MUSICALLESSON");
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",25;
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;
+ }
+ if (.@r>=13) {
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ }
+ - Id: 700018
+ AegisName: Up_Royal_Bow_K
+ Name: Patent Royal Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 1200
+ Attack: 205
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Rogue: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3);
+ if (.@r>=7) {
+ bonus bAspdRate,10;
+ bonus2 bWeaponDamageRate,W_BOW,15;
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,12;
+ bonus bCritAtkRate,10;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20;
+ bonus bDelayrate,-10;
+ }
+ - Id: 700019
+ AegisName: Up_Scalet_Dragon_L_Bow
+ Name: Patent Scarlet Dragon Leather Bow
+ Type: Weapon
+ SubType: Bow
+ Weight: 900
+ Attack: 200
+ Range: 5
+ Slots: 2
+ Jobs:
+ Hunter: true
+ Classes:
+ All_Third: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*15;
+ bonus bDelayrate,-(.@r/3*4);
+ if (.@r>=7) {
+ bonus bLongAtkRate,10;
+ bonus2 bAddSize,Size_All,10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",35;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;
+ bonus bVariableCastrate,-10;
+ }
+ - Id: 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: IDTest_gun
+ Name: IDTest gun
+ Type: Weapon
+ SubType: Revolver
+ Weight: 10
+ Attack: 100
+ Range: 7
+ Slots: 1
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Right_Hand: true
+ Left_Hand: true
+ WeaponLevel: 1
+ # Flags:
+ # BuyingStore: true
+ Script: |
+ bonus bDex,2;
+ - Id: 800002
+ AegisName: Up_Crimson_Rose
+ Name: Patent Crimson Rose
+ Type: Weapon
+ SubType: Revolver
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ Range: 7
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,.@r/2*10;
+ bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2;
+ if (.@r>=7) {
+ 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: Ep172_1h_Rifle
+ Name: Lust Pointer
+ Type: Weapon
+ SubType: Rifle
+ Weight: 1300
+ Attack: 260
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10;
+ bonus bAspdRate,3*(.@r/3);
+ bonus bBaseAtk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-3000;
+ }
+ if (.@r>=11) {
+ autobonus3 "{ bonus2 bSkillAtk,\"RL_HAMMER_OF_GOD\",25; }",1000,10000,"RL_C_MARKER";
+ bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-4000;
+ }
+ - Id: 810001
+ AegisName: Up_Master_Soul_Rifle
+ Name: Patent Master Soul Rifle
+ Type: Weapon
+ SubType: Rifle
+ Buy: 20
+ Weight: 1000
+ Attack: 200
+ MagicAttack: 250
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15*(.@r/2);
+ bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3);
+ bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"WL_SOULEXPANSION",20;
+ bonus2 bMagicAddEle,Ele_Ghost,15;
+ }
+ if (.@r>=9) {
+ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1;
+ }
+ if (.@r>=11) {
+ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1;
+ bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1;
+ }
+ - Id: 810002
+ AegisName: Adulter_F_Rifle
+ Name: Adulter Fides Rifle
+ Type: Weapon
+ SubType: Rifle
+ Weight: 1500
+ Attack: 280
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 180
+ 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: Ep172_1h_Shotgun
+ Name: Lust Shatter
+ Type: Weapon
+ SubType: Shotgun
+ Weight: 1600
+ Attack: 310
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus bSplashRange,1;
+ bonus2 bSkillAtk,"RL_SLUGSHOT",10;
+ bonus bAspdRate,3*(.@r/3);
+ bonus bBaseAtk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_S_STORM",10;
+ bonus2 bSkillAtk,"RL_SLUGSHOT",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RL_S_STORM",-1000;
+ bonus2 bSkillCooldown,"RL_SLUGSHOT",-2000;
+ }
+ if (.@r>=11) {
+ autobonus3 "{ bonus2 bSkillAtk,\"RL_S_STORM\",25; }",1000,10000,"RL_SLUGSHOT";
+ bonus2 bSkillAtk,"RL_SLUGSHOT",25;
+ }
+ - Id: 820001
+ AegisName: Up_Demon_Slayer_Shot
+ Name: Patent Demon Slayer Shot
+ Type: Weapon
+ SubType: Shotgun
+ Weight: 2300
+ Attack: 295
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bSplashRange,1;
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bMaxSPrate,2*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bAddClass,Class_Boss,15;
+ bonus2 bAddRace,RC_Undead,15;
+ bonus2 bAddRace,RC_Demon,15;
+ }
+ if (.@r>=9) {
+ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER";
+ }
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35;
+ bonus2 bSkillAtk,"RL_S_STORM",35;
+ }
+ - Id: 820002
+ AegisName: Adulter_F_Shotgun
+ Name: Adulter Fides Shotgun
+ Type: Weapon
+ SubType: Shotgun
+ Weight: 2000
+ Attack: 320
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 180
+ 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
+ Type: Weapon
+ SubType: Gatling
+ Attack: 170
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 100
+ Refineable: true
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ .@r = getrefine();
+ bonus bBaseAtk,.@r*3;
+ bonus bBaseAtk,min(BaseLevel,180)/15*3;
+ if (.@r>=7) {
+ bonus bLongAtkRate,getskilllv("GS_SINGLEACTION");
+ }
+ if (.@r>=9) {
+ bonus bLongAtkRate,10;
+ }
+ - Id: 830001
+ AegisName: Ep172_1h_Gatling
+ Name: Lust Crusher
+ Type: Weapon
+ SubType: Gatling
+ Weight: 2000
+ Attack: 230
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RL_FIRE_RAIN",10;
+ bonus bAspdRate,3*(.@r/3);
+ bonus bBaseAtk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_R_TRIP",10;
+ bonus2 bSkillAtk,"RL_FIRE_RAIN",15;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RL_FIRE_RAIN",-2000;
+ }
+ if (.@r>=11) {
+ autobonus3 "{ bonus2 bSkillAtk,\"RL_R_TRIP\",15; }",1000,10000,"RL_FIRE_RAIN";
+ bonus2 bSkillAtk,"RL_FIRE_RAIN",25;
+ }
+ - Id: 830002
+ AegisName: Up_The_Black
+ Name: Patent The Black
+ Type: Weapon
+ SubType: Gatling
+ Weight: 3000
+ Attack: 225
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bBaseAtk,15*(.@r/2);
+ bonus bLongAtkRate,4*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_R_TRIP",20;
+ bonus2 bSkillUseSPrate,"RL_R_TRIP",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RL_R_TRIP",15;
+ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER";
+ }
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,15;
+ }
+ - Id: 830003
+ AegisName: Adulter_F_Gatling
+ Name: Adulter Fides Gatling Gun
+ Type: Weapon
+ SubType: Gatling
+ Weight: 1500
+ Attack: 250
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 180
+ 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: Ep172_1h_Grenade
+ Name: Lust Boom
+ Type: Weapon
+ SubType: Grenade
+ Weight: 2400
+ Attack: 330
+ Range: 9
+ Slots: 2
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RL_H_MINE",10;
+ bonus bAspdRate,3*(.@r/3);
+ bonus bBaseAtk,6*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_D_TAIL",10;
+ bonus2 bSkillAtk,"RL_H_MINE",10;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillCooldown,"RL_D_TAIL",-1000;
+ bonus2 bSkillCooldown,"RL_H_MINE",-1000;
+ }
+ if (.@r>=11) {
+ autobonus3 "{ bonus2 bSkillAtk,\"RL_D_TAIL\",25; }",1000,10000,"RL_C_MARKER";
+ bonus2 bSkillAtk,"RL_H_MINE",25;
+ }
+ - Id: 840001
+ AegisName: Up_Golden_Lord_Launcher
+ Name: Patent Golden Lord Launcher
+ Type: Weapon
+ SubType: Grenade
+ Buy: 20
+ Weight: 2400
+ Attack: 350
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 150
+ Refineable: true
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3*(.@r/2);
+ bonus bBaseAtk,20*(.@r/3);
+ if (.@r>=7) {
+ bonus2 bSkillAtk,"RL_D_TAIL",15;
+ bonus2 bSkillCooldown,"RL_D_TAIL",-1000;
+ }
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RL_D_TAIL",20;
+ }
+ if (.@r>=11) {
+ bonus2 bAddEle,Ele_All,15;
+ }
+ - Id: 840002
+ AegisName: Adulter_F_Launcher
+ Name: Adulter Fides Launcher
+ Type: Weapon
+ SubType: Grenade
+ Weight: 3000
+ Attack: 350
+ Range: 9
+ Slots: 2
+ Jobs:
+ Rebellion: true
+ Locations:
+ Both_Hand: true
+ WeaponLevel: 4
+ EquipLevelMin: 180
+ 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
new file mode 100644
index 0000000000..6fd736fdaa
--- /dev/null
+++ b/db/re/item_db_etc.yml
@@ -0,0 +1,53298 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect when on the ground. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 670
+ AegisName: Gold_Coin_Moneybag
+ Name: Bag of Gold Coins
+ Type: Etc
+ Buy: 100000
+ Weight: 400
+ - Id: 672
+ AegisName: Copper_Coin_Moneybag
+ Name: Bag of Bronze Coins
+ Type: Etc
+ Buy: 1000
+ Weight: 400
+ - Id: 674
+ AegisName: Mithril_Coin
+ Name: Mithril Coin
+ Type: Etc
+ Buy: 5000
+ Weight: 40
+ - Id: 676
+ AegisName: Silver_Coin_Moneybag
+ Name: Bag of Silver Coins
+ Type: Etc
+ Buy: 50000
+ Weight: 400
+ - Id: 677
+ AegisName: White_Gold_Coin
+ Name: Platinum Coin
+ Type: Etc
+ Buy: 2000
+ Weight: 40
+ - Id: 701
+ AegisName: Ora_Ora
+ Name: Ora Ora
+ Type: Etc
+ Buy: 55000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 702
+ AegisName: Animal_Blood
+ Name: Animal Gore
+ Type: Etc
+ Buy: 450
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 703
+ AegisName: Hinalle
+ Name: Hinalle
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 704
+ AegisName: Aloe
+ Name: Aloe
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 705
+ AegisName: Clover
+ Name: Clover
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 706
+ AegisName: Four_Leaf_Clover
+ Name: Four Leaf Clover
+ Type: Etc
+ Buy: 80000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 707
+ AegisName: Singing_Plant
+ Name: Singing Plant
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 708
+ AegisName: Ment
+ Name: Ment
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 709
+ AegisName: Izidor
+ Name: Izidor
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 710
+ AegisName: Illusion_Flower
+ Name: Illusion Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 711
+ AegisName: Shoot
+ Name: Shoot
+ Type: Etc
+ Buy: 16
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 712
+ AegisName: Flower
+ Name: Flower
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 713
+ AegisName: Empty_Bottle
+ Name: Empty Bottle
+ Type: Etc
+ Buy: 6
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 714
+ AegisName: Emperium
+ Name: Emperium
+ Type: Etc
+ Buy: 2
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 715
+ AegisName: Yellow_Gemstone
+ Name: Yellow Gemstone
+ Type: Etc
+ Buy: 450
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 716
+ AegisName: Red_Gemstone
+ Name: Red Gemstone
+ Type: Etc
+ Buy: 450
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 717
+ AegisName: Blue_Gemstone
+ Name: Blue Gemstone
+ Type: Etc
+ Buy: 1500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 718
+ AegisName: Dark_Red_Jewel
+ Name: Garnet
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 719
+ AegisName: Violet_Jewel
+ Name: Amethyst
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 720
+ AegisName: Skyblue_Jewel
+ Name: Aquamarine
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 721
+ AegisName: Azure_Jewel
+ Name: Emerald
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 722
+ AegisName: Scarlet_Jewel
+ Name: Pearl
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 723
+ AegisName: Cardinal_Jewel
+ Name: Ruby
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 724
+ AegisName: Cardinal_Jewel_
+ Name: Cursed Ruby
+ Type: Etc
+ Buy: 600
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 725
+ AegisName: Red_Jewel
+ Name: Sardonyx
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 726
+ AegisName: Blue_Jewel
+ Name: Sapphire
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 727
+ AegisName: White_Jewel
+ Name: Opal
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 728
+ AegisName: Golden_Jewel
+ Name: Topaz
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 729
+ AegisName: Bluish_Green_Jewel
+ Name: Zircon
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 730
+ AegisName: Crystal_Jewel
+ Name: 1carat Diamond
+ Type: Etc
+ Buy: 10000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 731
+ AegisName: Crystal_Jewel_
+ Name: 2carat Diamond
+ Type: Etc
+ Buy: 25000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 732
+ AegisName: Crystal_Jewel__
+ Name: 3carat Diamond
+ Type: Etc
+ Buy: 55000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 733
+ AegisName: Crystal_Jewel___
+ Name: Cracked Diamond
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 734
+ AegisName: Red_Frame
+ Name: Red Frame
+ Type: Etc
+ Buy: 3000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 735
+ AegisName: Blue_Porcelain
+ Name: Chung Jah
+ Type: Etc
+ Buy: 5000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 736
+ AegisName: White_Platter
+ Name: China
+ Type: Etc
+ Buy: 1000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 737
+ AegisName: Black_Ladle
+ Name: Black Ladle
+ Type: Etc
+ Buy: 400
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 738
+ AegisName: Pencil_Case
+ Name: Pencil Case
+ Type: Etc
+ Buy: 400
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 739
+ AegisName: Rouge
+ Name: Rouge
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 740
+ AegisName: Stuffed_Doll
+ Name: Puppet
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 741
+ AegisName: Poring_Doll
+ Name: Poring Doll
+ Type: Etc
+ Buy: 1800
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 742
+ AegisName: Chonchon_Doll
+ Name: Chonchon Doll
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 743
+ AegisName: Spore_Doll
+ Name: Spore Doll
+ Type: Etc
+ Buy: 5500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 744
+ AegisName: Bunch_Of_Flowers
+ Name: Bouquet
+ Type: Etc
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 745
+ AegisName: Wedding_Bouquet
+ Name: Wedding Bouquet
+ Type: Etc
+ Buy: 12000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 746
+ AegisName: Glass_Bead
+ Name: Glass Bead
+ Type: Etc
+ Buy: 1400
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 747
+ AegisName: Crystal_Mirror
+ Name: Crystal Mirror
+ Type: Etc
+ Buy: 15000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 748
+ AegisName: Witherless_Rose
+ Name: Witherless Rose
+ Type: Etc
+ Buy: 55000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 749
+ AegisName: Frozen_Rose
+ Name: Frozen Rose
+ Type: Etc
+ Buy: 35000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 750
+ AegisName: Baphomet_Doll
+ Name: Baphomet Doll
+ Type: Etc
+ Buy: 18000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 751
+ AegisName: Osiris_Doll
+ Name: Osiris Doll
+ Type: Etc
+ Buy: 14000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 752
+ AegisName: Grasshopper_Doll
+ Name: Rocker Doll
+ Type: Etc
+ Buy: 4000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 753
+ AegisName: Monkey_Doll
+ Name: Yoyo Doll
+ Type: Etc
+ Buy: 6000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 754
+ AegisName: Raccoondog_Doll
+ Name: Raccoon Doll
+ Type: Etc
+ Buy: 5000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 756
+ AegisName: Oridecon_Stone
+ Name: Rough Oridecon
+ Type: Etc
+ Buy: 550
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 757
+ AegisName: Elunium_Stone
+ Name: Rough Elunium
+ Type: Etc
+ Buy: 650
+ 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
+ Type: Etc
+ Buy: 260
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 902
+ AegisName: Tree_Root
+ Name: Tree Root
+ Type: Etc
+ Buy: 12
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 903
+ AegisName: Reptile_Tongue
+ Name: Reptile Tongue
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 904
+ AegisName: Scorpion's_Tail
+ Name: Scorpion Tail
+ Type: Etc
+ Buy: 124
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 905
+ AegisName: Stem
+ Name: Stem
+ Type: Etc
+ Buy: 46
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 906
+ AegisName: Pointed_Scale
+ Name: Pointed Scale
+ Type: Etc
+ Buy: 68
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 907
+ AegisName: Resin
+ Name: Resin
+ Type: Etc
+ Buy: 120
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 908
+ AegisName: Spawn
+ Name: Spawn
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 909
+ AegisName: Jellopy
+ Name: Jellopy
+ Type: Etc
+ Buy: 6
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 910
+ AegisName: Garlet
+ Name: Garlet
+ Type: Etc
+ Buy: 40
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 911
+ AegisName: Scell
+ Name: Scell
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 912
+ AegisName: Zargon
+ Name: Zargon
+ Type: Etc
+ Buy: 480
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 913
+ AegisName: Tooth_Of_Bat
+ Name: Tooth of Bat
+ Type: Etc
+ Buy: 34
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 914
+ AegisName: Fluff
+ Name: Fluff
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 915
+ AegisName: Chrysalis
+ Name: Chrysalis
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 916
+ AegisName: Feather_Of_Birds
+ Name: Feather of Birds
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 917
+ AegisName: Talon
+ Name: Talon
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 918
+ AegisName: Sticky_Webfoot
+ Name: Sticky Webfoot
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 919
+ AegisName: Animal's_Skin
+ Name: Animal Skin
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 920
+ AegisName: Claw_Of_Wolves
+ Name: Wolf Claw
+ Type: Etc
+ Buy: 58
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 921
+ AegisName: Mushroom_Spore
+ Name: Mushroom Spore
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 922
+ AegisName: Orcish_Cuspid
+ Name: Orc's Fang
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 923
+ AegisName: Evil_Horn
+ Name: Evil Horn
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 924
+ AegisName: Powder_Of_Butterfly
+ Name: Powder of Butterfly
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 925
+ AegisName: Bill_Of_Birds
+ Name: Bill of Birds
+ Type: Etc
+ Buy: 64
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 926
+ AegisName: Scale_Of_Snakes
+ Name: Snake Scale
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 928
+ AegisName: Insect_Feeler
+ Name: Insect Feeler
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 929
+ AegisName: Immortal_Heart
+ Name: Immortal Heart
+ Type: Etc
+ Buy: 374
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 930
+ AegisName: Rotten_Bandage
+ Name: Rotten Bandage
+ Type: Etc
+ Buy: 350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 931
+ AegisName: Orcish_Voucher
+ Name: Orcish Voucher
+ Type: Etc
+ Buy: 142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 932
+ AegisName: Skel_Bone
+ Name: Skel-Bone
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 934
+ AegisName: Mementos
+ Name: Memento
+ Type: Etc
+ Buy: 600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 935
+ AegisName: Shell
+ Name: Shell
+ Type: Etc
+ Buy: 14
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 936
+ AegisName: Scales_Shell
+ Name: Scale Shell
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 937
+ AegisName: Posionous_Canine
+ Name: Venom Canine
+ Type: Etc
+ Buy: 148
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 938
+ AegisName: Sticky_Mucus
+ Name: Sticky Mucus
+ Type: Etc
+ Buy: 70
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 939
+ AegisName: Bee_Sting
+ Name: Bee Sting
+ Type: Etc
+ Buy: 32
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 940
+ AegisName: Grasshopper's_Leg
+ Name: Grasshopper's Leg
+ Type: Etc
+ Buy: 36
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 941
+ AegisName: Nose_Ring
+ Name: Nose Ring
+ Type: Etc
+ Buy: 568
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 942
+ AegisName: Yoyo_Tail
+ Name: Yoyo Tail
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 943
+ AegisName: Solid_Shell
+ Name: Solid Shell
+ Type: Etc
+ Buy: 448
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 944
+ AegisName: Horseshoe
+ Name: Horseshoe
+ Type: Etc
+ Buy: 588
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 945
+ AegisName: Raccoon_Leaf
+ Name: Raccoon Leaf
+ Type: Etc
+ Buy: 106
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 946
+ AegisName: Snail's_Shell
+ Name: Snail's Shell
+ Type: Etc
+ Buy: 64
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 947
+ AegisName: Horn
+ Name: Horn
+ Type: Etc
+ Buy: 116
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 948
+ AegisName: Bear's_Foot
+ Name: Bear's Footskin
+ Type: Etc
+ Buy: 174
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 949
+ AegisName: Feather
+ Name: Feather
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 950
+ AegisName: Heart_Of_Mermaid
+ Name: Heart of Mermaid
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 951
+ AegisName: Fin
+ Name: Fin
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 952
+ AegisName: Cactus_Needle
+ Name: Cactus Needle
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 953
+ AegisName: Stone_Heart
+ Name: Stone Heart
+ Type: Etc
+ Buy: 184
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 954
+ AegisName: Shining_Scales
+ Name: Shining Scale
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 955
+ AegisName: Worm_Peelings
+ Name: Worm Peeling
+ Type: Etc
+ Buy: 52
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 956
+ AegisName: Gill
+ Name: Gill
+ Type: Etc
+ Buy: 342
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 957
+ AegisName: Decayed_Nail
+ Name: Decayed Nail
+ Type: Etc
+ Buy: 82
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 958
+ AegisName: Horrendous_Mouth
+ Name: Horrendous Mouth
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 959
+ AegisName: Rotten_Scale
+ Name: Stinky Scale
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 960
+ AegisName: Nipper
+ Name: Nipper
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 961
+ AegisName: Conch
+ Name: Conch
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 962
+ AegisName: Tentacle
+ Name: Tentacle
+ Type: Etc
+ Buy: 70
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 963
+ AegisName: Sharp_Scale
+ Name: Sharp Scale
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 964
+ AegisName: Crap_Shell
+ Name: Crab Shell
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 965
+ AegisName: Clam_Shell
+ Name: Clam Shell
+ Type: Etc
+ Buy: 56
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 966
+ AegisName: Flesh_Of_Clam
+ Name: Clam Flesh
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 967
+ AegisName: Turtle_Shell
+ Name: Turtle Shell
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 968
+ AegisName: Voucher_Of_Orcish_Hero
+ Name: Heroic Emblem
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 969
+ AegisName: Gold
+ Name: Gold
+ Type: Etc
+ Buy: 150000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 970
+ AegisName: Alchol
+ Name: Alcohol
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 971
+ AegisName: Detrimindexta
+ Name: Detrimindexta
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 972
+ AegisName: Karvodailnirol
+ Name: Karvodailnirol
+ Type: Etc
+ Buy: 400
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 973
+ AegisName: Counteragent
+ Name: Counteragent
+ Type: Etc
+ Buy: 800
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ - Id: 974
+ AegisName: Mixture
+ Name: Mixture
+ Type: Etc
+ Buy: 800
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ - Id: 975
+ AegisName: Scarlet_Dyestuffs
+ Name: Scarlet Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 976
+ AegisName: Lemon_Dyestuffs
+ Name: Lemon Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 978
+ AegisName: Cobaltblue_Dyestuffs
+ Name: Cobaltblue Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 979
+ AegisName: Darkgreen_Dyestuffs
+ Name: Darkgreen Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 980
+ AegisName: Orange_Dyestuffs
+ Name: Orange Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 981
+ AegisName: Violet_Dyestuffs
+ Name: Violet Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 982
+ AegisName: White_Dyestuffs
+ Name: White Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 983
+ AegisName: Black_Dyestuffs
+ Name: Black Dyestuffs
+ Type: Etc
+ Buy: 8000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 984
+ AegisName: Oridecon
+ Name: Oridecon
+ Type: Etc
+ Buy: 1100
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 985
+ AegisName: Elunium
+ Name: Elunium
+ Type: Etc
+ Buy: 1100
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 986
+ AegisName: Anvil
+ Name: Anvil
+ Type: Etc
+ Buy: 30000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 987
+ AegisName: Oridecon_Anvil
+ Name: Oridecon Anvil
+ Type: Etc
+ Buy: 120000
+ Weight: 700
+ Flags:
+ BuyingStore: true
+ - Id: 988
+ AegisName: Golden_Anvil
+ Name: Golden Anvil
+ Type: Etc
+ Buy: 300000
+ Weight: 900
+ Flags:
+ BuyingStore: true
+ - Id: 989
+ AegisName: Emperium_Anvil
+ Name: Emperium Anvil
+ Type: Etc
+ Buy: 600000
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 990
+ AegisName: Boody_Red
+ Name: Red Blood
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 991
+ AegisName: Crystal_Blue
+ Name: Crystal Blue
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 992
+ AegisName: Wind_Of_Verdure
+ Name: Wind of Verdure
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 993
+ AegisName: Yellow_Live
+ Name: Green Live
+ Type: Etc
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 994
+ AegisName: Flame_Heart
+ Name: Flame Heart
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 995
+ AegisName: Mistic_Frozen
+ Name: Mystic Frozen
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 996
+ AegisName: Rough_Wind
+ Name: Rough Wind
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 997
+ AegisName: Great_Nature
+ Name: Great Nature
+ Type: Etc
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 998
+ AegisName: Iron
+ Name: Iron
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 999
+ AegisName: Steel
+ Name: Steel
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1000
+ AegisName: Star_Crumb
+ Name: Star Crumb
+ Type: Etc
+ Buy: 4500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1001
+ AegisName: Sparkling_Dust
+ Name: Star Dust
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1002
+ AegisName: Iron_Ore
+ Name: Iron Ore
+ Type: Etc
+ Buy: 50
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 1003
+ AegisName: Coal
+ Name: Coal
+ Type: Etc
+ Buy: 500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 1004
+ AegisName: Patriotism_Marks
+ Name: Chivalry Emblem
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1005
+ AegisName: Hammer_Of_Blacksmith
+ Name: Hammer of Blacksmith
+ Type: Etc
+ Buy: 2
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ - Id: 1006
+ AegisName: Old_Magic_Book
+ Name: Old Magicbook
+ Type: Etc
+ Buy: 2
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 1007
+ AegisName: Penetration
+ Name: Necklace of Wisdom
+ Type: Etc
+ Buy: 2
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 1008
+ AegisName: Frozen_Heart
+ Name: Necklace of Oblivion
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 1009
+ AegisName: Sacred_Marks
+ Name: Hand of God
+ Type: Etc
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 1010
+ AegisName: Phracon
+ Name: Phracon
+ Type: Etc
+ Buy: 200
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 1011
+ AegisName: Emveretarcon
+ Name: Emveretarcon
+ Type: Etc
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 1012
+ AegisName: Lizard_Scruff
+ Name: Frill
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1013
+ AegisName: Colorful_Shell
+ Name: Rainbow Shell
+ Type: Etc
+ Buy: 90
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1014
+ AegisName: Jaws_Of_Ant
+ Name: Ant Jaw
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1015
+ AegisName: Thin_N'_Long_Tongue
+ Name: Tongue
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1016
+ AegisName: Rat_Tail
+ Name: Rat Tail
+ Type: Etc
+ Buy: 52
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1017
+ AegisName: Moustache_Of_Mole
+ Name: Mole Whiskers
+ Type: Etc
+ Buy: 106
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1018
+ AegisName: Nail_Of_Mole
+ Name: Mole Claw
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1019
+ AegisName: Wooden_Block
+ Name: Trunk
+ Type: Etc
+ Buy: 60
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1020
+ AegisName: Long_Hair
+ Name: Black Hair
+ Type: Etc
+ Buy: 292
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1021
+ AegisName: Dokkaebi_Horn
+ Name: Dokebi Horn
+ Type: Etc
+ Buy: 292
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1022
+ AegisName: Fox_Tail
+ Name: Nine Tails
+ Type: Etc
+ Buy: 650
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1023
+ AegisName: Fish_Tail
+ Name: Fish Tail
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1024
+ AegisName: Chinese_Ink
+ Name: Squid Ink
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1025
+ AegisName: Spiderweb
+ Name: Cobweb
+ Type: Etc
+ Buy: 184
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1026
+ AegisName: Acorn
+ Name: Acorn
+ Type: Etc
+ Buy: 98
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1027
+ AegisName: Porcupine_Spike
+ Name: Porcupine Quill
+ Type: Etc
+ Buy: 158
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1028
+ AegisName: Wild_Boar's_Mane
+ Name: Mane
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1029
+ AegisName: Tiger's_Skin
+ Name: Tiger Skin
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1030
+ AegisName: Tiger_Footskin
+ Name: Tiger's Footskin
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1031
+ AegisName: Limb_Of_Mantis
+ Name: Mantis Scythe
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1032
+ AegisName: Blossom_Of_Maneater
+ Name: Maneater Blossom
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1033
+ AegisName: Root_Of_Maneater
+ Name: Maneater Root
+ Type: Etc
+ Buy: 208
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1034
+ AegisName: Cobold_Hair
+ Name: Blue Hair
+ Type: Etc
+ Buy: 342
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1035
+ AegisName: Dragon_Canine
+ Name: Dragon Canine
+ Type: Etc
+ Buy: 484
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1036
+ AegisName: Dragon_Scale
+ Name: Dragon Scale
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1037
+ AegisName: Dragon_Train
+ Name: Dragon Tail
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1038
+ AegisName: Petite_DiablOfs_Horn
+ Name: Little Evil Horn
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1039
+ AegisName: Petite_DiablOfs_Wing
+ Name: Little Evil Wing
+ Type: Etc
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1040
+ AegisName: Elder_Pixie's_Beard
+ Name: Elder Pixie's Moustache
+ Type: Etc
+ Buy: 232
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1041
+ AegisName: Lantern
+ Name: Lantern
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1042
+ AegisName: Short_Leg
+ Name: Bug Leg
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1043
+ AegisName: Nail_Of_Orc
+ Name: Orc Claw
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1044
+ AegisName: Tooth_Of_
+ Name: Zenorc's Fang
+ Type: Etc
+ Buy: 264
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1045
+ AegisName: Sacred_Masque
+ Name: Cultish Masque
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1046
+ AegisName: Tweezer
+ Name: Scorpion Nipper
+ Type: Etc
+ Buy: 614
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1047
+ AegisName: Head_Of_Medusa
+ Name: Dead Medusa
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1048
+ AegisName: Slender_Snake
+ Name: Horrendous Hair
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1049
+ AegisName: Skirt_Of_Virgin
+ Name: Skirt of Virgin
+ Type: Etc
+ Buy: 1700
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1050
+ AegisName: Tendon
+ Name: Tendon
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1051
+ AegisName: Detonator
+ Name: Detonator
+ Type: Etc
+ Buy: 450
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1052
+ AegisName: Single_Cell
+ Name: Single Cell
+ Type: Etc
+ Buy: 46
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1053
+ AegisName: Tooth_Of_Ancient_Fish
+ Name: Ancient Tooth
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1054
+ AegisName: Lip_Of_Ancient_Fish
+ Name: Ancient Lips
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1055
+ AegisName: Earthworm_Peeling
+ Name: Earthworm Peeling
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1056
+ AegisName: Grit
+ Name: Grit
+ Type: Etc
+ Buy: 306
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1057
+ AegisName: Moth_Dust
+ Name: Moth Dust
+ Type: Etc
+ Buy: 138
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1058
+ AegisName: Wing_Of_Moth
+ Name: Moth Wings
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1059
+ AegisName: Transparent_Cloth
+ Name: Fabric
+ Type: Etc
+ Buy: 306
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1060
+ AegisName: Golden_Hair
+ Name: Golden Hair
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1061
+ AegisName: Starsand_Of_Witch
+ Name: Witched Starsand
+ Type: Etc
+ Buy: 484
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1062
+ AegisName: Pumpkin_Head
+ Name: Jack o' Pumpkin
+ Type: Etc
+ Buy: 374
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1063
+ AegisName: Sharpened_Cuspid
+ Name: Fang
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1064
+ AegisName: Reins
+ Name: Reins
+ Type: Etc
+ Buy: 802
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1065
+ AegisName: Booby_Trap
+ Name: Trap
+ Type: Etc
+ Buy: 75
+ Weight: 2
+ Flags:
+ BuyingStore: true
+ - Id: 1066
+ AegisName: Tree_Of_Archer_1
+ Name: Fine-grained Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1067
+ AegisName: Tree_Of_Archer_2
+ Name: Solid Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1068
+ AegisName: Tree_Of_Archer_3
+ Name: Barren Trunk
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1069
+ AegisName: Mushroom_Of_Thief_1
+ Name: Orange Net Mushroom
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 1070
+ AegisName: Mushroom_Of_Thief_2
+ Name: Orange Gooey Mushroom
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 1071
+ AegisName: Mage_Test_1
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 30
+ - Id: 1072
+ AegisName: Delivery_Message
+ Name: Delivery Message
+ Type: Etc
+ Weight: 10
+ - Id: 1073
+ AegisName: Merchant_Voucher_1
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1074
+ AegisName: Merchant_Voucher_2
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1075
+ AegisName: Merchant_Voucher_3
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1076
+ AegisName: Merchant_Voucher_4
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1077
+ AegisName: Merchant_Voucher_5
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1078
+ AegisName: Merchant_Voucher_6
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1079
+ AegisName: Merchant_Voucher_7
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1080
+ AegisName: Merchant_Voucher_8
+ Name: Voucher
+ Type: Etc
+ Weight: 10
+ - Id: 1081
+ AegisName: Merchant_Box_1
+ Name: Delivery Box
+ Type: Etc
+ Weight: 1200
+ - Id: 1082
+ AegisName: Merchant_Box_2
+ Name: Delivery Box
+ Type: Etc
+ Weight: 1200
+ - Id: 1083
+ AegisName: Merchant_Box_3
+ Name: Delivery Box
+ Type: Etc
+ Weight: 1200
+ - Id: 1084
+ AegisName: Kapra's_Pass
+ Name: Kafra Pass
+ Type: Etc
+ Weight: 10
+ - Id: 1085
+ AegisName: Mage_Test_2
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 30
+ - Id: 1086
+ AegisName: Mage_Test_3
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 30
+ - Id: 1087
+ AegisName: Mage_Test_4
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 30
+ - Id: 1088
+ AegisName: Morocc_Potion
+ Name: Morocc Solution
+ Type: Etc
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 1089
+ AegisName: Payon_Potion
+ Name: Payon Solution
+ Type: Etc
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 1090
+ AegisName: Mage_Test_Etc
+ Name: Unknown Test Tube
+ Type: Etc
+ Weight: 30
+ - Id: 1091
+ AegisName: Merchant_Box_Etc
+ Name: Delivery Box
+ Type: Etc
+ Weight: 1200
+ - Id: 1092
+ AegisName: Empty_Cylinder
+ Name: Empty Test Tube
+ Type: Etc
+ Buy: 3
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1093
+ AegisName: Empty_Potion
+ Name: Empty Potion Bottle
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1094
+ AegisName: Short_Daenggie
+ Name: Short Daenggie
+ Type: Etc
+ Buy: 278
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1095
+ AegisName: Needle_Of_Alarm
+ Name: Needle of Alarm
+ Type: Etc
+ Buy: 546
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1096
+ AegisName: Round_Shell
+ Name: Round Shell
+ Type: Etc
+ Buy: 780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1097
+ AegisName: Worn_Out_Page
+ Name: Worn Out Page
+ Type: Etc
+ Buy: 948
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1098
+ AegisName: Manacles
+ Name: Manacles
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1099
+ AegisName: Worn_Out_Prison_Uniform
+ Name: Worn-out Prison Uniform
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 1750
+ AegisName: Arrow
+ Name: Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 1
+ Weight: 1
+ Attack: 25
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1751
+ AegisName: Silver_Arrow
+ Name: Silver Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1752
+ AegisName: Fire_Arrow
+ Name: Fire Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 8
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 1753
+ AegisName: Steel_Arrow
+ Name: Steel Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 4
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1754
+ AegisName: Crystal_Arrow
+ Name: Crystal Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 1755
+ AegisName: Arrow_Of_Wind
+ Name: Arrow of Wind
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 1756
+ AegisName: Stone_Arrow
+ Name: Stone Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 1757
+ AegisName: Immatrial_Arrow
+ Name: Immaterial Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 1758
+ AegisName: Stun_Arrow
+ Name: Stun Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 1759
+ AegisName: Freezing_Arrow
+ Name: Frozen Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ bonus2 bAddEff,Eff_Freeze,1000;
+ - Id: 1760
+ AegisName: Flash_Arrow
+ Name: Flash Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Blind,1000;
+ - Id: 1761
+ AegisName: Curse_Arrow
+ Name: Cursed Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Curse,1000;
+ - Id: 1762
+ AegisName: Rusty_Arrow
+ Name: Rusty Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ - Id: 1763
+ AegisName: Poison_Arrow
+ Name: Poison Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,2000;
+ - Id: 1764
+ AegisName: Incisive_Arrow
+ Name: Sharp Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 20
+ Weight: 1
+ Attack: 10
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bCriticalLong,20;
+ - Id: 1765
+ AegisName: Oridecon_Arrow
+ Name: Oridecon Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 30
+ Weight: 1
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1766
+ AegisName: Arrow_Of_Counter_Evil
+ Name: Arrow of Counter Evil
+ Type: Ammo
+ SubType: Arrow
+ Buy: 40
+ Weight: 3
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 1767
+ AegisName: Arrow_Of_Shadow
+ Name: Arrow of Shadow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 1768
+ AegisName: Sleep_Arrow
+ Name: Sleep Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Sleep,2000;
+ - Id: 1769
+ AegisName: Silence_Arrow
+ Name: Mute Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 1
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Silence,1000;
+ - Id: 1770
+ AegisName: Iron_Arrow
+ Name: Iron Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 4
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1771
+ AegisName: Venom_Knife
+ Name: Venom Knife
+ Type: Ammo
+ SubType: Dagger
+ Buy: 50
+ Weight: 5
+ Attack: 30
+ Jobs:
+ Assassin: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1772
+ AegisName: Holy_Arrow
+ Name: Holy Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 3
+ Weight: 1
+ Attack: 50
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ bonus2 bAddRace,RC_Demon,5;
+ - Id: 1773
+ AegisName: Arrow_Of_Elf
+ Name: Elven Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 45
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ - Id: 1774
+ AegisName: Hunting_Arrow
+ Name: Hunting Arrow
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 35
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 1775
+ AegisName: Siege_Arrow_S
+ Name: Siege Arrow S
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 45
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 130
+ - Id: 1776
+ AegisName: Siege_Arrow_A
+ Name: Siege Arrow A
+ Type: Ammo
+ SubType: Arrow
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Archer: true
+ Assassin: true
+ BardDancer: true
+ Hunter: true
+ Rogue: true
+ Thief: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 95
+ - Id: 4001
+ AegisName: Poring_Card
+ Name: Poring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ bonus bFlee2,1;
+ - Id: 4002
+ AegisName: Fabre_Card
+ Name: Fabre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,100;
+ - Id: 4003
+ AegisName: Pupa_Card
+ Name: Pupa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,700;
+ - Id: 4004
+ AegisName: Drops_Card
+ Name: Drops Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,1;
+ bonus bHit,3;
+ - Id: 4005
+ AegisName: Poring__Card
+ Name: Santa Poring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Dark,20;
+ - Id: 4006
+ AegisName: Lunatic_Card
+ Name: Lunatic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,1;
+ bonus bCritical,1;
+ bonus bFlee2,1;
+ - Id: 4007
+ AegisName: Pecopeco_Egg_Card
+ Name: Peco Peco Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Formless,20;
+ - Id: 4008
+ AegisName: Picky_Card
+ Name: Picky Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus bBaseAtk,10;
+ - Id: 4009
+ AegisName: Chonchon_Card
+ Name: Chonchon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,2;
+ - Id: 4010
+ AegisName: Wilow_Card
+ Name: Willow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSP,80;
+ - Id: 4011
+ AegisName: Picky__Card
+ Name: Picky Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHP,100;
+ - Id: 4012
+ AegisName: Thief_Bug_Egg_Card
+ Name: Thief Bug Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,400;
+ - Id: 4013
+ AegisName: Andre_Egg_Card
+ Name: Andre Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 4014
+ AegisName: Roda_Frog_Card
+ Name: Roda Frog Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,400;
+ bonus bMaxSP,50;
+ - Id: 4015
+ AegisName: Condor_Card
+ Name: Condor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ - Id: 4016
+ AegisName: Thief_Bug_Card
+ Name: Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ - Id: 4017
+ AegisName: Savage_Babe_Card
+ Name: Savage Babe Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Stun,500;
+ - Id: 4018
+ AegisName: Andre_Larva_Card
+ Name: Andre Larva Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,10;
+ - Id: 4019
+ AegisName: Hornet_Card
+ Name: Hornet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus bBaseAtk,3;
+ - Id: 4020
+ AegisName: Farmiliar_Card
+ Name: Familiar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Blind,500;
+ bonus bBaseAtk,5;
+ - Id: 4021
+ AegisName: Rocker_Card
+ Name: Rocker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,1;
+ bonus bBaseAtk,5;
+ - Id: 4022
+ AegisName: Spore_Card
+ Name: Spore Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,2;
+ - Id: 4023
+ AegisName: Desert_Wolf_Babe_Card
+ Name: Baby Desert Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ - Id: 4024
+ AegisName: Plankton_Card
+ Name: Plankton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Sleep,500;
+ bonus bBaseAtk,5;
+ - Id: 4025
+ AegisName: Skeleton_Card
+ Name: Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,10;
+ bonus2 bAddEff,Eff_Stun,200;
+ - Id: 4026
+ AegisName: Thief_Bug_Female_Card
+ Name: Female Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,1;
+ - Id: 4027
+ AegisName: Kukre_Card
+ Name: Kukre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ - Id: 4028
+ AegisName: Tarou_Card
+ Name: Tarou Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ - Id: 4029
+ AegisName: Wolf_Card
+ Name: Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bCritical,1;
+ - Id: 4030
+ AegisName: Mandragora_Card
+ Name: Mandragora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Wind,20;
+ - Id: 4031
+ AegisName: Pecopeco_Card
+ Name: Peco Peco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,10;
+ - Id: 4032
+ AegisName: Ambernite_Card
+ Name: Ambernite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,2;
+ - Id: 4033
+ AegisName: Poporing_Card
+ Name: Poporing Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_DETOXIFY",1;
+ - Id: 4034
+ AegisName: Worm_Tail_Card
+ Name: Wormtail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,2;
+ - Id: 4035
+ AegisName: Hydra_Card
+ Name: Hydra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,20;
+ bonus2 bAddRace,RC_Player_Human,20;
+ - Id: 4036
+ AegisName: Muka_Card
+ Name: Muka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,10;
+ - Id: 4037
+ AegisName: Snake_Card
+ Name: Snake Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Poison,500;
+ bonus bBaseAtk,5;
+ - Id: 4038
+ AegisName: Zombie_Card
+ Name: Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,20;
+ - Id: 4039
+ AegisName: Stainer_Card
+ Name: Stainer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Silence,2000;
+ bonus bDef,1;
+ - Id: 4040
+ AegisName: Creamy_Card
+ Name: Creamy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AL_TELEPORT",1;
+ - Id: 4041
+ AegisName: Coco_Card
+ Name: Coco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Sleep,2000;
+ bonus bDef,1;
+ - Id: 4042
+ AegisName: Steel_Chonchon_Card
+ Name: Steel Chonchon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus bDef,2;
+ - Id: 4043
+ AegisName: Andre_Card
+ Name: Andre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 4044
+ AegisName: Smokie_Card
+ Name: Smokie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_HIDING",1;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 4045
+ AegisName: Horn_Card
+ Name: Horn Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkDef,35;
+ - Id: 4046
+ AegisName: Martin_Card
+ Name: Martin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Blind,2000;
+ bonus bDef,1;
+ - Id: 4047
+ AegisName: Ghostring_Card
+ Name: Ghostring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Ghost;
+ bonus bHPrecovRate,-25;
+ - Id: 4048
+ AegisName: Poison_Spore_Card
+ Name: Poison Spore Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_POISON",3;
+ - Id: 4049
+ AegisName: Vadon_Card
+ Name: Vadon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Fire,20;
+ - Id: 4050
+ AegisName: Thief_Bug_Male_Card
+ Name: Male Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ - Id: 4051
+ AegisName: Yoyo_Card
+ Name: Yoyo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee2,5;
+ bonus bAgi,1;
+ - Id: 4052
+ AegisName: Elder_Wilow_Card
+ Name: Elder Willow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,2;
+ - Id: 4053
+ AegisName: Vitata_Card
+ Name: Vitata Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AL_HEAL",1;
+ bonus bUseSPrate,25;
+ - Id: 4054
+ AegisName: Angeling_Card
+ Name: Angeling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Holy;
+ - Id: 4055
+ AegisName: Marina_Card
+ Name: Marina Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Freeze,500;
+ bonus bBaseAtk,5;
+ - Id: 4056
+ AegisName: Dustiness_Card
+ Name: Dustiness Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Wind,30;
+ bonus bFlee,5;
+ - Id: 4057
+ AegisName: Metaller_Card
+ Name: Metaller Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Silence,500;
+ bonus bBaseAtk,5;
+ - Id: 4058
+ AegisName: Thara_Frog_Card
+ Name: Thara Frog Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,30;
+ bonus2 bSubRace,RC_Player_Human,30;
+ - Id: 4059
+ AegisName: Soldier_Andre_Card
+ Name: Soldier Andre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Plant,30;
+ - Id: 4060
+ AegisName: Goblin_Card
+ Name: Goblin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Brute,20;
+ bonus2 bAddRace,RC_Player_Doram,20;
+ - Id: 4061
+ AegisName: Cornutus_Card
+ Name: Cornutus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus bDef,1;
+ - Id: 4062
+ AegisName: Anacondaq_Card
+ Name: Anacondaq Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Poison,20;
+ - Id: 4063
+ AegisName: Caramel_Card
+ Name: Caramel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Insect,20;
+ - Id: 4064
+ AegisName: Zerom_Card
+ Name: Zerom Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,3;
+ - Id: 4065
+ AegisName: Kaho_Card
+ Name: Kaho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Earth,20;
+ - Id: 4066
+ AegisName: Orc_Warrior_Card
+ Name: Orc Warrior Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Brute,30;
+ bonus2 bSubRace,RC_Player_Doram,30;
+ - Id: 4067
+ AegisName: Megalodon_Card
+ Name: Megalodon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Freeze,2000;
+ bonus bDef,1;
+ - Id: 4068
+ AegisName: Scorpion_Card
+ Name: Scorpion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Plant,20;
+ - Id: 4069
+ AegisName: Drainliar_Card
+ Name: Drainliar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Water,20;
+ - Id: 4070
+ AegisName: Eggyra_Card
+ Name: Eggyra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bSPrecovRate,15;
+ - Id: 4071
+ AegisName: Orc_Zombie_Card
+ Name: Orc Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Undead,30;
+ bonus bFlee,5;
+ - Id: 4072
+ AegisName: Golem_Card
+ Name: Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUnbreakableWeapon;
+ bonus bBaseAtk,5;
+ - Id: 4073
+ AegisName: Pirate_Skel_Card
+ Name: Pirate Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "MC_DISCOUNT",5;
+ - Id: 4074
+ AegisName: BigFoot_Card
+ Name: Bigfoot Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Insect,30;
+ - Id: 4075
+ AegisName: Argos_Card
+ Name: Argos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Stone,2000;
+ bonus bDef,1;
+ - Id: 4076
+ AegisName: Magnolia_Card
+ Name: Magnolia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Curse,500;
+ bonus bBaseAtk,5;
+ - Id: 4077
+ AegisName: Phen_Card
+ Name: Phen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoCastCancel;
+ bonus bVariableCastrate,25;
+ - Id: 4078
+ AegisName: Savage_Card
+ Name: Savage Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,3;
+ - Id: 4079
+ AegisName: Mantis_Card
+ Name: Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,3;
+ - Id: 4080
+ AegisName: Flora_Card
+ Name: Flora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Fish,20;
+ - Id: 4081
+ AegisName: Hode_Card
+ Name: Hode Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Earth,30;
+ bonus bFlee,5;
+ - Id: 4082
+ AegisName: Desert_Wolf_Card
+ Name: Desert Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddSize,Size_Small,15;
+ bonus bBaseAtk,5;
+ - Id: 4083
+ AegisName: Rafflesia_Card
+ Name: Rafflesia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Fish,30;
+ - Id: 4084
+ AegisName: Marine_Sphere_Card
+ Name: Marine Sphere Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "SM_MAGNUM",3;
+ - Id: 4085
+ AegisName: Orc_Skeleton_Card
+ Name: Orc Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Holy,20;
+ - Id: 4086
+ AegisName: Soldier_Skeleton_Card
+ Name: Soldier Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,9;
+ - Id: 4087
+ AegisName: Giearth_Card
+ Name: Giearth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Confusion,10000;
+ bonus2 bSubEle,Ele_Earth,15;
+ - Id: 4088
+ AegisName: Frilldora_Card
+ Name: Frilldora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AS_CLOAKING",1;
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 4089
+ AegisName: Sword_Fish_Card
+ Name: Swordfish Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Water;
+ bonus bDef,1;
+ - Id: 4090
+ AegisName: Munak_Card
+ Name: Munak Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Stone,1500;
+ bonus2 bSubEle,Ele_Earth,5;
+ bonus bDef,1;
+ - Id: 4091
+ AegisName: Kobold_Card
+ Name: Kobold Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus bCritical,4;
+ - Id: 4092
+ AegisName: Skel_Worker_Card
+ Name: Skeleton Worker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddSize,Size_Medium,15;
+ bonus bBaseAtk,5;
+ - Id: 4093
+ AegisName: Obeaune_Card
+ Name: Obeaune Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AL_CURE",1;
+ - Id: 4094
+ AegisName: Archer_Skeleton_Card
+ Name: Archer Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 4095
+ AegisName: Marse_Card
+ Name: Marse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Water,30;
+ bonus bFlee,5;
+ - Id: 4096
+ AegisName: Zenorc_Card
+ Name: Zenorc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Poison,400;
+ bonus bBaseAtk,10;
+ - Id: 4097
+ AegisName: Matyr_Card
+ Name: Matyr Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bAgi,1;
+ - Id: 4098
+ AegisName: Dokebi_Card
+ Name: Dokebi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ bonus bDef,1;
+ - Id: 4099
+ AegisName: Pasana_Card
+ Name: Pasana Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ bonus bDef,1;
+ - Id: 4100
+ AegisName: Sohee_Card
+ Name: Sohee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,15;
+ bonus bSPrecovRate,3;
+ - Id: 4101
+ AegisName: Sand_Man_Card
+ Name: Sandman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ bonus bDef,1;
+ - Id: 4102
+ AegisName: Whisper_Card
+ Name: Whisper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,20;
+ bonus2 bSubEle,Ele_Ghost,-50;
+ - Id: 4103
+ AegisName: Horong_Card
+ Name: Horong Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "MG_SIGHT",1;
+ UnEquipScript: |
+ sc_end SC_SIGHT;
+ - Id: 4104
+ AegisName: Requiem_Card
+ Name: Requiem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEff,Eff_Confusion,500;
+ - Id: 4105
+ AegisName: Marc_Card
+ Name: Marc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Water,5;
+ bonus2 bResEff,Eff_Freeze,10000;
+ - Id: 4106
+ AegisName: Mummy_Card
+ Name: Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,20;
+ - Id: 4107
+ AegisName: Verit_Card
+ Name: Verit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,8;
+ - Id: 4108
+ AegisName: Myst_Card
+ Name: Myst Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Poison,30;
+ bonus bFlee,5;
+ - Id: 4109
+ AegisName: Jakk_Card
+ Name: Jakk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Fire,30;
+ bonus bFlee,5;
+ - Id: 4110
+ AegisName: Ghoul_Card
+ Name: Ghoul Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Poison,2000;
+ bonus bDef,1;
+ - Id: 4111
+ AegisName: Strouf_Card
+ Name: Strouf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Demon,20;
+ - Id: 4112
+ AegisName: Marduk_Card
+ Name: Marduk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Silence,10000;
+ - Id: 4113
+ AegisName: Marionette_Card
+ Name: Marionette Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Ghost,30;
+ bonus bFlee,5;
+ - Id: 4114
+ AegisName: Argiope_Card
+ Name: Argiope Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Poison;
+ bonus bDef,1;
+ - Id: 4115
+ AegisName: Hunter_Fly_Card
+ Name: Hunter Fly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bHPDrainRate,30,15;
+ - Id: 4116
+ AegisName: Isis_Card
+ Name: Isis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Dark,30;
+ bonus bFlee,5;
+ - Id: 4117
+ AegisName: Side_Winder_Card
+ Name: Sidewinder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_DOUBLE",1;
+ bonus bDoubleRate,5;
+ - Id: 4118
+ AegisName: Petit_Card
+ Name: Earth Petite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Dragon,20;
+ - Id: 4119
+ AegisName: Bathory_Card
+ Name: Bathory Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Dark;
+ - Id: 4120
+ AegisName: Petit__Card
+ Name: Sky Petite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Dragon,30;
+ - Id: 4121
+ AegisName: Phreeoni_Card
+ Name: Phreeoni Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,100;
+ - Id: 4122
+ AegisName: Deviruchi_Card
+ Name: Deviruchi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus2 bResEff,Eff_Blind,10000;
+ - Id: 4123
+ AegisName: Eddga_Card
+ Name: Eddga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,-25;
+ bonus bNoWalkDelay;
+ - Id: 4124
+ AegisName: Medusa_Card
+ Name: Medusa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bResEff,Eff_Stone,10000;
+ - Id: 4125
+ AegisName: Deviace_Card
+ Name: Deviace Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4126
+ AegisName: Minorous_Card
+ Name: Minorous Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddSize,Size_Large,15;
+ bonus bBaseAtk,5;
+ - Id: 4127
+ AegisName: Nightmare_Card
+ Name: Nightmare Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Sleep,10000;
+ bonus bAgi,1;
+ - Id: 4128
+ AegisName: Golden_Bug_Card
+ Name: Golden Thief Bug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoMagicDamage,100;
+ bonus bUseSPrate,100;
+ - Id: 4129
+ AegisName: Baphomet__Card
+ Name: Bapho Jr. Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,3;
+ bonus bCritical,1;
+ - Id: 4130
+ AegisName: Scorpion_King_Card
+ Name: Scorpion King Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Undead,20;
+ - Id: 4131
+ AegisName: Moonlight_Flower_Card
+ Name: Moonlight Flower Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bSpeedRate,25;
+ - Id: 4132
+ AegisName: Mistress_Card
+ Name: Mistress Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoGemStone;
+ bonus bUseSPrate,25;
+ - Id: 4133
+ AegisName: Daydric_Card
+ Name: Raydric Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,20;
+ - Id: 4134
+ AegisName: Dracula_Card
+ Name: Dracula Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPDrainRate,100,5;
+ - Id: 4135
+ AegisName: Orc_Load_Card
+ Name: Orc Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bShortWeaponDamageReturn,30;
+ - Id: 4136
+ AegisName: Khalitzburg_Card
+ Name: Khalitzburg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Demon,30;
+ - Id: 4137
+ AegisName: Drake_Card
+ Name: Drake Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoSizeFix;
+ - Id: 4138
+ AegisName: Anubis_Card
+ Name: Anubis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Angel,30;
+ - Id: 4139
+ AegisName: Joker_Card
+ Name: Joker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_STEAL",1;
+ - Id: 4140
+ AegisName: Knight_Of_Abyss_Card
+ Name: Abysmal Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_Boss,25;
+ - Id: 4141
+ AegisName: Evil_Druid_Card
+ Name: Evil Druid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Undead;
+ bonus bInt,1;
+ bonus bDef,1;
+ - Id: 4142
+ AegisName: Doppelganger_Card
+ Name: Doppelganger Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 4143
+ AegisName: Orc_Hero_Card
+ Name: Orc Hero Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,3;
+ bonus2 bResEff,Eff_Stun,10000;
+ - Id: 4144
+ AegisName: Osiris_Card
+ Name: Osiris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bRestartFullRecover;
+ - Id: 4145
+ AegisName: Berzebub_Card
+ Name: Berzebub Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVariableCastrate,-30;
+ - Id: 4146
+ AegisName: Maya_Card
+ Name: Maya Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMagicDamageReturn,50;
+ - Id: 4147
+ AegisName: Baphomet_Card
+ Name: Baphomet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,-10;
+ bonus bSplashRange,1;
+ - Id: 4148
+ AegisName: Pharaoh_Card
+ Name: Pharaoh Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUseSPrate,-30;
+ - Id: 4149
+ AegisName: Gargoyle_Card
+ Name: Gargoyle Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12028,RC_Insect,100;
+ - Id: 4150
+ AegisName: Goat_Card
+ Name: Goat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<6) {
+ bonus bDef,2;
+ bonus bMdef,5;
+ }
+ - Id: 4151
+ AegisName: Gajomart_Card
+ Name: Gajomart Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Plant,-20;
+ bonus2 bExpAddRace,RC_Plant,10;
+ - Id: 4152
+ AegisName: Galapago_Card
+ Name: Galapago Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4153
+ AegisName: Crab_Card
+ Name: Crab Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1266,30;
+ - Id: 4154
+ AegisName: Rice_Cake_Boy_Card
+ Name: Dumpling Child Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4155
+ AegisName: Goblin_Leader_Card
+ Name: Goblin Leader Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace2,RC2_Goblin,30;
+ - Id: 4156
+ AegisName: Steam_Goblin_Card
+ Name: Goblin Steamrider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Formless,7;
+ - Id: 4157
+ AegisName: Goblin_Archer_Card
+ Name: Goblin Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Undead,7;
+ - Id: 4158
+ AegisName: Flying_Deleter_Card
+ Name: Sky Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,-100;
+ bonus bHPGainValue,100;
+ - Id: 4159
+ AegisName: Nine_Tail_Card
+ Name: Nine Tail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ if (getrefine()>8)
+ bonus bFlee,20;
+ - Id: 4160
+ AegisName: Antique_Firelock_Card
+ Name: Firelock Soldier Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ if (getrefine()>8) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ }
+ - Id: 4161
+ AegisName: Grand_Peco_Card
+ Name: Grand Peco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;
+ - Id: 4162
+ AegisName: Grizzly_Card
+ Name: Grizzly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Blind,300;
+ - Id: 4163
+ AegisName: Gryphon_Card
+ Name: Gryphon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4164
+ AegisName: Gullinbursti_Card
+ Name: Gullinbursti Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Fish,-20;
+ bonus2 bExpAddRace,RC_Fish,10;
+ - Id: 4165
+ AegisName: Gig_Card
+ Name: Gig Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Insect,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4166
+ AegisName: Nightmare_Terror_Card
+ Name: Nightmare Terror Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Curse,300;
+ - Id: 4167
+ AegisName: Neraid_Card
+ Name: Nereid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Brute,5;
+ bonus2 bSPGainRace,RC_Player_Doram,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4168
+ AegisName: Dark_Lord_Card
+ Name: Dark Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;
+ - Id: 4169
+ AegisName: Dark_Illusion_Card
+ Name: Dark Illusion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,-10;
+ bonus bMaxSPrate,-10;
+ bonus bVariableCastrate,-10;
+ - Id: 4170
+ AegisName: Dark_Frame_Card
+ Name: Dark Frame Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stone,600;
+ - Id: 4171
+ AegisName: Dark_Priest_Card
+ Name: Dark Priest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4172
+ AegisName: The_Paper_Card
+ Name: The Paper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,20;
+ bonus bSPDrainValue,-1;
+ - Id: 4173
+ AegisName: Demon_Pungus_Card
+ Name: Demon Pungus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Sleep,600;
+ - Id: 4174
+ AegisName: Deviling_Card
+ Name: Deviling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4175
+ AegisName: Poison_Toad_Card
+ Name: Poisonous Toad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"TF_POISON",1,20;
+ bonus2 bAddSkillBlow,52,5;
+ - Id: 4176
+ AegisName: Dullahan_Card
+ Name: Dullahan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Dragon,7;
+ - Id: 4177
+ AegisName: Dryad_Card
+ Name: Dryad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,993,RC_Plant,100;
+ bonus2 bSubEle,Ele_Earth,10;
+ - Id: 4178
+ AegisName: Dragon_Tail_Card
+ Name: Dragon Tail Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ - Id: 4180
+ AegisName: Driller_Card
+ Name: Driller Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Dragon,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4181
+ AegisName: Disguise_Card
+ Name: Disguise Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);
+ - Id: 4182
+ AegisName: Diabolic_Card
+ Name: Diabolic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Demon,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4183
+ AegisName: Vagabond_Wolf_Card
+ Name: Vagabond Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ - Id: 4184
+ AegisName: Lava_Golem_Card
+ Name: Lava Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace2,RC2_Golem,30;
+ - Id: 4185
+ AegisName: Rideword_Card
+ Name: Rideword Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ if (BaseClass == Job_Acolyte) {
+ bonus bInt,1;
+ bonus bMdef,1;
+ }
+ - Id: 4186
+ AegisName: Raggler_Card
+ Name: Raggler Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus bVit,1;
+ - Id: 4187
+ AegisName: Raydric_Archer_Card
+ Name: Raydric Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12030,RC_Demon,100;
+ - Id: 4188
+ AegisName: Leib_Olmai_Card
+ Name: Leib Olmai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Fire,10;
+ bonus3 bAddMonsterDropItem,990,RC_Brute,100;
+ - Id: 4189
+ AegisName: Wraith_Dead_Card
+ Name: Wraith Dead Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Curse,600;
+ - Id: 4190
+ AegisName: Wraith_Card
+ Name: Wraith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12027,RC_Undead,100;
+ - Id: 4191
+ AegisName: Loli_Ruri_Card
+ Name: Loli Ruri Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;
+ - Id: 4192
+ AegisName: Rotar_Zairo_Card
+ Name: Rotar Zairo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Fish,7;
+ - Id: 4193
+ AegisName: Lude_Card
+ Name: Lude Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;
+ - Id: 4194
+ AegisName: Rybio_Card
+ Name: Rybio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);
+ - Id: 4195
+ AegisName: Leaf_Cat_Card
+ Name: Leaf Cat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Water,10;
+ bonus3 bAddMonsterDropItem,991,RC_Fish,100;
+ - Id: 4196
+ AegisName: Marin_Card
+ Name: Marin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItem,909,2000;
+ bonus2 bAddMonsterDropItem,7126,10;
+ - Id: 4197
+ AegisName: Mastering_Card
+ Name: Mastering Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,1;
+ - Id: 4198
+ AegisName: Maya_Puple_Card
+ Name: Maya Purple Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bIntravision;
+ - Id: 4199
+ AegisName: Merman_Card
+ Name: Merman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,10;
+ bonus bSPrecovRate,10;
+ - Id: 4200
+ AegisName: Megalith_Card
+ Name: Megalith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,7;
+ - Id: 4201
+ AegisName: Majoruros_Card
+ Name: Majoruros Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stun,600;
+ - Id: 4202
+ AegisName: Civil_Servant_Card
+ Name: Mao Guai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Ghost,20;
+ - Id: 4203
+ AegisName: Mutant_Dragon_Card
+ Name: Mutant Dragonoid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,15;
+ bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL") == 10),50;
+ - Id: 4204
+ AegisName: Mini_Demon_Card
+ Name: Mini Demon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Brute,-20;
+ bonus2 bSubRace,RC_Player_Doram,-20;
+ bonus2 bExpAddRace,RC_Brute,10;
+ - Id: 4205
+ AegisName: Mimic_Card
+ Name: Mimic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItem,603,10;
+ - Id: 4206
+ AegisName: Mystcase_Card
+ Name: Myst Case Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItem,644,30;
+ - Id: 4207
+ AegisName: Mysteltainn_Card
+ Name: Mysteltainn Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubSize,Size_Small,25;
+ bonus bDef,1;
+ - Id: 4208
+ AegisName: Miyabi_Ningyo_Card
+ Name: Miyabi Doll Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"MG_FROSTDIVER",5;
+ - Id: 4209
+ AegisName: Violy_Card
+ Name: Violy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER") == 5),20;
+ - Id: 4210
+ AegisName: Wander_Man_Card
+ Name: Wanderer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4211
+ AegisName: Vocal_Card
+ Name: Vocal Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMdef,3;
+ - Id: 4212
+ AegisName: Bon_Gun_Card
+ Name: Bongun Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"SM_BASH",1,20;
+ bonus2 bAddSkillBlow,"SM_BASH",5;
+ bonus2 bAddDefMonster,1026,-100;
+ - Id: 4213
+ AegisName: Brilight_Card
+ Name: Brilight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Silence,600;
+ - Id: 4214
+ AegisName: Bloody_Murderer_Card
+ Name: Bloody Murderer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Insect,7;
+ - Id: 4215
+ AegisName: Blazzer_Card
+ Name: Blazer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Food,600;
+ - Id: 4216
+ AegisName: Sasquatch_Card
+ Name: Sasquatch Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Freeze,600;
+ - Id: 4217
+ AegisName: Live_Peach_Tree_Card
+ Name: Enchanted Peach Tree Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL") == 10),20;
+ - Id: 4218
+ AegisName: Succubus_Card
+ Name: Succubus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,-3;
+ bonus bHPrecovRate,-20;
+ bonus bMaxHP,1000;
+ - Id: 4219
+ AegisName: Sageworm_Card
+ Name: Sage Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItem,715,30;
+ bonus2 bAddMonsterDropItem,716,30;
+ bonus2 bAddMonsterDropItem,717,30;
+ - Id: 4220
+ AegisName: Solider_Card
+ Name: Solider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,2;
+ bonus bMdef,2;
+ - Id: 4221
+ AegisName: Skeleton_General_Card
+ Name: Skeleton General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Insect,-20;
+ bonus2 bExpAddRace,RC_Insect,10;
+ - Id: 4222
+ AegisName: Skel_Prisoner_Card
+ Name: Skeleton Prisoner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Sleep,300;
+ - Id: 4223
+ AegisName: Stalactic_Golem_Card
+ Name: Stalactic Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Stun,2000;
+ - Id: 4224
+ AegisName: Stem_Worm_Card
+ Name: Stem Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12032,RC_Brute,100;
+ - Id: 4225
+ AegisName: Stone_Shooter_Card
+ Name: Stone Shooter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bHit,10;
+ - Id: 4226
+ AegisName: Sting_Card
+ Name: Sting Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,2;
+ if (getrefine()>8)
+ bonus bMdef,5;
+ - Id: 4227
+ AegisName: Spring_Rabbit_Card
+ Name: Spring Rabbit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4228
+ AegisName: Sleeper_Card
+ Name: Sleeper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12031,RC_Fish,100;
+ - Id: 4229
+ AegisName: C_Tower_Manager_Card
+ Name: Tower Keeper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bVariableCastrate,-5;
+ - Id: 4230
+ AegisName: Shinobi_Card
+ Name: Shinobi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;
+ - Id: 4231
+ AegisName: Increase_Soil_Card
+ Name: Mi Gao Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4233
+ AegisName: Baby_Leopard_Card
+ Name: Baby Leopard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,3;
+ if (BaseClass == Job_Merchant)
+ bonus bUnbreakableArmor;
+ - Id: 4234
+ AegisName: Anolian_Card
+ Name: Anolian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION") == 10),30;
+ - Id: 4235
+ AegisName: Cookie_XMAS_Card
+ Name: Christmas Cookie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Angel,-20;
+ bonus2 bExpAddRace,RC_Angel,10;
+ - Id: 4236
+ AegisName: Amon_Ra_Card
+ Name: Amon Ra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAllStats,1;
+ bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));
+ - Id: 4237
+ AegisName: Owl_Duke_Card
+ Name: Owl Duke Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;
+ - Id: 4238
+ AegisName: Owl_Baron_Card
+ Name: Owl Baron Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;
+ - Id: 4239
+ AegisName: Iron_Fist_Card
+ Name: Iron Fist Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Formless,-20;
+ bonus2 bExpAddRace,RC_Formless,10;
+ - Id: 4240
+ AegisName: Arclouse_Card
+ Name: Arclouze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<6) {
+ bonus bDef,2;
+ bonus bMdef,3;
+ }
+ - Id: 4241
+ AegisName: Archangeling_Card
+ Name: Arc Angeling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,300;
+ if (readparam(bLuk)>=77) {
+ bonus bHPrecovRate,100;
+ bonus bSPrecovRate,100;
+ }
+ - Id: 4242
+ AegisName: Apocalips_Card
+ Name: Apocalipse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,2;
+ if (getrefine()>8)
+ bonus bMaxHP,800;
+ - Id: 4243
+ AegisName: Antonio_Card
+ Name: Antonio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;
+ - Id: 4244
+ AegisName: Alarm_Card
+ Name: Alarm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200;
+ bonus bMaxHP,300;
+ bonus bVit,1;
+ - Id: 4245
+ AegisName: Am_Mut_Card
+ Name: Am Mut Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,-20;
+ bonus2 bSubRace,RC_Player_Human,-20;
+ bonus2 bExpAddRace,RC_DemiHuman,10;
+ - Id: 4246
+ AegisName: Assulter_Card
+ Name: Assaulter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_DemiHuman,7;
+ bonus2 bCriticalAddRace,RC_Player_Human,7;
+ - Id: 4247
+ AegisName: Aster_Card
+ Name: Aster Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1074,30;
+ - Id: 4248
+ AegisName: Ancient_Mummy_Card
+ Name: Ancient Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;
+ - Id: 4249
+ AegisName: Ancient_Worm_Card
+ Name: Ancient Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Demon,-20;
+ bonus2 bExpAddRace,RC_Demon,10;
+ - Id: 4250
+ AegisName: Executioner_Card
+ Name: Executioner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubSize,Size_Large,25;
+ bonus bDef,1;
+ - Id: 4251
+ AegisName: Elder_Card
+ Name: Elder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkDef,5;
+ - Id: 4253
+ AegisName: Alice_Card
+ Name: Alice Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubClass,Class_Boss,40;
+ bonus2 bSubClass,Class_Normal,-40;
+ - Id: 4254
+ AegisName: Tirfing_Card
+ Name: Ogretooth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubSize,Size_Medium,25;
+ bonus bDef,1;
+ - Id: 4255
+ AegisName: Orc_Lady_Card
+ Name: Orc Lady Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace2,RC2_Orc,30;
+ - Id: 4256
+ AegisName: Orc_Archer_Card
+ Name: Orc Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;
+ - Id: 4257
+ AegisName: Wild_Rose_Card
+ Name: Wild Rose Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ if (BaseClass == Job_Thief)
+ bonus bFlee2,5;
+ - Id: 4258
+ AegisName: Wicked_Nymph_Card
+ Name: Evil Nymph Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bMaxSP,50;
+ - Id: 4259
+ AegisName: Wooden_Golem_Card
+ Name: Wooden Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus bHPrecovRate,30;
+ - Id: 4260
+ AegisName: Wootan_Shooter_Card
+ Name: Wootan Shooter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Confusion,2000;
+ - Id: 4261
+ AegisName: Wootan_Fighter_Card
+ Name: Wootan Fighter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus2 bResEff,Eff_Bleeding,2000;
+ - Id: 4262
+ AegisName: Evil_Cloud_Hermit_Card
+ Name: Cloud Hermit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12029,RC_Plant,100;
+ - Id: 4263
+ AegisName: Incant_Samurai_Card
+ Name: Samurai Spector Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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;
+ }
+ - Id: 4264
+ AegisName: Wind_Ghost_Card
+ Name: Wind Ghost Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL") == 10),20;
+ - Id: 4265
+ AegisName: Li_Me_Mang_Ryang_Card
+ Name: Jing Guai Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12033,RC_Angel,100;
+ - Id: 4266
+ AegisName: Eclipse_Card
+ Name: Eclipse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ - Id: 4267
+ AegisName: Explosion_Card
+ Name: Explosion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Dragon,-20;
+ bonus2 bExpAddRace,RC_Dragon,10;
+ - Id: 4268
+ AegisName: Injustice_Card
+ Name: Injustice Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"AS_SONICBLOW",1,50;
+ - Id: 4269
+ AegisName: Incubus_Card
+ Name: Incubus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,-3;
+ bonus bSPrecovRate,-20;
+ bonus bMaxSP,150;
+ - Id: 4270
+ AegisName: Giant_Spider_Card
+ Name: Giant Spider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Poison,600;
+ - Id: 4271
+ AegisName: Giant_Honet_Card
+ Name: Giant Hornet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Wind,10;
+ bonus3 bAddMonsterDropItem,992,RC_Insect,100;
+ - Id: 4272
+ AegisName: Dancing_Dragon_Card
+ Name: Zhu Po Long Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus bCritical,3;
+ - Id: 4273
+ AegisName: Shellfish_Card
+ Name: Shell Fish Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddDamageClass,1073,30;
+ - Id: 4274
+ AegisName: Zombie_Master_Card
+ Name: Zombie Master Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Undead,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4275
+ AegisName: Zombie_Prisoner_Card
+ Name: Zombie Prisoner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Undead,-20;
+ bonus2 bExpAddRace,RC_Undead,10;
+ - Id: 4276
+ AegisName: Lord_Of_Death_Card
+ Name: Lord of The Dead Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4277
+ AegisName: Zherlthsh_Card
+ Name: Zealotus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;
+ bonus2 bSkillAtk,"DC_THROWARROW",10;
+ - Id: 4278
+ AegisName: Gibbet_Card
+ Name: Gibbet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,5;
+ - Id: 4279
+ AegisName: Deleter_Card
+ Name: Earth Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bSPrecovRate,-100;
+ bonus bSPGainValue,10;
+ UnEquipScript: |
+ heal 0,-100;
+ - Id: 4280
+ AegisName: Geographer_Card
+ Name: Geographer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING") == 10),30;
+ - Id: 4281
+ AegisName: Zipper_Bear_Card
+ Name: Zipper Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bSPDrainValue,-1;
+ if (BaseClass == Job_Merchant)
+ bonus bUnbreakableWeapon;
+ - Id: 4282
+ AegisName: Tengu_Card
+ Name: Tengu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;
+ - Id: 4283
+ AegisName: Greatest_General_Card
+ Name: Greatest General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass == Job_Acolyte);
+ - Id: 4284
+ AegisName: Chepet_Card
+ Name: Chepet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAutoSpell,"AL_HEAL",5,50,1;
+ - Id: 4285
+ AegisName: Choco_Card
+ Name: Choco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee2,5;
+ bonus bFlee,10;
+ - Id: 4286
+ AegisName: Karakasa_Card
+ Name: Karakasa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);
+ - Id: 4287
+ AegisName: Kapha_Card
+ Name: Kapha Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<6)
+ bonus bMdef,8;
+ - Id: 4288
+ AegisName: Carat_Card
+ Name: Carat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,2;
+ if (getrefine()>8)
+ bonus bMaxSP,150;
+ - Id: 4289
+ AegisName: Caterpillar_Card
+ Name: Caterpillar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Plant,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4290
+ AegisName: Cat_O_Nine_Tail_Card
+ Name: Cat O' Nine Tails Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMdef,3;
+ bonus bMagicDamageReturn,5;
+ - Id: 4291
+ AegisName: Kobold_Leader_Card
+ Name: Kobold Leader Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace2,RC2_Kobold,30;
+ - Id: 4292
+ AegisName: Kobold_Archer_Card
+ Name: Kobold Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Plant,7;
+ - Id: 4293
+ AegisName: Cookie_Card
+ Name: Cookie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ bonus2 bSkillAtk,"AL_HOLYLIGHT",10;
+ - Id: 4294
+ AegisName: Quve_Card
+ Name: Quve Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;
+ - Id: 4295
+ AegisName: Kraben_Card
+ Name: Kraben Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Blind,600;
+ - Id: 4296
+ AegisName: Cramp_Card
+ Name: Cramp Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bGetZenyNum,500,3;
+ - Id: 4297
+ AegisName: Cruiser_Card
+ Name: Cruiser Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Brute,7;
+ bonus2 bCriticalAddRace,RC_Player_Doram,7;
+ - Id: 4298
+ AegisName: Cremy_Fear_Card
+ Name: Creamy Fear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Confusion,600;
+ - Id: 4299
+ AegisName: Clock_Card
+ Name: Clock Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD") == 10),30;
+ UnEquipScript: |
+ sc_end SC_AUTOGUARD;
+ - Id: 4300
+ AegisName: Chimera_Card
+ Name: Chimera Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob == Job_Assassin);
+ - Id: 4301
+ AegisName: Killer_Mantis_Card
+ Name: Killer Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Bleeding,600;
+ - Id: 4302
+ AegisName: Tao_Gunka_Card
+ Name: Tao Gunka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,100;
+ bonus bDefRate,-50;
+ bonus bMdefRate,-50;
+ - Id: 4303
+ AegisName: Whisper_Boss_Card
+ Name: Giant Whisper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4304
+ AegisName: Tamruan_Card
+ Name: Tamruan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,2;
+ bonus2 bSkillAtk,"CR_SHIELDCHARGE",10;
+ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;
+ - Id: 4305
+ AegisName: Turtle_General_Card
+ Name: Turtle General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,20;
+ bonus3 bAutoSpell,"SM_MAGNUM",10,30;
+ - Id: 4306
+ AegisName: Toad_Card
+ Name: Toad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee2,1;
+ - Id: 4307
+ AegisName: Kind_Of_Beetle_Card
+ Name: Beetle King Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Fish,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4308
+ AegisName: Tri_Joint_Card
+ Name: Tri Joint Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Formless,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4309
+ AegisName: Parasite_Card
+ Name: Parasite Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus2 bSubEle,Ele_Neutral,5;
+ - Id: 4310
+ AegisName: Panzer_Goblin_Card
+ Name: Panzer Goblin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus2 bCriticalAddRace,RC_Demon,7;
+ - Id: 4311
+ AegisName: Permeter_Card
+ Name: Permeter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Dark,15;
+ bonus2 bSubEle,Ele_Undead,15;
+ - Id: 4312
+ AegisName: Fur_Seal_Card
+ Name: Seal Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4313
+ AegisName: Punk_Card
+ Name: Punk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE") == 5),50,0;
+ - Id: 4314
+ AegisName: Penomena_Card
+ Name: Penomena Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Formless,30;
+ - Id: 4315
+ AegisName: Pest_Card
+ Name: Pest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);
+ - Id: 4316
+ AegisName: Fake_Angel_Card
+ Name: False Angel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_Angel,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4317
+ AegisName: Mobster_Card
+ Name: Mobster Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,15;
+ if (BaseClass == Job_Thief)
+ bonus bCritical,4;
+ - Id: 4318
+ AegisName: Knight_Windstorm_Card
+ Name: Stormy Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"WZ_STORMGUST",1,20;
+ bonus2 bAddEff,Eff_Freeze,2000;
+ - Id: 4319
+ AegisName: Freezer_Card
+ Name: Freezer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,300;
+ if (getrefine()>=9)
+ bonus2 bSkillAtk,"SM_BASH",10;
+ - Id: 4320
+ AegisName: Bloody_Knight_Card
+ Name: Bloody Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"WZ_METEOR",1,20;
+ - Id: 4321
+ AegisName: Hylozoist_Card
+ Name: Hylozoist Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bClassChange,100;
+ - Id: 4322
+ AegisName: High_Orc_Card
+ Name: High Orc Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,1;
+ bonus bShortWeaponDamageReturn,5;
+ - Id: 4323
+ AegisName: Garm_Baby_Card
+ Name: Hatii Babe Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;
+ - Id: 4324
+ AegisName: Garm_Card
+ Name: Hatii Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Freeze,5000;
+ - Id: 4325
+ AegisName: Harpy_Card
+ Name: Harpy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bSkillAtk,"MG_NAPALMBEAT",5;
+ - Id: 4326
+ AegisName: See_Otter_Card
+ Name: Sea-Otter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4327
+ AegisName: Blood_Butterfly_Card
+ Name: Bloody Butterfly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVariableCastrate,30;
+ bonus bNoCastCancel;
+ bonus2 bSkillAtk,"MG_FIREWALL",5;
+ - Id: 4328
+ AegisName: Hyegun_Card
+ Name: Yao Jun Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,15;
+ bonus bCritical,1;
+ - Id: 4329
+ AegisName: Phendark_Card
+ Name: Phendark Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPGainRace,RC_DemiHuman,5;
+ bonus2 bSPGainRace,RC_Player_Human,5;
+ UnEquipScript: |
+ heal 0,-5;
+ - Id: 4330
+ AegisName: Dark_Snake_Lord_Card
+ Name: Evil Snake Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,3;
+ bonus2 bResEff,Eff_Blind,10000;
+ bonus2 bResEff,Eff_Curse,10000;
+ - Id: 4331
+ AegisName: Heater_Card
+ Name: Heater Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,3;
+ if (BaseClass == Job_Swordman)
+ bonus bFlee2,3;
+ - Id: 4332
+ AegisName: Waste_Stove_Card
+ Name: Waste Stove Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus bInt,1;
+ - Id: 4333
+ AegisName: Venomous_Card
+ Name: Venomous Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4334
+ AegisName: Noxious_Card
+ Name: Noxious Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkDef,10;
+ bonus2 bSubEle,Ele_Neutral,10;
+ - Id: 4335
+ AegisName: Pitman_Card
+ Name: Pitman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4336
+ AegisName: Ungoliant_Card
+ Name: Ungoliant Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,10;
+ bonus2 bResEff,Eff_Bleeding,10000;
+ - Id: 4337
+ AegisName: Porcellio_Card
+ Name: Porcellio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,25;
+ bonus bDef,-5;
+ - Id: 4338
+ AegisName: Obsidian_Card
+ Name: Obsidian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,readparam(bDex)/18;
+ - Id: 4339
+ AegisName: Mineral_Card
+ Name: Mineral Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,-25;
+ bonus bDef,3;
+ - Id: 4340
+ AegisName: Teddy_Bear_Card
+ Name: Teddy Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Undead,30;
+ - Id: 4341
+ AegisName: Metaling_Card
+ Name: Metaling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;
+ - Id: 4342
+ AegisName: Rsx_0806_Card
+ Name: RSX-0806 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,3;
+ bonus bUnbreakableArmor;
+ bonus bNoKnockback;
+ - Id: 4343
+ AegisName: Mole_Card
+ Name: Holden Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ - Id: 4344
+ AegisName: Anopheles_Card
+ Name: Anopheles Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12058,RC_Insect,50;
+ - Id: 4345
+ AegisName: Hill_Wind_Card
+ Name: Hill Wind Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"MG_THUNDERSTORM",5;
+ bonus2 bSkillAtk,"WZ_JUPITEL",5;
+ bonus2 bSkillAtk,"WZ_VERMILION",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4346
+ AegisName: Ygnizem_Card
+ Name: Egnigem Cenia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,readparam(bInt)/18;
+ - Id: 4347
+ AegisName: Armaia_Card
+ Name: Armeyer Dinze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12053,RC_Fish,50;
+ - Id: 4348
+ AegisName: Whikebain_Card
+ Name: Wickebine Tres Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;
+ - Id: 4349
+ AegisName: Erend_Card
+ Name: Errende Ebecee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;
+ - Id: 4350
+ AegisName: Rawrel_Card
+ Name: Laurell Weinder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"WZ_FROSTNOVA",3;
+ bonus2 bSkillAtk,"WZ_STORMGUST",3;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4351
+ AegisName: Kavac_Card
+ Name: Kavach Icarus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<=4) {
+ bonus bFlee,20;
+ bonus bFlee2,1;
+ }
+ else {
+ bonus bFlee,10;
+ }
+ - Id: 4352
+ AegisName: B_Ygnizem_Card
+ Name: General Egnigem Cenia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bHPRegenRate,50,10000;
+ bonus2 bSPRegenRate,10,10000;
+ - Id: 4353
+ AegisName: Removal_Card
+ Name: Remover Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,800-40*getrefine();
+ bonus bHPrecovRate,10;
+ - Id: 4354
+ AegisName: Gemini_Card
+ Name: Gemini-S58 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ }
+ - Id: 4355
+ AegisName: Gremlin_Card
+ Name: Gremlin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12043,RC_Brute,50;
+ - Id: 4356
+ AegisName: Beholder_Card
+ Name: Beholder Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "SA_CASTCANCEL",1;
+ - Id: 4357
+ AegisName: B_Seyren_Card
+ Name: Lord Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "LK_BERSERK",1;
+ bonus bMaxHPrate,-50;
+ - Id: 4358
+ AegisName: Seyren_Card
+ Name: Seyren Windsor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,getrefine()-6;
+ - Id: 4359
+ AegisName: B_Eremes_Card
+ Name: Assassin Cross Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AS_CLOAKING",3;
+ UnEquipScript: |
+ sc_end SC_CLOAKING;
+ - Id: 4360
+ AegisName: Eremes_Card
+ Name: Eremes Guile Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bCriticalAddRace,RC_DemiHuman,10;
+ bonus2 bCriticalAddRace,RC_Player_Human,10;
+ - Id: 4361
+ AegisName: B_Harword_Card
+ Name: MasterSmith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBreakWeaponRate,1000;
+ bonus bBreakArmorRate,700;
+ - Id: 4362
+ AegisName: Harword_Card
+ Name: Howard Alt-Eisen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,-5;
+ bonus bHit,30;
+ - Id: 4363
+ AegisName: B_Magaleta_Card
+ Name: High Priest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0;
+ - Id: 4364
+ AegisName: Magaleta_Card
+ Name: Margaretha Sorin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;
+ - Id: 4365
+ AegisName: B_Katrinn_Card
+ Name: High Wizard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,100;
+ bonus bVariableCastrate,100;
+ bonus bSPrecovRate,-100;
+ UnEquipScript: |
+ heal 0,-2000;
+ - Id: 4366
+ AegisName: Katrinn_Card
+ Name: Kathryne Keyron Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,.@r*-1;
+ if (.@r>=9) {
+ bonus bMatkRate,2;
+ }
+ - Id: 4367
+ AegisName: B_Shecil_Card
+ Name: Sniper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bHPDrainRate,50,20;
+ bonus bHPrecovRate,-10;
+ - Id: 4368
+ AegisName: Shecil_Card
+ Name: Cecil Damon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,5;
+ bonus bHit,-30;
+ - Id: 4369
+ AegisName: Venatu_Card
+ Name: Venatu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,readparam(bAgi)/18;
+ - Id: 4370
+ AegisName: Dimik_Card
+ Name: Dimik Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,getrefine()-5;
+ - Id: 4371
+ AegisName: Archdam_Card
+ Name: Archdam Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bVariableCastrate,20;
+ - Id: 4372
+ AegisName: Bacsojin_Card
+ Name: White Lady Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHealPower,30;
+ bonus bUseSPrate,15;
+ - Id: 4373
+ AegisName: Chung_E_Card
+ Name: Green Maiden Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bLuk,.@r-5;
+ bonus bCritical,.@r;
+ - Id: 4374
+ AegisName: Apocalips_H_Card
+ Name: Vesper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,2;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,30;
+ - Id: 4375
+ AegisName: Orc_Baby_Card_Card
+ Name: Orc Baby Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@i = (getrefine()>=9?15:10);
+ bonus2 bSubEle,Ele_Neutral,.@i;
+ bonus bFlee,.@i;
+ - Id: 4376
+ AegisName: Lady_Tanee_Card
+ Name: Lady Tanee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,-40;
+ bonus bMaxSPrate,50;
+ bonus2 bAddMonsterDropItem,513,200;
+ bonus2 bAddItemHealRate,513,100;
+ - Id: 4377
+ AegisName: Green_Iguana_Card
+ Name: Grove Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12063,RC_Formless,50;
+ - Id: 4378
+ AegisName: Acidus_Card
+ Name: Gold Acidus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4379
+ AegisName: Acidus__Card
+ Name: Blue Acidus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getrefine()<=4) {
+ bonus bSPrecovRate,5;
+ bonus bMaxSP,80;
+ }
+ else {
+ bonus bMaxSP,40;
+ }
+ - Id: 4380
+ AegisName: Ferus_Card
+ Name: Red Ferus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",5;
+ bonus2 bSkillAtk,"WZ_METEOR",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4381
+ AegisName: Ferus__Card
+ Name: Green Ferus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bMaxHPrate,10;
+ - Id: 4382
+ AegisName: Novus__Card
+ Name: Yellow Novus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,500;
+ bonus bHPrecovRate,10;
+ - Id: 4383
+ AegisName: Novus_Card
+ Name: Red Novus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4384
+ AegisName: Hydro_Card
+ Name: Hydrolancer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;
+ - Id: 4385
+ AegisName: Dragon_Egg_Card
+ Name: Dragon Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;
+ - Id: 4386
+ AegisName: Detale_Card
+ Name: Detardeurus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4387
+ AegisName: Ancient_Mimic_Card
+ Name: Ancient Mimic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,readparam(bLuk)/18;
+ - Id: 4388
+ AegisName: Deathword_Card
+ Name: Death Word Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"MG_NAPALMBEAT",5;
+ bonus2 bSkillAtk,"MG_SOULSTRIKE",5;
+ bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;
+ UnEquipScript: |
+ heal 0,-50;
+ - Id: 4389
+ AegisName: Plasma_Card
+ Name: Plasma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4390
+ AegisName: Breeze_Card
+ Name: Breeze Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus2 bAddEff,Eff_Bleeding,500;
+ - Id: 4391
+ AegisName: Retribution_Card
+ Name: Baroness of Retribution Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddMonsterDropItem,12068,RC_Angel,50;
+ - Id: 4392
+ AegisName: Observation_Card
+ Name: Dame of Sentinel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,readparam(bVit)/18;
+ - Id: 4393
+ AegisName: Shelter_Card
+ Name: Mistress of Shelter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,readparam(bStr)/18;
+ - Id: 4394
+ AegisName: Solace_Card
+ Name: Lady Solace Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (BaseJob == Job_Priest)
+ bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;
+ - Id: 4395
+ AegisName: Tha_Maero_Card
+ Name: Maero of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ bonus3 bAutoSpell,"AL_DECAGI",3,50;
+ - Id: 4396
+ AegisName: Tha_Odium_Card
+ Name: Odium of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,getrefine()-5;
+ - Id: 4397
+ AegisName: Tha_Despero_Card
+ Name: Despero of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,getrefine()-6;
+ - Id: 4398
+ AegisName: Tha_Dolor_Card
+ Name: Dolor of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,10;
+ - Id: 4399
+ AegisName: Thanatos_Card
+ Name: Memory of Thanatos Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefRatioAtkClass,Class_All;
+ bonus bSPDrainValue,-1;
+ bonus bDef,-30;
+ bonus bFlee,-30;
+ - Id: 4400
+ AegisName: Aliza_Card
+ Name: Aliza Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob == Job_Dancer);
+ - Id: 4401
+ AegisName: Alicel_Card
+ Name: Alicel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ bonus bDef,-5;
+ - Id: 4402
+ AegisName: Aliot_Card
+ Name: Aliot Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4403
+ AegisName: Kiel_Card
+ Name: Kiel-D-01 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDelayRate,-30;
+ - Id: 4404
+ AegisName: Skogul_Card
+ Name: Skogul Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;
+ - Id: 4405
+ AegisName: Frus_Card
+ Name: Frus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMagicDamageReturn,getrefine()*2;
+ if (BaseClass == Job_Mage)
+ bonus bMdef,3;
+ - Id: 4406
+ AegisName: Skeggiold_Card
+ Name: Skeggiold Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,2;
+ - Id: 4407
+ AegisName: Randgris_Card
+ Name: Randgris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4409
+ AegisName: Agav_Card
+ Name: Agav Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,5;
+ bonus bDef,-10;
+ if (BaseClass == Job_Mage)
+ bonus bMaxSP,100;
+ - Id: 4410
+ AegisName: Echio_Card
+ Name: Echio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,15;
+ if (BaseClass == Job_Swordman)
+ bonus bMaxHP,500;
+ - Id: 4411
+ AegisName: Vanberk_Card
+ Name: Vanberk Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ autobonus "{ bonus bCritical,100; }",5,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }";
+ - Id: 4412
+ AegisName: Isilla_Card
+ Name: Isilla Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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; }";
+ - Id: 4413
+ AegisName: Hodremlin_Card
+ Name: Hodremlin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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; }";
+ - Id: 4414
+ AegisName: Seeker_Card
+ Name: Seeker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "MG_STONECURSE",1;
+ bonus2 bResEff,Eff_Stone,3000;
+ bonus bMdef,10;
+ - Id: 4415
+ AegisName: Snowier_Card
+ Name: Snowier Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddMonsterDropItem,536,2000;
+ bonus2 bAddItemHealRate,536,100;
+ - Id: 4416
+ AegisName: Siroma_Card
+ Name: Siroma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"MG_COLDBOLT",25;
+ bonus2 bVariableCastrate,"MG_COLDBOLT",-25;
+ - Id: 4417
+ AegisName: Ice_Titan_Card
+ Name: Ice Titan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,2;
+ autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";
+ - Id: 4418
+ AegisName: Gazeti_Card
+ Name: Gazeti Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"MG_COLDBOLT",2,100;
+ - Id: 4419
+ AegisName: Ktullanux_Card
+ Name: Ktullanux Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Fire,50;
+ bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;
+ - Id: 4420
+ AegisName: Muscipular_Card
+ Name: Muscipular Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100;
+ bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;
+ - Id: 4421
+ AegisName: Drosera_Card
+ Name: Drosera Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCriticalLong,15;
+ - Id: 4422
+ AegisName: Roween_Card
+ Name: Roween Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,5;
+ bonus bFlee2,3;
+ bonus2 bAddEle,Ele_Water,10;
+ bonus2 bCriticalAddRace,RC_Fish,15;
+ - Id: 4423
+ AegisName: Galion_Card
+ Name: Galion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,5;
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 4424
+ AegisName: Stapo_Card
+ Name: Stapo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "TF_PICKSTONE",1;
+ skill "TF_THROWSTONE",1;
+ - Id: 4425
+ AegisName: Atroce_Card
+ Name: Atroce Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,25;
+ autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 4426
+ AegisName: Byorgue_Card
+ Name: Byorgue Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (BaseJob == Job_Rogue) {
+ bonus bMatkRate,10;
+ bonus2 bAddClass,Class_All,10;
+ }
+ - Id: 4427
+ AegisName: Sword_Guardian_Card
+ Name: Sword Guardian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",40;
+ bonus2 bSkillAtk,"WZ_METEOR",40;
+ - Id: 4430
+ AegisName: Ifrit_Card
+ Name: Ifrit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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",2,10;
+ - Id: 4431
+ AegisName: Kasa_Card
+ Name: Kasa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"MG_FIREBALL",5,20;
+ bonus3 bAutoSpell,"MG_FIREBOLT",5,20;
+ - Id: 4432
+ AegisName: Magmaring_Card
+ Name: Magmaring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4433
+ AegisName: Imp_Card
+ Name: Imp Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"MG_FIREBOLT",25;
+ bonus2 bVariableCastrate,"MG_FIREBOLT",-25;
+ - Id: 4434
+ AegisName: Knocker_Card
+ Name: Knocker Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ - Id: 4435
+ AegisName: Zombie_Slaughter_Card
+ Name: Zombie Slaughter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4436
+ AegisName: Ragged_Zombie_Card
+ Name: Ragged Zombie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4437
+ AegisName: Hell_Poodle_Card
+ Name: Hell Poodle Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,1;
+ bonus2 bAddItemHealRate,517,100;
+ bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;
+ - Id: 4438
+ AegisName: Banshee_Card
+ Name: Banshee Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ }
+ - Id: 4439
+ AegisName: Flame_Skull_Card
+ Name: Flame Skull Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4440
+ AegisName: Necromancer_Card
+ Name: Necromancer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4442
+ AegisName: Tatacho_Card
+ Name: Tatacho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Neutral,20;
+ bonus2 bAddEle,Ele_Neutral,5;
+ - Id: 4443
+ AegisName: Aqua_Elemental_Card
+ Name: Aqua Elemental Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,20;
+ bonus2 bAddEle,Ele_Water,5;
+ - Id: 4444
+ AegisName: Draco_Card
+ Name: Draco Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Earth,20;
+ bonus2 bAddEle,Ele_Earth,5;
+ - Id: 4445
+ AegisName: Luciola_Vespa_Card
+ Name: Luciola Vespa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Wind,20;
+ bonus2 bAddEle,Ele_Wind,5;
+ - Id: 4446
+ AegisName: P_Skeleton_Card
+ Name: Enhanced Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,15;
+ bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200);
+ - Id: 4447
+ AegisName: Centipede_Card
+ Name: Centipede Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Poison,20;
+ bonus2 bAddEle,Ele_Poison,5;
+ - Id: 4448
+ AegisName: Cornus_Card
+ Name: Cornus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Holy,20;
+ bonus2 bAddEle,Ele_Holy,5;
+ - Id: 4449
+ AegisName: Dark_Shadow_Card
+ Name: Dark Shadow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Dark,20;
+ bonus2 bAddEle,Ele_Dark,5;
+ - Id: 4450
+ AegisName: Banshee_Master_Card
+ Name: Banshee Master Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bMatk,10;
+ - Id: 4451
+ AegisName: Ant_Buyanne_Card
+ Name: Entweihen Crothen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,100;
+ - Id: 4452
+ AegisName: Centipede_Larva_Card
+ Name: Centipede Larva Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bMatk,3;
+ - Id: 4453
+ AegisName: Hilsrion_Card
+ Name: Hillsrion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,25;
+ - Id: 4454
+ AegisName: Light_Up_Card1
+ Name: Light Up Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ - Id: 4455
+ AegisName: Light_Up_Card2
+ Name: Light Up Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ - Id: 4456
+ AegisName: Nidhogg_Shadow_Card
+ Name: Nidhoggur Shadow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4457
+ AegisName: Nahtzigger_Card
+ Name: Naght Sieger Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Ghost,30;
+ - Id: 4458
+ AegisName: Duneirre_Card
+ Name: Duneyrr Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,10;
+ autobonus "{ bonus bFlee2,10; }",10,4000,BF_NORMAL,"{ specialeffect2 EF_HASTEUP; }";
+ - Id: 4459
+ AegisName: Lata_Card
+ Name: Rata Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";
+ - Id: 4460
+ AegisName: Ringco_Card
+ Name: Rhyncho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHealPower,4;
+ bonus2 bSkillUseSP,"AL_HEAL",-15;
+ - Id: 4461
+ AegisName: Pillar_Card
+ Name: Phylla Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4463
+ AegisName: Tendrilion_Card
+ Name: Tendrilrion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4464
+ AegisName: Aunoe_Card
+ Name: Aunoe Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,20;
+ - Id: 4465
+ AegisName: Panat_Card
+ Name: Fanat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ - Id: 4469
+ AegisName: Naga_Card
+ Name: Naga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Fish,10;
+ - Id: 4470
+ AegisName: Nepenthes_Card
+ Name: Nepenthes Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Plant,10;
+ - Id: 4471
+ AegisName: Egg_Of_Draco_Card
+ Name: Draco Egg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Dragon,10;
+ - Id: 4472
+ AegisName: Bradium_Goram_Card
+ Name: Bradium Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Brute,10;
+ bonus2 bMagicAddRace,RC_Player_Doram,10;
+ - Id: 4473
+ AegisName: Ancient_Tree_Card
+ Name: Ancient Tree Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Undead,10;
+ - Id: 4474
+ AegisName: Jakudam_Card
+ Name: Zakudam Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_DemiHuman,10;
+ bonus2 bMagicAddRace,RC_Player_Human,10;
+ - Id: 4475
+ AegisName: Cobalt_Mineral_Card
+ Name: Cobalt Mineral Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Formless,10;
+ - Id: 4476
+ AegisName: Pinguicula_Card
+ Name: Pinguicula Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Insect,10;
+ - Id: 4477
+ AegisName: Hell_Apocalips_Card
+ Name: Hell Apocalypse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,10;
+ - Id: 4478
+ AegisName: Light_Up_Card3
+ Name: Light Up Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ - Id: 4479
+ AegisName: Light_Up_Card4
+ Name: Light Up Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ - Id: 4480
+ AegisName: Sealed_Kiel_Card
+ Name: Sealed Kiel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDelayRate,((getrefine()>14)?-20:-15);
+ - Id: 4481
+ AegisName: Sealed_Ktullanux_Card
+ Name: Sealed Ktullanux Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4482
+ AegisName: Sealed_B_Ygnizem_Card
+ Name: Sealed General Egnigem Cenia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4483
+ AegisName: Sealed_Dracula_Card
+ Name: Sealed Dracula Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSPDrainRate,((getrefine()>14)?70:50),5;
+ - Id: 4484
+ AegisName: Sealed_Mistress_Card
+ Name: Sealed Mistress Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoGemStone;
+ bonus bUseSPrate,((getrefine()>14)?35:50);
+ - Id: 4485
+ AegisName: Sealed_Gloom_Card
+ Name: Sealed Gloom Under Night Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4486
+ AegisName: Sealed_Berz_Card
+ Name: Sealed Berzebub Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVariableCastrate,-15;
+ - Id: 4487
+ AegisName: Sealed_Ifrit_Card
+ Name: Sealed Ifrit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4488
+ AegisName: Sealed_D_Lord_Card
+ Name: Sealed Dark Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;
+ - Id: 4489
+ AegisName: Sealed_Pharaoh_Card
+ Name: Sealed Pharaoh Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUseSPrate,-15;
+ - Id: 4490
+ AegisName: Sealed_M_Flower_Card
+ Name: Sealed Moonlight Flower Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "AL_INCAGI",((getrefine()>14)?5:1);
+ - Id: 4491
+ AegisName: Sealed_B_Shecil_Card
+ Name: Sealed Sniper Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,-100;
+ bonus2 bHPDrainRate,50,((getrefine()>14)?15:10);
+ - Id: 4492
+ AegisName: Sealed_Orc_Hero_Card
+ Name: Sealed Orc Hero Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,3;
+ bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000);
+ - Id: 4493
+ AegisName: Sealed_Tao_Card
+ Name: Sealed Tao Gunka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,((getrefine()>14)?75:50);
+ bonus bDefRate,-50;
+ bonus bMdefRate,-50;
+ - Id: 4494
+ AegisName: Sealed_TurtleG_Card
+ Name: Sealed Turtle General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4495
+ AegisName: Sealed_Amon_Ra_Card
+ Name: Sealed Amon Ra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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);
+ - Id: 4499
+ AegisName: Sealed_Samurai_Card
+ Name: Sealed Samurai Spector Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ 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;
+ }
+ - Id: 4500
+ AegisName: Sealed_Orc_Load_Card
+ Name: Sealed Orc Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15);
+ - Id: 4501
+ AegisName: Sealed_B_Magaleta_Card
+ Name: Sealed High Priest Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0;
+ - Id: 4502
+ AegisName: Sealed_B_Harword_Card
+ Name: Sealed MasterSmith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,2;
+ bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15);
+ - Id: 4504
+ AegisName: Sealed_Eddga_Card
+ Name: Sealed Eddga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,((getrefine()>14)?-35:-50);
+ bonus bNoWalkDelay;
+ - Id: 4505
+ AegisName: Scaraba_Card
+ Name: Scaraba Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,20;
+ bonus bMaxSPrate,-1;
+ - Id: 4506
+ AegisName: Dolomedes_Card
+ Name: Dolomedes Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,2;
+ if (BaseClass == Job_Archer) {
+ bonus bDex,getrefine()/3;
+ }
+ - Id: 4507
+ AegisName: Q_Scaraba_Card
+ Name: Queen Scaraba Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace2,RC2_SCARABA,30;
+ bonus2 bAddMonsterDropItem,12806,50;
+ - Id: 4508
+ AegisName: Gold_Scaraba_Card
+ Name: Gold Scaraba Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,20;
+ bonus bMaxHPrate,-1;
+ - Id: 4509
+ AegisName: Gold_Q_Scaraba_Card
+ Name: Gold Queen Scaraba Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ }
+ - Id: 4510
+ AegisName: Miming_Card
+ Name: Miming Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30;
+ - Id: 4511
+ AegisName: Little_Fatum_Card
+ Name: Little Fatum Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC;
+ - Id: 4512
+ AegisName: Parus_Card
+ Name: Parus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHealPower,3;
+ if (BaseClass == Job_Acolyte) {
+ bonus bHealPower,getrefine()/2;
+ }
+ - Id: 4513
+ AegisName: Angra_Mantis_Card
+ Name: Angra Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,2;
+ if (BaseClass == Job_Thief) {
+ bonus bCritAtkRate,getrefine()/2;
+ }
+ - Id: 4514
+ AegisName: Pom_Spider_Card
+ Name: Pom Spider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Undead,20;
+ - Id: 4515
+ AegisName: Alnoldi_Card
+ Name: Alnoldi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Plant,30;
+ - Id: 4516
+ AegisName: Comodo_Card
+ Name: Comodo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,50;
+ bonus bFlee,-25;
+ - Id: 4517
+ AegisName: Cendrawasih_Card
+ Name: Cendrawasih Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,2;
+ if (BaseClass == Job_Mage) {
+ bonus bInt,getrefine()/3;
+ }
+ - Id: 4518
+ AegisName: Banaspaty_Card
+ Name: Banaspaty Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEff,Eff_Burning,500,ATF_TARGET;
+ - Id: 4519
+ AegisName: Butoijo_Card
+ Name: Butoijo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Angel,20;
+ - Id: 4520
+ AegisName: Leak_Card
+ Name: Leak Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,15;
+ - Id: 4522
+ AegisName: Sropho_Card
+ Name: Sropho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000;
+ - Id: 4523
+ AegisName: Pot_Dofle_Card
+ Name: Pot Dofle Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Water;
+ bonus2 bSubRace,RC_Fish,10;
+ - Id: 4524
+ AegisName: King_Dramoh_Card
+ Name: King Dramoh Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ if (BaseClass == Job_Swordman) {
+ bonus bStr,2+(getrefine()/3);
+ }
+ - Id: 4525
+ AegisName: Kraken_Card
+ Name: Kraken Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ UnEquipScript: |
+ sc_end SC_HIDING;
+ - Id: 4526
+ AegisName: Odd_Coelacanth_Card
+ Name: Weird Coelacanth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,5;
+ bonus bMdef,50;
+ - Id: 4527
+ AegisName: Black_Coelacanth_Card
+ Name: Dark Coelacanth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bDef,100;
+ - Id: 4528
+ AegisName: Mutant_Coelacanth_Card
+ Name: Mutant Coelacanth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,2+(.@r/2);
+ bonus bMaxHPrate,-.@r/2;
+ - Id: 4529
+ AegisName: Cruel_Coelacanth_Card
+ Name: Violent Coelacanth Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,2+(.@r/2);
+ bonus bMaxSPrate,-.@r/2;
+ - Id: 4530
+ AegisName: Siorava_Card
+ Name: Siorava Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ if (BaseClass == Job_Merchant) {
+ bonus bLuk,2+(getrefine()/3);
+ }
+ - Id: 4531
+ AegisName: Red_Eruma_Card
+ Name: Red Eruma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC;
+ - Id: 4532
+ AegisName: Wild_Rider_Card
+ Name: Wild Rider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus3 bAutoSpell,"AL_INCAGI",1,50;
+ - Id: 4533
+ AegisName: Mini_Octopus_Card
+ Name: Octopus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC;
+ - Id: 4534
+ AegisName: Giant_Octopus_Card
+ Name: Giant Octopus Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,12;
+ skill "WZ_WATERBALL",5;
+ - Id: 4535
+ AegisName: Sealed_Rand_Card
+ Name: Sealed Randgris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4536
+ AegisName: Sealed_Atroce_Card
+ Name: Sealed Atroce Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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; }";
+ - Id: 4537
+ AegisName: Sealed_Phreeoni_Card
+ Name: Sealed Phreeoni Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,((getrefine()>14)?75:50);
+ - Id: 4538
+ AegisName: Sealed_Bacsojin_Card
+ Name: Sealed White Lady Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4540
+ AegisName: SLD_Lord_Of_Death_Card
+ Name: Sealed Lord of The Dead Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4541
+ AegisName: SLD_B_Katrinn_Card
+ Name: Sealed High Wizard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ UnEquipScript: |
+ heal 0,((getrefine()>14)?-2000:-3000);
+ - Id: 4542
+ AegisName: SLD_Detale_Card
+ Name: Sealed Detale Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4543
+ AegisName: SLD_Garm_Card
+ Name: Sealed Hatii Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500);
+ - Id: 4544
+ AegisName: SLD_Dark_Snake_Card
+ Name: Sealed Evil Snake Lord Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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;
+ - Id: 4545
+ AegisName: Novice_Poring_Card
+ Name: Novice Poring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,1;
+ - Id: 4546
+ AegisName: Val'khiri_Card
+ Name: Val'khiri Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ - Id: 4547
+ AegisName: Upd_Byorgue_Card
+ Name: Enhanced Byorgue Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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. */
+ - Id: 4548
+ AegisName: Upd_Salamander_Card
+ Name: Enhanced Salamander Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",40;
+ bonus2 bSkillAtk,"WZ_METEOR",40;
+ - Id: 4549
+ AegisName: Upd_Maya_Puple_Card
+ Name: Upd Maya Puple Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bIntravision;
+ bonus bAllStats,1;
+ skill "AL_RUWACH",1;
+ - Id: 4550
+ AegisName: Upd_Bow_Guardian_Card
+ Name: Upd Bow Guardian Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,10;
+ - Id: 4553
+ AegisName: Sid_Card
+ Name: Sid Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 4554
+ AegisName: Diego_Card
+ Name: Diego Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 4555
+ AegisName: Scrat_Card
+ Name: Scrat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 4556
+ AegisName: Fenrir_Card
+ Name: Fenrir Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,50+getrefine()*5;
+ bonus bFixedCastrate,-70;
+ - Id: 4557
+ AegisName: Fenrir_Card_
+ Name: Weakened Fenrir Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ 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: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspd,1;
+ bonus bMaxSPrate,-10;
+ - Id: 4560
+ AegisName: Clown_Card
+ Name: Clown Alphoccio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "BA_POEMBRAGI",10;
+ bonus bFlee,(readparam(bVit)>=110)?40:20;
+ - Id: 4561
+ AegisName: Professor_Card
+ Name: Professor Celia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ skill "DC_FORTUNEKISS",10;
+ bonus bFlee,(readparam(bVit)>=110)?40:20;
+ - Id: 4567
+ AegisName: Alphoccio_Card
+ Name: Alphoccio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ if (BaseJob == Job_Bard) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ }
+ - Id: 4568
+ AegisName: Ceila_Card
+ Name: Celia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ skill "SA_ABRACADABRA",1;
+ - Id: 4569
+ AegisName: Chen_Card
+ Name: Chen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ skill "MO_CALLSPIRITS",2;
+ - Id: 4570
+ AegisName: Flamel_Card
+ Name: Flamel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200;
+ - Id: 4571
+ AegisName: Gertie_Card
+ Name: Gertie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ skill "RG_CLOSECONFINE",1;
+ - Id: 4572
+ AegisName: Randel_Card
+ Name: Randel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ skill "CR_AUTOGUARD",3;
+ - Id: 4573
+ AegisName: Trentini_Card
+ Name: Trentini Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,10;
+ if (BaseJob == Job_Dancer) {
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,5;
+ }
+ - Id: 4574
+ AegisName: Daehyon_Card
+ Name: General Daehyon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Wind,100;
+ bonus2 bMagicAtkEle,Ele_Ghost,100;
+ bonus2 bSubEle,Ele_All,-30;
+ - Id: 4577
+ AegisName: Elvira_Card
+ Name: Elvira Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Wind,20;
+ bonus2 bMagicAtkEle,Ele_Ghost,20;
+ - Id: 4578
+ AegisName: Pyuriel_Card
+ Name: Angry Student Pyuriel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,30;
+ bonus2 bSubRace,RC_All,-10;
+ - Id: 4579
+ AegisName: Lora_Card
+ Name: Warrior Lola Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4581
+ AegisName: Rudo_Card
+ Name: Rudo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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
+ AegisName: Bungisngis_Card
+ Name: Bungisngis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,(getrefine()/2);
+ - Id: 4583
+ AegisName: Engkanto_Card
+ Name: Engkanto Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Poison,30;
+ bonus2 bMagicAddEle,Ele_Poison,30;
+ bonus2 bIgnoreDefRaceRate,RC_Plant,30;
+ - Id: 4584
+ AegisName: Manananggal_Card
+ Name: Manananggal Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bSPDrainValue,1;
+ bonus bMaxSPrate,-1;
+ - Id: 4585
+ AegisName: Mangkukulam_Card
+ Name: Mangkukulam Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,10;
+ bonus bHPGainValue,-666;
+ - Id: 4586
+ AegisName: Tikbalang_Card
+ Name: Tikbalang Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5;
+ - Id: 4587
+ AegisName: Tiyanak_Card
+ Name: Tiyanak Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5*readparam(bStr)/10;
+ - Id: 4589
+ AegisName: Jejeling_Card
+ Name: Jejeling Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,200*readparam(bVit)/10;
+ - Id: 4590
+ AegisName: Bangungot_Card
+ Name: Bangungot Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,4;
+ bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",4,20,BF_MAGIC,0;
+ - Id: 4591
+ AegisName: Bakonawa_Card
+ Name: Bakonawa Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,4;
+ bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",4,20,BF_WEAPON,0;
+ - Id: 4592
+ AegisName: Buwaya_Card
+ Name: Buwaya Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,4;
+ bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",4,20,BF_MAGIC,0;
+ - Id: 4593
+ AegisName: Menblatt_Card
+ Name: Menblatt Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkRate,readparam(bDex)/10;
+ - Id: 4594
+ AegisName: Petal_Card
+ Name: Petal Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,2*(readparam(bLuk)/10);
+ - Id: 4595
+ AegisName: Cenere_Card
+ Name: Cenere Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,2*(readparam(bAgi)/10);
+ - Id: 4596
+ AegisName: AntiqueBook_Card
+ Name: Antique Book Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,5*(readparam(bInt)/10);
+ - Id: 4597
+ AegisName: LichternB_Card
+ Name: Lichtern Blue Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5;
+ - Id: 4598
+ AegisName: LichternY_Card
+ Name: Lichtern Green Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5;
+ - Id: 4599
+ AegisName: LichternR_Card
+ Name: Lichtern Red Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5;
+ - Id: 4600
+ AegisName: LichternG_Card
+ Name: Lichtern Yellow Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,10;
+ bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5;
+ - Id: 4601
+ AegisName: Amdarais_Card
+ Name: Amdarais Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,15;
+ bonus bMatkRate,15;
+ bonus2 bHPLossRate,666,4000;
+ bonus2 bSPLossRate,66,4000;
+ UnEquipScript: |
+ heal -6666,-666;
+ - Id: 4602
+ AegisName: AmdaraisH_Card
+ Name: Realized Amdarais Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,20;
+ bonus bMatkRate,20;
+ bonus2 bHPLossRate,666,6000;
+ bonus2 bSPLossRate,66,6000;
+ UnEquipScript: |
+ heal -6666,-666;
+ - Id: 4603
+ AegisName: CorruptionRoot_Card
+ Name: Corruption Root Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,-44;
+ bonus bHPGainValue,200+10*getrefine();
+ - Id: 4606
+ AegisName: UndeadKnightF_Card
+ Name: Grudge of Royal Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,-44;
+ bonus bSPGainValue,20+(getrefine()/2);
+ UnEquipScript: |
+ heal 0,-444;
+ - Id: 4607
+ AegisName: FaithfulManager_Card
+ Name: Faithful Manager Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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_Knightage_Card
+ Name: White Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,15;
+ bonus2 bAddSize,Size_Medium,20;
+ bonus2 bAddSize,Size_Large,20;
+ - Id: 4609
+ AegisName: Khaliz_Knightage_Card
+ Name: Khalitzburg Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,20;
+ bonus2 bSubSize,Size_Medium,25;
+ bonus2 bSubSize,Size_Large,25;
+ - Id: 4610
+ AegisName: Sarah_Card
+ Name: Sarah Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAbsorbDmgMaxHP,100;
+ - Id: 4625
+ AegisName: Timeholder_Card
+ Name: Time Holder Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,20;
+ bonus bUseSPrate,10;
+ - Id: 4626
+ AegisName: Big_Ben_Card
+ Name: Big Ben Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Formless,5;
+ bonus2 bMagicAddRace,RC_Demon,5;
+ - Id: 4627
+ AegisName: Big_Bell_Card
+ Name: Big Bell Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Formless,10;
+ bonus2 bAddRace,RC_Demon,10;
+ - Id: 4628
+ AegisName: Neo_Punk_Card
+ Name: Neo Punk Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Formless,20;
+ bonus2 bSubRace,RC_Demon,20;
+ - Id: 4629
+ AegisName: Arc_Elder_Card
+ Name: Arc Elder Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3;
+ - Id: 4630
+ AegisName: Time_Keeper_Card
+ Name: Nightmare Timer Keeper Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus3 bAutoSpell,"NPC_WIDECURSE",2,30;
+ - Id: 4631
+ AegisName: Owl_Viscount_Card
+ Name: Owl Viscount Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,3;
+ - Id: 4632
+ AegisName: Owl_Marquees_Card
+ Name: Owl Marquees Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE") == 5?5:1),20,BF_WEAPON,0;
+ - Id: 4633
+ AegisName: P_Archer_Skeleton_Card
+ Name: Enhanced Archer Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkRate,(BaseLevel>=100?12:10);
+ - Id: 4634
+ AegisName: P_Soldier_Skeleton_Card
+ Name: Enhanced Soldier Skeleton Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (BaseLevel<100) {
+ bonus bCritical,9;
+ }
+ else {
+ bonus bCritical,10;
+ bonus bCritAtkRate,5;
+ }
+ - Id: 4635
+ AegisName: P_Amdarais_Card
+ Name: Enhanced Amdarais Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bDef,(.@r*10);
+ bonus bFlee,(.@r*-2);
+ if (BaseLevel>=100)
+ bonus bMaxHP,500;
+ - Id: 4636
+ AegisName: Bijou_Card
+ Name: Bijou Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Freeze,10000;
+ bonus2 bAddClass,Class_All,10;
+ bonus bMatkRate,10;
+ - Id: 4637
+ AegisName: Immotal_Corps_Card
+ Name: Immortal Corps Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPGainValue,50;
+ bonus bSPGainValue,5;
+ bonus bNoRegen,1;
+ bonus bNoRegen,2;
+ UnEquipScript: |
+ heal -1000,-100;
+ - Id: 4638
+ AegisName: Watcher_Card
+ Name: Watcher Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bSPDrainValue,-5;
+ - Id: 4639
+ AegisName: Tappy_Card
+ Name: Taffy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 4640
+ AegisName: Frozenwolf_Card
+ Name: Frozen Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 4641
+ AegisName: Zombie_Guard_Card
+ Name: Zombie Guard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bNoRegen,2;
+ bonus bSPDrainValue,1;
+ - Id: 4642
+ AegisName: Min_Toad_Card
+ Name: Infinite Toad Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,8;
+ bonus bMaxSPrate,4;
+ - Id: 4647
+ AegisName: Min_Osiris_Card
+ Name: Infinite Osiris Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPGainValue,300;
+ - Id: 4648
+ AegisName: Min_Eddga_Card
+ Name: Infinite Eddga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1;
+ - Id: 4649
+ AegisName: Min_Phreeoni_Card
+ Name: Infinite Phreeoni Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,100;
+ - Id: 4650
+ AegisName: Min_Orc_Hero_Card
+ Name: Infinite Orc Hero Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,3;
+ bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC;
+ - Id: 4651
+ AegisName: Min_Tao_Gunka_Card
+ Name: Infinite Tao Gunka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,10000;
+ bonus bAgi,-10;
+ - Id: 4652
+ AegisName: Grave_Amon_Ra_Card
+ Name: Nightmare Amon Ra Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4653
+ AegisName: Grave_Arclouse_Card
+ Name: Nightmare Arclouse Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4654
+ AegisName: Grave_Mimic_Card
+ Name: Nightmare Mimic Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4655
+ AegisName: Grave_Minorous_Card
+ Name: Nightmare Minorous Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4656
+ AegisName: Grave_Mummy_Card
+ Name: Nightmare Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ /* Unofficial chance */
+ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10;
+ - Id: 4657
+ AegisName: Grave_A_Mummy_Card
+ Name: Nightmare Ancient Mummy Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3;
+ - Id: 4658
+ AegisName: Grave_Verit_Card
+ Name: Nightmare Verit Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 4659
+ AegisName: Eggring_Card
+ Name: Eggring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ bonus bMaxHP,50;
+ - Id: 4660
+ 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 bMagicSubSize,Size_Small,5;
+ bonus2 bMagicSubSize,Size_Medium,5;
+ - Id: 4661
+ 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 bMagicSubSize,Size_Medium,20;
+ bonus2 bMagicSubSize,Size_Large,20;
+ bonus2 bMagicSubSize,Size_Small,-15;
+ - Id: 4662
+ AegisName: Big_Eggring_Card
+ Name: Big Eggring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSP,5;
+ - Id: 4664
+ AegisName: Grass_Fabre_Card
+ Name: Grass Fabre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,1;
+ bonus bMaxHP,100;
+ - Id: 4665
+ AegisName: Wild_Honet_Card
+ Name: Wild Hornet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,5;
+ - Id: 4666
+ 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;
+ - Id: 4667
+ AegisName: Hunter_Wolf_Card
+ Name: Hunter Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSP,30;
+ - Id: 4668
+ AegisName: Trance_Spore_Card
+ Name: Trance Spore Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bInt,1;
+ - Id: 4669
+ 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));
+ - Id: 4670
+ 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));
+ - Id: 4671
+ AegisName: Sorcerer_Card
+ Name: Sorcerer Celia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4672
+ AegisName: Sura_Card
+ Name: Sura Chen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Minstrel_Card
+ Name: Minstel Alphoccio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4674
+ AegisName: GuillotineCross_Card
+ Name: Guillotine Cross Eremes Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Archbishop_Card
+ Name: Arch Bishop Magaleta Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Ranger_Card
+ Name: Ranger Cecil Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4677
+ AegisName: Mechanic_Card
+ Name: Mechanic Howard Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Warlock_Card
+ Name: Warlock Kathryne Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4679
+ AegisName: RuneKnight_Card
+ Name: Rune Knight Seyren Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: RoyalGuard_Card
+ Name: Royal Guard Randel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Genetic_Card
+ Name: Genetic Flamel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: ShadowChaser_Card
+ Name: Shadow Chaser Gertie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Wanderer_Card
+ Name: Wanderer Trentini Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4684
+ AegisName: Real_Eremes_Card
+ Name: True Eremes Guile Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4685
+ AegisName: Real_Magaleta_Card
+ Name: True Margaretha Sorin Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4686
+ AegisName: Real_Katrinn_Card
+ Name: True Kathryne Keyron Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4687
+ AegisName: Real_Shecil_Card
+ Name: True Cecil Damon Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4688
+ AegisName: Real_Harword_Card
+ Name: True Howard Alt-Eisen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4689
+ AegisName: Real_Seyren_Card
+ Name: True Seyren Windsor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4690
+ AegisName: Real_Randel_Card
+ Name: True Randel Lawrence Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4691
+ AegisName: Real_Flamel_Card
+ Name: True Flamel Emure Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4692
+ AegisName: Real_Ceila_Card
+ Name: True Celia Alde Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4693
+ AegisName: Real_Chen_Card
+ Name: True Chen Liu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4694
+ AegisName: Real_Gertie_Card
+ Name: True Gertie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4695
+ AegisName: Real_Trentini_Card
+ Name: True Trentini Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4696
+ AegisName: Real_Alphoccio_Card
+ Name: True Alphoccio Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 4697
+ AegisName: Charleston_Card
+ Name: Charleston3 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBreakArmorRate,5000;
+ bonus bMaxSP,-300;
+ - Id: 4698
+ AegisName: Step_Card
+ Name: Step Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30);
+ - Id: 4699
+ AegisName: Rock_Step_Card
+ Name: Rock Step Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20);
+ - Id: 4700
+ AegisName: Strength1
+ Name: STR+1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,1;
+ - Id: 4701
+ AegisName: Strength2
+ Name: STR+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,2;
+ - Id: 4702
+ AegisName: Strength3
+ Name: STR+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,3;
+ - Id: 4703
+ AegisName: Strength4
+ Name: STR+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,4;
+ - Id: 4704
+ AegisName: Strength5
+ Name: STR+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,5;
+ - Id: 4705
+ AegisName: Strength6
+ Name: STR+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,6;
+ - Id: 4706
+ AegisName: Strength7
+ Name: STR+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,7;
+ - Id: 4707
+ AegisName: Strength8
+ Name: STR+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,8;
+ - Id: 4708
+ AegisName: Strength9
+ Name: STR+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,9;
+ - Id: 4709
+ AegisName: Strength10
+ Name: STR+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bStr,10;
+ - Id: 4710
+ AegisName: Inteligence1
+ Name: INT+1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,1;
+ - Id: 4711
+ AegisName: Inteligence2
+ Name: INT+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,2;
+ - Id: 4712
+ AegisName: Inteligence3
+ Name: INT+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,3;
+ - Id: 4713
+ AegisName: Inteligence4
+ Name: INT+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,4;
+ - Id: 4714
+ AegisName: Inteligence5
+ Name: INT+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,5;
+ - Id: 4715
+ AegisName: Inteligence6
+ Name: INT+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,6;
+ - Id: 4716
+ AegisName: Inteligence7
+ Name: INT+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,7;
+ - Id: 4717
+ AegisName: Inteligence8
+ Name: INT+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,8;
+ - Id: 4718
+ AegisName: Inteligence9
+ Name: INT+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,9;
+ - Id: 4719
+ AegisName: Inteligence10
+ Name: INT+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bInt,10;
+ - Id: 4720
+ AegisName: Dexterity1
+ Name: DEX+1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,1;
+ - Id: 4721
+ AegisName: Dexterity2
+ Name: DEX+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,2;
+ - Id: 4722
+ AegisName: Dexterity3
+ Name: DEX+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,3;
+ - Id: 4723
+ AegisName: Dexterity4
+ Name: DEX+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,4;
+ - Id: 4724
+ AegisName: Dexterity5
+ Name: DEX+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,5;
+ - Id: 4725
+ AegisName: Dexterity6
+ Name: DEX+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,6;
+ - Id: 4726
+ AegisName: Dexterity7
+ Name: DEX+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,7;
+ - Id: 4727
+ AegisName: Dexterity8
+ Name: DEX+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,8;
+ - Id: 4728
+ AegisName: Dexterity9
+ Name: DEX+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,9;
+ - Id: 4729
+ AegisName: Dexterity10
+ Name: DEX+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDex,10;
+ - Id: 4730
+ AegisName: Agility1
+ Name: AGI+1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,1;
+ - Id: 4731
+ AegisName: Agility2
+ Name: AGI+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,2;
+ - Id: 4732
+ AegisName: Agility3
+ Name: AGI+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,3;
+ - Id: 4733
+ AegisName: Agility4
+ Name: AGI+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,4;
+ - Id: 4734
+ AegisName: Agility5
+ Name: AGI+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,5;
+ - Id: 4735
+ AegisName: Agility6
+ Name: AGI+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,6;
+ - Id: 4736
+ AegisName: Agility7
+ Name: AGI+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,7;
+ - Id: 4737
+ AegisName: Agility8
+ Name: AGI+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,8;
+ - Id: 4738
+ AegisName: Agility9
+ Name: AGI+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,9;
+ - Id: 4739
+ AegisName: Agility10
+ Name: AGI+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAgi,10;
+ - Id: 4740
+ AegisName: Vitality1
+ Name: VIT+1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,1;
+ - Id: 4741
+ AegisName: Vitality2
+ Name: VIT+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,2;
+ - Id: 4742
+ AegisName: Vitality3
+ Name: VIT+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,3;
+ - Id: 4743
+ AegisName: Vitality4
+ Name: VIT+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,4;
+ - Id: 4744
+ AegisName: Vitality5
+ Name: VIT+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,5;
+ - Id: 4745
+ AegisName: Vitality6
+ Name: VIT+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,6;
+ - Id: 4746
+ AegisName: Vitality7
+ Name: VIT+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,7;
+ - Id: 4747
+ AegisName: Vitality8
+ Name: VIT+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,8;
+ - Id: 4748
+ AegisName: Vitality9
+ Name: VIT+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,9;
+ - Id: 4749
+ AegisName: Vitality10
+ Name: VIT+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bVit,10;
+ - Id: 4750
+ AegisName: Luck1
+ Name: LUK+1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,1;
+ - Id: 4751
+ AegisName: Luck2
+ Name: LUK+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,2;
+ - Id: 4752
+ AegisName: Luck3
+ Name: LUK+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,3;
+ - Id: 4753
+ AegisName: Luck4
+ Name: LUK+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,4;
+ - Id: 4754
+ AegisName: Luck5
+ Name: LUK+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,5;
+ - Id: 4755
+ AegisName: Luck6
+ Name: LUK+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,6;
+ - Id: 4756
+ AegisName: Luck7
+ Name: LUK+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,7;
+ - Id: 4757
+ AegisName: Luck8
+ Name: LUK+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,8;
+ - Id: 4758
+ AegisName: Luck9
+ Name: LUK+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,9;
+ - Id: 4759
+ AegisName: Luck10
+ Name: LUK+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLuk,10;
+ - Id: 4760
+ AegisName: Matk1
+ Name: MATK+1%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatkRate,1;
+ bonus bFixedCastrate,-1;
+ - Id: 4761
+ AegisName: Matk2
+ Name: MATK+2%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatkRate,2;
+ bonus bFixedCastrate,-1;
+ - Id: 4762
+ AegisName: Evasion6
+ Name: FLEE+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bFlee,6;
+ - Id: 4763
+ AegisName: Evasion12
+ Name: FLEE+12
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bFlee,12;
+ - Id: 4764
+ AegisName: Critical5
+ Name: CRI+5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,5;
+ - Id: 4765
+ AegisName: Critical7
+ Name: CRI+7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,7;
+ - Id: 4766
+ AegisName: Atk2
+ Name: ATK+2%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ - Id: 4767
+ AegisName: Atk3
+ Name: ATK+3%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ - Id: 4768
+ AegisName: Str1_J
+ Name: Str + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4769
+ AegisName: Str2_J
+ Name: Str + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4770
+ AegisName: Str3_J
+ Name: Str + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4771
+ AegisName: Int1_J
+ Name: Int + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4772
+ AegisName: Int2_J
+ Name: Int + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4773
+ AegisName: Int3_J
+ Name: Int + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4774
+ AegisName: Vit1_J
+ Name: Vit + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4775
+ AegisName: Vit2_J
+ Name: Vit + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4776
+ AegisName: Vit3_J
+ Name: Vit + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4777
+ AegisName: Agi1_J
+ Name: Agi + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4778
+ AegisName: Agi2_J
+ Name: Agi + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4779
+ AegisName: Agi3_J
+ Name: Agi + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4780
+ AegisName: Dex1_J
+ Name: Dex + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4781
+ AegisName: Dex2_J
+ Name: Dex + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4782
+ AegisName: Dex3_J
+ Name: Dex + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4783
+ AegisName: Luk1_J
+ Name: Luk + 1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4784
+ AegisName: Luk2_J
+ Name: Luk + 2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4785
+ AegisName: Luk3_J
+ Name: Luk + 3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ - Id: 4786
+ AegisName: Mdef2
+ Name: MDEF+2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMdef,2;
+ - Id: 4787
+ AegisName: Mdef4
+ Name: MDEF+4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMdef,4;
+ - Id: 4788
+ AegisName: Mdef6
+ Name: MDEF+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMdef,6;
+ - Id: 4789
+ AegisName: Mdef8
+ Name: MDEF+8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMdef,8;
+ - Id: 4790
+ AegisName: Mdef10
+ Name: MDEF+10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMdef,10;
+ - Id: 4791
+ AegisName: Def3
+ Name: DEF+3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDef,3;
+ - Id: 4792
+ AegisName: Def6
+ Name: DEF+6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDef,6;
+ - Id: 4793
+ AegisName: Def9
+ Name: DEF+9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDef,9;
+ - Id: 4794
+ AegisName: Def12
+ Name: DEF+12
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bDef,12;
+ - Id: 4795
+ AegisName: HP100
+ Name: HP+100
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHP,100;
+ - Id: 4796
+ AegisName: HP200
+ Name: HP+200
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHP,200;
+ - Id: 4797
+ AegisName: HP300
+ Name: HP+300
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHP,300;
+ - Id: 4798
+ AegisName: HP400
+ Name: HP+400
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHP,400;
+ - Id: 4799
+ AegisName: HP500
+ Name: HP+500
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHP,500;
+ - Id: 4800
+ AegisName: SP50
+ Name: SP+50
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxSP,50;
+ - Id: 4801
+ AegisName: SP100
+ Name: SP+100
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxSP,100;
+ - Id: 4802
+ AegisName: SP150
+ Name: SP+150
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxSP,150;
+ - Id: 4803
+ AegisName: Highness_Heal_3sec
+ Name: Cure1Lv.
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000;
+ - Id: 4804
+ AegisName: Coluceo_Heal30
+ Name: Catholic1Lv.
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bSkillUseSP,"AB_CHEAL",30;
+ - Id: 4805
+ AegisName: Heal_Amount2
+ Name: Archbishop1Lv
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bHealPower,3;
+ - Id: 4806
+ AegisName: Matk3
+ Name: MATK+3%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatkRate,3;
+ bonus bFixedCastrate,-1;
+ - Id: 4807
+ AegisName: Atk_Speed1
+ Name: Atk Speed1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAspd,1;
+ - Id: 4808
+ AegisName: Fighting_Spirit4
+ Name: Fighting Spirit4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,15;
+ bonus bHit,5;
+ - Id: 4809
+ AegisName: Fighting_Spirit3
+ Name: Fighting Spirit3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,12;
+ bonus bHit,4;
+ - Id: 4810
+ AegisName: Fighting_Spirit2
+ Name: Fighting Spirit2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,9;
+ bonus bHit,3;
+ - Id: 4811
+ AegisName: Fighting_Spirit1
+ Name: Fighting Spirit1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,6;
+ bonus bHit,2;
+ - Id: 4812
+ AegisName: Spell4
+ Name: Spell4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,15;
+ bonus bVariableCastrate,-10;
+ - Id: 4813
+ AegisName: Spell3
+ Name: Spell3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,12;
+ bonus bVariableCastrate,-8;
+ - Id: 4814
+ AegisName: Spell2
+ Name: Spell2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,9;
+ bonus bVariableCastrate,-6;
+ - Id: 4815
+ AegisName: Spell1
+ Name: Spell1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,6;
+ bonus bVariableCastrate,-4;
+ - Id: 4816
+ AegisName: Sharp3
+ Name: Sharp3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,12;
+ bonus bHit,4;
+ - Id: 4817
+ AegisName: Sharp2
+ Name: Sharp2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,9;
+ bonus bHit,3;
+ - Id: 4818
+ AegisName: Sharp1
+ Name: Sharp1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,6;
+ bonus bHit,2;
+ - Id: 4819
+ AegisName: Atk1
+ Name: Atk1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 4820
+ AegisName: Fighting_Spirit5
+ Name: Fighting Spirit5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,18;
+ bonus bHit,5;
+ - Id: 4821
+ AegisName: Fighting_Spirit6
+ Name: Fighting Spirit6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,21;
+ bonus bHit,5;
+ - Id: 4822
+ AegisName: Fighting_Spirit7
+ Name: Fighting Spirit7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,24;
+ bonus bHit,5;
+ - Id: 4823
+ AegisName: Fighting_Spirit8
+ Name: Fighting Spirit8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,27;
+ bonus bHit,5;
+ - Id: 4824
+ AegisName: Fighting_Spirit9
+ Name: Fighting Spirit9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bHit,5;
+ - Id: 4825
+ AegisName: Fighting_Spirit10
+ Name: Fighting Spirit10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bBaseAtk,50;
+ bonus bHit,15;
+ - Id: 4826
+ AegisName: Spell5
+ Name: Spell5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,18;
+ bonus bVariableCastrate,-10;
+ - Id: 4827
+ AegisName: Spell6
+ Name: Spell6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,21;
+ bonus bVariableCastrate,-10;
+ - Id: 4828
+ AegisName: Spell7
+ Name: Spell7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,24;
+ bonus bVariableCastrate,-10;
+ - Id: 4829
+ AegisName: Spell8
+ Name: Spell8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,27;
+ bonus bVariableCastrate,-10;
+ - Id: 4830
+ AegisName: Spell9
+ Name: Spell9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,30;
+ bonus bVariableCastrate,-10;
+ - Id: 4831
+ AegisName: Spell10
+ Name: Spell10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMatk,50;
+ bonus bVariableCastrate,-20;
+ - Id: 4832
+ AegisName: Expert_Archer1
+ Name: Expert Archer1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,2;
+ - Id: 4833
+ AegisName: Expert_Archer2
+ Name: Expert Archer2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,4;
+ - Id: 4834
+ AegisName: Expert_Archer3
+ Name: Expert Archer3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,6;
+ - Id: 4835
+ AegisName: Expert_Archer4
+ Name: Expert Archer4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,8;
+ - Id: 4836
+ AegisName: Expert_Archer5
+ Name: Expert Archer5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 4837
+ AegisName: Expert_Archer6
+ Name: Expert Archer6
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,12;
+ - Id: 4838
+ AegisName: Expert_Archer7
+ Name: Expert Archer7
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,14;
+ - Id: 4839
+ AegisName: Expert_Archer8
+ Name: Expert Archer8
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,16;
+ - Id: 4840
+ AegisName: Expert_Archer9
+ Name: Expert Archer9
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,18;
+ - Id: 4841
+ AegisName: Expert_Archer10
+ Name: Expert Archer10
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bLongAtkRate,20;
+ bonus bAspd,1;
+ - Id: 4842
+ AegisName: Atk_Speed2
+ Name: Atk Speed2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bAspd,2;
+ - Id: 4843
+ AegisName: Sharp4
+ Name: Sharp4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,14;
+ bonus bHit,5;
+ - Id: 4844
+ AegisName: Sharp5
+ Name: Sharp5
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bCritical,15;
+ bonus bHit,6;
+ - Id: 4845
+ AegisName: Sea_Energy
+ Name: Strength Of Ocean
+ Type: Card
+ - Id: 4846
+ AegisName: 2011Valentin_Angel
+ Name: Fully Loved Stone
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ - Id: 4847
+ AegisName: 2011Valentin_Devil
+ Name: Spelled Stone
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bBaseAtk,10;
+ bonus bMatk,10;
+ - Id: 4848
+ AegisName: Immuned1
+ Name: Immune Level 1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,5;
+ - Id: 4849
+ AegisName: Cranial1
+ Name: Cranial Level 1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,5;
+ bonus2 bSubRace,RC_Player_Human,5;
+ - Id: 4850
+ AegisName: Heal_Amount3
+ Name: Heal Amount2
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bHealPower,6;
+ bonus bUseSPrate,5;
+ - Id: 4851
+ AegisName: Heal_Amount4
+ Name: Heal Amount3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bHealPower,12;
+ bonus bUseSPrate,10;
+ - Id: 4852
+ AegisName: Heal_Amount5
+ Name: Heal Amount4
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bHealPower,20;
+ bonus bUseSPrate,15;
+ - Id: 4853
+ AegisName: S_Str
+ Name: Special Str
+ Type: Card
+ Buy: 20
+ Script: |
+ .@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
+ Script: |
+ .@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
+ Script: |
+ .@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
+ Script: |
+ .@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
+ Script: |
+ .@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
+ Script: |
+ .@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
+ Script: |
+ bonus bFlee,1;
+ - Id: 4860
+ AegisName: Evasion3
+ Name: Evasion3
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bFlee,3;
+ - Id: 4861
+ AegisName: MHP1
+ Name: MHP+1%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHPrate,1;
+ - Id: 4862
+ AegisName: MHP2
+ Name: MHP+2%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHPrate,2;
+ - Id: 4863
+ AegisName: Fatal1
+ Name: Fatal1Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,4;
+ bonus bCritical,1;
+ - Id: 4864
+ AegisName: Fatal2
+ Name: Fatal2Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,6;
+ bonus bCritical,2;
+ - Id: 4865
+ AegisName: Fatal3
+ Name: Fatal3Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,8;
+ bonus bCritical,3;
+ - Id: 4866
+ AegisName: Fatal4
+ Name: Fatal4Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus bCritical,4;
+ - Id: 4867
+ AegisName: MHP3
+ Name: MHP+3%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHPrate,3;
+ - Id: 4868
+ AegisName: MHP4
+ Name: MHP+4%
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxHPrate,4;
+ - Id: 4869
+ AegisName: Attack_Delay_1
+ Name: DelayafterAttack1Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bAspdRate,4;
+ - Id: 4870
+ AegisName: SP25
+ Name: SP+25
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxSP,25;
+ - Id: 4871
+ AegisName: SP75
+ Name: SP+75
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus bMaxSP,75;
+ - Id: 4872
+ AegisName: Attack_Delay_2
+ Name: DelayafterAttack2Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bAspdRate,6;
+ - Id: 4873
+ AegisName: Attack_Delay_3
+ Name: DelayafterAttack3Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bAspdRate,8;
+ - Id: 4874
+ 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 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 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 !!\"; }";
+ UnEquipScript: |
+ heal 0,-300;
+ - Id: 4881
+ AegisName: Attack_Delay_4
+ Name: Attack Delay 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 4882
+ AegisName: Atk1p
+ Name: ATK + 1%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,1;
+ - Id: 4883
+ AegisName: Matk1p
+ Name: MATK + 1%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 4884
+ AegisName: HIT1
+ Name: HIT + 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bHit,1;
+ - Id: 4885
+ AegisName: Conjure1
+ Name: Spell 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatk,5;
+ bonus bVariableCastrate,-3;
+ - Id: 4886
+ AegisName: Conjure2
+ Name: Spell 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatk,10;
+ bonus bVariableCastrate,-3;
+ - Id: 4887
+ AegisName: Conjure3
+ Name: Spell 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatk,15;
+ bonus bVariableCastrate,-3;
+ - Id: 4888
+ AegisName: Conjure4
+ Name: Spell 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatk,20;
+ bonus bVariableCastrate,-3;
+ - Id: 4889
+ AegisName: Conjure5
+ Name: Spell 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatk,30;
+ bonus bVariableCastrate,-5;
+ - Id: 4890
+ AegisName: Mdef1
+ Name: MDEF+1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMdef,1;
+ - Id: 4891
+ AegisName: Mdef3
+ Name: MDEF+3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMdef,3;
+ - Id: 4892
+ AegisName: Mdef5
+ Name: MDEF+5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMdef,5;
+ - Id: 4893
+ AegisName: Def15
+ Name: DEF+15
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDef,15;
+ - Id: 4894
+ AegisName: Atk4p
+ Name: ATK + 4%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ - Id: 4895
+ AegisName: Atk5p
+ Name: ATK + 5%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 4896
+ AegisName: Matk2p
+ Name: MATK + 2%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,2;
+ - Id: 4897
+ AegisName: Matk3p
+ Name: MATK + 3%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,3;
+ - Id: 4898
+ AegisName: Matk4p
+ Name: MATK + 4%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,4;
+ - Id: 4899
+ AegisName: Matk5p
+ Name: MATK + 5%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,5;
+ - Id: 4900
+ AegisName: MHP5
+ Name: MHP+5%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 4902
+ AegisName: Def18
+ Name: DEF+18
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDef,18;
+ - Id: 4903
+ AegisName: Def21
+ Name: DEF+21
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDef,21;
+ - Id: 4904
+ AegisName: Atk6p
+ Name: ATK + 6%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,6;
+ - Id: 4905
+ AegisName: Atk7p
+ Name: ATK + 7%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,7;
+ - Id: 4906
+ AegisName: Matk6p
+ Name: MATK + 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,6;
+ - Id: 4907
+ AegisName: Matk7p
+ Name: MATK + 7%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMatkRate,7;
+ - Id: 4908
+ AegisName: Force1
+ Name: Darklord Essence Force1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bStr,1;
+ bonus bBaseAtk,3;
+ bonus bInt,-1;
+ - Id: 4909
+ AegisName: Force2
+ Name: Darklord Essence Force2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bStr,2;
+ bonus bBaseAtk,6;
+ bonus bInt,-2;
+ - Id: 4910
+ AegisName: Force3
+ Name: Darklord Essence Force3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bStr,4;
+ bonus bBaseAtk,12;
+ bonus bInt,-4;
+ - Id: 4911
+ AegisName: Intellect1
+ Name: Darklord Essence Intelligence1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bInt,1;
+ bonus bMatk,3;
+ bonus bStr,-1;
+ - Id: 4912
+ AegisName: Intellect2
+ Name: Darklord Essence Intelligence2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bInt,2;
+ bonus bMatk,6;
+ bonus bStr,-2;
+ - Id: 4913
+ AegisName: Intellect3
+ Name: Darklord Essence Intelligence3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bInt,4;
+ bonus bMatk,12;
+ bonus bStr,-4;
+ - Id: 4914
+ AegisName: Swiftness1
+ Name: Darklord Essence Speed1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,1;
+ bonus bFlee,2;
+ bonus bVit,-1;
+ - Id: 4915
+ AegisName: Swiftness2
+ Name: Darklord Essence Speed2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,2;
+ bonus bFlee,4;
+ bonus bVit,-2;
+ - Id: 4916
+ AegisName: Swiftness3
+ Name: Darklord Essence Speed3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bAgi,4;
+ bonus bFlee,8;
+ bonus bVit,-4;
+ - Id: 4917
+ AegisName: Tough1
+ Name: Darklord Essence Vitality1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bVit,1;
+ bonus bDef,3;
+ bonus bMdef,2;
+ bonus bAgi,-1;
+ - Id: 4918
+ AegisName: Tough2
+ Name: Darklord Essence Vitality2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bVit,2;
+ bonus bDef,6;
+ bonus bMdef,4;
+ bonus bAgi,-2;
+ - Id: 4919
+ AegisName: Tough3
+ Name: Darklord Essence Vitality3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bVit,4;
+ bonus bDef,12;
+ bonus bMdef,8;
+ bonus bAgi,-4;
+ - Id: 4920
+ AegisName: Artful1
+ Name: Darklord Essence Concentration1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bDex,1;
+ bonus bHit,2;
+ bonus bLuk,-1;
+ - Id: 4921
+ AegisName: Artful2
+ Name: Darklord Essence Concentration2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bDex,2;
+ bonus bHit,4;
+ bonus bLuk,-2;
+ - Id: 4922
+ AegisName: Artful3
+ Name: Darklord Essence Concentration3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bDex,4;
+ bonus bHit,8;
+ bonus bLuk,-4;
+ - Id: 4923
+ AegisName: Fortune1
+ Name: Darklord Essence Luck1
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,1;
+ bonus bCritical,1;
+ bonus bDex,-1;
+ - Id: 4924
+ AegisName: Fortune2
+ Name: Darklord Essence Luck2
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,2;
+ bonus bCritical,2;
+ bonus bDex,-2;
+ - Id: 4925
+ AegisName: Fortune3
+ Name: Darklord Essence Luck3
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Shoes: true
+ Both_Hand: true
+ Armor: true
+ Garment: true
+ Both_Accessory: true
+ Script: |
+ bonus bLuk,4;
+ bonus bCritical,4;
+ bonus bDex,-4;
+ - Id: 4926
+ AegisName: Critical1
+ Name: Cri 1Lv
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritical,1;
+ - Id: 4927
+ AegisName: HP50
+ Name: MaxHP50
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHP,50;
+ - Id: 4928
+ AegisName: SP10
+ Name: MaxSP+10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSP,10;
+ - Id: 4929
+ AegisName: MSP1
+ Name: MSP+1%
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,1;
+ - Id: 4930
+ AegisName: HEAL2
+ Name: Recovery UP
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bHealPower2,2;
+ - Id: 4931
+ AegisName: HEALHP1
+ Name: Heal 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bHPRegenRate,10,10000;
+ - Id: 4932
+ AegisName: HEALSP1
+ Name: SP recovery1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bSPGainValue,1;
+ bonus bLongSPGainValue,1;
+ bonus bMagicSPGainValue,1;
+ - Id: 4933
+ AegisName: Tolerance_Not1
+ Name: Neutral Resistance Lv1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,1;
+ - Id: 4934
+ AegisName: Tolerance_Not2
+ Name: Neutral Resistance Lv2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,2;
+ - Id: 4935
+ AegisName: Tolerance_Not3
+ Name: Neutral Resistance Lv3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,3;
+ - Id: 4936
+ AegisName: ATK_BIG1
+ Name: Attack big1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddSize,Size_Large,1;
+ - Id: 4937
+ AegisName: ATK_MEDIUM1
+ Name: Attack mid1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddSize,Size_Medium,1;
+ - Id: 4938
+ AegisName: ATK_SMALL1
+ Name: Attack small1
+ Type: Card
+ Buy: 20
+ Script: |
+ bonus2 bAddSize,Size_Small,1;
+ - Id: 4939
+ AegisName: Critical2
+ Name: CRI Lv2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritical,2;
+ - Id: 4940
+ AegisName: Critical3
+ Name: CRI Lv3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritical,4;
+ - Id: 4941
+ AegisName: Critical4
+ Name: CRI Lv4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritical,6;
+ - Id: 4942
+ AegisName: Dodge1
+ Name: Parrying Lv1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFlee2,3;
+ - Id: 4943
+ AegisName: Dodge2
+ Name: Parrying Lv2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFlee2,4;
+ - Id: 4944
+ AegisName: Dodge3
+ Name: Parrying Lv3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFlee2,5;
+ - Id: 4945
+ AegisName: Thrift1
+ Name: Economy Lv1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bUseSPrate,-2;
+ - Id: 4946
+ AegisName: Thrift2
+ Name: Economy Lv2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bUseSPrate,-4;
+ - Id: 4947
+ AegisName: Thrift3
+ Name: Economy Lv3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bUseSPrate,-6;
+ - Id: 4948
+ AegisName: Skill_Delay1
+ Name: After Skill Delay Lv1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDelayrate,-2;
+ - Id: 4949
+ AegisName: Skill_Delay2
+ Name: After Skill Delay Lv2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDelayrate,-4;
+ - Id: 4950
+ AegisName: Skill_Delay3
+ Name: After Skill Delay Lv3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDelayrate,-6;
+ - Id: 4951
+ AegisName: Darkness_Drop
+ Name: Darkness Drop
+ Type: Card
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - 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;
+ - 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% */
+ - Id: 4957
+ AegisName: Famitsus_Power
+ Name: Famitsu's Power
+ Type: Card
+ Script: |
+ bonus bMaxHP,832;
+ - Id: 4958
+ AegisName: Gemini
+ Name: Gemini
+ Type: Card
+ Script: |
+ bonus bDelayrate,-1;
+ - Id: 4959
+ AegisName: Sagittarius
+ Name: Sagittarius
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,1;
+ - Id: 4960
+ AegisName: Aquarius
+ Name: Aquarius
+ Type: Card
+ Script: |
+ bonus bUseSPrate,-2;
+ - Id: 4961
+ AegisName: Aries
+ Name: Aries
+ Type: Card
+ Script: |
+ bonus bMatk,10;
+ - Id: 4962
+ AegisName: Cancer
+ Name: Cancer
+ Type: Card
+ Script: |
+ bonus bBaseAtk,3;
+ - Id: 4963
+ AegisName: Taurus
+ Name: Taurus
+ Type: Card
+ Script: |
+ bonus bBaseAtk,4;
+ bonus bHit,1;
+ - Id: 4964
+ AegisName: Capricorn
+ Name: Capricorn
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_All,3;
+ - Id: 4965
+ AegisName: Pisces
+ Name: Pisces
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-2;
+ - Id: 4966
+ AegisName: Scorpio
+ Name: Scorpio
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_All,1;
+ - Id: 4967
+ AegisName: Leo
+ Name: Leo
+ Type: Card
+ Script: |
+ bonus bAspdRate,3;
+ - Id: 4968
+ AegisName: Virgo
+ 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;
+ }
+ - 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% */
+ - Id: 4970
+ AegisName: Reactor_P_FIRE
+ Name: Fire Property Reactor
+ Type: Card
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 4971
+ AegisName: Reactor_P_WATER
+ Name: Water Property Reactor
+ Type: Card
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 4972
+ AegisName: Reactor_P_GROUND
+ Name: Earth Property Reactor
+ Type: Card
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 4973
+ AegisName: Reactor_P_WIND
+ Name: Wind Property Reactor
+ Type: Card
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 4974
+ AegisName: Reactor_T_FIRE
+ Name: Fire Resistance Reactor
+ Type: Card
+ Script: |
+ 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;
+ - Id: 4976
+ AegisName: Reactor_T_GROUND
+ Name: Earth Resistance Reactor
+ Type: Card
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - Id: 4980
+ AegisName: Reactor_Cure_201
+ Name: Recovery Reactor 201
+ Type: Card
+ Script: |
+ 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;
+ - 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);
+ - 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);
+ - Id: 4984
+ AegisName: Reactor_A_DEF
+ Name: DEF SupplementReactor
+ Type: Card
+ Script: |
+ bonus bDef,100;
+ - Id: 4985
+ AegisName: Reactor_A_AVOI
+ Name: PD Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bFlee2,3;
+ - Id: 4986
+ AegisName: Reactor_A_ATK
+ Name: Attack Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 4987
+ AegisName: Reactor_A_MATK
+ Name: Magic Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bMatk,20;
+ - Id: 4988
+ AegisName: Reactor_A_MHP
+ Name: HP Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 4989
+ AegisName: Reactor_A_MSP
+ Name: SP Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bMaxSPrate,3;
+ - Id: 4990
+ AegisName: Reactor_A_FROZ
+ Name: Frozen Supplement Reactor
+ Type: Card
+ Script: |
+ bonus2 bResEff,Eff_Freeze,10000;
+ - Id: 4991
+ AegisName: Reactor_A_ASPD
+ Name: ASPD Supplement Reactor
+ Type: Card
+ Script: |
+ bonus bAspd,1;
+ - Id: 4992
+ AegisName: HPdrain1
+ Name: HP Absorb 1
+ Type: Card
+ Script: |
+ bonus2 bHPDrainRate,10,1;
+ - Id: 4993
+ AegisName: SPdrain1
+ Name: SP Absorb 1
+ Type: Card
+ Script: |
+ bonus2 bSPDrainRate,10,1;
+ - Id: 4994
+ 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>9) {
+ bonus2 bAddRace,RC_All,5;
+ }
+ - Id: 4995
+ 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) {
+ bonus2 bAddRace,RC_All,7;
+ bonus bStr,1;
+ }
+ }
+ - Id: 4996
+ 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) {
+ bonus2 bAddRace,RC_All,8;
+ bonus bStr,1;
+ if (.@r>=13) {
+ bonus2 bAddRace,RC_All,2;
+ bonus bStr,1;
+ }
+ }
+ }
+ - Id: 4997
+ 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;
+ }
+ }
+ - Id: 4998
+ 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 bFlee2,7;
+ bonus bAgi,1;
+ }
+ }
+ - Id: 4999
+ 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;
+ }
+ - Id: 6000
+ AegisName: Dark_Ashes
+ Name: Ashes of Darkness
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6001
+ AegisName: Essence_Of_Fire
+ Name: Essence of Fire
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6002
+ AegisName: Token_Of_Apostle
+ Name: Token of Apostle
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6003
+ AegisName: Soul_Pendant
+ Name: Pendant of Spirit
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6004
+ AegisName: Bapho_Doll
+ Name: Cursed Baphomet Doll
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6005
+ AegisName: New_Year_Rice_Cake
+ Name: New Year Rice Cake
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6006
+ AegisName: Rice_Cake_Delivery_Box
+ Name: Rice Cake Delivery Box
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6007
+ AegisName: New_Year_Rice_Cake_Soup
+ Name: New Year Rice Cake Soup
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6008
+ AegisName: Wood
+ Name: Wood
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6009
+ AegisName: Large_Magical_Fan
+ Name: Big Fan Of Magic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6010
+ AegisName: Pickaxe
+ Name: Hoe
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6011
+ AegisName: Blue_Card_B
+ Name: Blue B Card
+ Type: Etc
+ Weight: 10
+ - Id: 6012
+ AegisName: Blue_Card_C
+ Name: Blue C Card
+ Type: Etc
+ Weight: 10
+ - Id: 6013
+ AegisName: Blue_Card_J
+ Name: Blue J Card
+ Type: Etc
+ Weight: 10
+ - Id: 6015
+ AegisName: Blue_Card_M
+ Name: Blue M Card
+ Type: Etc
+ Weight: 10
+ - Id: 6016
+ AegisName: Blue_Card_Q
+ Name: Blue Q Card
+ Type: Etc
+ Weight: 10
+ - Id: 6017
+ AegisName: Blue_Card_T
+ Name: Blue T Card
+ Type: Etc
+ Weight: 10
+ - Id: 6018
+ AegisName: Blue_Card_V
+ Name: Blue V Card
+ Type: Etc
+ Weight: 10
+ - Id: 6019
+ AegisName: Blue_Card_Z
+ Name: Blue Z Card
+ Type: Etc
+ Weight: 10
+ - Id: 6020
+ AegisName: Fur
+ Name: Fur
+ Type: Etc
+ Buy: 704
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6021
+ AegisName: Peaked_Hat
+ Name: Peaked Hat
+ Type: Etc
+ Buy: 433
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6022
+ AegisName: Hard_Skin
+ Name: Hard Skin
+ Type: Etc
+ Buy: 884
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6023
+ AegisName: Mystic_Horn
+ Name: Mystic Horn
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6024
+ AegisName: 17Carat_Dia
+ Name: 17Carat Diamond
+ Type: Etc
+ Buy: 6000000
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 6025
+ AegisName: Towel_Of_Memory
+ Name: Towel of Memory
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6026
+ AegisName: Marriage_Covenant
+ Name: Written Oath Of Marriage
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 6027
+ AegisName: Crystal_Of_Feardoom
+ Name: Crystal Of Feardom
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6028
+ AegisName: Seal_Scroll
+ Name: Sealed Scroll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6029
+ AegisName: Morocc_Tracing_Log
+ Name: Morocc Tracing Log
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6030
+ AegisName: Glitering_PaperA
+ Name: Glittering Paper
+ Type: Etc
+ Weight: 10
+ - Id: 6031
+ AegisName: Glitering_PaperB
+ Name: Glittering Paper
+ Type: Etc
+ Weight: 10
+ - Id: 6032
+ AegisName: Horn_Of_Hilsrion
+ Name: Horn of Hillslion
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6033
+ AegisName: Horn_Of_Tendrilion
+ Name: Horn of Tendrilion
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6034
+ AegisName: Weird_Part
+ Name: Weird Part
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6035
+ AegisName: Decaying_Stem
+ Name: Decaying Stem
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6036
+ AegisName: Invite_To_Meeting
+ Name: Meeting Invitation
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6037
+ AegisName: Rough_File
+ Name: Messy File
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6038
+ AegisName: Neat_Report
+ Name: Neat Report
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6039
+ AegisName: Piece_Of_Fish
+ Name: Piece of Fish
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6040
+ AegisName: Some_Of_Report
+ Name: Part of a Report
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6041
+ AegisName: Strong_Bine
+ Name: Strong Vine
+ Type: Etc
+ Buy: 30
+ Weight: 50
+ - Id: 6042
+ AegisName: Ordinary_Branch
+ Name: Ordinary Branch
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6043
+ AegisName: Letter_From_Lugen
+ Name: Letter from Lugen
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6044
+ AegisName: Letter_From_Otto
+ Name: Letter from Otto
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6045
+ AegisName: Supply_Box
+ Name: Supply Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6048
+ AegisName: Unidentified_Mineral
+ Name: Unidentified Mineral
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6049
+ AegisName: Marlin
+ Name: Marlin
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6050
+ AegisName: Mercenary_Contract
+ Name: Mercenary Contract
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6051
+ AegisName: Gray_Hollow
+ Name: Gray Hollow
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6052
+ AegisName: Ornamental_Hairpin
+ Name: Ornament Hairpin
+ Type: Etc
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6053
+ AegisName: Yuanbao
+ Name: Circle Step
+ Type: Etc
+ Buy: 100
+ Weight: 100
+ - Id: 6054
+ AegisName: Blue_Card_6
+ Name: Number 6 Card
+ Type: Etc
+ Weight: 10
+ - Id: 6055
+ AegisName: Blue_Card_Annyver
+ Name: Character Week Card
+ Type: Etc
+ Weight: 10
+ - Id: 6056
+ AegisName: Blue_Card_Sary
+ Name: Character Year Card
+ Type: Etc
+ Weight: 10
+ - Id: 6057
+ AegisName: Blue_Card_E
+ Name: Character Lee Card
+ Type: Etc
+ Weight: 10
+ - Id: 6058
+ AegisName: Blue_Card_Ven
+ Name: Character Ben Card
+ Type: Etc
+ Weight: 10
+ - Id: 6059
+ AegisName: Blue_Card_Nt
+ Name: Character Project Card
+ Type: Etc
+ Weight: 10
+ - Id: 6060
+ AegisName: Moon_Admin_Ticket
+ Name: Month Viewing Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6061
+ AegisName: Plantain
+ Name: Blood Beginner
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ - Id: 6062
+ AegisName: Moon_Cake15
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6063
+ AegisName: Moon_Cake16
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6064
+ AegisName: Moon_Cake17
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6065
+ AegisName: Moon_Cake18
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6066
+ AegisName: Moon_Cake19
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6067
+ AegisName: Moon_Cake20
+ Name: Letter Moon Cake
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6068
+ AegisName: Rabbit_Skin
+ Name: Leather Rabbit
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6069
+ AegisName: ABUNDANCE
+ Name: Abundance
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6070
+ AegisName: Shaman's_Old_Paper
+ Name: Shaman's Document
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6071
+ AegisName: Broken_Sword
+ Name: Broken Sword
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6072
+ AegisName: Wing_Of_Bizofnil
+ Name: Bijofnil Feather
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6073
+ AegisName: Dragon's_Mane
+ Name: Dragon's Mane
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6074
+ AegisName: Bazett's_Order
+ Name: Bazett's Order
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6075
+ AegisName: Crystalized_Teardrop
+ Name: Crystalized Teardrop
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6076
+ AegisName: Portable_Toolbox
+ Name: Portable Toolbox
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6077
+ AegisName: Rough_Mineral
+ Name: Rough Mineral
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6078
+ AegisName: Stone_Fragments
+ Name: Stone Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6079
+ AegisName: Flower_Of_Alfheim
+ Name: Flower Of Alfheim
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6080
+ AegisName: Manuk_Coin
+ Name: Manuk Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6081
+ AegisName: Splendide_Coin
+ Name: Splendide Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6082
+ AegisName: Spirit_Of_Alfheim
+ Name: Spirit Of Alfheim
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6083
+ AegisName: Dolly_Capsule
+ Name: Capsule Dolls
+ Type: Etc
+ Weight: 10
+ - Id: 6084
+ AegisName: Bradium_Fragments
+ Name: Bradium Fragments
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6085
+ AegisName: Shaggy_Muffler
+ Name: Shaggy Muffler
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6086
+ AegisName: Withered_Flower
+ Name: Withered Flower
+ Type: Etc
+ Buy: 890
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6087
+ AegisName: Crystal_Of_Soul_01
+ Name: Spiritual Crystal
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6088
+ AegisName: Crystal_Of_Soul_02
+ Name: Spiritual Crystal
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6089
+ AegisName: Piece_Of_Darkness
+ Name: Dark Piece
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6090
+ AegisName: Purified_Bradium
+ Name: Refined Bradium
+ Type: Etc
+ Buy: 1100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 6091
+ AegisName: Dark_Red_Scale
+ Name: Darkred Scale Piece
+ Type: Etc
+ Buy: 200000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6092
+ AegisName: Singing_Crystal_Piece
+ Name: Piece Of Singing Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 6093
+ AegisName: Egg_Of_Draco
+ Name: Draco's Egg
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6094
+ AegisName: Traditional_Cookie
+ Name: Traditional Sweets
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6095
+ AegisName: Flavored_Alcohol
+ Name: Flavored Alcohol
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6096
+ AegisName: Fish_With_Blue_Back
+ Name: Fish With Blue Back
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6097
+ AegisName: Pumpkin_Pie_
+ Name: Pumpkin Pie
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6098
+ AegisName: Small_Snow_Flower
+ Name: Small Snow Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6099
+ AegisName: Grilled_Rice_Cake
+ Name: Grilled Rice Cake
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6100
+ AegisName: Damp_Darkness
+ Name: Damp Darkness
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6101
+ AegisName: Attendance_Card
+ Name: Attendance Card
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6102
+ AegisName: Report_On_Splendide
+ Name: Report On Splendide
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6103
+ AegisName: Report_On_Manuk
+ Name: Report On Manuk
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6104
+ AegisName: Big_Cell
+ Name: Big Cell
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6105
+ AegisName: Morning_Dew
+ Name: Morning Dew
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6106
+ AegisName: Well_Ripened_Berry
+ Name: Well Ripened Berry
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6107
+ AegisName: Sunset_On_The_Rock
+ Name: Sunset On The Rock
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6108
+ AegisName: Apple_Pudding
+ Name: Apple Pudding
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6109
+ AegisName: Plant_Neutrient
+ Name: Plant Neutrient
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6110
+ AegisName: Vital_Flower
+ Name: Vital Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6111
+ AegisName: Mystic_Stone
+ Name: Mystic Stone
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6112
+ AegisName: Fresh_Plant
+ Name: Fresh Plant
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6113
+ AegisName: Vital_Flower_
+ Name: Vital Flower
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6114
+ AegisName: Flame_Gemstone
+ Name: Flame Gemstone
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6115
+ AegisName: Bun_
+ Name: Bun
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6116
+ AegisName: Succu_Pet_Coupon
+ Name: Succubus Pet Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6117
+ AegisName: Imp_Pet_Coupon
+ Name: Imp Pet Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6118
+ AegisName: Chung_E_Pet_Coupon
+ Name: Chung E Exchange Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6119
+ AegisName: Natural_Leather
+ Name: Cow Leather
+ Type: Etc
+ - Id: 6120
+ AegisName: Face_Paint
+ Name: Face Paint
+ Type: Etc
+ Buy: 120
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 6121
+ AegisName: Makeover_Brush
+ Name: Makeover Brush
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6122
+ AegisName: Paint_Brush
+ Name: Paint Brush
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6123
+ AegisName: Surface_Paint
+ Name: Surface Paint
+ Type: Etc
+ Buy: 200
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 6124
+ AegisName: Wolf's_Flute
+ Name: Wolf Flute
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6125
+ AegisName: Lucky_Box
+ Name: Spring Time Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6126
+ AegisName: Happy_Box
+ Name: Summer Happy Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6127
+ AegisName: Purification_Stone
+ Name: Purification Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6128
+ AegisName: Guillotine_Antidote
+ Name: Antidote
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6129
+ AegisName: Ticket_Nightmare
+ Name: Nightmare Terror Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6130
+ AegisName: Ticket_Loli_Ruri
+ Name: Loli Ruri Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6131
+ AegisName: Ticket_Goblin_Leader
+ Name: Goblin Leader Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6132
+ AegisName: Ticket_Incubus
+ Name: Incubus Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6133
+ AegisName: Ticket_Miyabi_Ningyo
+ Name: Miyabi Ningyo Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6134
+ AegisName: Ticket_Whisper
+ Name: Giant Whisper Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6135
+ AegisName: Ticket_Wicked_Nymph
+ Name: Evil Nymph Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6136
+ AegisName: Ticket_Medusa
+ Name: Medusa Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6137
+ AegisName: Ticket_Stoneshooter
+ Name: Stone Shooter Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6138
+ AegisName: Ticket_Marionette
+ Name: Marionette Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6139
+ AegisName: Ticket_Leafcat
+ Name: Leaf Cat Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6140
+ AegisName: Ticket_Dullahan
+ Name: Dullahan Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6141
+ AegisName: Ticket_Shinobi
+ Name: Shinobi Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6142
+ AegisName: Ticket_Golem
+ Name: Golem Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6143
+ AegisName: Ticket_Civil_Servant
+ Name: Civil Servant Exchange Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6144
+ AegisName: Heartbroken_Tears
+ Name: Regrettable Tears
+ Type: Etc
+ Buy: 1000
+ Weight: 2
+ Flags:
+ BuyingStore: true
+ - Id: 6145
+ AegisName: Vulcan_Bullet
+ Name: Vulcan Bullet
+ Type: Etc
+ Buy: 12
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6146
+ AegisName: Magic_Gear_Fuel
+ Name: Magic Gear Fuel
+ Type: Etc
+ Buy: 375
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6147
+ AegisName: Liquid_Condensed_Bullet
+ Name: Liquid Condensed Bullet
+ Type: Etc
+ Buy: 125
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6148
+ AegisName: Chocolate_Of_Eternity
+ Name: Eternity Of Chocolate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6149
+ AegisName: Plain_Chocolate
+ Name: Simple Chocolate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6150
+ AegisName: Key_Of_The_Mansion
+ Name: Key of The Mansion
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6151
+ AegisName: Peice_Of_Great_Bradium
+ Name: Giant Bradium Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6152
+ AegisName: Glittering_Crystal
+ Name: Glittering Crystal
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6153
+ AegisName: Special_Exchange_Coupon
+ Name: Special Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6154
+ AegisName: Broken_Horn_Pipe
+ Name: Broken Horn Pipe
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6155
+ AegisName: Coke_Membership_Card
+ Name: Member Card
+ Type: Etc
+ - Id: 6156
+ AegisName: Approval_Report
+ Name: Approval Report
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6157
+ AegisName: Poring_Ticket
+ Name: Poring Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6158
+ AegisName: Drops_Ticket
+ Name: Drops Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6159
+ AegisName: Poporing_Ticket
+ Name: Poporing Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6160
+ AegisName: Lunatic_Ticket
+ Name: Lunatic Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6161
+ AegisName: Picky_Ticket
+ Name: Picky Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6162
+ AegisName: Pecopeco_Ticket
+ Name: Peco Peco Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6163
+ AegisName: Savage_Baby_Ticket
+ Name: Savage Babe Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6164
+ AegisName: Spore_Ticket
+ Name: Spore Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6165
+ AegisName: Poison_Spore_Ticket
+ Name: Poison Spore Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6166
+ AegisName: Chonchon_Ticket
+ Name: Chonchon Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6167
+ AegisName: Steel_Chonchon_Ticket
+ Name: Steel Chonchon Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6168
+ AegisName: Petit_Ticket
+ Name: Sky Petite Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6169
+ AegisName: Deviruchi_Ticket
+ Name: Deviruchi Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6170
+ AegisName: Isis_Ticket
+ Name: Isis Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6171
+ AegisName: Smokie_Ticket
+ Name: Smokie Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6172
+ AegisName: Dokebi_Ticket
+ Name: Dokebi Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6173
+ AegisName: Desert_Wolf_B_Ticket
+ Name: Baby Desert Wolf Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6174
+ AegisName: Yoyo_Ticket
+ Name: Yoyo Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6175
+ AegisName: Sohee_Ticket
+ Name: Sohee Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6176
+ AegisName: Rocker_Ticket
+ Name: Rocker Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6177
+ AegisName: Hunter_Fly_Ticket
+ Name: Hunter Fly Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6178
+ AegisName: Orc_Warrior_Ticket
+ Name: Orc Warrior Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6179
+ AegisName: Bapho_Jr_Ticket
+ Name: Bapho Jr. Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6180
+ AegisName: Munak_Ticket
+ Name: Munak Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6181
+ AegisName: Bongun_Ticket
+ Name: Bongun Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6182
+ AegisName: Goblin_Ticket
+ Name: Christmas Goblin Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6183
+ AegisName: Hardtack_Ticket
+ Name: Rice Cake Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6184
+ AegisName: Zherlthsh_Ticket
+ Name: Zherlthsh Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6185
+ AegisName: Alice_Ticket
+ Name: Alice Exchange Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6186
+ AegisName: Monkey_Wrench
+ Name: Monkey Wrench
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6187
+ AegisName: Blank_Card
+ Name: Blank Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6188
+ AegisName: Slot_Coupon
+ Name: Slotting Advertisement
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6189
+ AegisName: Magic_Book_FB
+ Name: Old Spell Book (Fire Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6190
+ AegisName: Magic_Book_CB
+ Name: Old Spell Book (Cold Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6191
+ AegisName: Magic_Book_LB
+ Name: Old Spell Book (Lightening Bolt)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6192
+ AegisName: Magic_Book_SG
+ Name: Old Spell Book (Storm Gust)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6193
+ AegisName: Magic_Book_LOV
+ Name: Old Spell Book (Lord Of Vermilion)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6194
+ AegisName: Magic_Book_MS
+ Name: Old Spell Book (Meteor Storm)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6195
+ AegisName: Magic_Book_CM
+ Name: Old Spell Book (Comet)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6196
+ AegisName: Magic_Book_TV
+ Name: Old Spell Book (Tetra Vortex)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6197
+ AegisName: Magic_Book_TS
+ Name: Old Spell Book (Thunder Storm)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6198
+ AegisName: Magic_Book_JT
+ Name: Old Spell Book (Jupitel Thunder)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6199
+ AegisName: Magic_Book_WB
+ Name: Old Spell Book (Water Ball)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6200
+ AegisName: Magic_Book_HD
+ Name: Old Spell Book (Heaven's Drive)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6201
+ AegisName: Magic_Book_ES
+ Name: Old Spell Book (Earth Spike)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6202
+ AegisName: Magic_Book_ES_
+ Name: Old Spell Book (Earth Strain)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6203
+ AegisName: Magic_Book_CL
+ Name: Old Spell Book (Chain Lightning)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6204
+ AegisName: Magic_Book_CR
+ Name: Old Spell Book (Crimson Rock)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6205
+ AegisName: Magic_Book_DL
+ Name: Old Spell Book (Drain Life)
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6206
+ AegisName: I_Love_You
+ Name: I Love You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6207
+ AegisName: Thank_You
+ Name: Thank You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6208
+ AegisName: I_Respect_You
+ Name: I Respect You
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6209
+ AegisName: Glory_Of_Knights
+ Name: Knight's Honor
+ Type: Etc
+ - Id: 6210
+ AegisName: Seed_Of_Horny_Plant
+ Name: Seed Of Thorny Plant
+ Type: Etc
+ Buy: 600
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6211
+ AegisName: Bloodsuck_Plant_Seed
+ Name: Bloodsuck Plant Seed
+ Type: Etc
+ Buy: 800
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6212
+ AegisName: Bomb_Mushroom_Spore
+ Name: Bomb Mushroom Spore
+ Type: Etc
+ Buy: 1000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6213
+ AegisName: Explosive_Powder
+ Name: Explosive Powder
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6214
+ AegisName: Smoke_Powder
+ Name: Smoke Powder
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6215
+ AegisName: Tear_Gas
+ Name: Tear Gas
+ Type: Etc
+ Buy: 500
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6216
+ AegisName: Oil_Bottle
+ Name: Oil Bottle
+ Type: Etc
+ Buy: 1000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6217
+ AegisName: Mandragora_Flowerpot
+ Name: Mandragora Flowerpot
+ Type: Etc
+ Buy: 2000
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6218
+ AegisName: Disin_Delivery_Box
+ Name: Delivery Daishin Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6219
+ AegisName: Para_Team_Mark
+ Name: Eden Group Mark
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6220
+ AegisName: Mysterious_Dyestuff
+ Name: Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6221
+ AegisName: Mystic_Leaf_Cat_Ball
+ Name: Mystic Leaf Cat Ball
+ Type: Etc
+ - Id: 6222
+ AegisName: Shining_Beads
+ Name: Shining Beads
+ Type: Etc
+ Buy: 20
+ - Id: 6223
+ AegisName: Carnium
+ Name: Carnium
+ Type: Etc
+ Buy: 2000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 6224
+ AegisName: Bradium
+ Name: Bradium
+ Type: Etc
+ Buy: 2000
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ - Id: 6225
+ AegisName: HD_Carnium
+ Name: HD Carnium
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6226
+ AegisName: HD_Bradium
+ Name: HD Bradium
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6228
+ AegisName: Guarantee_Weapon_9Up
+ Name: +9 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6229
+ AegisName: Guarantee_Weapon_8Up
+ Name: +8 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6230
+ AegisName: Guarantee_Weapon_7Up
+ Name: +7 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6231
+ AegisName: Guarantee_Weapon_6Up
+ Name: +6 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6232
+ AegisName: Guarantee_Armor_9Up
+ Name: +9 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6233
+ AegisName: Guarantee_Armor_8Up
+ Name: +8 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6234
+ AegisName: Guarantee_Armor_7Up
+ Name: +7 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6235
+ AegisName: Guarantee_Armor_6Up
+ Name: +6 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6236
+ AegisName: Blue_Card_7
+ Name: Blue Card 7
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6237
+ AegisName: Guarana_Fruit
+ Name: Guarana Fruit
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6238
+ AegisName: Guarantee_Weapon_11Up
+ Name: +11 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6239
+ AegisName: Guarantee_Armor_11Up
+ Name: +11 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6240
+ AegisName: HD_Oridecon
+ Name: HD Oridecon
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6241
+ AegisName: HD_Elunium
+ Name: HD Elunium
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6242
+ AegisName: Midgard_Coin
+ Name: Midgard Coin
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ - Id: 6243
+ AegisName: Exchange_Coupon
+ Name: Exchange Coupon
+ Type: Etc
+ - Id: 6244
+ AegisName: Gun_Powder
+ Name: Gun Powder
+ Type: Etc
+ Buy: 10
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6245
+ AegisName: Black_Powder
+ Name: Black Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6246
+ AegisName: Yellow_Powder
+ Name: Yellow Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6247
+ AegisName: White_Powder
+ Name: White Powder
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6248
+ AegisName: Melange_Pot
+ Name: Melange Pot
+ Type: Etc
+ Buy: 600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6249
+ AegisName: Savage_Meat
+ Name: Savage Meat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6250
+ AegisName: Cooking_Skewer
+ Name: Cooking Skewer
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6251
+ AegisName: Black_Charcoal
+ Name: Black Charcoal
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6252
+ AegisName: Wolf_Blood
+ Name: Blood Of Wolf
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6253
+ AegisName: Cold_Ice
+ Name: Cold Ice
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6254
+ AegisName: Beef_Head_Meat
+ Name: Beef Head
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6255
+ AegisName: Large_Cookpot
+ Name: Large Cookpot
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6256
+ AegisName: Ice_Fragment
+ Name: Ice Piece
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6257
+ AegisName: Ice_Crystal
+ Name: Ice Crystal
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6258
+ AegisName: Comodo_Tropic_Fruit
+ Name: Comodo Tropical Fruit
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6259
+ AegisName: Drocera_Tentacle
+ Name: Drosera Tentacle
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6260
+ AegisName: Petti_Tail
+ Name: Petite's Tail
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6261
+ AegisName: Fine_Noodle
+ Name: Fine Noodles
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6262
+ AegisName: Cool_Gravy
+ Name: Cool Gravy
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6263
+ AegisName: Coconut_Fruit
+ Name: Coconut Fruit
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6264
+ AegisName: Melon
+ Name: Melon
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6265
+ AegisName: Pineapple
+ Name: Pineapple
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6266
+ AegisName: Cheat_Key
+ Name: Key Of Deception
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6267
+ AegisName: Virtual_Key
+ Name: Key Of Illusion
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6268
+ AegisName: Mirth_Key
+ Name: Key Of Gaiety
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6269
+ AegisName: Master_Brush
+ Name: A Master's Blush
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6270
+ AegisName: Mins_Picture
+ Name: A Picture Of Minstrel Song
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6271
+ AegisName: Mins_Receipt
+ Name: Receipt
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6272
+ AegisName: Experiment_Seed
+ Name: Experiment Seed
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6273
+ AegisName: Altered_Seed
+ Name: Seed For Experiment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6274
+ AegisName: Saint_Cloth_Piece
+ Name: A Piece Of Cloth Of A Saint
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6275
+ AegisName: King_Shield
+ Name: Shield Of King
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6276
+ AegisName: Clear_Reagent
+ Name: Clear Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6277
+ AegisName: Red_Reagent
+ Name: Red Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6278
+ AegisName: Black_Reagent
+ Name: Black Reagent
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6279
+ AegisName: Apple_Bomb_CB
+ Name: Apple Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6280
+ AegisName: Pinepple_Bomb_CB
+ Name: Pineapple Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6281
+ AegisName: Coconut_Bomb_CB
+ Name: Coconut Fruit Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6282
+ AegisName: Melon_Bomb_CB
+ Name: Melon Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6283
+ AegisName: Banana_Bomb_CB
+ Name: Banana Bomb Guidebook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6284
+ AegisName: Plant_Genetic_Grow
+ Name: How To Grow Plant Genes
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6285
+ AegisName: Quality_Potion_Book
+ Name: "Manual: How To Make High Quality Potion"
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6286
+ AegisName: F_Max_Weight_Up_Scroll
+ Name: F Max Weight Up Scroll
+ Type: Etc
+ Weight: 10
+ - Id: 6287
+ AegisName: F_Clothing_Dye_Coupon
+ Name: Omni Clothing Dye
+ Type: Etc
+ - Id: 6288
+ AegisName: F_Happy_Box
+ Name: F Happy Box
+ Type: Etc
+ Buy: 10
+ - Id: 6289
+ AegisName: F_Mysterious_Dyestuff
+ Name: F Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6290
+ AegisName: F_New_Style_Coupon
+ Name: F New Style Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 6291
+ AegisName: F_Enriched_Elunium
+ Name: F Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6292
+ AegisName: F_Enriched_Oridecon
+ Name: F Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6293
+ AegisName: F_Token_Of_Siegfried
+ Name: F Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6294
+ AegisName: F_Marriage_Covenant
+ Name: F Marriage Covenant
+ Type: Etc
+ Weight: 10
+ - Id: 6295
+ AegisName: F_Clothing_Dye_Coupon2
+ Name: F Clothing Dye Coupon2
+ Type: Etc
+ - Id: 6296
+ AegisName: RF_Taining_Notice
+ Name: Training Notice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6297
+ AegisName: Bottle_To_Throw
+ Name: Throwing Bottle
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6298
+ AegisName: Pumpkin_Head_Crushed
+ Name: Pumpkin Head Crushed
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6299
+ AegisName: Worn_Cloth_Piece
+ Name: Worn Cloth Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6300
+ AegisName: J_7Draw
+ Name: event
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6301
+ AegisName: J_Semi_Draw
+ Name: event
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6302
+ AegisName: GM_Handwriting
+ Name: GM Handwriting
+ Type: Etc
+ Buy: 20004
+ - Id: 6303
+ AegisName: Changed_Hydra_Ball
+ Name: Changed Hydra Ball
+ Type: Etc
+ - Id: 6304
+ AegisName: Sapa_Feat_Cert
+ Name: Proof Of Sapha's Honor
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6305
+ AegisName: Frozen_Skin_Piece
+ Name: Frozen Piece Of Skin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6306
+ AegisName: Solid_Bloodstain
+ Name: Hard Bloodstain
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6307
+ AegisName: Suspicious_Magic_Stone
+ Name: Cursed Magical Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6308
+ AegisName: Unidentified_Relic
+ Name: Unidentified Relic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6309
+ AegisName: E_Max_Weight_Up_Scroll
+ Name: E Max Weight Up Scroll
+ Type: Etc
+ Weight: 10
+ - Id: 6310
+ AegisName: E_Cloth_Dye_Coupon
+ Name: E Cloth Dye Coupon
+ Type: Etc
+ - Id: 6311
+ AegisName: E_Happy_Box
+ Name: E Happy Box
+ Type: Etc
+ Buy: 10
+ - Id: 6312
+ AegisName: E_Mysterious_Dyestuff
+ Name: E Mysterious Dyestuff
+ Type: Etc
+ Weight: 10
+ - Id: 6313
+ AegisName: E_New_Style_Coupon
+ Name: E New Style Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 6314
+ AegisName: E_Enriched_Elunium
+ Name: E Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6315
+ AegisName: E_Enriched_Oridecon
+ Name: E Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6316
+ AegisName: E_Token_Of_Siegfried
+ Name: E Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6317
+ AegisName: E_Marriage_Covenant
+ Name: E Marriage Covenant
+ Type: Etc
+ Weight: 10
+ - Id: 6318
+ AegisName: E_Cloth_Dye_Coupon2
+ Name: E Cloth Dye Coupon2
+ Type: Etc
+ - Id: 6319
+ AegisName: Small_Bradium
+ Name: Small Bradium
+ Type: Etc
+ Buy: 324
+ Weight: 10
+ - Id: 6320
+ AegisName: Premium_Reset_Stone
+ Name: Premium Reset Stone
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6321
+ AegisName: Rakehorn_Helm
+ Name: Rakehorn Helm
+ Type: Etc
+ Buy: 822
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6322
+ AegisName: Antler_Helm
+ Name: Antler Helmet
+ Type: Etc
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6323
+ AegisName: Twinhorn_Helm
+ Name: Two-Horned Helmet
+ Type: Etc
+ Buy: 728
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6324
+ AegisName: Singlehorn_Helm
+ Name: Single Horned Helmet
+ Type: Etc
+ Buy: 702
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6325
+ AegisName: White_Spider_Limb
+ Name: White Spider Limb
+ Type: Etc
+ Buy: 1004
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6326
+ AegisName: Queen_Wing_Piece
+ Name: Queen Wing Piece
+ Type: Etc
+ Buy: 1630
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6327
+ AegisName: Limited_High_Density_Bradium
+ Name: (Limited)High Density Bradium
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6328
+ AegisName: Calender_January
+ Name: Calender January
+ Type: Etc
+ Buy: 20
+ - Id: 6329
+ AegisName: Calender_February
+ Name: Calender February
+ Type: Etc
+ Buy: 20
+ - Id: 6330
+ AegisName: Calender_March
+ Name: Calender March
+ Type: Etc
+ Buy: 20
+ - Id: 6331
+ AegisName: Calender_April
+ Name: Calender April
+ Type: Etc
+ Buy: 20
+ - Id: 6332
+ AegisName: Calender_May
+ Name: Calender May
+ Type: Etc
+ Buy: 20
+ - Id: 6333
+ AegisName: Calender_June
+ Name: Calender June
+ Type: Etc
+ Buy: 20
+ - Id: 6334
+ AegisName: Calender_July
+ Name: Calender July
+ Type: Etc
+ Buy: 20
+ - Id: 6335
+ AegisName: Calender_August
+ Name: Calender August
+ Type: Etc
+ Buy: 20
+ - Id: 6336
+ AegisName: Calender_September
+ Name: Calender September
+ Type: Etc
+ Buy: 20
+ - Id: 6337
+ AegisName: Calender_October
+ Name: Calender October
+ Type: Etc
+ Buy: 20
+ - Id: 6338
+ AegisName: Calender_November
+ Name: Calender November
+ Type: Etc
+ Buy: 20
+ - Id: 6339
+ AegisName: Calender_December
+ Name: Calender December
+ Type: Etc
+ Buy: 20
+ - Id: 6340
+ AegisName: Fade_Notation_Green
+ Name: Fade Notation Green
+ Type: Etc
+ Weight: 10
+ - Id: 6341
+ AegisName: Fade_Notation_Red
+ Name: Fade Notation Red
+ Type: Etc
+ Weight: 10
+ - Id: 6342
+ AegisName: Fade_Notation_Purple
+ Name: Fade Notation Purple
+ Type: Etc
+ Weight: 10
+ - Id: 6343
+ AegisName: Fade_Notation_Blue
+ Name: Fade Notation Blue
+ Type: Etc
+ Weight: 10
+ - Id: 6344
+ AegisName: Muscle_Story
+ Name: Muscle Story
+ Type: Etc
+ - Id: 6345
+ AegisName: Love_Ball
+ Name: Love Lump
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6346
+ AegisName: Seagate_Mark
+ Name: Seagate Mark
+ Type: Etc
+ - Id: 6347
+ AegisName: Bless_Word_Paper1
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6348
+ AegisName: Bless_Word_Paper2
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6349
+ AegisName: Bless_Word_Paper3
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6350
+ AegisName: Bless_Word_Paper4
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6351
+ AegisName: Bless_Word_Paper5
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6352
+ AegisName: Bless_Word_Paper6
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6353
+ AegisName: Bless_Word_Paper7
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6354
+ AegisName: Bless_Word_Paper8
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6355
+ AegisName: Bless_Word_Paper9
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6356
+ AegisName: Bless_Word_Paper10
+ Name: Bless Word Paper
+ Type: Etc
+ Buy: 4020
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6357
+ AegisName: Fortune_Cookie_Fail
+ Name: Fortune Cookie Fail
+ Type: Etc
+ Buy: 4020
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6358
+ AegisName: Free_Cash_Coupon
+ Name: Free Cash Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6359
+ AegisName: Guidebook_Exchange
+ Name: Guidebook Exchange
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6360
+ AegisName: Scarlet_Pts
+ Name: Scarlet Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6361
+ AegisName: Indigo_Pts
+ Name: Indigo Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6362
+ AegisName: Yellow_Wish_Pts
+ Name: Yellow Wish Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6363
+ AegisName: Lime_Green_Pts
+ Name: Lime Green Point
+ Type: Etc
+ Buy: 100
+ Weight: 5
+ Flags:
+ BuyingStore: true
+ - Id: 6364
+ AegisName: Woe_Coin
+ Name: GvG Coin
+ Type: Etc
+ - Id: 6365
+ AegisName: Arena_Coin
+ Name: Arena Coin
+ Type: Etc
+ - Id: 6366
+ AegisName: Turbo_Track_Coin
+ Name: Turbo Track Coin
+ Type: Etc
+ - Id: 6367
+ AegisName: Kafra_Coin
+ Name: Kafra Coin
+ Type: Etc
+ - Id: 6368
+ AegisName: Endless_Coin
+ Name: Endless Tower Coin
+ Type: Etc
+ - Id: 6369
+ AegisName: Amatsu_Bead_A
+ Name: Amatsu Bead A
+ Type: Etc
+ - Id: 6370
+ AegisName: Amatsu_Bead_Ma
+ Name: Amatsu Bead Ma
+ Type: Etc
+ - Id: 6371
+ AegisName: Amatsu_Bead_Tsu
+ Name: Amatsu Bead Tsu
+ Type: Etc
+ - Id: 6372
+ AegisName: Amatsu_Bead_Jam
+ Name: Amatsu Bead Jam
+ Type: Etc
+ - Id: 6373
+ AegisName: Amatsu_Bead_Bo
+ Name: Amatsu Bead Bo
+ Type: Etc
+ - Id: 6374
+ AegisName: Amatsu_Bead_Ree
+ Name: Amatsu Bead Ree
+ Type: Etc
+ - Id: 6375
+ AegisName: Amatsu_Bead_!
+ Name: Amatsu Bead !
+ Type: Etc
+ - Id: 6376
+ AegisName: KVM_Badge
+ Name: KVM Badge
+ Type: Etc
+ - Id: 6377
+ AegisName: Buy_Market_Permit
+ Name: Buy Market Permit
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6378
+ AegisName: Winning_Mark
+ Name: Winning Mark
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6379
+ AegisName: Card_Coin
+ Name: Card Coin
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6380
+ AegisName: Mora_Coin
+ Name: Mora Coin
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6381
+ AegisName: Field_Shovel
+ Name: Field Shovel
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6382
+ AegisName: Urn
+ Name: Urn
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6383
+ AegisName: Clue_Of_Lope
+ Name: Lope's Clue
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6384
+ AegisName: Ring_Of_Lope
+ Name: Lope's Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6385
+ AegisName: Research_Tool_Bag
+ Name: Research Tool Bag
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6386
+ AegisName: Bathtub_R_Sample
+ Name: Bath Water Sample
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6387
+ AegisName: Teeth_Sample
+ Name: Teeth Sample
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6388
+ AegisName: Scale_Sample
+ Name: Scale Sample
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6389
+ AegisName: Puddle_R_Sample
+ Name: Sample Of Puddle Research
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6390
+ AegisName: Small_Pocket
+ Name: Small Pocket
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6391
+ AegisName: Splendid_Supply_Kit
+ Name: Splendid Supply Kit
+ Type: Etc
+ Buy: 20
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6392
+ AegisName: Bradium_Box
+ Name: Bradium Box
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6393
+ AegisName: Round_Feather
+ Name: Round Feather
+ Type: Etc
+ Buy: 525
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6394
+ AegisName: Golden_Feather
+ Name: Golden Feather
+ Type: Etc
+ Buy: 487
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6395
+ AegisName: Angel_Magic_Power
+ Name: Angel Magic Powder
+ Type: Etc
+ Buy: 615
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6396
+ AegisName: Auger_Of_Spirit
+ Name: Auger Of Spirit
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6397
+ AegisName: PR_Team_Ticket
+ Name: PR Team Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6398
+ AegisName: Develop_Team_Ticket
+ Name: Develop Team Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6399
+ AegisName: Marketing_Team_Ticket
+ Name: Marketing Team Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6400
+ AegisName: Operating_Team_Ticket
+ Name: Operating Team Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6401
+ AegisName: Palm_O
+ Name: Palm Oil
+ Type: Etc
+ Weight: 500
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6402
+ AegisName: Oil_Palm_F
+ Name: Palm Oil Fruit
+ Type: Etc
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6403
+ AegisName: Comodo_L
+ Name: Comodo Leather
+ Type: Etc
+ Buy: 5
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6404
+ AegisName: Caress_H
+ Name: Keris Hilt
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6405
+ AegisName: Cendrawasih_F
+ Name: Cendrawasih Feather
+ Type: Etc
+ Buy: 3
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6406
+ AegisName: Cendrawasih_SF
+ Name: Shining Cendrawasih Feather
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6407
+ AegisName: Sang_Stone_Fragment
+ Name: Raw Crystal Stone Fragment
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6408
+ AegisName: Sang_Stone
+ Name: Raw Crystal Stone
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6409
+ AegisName: Sang_Stone_Mass
+ Name: Raw Crystal Stone Mass
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6410
+ AegisName: Idul_Fitri_Card
+ Name: Idul Fitri Card
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6411
+ AegisName: Ripe_Watermelon
+ Name: Ripe Watermelon
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6412
+ AegisName: Special_Medal
+ Name: Special Medal
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6413
+ AegisName: New_Insurance
+ Name: New Insurance
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6414
+ AegisName: Raganta_Card
+ Name: Ragunta Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6415
+ AegisName: Strange_Embryo
+ Name: Strange Embryo
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6416
+ AegisName: Pet_Exchange
+ Name: Pet Exchange
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6417
+ AegisName: Silvervine
+ Name: Silvervine Fruit
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6418
+ AegisName: Agrade_Coin
+ Name: A Grade Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6419
+ AegisName: Bgrade_Coin
+ Name: B Grade Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6420
+ AegisName: Cgrade_Coin
+ Name: C Grade Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6421
+ AegisName: Dgrade_Coin
+ Name: D Grade Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6422
+ AegisName: Egrade_Coin
+ Name: E Grade Coin
+ Type: Etc
+ Buy: 20
+ - Id: 6423
+ AegisName: Anger_Seagod
+ Name: Sea God's Wrath
+ Type: Etc
+ Buy: 20
+ Flags:
+ BuyingStore: true
+ - Id: 6424
+ AegisName: Halloween_Fragment
+ Name: Spirit Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6425
+ AegisName: Halloween_Certificate
+ Name: Halloween Certificate
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6426
+ AegisName: Bad_Can
+ Name: Bad Canned Food
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6427
+ AegisName: Bad_Can_Sack
+ Name: Bad Canned Food Sack
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6428
+ AegisName: Bravery_Card_A
+ Name: Adventure Card A
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6429
+ AegisName: Bravery_Card_B
+ Name: Adventure Card B
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6430
+ AegisName: Picture_Piece
+ Name: Picture Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6431
+ AegisName: Bucket
+ Name: Pail
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6432
+ AegisName: Full_Bucket
+ Name: Full Pail
+ Type: Etc
+ Weight: 3000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6433
+ AegisName: Clean_Brush
+ Name: Cleaning Brush
+ Type: Etc
+ Weight: 300
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6434
+ AegisName: Fix_Kit
+ Name: Fix Kit
+ Type: Etc
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6435
+ AegisName: Fresh_Fruit
+ Name: Fresh Fruit
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6436
+ AegisName: Ptotection_Seagod
+ Name: Sea God's Call
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6437
+ AegisName: Scaraba_Perfume
+ Name: Scaraba Perfume
+ Type: Etc
+ - Id: 6438
+ AegisName: Unbreakable_Weap
+ Name: Unbreakable Weapon
+ Type: Etc
+ Weight: 10
+ - Id: 6439
+ AegisName: Unbreakable_Def
+ Name: Unbreakable Armor
+ Type: Etc
+ Weight: 10
+ - Id: 6440
+ AegisName: General_Lubricant
+ Name: General Lubrication
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6441
+ AegisName: High_RankLubricant
+ Name: Advanced Lubrication
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6442
+ AegisName: Octopus_Hunt_Stick
+ Name: Octopus Hunting Skewer
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6443
+ AegisName: Sillit_Pong_Bottle
+ Name: Sillit Pong Bottle
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6444
+ AegisName: Emperium_G
+ Name: Emperium G
+ Type: Etc
+ Buy: 2
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6445
+ AegisName: Blue_Card_X
+ Name: Blue Card X
+ Type: Etc
+ Weight: 10
+ - Id: 6446
+ AegisName: Green_Paper
+ Name: Green Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6447
+ AegisName: Red_Paper
+ Name: Red Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6448
+ AegisName: White_Paper
+ Name: White Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6449
+ AegisName: Casual_Diary
+ Name: Casual Diary
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6450
+ AegisName: Honest_Diary
+ Name: Honest Diary
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6451
+ AegisName: Unknown_Fish
+ Name: Unknown Fish
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6452
+ AegisName: Etoile_Ring
+ Name: Etoile Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6453
+ AegisName: Undelivered_Gift
+ Name: Undelivered Gift
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6454
+ AegisName: Santa_Bag
+ Name: Santa Bag
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 6455
+ AegisName: Tiny_Ticket
+ Name: Tiny Ticket
+ Type: Etc
+ Buy: 20
+ - Id: 6456
+ AegisName: Guarantee_Weapon_5Up
+ Name: +5 Weapon Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6457
+ AegisName: Guarantee_Armor_5Up
+ Name: +5 Armor Refine Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6459
+ AegisName: Jae_Sinho_Unpo
+ Name: Jae Sinho Unpo
+ Type: Etc
+ - Id: 6460
+ AegisName: Jae_Sinho_Undo
+ Name: Jae Sinho Undo
+ Type: Etc
+ - Id: 6461
+ AegisName: Mimong_Sungjin
+ Name: Mimong Sungjin
+ Type: Etc
+ - Id: 6462
+ AegisName: Gilsang_Yeoui
+ Name: Gilsang Yeoui
+ Type: Etc
+ - Id: 6463
+ AegisName: Sin_Sun_Jeonsul
+ Name: Sin Sun Jeonsul
+ Type: Etc
+ - Id: 6464
+ AegisName: Hate_Bundle
+ Name: Hate Crate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6465
+ AegisName: Guard_Coin
+ Name: Guard Coin
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6466
+ AegisName: Clean_Water
+ Name: Clean Water
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6467
+ AegisName: Perfume
+ Name: Perfume
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6468
+ AegisName: Thai_Perfume
+ Name: Thai Perfume
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6469
+ AegisName: Will_Of_Warrior
+ Name: Warrior's Will
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6470
+ AegisName: Blood_Thirst
+ Name: Blood Thirst
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6471
+ AegisName: Goast_Chill
+ Name: Chills Of Death
+ Type: Etc
+ Buy: 1600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6472
+ AegisName: Holy_Mom_Blaze
+ Name: Holy Mom Blaze
+ Type: Etc
+ - Id: 6473
+ AegisName: Amatsu_Orb01
+ Name: Amatsu Orb01
+ Type: Etc
+ - Id: 6474
+ AegisName: Amatsu_Orb02
+ Name: Amatsu Orb02
+ Type: Etc
+ - Id: 6475
+ AegisName: Amatsu_Orb03
+ Name: Amatsu Orb03
+ Type: Etc
+ - Id: 6476
+ AegisName: Amatsu_Orb04
+ Name: Amatsu Orb04
+ Type: Etc
+ - Id: 6477
+ AegisName: Amatsu_Orb05
+ Name: Amatsu Orb05
+ Type: Etc
+ - Id: 6478
+ AegisName: Amatsu_Orb06
+ Name: Amatsu Orb06
+ Type: Etc
+ - Id: 6479
+ AegisName: Amatsu_Orb07
+ Name: Amatsu Orb07
+ Type: Etc
+ - Id: 6480
+ AegisName: Event_coin
+ Name: Poring Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6481
+ AegisName: Holy_Rock_Piece
+ Name: Holy Rock Piece
+ Type: Etc
+ - Id: 6482
+ AegisName: Ancient_City_Key
+ Name: Ancient City Key
+ Type: Etc
+ - Id: 6483
+ AegisName: Dream_Scroll
+ Name: Dream Scroll
+ Type: Etc
+ - Id: 6484
+ AegisName: Enchant_Book
+ Name: Enchant Book
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6485
+ AegisName: BlueCard_2
+ Name: Blue 2 Card
+ Type: Etc
+ Weight: 10
+ - Id: 6486
+ AegisName: BlueCard_0
+ Name: Blue 0 Card
+ Type: Etc
+ Weight: 10
+ - Id: 6487
+ AegisName: BlueCard_1
+ Name: Blue 1 Card
+ Type: Etc
+ Weight: 10
+ - Id: 6488
+ AegisName: Thanks_Invest_Ticket
+ Name: Thanks Invest Ticket
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6489
+ AegisName: Cats_Invest_Certif
+ Name: Cats Invest Certificate
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6490
+ AegisName: Magic_Clay_Fragment
+ Name: Magic Clay Fragment
+ Type: Etc
+ Weight: 10
+ - Id: 6491
+ AegisName: Magic_Clay
+ Name: Magic Clay
+ Type: Etc
+ Weight: 10
+ - Id: 6492
+ AegisName: Magic_Clay_Lump
+ Name: Magic Clay Lump
+ Type: Etc
+ Weight: 10
+ - Id: 6493
+ AegisName: Makibishi
+ Name: Makibishi
+ Type: Etc
+ Buy: 30
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6494
+ AegisName: Kafra_Coin2
+ Name: Kafra Coin
+ Type: Etc
+ - Id: 6495
+ AegisName: Para_Logro_Badge
+ Name: Eden Merit Badge
+ Type: Etc
+ - Id: 6496
+ AegisName: Tikbalang_Thick_Spine
+ Name: Tikbalang's Thick Spine
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6497
+ AegisName: Lesser_Agimat
+ Name: Lesser Agimat
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 6498
+ AegisName: Jejellopy
+ Name: Jejellopy
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6499
+ AegisName: Ancient_Grudge
+ Name: Ancient Grudge
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6500
+ AegisName: Sharp_Bamboo
+ Name: Sharpened Bamboo
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6501
+ AegisName: Salt_Bag
+ Name: Salt Bag
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6502
+ AegisName: Silver_Cross
+ Name: The Cross
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6503
+ AegisName: Soul_Protection
+ Name: Spiritual Protection
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6504
+ AegisName: Cast_Iron_Caldron
+ Name: Cast-Iron Caldron
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6505
+ AegisName: Purified_Bone
+ Name: Purified Spirit Bone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6506
+ AegisName: Memorial_Bouquet
+ Name: Offering Bouquet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6507
+ AegisName: Evil_Bone
+ Name: Evil Spirit Bone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6508
+ AegisName: Silver_Bracelet
+ Name: Silver Bracelet
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6509
+ AegisName: Mysterious_Flower
+ Name: Mysterious Flower
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6510
+ AegisName: Elegant_Flower
+ Name: Elegant Flower
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6511
+ AegisName: Beautiful_Flower
+ Name: Beautiful Flower
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6512
+ AegisName: Charm_Fire
+ Name: Fire Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6513
+ AegisName: Charm_Ice
+ Name: Ice Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6514
+ AegisName: Charm_Wind
+ Name: Wind Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6515
+ AegisName: Charm_Earth
+ Name: Earth Amulet
+ Type: Etc
+ Buy: 100
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6516
+ AegisName: Bakonawa_Doll
+ Name: Bakonawa Doll
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6517
+ AegisName: Bangungot_Doll
+ Name: Bangungot Doll
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6518
+ AegisName: Buwaya_Doll
+ Name: Buwaya Doll
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6519
+ AegisName: Collected_Samples
+ Name: Collected Sample
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6520
+ AegisName: Lost_Belongings
+ Name: Lost Belongings
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6521
+ AegisName: Royal_Certificate
+ Name: Royal Certificate
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6522
+ AegisName: Royal_Certificate_
+ Name: Royal Certificate
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6523
+ AegisName: Bakonawa_Spirit_Piece
+ Name: Piece of Bakonawa's Spirit
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6524
+ AegisName: Bangungot_Spirit_Piece
+ Name: Piece of Bangungot's Spirit
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6525
+ AegisName: Buwaya_Spirit_Piece
+ Name: Piece of Buwaya's Spirit
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6526
+ AegisName: BlueCard_Happy
+ Name: BlueCard Happy
+ Type: Etc
+ Weight: 10
+ - Id: 6527
+ AegisName: BlueCard_Enjoy
+ Name: BlueCard Enjoy
+ Type: Etc
+ Weight: 10
+ - Id: 6528
+ AegisName: BlueCard_Light
+ Name: BlueCard Light
+ Type: Etc
+ Weight: 10
+ - Id: 6529
+ AegisName: BlueCard_Mid
+ Name: BlueCard Mid
+ Type: Etc
+ Weight: 10
+ - Id: 6530
+ AegisName: BlueCard_Fall
+ Name: BlueCard Fall
+ Type: Etc
+ Weight: 10
+ - Id: 6531
+ AegisName: Royal_Certificate__
+ Name: Royal Certificate
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6532
+ AegisName: Honey_Songpyun
+ Name: Honey Songpyun
+ Type: Etc
+ Weight: 10
+ - Id: 6533
+ AegisName: Torn_Document
+ Name: Torn Document
+ Type: Etc
+ Buy: 2
+ Weight: 500
+ - Id: 6534
+ AegisName: Fruit_Sundae
+ Name: Fruit Sundae
+ Type: Etc
+ Buy: 2
+ Weight: 50
+ - Id: 6535
+ AegisName: Red_Cloth
+ Name: Red Cloth
+ Type: Etc
+ Weight: 10
+ - Id: 6536
+ AegisName: Star_Decor
+ Name: Star Decor
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6537
+ AegisName: Sky_Medal
+ Name: Sky Medal
+ Type: Etc
+ Buy: 20
+ - Id: 6538
+ AegisName: Real_Blank_Card
+ Name: Real Blank Card
+ Type: Etc
+ Buy: 20
+ - Id: 6539
+ AegisName: Old_Left_Lapine
+ Name: Old Left Lapine
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6540
+ AegisName: Golden_Leaf
+ Name: Golden Leaf
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6541
+ AegisName: Avant_Research_Data
+ Name: Avant Research Data
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6542
+ AegisName: Star_Shape_Mushroom
+ Name: Star Shape Mushroom
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6543
+ AegisName: Lv110_Achieved_Coin
+ Name: Lv110 Achieved Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6544
+ AegisName: Lv120_Achieved_Coin
+ Name: Lv120 Achieved Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6545
+ AegisName: Firm_Hair
+ Name: Firm Hair
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6546
+ AegisName: Younger_Bro_Letter
+ Name: Younger Bro Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6547
+ AegisName: Stained_Research_Book
+ Name: Stained Research Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6548
+ AegisName: Piece_Of_Lapine_Wing
+ Name: Piece Of Lapine Wing
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6549
+ AegisName: Courtesy_Ticket
+ Name: Courtesy Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6550
+ AegisName: Brownie_Ticket
+ Name: Brownie Ticket
+ Type: Etc
+ Buy: 20
+ - Id: 6551
+ AegisName: RWC_Spirit_Auger
+ Name: RWC Spirit Auger
+ Type: Etc
+ Weight: 10
+ - Id: 6552
+ AegisName: Mail_Package
+ Name: Mail Package
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6553
+ AegisName: Leaf_Made_Wood
+ Name: Leaf Made Wood
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6554
+ AegisName: Seed_Box
+ Name: Seed Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6555
+ AegisName: Birthday_Candle
+ Name: Birthday Candle
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6556
+ AegisName: Nespresso_Ticket
+ Name: Nespresso Ticket
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6557
+ AegisName: Fancy_Fairy_Wing
+ Name: Fancy Fairy Wing
+ Type: Etc
+ Buy: 2350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6558
+ AegisName: Pile_Of_Acorn
+ Name: Pile Of Acorn
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6559
+ AegisName: Eye_Drops
+ Name: Eye Drops
+ Type: Etc
+ Buy: 1780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6560
+ AegisName: Leaf_Bookmark
+ Name: Leaf Bookmark
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6561
+ AegisName: Dustball
+ Name: Dustball
+ Type: Etc
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6562
+ AegisName: Tiny_Mouse_Tail
+ Name: Tiny Mouse Tail
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6563
+ AegisName: Weeds
+ Name: Weeds
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6564
+ AegisName: Captive_Hatchling
+ Name: Captive Hatchling
+ Type: Etc
+ Weight: 10
+ - Id: 6565
+ AegisName: Racy_Spice
+ Name: Racy Spice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6566
+ AegisName: Cacao99_Recipe
+ Name: Cacao99 Recipe
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6567
+ AegisName: Choco_Drink_Recipe
+ Name: Choco Drink Recipe
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6581
+ AegisName: Holy_Amulet
+ Name: Holy Amulet
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6583
+ 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
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6593
+ AegisName: Cryptura_Hair_Coupon
+ Name: Cryptura Hair Coupon
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6594
+ AegisName: Magic_Bronze_Bullion
+ Name: Magic Bronze Bullion
+ Type: Etc
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 6595
+ AegisName: Hammer_Of_Velund
+ Name: Hammer Of Velund
+ Type: Etc
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 6596
+ AegisName: Anvil_Of_Velund
+ Name: Anvil Of Velund
+ Type: Etc
+ Weight: 2000
+ Flags:
+ BuyingStore: true
+ - Id: 6597
+ AegisName: Bracelet_Of_Velund
+ Name: Bracelet Of Velund
+ Type: Etc
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 6598
+ AegisName: Rib_Of_Jormungand
+ Name: Rib Of Jormungand
+ Type: Etc
+ Weight: 10000
+ Flags:
+ BuyingStore: true
+ - Id: 6599
+ AegisName: Spirit_Of_Hugin
+ Name: Spirit Of Hugin
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6600
+ AegisName: Spirit_Of_Munin
+ Name: Spirit Of Munin
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6601
+ AegisName: Chisel_Of_Giant
+ Name: Chisel Of Giant
+ Type: Etc
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 6602
+ AegisName: Secret_Of_Rune
+ Name: Secret Of Rune
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6603
+ AegisName: Skin_Of_Hraesvelg
+ Name: Skin Of Hraesvelg
+ Type: Etc
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 6604
+ AegisName: Essence_Rune_Magic
+ Name: Essence Rune Magic
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6605
+ AegisName: Muspellium
+ Name: Muspellium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6606
+ AegisName: P_Cart_C
+ Name: Cute Cart Remodel Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 6607
+ AegisName: Temporal_Crystal
+ Name: Temporal Crystal
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6608
+ AegisName: Coagulated_Spell
+ Name: Coagulated Spell
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6609
+ AegisName: Glast_Decayed_Nail
+ Name: Glast Decayed Nail
+ Type: Etc
+ Buy: 2800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6610
+ AegisName: Glast_Horrendous_Mouth
+ Name: Glast Horrendous Mouth
+ Type: Etc
+ Buy: 3200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6611
+ AegisName: Colorful_Key
+ Name: Colorful Key
+ Type: Etc
+ Buy: 50000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6612
+ AegisName: Gold_Coin_Basket
+ Name: Gold Coin Basket
+ Type: Etc
+ Buy: 300000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 6613
+ AegisName: Colorful_Brooch
+ Name: Colorful Brooch
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6615
+ AegisName: Siege_Guild_Coin
+ Name: Siege Guild Coin
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6616
+ AegisName: Lmtd_Manny_Card
+ Name: Limited Manny Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6617
+ AegisName: Lmtd_Sid_Card
+ Name: Limited Sid Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6618
+ AegisName: Lmtd_Diego_Card
+ Name: Limited Diego Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6619
+ AegisName: Lmtd_Scrat_Card
+ Name: Limited Scrat Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6623
+ AegisName: Rough_Energy_Crystal
+ Name: Rough Energy Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 6624
+ AegisName: Purified_Energy_Crystal
+ Name: Purified Energy Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 6625
+ AegisName: High_Purity_Energy_Xtal
+ Name: High Energy Crystal
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6635
+ AegisName: Blacksmith_Blessing
+ Name: Blacksmith Blessing
+ Type: Etc
+ Buy: 20
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 6636
+ AegisName: STRStone_Top
+ Name: STR Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6637
+ AegisName: INTStone_Top
+ Name: INT Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6638
+ AegisName: AGIStone_Top
+ Name: AGI Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6639
+ AegisName: DEXStone_Top
+ Name: DEX Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6640
+ AegisName: VITStone_Top
+ Name: VIT Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6641
+ AegisName: LUKStone_Top
+ Name: LUK Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6642
+ AegisName: ATKStone_Middle
+ Name: ATK Stone (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6643
+ AegisName: MATKStone_Middle
+ Name: MATK Stone (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6644
+ AegisName: HITStone_Bottom
+ Name: HIT Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6645
+ AegisName: FLEEStone_Bottom
+ Name: FLEE Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6646
+ AegisName: Poring_Badge
+ Name: Poring Badge
+ Type: Etc
+ - Id: 6648
+ AegisName: Shabby_Crown
+ Name: Old Crown
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6649
+ AegisName: Broken_Horn
+ Name: Broken Horn
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6650
+ AegisName: Shabby_Ring
+ Name: Old Ring
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6651
+ AegisName: Rusty_Bracelet
+ Name: Rusty Bracalet
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6652
+ AegisName: Old_Photo_Album
+ Name: Old Photo Album
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6653
+ AegisName: Shabby_Pill
+ Name: Old Pill
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6654
+ AegisName: Needle_And_Thread
+ Name: Needle And Thread
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6655
+ AegisName: Firm_Pumpkin
+ Name: Firm Pumpkin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6656
+ AegisName: Goast_Free_Charm
+ Name: Goast Free Charm
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6657
+ AegisName: Memory_Of_Jack
+ Name: Memory Of Jack
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6658
+ AegisName: Halloween_Coin
+ Name: Halloween Coin
+ Type: Etc
+ - Id: 6665
+ AegisName: RWC_Inicializer
+ Name: RWC Inicializer
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 6669
+ AegisName: Jade_Leaf
+ Name: Emerald Leaf
+ Type: Etc
+ Weight: 10
+ - Id: 6671
+ AegisName: Geffen_Coin_Magic_Tournament
+ Name: Geffen Coin Magic Tournament
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6672
+ AegisName: Shard_of_Gray
+ Name: Shard of Gray
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6673
+ AegisName: Bossnia_Tickets
+ Name: Bossnia Tickets
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6674
+ AegisName: GM_Coin
+ Name: GM Coin
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6681
+ AegisName: XMAS_Cookie
+ Name: Christmas Cookie
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6682
+ AegisName: Bag_Of_Selling_Goods
+ Name: Bag Of Selling Goods
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6683
+ AegisName: Dried_Flower
+ Name: Dried Flower
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6684
+ AegisName: TokenOfHero
+ Name: Token Of Hero
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6685
+ AegisName: Morocc_Certification
+ Name: Morocc Certification
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6686
+ AegisName: Brick
+ Name: Brick
+ Type: Etc
+ Buy: 10
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6687
+ AegisName: Rope__
+ Name: Rope
+ Type: Etc
+ Buy: 10
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6688
+ AegisName: Wood_
+ Name: Wood
+ Type: Etc
+ Buy: 10
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6689
+ AegisName: BurningSkin
+ Name: Burning Bug Skin
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6690
+ AegisName: YummyStem
+ Name: Yummy Stem
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6691
+ AegisName: BurningFeather
+ Name: Burning Feather
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6692
+ AegisName: PatrolLog
+ Name: Patrol Log
+ Type: Etc
+ Buy: 10
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 6693
+ AegisName: Stone_Of_Blessing
+ Name: Stone Of Blessing
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6694
+ AegisName: Monster_Blood
+ Name: Monster Blood
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6695
+ AegisName: ToothOfFlameGolem
+ Name: Golem's Fiery Stone Tooth
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6696
+ AegisName: ToothOfFlameFrilldora
+ Name: Frilldora's Fiery Nape
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6697
+ AegisName: Costumes_Exchange_Coupons
+ Name: Costumes Exchange Coupons
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6698
+ AegisName: Wooden_Axe
+ Name: Wooden Axe
+ Type: Etc
+ Buy: 10
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6699
+ AegisName: Faith_Silence
+ Name: Faith Silence
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6700
+ AegisName: White_Snake_Scale
+ Name: White Snake Scale
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6701
+ AegisName: Treasure_Dwarf
+ Name: Treasure Dwarf
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6702
+ AegisName: Sweat_Dwarf
+ Name: Sweat Dwarf
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6703
+ AegisName: Warrior_Tears
+ Name: Warrior Tears
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6704
+ AegisName: Warrior_Anger
+ Name: Warrior Anger
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6705
+ AegisName: Warrior_Certificate
+ Name: Warrior Certificate
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6706
+ AegisName: Guardian_Flowers
+ Name: Guardian Flowers
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6707
+ AegisName: Jeremy_Beauty_Coupon
+ Name: Jeremy Beauty Coupon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6708
+ AegisName: Mana_crystal
+ Name: Mana Crystal
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6709
+ AegisName: Crisp_Silk
+ Name: Crisp Silk
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6710
+ AegisName: Tied_Snake
+ Name: Tied Snake
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6712
+ AegisName: Lovely_Stick
+ Name: Lovely Stick
+ Type: Etc
+ - Id: 6713
+ AegisName: Heart_of_Soul
+ Name: Heart of Soul
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6714
+ AegisName: Sheenas_Soul
+ Name: Sheena's Soul
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6715
+ AegisName: P_Of_Evil_Soul
+ Name: Darklord Soulpiece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6716
+ AegisName: Cri_Stone
+ Name: CRI Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6717
+ AegisName: MaxHP_Stone
+ Name: Stamina Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6718
+ AegisName: MaxSP_Stone
+ Name: Magic Stone (Lower)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6719
+ AegisName: Jitterbug's_Tooth
+ Name: Jitterbug's Tooth
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6722
+ AegisName: Delicious_Clam_Flesh
+ Name: Delicious Clam Flesh
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6723
+ AegisName: Delicious_Canned_Food
+ Name: Delicious Canned Food
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6724
+ AegisName: Savage_Box
+ Name: Savage Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6725
+ AegisName: Grand_Peco_Box
+ Name: Grand Peco Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6726
+ AegisName: Desert_Wolf_Box
+ Name: Desert Wolf Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6727
+ AegisName: Arranged_Photo_Album
+ Name: Arranged Photo Album
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6732
+ AegisName: Monster_Coin
+ Name: Monster Coin
+ Type: Etc
+ Buy: 10
+ - Id: 6733
+ AegisName: Tingly_Feather
+ Name: Tingly Feather
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6734
+ AegisName: Unknown_Meal
+ Name: Unknown Meal
+ Type: Etc
+ - Id: 6735
+ AegisName: Special_Condiment
+ Name: Special Condiment
+ Type: Etc
+ Weight: 20
+ - Id: 6736
+ AegisName: Minced_Meat
+ Name: Minced Meat
+ Type: Etc
+ Weight: 20
+ - Id: 6737
+ AegisName: Fermented_Wheat_Flour
+ Name: Fermented Wheat Flour
+ Type: Etc
+ Weight: 20
+ - Id: 6738
+ AegisName: Rissole
+ Name: Rissole
+ Type: Etc
+ - Id: 6739
+ AegisName: Recipe
+ Name: Recipe
+ Type: Etc
+ - Id: 6740
+ AegisName: HealStone_Top
+ Name: Recovery Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6741
+ AegisName: HealStone2_Top
+ Name: Recovery Skill Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6742
+ AegisName: HealStone_Middle
+ Name: Recovery Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6743
+ AegisName: HPStone_Middle
+ Name: HP Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6744
+ AegisName: SPStone_Middle
+ Name: SP Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6745
+ AegisName: HealStone_Bottom
+ Name: Recovery Stone (Low)
+ Type: Card
+ Buy: 20
+ Weight: 100
+ - Id: 6746
+ AegisName: Iron_Artifacts
+ Name: Steel Artifact
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6747
+ AegisName: Iron_Artifacts_
+ Name: Steel Artifact
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6748
+ AegisName: Excavator_Repoet
+ Name: Daily Report He And His Team
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6749
+ AegisName: Power_Control_Device
+ Name: Operation Control Device
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6750
+ AegisName: Failed_Engine
+ Name: Failed Engine
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6751
+ AegisName: Crushed_Can_Iron_Plate
+ Name: Crushed Can Iron Plate
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6752
+ AegisName: Charleston_Parts
+ Name: Charleston Parts
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6753
+ AegisName: Sign_Of_Destruction
+ Name: Token Of Destruction
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6754
+ AegisName: Collected_Herb
+ Name: Collected Medicinal Herbs
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6755
+ AegisName: Contaminated_Magic
+ Name: Contaminated Magic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6756
+ AegisName: Condensed_Energy
+ Name: Cohesive Energy
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6757
+ AegisName: Memory_Record
+ Name: The Memory Recorder
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6762
+ AegisName: Banana_Can
+ Name: Banana Can
+ Type: Etc
+ Weight: 10
+ - Id: 6763
+ AegisName: Spicy_Rice_Cake
+ Name: Spicy Rice Cake
+ Type: Etc
+ Weight: 10
+ - Id: 6764
+ AegisName: Hotdog
+ Name: Hot Dog
+ Type: Etc
+ Weight: 10
+ - Id: 6765
+ AegisName: Big_Wheel_Cracker
+ Name: Ferris Wheel Biscuit
+ Type: Etc
+ Weight: 10
+ - Id: 6766
+ AegisName: Ice_World_Ticket
+ Name: Tickets Ice Kingdom
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6767
+ AegisName: Summer_Fes_Coin
+ Name: Summer Festival Coins
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6768
+ AegisName: Red_Beans_Of_Ice
+ Name: Shaved Ice For Red Beans
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6769
+ AegisName: Sweet_Rice_Cake
+ Name: Sweet Bread
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6770
+ AegisName: Shark
+ Name: Shark
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6771
+ AegisName: Bluefin_Tuna
+ Name: Bonito
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6772
+ AegisName: Octopus
+ Name: Octopus
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6773
+ AegisName: Snapper
+ Name: Sea Bream
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6774
+ AegisName: Piranha
+ Name: Piranha
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6775
+ AegisName: Salmon
+ Name: Salmon
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6776
+ AegisName: Eels
+ Name: Eel
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6777
+ AegisName: Carp
+ Name: Carp
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6778
+ AegisName: Squid_2
+ Name: Squid
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6779
+ AegisName: Mackerel
+ Name: Mackerel
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6780
+ AegisName: Crucian_Carp
+ Name: Crucian Carp
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6781
+ AegisName: Living_Earthworm
+ Name: Earthworms Alive
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6782
+ AegisName: Fresh_Lobster
+ Name: Fresh Shrimp
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6784
+ AegisName: Squid_Skewer
+ Name: Squid Skewer
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6785
+ AegisName: Fantastic_Sauce
+ Name: Source Of Fantasy
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6786
+ AegisName: Squid_Of_Bbq
+ Name: Squid Barbecue
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6787
+ AegisName: Good_Firewood
+ Name: Long Firewood
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6788
+ AegisName: Rose_Knife
+ Name: Rose Knife
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6789
+ AegisName: Custom_Pan
+ Name: Customized Plates
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6790
+ AegisName: BigStone_Top
+ Name: Large Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6791
+ AegisName: MediumStone_Top
+ Name: Medium Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6792
+ AegisName: SmallStone_Top
+ Name: Small Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6795
+ AegisName: Ticket_Special_RO2
+ Name: Ticket Special RO2
+ Type: Etc
+ Buy: 10
+ - Id: 6796
+ AegisName: RO2_Name_Card
+ Name: RO2 Name Card
+ Type: Etc
+ Buy: 10
+ - Id: 6797
+ AegisName: 11th_Coin
+ Name: 11th Anniversary Coin
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 6803
+ AegisName: Fragments_Of_Gigan
+ Name: Fragments Of Gigan
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6804
+ AegisName: ORGANIC_PUMPKIN
+ Name: Organic Pumpkin
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6805
+ AegisName: INORGANIC_PUMPKIN
+ Name: Inorganic Pumpkin
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 6813
+ AegisName: Kafra_Ticket
+ Name: Kafra Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 6814
+ AegisName: Swordman_Soul
+ Name: Swordman Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6815
+ AegisName: Merchant_Soul
+ Name: Merchant Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6816
+ AegisName: Thief_Soul
+ Name: Thief Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6817
+ AegisName: Mage_Soul
+ Name: Mage Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6818
+ AegisName: Archer_Soul
+ Name: Archer Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6819
+ AegisName: Acolyte_Soul
+ Name: Acolyte Soul
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6820
+ AegisName: Particles_Of_Energy
+ Name: Energy Fragment
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6821
+ AegisName: Solo_Troops_Badge
+ Name: Single Union Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6824
+ AegisName: Lab_Memory_Record
+ Name: Experimental Dong Memory Record
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6825
+ AegisName: Air_Cleaner_Box
+ Name: Air Cleaner Box
+ Type: Etc
+ Buy: 10
+ Weight: 10000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6826
+ AegisName: Fresh_Grapes
+ Name: Fresh Grapes
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6827
+ AegisName: Normal_Parts
+ Name: Complete Machine Parts
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6828
+ AegisName: Gravity_Parts
+ Name: Gravity Safety Device
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6832
+ AegisName: Questioned_Parts
+ Name: Questioned Parts
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6833
+ AegisName: Limited_Token_of_Ziegfried
+ Name: (Limited) Token of Ziegfried
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6834
+ AegisName: Legendary_Fur
+ Name: Legendary Fur
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6835
+ AegisName: Legendary_Mane
+ Name: Legendary Mane
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6836
+ AegisName: Talisman_Of_Soul
+ Name: Talisman Of Soul
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6837
+ AegisName: Piece_Of_Soul_Mouse
+ Name: Piece Of Soul Mouse
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6838
+ AegisName: Secret_Orders_Of_Prophet_K
+ Name: Secret Orders Of Prophet K
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6839
+ AegisName: Gold_Choco_Coin
+ Name: Gold Choco Coin
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6840
+ AegisName: Silver_Choco_Coin
+ Name: Silver Choco Coin
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6841
+ AegisName: Bronze_Choco_Coin
+ Name: Bronze Choco Coin
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6842
+ AegisName: Huge_Jewery
+ Name: Huge Jewery
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6843
+ AegisName: Thin_Ring
+ Name: Thin Ring
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6844
+ AegisName: Mild_Stone
+ Name: Mild Stone
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6845
+ AegisName: That_Thing
+ Name: That Thing
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6846
+ AegisName: Limited_Gym_Membership_Card
+ Name: (Limited)Gym Membership Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6847
+ AegisName: Very_Small_Box
+ Name: Very Small Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6848
+ AegisName: Light_Box
+ Name: Light Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6849
+ AegisName: Request_Complete_Certificate
+ Name: Request Complete Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6850
+ AegisName: Questionable_Box
+ Name: Questionable Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6851
+ AegisName: Questionable_Document
+ Name: Questionable Document
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6852
+ AegisName: Super_Corrector
+ Name: Super Corrector
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6853
+ AegisName: Thanks_Bouquet
+ Name: Thanks Bouquet
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6854
+ AegisName: Novus_Captured
+ Name: Novus Captured
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6855
+ AegisName: Tatacho_Captured
+ Name: Tatacho Captured
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6856
+ AegisName: Manuscript_Written_By_Pigoreum
+ Name: Manuscript Written By Pigoreum
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6857
+ AegisName: Very_Hard_Stone
+ Name: Very Hard Stone
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6858
+ AegisName: Lude_Captured
+ Name: Lude Captured
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6859
+ AegisName: Wanderer_Captured
+ Name: Wanderer Captured
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6860
+ AegisName: Piece_Of_Soul_Cow
+ Name: Piece Of Soul Cow
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6862
+ AegisName: Piece_Of_Soul_Tiger
+ Name: Piece Of Soul Tiger
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6863
+ AegisName: Strong_Piece_Of_Soul_Tiger
+ Name: Strong Piece Of Soul Tiger
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6864
+ AegisName: Safe_to_19_Weapon_Certificate
+ Name: Safe to 19 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6865
+ AegisName: Safe_to_19_Armor_Certificate
+ Name: Safe to 19 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6866
+ AegisName: Piece_Of_Soul_Rabbit
+ Name: Piece Of Soul Rabbit
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6867
+ AegisName: Large_Insect_Barrel
+ Name: Large Insect Barrel
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6868
+ AegisName: Medium_Insect_Barrel
+ Name: Medium Insect Barrel
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6869
+ AegisName: Dust
+ Name: Dust
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6870
+ AegisName: Safe_to_13_Weapon_Certificate
+ Name: Safe to 13 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6871
+ AegisName: Safe_to_14_Weapon_Certificate
+ Name: Safe to 14 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6872
+ AegisName: Safe_to_15_Weapon_Certificate
+ Name: Safe to 15 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6873
+ AegisName: Safe_to_16_Weapon_Certificate
+ Name: Safe to 16 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6874
+ AegisName: Safe_to_17_Weapon_Certificate
+ Name: Safe to 17 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6875
+ AegisName: Safe_to_18_Weapon_Certificate
+ Name: Safe to 18 Weapon Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6876
+ AegisName: Safe_to_13_Armor_Certificate
+ Name: Safe to 13 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6877
+ AegisName: Safe_to_14_Armor_Certificate
+ Name: Safe to 14 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6878
+ AegisName: Safe_to_15_Armor_Certificate
+ Name: Safe to 15 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6879
+ AegisName: Safe_to_16_Armor_Certificate
+ Name: Safe to 16 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6880
+ AegisName: Safe_to_17_Armor_Certificate
+ Name: Safe to 17 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6881
+ AegisName: Safe_to_18_Armor_Certificate
+ Name: Safe to 18 Armor Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6882
+ AegisName: Advanced_Bait
+ Name: Advanced Bait
+ Type: Etc
+ Buy: 10
+ - Id: 6883
+ AegisName: Pet_Snow_Bunny_Exchange_Ticket
+ Name: Pet Snow Bunny Exchange Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6884
+ AegisName: Pet_Tikbalang_Exchange_Ticket
+ Name: Pet Tikbalang Exchange Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6885
+ AegisName: Piece_Of_Soul_Dragon
+ Name: Piece Of Soul Dragon
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6886
+ AegisName: Strong_Piece_Of_Soul_Dragon
+ Name: Strong Piece Of Soul Dragon
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6892
+ AegisName: Invasion_Plan
+ Name: Invasion Plan
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6893
+ AegisName: Human's_Cookbook
+ Name: Human's Cookbook
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6894
+ AegisName: Champion_Badge
+ Name: Champion Badge
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 6895
+ AegisName: Processed_Ancient_Rune
+ Name: Processed Ancient Rune
+ Type: Etc
+ Buy: 10
+ - Id: 6896
+ AegisName: Processed_Mystic_Rune
+ Name: Processed Mystic Rune
+ Type: Etc
+ Buy: 10
+ - Id: 6897
+ AegisName: Blue_Whale
+ Name: Blue Whale
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6898
+ AegisName: Whale
+ Name: Whale
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6899
+ AegisName: Giant_Octopus
+ Name: Giant Octopus
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6900
+ AegisName: Giant_Squid
+ Name: Giant Squid
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6901
+ AegisName: Sturgeon
+ Name: Sturgeon
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6902
+ AegisName: King_Lobster
+ Name: King Lobster
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6903
+ AegisName: King_Earthworm
+ Name: King Earthworm
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6904
+ AegisName: Piece_Of_Soul_Snake
+ Name: Piece Of Soul Snake
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6905
+ AegisName: Broken_Magic_Stone
+ Name: Broken Magic Stone
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6906
+ AegisName: Limited_High_Density_Kalunium
+ Name: (Limited)High Density Kalunium
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6907
+ AegisName: Piece_Of_Soul_Horse
+ Name: Piece Of Soul Horse
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6908
+ AegisName: ASPDStone_Robe
+ Name: Stone ASPD (Garment)
+ Type: Card
+ Buy: 20
+ Weight: 100
+ Script: |
+ bonus bAspd,1;
+ - Id: 6909
+ AegisName: Actinidia_Cat_Fruit
+ Name: Actinidia Cat Fruit
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6910
+ AegisName: Limited_Purified_Oridecon
+ Name: (Limited) Purified Oridecon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6911
+ AegisName: Limited_Purified_Eluminium
+ Name: (Limited) Purified Eluminium
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6912
+ AegisName: Piece_Of_Soul_Sheep
+ Name: Piece Of Soul Sheep
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6913
+ AegisName: Holy_Rosary
+ Name: Holy Rosary
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6914
+ AegisName: Black_Horn
+ Name: Black Horn
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6915
+ AegisName: Captured_Soul
+ Name: Captured Soul
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6916
+ AegisName: Piece_Of_Soul_Monkey
+ Name: Piece Of Soul Monkey
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6917
+ AegisName: Piece_Of_Soul_Chicken
+ Name: Piece Of Soul Chicken
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6919
+ AegisName: TokenOfHonor
+ Name: Honor Token
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6920
+ AegisName: RuneMagicPowder
+ Name: Rune Magic Powder
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6921
+ AegisName: Desiccant
+ Name: Dehumidifiers
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6922
+ AegisName: Sandpaper
+ Name: Sandpaper
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6923
+ AegisName: Bright_Lights
+ Name: Bright Fire Lights
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6924
+ AegisName: Red_Eyes
+ Name: Red Eye
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6925
+ AegisName: Prisoner_Letter
+ Name: Letter Of Prisoner
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6926
+ AegisName: Midgards_Histories
+ Name: Rune-Midgarts History Book
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6927
+ AegisName: Filled_With_SeaStones
+ Name: Stone That Contained Sea
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6928
+ AegisName: Poring_Loofah
+ Name: Poring Scourer
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6929
+ AegisName: Letters_Stamped_Seal
+ Name: Letter With Stamped Seal
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6930
+ AegisName: Biz_Items_Sample
+ Name: Samples New Business Items
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6931
+ AegisName: Secret_Documents
+ Name: Secret Documents
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6932
+ AegisName: Rare_Book
+ Name: Rare Book
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6933
+ AegisName: Banquet_Invitation_Letter
+ Name: Banquet Invitation Letter
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6934
+ AegisName: Magnificent_Dish
+ Name: Magnificent Dish
+ Type: Etc
+ Buy: 10
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6935
+ AegisName: Luxurious_Dish
+ Name: High-Class Dish
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6936
+ AegisName: Cold_Core
+ Name: Cold Core
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6937
+ AegisName: Silicone_Shell
+ Name: Silicone Shell
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6938
+ AegisName: Hedgehog_Picks
+ Name: Hedgehog Picks
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6939
+ AegisName: Old_Belt
+ Name: Worn-Out Belt
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6940
+ AegisName: Moving_Dark_Matter
+ Name: Moving Black Material
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6941
+ AegisName: Fragments_Valkyrie_Power
+ Name: Fragments Valkyrie Power
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6942
+ AegisName: Will_Master
+ Name: Will Master
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 6943
+ AegisName: ATKStone_Top
+ Name: ATK Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6944
+ AegisName: MATKStone_Top
+ Name: MATK Stone (Upper)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6945
+ AegisName: STRStone_Middle
+ Name: STR Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6946
+ AegisName: INTStone_Middle
+ Name: INT Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6947
+ AegisName: AGIStone_Middle
+ Name: AGI Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6948
+ AegisName: DEXStone_Middle
+ Name: DEX Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6949
+ AegisName: VITStone_Middle
+ Name: VIT Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6950
+ AegisName: LUKStone_Middle
+ Name: LUK Stone (Middle)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6951
+ AegisName: HPStone_Bottom
+ Name: HP Stone (Lower)
+ Type: Card
+ Buy: 10
+ Weight: 100
+ - Id: 6953
+ AegisName: Ramor_Refine_Ticket
+ Name: Ramor Refine Ticket
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Refine succeed guarantee until +9 for item 2598 only*/
+ - Id: 6954
+ AegisName: Piece_Of_Soul_Dog
+ Name: Piece Of Soul Dog
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6955
+ AegisName: Piece_Of_Soul_Pig
+ Name: Piece Of Soul Pig
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6956
+ AegisName: Captured_Sheep
+ Name: Captured Sheep
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6957
+ AegisName: Lamb_Fleece
+ Name: Lamb Fleece
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6958
+ AegisName: Lamb_Horns
+ 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
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6961
+ AegisName: LargeScrap
+ Name: Huge Metal Scrap
+ Type: Etc
+ Buy: 10
+ Weight: 1000
+ Flags:
+ BuyingStore: true
+ - Id: 6962
+ AegisName: OldTank
+ Name: Old Fuel
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 6963
+ AegisName: HPdrainStone_Robe
+ Name: HP Absorption Stone (Garment)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6964
+ AegisName: SPdrainStone_Robe
+ Name: SP Absorption Stone (Garment)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 6965
+ AegisName: Reactor_P_FIRE_
+ Name: Fire Property Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6966
+ AegisName: Reactor_P_WATER_
+ Name: Water Property Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6967
+ AegisName: Reactor_P_GROUND_
+ Name: Earth Property Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6968
+ AegisName: Reactor_P_WIND_
+ Name: Wind Property Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6969
+ AegisName: Reactor_T_FIRE_
+ Name: Fire Resistance Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6970
+ AegisName: Reactor_T_WATER_
+ Name: Water Resistance Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6971
+ AegisName: Reactor_T_GROUND_
+ Name: Earth Resistance Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6972
+ AegisName: Reactor_T_WIND_
+ Name: Wind Resistance Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6973
+ AegisName: Reactor_Cure_101_
+ Name: Recovery101 Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6974
+ AegisName: Reactor_Cure_102_
+ Name: Recovery102 Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6975
+ AegisName: Reactor_Cure_201_
+ Name: Recovery201 Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6976
+ AegisName: Reactor_Cure_202_
+ Name: Recovery202 Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6977
+ AegisName: Reactor_A_STR_
+ Name: STR Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6978
+ AegisName: Reactor_A_INT_
+ Name: INT Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6979
+ AegisName: Reactor_A_DEF_
+ Name: DEF Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6980
+ AegisName: Reactor_A_AVOI_
+ Name: Perfect Dodge Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6981
+ AegisName: Reactor_A_ATK_
+ Name: Attack Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6982
+ AegisName: Reactor_A_MATK_
+ Name: Magical Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6983
+ AegisName: Reactor_A_MHP_
+ Name: HP Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6984
+ AegisName: Reactor_A_MSP_
+ Name: SP Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6985
+ AegisName: Reactor_A_FROZ_
+ Name: Frozen Reactor Blueprint
+ Type: Etc
+ Weight: 10
+ - Id: 6986
+ AegisName: Reactor_A_ASPD_
+ 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)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7000
+ AegisName: Evt_Cos_Coin
+ Name: Event Stone Coin # !todo check english name
+ Type: Etc
+ - Id: 7001
+ AegisName: Mould_Powder
+ Name: Mould Powder
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7002
+ AegisName: Ogre_Tooth
+ Name: Ogre Tooth
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7003
+ AegisName: Anolian_Skin
+ Name: Anolian Skin
+ Type: Etc
+ Buy: 968
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7004
+ AegisName: Mud_Lump
+ Name: Mud Lump
+ Type: Etc
+ Buy: 876
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7005
+ AegisName: Skull
+ Name: Skull
+ Type: Etc
+ Buy: 1044
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7006
+ AegisName: Wing_Of_Red_Bat
+ Name: Wing of Red Bat
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7007
+ AegisName: Claw_Of_Rat
+ Name: Claw of Rat
+ Type: Etc
+ Buy: 748
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7008
+ AegisName: Stiff_Horn
+ Name: Stiff Horn
+ Type: Etc
+ Buy: 636
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7009
+ AegisName: Glitter_Shell
+ Name: Glitter Shell
+ Type: Etc
+ Buy: 528
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7010
+ AegisName: Tail_Of_Steel_Scorpion
+ Name: Tail of Steel Scorpion
+ Type: Etc
+ Buy: 548
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7011
+ AegisName: Claw_Of_Monkey
+ Name: Claw of Monkey
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7012
+ AegisName: Tough_Scalelike_Stem
+ Name: Tough Scalelike Stem
+ Type: Etc
+ Buy: 412
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7013
+ AegisName: Coral_Reef
+ Name: Coral Reef
+ Type: Etc
+ Buy: 772
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7014
+ AegisName: Old_Portrait
+ Name: Old Portrait
+ Type: Etc
+ Buy: 1500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7015
+ AegisName: Bookclip_In_Memory
+ Name: Bookclip in Memory
+ Type: Etc
+ Buy: 3000
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7016
+ AegisName: Spoon_Stub
+ Name: Spoon Stub
+ Type: Etc
+ Buy: 2500
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7017
+ AegisName: Executioner's_Mitten
+ Name: Executioner's Mitten
+ Type: Etc
+ Buy: 4500
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7018
+ AegisName: Young_Twig
+ Name: Young Twig
+ Type: Etc
+ Buy: 50
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7019
+ AegisName: Loki's_Whispers
+ Name: Loki's Whispers
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7020
+ AegisName: Mother's_Nightmare
+ Name: Mother's Nightmare
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7021
+ AegisName: Foolishness_Of_Blind
+ Name: Foolishness of the Blind
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7022
+ AegisName: Old_Hilt
+ Name: Old Hilt
+ Type: Etc
+ Buy: 150
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7023
+ AegisName: Blade_Lost_In_Darkness
+ Name: Blade Lost in Darkness
+ Type: Etc
+ Buy: 12000
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 7024
+ AegisName: Bloody_Edge
+ Name: Bloody Edge
+ Type: Etc
+ Buy: 10000
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ - Id: 7025
+ AegisName: Lucifer's_Lament
+ Name: Lucifer's Lament
+ Type: Etc
+ Buy: 30000
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7026
+ AegisName: Key_Of_Clock_Tower
+ Name: Key of Clock Tower
+ Type: Etc
+ Buy: 100
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7027
+ AegisName: Underground_Key
+ Name: Key of Underground
+ Type: Etc
+ Buy: 100
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7028
+ AegisName: Invite_For_Duel
+ Name: Invite for Duel
+ Type: Etc
+ - Id: 7029
+ AegisName: Admission_For_Duel
+ Name: Admission for Duel
+ Type: Etc
+ - Id: 7030
+ AegisName: Claw_Of_Desert_Wolf
+ Name: Claw of Desert Wolf
+ Type: Etc
+ Buy: 208
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7031
+ AegisName: Old_Frying_Pan
+ Name: Old Frying Pan
+ Type: Etc
+ Buy: 196
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7032
+ AegisName: Piece_Of_Egg_Shell
+ Name: Piece of Egg Shell
+ Type: Etc
+ Buy: 168
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7033
+ AegisName: Poison_Spore
+ Name: Poison Spore
+ Type: Etc
+ Buy: 114
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7034
+ AegisName: Red_Socks_With_Holes
+ Name: Red Stocking
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7035
+ AegisName: Matchstick
+ Name: Matchstick
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7036
+ AegisName: Fang_Of_Garm
+ Name: Fang of Hatii
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7038
+ AegisName: Yarn
+ Name: Yarn
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7039
+ AegisName: Novice_Nametag
+ Name: Newbie Tag
+ Type: Etc
+ Weight: 10
+ - Id: 7040
+ AegisName: Megaphone
+ Name: Megaphone
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7041
+ AegisName: Fine_Grit
+ Name: Fine Grit
+ Type: Etc
+ Buy: 120
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7042
+ AegisName: Leather_Bag_Of_Infinity
+ Name: Leather Bag of Infinity
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7043
+ AegisName: Fine_Sand
+ Name: Fine Sand
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7044
+ AegisName: Vigorgra
+ Name: Vigorgra
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7045
+ AegisName: Magic_Paint
+ Name: Magic Paint
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7046
+ AegisName: Cart_Parts
+ Name: Cart Parts
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7047
+ AegisName: Alice's_Apron
+ Name: Alice's Apron
+ Type: Etc
+ Buy: 2424
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7048
+ AegisName: Talon_Of_Griffin
+ Name: Talon of Griffon
+ Type: Etc
+ Buy: 5418
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7049
+ AegisName: Stone
+ Name: Stone
+ Type: Etc
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ - Id: 7050
+ AegisName: Cotton_Mat
+ Name: Cotton Mat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7051
+ AegisName: Silk_Mat
+ Name: Silk Mat
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7052
+ AegisName: Old_Magazine
+ Name: Old Papers
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ - Id: 7053
+ AegisName: Cyfar
+ Name: Cyfar
+ Type: Etc
+ Buy: 772
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7054
+ AegisName: Brigan
+ Name: Brigan
+ Type: Etc
+ Buy: 746
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7055
+ AegisName: Animal_Pooopoo
+ Name: Animal Poop
+ Type: Etc
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7056
+ AegisName: Payroll_Of_Kafra
+ Name: Payment Statement for Kafra Employee
+ Type: Etc
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7057
+ AegisName: Gallar_Horn
+ Name: Gjallar
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7058
+ AegisName: Gullraifnir
+ Name: Gleipnir
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7059
+ AegisName: Cargo_Free_Ticket
+ Name: Free Ticket for Kafra Storage
+ Type: Etc
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7060
+ AegisName: Warp_Free_Ticket
+ Name: Free Ticket for Kafra Transportation
+ Type: Etc
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7061
+ AegisName: Cart_Free_Ticket
+ Name: Free Ticket for the Cart Service
+ Type: Etc
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7062
+ AegisName: Broken_Turtle_Shell
+ Name: Broken Turtle Shell
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ - Id: 7063
+ AegisName: Soft_Feather
+ Name: Soft Feather
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7064
+ AegisName: Dragon_Fly_Wing
+ Name: Wing of Dragonfly
+ Type: Etc
+ Buy: 520
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7065
+ AegisName: Sea_Otter_Leather
+ Name: Sea-Otter Fur
+ Type: Etc
+ Buy: 820
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7066
+ AegisName: Ice_Piece
+ Name: Ice Cubic
+ Type: Etc
+ Buy: 660
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7067
+ AegisName: Stone_Piece
+ Name: Stone Fragment
+ Type: Etc
+ Buy: 640
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7068
+ AegisName: Burn_Tree
+ Name: Burnt Tree
+ Type: Etc
+ Buy: 722
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7069
+ AegisName: Broken_Armor_Piece
+ Name: Destroyed Armor
+ Type: Etc
+ Buy: 1042
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7070
+ AegisName: Broken_Shell
+ Name: Broken Shell
+ Type: Etc
+ Buy: 900
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7071
+ AegisName: Tatters_Clothes
+ Name: Tattered Clothes
+ Type: Etc
+ Buy: 1280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7072
+ AegisName: Rust_Suriken
+ Name: Old Shuriken
+ Type: Etc
+ Buy: 1780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7073
+ AegisName: Jewel_Of_Prayer
+ Name: Freya's Jewel
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7074
+ AegisName: Iron_Glove
+ Name: Thor's Gauntlets
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7075
+ AegisName: Iron_Maiden
+ Name: Iron Maiden
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7076
+ AegisName: Mystery_Wheel
+ Name: Wheel of the Unknown
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7077
+ AegisName: Silver_Fancy
+ Name: Silver Ornament
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7078
+ AegisName: Anger_Of_Valkurye
+ Name: Wrath of Valkyrie
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7079
+ AegisName: Feather_Of_Angel
+ Name: Feather of Angel Wing
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7080
+ AegisName: Foot_Step_Of_Cat
+ Name: Cat Tread
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7081
+ AegisName: Beard_Of_Women
+ Name: Woman's Moustache
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7082
+ AegisName: Root_Of_Stone
+ Name: Root of Stone
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7083
+ AegisName: Soul_Of_Fish
+ Name: Spirit of Fish
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7084
+ AegisName: Saliva_Of_Bird
+ Name: Sputum of Bird
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7085
+ AegisName: Tendon_Of_Bear
+ Name: Sinew of Bear
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7086
+ AegisName: Symbol_Of_Sun
+ Name: Emblem of the Sun God
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7087
+ AegisName: Breath_Of_Soul
+ Name: Breath of Spirit
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7088
+ AegisName: Crystal_Of_Snow
+ Name: Snow Crystal
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7089
+ AegisName: Indication_Of_Tempest
+ Name: Omen of Tempest
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7090
+ AegisName: Slilince_Wave
+ Name: Ripple
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7091
+ AegisName: Rough_Billows
+ Name: Billow
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7092
+ AegisName: Air_Stream
+ Name: Drifting Air
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7093
+ AegisName: Wheel
+ Name: Cogwheel
+ Type: Etc
+ Buy: 1512
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7094
+ AegisName: Mystery_Piece
+ Name: Fragment
+ Type: Etc
+ Buy: 1344
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7095
+ AegisName: Broken_Steel_Piece
+ Name: Metal Fragment
+ Type: Etc
+ Buy: 1075
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7096
+ AegisName: Cold_Magma
+ Name: Lava
+ Type: Etc
+ Buy: 1109
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7097
+ AegisName: Burning_Heart
+ Name: Burning Heart
+ Type: Etc
+ Buy: 924
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7098
+ AegisName: Live_Coal
+ Name: Live Coal
+ Type: Etc
+ Buy: 638
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7099
+ AegisName: Old_Magic_Circle
+ Name: Worn-out Magic Scroll
+ Type: Etc
+ Buy: 773
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7100
+ AegisName: Sharp_Leaf
+ Name: Sharp Leaf
+ Type: Etc
+ Buy: 806
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7101
+ AegisName: Peco_Wing_Feather
+ Name: Peco Peco Feather
+ Type: Etc
+ Buy: 454
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7102
+ AegisName: Hideous_Dream
+ Name: Nightmare
+ Type: Etc
+ Buy: 1075
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7103
+ AegisName: Unknown_Liquid_Bottle
+ Name: Unknown Liquid Bottle
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7104
+ AegisName: Fake_Angel_Wing
+ Name: False Angel Wing
+ Type: Etc
+ Buy: 756
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7105
+ AegisName: Fake_Angel_Loop
+ Name: False Heaven Ring
+ Type: Etc
+ Buy: 924
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7106
+ AegisName: Goat's_Horn
+ Name: Antelope Horn
+ Type: Etc
+ Buy: 672
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7107
+ AegisName: Gaoat's_Skin
+ Name: Antelope Skin
+ Type: Etc
+ Buy: 756
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7108
+ AegisName: Boroken_Shiled_Piece
+ Name: Piece of Shield
+ Type: Etc
+ Buy: 1680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7109
+ AegisName: Shine_Spear_Blade
+ Name: Shining Spear Blade
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7110
+ AegisName: Vroken_Sword
+ Name: Broken Sword
+ Type: Etc
+ Buy: 588
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7111
+ AegisName: Smooth_Paper
+ Name: Slick Paper
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7112
+ AegisName: Fright_Paper_Blade
+ Name: Sharp Paper
+ Type: Etc
+ Buy: 907
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7113
+ AegisName: Broken_Pharaoh_Symbol
+ Name: Broken Pharaoh Emblem
+ Type: Etc
+ Buy: 2016
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7114
+ AegisName: Tutankhamen's_Mask
+ Name: Masque of Tutankhamen
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7115
+ AegisName: Harpy's_Feather
+ Name: Harpy Feather
+ Type: Etc
+ Buy: 1142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7116
+ AegisName: Harpy's_Claw
+ Name: Harpy Talon
+ Type: Etc
+ Buy: 1210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7117
+ AegisName: Rent_Spell_Book
+ Name: Torn Magic Book
+ Type: Etc
+ Buy: 1142
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7118
+ AegisName: Rent_Scroll
+ Name: Torn Scroll
+ Type: Etc
+ Buy: 1361
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7119
+ AegisName: Spawns
+ Name: Bacillus
+ Type: Etc
+ Buy: 1025
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7120
+ AegisName: Burning_Horse_Shoe
+ Name: Burning Horseshoe
+ Type: Etc
+ Buy: 823
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7121
+ AegisName: Honey_Jar
+ Name: Honey Pot
+ Type: Etc
+ Buy: 622
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7122
+ AegisName: Hot_Hair
+ Name: Burning Hair
+ Type: Etc
+ Buy: 974
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7123
+ AegisName: Dragon's_Skin
+ Name: Dragon Skin
+ Type: Etc
+ Buy: 1025
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7124
+ AegisName: Sand_Lump
+ Name: Sand Clump
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7125
+ AegisName: Scropion's_Nipper
+ Name: Scorpion Claw
+ Type: Etc
+ Buy: 706
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7126
+ AegisName: Large_Jellopy
+ Name: Large Jellopy
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7127
+ AegisName: Alcol_Create_Book
+ Name: Alcohol Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7128
+ AegisName: FireBottle_Create_Book
+ Name: Bottle Grenade Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7129
+ AegisName: Acid_Create_Book
+ Name: Acid Bottle Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7130
+ AegisName: Plant_Create_Book
+ Name: Plant Bottle Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7131
+ AegisName: Mine_Create_Book
+ Name: Marine Sphere Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7132
+ AegisName: Coating_Create_Book
+ Name: Glistening Coat Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7133
+ AegisName: Slim_Potion_Create_Book
+ Name: Condensed Potion Creation Guide
+ Type: Etc
+ Buy: 240000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7134
+ AegisName: Medicine_Bowl
+ Name: Medicine Bowl
+ Type: Etc
+ Buy: 8
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7135
+ AegisName: Fire_Bottle
+ Name: Bottle Grenade
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7136
+ AegisName: Acid_Bottle
+ Name: Acid Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7137
+ AegisName: MenEater_Plant_Bottle
+ Name: Plant Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7138
+ AegisName: Mini_Bottle
+ Name: Marine Sphere Bottle
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7139
+ AegisName: Coating_Bottle
+ Name: Glistening Coat
+ Type: Etc
+ Buy: 200
+ Weight: 10
+ - Id: 7140
+ AegisName: Seed_Of_Life
+ Name: Seed of Life
+ Type: Etc
+ Buy: 60000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 7141
+ AegisName: Yggdrasilberry_Dew
+ Name: Morning Dew of Yggdrasil
+ Type: Etc
+ Buy: 20000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7142
+ AegisName: Germination_Breed
+ Name: Embryo
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7143
+ AegisName: Life_Force_Pot
+ Name: Glass Tube
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7144
+ AegisName: Normal_Potion_Book
+ Name: Potion Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7145
+ AegisName: Rag_T_Shirts
+ Name: Ragnarok T-shirt
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7146
+ AegisName: Vacance_Ticket
+ Name: Vacation Ticket
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7147
+ AegisName: Jasmin
+ Name: Jasmine
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7148
+ AegisName: Mother_Letter
+ Name: Mother's Letter
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ - Id: 7149
+ AegisName: Yellow_Plate
+ Name: Yellow Plate
+ Type: Etc
+ Buy: 220
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7150
+ AegisName: Bamboo_Cut
+ Name: Piece of Bamboo
+ Type: Etc
+ Buy: 310
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7151
+ AegisName: Oil_Paper
+ Name: Oil Paper
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7152
+ AegisName: Glossy_Hair
+ Name: Glossy Hair
+ Type: Etc
+ Buy: 340
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7153
+ AegisName: Old_Japaness_Clothes
+ Name: Worn-out Kimono
+ Type: Etc
+ Buy: 590
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7154
+ AegisName: Poison_Powder
+ Name: Poisonous Powder
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7155
+ AegisName: Poison_Toad's_Skin
+ Name: Poisonous Toad Skin
+ Type: Etc
+ Buy: 280
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7156
+ AegisName: Broken_Shuriken
+ Name: Broken Shuriken
+ Type: Etc
+ Buy: 470
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7157
+ AegisName: Black_Mask
+ Name: Dark Mask
+ Type: Etc
+ Buy: 315
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7158
+ AegisName: Broken_Wine_Vessel
+ Name: Broken Liquor Jar
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7159
+ AegisName: Tengu's_Nose
+ Name: Tengu Nose
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7160
+ AegisName: Lord's_Passable_Ticket
+ Name: Feudal Lord Permit
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7161
+ AegisName: Black_Bear's_Skin
+ Name: Black Bear Skin
+ Type: Etc
+ Buy: 384
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7162
+ AegisName: Cloud_Piece
+ Name: Cloud Crumb
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7163
+ AegisName: Sharp_Feeler
+ Name: Hard Feeler
+ Type: Etc
+ Buy: 570
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7164
+ AegisName: Hard_Peach
+ Name: Solid Peach
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7165
+ AegisName: Limpid_Celestial_Robe
+ Name: Transparent Celestial Robe
+ Type: Etc
+ Buy: 650
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7166
+ AegisName: Soft_Silk_Cloth
+ Name: Soft Silk
+ Type: Etc
+ Buy: 1200
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7167
+ AegisName: Mystery_Iron_Bit
+ Name: Strange Steel Piece
+ Type: Etc
+ Buy: 430
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7168
+ AegisName: Great_Wing
+ Name: Giant Butterfly Wing
+ Type: Etc
+ Buy: 614
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7169
+ AegisName: Taegeuk_Plate
+ Name: Ba Gua
+ Type: Etc
+ Buy: 2800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7170
+ AegisName: Tuxedo
+ Name: Tuxedo
+ Type: Etc
+ Buy: 43000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 7171
+ AegisName: Leopard_Skin
+ Name: Leopard Skin
+ Type: Etc
+ Buy: 282
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7172
+ AegisName: Leopard_Talon
+ Name: Leopard Claw
+ Type: Etc
+ Buy: 290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7173
+ AegisName: BurnBuster_Bag
+ Name: iROGM02's Backpack
+ Type: Etc
+ Weight: 10
+ - Id: 7174
+ AegisName: Packing_Ribbon
+ Name: Wrapping Lace
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7175
+ AegisName: Packing_Paper
+ Name: Wrapping Paper
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7176
+ AegisName: XMAS_Coupon
+ Name: Royal Certificate
+ Type: Etc
+ Weight: 10
+ - Id: 7177
+ AegisName: Part_Of_Star's_Sob
+ Name: Crumb of Sobbing Starlight
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7178
+ AegisName: Star's_Sob
+ Name: Sobbing Starlight
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7179
+ AegisName: Donation_Card
+ Name: Proof of Donation
+ Type: Etc
+ Weight: 10
+ - Id: 7180
+ AegisName: Introduction_Of_Mr.Han
+ Name: Hahn Sukbong's Recommendation
+ Type: Etc
+ Weight: 10
+ - Id: 7181
+ AegisName: Receipt_01
+ Name: Receipt
+ Type: Etc
+ Weight: 10
+ - Id: 7182
+ AegisName: Cacao
+ Name: Cacao
+ Type: Etc
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 7183
+ AegisName: Sister_Letter
+ Name: Letter from Sister
+ Type: Etc
+ Weight: 10
+ - Id: 7184
+ AegisName: Piano_Keyboard
+ Name: Piano Key
+ Type: Etc
+ Weight: 10
+ - Id: 7185
+ AegisName: Quiz_Ticket
+ Name: Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7186
+ AegisName: Thin_Stem
+ Name: Thin Trunk
+ Type: Etc
+ Buy: 380
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7187
+ AegisName: Festival_Mask
+ Name: Festival Mask
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7188
+ AegisName: Browny_Root
+ Name: Brown Root
+ Type: Etc
+ Buy: 560
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7189
+ AegisName: Heart_Of_Tree
+ Name: Wooden Heart
+ Type: Etc
+ Buy: 680
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7190
+ AegisName: Solid_Peeling
+ Name: Solid Husk
+ Type: Etc
+ Buy: 140
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7191
+ AegisName: Lamplight
+ Name: Lamp
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7192
+ AegisName: Blade_Of_Pinwheel
+ Name: Vane
+ Type: Etc
+ Buy: 160
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7193
+ AegisName: Germinating_Sprout
+ Name: Sprout
+ Type: Etc
+ Buy: 230
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7194
+ AegisName: Soft_Leaf
+ Name: Soft Blade of Grass
+ Type: Etc
+ Buy: 400
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7195
+ AegisName: Air_Rifle
+ Name: Slingshot
+ Type: Etc
+ Buy: 210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7196
+ AegisName: Shoulder_Protection
+ Name: Shoulder Protector
+ Type: Etc
+ Buy: 230
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7197
+ AegisName: Tough_Vines
+ Name: Tough Vines
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7198
+ AegisName: Great_Leaf
+ Name: Huge Leaf
+ Type: Etc
+ Buy: 610
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7199
+ AegisName: Coupon
+ Name: Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7200
+ AegisName: Flexible_String
+ Name: Elastic Band
+ Type: Etc
+ Buy: 380
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7201
+ AegisName: Log
+ Name: Log
+ Type: Etc
+ Buy: 250
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7202
+ AegisName: Beetle_Nipper
+ Name: Pincher of Beetle
+ Type: Etc
+ Buy: 290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7203
+ AegisName: Solid_Twig
+ Name: Strong Branch
+ Type: Etc
+ Buy: 190
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7204
+ AegisName: Gunpowder
+ Name: Gunpowder
+ Type: Etc
+ Buy: 320
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7205
+ AegisName: Piece_Of_Black_Cloth
+ Name: Piece of Black Cloth
+ Type: Etc
+ Buy: 526
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7206
+ AegisName: Black_Kitty_Doll
+ Name: Black Cat Doll
+ Type: Etc
+ Buy: 1440
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7207
+ AegisName: Old_Manteau
+ Name: Old Manteau
+ Type: Etc
+ Buy: 1050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7208
+ AegisName: Rusty_Cleaver
+ Name: Rusty Kitchen Knife
+ Type: Etc
+ Buy: 1780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7209
+ AegisName: Dullahan's_Helm
+ Name: Helm of Dullahan
+ Type: Etc
+ Buy: 1350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7210
+ AegisName: Dullahan_Armor
+ Name: Armor Piece of Dullahan
+ Type: Etc
+ Buy: 790
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7211
+ AegisName: Rojerta_Piece
+ Name: Fragment of Rossata Stone
+ Type: Etc
+ Buy: 2600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7212
+ AegisName: Hanging_Doll
+ Name: Hung Doll
+ Type: Etc
+ Buy: 1020
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7213
+ AegisName: Needle_Pouch
+ Name: Needle Packet
+ Type: Etc
+ Buy: 832
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7214
+ AegisName: Bat_Cage
+ Name: Bat Cage
+ Type: Etc
+ Buy: 880
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7215
+ AegisName: Broken_Needle
+ Name: Broken Needle
+ Type: Etc
+ Buy: 690
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7216
+ AegisName: Red_Scarf
+ Name: Red Muffler
+ Type: Etc
+ Buy: 660
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7217
+ AegisName: Spool
+ Name: Spool
+ Type: Etc
+ Buy: 424
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7218
+ AegisName: Rotten_Rope
+ Name: Decomposed Rope
+ Type: Etc
+ Buy: 390
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7219
+ AegisName: Striped_Socks
+ Name: Striped Sock
+ Type: Etc
+ Buy: 920
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7220
+ AegisName: Ectoplasm
+ Name: Ectoplasm
+ Type: Etc
+ Buy: 322
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7221
+ AegisName: Tangled_Chain
+ Name: Tangled Chains
+ Type: Etc
+ Buy: 740
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7222
+ AegisName: Tree_Knot
+ Name: Wooden Gnarl
+ Type: Etc
+ Buy: 468
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7223
+ AegisName: Distorted_Portrait
+ Name: Contorted Self-Portrait
+ Type: Etc
+ Buy: 2032
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7224
+ AegisName: Stone_Of_Intelligence
+ Name: Stone of Sage
+ Type: Etc
+ Weight: 10
+ - Id: 7225
+ AegisName: Pumpkin_Bucket
+ Name: Pumpkin Lantern
+ Type: Etc
+ Buy: 486
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7226
+ AegisName: Pill
+ Name: Pellet
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7227
+ AegisName: TCG_Card
+ Name: TCG Card
+ Type: Etc
+ Weight: 10
+ - Id: 7228
+ AegisName: Gold_Bullion
+ Name: Gold Bullion
+ Type: Etc
+ Buy: 100000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7229
+ AegisName: Silver_Bullion
+ Name: Silver Bullion
+ Type: Etc
+ Buy: 50000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7230
+ AegisName: White_Gold_Bullion
+ Name: Platinum Bullion
+ Type: Etc
+ Buy: 200000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ - Id: 7231
+ AegisName: Gold_Ore
+ Name: Gold Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7232
+ AegisName: Silver_Ore
+ Name: Silver Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7233
+ AegisName: Mithril_Ore
+ Name: Mithril Ore
+ Type: Etc
+ Buy: 20
+ Weight: 150
+ - Id: 7234
+ AegisName: Soul_Of_Guild
+ Name: Spirit of Guild
+ Type: Etc
+ Weight: 10
+ - Id: 7235
+ AegisName: Soul_Of_Courage
+ Name: Spirit of Charge
+ Type: Etc
+ Weight: 10
+ - Id: 7236
+ AegisName: Soul_Of_Guard
+ Name: Spirit of Protection
+ Type: Etc
+ Weight: 10
+ - Id: 7237
+ AegisName: Soul_Of_Partnership
+ Name: Spirit of Association
+ Type: Etc
+ Weight: 10
+ - Id: 7238
+ AegisName: Soul_Of_Correspondence
+ Name: Spirit of Coordination
+ Type: Etc
+ Weight: 10
+ - Id: 7239
+ AegisName: Soul_Of_Proceeding
+ Name: Spirit of Advance
+ Type: Etc
+ Weight: 10
+ - Id: 7240
+ AegisName: Soul_Of_Confidence
+ Name: Spirit of Trust
+ Type: Etc
+ Weight: 10
+ - Id: 7241
+ AegisName: Soul_Of_Agreement
+ Name: Spirit of Union
+ Type: Etc
+ Weight: 10
+ - Id: 7242
+ AegisName: Soul_Of_Harmony
+ Name: Spirit of Combination
+ Type: Etc
+ Weight: 10
+ - Id: 7243
+ AegisName: Soul_Of_Cooperate
+ Name: Spirit of Cooperation
+ Type: Etc
+ Weight: 10
+ - Id: 7244
+ AegisName: Soul_Of_Unity
+ Name: Spirit of Solidarity
+ Type: Etc
+ Weight: 10
+ - Id: 7245
+ AegisName: Soul_Of_Friendship
+ Name: Spirit of Friendship
+ Type: Etc
+ Weight: 10
+ - Id: 7246
+ AegisName: Soul_Of_Peace
+ Name: Spirit of Peace
+ Type: Etc
+ Weight: 10
+ - Id: 7247
+ AegisName: Soul_Of_Spirit
+ Name: Spirit of Determination
+ Type: Etc
+ Weight: 10
+ - Id: 7248
+ AegisName: Soul_Of_Honor
+ Name: Spirit of Honor
+ Type: Etc
+ Weight: 10
+ - Id: 7249
+ AegisName: Soul_Of_Service
+ Name: Spirit of Service
+ Type: Etc
+ Weight: 10
+ - Id: 7250
+ AegisName: Soul_Of_Glory
+ Name: Spirit of Glory
+ Type: Etc
+ Weight: 10
+ - Id: 7251
+ AegisName: Soul_Of_Victory
+ Name: Spirit of Victory
+ Type: Etc
+ Weight: 10
+ - Id: 7252
+ AegisName: Herb_Medicine
+ Name: Herbal Medicine
+ Type: Etc
+ Weight: 10
+ - Id: 7253
+ AegisName: Taeguk_Flag
+ Name: Golden Korean Flag
+ Type: Etc
+ Weight: 10
+ - Id: 7254
+ AegisName: Digital_Print_Ticket
+ Name: Digital Picture Printing Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 7255
+ AegisName: China_Marble01
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7256
+ AegisName: China_Marble02
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7257
+ AegisName: China_Marble03
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7258
+ AegisName: China_Marble04
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7259
+ AegisName: China_Marble05
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7260
+ AegisName: China_Marble06
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7261
+ AegisName: China_Marble07
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7262
+ AegisName: Fan
+ Name: Folding Fan of Cat Ghost
+ Type: Etc
+ Buy: 466
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7263
+ AegisName: Cat_Eyed_Stone
+ Name: Cat's Eye
+ Type: Etc
+ Buy: 954
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7264
+ AegisName: Dried_Sand
+ Name: Dry Sand
+ Type: Etc
+ Buy: 322
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7265
+ AegisName: Dragon_Horn
+ Name: Dragon Horn
+ Type: Etc
+ Buy: 544
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7266
+ AegisName: Dragon_Fang
+ Name: Denture from Dragon Mask
+ Type: Etc
+ Buy: 436
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7267
+ AegisName: Tiger_Skin_Panties
+ Name: Tiger Panty
+ Type: Etc
+ Buy: 298
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7268
+ AegisName: Little_Blacky_Ghost
+ Name: Little Ghost Doll
+ Type: Etc
+ Buy: 1210
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7269
+ AegisName: Bib
+ Name: Pinafore
+ Type: Etc
+ Buy: 960
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7270
+ AegisName: Milk_Bottle
+ Name: Nursing Bottle
+ Type: Etc
+ Buy: 1100
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7271
+ AegisName: Figure
+ Name: Novice Figure
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ - Id: 7272
+ AegisName: Meat_Dumpling_Doll
+ Name: Rice Ball Doll
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7273
+ AegisName: Golden_Necklace
+ Name: RWC Necklace
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7274
+ AegisName: Ancient_Translator
+ Name: Translated Ancient Language
+ Type: Etc
+ Weight: 10
+ - Id: 7275
+ AegisName: Ancient_Document
+ Name: Record of Ancient Language
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7276
+ AegisName: Picture_Letter
+ Name: Doodled Message
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7277
+ AegisName: Munak_Doll
+ Name: Munak Doll
+ Type: Etc
+ Buy: 8900
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7278
+ AegisName: Wellbeing_Letter
+ Name: Letter to Wife
+ Type: Etc
+ Weight: 10
+ - Id: 7279
+ AegisName: Vita500_Lid
+ Name: Vita500 Lid
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7280
+ AegisName: Quiz_Ticket01
+ Name: 1st Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7281
+ AegisName: Quiz_Ticket02
+ Name: 2nd Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7282
+ AegisName: Quiz_Ticket03
+ Name: 3rd Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7283
+ AegisName: Quiz_Ticket04
+ Name: 4th Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7284
+ AegisName: Quiz_Ticket05
+ Name: 5th Quiz Entry
+ Type: Etc
+ Weight: 10
+ - Id: 7285
+ AegisName: Thread_Skein
+ Name: Holy Threads
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7286
+ AegisName: Chilli
+ Name: Red Chile
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7287
+ AegisName: Thread_Skein_
+ Name: Holier Threads
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7288
+ AegisName: Thai_Ring
+ Name: Engagement Ring
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7289
+ AegisName: Olivine
+ Name: Peridot
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7290
+ AegisName: Phlogopite
+ Name: Phlogopite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7291
+ AegisName: Agate
+ Name: Agate
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7292
+ AegisName: Muscovite
+ Name: Muscovite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7293
+ AegisName: Rose_Quartz
+ Name: Rose Quartz
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7294
+ AegisName: Turquoise
+ Name: Turquoise
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7295
+ AegisName: Citrine
+ Name: Citrin
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7296
+ AegisName: Pyroxene
+ Name: Pyroxene
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7297
+ AegisName: Biotite
+ Name: Biotite
+ Type: Etc
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 7298
+ AegisName: Leaf_Clothes
+ Name: Fig Leaf
+ Type: Etc
+ Buy: 538
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7299
+ AegisName: Bamboo_Basket
+ Name: Straw Basket
+ Type: Etc
+ Buy: 632
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7300
+ AegisName: Gemstone
+ Name: Gemstone
+ Type: Etc
+ Buy: 1420
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7301
+ AegisName: Sword_Accessory
+ Name: Tassel
+ Type: Etc
+ Buy: 798
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7302
+ AegisName: KRATHONG
+ Name: Krathong
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7303
+ AegisName: Bag_Of_Rice
+ Name: Straw Rice Bag
+ Type: Etc
+ Weight: 800
+ Flags:
+ BuyingStore: true
+ - Id: 7304
+ AegisName: Witch's_Spell_Book
+ Name: Witch's Spell Scroll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7305
+ AegisName: Authority_Of_Nine_World
+ Name: Symbol of the Nine Realms
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7306
+ AegisName: Fragment_Of_Soul
+ Name: Piece of Spirit
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7307
+ AegisName: Whisper_Of_Soul
+ Name: Spiritual Whispers
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7308
+ AegisName: Witch's_Potion
+ Name: Witch's Tonic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7309
+ AegisName: Wing_Of_Crow
+ Name: Crow Wing
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7310
+ AegisName: Free_Peco_Ticket
+ Name: Free Ticket for Peco Ride
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7311
+ AegisName: Free_Flying_Ship_Ticket
+ Name: Free Ticket for Flyship
+ Type: Etc
+ Buy: 20
+ - Id: 7312
+ AegisName: Jubilee
+ Name: Jubilee
+ Type: Etc
+ Buy: 32
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7313
+ AegisName: Seal_Of_Witch
+ Name: Witch's Medal
+ Type: Etc
+ Buy: 2
+ - Id: 7314
+ AegisName: The_Sign
+ Name: The Sign
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7315
+ AegisName: Dark_Crystal_Fragment
+ Name: Dark Crystal Fragment
+ Type: Etc
+ Buy: 422
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7316
+ AegisName: Long_Limb
+ Name: Insect Leg
+ Type: Etc
+ Buy: 658
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7317
+ AegisName: Screw
+ Name: Rusty Screw
+ Type: Etc
+ Buy: 534
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7318
+ AegisName: Old_Pick
+ Name: Old Pick
+ Type: Etc
+ Buy: 512
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7319
+ AegisName: Old_Steel_Plate
+ Name: Used Iron Plate
+ Type: Etc
+ Buy: 1024
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7320
+ AegisName: Air_Pollutant
+ Name: Dust Pollutant
+ Type: Etc
+ Buy: 256
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7321
+ AegisName: Fragment_Of_Crystal
+ Name: Crystal Fragment
+ Type: Etc
+ Buy: 552
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7322
+ AegisName: Poisonous_Gas
+ Name: Toxic Gas
+ Type: Etc
+ Buy: 666
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7323
+ AegisName: Battered_Kettle
+ Name: Battered Kettle
+ Type: Etc
+ Buy: 256
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7324
+ AegisName: aegis_7324
+ Name: Deep Sea Kraken's Leg
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7325
+ AegisName: Tube
+ Name: Flexible Tube
+ Type: Etc
+ Buy: 102
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7326
+ AegisName: Fluorescent_Liquid
+ Name: Fluorescent Liquid
+ Type: Etc
+ Buy: 712
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7327
+ AegisName: Headlamp
+ Name: Flashlight
+ Type: Etc
+ Buy: 1024
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7328
+ AegisName: Legendary_Scroll
+ Name: Legend of Songkran
+ Type: Etc
+ Weight: 10
+ - Id: 7329
+ AegisName: Old_Copper_Key
+ Name: Old Bronze Key
+ Type: Etc
+ Weight: 10
+ - Id: 7330
+ AegisName: 2anny
+ Name: Mystic Orb
+ Type: Etc
+ Weight: 100
+ - Id: 7331
+ AegisName: Flower_Of_Heaven
+ Name: Heaven Flower
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7332
+ AegisName: Slate
+ Name: Complete Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7333
+ AegisName: Piece_Of_Slate_1
+ Name: Prontera Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7334
+ AegisName: Piece_Of_Slate_2
+ Name: Payon Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7335
+ AegisName: Piece_Of_Slate_3
+ Name: Morocc Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7336
+ AegisName: Piece_Of_Slate_4
+ Name: Geffen Tablet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7337
+ AegisName: Eye_Of_Hellion
+ Name: Eye of Hellion
+ Type: Etc
+ - Id: 7338
+ AegisName: RO_Transportation_Card
+ Name: One-way Ticket
+ Type: Etc
+ - Id: 7339
+ AegisName: RO_Transportation_Card_
+ Name: Commemorative Travel Card
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7340
+ AegisName: Will_Of_Darkness
+ Name: Will of the Darkness
+ Type: Etc
+ Buy: 734
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 7341
+ AegisName: Worn_Out_Pendant
+ Name: Old Pendant
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7342
+ AegisName: File01
+ Name: File Folder
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7343
+ AegisName: File02
+ Name: Sealed File Folder
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7344
+ AegisName: File03
+ Name: Shinokas Case File
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7345
+ AegisName: Armlet_Of_Prisoner
+ Name: Handcuffs
+ Type: Etc
+ Buy: 724
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7346
+ AegisName: Pile_Of_Ymir_Heart
+ Name: Ymir's Heart Piece
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7347
+ AegisName: Lab_Staff_Record
+ Name: Research Chart
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7348
+ AegisName: Indication_Of_Member01
+ Name: Membership Card
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7349
+ AegisName: Indication_Of_Member02
+ Name: Archive Permit
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7350
+ AegisName: Pass
+ Name: Pass
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7351
+ AegisName: Friend's_Diary
+ Name: Friend's Diary
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7352
+ AegisName: Transparent_Plate01
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7353
+ AegisName: Transparent_Plate02
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7354
+ AegisName: Transparent_Plate03
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7355
+ AegisName: Transparent_Plate04
+ Name: Transparent Plate
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7356
+ AegisName: Piece_Of_Crest1
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7357
+ AegisName: Piece_Of_Crest2
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7358
+ AegisName: Piece_Of_Crest3
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7359
+ AegisName: Piece_Of_Crest4
+ Name: Crest Piece
+ Type: Etc
+ Buy: 5000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7360
+ AegisName: RO_Festival_Ticket
+ Name: RO Festival Invitation
+ Type: Etc
+ Weight: 10
+ - Id: 7361
+ AegisName: Lotto01
+ Name: Lotto Ball 01
+ Type: Etc
+ Weight: 10
+ - Id: 7362
+ AegisName: Lotto02
+ Name: Lotto Ball 02
+ Type: Etc
+ Weight: 10
+ - Id: 7363
+ AegisName: Lotto03
+ Name: Lotto Ball 03
+ Type: Etc
+ Weight: 10
+ - Id: 7364
+ AegisName: Lotto04
+ Name: Lotto Ball 04
+ Type: Etc
+ Weight: 10
+ - Id: 7365
+ AegisName: Lotto05
+ Name: Lotto Ball 05
+ Type: Etc
+ Weight: 10
+ - Id: 7366
+ AegisName: Lotto06
+ Name: Lotto Ball 06
+ Type: Etc
+ Weight: 10
+ - Id: 7367
+ AegisName: Lotto07
+ Name: Lotto Ball 07
+ Type: Etc
+ Weight: 10
+ - Id: 7368
+ AegisName: Lotto08
+ Name: Lotto Ball 08
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7369
+ AegisName: Lotto09
+ Name: Lotto Ball 09
+ Type: Etc
+ Weight: 10
+ - Id: 7370
+ AegisName: Lotto10
+ Name: Lotto Ball 10
+ Type: Etc
+ Weight: 10
+ - Id: 7371
+ AegisName: Lotto11
+ Name: Lotto Ball 11
+ Type: Etc
+ Weight: 10
+ - Id: 7372
+ AegisName: Lotto12
+ Name: Lotto Ball 12
+ Type: Etc
+ Weight: 10
+ - Id: 7373
+ AegisName: Lotto13
+ Name: Lotto Ball 13
+ Type: Etc
+ Weight: 10
+ - Id: 7374
+ AegisName: Lotto14
+ Name: Lotto Ball 14
+ Type: Etc
+ Weight: 10
+ - Id: 7375
+ AegisName: Lotto15
+ Name: Lotto Ball 15
+ Type: Etc
+ Weight: 10
+ - Id: 7376
+ AegisName: Lotto16
+ Name: Lotto Ball 16
+ Type: Etc
+ Weight: 10
+ - Id: 7377
+ AegisName: Lotto17
+ Name: Lotto Ball 17
+ Type: Etc
+ Weight: 10
+ - Id: 7378
+ AegisName: Lotto18
+ Name: Lotto Ball 18
+ Type: Etc
+ Weight: 10
+ - Id: 7379
+ AegisName: Lotto19
+ Name: Lotto Ball 19
+ Type: Etc
+ Weight: 10
+ - Id: 7380
+ AegisName: Lotto20
+ Name: Lotto Ball 20
+ Type: Etc
+ Weight: 10
+ - Id: 7381
+ AegisName: Lotto21
+ Name: Lotto Ball 21
+ Type: Etc
+ Weight: 10
+ - Id: 7382
+ AegisName: Lotto22
+ Name: Lotto Ball 22
+ Type: Etc
+ Weight: 10
+ - Id: 7383
+ AegisName: Lotto23
+ Name: Lotto Ball 23
+ Type: Etc
+ Weight: 10
+ - Id: 7384
+ AegisName: Lotto24
+ Name: Lotto Ball 24
+ Type: Etc
+ Weight: 10
+ - Id: 7385
+ AegisName: Lotto25
+ Name: Lotto Ball 25
+ Type: Etc
+ Weight: 10
+ - Id: 7386
+ AegisName: Lotto26
+ Name: Lotto Ball 26
+ Type: Etc
+ Weight: 10
+ - Id: 7387
+ AegisName: Lotto27
+ Name: Lotto Ball 27
+ Type: Etc
+ Weight: 10
+ - Id: 7388
+ AegisName: Lotto28
+ Name: Lotto Ball 28
+ Type: Etc
+ Weight: 10
+ - Id: 7389
+ AegisName: Lotto29
+ Name: Lotto Ball 29
+ Type: Etc
+ Weight: 10
+ - Id: 7390
+ AegisName: Lotto30
+ Name: Lotto Ball 30
+ Type: Etc
+ Weight: 10
+ - Id: 7391
+ AegisName: Lotto31
+ Name: Lotto Ball 31
+ Type: Etc
+ Weight: 10
+ - Id: 7392
+ AegisName: Lotto32
+ Name: Lotto Ball 32
+ Type: Etc
+ Weight: 10
+ - Id: 7393
+ AegisName: Lotto33
+ Name: Lotto Ball 33
+ Type: Etc
+ Weight: 10
+ - Id: 7394
+ AegisName: Lotto34
+ Name: Lotto Ball 34
+ Type: Etc
+ Weight: 10
+ - Id: 7395
+ AegisName: Lotto35
+ Name: Lotto Ball 35
+ Type: Etc
+ Weight: 10
+ - Id: 7396
+ AegisName: Lotto36
+ Name: Lotto Ball 36
+ Type: Etc
+ Weight: 10
+ - Id: 7397
+ AegisName: Lotto37
+ Name: Lotto Ball 37
+ Type: Etc
+ Weight: 10
+ - Id: 7398
+ AegisName: Lotto38
+ Name: Lotto Ball 38
+ Type: Etc
+ Weight: 10
+ - Id: 7399
+ AegisName: Word_Card01
+ Name: Selamat
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7400
+ AegisName: Word_Card02
+ Name: Hari
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7401
+ AegisName: Word_Card03
+ Name: Kemerdekaan
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7402
+ AegisName: Word_Card04
+ Name: Republik
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7403
+ AegisName: Word_Card05
+ Name: Indonesia
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7404
+ AegisName: Word_Card06
+ Name: Ke-60
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7405
+ AegisName: Crushed_Can
+ Name: Crushed Can
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7406
+ AegisName: Moon_Cake1
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7407
+ AegisName: Moon_Cake2
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7408
+ AegisName: Moon_Cake3
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7409
+ AegisName: Moon_Cake4
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7410
+ AegisName: Moon_Cake5
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7411
+ AegisName: Moon_Cake6
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7412
+ AegisName: Moon_Cake7
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7413
+ AegisName: Moon_Cake8
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7414
+ AegisName: Moon_Cake9
+ Name: Yuebing
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7415
+ AegisName: Stone_Of_Summons
+ Name: Summoning Stone
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7416
+ AegisName: Letter_Of_Recommend
+ Name: Letter of Recommendation
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7417
+ AegisName: Mission_ScrollA
+ Name: Written Request(A)
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7418
+ AegisName: Mission_ScrollB
+ Name: Written Request(B)
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7419
+ AegisName: Embryo_HandBook
+ Name: Embryo Creation Guide
+ Type: Etc
+ Buy: 48000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7420
+ AegisName: Skull_
+ Name: Skull
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7421
+ AegisName: Key_Red
+ Name: Red Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7422
+ AegisName: Key_Yellow
+ Name: Yellow Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7423
+ AegisName: Key_Blue
+ Name: Blue Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7424
+ AegisName: Key_Green
+ Name: Green Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7425
+ AegisName: Key_Black
+ Name: Black Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7426
+ AegisName: Magic_Gem_Red
+ Name: Red Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7427
+ AegisName: Magic_Gem_Yellow
+ Name: Yellow Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7428
+ AegisName: Magic_Gem_Blue
+ Name: Blue Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7429
+ AegisName: Magic_Gem_Green
+ Name: Green Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7430
+ AegisName: Magic_Gem_Black
+ Name: Black Charm Stone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7431
+ AegisName: Several_Books
+ Name: Pile of Books
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7432
+ AegisName: Leather_Pouch
+ Name: Leather Pouch
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7433
+ AegisName: Scroll
+ Name: Blank Scroll
+ Type: Etc
+ Buy: 4000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7434
+ AegisName: Elemental_Potion_Book
+ Name: Elemental Potion Creation Guide
+ Type: Etc
+ Buy: 100000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7435
+ AegisName: Golden_Bracelet
+ Name: Golden Ornament
+ Type: Etc
+ Buy: 1907
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7436
+ AegisName: Piece_Of_Memory_Green
+ Name: Fragment of Agony
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7437
+ AegisName: Piece_Of_Memory_Purple
+ Name: Fragment of Misery
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7438
+ AegisName: Piece_Of_Memory_Blue
+ Name: Fragment of Hatred
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7439
+ AegisName: Piece_Of_Memory_Red
+ Name: Fragment of Despair
+ Type: Etc
+ Buy: 1506
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7440
+ AegisName: Red_Feather
+ Name: Red Feather
+ Type: Etc
+ Buy: 1335
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7441
+ AegisName: Blue_Feather
+ Name: Blue Feather
+ Type: Etc
+ Buy: 1408
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7442
+ AegisName: Cursed_Seal
+ Name: Cursed Seal
+ Type: Etc
+ Buy: 1332
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7443
+ AegisName: Tri_Headed_Dragon_Head
+ Name: Three-Headed Dragon's Head
+ Type: Etc
+ Buy: 956
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7444
+ AegisName: Treasure_Box
+ Name: Treasure Box
+ Type: Etc
+ Buy: 300000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7445
+ AegisName: Dragonball_Green
+ Name: Green Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7446
+ AegisName: Dragonball_Blue
+ Name: Blue Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7447
+ AegisName: Dragonball_Red
+ Name: Red Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7448
+ AegisName: Dragonball_Yellow
+ Name: Yellow Bijou
+ Type: Etc
+ Buy: 887
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7449
+ AegisName: Bloody_Page
+ Name: Bloody Page
+ Type: Etc
+ Buy: 681
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7450
+ AegisName: Piece_Of_Bone_Armor
+ Name: Skeletal Armor Piece
+ Type: Etc
+ Buy: 2050
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7451
+ AegisName: Scale_Of_Red_Dragon
+ Name: Fire Dragon Scale
+ Type: Etc
+ Buy: 1852
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7452
+ AegisName: Yellow_Spice
+ Name: Yellow Spice
+ Type: Etc
+ Buy: 750
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7453
+ AegisName: Sweet_Sauce
+ Name: Sweet Sauce
+ Type: Etc
+ Buy: 525
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7454
+ AegisName: Plain_Sauce
+ Name: Savory Sauce
+ Type: Etc
+ Buy: 525
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7455
+ AegisName: Hot_Sauce
+ Name: Spicy Sauce
+ Type: Etc
+ Buy: 525
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7456
+ AegisName: Red_Spice
+ Name: Red Spice
+ Type: Etc
+ Buy: 750
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7457
+ AegisName: Cooking_Oil
+ Name: Cooking Oil
+ Type: Etc
+ Buy: 375
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7458
+ AegisName: Baphomet's_Horn
+ Name: Fortune Horn
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7459
+ AegisName: RAMADAN_
+ Name: Idul Fitri Card
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7460
+ AegisName: Niflheim_Ticket
+ Name: Niflheim Express Ticket
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7461
+ AegisName: BlueCard_A
+ Name: Blue A Card
+ Type: Etc
+ Weight: 10
+ - Id: 7462
+ AegisName: BlueCard_E
+ Name: Blue E Card
+ Type: Etc
+ Weight: 10
+ - Id: 7463
+ AegisName: BlueCard_F
+ Name: Blue F Card
+ Type: Etc
+ Weight: 10
+ - Id: 7464
+ AegisName: BlueCard_H
+ Name: Blue H Card
+ Type: Etc
+ Weight: 10
+ - Id: 7465
+ AegisName: BlueCard_L
+ Name: Blue L Card
+ Type: Etc
+ Weight: 10
+ - Id: 7466
+ AegisName: BlueCard_N
+ Name: Blue N Card
+ Type: Etc
+ Weight: 10
+ - Id: 7467
+ AegisName: BlueCard_O
+ Name: Blue O Card
+ Type: Etc
+ Weight: 10
+ - Id: 7468
+ AegisName: BlueCard_P
+ Name: Blue P Card
+ Type: Etc
+ Weight: 10
+ - Id: 7469
+ AegisName: BlueCard_U
+ Name: Blue U Card
+ Type: Etc
+ Weight: 10
+ - Id: 7470
+ AegisName: BlueCard_W
+ Name: Blue W Card
+ Type: Etc
+ Weight: 10
+ - Id: 7471
+ AegisName: BlueCard_Y
+ Name: Blue Y Card
+ Type: Etc
+ Weight: 10
+ - Id: 7472
+ AegisName: Cookbook01
+ Name: Level 1 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7473
+ AegisName: Cookbook02
+ Name: Level 2 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7474
+ AegisName: Cookbook03
+ Name: Level 3 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7475
+ AegisName: Cookbook04
+ Name: Level 4 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7476
+ AegisName: Cookbook05
+ Name: Level 5 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7477
+ AegisName: Cookbook06
+ Name: Level 6 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7478
+ AegisName: Cookbook07
+ Name: Level 7 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7479
+ AegisName: Cookbook08
+ Name: Level 8 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7480
+ AegisName: Cookbook09
+ Name: Level 9 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7481
+ AegisName: Cookbook10
+ Name: Level 10 Cookbook
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7482
+ AegisName: Pot
+ Name: Pot
+ Type: Etc
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7483
+ AegisName: Key_Of_Seal
+ Name: Key of the Seal
+ Type: Etc
+ - Id: 7484
+ AegisName: Warrior_Symbol
+ Name: Symbol of a Brave Warrior
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7485
+ AegisName: 2nd_Floor_Pass
+ Name: Cloud General
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7486
+ AegisName: 3rd_Floor_Pass
+ Name: Wind General
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7487
+ AegisName: Tavern_Wine
+ Name: Culinary Wine
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7488
+ AegisName: Delivery_Box
+ Name: Delivery Package
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7489
+ AegisName: Villa_Spare_Key
+ Name: Cottage Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7490
+ AegisName: Kyll_Hire_Letter
+ Name: Letter to Elly
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7491
+ AegisName: Iron_Box
+ Name: Steel Box
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7492
+ AegisName: Yellow_Key_Card
+ Name: Yellow Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7493
+ AegisName: Golden_Key
+ Name: Golden Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7494
+ AegisName: Kiel_Button
+ Name: Luxurious Button
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7495
+ AegisName: Blue_Key_Card
+ Name: Blue Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7496
+ AegisName: Red_Key_Card
+ Name: Red Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7497
+ AegisName: Steel_Piece
+ Name: Metal Fragment
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7498
+ AegisName: Rosimier_Key
+ Name: Rosimier Mansion Keys
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7499
+ AegisName: Family_Portrait
+ Name: Family Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7500
+ AegisName: Elysia_Portrait
+ Name: Woman's Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7501
+ AegisName: Kyll_Hire_Letter2
+ Name: K.H's Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7502
+ AegisName: Piece_Memo_Of_James
+ Name: James's Note
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7503
+ AegisName: Man_Portrait
+ Name: Man's Portrait
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7504
+ AegisName: Toy_Motor
+ Name: Power Device
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7505
+ AegisName: Toy_Key
+ Name: Toy Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7506
+ AegisName: Black_Key_Card
+ Name: Black Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7507
+ AegisName: Sturdy_Iron_Piece
+ Name: Solid Iron Piece
+ Type: Etc
+ Buy: 842
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7508
+ AegisName: Elysia_Ring
+ Name: Allysia's Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7509
+ AegisName: Fancy_Key_Card
+ Name: Luxurious Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7510
+ AegisName: Valhalla_Flower
+ Name: Valhalla's Flower
+ Type: Etc
+ Buy: 200000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7511
+ AegisName: Rune_Of_Darkness
+ Name: Rune of Darkness
+ Type: Etc
+ Buy: 2526
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7512
+ AegisName: Burnt_Parts
+ Name: Burnt Part
+ Type: Etc
+ Buy: 1600
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7513
+ AegisName: Pocket_Watch__
+ Name: Pocket Watch
+ Type: Etc
+ Buy: 3420
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7514
+ AegisName: Monster_Ticket
+ Name: Monster Ticket
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7515
+ AegisName: Marvelous_Medal
+ Name: Prize Medal
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7516
+ AegisName: Green_Key_Card
+ Name: Green Keycard
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7517
+ AegisName: Gold_Coin_
+ Name: Gold Coin
+ Type: Etc
+ Buy: 1000
+ Weight: 100
+ - Id: 7518
+ AegisName: Women's_Medal
+ Name: Women's Medal
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7519
+ AegisName: Money_Envelope
+ Name: Handsel
+ Type: Etc
+ Weight: 10
+ - Id: 7520
+ AegisName: Chinese_Scroll
+ Name: Please Be Rich
+ Type: Etc
+ Weight: 10
+ - Id: 7521
+ AegisName: Flame_Stone
+ Name: Flame Stone
+ Type: Etc
+ Buy: 112
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7522
+ AegisName: Ice_Stone
+ Name: Ice Stone
+ Type: Etc
+ Buy: 112
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7523
+ AegisName: Wind_Stone
+ Name: Wind Stone
+ Type: Etc
+ Buy: 112
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7524
+ AegisName: Shadow_Orb
+ Name: Shadow Orb
+ Type: Etc
+ Buy: 225
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7525
+ AegisName: Summer_Feast_Ticket
+ Name: Summer Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7526
+ AegisName: Manuscript_Paper
+ Name: Manuscript Paper
+ Type: Etc
+ Buy: 2
+ - Id: 7527
+ AegisName: Life_Book
+ Name: Book About True Life
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7528
+ AegisName: Id_Lottery_Ticket
+ Name: Lottery Ticket
+ Type: Etc
+ - Id: 7529
+ AegisName: Stolen_Sandals
+ Name: Stolen Sandal
+ Type: Etc
+ - Id: 7530
+ AegisName: Travel_Brochure_01
+ Name: Travel Brochure [Amatsu]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7531
+ AegisName: Travel_Brochure_02
+ Name: Travel Brochure [Kunlun]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7532
+ AegisName: Travel_Brochure_03
+ Name: Travel Brochure [Luoyang]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7533
+ AegisName: Travel_Brochure_04
+ Name: Travel Brochure [Ayothaya]
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7534
+ AegisName: Photo_Album_01
+ Name: Amatsu Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7535
+ AegisName: Photo_Album_02
+ Name: Kunlun Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7536
+ AegisName: Photo_Album_03
+ Name: Luoyang Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7537
+ AegisName: Photo_Album_04
+ Name: Ayothaya Completed Photo Album
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7538
+ AegisName: Sifted_Sand
+ Name: Sand for Work
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7539
+ AegisName: Poring_Coin
+ Name: Poring Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7540
+ AegisName: Lotto39
+ Name: Lotto Ball 39
+ Type: Etc
+ Weight: 10
+ - Id: 7541
+ AegisName: Lotto40
+ Name: Lotto Ball 40
+ Type: Etc
+ Weight: 10
+ - Id: 7542
+ AegisName: Lotto41
+ Name: Lotto Ball 41
+ Type: Etc
+ Weight: 10
+ - Id: 7543
+ AegisName: Lotto42
+ Name: Lotto Ball 42
+ Type: Etc
+ Weight: 10
+ - Id: 7544
+ AegisName: Lotto43
+ Name: Lotto Ball 43
+ Type: Etc
+ Weight: 10
+ - Id: 7545
+ AegisName: Lotto44
+ Name: Lotto Ball 44
+ Type: Etc
+ Weight: 10
+ - Id: 7546
+ AegisName: Lotto45
+ Name: Lotto Ball 45
+ Type: Etc
+ Weight: 10
+ - Id: 7547
+ AegisName: Soccer_Ball
+ Name: Soccer Ball
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7548
+ AegisName: Soccer_Shoes
+ Name: Soccer Shoes
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7549
+ AegisName: Brazilian_Flag
+ Name: Brazilian Flag
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7550
+ AegisName: Ticket01
+ Name: 6.13 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7551
+ AegisName: Ticket02
+ Name: 6.18 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7552
+ AegisName: Ticket03
+ Name: 6.22 Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7553
+ AegisName: Lotus_Flower
+ Name: Lotus Flower
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7554
+ AegisName: Striped_Candle
+ Name: Striped Candle
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7555
+ AegisName: Green_Incense
+ Name: Green Incense
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7556
+ AegisName: Longing_Heart
+ Name: Longing Heart
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7557
+ AegisName: Invitation_Letter
+ Name: Invitation Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7558
+ AegisName: Invitation_Ticket
+ Name: Invitation Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7559
+ AegisName: Key_Of_Flower_Garden
+ Name: Key to the Secret Garden
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7560
+ AegisName: Longing_Heart2
+ Name: Longing Heart
+ Type: Etc
+ - Id: 7561
+ AegisName: Ice_Heart
+ Name: Glacial Heart
+ Type: Etc
+ Buy: 606
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7562
+ AegisName: Ice_Scale
+ Name: Ice Scale
+ Type: Etc
+ Buy: 3020
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7563
+ AegisName: Bloody_Rune
+ Name: Bloody Rune
+ Type: Etc
+ Buy: 2016
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7564
+ AegisName: Rotten_Meat
+ Name: Rotten Meat
+ Type: Etc
+ Buy: 102
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7565
+ AegisName: Sticky_Poison
+ Name: Sticky Poison
+ Type: Etc
+ Buy: 350
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7566
+ AegisName: Will_Of_Darkness_
+ Name: Will of Red Darkness
+ Type: Etc
+ Buy: 1530
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7567
+ AegisName: Suspicious_Hat
+ Name: Suspicious Hat
+ Type: Etc
+ Buy: 1290
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7568
+ AegisName: White_Mask
+ Name: White Mask
+ Type: Etc
+ Buy: 1060
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7569
+ AegisName: Hammer_Of_Wind
+ Name: Wind Hammer
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7570
+ AegisName: Temple_Lottery_Ticket
+ Name: Temple Lottery Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7571
+ AegisName: Diary_Of_Blue
+ Name: Bruspetti's Diary
+ Type: Etc
+ - Id: 7572
+ AegisName: Magic_Necklace
+ Name: Ashy Necklace
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7573
+ AegisName: Magic_Necklace_
+ Name: Sparkling Necklace
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7574
+ AegisName: Ice_Particle
+ Name: Freezing Snow Powder
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 7575
+ AegisName: Red_Jewel_
+ Name: Red Jewel
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7576
+ AegisName: Blue_Jewel_
+ Name: Blue Jewel
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7577
+ AegisName: Golden_Jewel_
+ Name: Yellow Jewel
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7578
+ AegisName: Anti_Spell_Bead
+ Name: Countermagic Crystal
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7579
+ AegisName: Silk_Handkerchief
+ Name: Silk Handkerchief of Zhi Nu
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7580
+ AegisName: Black_Bead
+ Name: Black Marble
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7581
+ AegisName: Anniversary_Ticket
+ Name: Celebration Document
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7582
+ AegisName: Gem_Of_Ruin
+ Name: Jewel of Destruction
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7583
+ AegisName: Evil_Mind
+ Name: Evil Mind
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7584
+ AegisName: Proof_Of_Guard1
+ Name: Guard's First Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7585
+ AegisName: Proof_Of_Guard2
+ Name: Guard's Second Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7586
+ AegisName: Proof_Of_Guard3
+ Name: Guard's Third Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7587
+ AegisName: Proof_Of_Guard4
+ Name: Guard's Fourth Proof
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7588
+ AegisName: IPOD_Ticker
+ Name: IPOD Coupon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7589
+ AegisName: Moon_Cake10
+ Name: Lettered Moon Snack 01
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7590
+ AegisName: Moon_Cake11
+ Name: Lettered Moon Snack 02
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7591
+ AegisName: Moon_Cake12
+ Name: Lettered Moon Snack 03
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7592
+ AegisName: Moon_Cake13
+ Name: Lettered Moon Snack 04
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7593
+ AegisName: Moon_Cake14
+ Name: Lettered Moon Snack 05
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7594
+ AegisName: Sonia's_Letter
+ Name: Sonia's Letter
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7595
+ AegisName: Unique_Sword
+ Name: Special Sword
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7596
+ AegisName: Unique_Shield
+ Name: Special Shield
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7597
+ AegisName: Magic_Stone
+ Name: Magic Stone
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7598
+ AegisName: BlueCard_I
+ Name: Blue I Card
+ Type: Etc
+ Weight: 10
+ - Id: 7599
+ AegisName: BlueCard_D
+ Name: Blue D Card
+ Type: Etc
+ Weight: 10
+ - Id: 7600
+ AegisName: BlueCard_K
+ Name: Blue K Card
+ Type: Etc
+ Weight: 10
+ - Id: 7601
+ AegisName: BlueCard_S
+ Name: Blue S Card
+ Type: Etc
+ Weight: 10
+ - Id: 7602
+ AegisName: BlueCard_R
+ Name: Blue R Card
+ Type: Etc
+ Weight: 10
+ - Id: 7603
+ AegisName: RO_Party_Ticket
+ Name: RO Party Invitation Ticket
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7604
+ AegisName: Flour
+ Name: Flour
+ Type: Etc
+ Weight: 10
+ - Id: 7605
+ AegisName: Chicken_Egg
+ Name: Chicken Egg
+ Type: Etc
+ Weight: 10
+ - Id: 7606
+ AegisName: Coin
+ Name: Token of the Ox
+ Type: Etc
+ Weight: 10
+ - Id: 7607
+ AegisName: Evil_Dragon_Head
+ Name: Neck of Demon Dragon
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7608
+ AegisName: Premium_Ticket
+ Name: Premium Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7609
+ AegisName: Pumpkin_Mojo
+ Name: Pumpkin Mojo
+ Type: Etc
+ Weight: 10
+ - Id: 7610
+ AegisName: Food_Ticket
+ Name: Food Exchange Ticket
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 7611
+ AegisName: Fox_Symbol
+ Name: Symbol of Fox
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7612
+ AegisName: Heart_Of_Fox_Queen
+ Name: Heart of Queen Fox
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ - Id: 7613
+ AegisName: Small_Rice_Dough
+ Name: Small Rice Cake Dough
+ Type: Etc
+ - Id: 7614
+ AegisName: Special_Packing_Paper
+ Name: Wrapping Paper
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7615
+ AegisName: MVP_Ticket
+ Name: MVP Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7616
+ AegisName: Mini_Boss_Ticket
+ Name: Miniboss Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7617
+ AegisName: Monster_Ticket_
+ Name: Monster Voucher
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7618
+ AegisName: Monster_Crystal
+ Name: Monster Crystal
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7619
+ AegisName: Enriched_Elunium
+ Name: Enriched Elunium
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7620
+ AegisName: Enriched_Oridecon
+ Name: Enriched Oridecon
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7621
+ AegisName: Token_Of_Siegfried
+ Name: Token Of Siegfried
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7622
+ AegisName: New_Style_Coupon
+ Name: Hairstyle Coupon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7623
+ AegisName: Name_Change_Coupon
+ Name: Ticket Of Identification
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7624
+ AegisName: Spring_Stanza23
+ Name: Spring Stanza23
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7625
+ AegisName: Registration_Ticket
+ Name: Registration Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7626
+ AegisName: Bubble_Gum_Token
+ Name: Bubble Gum Token
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7627
+ AegisName: Sage_Key
+ Name: Sage Key
+ Type: Etc
+ - Id: 7628
+ AegisName: Idiot_Key
+ Name: Idiot Key
+ Type: Etc
+ - Id: 7629
+ AegisName: Pink_Gift_Box
+ Name: Pink Gift Box
+ Type: Etc
+ - Id: 7630
+ AegisName: Clean_Beach_Brush
+ Name: Clean Beach Brush
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7631
+ AegisName: Trash_Debris
+ Name: Trash Debris
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7632
+ AegisName: To_Afterworld_Record
+ Name: Terrible Report Card
+ Type: Etc
+ - Id: 7633
+ AegisName: To_Heaven_Record
+ Name: Heavensent Report Card
+ Type: Etc
+ - Id: 7634
+ AegisName: Rose_Of_Father
+ Name: Father Rose
+ Type: Etc
+ - Id: 7635
+ AegisName: Perfume_Pouch
+ Name: Incense Bag
+ Type: Etc
+ Buy: 100
+ - Id: 7636
+ AegisName: Magic_Potion_Bottle
+ Name: Magic Potion Bottle
+ Type: Etc
+ - Id: 7637
+ AegisName: Father_Giftbox
+ Name: Father Giftbox
+ Type: Etc
+ Weight: 10
+ - Id: 7638
+ AegisName: TW_Green_Box
+ Name: TW Green Box
+ Type: Etc
+ Weight: 10
+ - Id: 7639
+ AegisName: TW_Red_Box
+ Name: TW Red Box
+ Type: Etc
+ Weight: 10
+ - Id: 7640
+ AegisName: Butterfly_Hair_Decoration
+ Name: Butterfly Hair Decoration
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7641
+ AegisName: Medical_Cure_Box
+ Name: Medical Cure Box
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7642
+ AegisName: Bloody_Coin
+ Name: Bloody Coin
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7643
+ AegisName: Bloody_Letter
+ Name: Bloody Letter
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7644
+ AegisName: Unsent_Letter
+ Name: Unsent Letter
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7646
+ AegisName: RO_Luk_Bookmark
+ Name: RO Luk Bookmark
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7647
+ AegisName: Taiwan_Luk_Coin
+ Name: Taiwan Luk Coin
+ Type: Etc
+ - Id: 7648
+ AegisName: Snake_Bookmark
+ Name: Snake Bookmark
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7649
+ AegisName: Big_Luk_Bookmark
+ Name: Big Luk Bookmark
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7651
+ AegisName: Mystery_Egg
+ Name: Mystery Egg
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7663
+ AegisName: Full_Metal_Jacket
+ Name: Full Metal Jacket
+ Type: Etc
+ Buy: 200
+ Weight: 1
+ Attack: 10
+ - Id: 7664
+ AegisName: Shooting_Mine
+ Name: Grenade Launcher
+ Type: Etc
+ Buy: 450
+ Weight: 1
+ Attack: 10
+ - Id: 7665
+ AegisName: Dragon_Tail_Missile
+ Name: Dragon Tail Missile
+ Type: Etc
+ Buy: 1500
+ Weight: 1
+ Attack: 10
+ - Id: 7666
+ AegisName: TimeTravel_Scroll
+ Name: Time Travel Scroll
+ Type: Etc
+ Buy: 20
+ - Id: 7667
+ AegisName: Abandoned_Machine
+ Name: Abandoned Machine
+ Type: Etc
+ Buy: 20
+ - Id: 7668
+ AegisName: Clean_Bandage
+ Name: Clean Bandage
+ Type: Etc
+ Buy: 20
+ - Id: 7669
+ AegisName: Rubbing_Alchohol
+ Name: Rubbing Alchohol
+ Type: Etc
+ Buy: 20
+ - Id: 7670
+ AegisName: Sour_Grass
+ Name: Sour Grass
+ Type: Etc
+ Buy: 20
+ - Id: 7671
+ AegisName: Firstaid_Kit
+ Name: First Aid Kit
+ Type: Etc
+ Buy: 20
+ - Id: 7672
+ AegisName: Relief_Food
+ Name: Relief Food
+ Type: Etc
+ Buy: 20
+ - Id: 7674
+ AegisName: Mysterious_Ingredient
+ Name: Mysterious Ingredient
+ Type: Etc
+ Buy: 20
+ - Id: 7675
+ AegisName: Mysterious_Doll
+ Name: Mysterious Doll
+ Type: Etc
+ - Id: 7676
+ AegisName: Transmission_Coupon
+ Name: Transmission Coupon
+ Type: Etc
+ - Id: 7679
+ AegisName: Oneclick_Weapon_7UP
+ Name: One Click Weapon 7UP
+ Type: Etc
+ - Id: 7680
+ AegisName: Oneclick_Weapon_9UP
+ Name: One Click Weapon 9UP
+ Type: Etc
+ - Id: 7681
+ AegisName: Oneclick_Armor_7UP
+ Name: One Click Armor 7UP
+ Type: Etc
+ - Id: 7682
+ 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
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7701
+ AegisName: Dragon_Spirit
+ Name: Soul
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7702
+ AegisName: Special_Cogwheel
+ Name: Special Cogwheel
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7703
+ AegisName: Piece_Of_Cogwheel
+ Name: Piece of Cogwheel
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7704
+ AegisName: Broken_Thermometer
+ Name: Broken Thermometer
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7705
+ AegisName: Note_Of_Geologist
+ Name: Note of Geologist
+ Type: Etc
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7706
+ AegisName: Spoiled_Carrot_Juice
+ Name: Broken Carrot Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7707
+ AegisName: Spoiled_Banana_Juice
+ Name: Broken Banana Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7708
+ AegisName: Spoiled_Apple_Juice
+ Name: Broken Apple Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7709
+ AegisName: Spoiled_Grape_Juice
+ Name: Broken Grape Juice
+ Type: Etc
+ Buy: 20
+ Weight: 40
+ - Id: 7710
+ AegisName: Black_Gemstone
+ Name: Black Gemstone
+ Type: Etc
+ Buy: 600
+ Weight: 30
+ - Id: 7711
+ AegisName: Update_Ticket
+ Name: Event Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7712
+ AegisName: Nokia5500
+ Name: Nokia 5500
+ Type: Etc
+ Weight: 10
+ - Id: 7713
+ AegisName: BlueCard_A_
+ Name: Blue A(2) Card
+ Type: Etc
+ Weight: 10
+ - Id: 7714
+ AegisName: BlueCard_R_
+ Name: Blue R(2) Card
+ Type: Etc
+ Weight: 10
+ - Id: 7715
+ AegisName: Handmade_Choco_Recipe
+ Name: Handmade Chocolate Recipe
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7716
+ AegisName: Strawberry_Choco_Recipe
+ Name: Chocolate Strawberry Recipe
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7717
+ AegisName: Choco_Tart_Recipe
+ Name: Chocolate Tart Recipe
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7718
+ AegisName: Cacao_Bean
+ Name: Cacao Bean
+ Type: Etc
+ Weight: 10
+ - Id: 7719
+ AegisName: BlueCard_G
+ Name: Blue G Card
+ Type: Etc
+ Weight: 10
+ - Id: 7720
+ AegisName: Gold_Coin_US
+ Name: Gold Coin
+ Type: Etc
+ Buy: 100
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7721
+ AegisName: Treasure_Box_
+ Name: Treasure Box
+ Type: Etc
+ Buy: 100
+ Weight: 500
+ - Id: 7722
+ AegisName: Debt_Note
+ Name: Debt Note
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7723
+ AegisName: Diamond_Of_Ruin
+ Name: Diamond of Ruin
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7724
+ AegisName: Forbidden_Secret_Art
+ Name: Forbidden Secret Art
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7725
+ AegisName: Unlucky_Emerald
+ Name: Unlucky Emerald
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7726
+ AegisName: Token_Of_King
+ Name: Token of King
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7727
+ AegisName: HP_Doctor_Ticket
+ Name: HP Doctor Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7728
+ AegisName: SP_Doctor_Ticket
+ Name: SP Doctor Ticket
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7729
+ AegisName: Rok_Star_Badge
+ Name: Rok Star Badge
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7730
+ AegisName: Mission_Certificate1
+ Name: Mission Ticket 1
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7731
+ AegisName: Mission_Certificate2
+ Name: Mission Ticket 2
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7732
+ AegisName: Mission_Certificate3
+ Name: Mission Ticket 3
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7733
+ AegisName: Mission_Certificate4
+ Name: Mission Ticket 4
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7734
+ AegisName: Mission_Certificate5
+ Name: Mission Ticket 5
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7735
+ AegisName: Mission_Certificate6
+ Name: Mission Ticket 6
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7736
+ AegisName: Mission_Certificate7
+ Name: Mission Ticket 7
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7737
+ AegisName: Mission_Certificate8
+ Name: Mission Ticket 8
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7738
+ AegisName: Mission_Certificate9
+ Name: Mission Ticket 9
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7739
+ AegisName: Mission_Certificate10
+ Name: Mission Ticket 10
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7740
+ AegisName: Mission_Certificate11
+ Name: Mission Ticket 11
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7741
+ AegisName: Mission_Certificate12
+ Name: Mission Ticket 12
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ - Id: 7742
+ AegisName: Kaong
+ Name: Kaong
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7743
+ AegisName: Gulaman
+ Name: Gulaman
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7744
+ AegisName: Leche_Flan
+ Name: Leche Flan
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7745
+ AegisName: Ube_Jam
+ Name: Ube Jam
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7746
+ AegisName: Sago
+ Name: Sago
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7747
+ AegisName: Langka
+ Name: Langka
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7748
+ AegisName: Sweet_Bean
+ Name: Sweet Beans
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7749
+ AegisName: Sweet_Banana
+ Name: Sweet Bananas
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7750
+ AegisName: Macapuno
+ Name: Macapuno
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7751
+ AegisName: Old_White_Cloth
+ Name: Old White Cloth
+ Type: Etc
+ Buy: 550
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7752
+ AegisName: Clattering_Skull
+ Name: Clattering Skull
+ Type: Etc
+ Buy: 840
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7753
+ AegisName: Broken_Farming_Utensil
+ Name: Broken Farming Utensil
+ Type: Etc
+ Buy: 330
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7754
+ AegisName: Broken_Crown
+ Name: Broken Crown
+ Type: Etc
+ Buy: 3000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7755
+ AegisName: Research_Note
+ Name: Research Note
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7756
+ AegisName: Sealed_Book
+ Name: Sealed Book
+ Type: Etc
+ Buy: 2000
+ Weight: 10
+ - Id: 7757
+ AegisName: Mithril
+ Name: Mithril
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7758
+ AegisName: Star_Crystal
+ Name: Star Crystal
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7759
+ AegisName: Geology_Report
+ Name: Geologist's Report
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7760
+ AegisName: Yaga_Magic_Book
+ Name: Yaga's Magic Book
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7761
+ AegisName: Magic_Gourd_Bottle
+ Name: Magic Gourd Bottle
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7762
+ AegisName: Yaga_Pestle
+ Name: Yaga's Pestle
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7763
+ AegisName: Sticky_Herb
+ Name: Sticky Herb
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7764
+ AegisName: High_Strength_Adhesive
+ Name: High Strength Adhesive
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7765
+ AegisName: Yaga_Secret_Medicine
+ Name: Baba Yaga's Secret Medicine
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7766
+ AegisName: Bok_Choy
+ Name: Bok Choy
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7767
+ AegisName: Chung_E_Cake
+ Name: Green Maiden's Cake
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7768
+ AegisName: Squid
+ Name: Squid
+ Type: Etc
+ Weight: 10
+ - Id: 7769
+ AegisName: Egg_Yolk
+ Name: Egg Yolk
+ Type: Etc
+ Weight: 10
+ - Id: 7770
+ AegisName: Sweet_Rice
+ Name: Sweet Rice
+ Type: Etc
+ Weight: 10
+ - Id: 7771
+ AegisName: Lotus_Leaf
+ Name: Lotus Leaf
+ Type: Etc
+ Weight: 10
+ - Id: 7772
+ AegisName: String
+ Name: String
+ Type: Etc
+ Weight: 10
+ - Id: 7773
+ AegisName: War_Badge
+ Name: Wat Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7774
+ AegisName: Chung_E_Ticket
+ Name: Green Maiden Ticket
+ Type: Etc
+ Weight: 10
+ - Id: 7775
+ AegisName: Spring_Rabbit_Ticket
+ Name: Spring Rabbit Ticket
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7776
+ AegisName: Max_Weight_Up_Scroll
+ Name: Gym Pass
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7777
+ AegisName: Gold_Box
+ Name: Sealed Golden Box
+ Type: Etc
+ Weight: 10
+ - Id: 7778
+ AegisName: Silver_Box
+ Name: Sealed Silver Box
+ Type: Etc
+ Weight: 10
+ - Id: 7779
+ AegisName: Gold_Key_TW
+ Name: Golden Key
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7780
+ AegisName: Silver_Key
+ Name: Silver Key
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7781
+ AegisName: Heart_Box
+ Name: Engrave Treasure Box
+ Type: Etc
+ Weight: 10
+ - Id: 7782
+ AegisName: Gold_Key77
+ Name: Episode 13.1 Poporing Key
+ Type: Etc
+ Weight: 10
+ Flags:
+ DropAnnounce: true
+ - Id: 7783
+ AegisName: Silver_Key77
+ Name: Episode 13.2 Poring Key
+ Type: Etc
+ Weight: 10
+ Flags:
+ DropAnnounce: true
+ - Id: 7784
+ AegisName: Fawner_Coupon1
+ Name: Free Coupon 1
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7785
+ AegisName: Fawner_Coupon2
+ Name: Free Coupon 2
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7786
+ AegisName: Fawner_Coupon3
+ Name: Free Coupon 3
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7787
+ AegisName: Fawner_Coupon4
+ Name: Free Coupon 4
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7788
+ AegisName: Fawner_Coupon5
+ Name: Free Coupon 5
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7789
+ AegisName: Fawner_Coupon6
+ Name: Free Coupon 6
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7790
+ AegisName: Fawner_Coupon7
+ Name: Free Coupon 7
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7791
+ AegisName: Fawner_Coupon8
+ Name: Free Coupon 8
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7792
+ AegisName: Guyak
+ Name: Guyak
+ Type: Etc
+ Weight: 10
+ - Id: 7793
+ AegisName: Golden_Apple
+ Name: Golden Apple
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7794
+ AegisName: Fate_Of_Crow
+ Name: The Crow of Destiny
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7795
+ AegisName: Mami_Photo_Album
+ Name: Mammi's Photo Album
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7796
+ AegisName: Author_Autograph
+ Name: Author's Autograph
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7797
+ AegisName: Author_Memo
+ Name: Author's Memo
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7798
+ AegisName: Dark_Debris
+ Name: Fragment of Darkness
+ Type: Etc
+ Buy: 500
+ Weight: 10
+ - Id: 7799
+ AegisName: Dark_Crystal
+ Name: Crystal of Darkness
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7800
+ AegisName: Golden_Apple_
+ Name: Golden Charm Apple
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7801
+ AegisName: Girl_Fan_Letter
+ Name: Girl's Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7802
+ AegisName: Autograph_Book
+ Name: Signature Notebook
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7803
+ AegisName: Battle_Manual_TW
+ Name: Beginner's Field Manual
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ 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
+ Type: Etc
+ Weight: 10
+ - Id: 7806
+ AegisName: Black_Anvil
+ Name: God Anvil
+ Type: Etc
+ Weight: 10
+ - Id: 7807
+ AegisName: Ore
+ Name: God Mineral
+ Type: Etc
+ Weight: 10
+ - Id: 7808
+ AegisName: Gold_Hammer
+ Name: God Hammer
+ Type: Etc
+ Weight: 10
+ - Id: 7809
+ AegisName: Gold_Furnace
+ Name: God Furnace
+ Type: Etc
+ Weight: 10
+ - Id: 7810
+ AegisName: Yellow_Cat_Eyed_Stone
+ Name: Symbol of Richness
+ Type: Etc
+ Weight: 10
+ - Id: 7811
+ AegisName: Gold_Anvil
+ Name: Anvil
+ Type: Etc
+ Weight: 10
+ - Id: 7812
+ AegisName: Red_Cat_Eyed_Stone
+ Name: Symbol of Bravery
+ Type: Etc
+ Weight: 10
+ - Id: 7813
+ AegisName: Th_Red_Ring
+ Name: Red Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7814
+ AegisName: Green_Ring
+ Name: Green Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7815
+ AegisName: Blue_Ring
+ Name: Blue Jenoss's Family Ring
+ Type: Etc
+ Weight: 10
+ - Id: 7816
+ AegisName: Blue_Cat_Eyed_Stone
+ Name: Symbol of Faith
+ Type: Etc
+ Weight: 10
+ - Id: 7817
+ AegisName: White_Cat_Eyed_Stone
+ Name: Symbol of Peace
+ Type: Etc
+ Weight: 10
+ - Id: 7818
+ AegisName: RJC_Golden_Necklace
+ Name: Jessur's Necklace
+ Type: Etc
+ Weight: 10
+ - Id: 7819
+ AegisName: Nokia5300
+ Name: Nokia 5300
+ Type: Etc
+ Weight: 10
+ - Id: 7820
+ AegisName: Morroc_Skin
+ Name: Piece of Morocc Skin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7821
+ AegisName: Green_Apple
+ Name: Green Apple
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7822
+ AegisName: Whole_Barbecue
+ Name: Whole Barbecue
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7823
+ AegisName: Meat_Veg_Skewer
+ Name: Meat Veg Skewer
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7824
+ AegisName: Spirit_Liquor
+ Name: Spirit Liquor
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7825
+ AegisName: Heroic_Stone
+ Name: Heroic Stone
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7826
+ AegisName: Continental_Guard_Paper
+ Name: Continental Guard Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7827
+ AegisName: Mineral_Report
+ Name: Mineral Evals
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7828
+ AegisName: BF_Badge1
+ Name: Bravery Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7829
+ AegisName: BF_Badge2
+ Name: Valor Badge
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7830
+ AegisName: Goddess_Tear
+ Name: Goddess Tear
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7831
+ AegisName: Valkyrie_Token
+ Name: Valkyrie's Token
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7832
+ AegisName: Brynhild_Armor_Piece
+ Name: Brynhild Armor Piece
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7833
+ AegisName: Hero_Remains
+ Name: Hero's Remains
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7834
+ AegisName: Andvari_Ring
+ Name: Andvari's Ring
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7835
+ AegisName: Dusk_Glow
+ Name: Dusk Glow
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7836
+ AegisName: Dawn_Essence
+ Name: Dawn Essence
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7837
+ AegisName: Cold_Moonlight
+ Name: Cold Moonlight
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7838
+ AegisName: Hazy_Starlight
+ Name: Hazy Starlight
+ Type: Etc
+ Buy: 1
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ - Id: 7839
+ AegisName: Crystal_Key
+ Name: Crystal Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7840
+ AegisName: Valkyrie_Gift
+ Name: Valkyrie's Gift
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7841
+ AegisName: Spotted_Paper
+ Name: Stained Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7842
+ AegisName: Torn_Paper
+ Name: Torn Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7843
+ AegisName: Old_Paper
+ Name: Old Piece Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7844
+ AegisName: Burnt_Paper
+ Name: Burnt Pieces Of Paper
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7845
+ AegisName: Copy_Of_Spotted_Paper
+ Name: Copy Of Spotted Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7846
+ AegisName: Copy_Of_Torn_Paper
+ Name: Copy Of Torn Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7847
+ AegisName: Copy_Of_Old_Paper
+ Name: Copy Of Old Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7848
+ AegisName: Copy_Of_Burnt_Paper
+ Name: Copy Of Burnt Paper
+ Type: Etc
+ Weight: 10
+ - Id: 7849
+ AegisName: Soul_Crystal
+ Name: Soul Crystal
+ Type: Etc
+ Weight: 10
+ - Id: 7850
+ AegisName: Wooden_Block_
+ Name: Wooden Block
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7851
+ AegisName: Pass_F1
+ Name: Wii Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7852
+ AegisName: Pass_F2
+ Name: Divx Player Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7853
+ AegisName: Pass_F3
+ Name: iPod nano Raffle Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7854
+ AegisName: Pass_CF
+ Name: Comodo Festival Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7855
+ AegisName: Heart
+ Name: Heart
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7856
+ AegisName: Girl_Bunch_Of_Flower_
+ Name: Girl's Bouquet
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ - Id: 7857
+ AegisName: Handmade_Kitty_Doll
+ Name: Hand-made Kitty Doll
+ Type: Etc
+ Buy: 20
+ Weight: 30
+ - Id: 7858
+ AegisName: Dragonball_Yellow_
+ Name: Dragonball Yellow
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7859
+ AegisName: Game_Ticket
+ Name: Game Ticket
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7860
+ AegisName: Peeps
+ Name: Peeps
+ Type: Etc
+ Weight: 50
+ - Id: 7861
+ AegisName: Jelly_Bean
+ Name: Jelly Bean
+ Type: Etc
+ Weight: 50
+ - Id: 7862
+ AegisName: Marshmallow
+ Name: Marshmallow
+ Type: Etc
+ Weight: 50
+ - Id: 7863
+ AegisName: GOLD_ID4
+ Name: Special Gold
+ Type: Etc
+ Buy: 20
+ Weight: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7864
+ AegisName: Love_Flower
+ Name: Love Flower
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7865
+ AegisName: Gold_Pouch
+ Name: Gold Pouch
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7866
+ AegisName: Certificate
+ Name: Certificate
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7867
+ AegisName: SesamePouch
+ Name: Sesame Bag
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7868
+ AegisName: Water
+ Name: Fresh Water
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7869
+ AegisName: RicePouch
+ Name: Rice Pouch
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 7870
+ AegisName: Corn
+ Name: Corn
+ Type: Etc
+ Buy: 5
+ Weight: 20
+ - Id: 7871
+ AegisName: BeanPouch
+ Name: Bean Bag
+ Type: Etc
+ Buy: 10
+ Weight: 20
+ - Id: 7872
+ AegisName: Grass
+ Name: Herb
+ Type: Etc
+ Buy: 10
+ Weight: 30
+ - Id: 7873
+ AegisName: MVP_Monster_Scroll
+ Name: MVP Monster Scroll
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7874
+ AegisName: Monster_Scroll
+ Name: Create Monster Scroll
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7875
+ AegisName: Pirate_Box
+ Name: Pirate Treasure
+ Type: Etc
+ Buy: 300000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7876
+ AegisName: Gold_Key
+ Name: Golden Key
+ Type: Etc
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7877
+ AegisName: Red_Ring
+ Name: Red Ring
+ Type: Etc
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7878
+ AegisName: Lusalka_Hair
+ Name: Lusalka's Hair
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7879
+ AegisName: Golden_Thread
+ Name: Golden Thread
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7880
+ AegisName: Babayaga_Silver_Spoon
+ Name: Baba Yaga's Silver Spoon
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7881
+ AegisName: Book_Of_Magic
+ Name: Mystery Magic Book
+ Type: Etc
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7882
+ AegisName: Pointed_Branch
+ Name: Sharp Branch
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7883
+ AegisName: Pointed_Wooden_Flute
+ Name: Wooden Flute
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7884
+ AegisName: Jade_Plate
+ Name: Jade Plate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7885
+ AegisName: Sacred_Arrow
+ Name: Sacred Arrow
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7886
+ AegisName: Bean_Paste
+ Name: Bean Paste
+ Type: Etc
+ Weight: 10
+ - Id: 7887
+ AegisName: Dried_Fruit_Box
+ Name: Dried Fruit Box
+ Type: Etc
+ Weight: 30
+ - Id: 7888
+ AegisName: Bag_Of_Nuts
+ Name: Bag of Nuts
+ Type: Etc
+ Weight: 30
+ - Id: 7889
+ AegisName: Chicken_Feed
+ Name: Chicken Feed
+ Type: Etc
+ Weight: 20
+ - Id: 7891
+ AegisName: Mug
+ Name: Mug
+ Type: Etc
+ Buy: 2
+ Weight: 100
+ - Id: 7892
+ AegisName: Charcoal
+ Name: Charcoal
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7893
+ AegisName: Sulfur
+ Name: Sulphur
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7894
+ AegisName: Nitrate
+ Name: Nitrogen Acid
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7895
+ AegisName: TRO_Memory_Book01
+ Name: Rama5 Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7896
+ AegisName: TRO_Memory_Book02
+ Name: Loykrathong Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7897
+ AegisName: TRO_Memory_Book03
+ Name: Constitution Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7898
+ AegisName: VVS_Balmung
+ Name: VV Strong Balmung
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7899
+ AegisName: Spiritualist_Dagger
+ Name: Dagger Of Psychic
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7900
+ AegisName: Jenoss_Ring1
+ Name: Jonathan Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7901
+ AegisName: Jenoss_Ring2
+ Name: Jillberriel Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7902
+ AegisName: Jenoss_Ring3
+ Name: Jessur Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7903
+ AegisName: Jenoss_Ring4
+ Name: Jenoss Family Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7904
+ AegisName: Piano_Key
+ Name: Piano Key
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7905
+ AegisName: Rok_Star_Badge_
+ Name: Rok Star Badge
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 7906
+ AegisName: Poppy_Wreath
+ Name: Poppy Wreath
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7907
+ AegisName: Bobbin_Of_Goddess
+ Name: Bobbin Of Goddess
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7908
+ AegisName: Louis_Hair_Coupon
+ Name: Louise's Beauty Coupon
+ Type: Etc
+ Weight: 10
+ - Id: 7909
+ AegisName: Stolen_Cookie
+ Name: Stolen Cookie
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7910
+ AegisName: Stolen_Candy
+ Name: Stolen Candy
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7911
+ AegisName: Yulia_Hat
+ Name: Yulia's Hat
+ Type: Etc
+ Weight: 10
+ - Id: 7912
+ AegisName: Portable_Snowman
+ Name: Portable Snowman Machine
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7913
+ AegisName: Test_Certificate
+ Name: Battle Test Certificate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7914
+ AegisName: Ancient_Document_TW
+ Name: Ancient Language Document
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7915
+ AegisName: Copper_Coin_
+ Name: Bronze Coin
+ Type: Etc
+ Weight: 10
+ - Id: 7916
+ AegisName: Silver_Coin_
+ Name: Silver Coin
+ Type: Etc
+ Weight: 10
+ - Id: 7917
+ AegisName: Magic_Potion
+ Name: Magic Potion
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7918
+ AegisName: Particle_Of_Memory
+ Name: Fragment Of Memory
+ Type: Etc
+ Buy: 2000
+ Weight: 100
+ - Id: 7919
+ AegisName: Festival_Ticket
+ Name: Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7920
+ AegisName: Hero's_Arsenal
+ Name: He's Arsenal
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7921
+ AegisName: Essence_Of_Dragon
+ Name: Essence Of Dragon
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 7922
+ AegisName: RWC_Ticket
+ Name: RWC Voucher Items
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7923
+ AegisName: KRATHONG_
+ Name: Krathong
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7924
+ AegisName: Gold_Paper
+ Name: Gold Paper
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7925
+ AegisName: Silver_Paper
+ Name: Silver Paper
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7926
+ AegisName: Incense
+ Name: Incense
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7927
+ AegisName: Candle_TW
+ Name: Candle TW
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 7928
+ AegisName: Brazilian_Flag_
+ Name: Brazil National Flag
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7929
+ AegisName: Golden_Coin_
+ Name: Gold Coin
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7930
+ AegisName: Cowking's_Nose_Ring
+ Name: Devil's Cattle Ring
+ Type: Etc
+ Weight: 1000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7931
+ AegisName: Poison_Kit
+ Name: Poison Kit
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7932
+ AegisName: Poison_Herb_Nerium
+ Name: Poison Herb Nerium
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7933
+ AegisName: Poison_Herb_Rantana
+ Name: Poison Herb Rantana
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7934
+ AegisName: Poison_Herb_Makulata
+ Name: Poison Herb Makulata
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7935
+ AegisName: Poison_Herb_Seratum
+ Name: Poison Herb Seratum
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7936
+ AegisName: Poison_Herb_Scopolia
+ Name: Poison Herb Scoporia
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7937
+ AegisName: Poison_Herb_Amoena
+ Name: Poison Herb Amoena
+ Type: Etc
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7938
+ AegisName: Light_Granule
+ Name: Light Granule
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7939
+ AegisName: Elder_Branch
+ Name: Elder Branch
+ Type: Etc
+ Buy: 1500
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 7940
+ AegisName: Special_Alloy_Trap
+ Name: Special Alloy Trap
+ Type: Etc
+ Buy: 300
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ - Id: 7941
+ AegisName: Halloween_Ticket
+ Name: Halloween Ticket
+ Type: Etc
+ Buy: 10
+ - Id: 7942
+ AegisName: Letter_From_Chico
+ Name: Chico Cesar Letter
+ Type: Etc
+ - Id: 7943
+ AegisName: Caskinya
+ Name: Caskinya
+ Type: Etc
+ - Id: 7944
+ AegisName: Sealed_Box
+ Name: Sealed Box
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7945
+ AegisName: Almighty_Charm
+ Name: Universal Amulet
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7946
+ AegisName: Valentine_Gold_Ring
+ Name: Gold Ring Of Valentine
+ Type: Etc
+ Buy: 10
+ - Id: 7947
+ AegisName: Valentine_Silver_Ring
+ Name: Silver Ring Of Valentine
+ Type: Etc
+ Buy: 10
+ - Id: 7948
+ AegisName: Box
+ Name: Box
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ - Id: 7949
+ AegisName: Woven_Wool
+ Name: Woven Wool
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7950
+ AegisName: Ayothaya_Ticket
+ Name: Ayothaya Fest Ticket
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7951
+ AegisName: Gold_Tulip
+ Name: Golden Tulip Flower
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7952
+ AegisName: Gift_From_Romiros
+ Name: Gift Of Lomi Ross
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7953
+ AegisName: Gift_From_Juliedge
+ Name: Gift Of Juliet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7954
+ AegisName: Festival_Ticket_
+ Name: Summer Festival Ticket
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7955
+ AegisName: Lost_Card1
+ Name: Lost Card1
+ Type: Etc
+ Buy: 10
+ - Id: 7956
+ AegisName: Lost_Card2
+ Name: Lost Card2
+ Type: Etc
+ Buy: 10
+ - Id: 7957
+ AegisName: Lost_Card3
+ Name: Lost Card3
+ Type: Etc
+ Buy: 10
+ - Id: 7958
+ AegisName: Lost_Card4
+ Name: Lost Card4
+ Type: Etc
+ Buy: 10
+ - Id: 7959
+ AegisName: Ancient_Gold_Coin
+ Name: Ancient Gold Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 7960
+ AegisName: Ancient_Silver_Coin
+ Name: Ancient Silver Coin
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ - Id: 7961
+ AegisName: Weapon_Exchange
+ Name: Weapon Exchange
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7962
+ AegisName: Treasure_Map1
+ Name: Treasure Map1
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7963
+ AegisName: Treasure_Map2
+ Name: Treasure Map2
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7964
+ AegisName: Treasure_Map3
+ Name: Treasure Map3
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7965
+ AegisName: Treasure_Map4
+ Name: Treasure Map4
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7966
+ AegisName: Weird_Parchment1
+ Name: Weird Parchment1
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7967
+ AegisName: Weird_Parchment2
+ Name: Weird Parchment2
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7968
+ AegisName: Weird_Parchment3
+ Name: Weird Parchment3
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7969
+ AegisName: Weird_Parchment4
+ Name: Weird Parchment4
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 7970
+ AegisName: Unwritten_Letter1
+ Name: Unwritten Letter1
+ Type: Etc
+ - Id: 7971
+ AegisName: Unwritten_Letter2
+ Name: Unwritten Letter2
+ Type: Etc
+ - Id: 7972
+ AegisName: Oath_Day_Letter
+ Name: Oath Day Letter
+ Type: Etc
+ - Id: 7973
+ AegisName: Immortality_Egg
+ Name: Immortality Egg
+ Type: Etc
+ Buy: 20
+ - Id: 7974
+ AegisName: Illusion_Piece
+ Name: Illusion Piece
+ Type: Etc
+ Buy: 20
+ - Id: 7975
+ AegisName: Cupid_Choco
+ Name: Cupid Choco
+ Type: Etc
+ - Id: 7976
+ AegisName: Gf_Magic_Coin
+ Name: Gf Magic Coin
+ Type: Etc
+ Buy: 20
+ - Id: 7977
+ AegisName: Hunting_Medal_Badge
+ Name: Hunting Medal Badge
+ Type: Etc
+ - Id: 7978
+ AegisName: Spring_Stanza1
+ Name: Spring Stanza1
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7979
+ AegisName: Spring_Stanza2
+ Name: Spring Stanza2
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7980
+ AegisName: Spring_Stanza3
+ Name: Spring Stanza3
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7981
+ AegisName: Spring_Stanza4
+ Name: Spring Stanza4
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7982
+ AegisName: Spring_Stanza5
+ Name: Spring Stanza5
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7983
+ AegisName: Spring_Stanza6
+ Name: Spring Stanza6
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7984
+ AegisName: Spring_Stanza7
+ Name: Spring Stanza7
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7985
+ AegisName: Spring_Stanza8
+ Name: Spring Stanza8
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7986
+ AegisName: Spring_Stanza9
+ Name: Spring Stanza9
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7987
+ AegisName: Spring_Stanza10
+ Name: Spring Stanza10
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7988
+ AegisName: Spring_Stanza11
+ Name: Spring Stanza11
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7989
+ AegisName: Spring_Stanza12
+ Name: Spring Stanza12
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7990
+ AegisName: Spring_Stanza13
+ Name: Spring Stanza13
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7991
+ AegisName: Spring_Stanza14
+ Name: Spring Stanza14
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7992
+ AegisName: Spring_Stanza15
+ Name: Spring Stanza15
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7993
+ AegisName: Spring_Stanza16
+ Name: Spring Stanza16
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7994
+ AegisName: Spring_Stanza17
+ Name: Spring Stanza17
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7995
+ AegisName: Spring_Stanza18
+ Name: Spring Stanza18
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7996
+ AegisName: Spring_Stanza19
+ Name: Spring Stanza19
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7997
+ AegisName: Spring_Stanza20
+ Name: Spring Stanza20
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7998
+ AegisName: Spring_Stanza21
+ Name: Spring Stanza21
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 7999
+ AegisName: Spring_Stanza22
+ Name: Spring Stanza22
+ Type: Etc
+ Buy: 2
+ Weight: 10
+ - Id: 11000
+ AegisName: Prontera_Book_01
+ Name: History book of Prontera
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11001
+ AegisName: Adventure_Story01
+ Name: Adventure Story Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11002
+ AegisName: Great_Chef_Orleans01
+ Name: Chef King Orleans Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11003
+ AegisName: Legend_Of_Kafra01
+ Name: Kafra Legend Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11004
+ AegisName: Mercenary_Rebellion
+ Name: Old Book
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11005
+ AegisName: Tyrant_Schmidt
+ Name: Rune Royal Family Book
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11006
+ AegisName: Blood_Flower01
+ Name: Blood Flower Vol.1
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11007
+ AegisName: Blood_Flower02
+ Name: Blood Flower Vol.2
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11008
+ AegisName: Barmund
+ Name: Biographical Dictionary Copy Edition
+ Type: Etc
+ Buy: 10000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11009
+ AegisName: Adventure_Story02
+ Name: Adventure Story Vol.2
+ Type: Etc
+ Buy: 8000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11010
+ AegisName: Reward_List_Book
+ Name: Battlegrounds Catalog
+ Type: Etc
+ Weight: 10
+ - Id: 11011
+ AegisName: Barmund_Note
+ Name: Varmunt's Note
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11012
+ AegisName: Expedition_Report
+ Name: Expedition Report
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11013
+ AegisName: Expedition_Report_Vol1
+ Name: Expedition Report Vol1
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11014
+ AegisName: Expedition_Report_Vol2
+ Name: Expedition Report Vol2
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11015
+ AegisName: Expedition_Report_Vol3
+ Name: Expedition Report Vol3
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11016
+ AegisName: Expedition_Report_Vol4
+ Name: Expedition Report Vol4
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11017
+ AegisName: Reward_List_Book2
+ Name: KVM Reward Items Catalog
+ Type: Etc
+ Weight: 10
+ - Id: 11018
+ AegisName: Splendide_Selling_Item
+ Name: Splendide Selling Item
+ Type: Etc
+ Weight: 10
+ - Id: 11019
+ AegisName: Manuk_Selling_Item
+ Name: Manuk Selling Item
+ Type: Etc
+ Weight: 10
+ - Id: 11020
+ AegisName: Japan_Book1
+ Name: Japan Book1
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11021
+ AegisName: Japan_Book2
+ Name: Japan Book2
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11022
+ AegisName: Mix_Cook_Book
+ Name: Mix Cook Book
+ Type: Etc
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 11023
+ AegisName: Increase_Stamina_Study
+ Name: Increase Stamina Study
+ Type: Etc
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 11024
+ AegisName: Vital_Drink_CB
+ Name: Vital Drink CB
+ Type: Etc
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ - Id: 11025
+ AegisName: Swordman_Book_Basic
+ Name: Swordman Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11026
+ AegisName: Swordman_Book_Practice
+ Name: Swordman Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11027
+ AegisName: Swrodman_Book_Misc
+ Name: Swrodman Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11028
+ AegisName: Thief_Book_Basic
+ Name: Thief Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11029
+ AegisName: Thief_Book_Practice
+ Name: Thief Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11030
+ AegisName: Thief_Book_Misc
+ Name: Thief Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11031
+ AegisName: Archer_Book_Basic
+ Name: Archer Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11032
+ AegisName: Archer_Book_Practice
+ Name: Archer Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11033
+ AegisName: Archer_Book_Misc
+ Name: Archer Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11034
+ AegisName: Acol_Book_Basic
+ Name: Acol Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11035
+ AegisName: Acol_Book_Practice
+ Name: Acol Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11036
+ AegisName: Acol_Book_Misc
+ Name: Acol Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11037
+ AegisName: Mage_Book_Basic
+ Name: Mage Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11038
+ AegisName: Mage_Book_Practice
+ Name: Mage Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11039
+ AegisName: Mage_Book_Misc
+ Name: Mage Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11040
+ AegisName: Mer_Book_Basic
+ Name: Mer Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11041
+ AegisName: Mer_Book_Practice
+ Name: Mer Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11042
+ AegisName: Mer_Book_Misc
+ Name: Mer Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11043
+ AegisName: TK_Book_Basic
+ Name: TK Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11044
+ AegisName: TK_Book_Practice
+ Name: TK Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11045
+ AegisName: TK_Book_Misc
+ Name: TK Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11046
+ AegisName: Ninja_Book_Basic
+ Name: Ninja Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11047
+ AegisName: Ninja_Book_Practice
+ Name: Ninja Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11048
+ AegisName: Ninja_Book_Misc
+ Name: Ninja Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11049
+ AegisName: Gun_Book_Basic
+ Name: Gun Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11050
+ AegisName: Gun_Book_Practice
+ Name: Gun Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11051
+ AegisName: Gun_Book_Misc
+ Name: Gun Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11052
+ AegisName: SN_Book_Basic
+ Name: SN Book Basic
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11053
+ AegisName: SN_Book_Practice
+ Name: SN Book Practice
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11054
+ AegisName: SN_Book_Misc
+ Name: SN Book Misc
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11055
+ AegisName: Basic_Adventure
+ Name: Basic Adventure
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11056
+ AegisName: Elemental_Spirit_Guide
+ Name: Elemental Spirit Guide
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 11057
+ AegisName: Feb_Sweets
+ Name: February Sweets
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ - Id: 11058
+ AegisName: Novice_Combi_Book
+ Name: Novice Combi Book
+ Type: Etc
+ Weight: 10
+ - Id: 11059
+ AegisName: WoE_TE_Rental_List
+ Name: WoE TE Rental List
+ Type: Etc
+ Weight: 10
+ - Id: 11060
+ AegisName: Energy_Xtal_Combi_Book
+ Name: Energy Crystal Book
+ Type: Etc
+ Weight: 10
+ - Id: 11061
+ AegisName: Honor_Proof_Exchange_List
+ Name: Honor Proof Exchange List
+ Type: Etc
+ Buy: 20
+ Weight: 10
+ - Id: 11575
+ AegisName: Lucky_Cookie_B
+ Name: Lucky Cookie
+ Type: Etc
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11576
+ AegisName: Lucky_Candy_Cane_B
+ Name: Lucky Lollipop
+ Type: Etc
+ Buy: 10
+ Weight: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 11579
+ AegisName: Lucky_Candy_B
+ Name: Lucky Candy
+ Type: Etc
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13200
+ AegisName: Bullet
+ Name: Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 1
+ Weight: 1
+ Attack: 25
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 13201
+ AegisName: Silver_Bullet
+ Name: Surplus Silver Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 15
+ Weight: 2
+ Attack: 15
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13202
+ AegisName: Shell_Of_Blood
+ Name: Surplus Bloody Shell
+ Type: Ammo
+ SubType: Bullet
+ Buy: 30
+ Weight: 2
+ Attack: 30
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13203
+ AegisName: Flare_Sphere
+ Name: Surplus Flare Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13204
+ AegisName: Lighting_Sphere
+ Name: Surplus Lightning Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13205
+ AegisName: Poison_Sphere
+ Name: Surplus Poison Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,500;
+ - Id: 13206
+ AegisName: Blind_Sphere
+ Name: Surplus Blind Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 13207
+ AegisName: Freezing_Sphere
+ Name: Surplus Freezing Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 80
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13208
+ AegisName: Gong_Bug
+ Name: Sow Bug
+ Type: Ammo
+ SubType: Bullet
+ Weight: 5
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 13210
+ AegisName: Slug_Bullet_1
+ Name: Slug Ammunition L
+ Type: Ammo
+ SubType: Bullet
+ Buy: 250
+ Weight: 250
+ Attack: 30
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ - Id: 13211
+ AegisName: Slug_Bullet_2
+ Name: Slug Ammunition M
+ Type: Ammo
+ SubType: Bullet
+ Buy: 500
+ Weight: 500
+ Attack: 30
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ - Id: 13212
+ AegisName: Slug_Bullet_3
+ Name: Slug Ammunition H
+ Type: Ammo
+ SubType: Bullet
+ Buy: 750
+ Weight: 750
+ Attack: 30
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ - Id: 13213
+ AegisName: Slug_Bullet_4
+ Name: Slug Ammunition SH
+ Type: Ammo
+ SubType: Bullet
+ Buy: 1000
+ Weight: 1000
+ Attack: 30
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ - Id: 13214
+ AegisName: Slug_Bullet_5
+ Name: Slug Ammunition XH
+ Type: Ammo
+ SubType: Bullet
+ Buy: 1200
+ Weight: 1200
+ Attack: 30
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ - Id: 13215
+ AegisName: AP_Ammo
+ Name: Armor-Piercing Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 15
+ Weight: 1
+ Attack: 50
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ - Id: 13216
+ AegisName: Blaze_Bullet
+ Name: Blazing Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13217
+ AegisName: Freezing_Bullet
+ Name: Freezing Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13218
+ AegisName: Electric_Shock_Bullet
+ Name: Lightning Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13219
+ AegisName: Magical_Stone_Bullet
+ Name: Magic Stone Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 13220
+ AegisName: Sanctified_Bullet
+ Name: Purifying Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 40
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13221
+ AegisName: Silver_Bullet_
+ Name: Silver Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 5
+ Weight: 1
+ Attack: 15
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 13222
+ AegisName: Shell_Of_Blood_
+ Name: Bloody Shell
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus2 bAddEff,Eff_Bleeding,100;
+ - Id: 13223
+ AegisName: Flare_Sphere_
+ Name: Flare Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 15
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13224
+ AegisName: Lighting_Sphere_
+ Name: Lightning Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 15
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13225
+ AegisName: Poison_Sphere_
+ Name: Poison Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 15
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ - Id: 13226
+ AegisName: Blind_Sphere_
+ Name: Blind Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 15
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 13227
+ AegisName: Freezing_Sphere_
+ Name: Freezing Sphere
+ Type: Ammo
+ SubType: Grenade
+ Buy: 15
+ Weight: 5
+ Attack: 50
+ Classes:
+ All: false
+ Locations:
+ Ammo: true
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13228
+ AegisName: Flare_Bullet
+ Name: Flare Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 20
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13229
+ AegisName: Lightning_Bullet
+ Name: Lightning Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 20
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13230
+ AegisName: Ice_Bullet
+ Name: Ice Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 20
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13231
+ AegisName: Poison_Bullet
+ Name: Poison Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 20
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,500;
+ - Id: 13232
+ AegisName: Blind_Bullet
+ Name: Blind Bullet
+ Type: Ammo
+ SubType: Bullet
+ Buy: 10
+ Weight: 1
+ Attack: 20
+ Jobs:
+ Gunslinger: true
+ Rebellion: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ bonus2 bAddEff,Eff_Blind,500;
+ - Id: 13250
+ AegisName: Shuriken
+ Name: Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 4
+ Weight: 1
+ Attack: 10
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ - Id: 13251
+ AegisName: Nimbus_Shuriken
+ Name: Nimbus Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 20
+ - Id: 13252
+ AegisName: Flash_Shuriken
+ Name: Flash Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 20
+ Weight: 1
+ Attack: 45
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 40
+ - Id: 13253
+ AegisName: Sharp_Leaf_Shuriken
+ Name: Sharp Leaf Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 40
+ Weight: 1
+ Attack: 70
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 60
+ - Id: 13254
+ AegisName: Thorn_Needle_Shuriken
+ Name: Thorn Needle Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Buy: 100
+ Weight: 1
+ Attack: 100
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 80
+ - Id: 13255
+ AegisName: Kunai_Of_Icicle
+ Name: Icicle Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 13256
+ AegisName: Kunai_Of_Black_Soil
+ Name: Black Earth Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 13257
+ AegisName: Kunai_Of_Furious_Wind
+ Name: High Wind Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 13258
+ AegisName: Kunai_Of_Fierce_Flame
+ Name: Heat Wave Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 13259
+ AegisName: Kunai_Of_Deadly_Poison
+ Name: Fell Poison Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 1
+ Attack: 30
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ bonus2 bAddEff,Eff_Poison,500;
+ - Id: 13260
+ AegisName: Apple_Bomb
+ Name: Apple Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13261
+ AegisName: Coconut_Bomb
+ Name: Coconut Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13262
+ AegisName: Melon_Bomb
+ Name: Melon Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13263
+ AegisName: Pineapple_Bomb
+ Name: Pineapple Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13264
+ AegisName: Banana_Bomb
+ Name: Banana Bomb
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 1
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13265
+ AegisName: Black_Lump
+ Name: Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13266
+ AegisName: Black_Hard_Lump
+ Name: Hard Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13267
+ AegisName: Very_Hard_Lump
+ Name: Extremely Hard Black Lump
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 13268
+ AegisName: Mysterious_Powder
+ Name: Mysterious Powder
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MYSTERIOUS_POWDER,10000,2;
+ - Id: 13269
+ AegisName: Boost500_To_Throw
+ Name: Throwing Boost 500
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_BOOST500,500000,10;
+ - Id: 13270
+ AegisName: Full_SwingK_To_Throw
+ Name: Throwing Full Swing K
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_FULL_SWING_K,500000,50;
+ - Id: 13271
+ AegisName: Mana_Plus_To_Throw
+ Name: Throwing Mana Plus
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MANA_PLUS,500000,50;
+ - Id: 13272
+ AegisName: Cure_Free_To_Throw
+ Name: Throwing Cure Free
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ 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;
+ - Id: 13273
+ AegisName: Stamina_Up_M_To_Throw
+ Name: Throwing Muramura M
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MUSTLE_M,500000,5;
+ - Id: 13274
+ AegisName: Digestive_F_To_Throw
+ Name: Throwing Falmons F
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 10
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_LIFE_FORCE_F,500000,5;
+ - Id: 13275
+ AegisName: HP_Inc_PotS_To_Throw
+ Name: Throwing Increase HP Potion (Small)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13276
+ AegisName: HP_Inc_PotM_To_Throw
+ Name: Throwing Increase HP Potion (Medium)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 40
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13277
+ AegisName: HP_Inc_PotL_To_Throw
+ Name: Throwing Increase HP Potion (Large)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 80
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13278
+ AegisName: SP_Inc_PotS_To_Throw
+ Name: Throwing Increase SP Potion (Small)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13279
+ AegisName: SP_Inc_PotM_To_Throw
+ Name: Throwing Increase SP Potion (Medium)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 40
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13280
+ AegisName: SP_Inc_PotL_To_Throw
+ Name: Throwing Increase SP Potion (Large)
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 80
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ /* Item bonus in source because of BaseLevel check */
+ - Id: 13281
+ AegisName: En_White_PotZ_To_Throw
+ Name: Throwing Concentrated White Potion Z
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 70
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20;
+ itemheal 1000,0;
+ - Id: 13282
+ AegisName: Vitata500_To_Throw
+ Name: Throwing Vitata 500
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start2 SC_VITATA_500,500000,20,5;
+ itemheal 0,200;
+ - Id: 13283
+ AegisName: En_Cel_Juice_To_Throw
+ Name: Throwing Ceromain Soup
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;
+ - Id: 13284
+ AegisName: Savage_BBQ_To_Throw
+ Name: Throwing Savage Full Roast
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_SAVAGE_STEAK,300000,20;
+ - Id: 13285
+ AegisName: Wug_Cocktail_To_Throw
+ Name: Throwing Cocktail Warg Blood
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;
+ - Id: 13286
+ AegisName: M_Brisket_To_Throw
+ Name: Throwing Minor Stew
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_MINOR_BBQ,300000,20;
+ - Id: 13287
+ AegisName: Siroma_Icetea_To_Throw
+ Name: Throwing Siroma Iced Tea
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_SIROMA_ICE_TEA,300000,20;
+ - Id: 13288
+ AegisName: Drocera_Stew_To_Throw
+ Name: Throwing Drosera Herb Salad
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_DROCERA_HERB_STEAMED,300000,20;
+ - Id: 13289
+ AegisName: Petti_Noodle_To_Throw
+ Name: Throwing Petite Tail Soup
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_PUTTI_TAILS_NOODLES,300000,20;
+ - Id: 13290
+ AegisName: Black_Thing_To_Throw
+ Name: Throwing Black Mass
+ Type: Ammo
+ SubType: Throwweapon
+ Buy: 100
+ Weight: 50
+ Jobs:
+ Alchemist: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ sc_start SC_STOMACHACHE,60000,rand(5,10);
+ - Id: 13291
+ AegisName: Starfish
+ Name: Starfish
+ Type: Ammo
+ SubType: Shuriken
+ Weight: 5
+ Attack: 110
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 13292
+ AegisName: Dried_Squid
+ Name: Dried Squid
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 50
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ bonus2 bAddEff,Eff_Stun,1000;
+ - Id: 13293
+ AegisName: Flying_Fish
+ Name: Flying Fish
+ Type: Ammo
+ SubType: Kunai
+ Buy: 10
+ Weight: 20
+ Attack: 50
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3;
+ - Id: 13294
+ AegisName: Explosive_Kunai
+ Name: Explosive Kunai
+ Type: Ammo
+ SubType: Kunai
+ Buy: 100
+ Weight: 1
+ Attack: 50
+ Jobs:
+ KagerouOboro: true
+ Ninja: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 100
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ - Id: 13295
+ AegisName: Light_Shuriken
+ Name: Light Shuriken
+ Type: Ammo
+ SubType: Shuriken
+ Weight: 5
+ Attack: 5
+ Locations:
+ Ammo: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16570
+ AegisName: Muscles_Story_J_Box
+ Name: Muscle Knights Summertime Guide Box
+ Type: Etc
+ - Id: 17438
+ AegisName: Three_Master_Package_II
+ Name: Three Master Package II
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* TODO */
+ - Id: 17439
+ AegisName: Three_Master_Package_II10
+ Name: Three Master Package II(10)
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* TODO */
+ - Id: 18000
+ AegisName: Cannon_Ball
+ Name: Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 100
+ Weight: 1
+ Attack: 100
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 18001
+ AegisName: Holy_Cannon_Ball
+ Name: Holy Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 1
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 18002
+ AegisName: Dark_Cannon_Ball
+ Name: Dark Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 1
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 18003
+ AegisName: Soul_Cannon_Ball
+ Name: Soul Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 200
+ Weight: 1
+ Attack: 120
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 18004
+ AegisName: Iron_Cannon_Ball
+ Name: Iron Cannon Ball
+ Type: Ammo
+ SubType: Cannonball
+ Buy: 500
+ Weight: 1
+ Attack: 250
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Locations:
+ Ammo: true
+ EquipLevelMin: 99
+ - Id: 22519
+ AegisName: Pc_Stop
+ Name: Stops Buff
+ Type: Etc
+ Buy: 10
+ - Id: 22520
+ AegisName: Stops_Buff_Reset
+ Name: Stops Buff Reset
+ Type: Etc
+ Buy: 10
+ - Id: 22566
+ AegisName: Frost_Crystal
+ Name: Last Year's Frost
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ - Id: 22589
+ AegisName: Savage_Ora
+ Name: Savage Ora Ora
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22590
+ AegisName: Grand_Peco_Ora
+ Name: Grand Peco Ora Ora
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22591
+ AegisName: Dest_Wolf_Ora
+ Name: Desert Wolf Ora Ora
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22654
+ AegisName: Golden_Seal_Card
+ Name: Golden Seal Card
+ Type: Etc
+ Buy: 20
+ Weight: 50
+ - Id: 22717
+ AegisName: Wanderer_Ball
+ Name: Wanderer Ball
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22718
+ AegisName: Lude_Ball
+ Name: Lude Ball
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22719
+ AegisName: Tatacho_Ball
+ Name: Tatacho Ball
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22720
+ AegisName: Novus_Ball
+ Name: Novus Ball
+ Type: Etc
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22802
+ AegisName: Safe_to_6_Equipment_Certificate
+ Name: Safe to 6 Equipment Certificate
+ Type: Etc
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22814
+ AegisName: Cat_Hand_Ticket
+ Name: Cat Hand Ticket
+ Type: Etc
+ Buy: 10
+ - Id: 22870
+ AegisName: Xmas_Package_14
+ Name: Christmas Package
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22875
+ AegisName: Sealed_Beelzebub_Card
+ Name: Sealed Beelzebub Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus bVariableCastrate,-15;
+ /*Item removed on 2014-12-17*/
+ - Id: 25000
+ AegisName: SPdrainStone_Top
+ Name: SP Absorption Stone(Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25001
+ AegisName: DEFStone_Middle
+ Name: Def Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25002
+ AegisName: ChangeLUK_Middle
+ Name: LUK Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25003
+ AegisName: ChangeSTR_Middle
+ Name: STR Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25004
+ AegisName: ChangeAGI_Middle
+ Name: AGI Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25005
+ AegisName: ChangeINT_Middle
+ Name: INT Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25006
+ AegisName: ChangeVIT_Middle
+ Name: VIT Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25007
+ AegisName: ChangeDEX_Middle
+ Name: DEX Exchange Stone(Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25008
+ AegisName: ChangeVIT_Bottom
+ Name: VIT Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25009
+ AegisName: ChangeAGI_Bottom
+ Name: AGI Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25010
+ AegisName: ChangeDEX_Bottom
+ Name: DEX Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25011
+ AegisName: ChangeLUK_Bottom
+ Name: LUK Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25012
+ AegisName: ChangeSTR_Bottom
+ Name: STR Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25013
+ AegisName: ChangeINT_Bottom
+ Name: INT Exchange Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25014
+ AegisName: MDEFStone_Bottom
+ Name: Mdef Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25015
+ AegisName: EXPStone_Bottom
+ Name: EXP Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25016
+ AegisName: ATKStone_Bottom
+ Name: ATK Stone(Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 25017
+ AegisName: MATKStone_Bottom
+ 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
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25044
+ AegisName: Hard_Thorny_Vine
+ Name: Hard Thorny Vine
+ Type: Etc
+ Weight: 10
+ - Id: 25045
+ AegisName: Luxurious_Cloth
+ Name: Luxurious Cloth
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25046
+ AegisName: Boarding_Pass
+ Name: Boarding Pass
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25047
+ AegisName: Kahlunac
+ Name: Kahlunac
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25048
+ AegisName: Hearty_Lunchbox
+ Name: Hearty Lunchbox
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25049
+ AegisName: Basilac_Clam
+ Name: Basilac Clam
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ 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)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25059
+ AegisName: GhostEffect_Middle
+ Name: Ghost Effect (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25060
+ AegisName: Critical_Stone
+ Name: Critical Stone (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25061
+ AegisName: Range_Stone
+ Name: Range Stone (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25062
+ AegisName: Greed_Stone
+ Name: Greed Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25063
+ AegisName: MaxHP2_Stone
+ Name: Health Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25064
+ AegisName: MaxSP2_Stone
+ Name: Magic Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25065
+ AegisName: Detoxify_Stone
+ Name: Detoxify Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25066
+ AegisName: Recovery_Stone
+ Name: Recovery Stone (Lower)
+ Type: Card
+ Buy: 20
+ Weight: 100
+ - Id: 25067
+ AegisName: CastingStone_Robe
+ Name: Casting Stone (Garment)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25068
+ AegisName: ASPDStone_Top
+ Name: ASPD Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25069
+ AegisName: ReloadStone_Top
+ Name: Reload Stone (Upper)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25070
+ AegisName: ReloadStone_Middle
+ Name: Reload Stone (Middle)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25071
+ AegisName: ReloadStone_Bottom
+ Name: Reload Stone (Lower)
+ Type: Etc
+ Buy: 10
+ Weight: 100
+ - Id: 25072
+ AegisName: Kyrie_Stone
+ Name: Kyrie Stone (Lower)
+ 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
+ Type: Etc
+ - Id: 25128
+ AegisName: Weak_Energy_Particle
+ Name: Weak Energy Particle
+ Type: Etc
+ - Id: 25129
+ AegisName: Unstable_Energy_Particle
+ Name: Unstable Energy Particle
+ Type: Etc
+ - Id: 25130
+ AegisName: Sinister_Energy_Particle
+ Name: Sinister Energy Particle
+ Type: Etc
+ - Id: 25131
+ AegisName: Fallen_Energy_Particle
+ Name: Fallen Energy Particle
+ Type: Etc
+ - Id: 25132
+ AegisName: Pumpkin_Deco
+ Name: Pumpkin Deco
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25133
+ AegisName: Dried_White_Stem
+ Name: Dried White Stem
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25137
+ AegisName: GreenFloor_Bottom
+ Name: Green Floor (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25138
+ AegisName: ShrinkEffect_Middle
+ Name: Shrink Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25139
+ AegisName: Identify_Stone
+ Name: Identify Stone (Bottom)
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25142
+ AegisName: Doram_Token
+ Name: Doram Token
+ Type: Etc
+ - Id: 25143
+ AegisName: Gift_Stuffed_Doll
+ Name: Gift Stuffed Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25144
+ AegisName: Bridge_Postured_Doll
+ Name: Bridge Postured Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25145
+ AegisName: Burnt_Spector_Doll
+ Name: Burnt Spector Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25146
+ AegisName: Cold_Blooded_Queen_Doll
+ Name: Cold Blooded Queen Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25147
+ AegisName: Well_Eatenl_Rabbit_Doll
+ Name: Well Eatenl Rabbit Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25148
+ AegisName: Cute_Starved_Demon_Doll
+ Name: Cute Starved Demon Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25149
+ AegisName: Doll_With_Warm_Scarf
+ Name: Doll With Warm Scarf
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25150
+ AegisName: Hugging_Alice_Pilow
+ Name: Hugging Alice Pilow
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25151
+ AegisName: Rachels_Revolver
+ Name: Rachel's Revolver
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25152
+ AegisName: Cherish_Bouquet
+ Name: Cherished Bouquet
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25153
+ AegisName: Broken_Gun_Wreck
+ Name: Broken Gun Wreck
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25154
+ AegisName: Antique_Powder
+ Name: Antique Gunpowder
+ Type: Etc
+ Weight: 10
+ - Id: 25155
+ AegisName: Swz_Honor_Token
+ Name: Schwarz's Honor Token
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25156
+ AegisName: Piece_Of_Chimera
+ Name: Piece of Chimera
+ Type: Etc
+ Weight: 10
+ - Id: 25157
+ AegisName: Fallen_Leaves_Branch
+ Name: Fallen Leaves Branch
+ Type: Etc
+ Weight: 10
+ - Id: 25158
+ AegisName: Core_Jelly
+ Name: Core Jelly
+ Type: Etc
+ Weight: 10
+ - Id: 25159
+ AegisName: Heart_Hunter_Seal
+ Name: Heart Hunter's Seal
+ Type: Etc
+ Weight: 10
+ - Id: 25160
+ AegisName: Borrow_Book
+ Name: Borrowed Book
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25161
+ AegisName: Handmade_cookie2
+ Name: Delicious Handmade Cookie
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25162
+ AegisName: Anchovy_cookie
+ Name: Crispy Anchovy
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25163
+ AegisName: Arms_Shop_AD
+ Name: Arms Shop Ad
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25164
+ AegisName: Fresh_Tea_Leaves
+ Name: Fresh Tea Leaves
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25165
+ AegisName: High_Class_Tea
+ Name: High Class Tea
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25166
+ AegisName: Very_Shining_Ring
+ Name: Very Shining Ring
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25167
+ AegisName: Old_Letter
+ Name: Old Letter
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25171
+ AegisName: EXPStone_Top
+ Name: Experience Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25172
+ AegisName: CastingStone_Top
+ Name: Variable Casting Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25173
+ AegisName: CastingStone_Middle
+ Name: Variable Casting Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25174
+ AegisName: CastingStone_Bottom
+ Name: Variable Casting Stone (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25175
+ AegisName: LexAeternaStone_Middle
+ Name: Lex Aeterna Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25176
+ AegisName: BlueAuraEffect_Middle
+ Name: Blue Aura Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25177
+ AegisName: ShadowEffect_Middle
+ Name: Shadow Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25178
+ AegisName: PinkGlowEffect_Middle
+ Name: Pink Glow Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25179
+ AegisName: Blessing_Star
+ Name: Blessing Star
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25180
+ AegisName: Old_Couple_Ring
+ Name: Old Rings
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25181
+ AegisName: Wood_Rosary
+ Name: Wood Rosary
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25182
+ AegisName: Assassin_PT_Dagger
+ Name: Assassin's Mark Dagger
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25183
+ AegisName: Deco_Thimble_Archer
+ Name: Decorated Archer's Thimble
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25184
+ AegisName: Portable_Sewingbox
+ Name: Portable Sewingbox
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25185
+ AegisName: Locket_Pendant
+ Name: Locket Pendant
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25187
+ AegisName: Slug_Bullet
+ Name: Slug Bullet
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25206
+ AegisName: ElectricEffect_Top
+ Name: Electric Effect (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25207
+ AegisName: SPAbsorb_Stone_Top
+ Name: SPAbsorb Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25208
+ AegisName: SPAbsorb_Stone_Robe
+ Name: SPAbsorb Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25209
+ AegisName: HPAbsorb_Stone_Robe
+ Name: HPAbsorb Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25210
+ AegisName: HPAbsorb_Stone_Top
+ Name: HPAbsorb Stone (Upper)
+ 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
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25224
+ AegisName: WhiteBodyEffect_Middle
+ Name: White Body Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25225
+ AegisName: ExplodingEffect_Middle
+ Name: Exploding Effect (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25226
+ AegisName: WaterFieldEffect_Bottom
+ Name: Water Field Effect (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25227
+ AegisName: Heal_Stone
+ Name: Heal Stone (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25228
+ AegisName: Teleport_Stone
+ Name: Teleport Stone (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25229
+ AegisName: Steal_Stone
+ Name: Steal Stone (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25231
+ AegisName: Suspicious_Bottle
+ Name: Suspicious Bottle
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 25232
+ AegisName: Cheap_Lubricant
+ Name: Cheap Lubricant
+ Type: Etc
+ Buy: 1000
+ Weight: 10
+ - Id: 25233
+ AegisName: Cotton_Tufts
+ Name: Cotton Tufts
+ 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
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25239
+ AegisName: New_Advanced_Lubricant
+ Name: New Advanced Lubricant
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ 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
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25247
+ AegisName: Purple_Ore
+ Name: Purple Ore
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25248
+ AegisName: Purple_Ore_Crate
+ Name: Purple Ore Crate
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25249
+ AegisName: Buffalo_Bandit_Mane
+ Name: Buffalo Bandit Mane
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25250
+ 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
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25257
+ AegisName: Bloody_Love_Letter
+ Name: Bloody Love Letter
+ Type: Etc
+ Buy: 780
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25258
+ AegisName: Broken_Arrow
+ Name: Broken Arrow
+ Type: Etc
+ Buy: 550
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25259
+ AegisName: Recruitment_Leaflet
+ Name: Recruitment Leaflet
+ Type: Etc
+ Buy: 778
+ Weight: 10
+ - Id: 25260
+ AegisName: Fragment_of_Purple_Ore
+ Name: Fragment of Purple Ore
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25261
+ AegisName: Torn_Paper_
+ Name: Torn Paper
+ Type: Etc
+ Weight: 10
+ - Id: 25262
+ AegisName: Well-dried_Clover
+ Name: Well-dried Clover
+ Type: Etc
+ Weight: 10
+ - Id: 25263
+ AegisName: Short_Bat_Hair
+ Name: Short Bat Hair
+ Type: Etc
+ Weight: 10
+ - Id: 25264
+ AegisName: Cluster_of_Nightmares
+ Name: Cluster of Nightmares
+ Type: Etc
+ Weight: 10
+ - Id: 25265
+ AegisName: Shining_Spore
+ Name: Shining Spore
+ Type: Etc
+ Weight: 10
+ - Id: 25266
+ AegisName: Dried_Leaf_Of_Ygg
+ Name: Dried Yggdrasil Leaf
+ Type: Etc
+ Weight: 10
+ - Id: 25267
+ AegisName: Suspicious_Pentacle
+ 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
+ Type: Etc
+ Buy: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25272
+ AegisName: Illusion_Gemstone
+ 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
+ Type: Etc
+ Buy: 348
+ Weight: 10
+ - Id: 25277
+ AegisName: Deadly_Poison_Powder
+ Name: Deadly Poison Powder
+ Type: Etc
+ Buy: 644
+ Weight: 10
+ - Id: 25278
+ AegisName: Bandits_Scarf
+ Name: Bandit's Scarf
+ Type: Etc
+ Buy: 330
+ Weight: 10
+ - Id: 25279
+ AegisName: Crude_Ammo
+ Name: Crude Ammo
+ Type: Etc
+ Buy: 300
+ Weight: 10
+ - Id: 25280
+ AegisName: Broken_Shotgun
+ Name: Broken Shotgun
+ Type: Etc
+ Buy: 910
+ Weight: 10
+ - Id: 25281
+ AegisName: Crude_Scimitar
+ Name: Crude Scimitar
+ Type: Etc
+ Buy: 970
+ Weight: 10
+ - Id: 25282
+ AegisName: Worn_Revolver
+ Name: Worn Revolver
+ Type: Etc
+ Buy: 820
+ Weight: 10
+ - Id: 25283
+ AegisName: Brown_Muffler
+ Name: Brown Muffler
+ Type: Etc
+ Buy: 420
+ Weight: 10
+ - Id: 25284
+ AegisName: Swamp_Bug_Shell
+ Name: Swamp Bug Shell
+ Type: Etc
+ Buy: 230
+ Weight: 10
+ - Id: 25285
+ AegisName: Brown_Rat_Tail
+ Name: Brown Rat Tail
+ 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: 10
+ - Id: 25298
+ AegisName: Spirit_Jewel
+ Name: Spirit Jewel
+ Type: Etc
+ Weight: 10
+ - Id: 25299
+ AegisName: Snowball
+ Name: Snowball
+ Type: Etc
+ Weight: 10
+ - Id: 25300
+ AegisName: Ktullanux_Eye
+ Name: Ktullanux Eye
+ Type: Etc
+ Weight: 10
+ - Id: 25302
+ AegisName: DoubleAttack_Stone
+ Name: Double Attack Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25303
+ AegisName: Critical_Stone_Robe
+ Name: Critical Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25304
+ AegisName: Critical_Stone_Top
+ Name: Critical Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25305
+ AegisName: Critical_Stone_Bottom
+ Name: Critical Stone (Bottom)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25306
+ AegisName: CastStone_Robe
+ Name: Variable Casting Stone (Garment)
+ 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: 10
+ - Id: 25312
+ AegisName: Fine_Old_Doll
+ Name: Fine Old Doll
+ Type: Etc
+ Weight: 10
+ - Id: 25313
+ AegisName: Old_Shell
+ Name: Old Shell
+ Type: Etc
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25410
+ AegisName: SuraStone_Middle
+ Name: Champion Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25411
+ AegisName: SuraStone_Bottom
+ Name: Champion Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25412
+ AegisName: SuraStone_Robe
+ Name: Sura Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25413
+ AegisName: RangerStone_Top
+ Name: Sniper Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25414
+ AegisName: RangerStone_Middle
+ Name: Sniper Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25415
+ AegisName: RangerStone_Bottom
+ Name: Sniper Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25416
+ AegisName: RangerStone_Robe
+ Name: Ranger Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25417
+ AegisName: SorcererStone_Top
+ Name: Scholar Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25418
+ AegisName: SorcererStone_Middle
+ Name: Scholar Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25419
+ AegisName: SorcererStone_Bottom
+ Name: Scholar Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25420
+ AegisName: SorcererStone_Robe
+ Name: Sorcerer Stone (Garment)
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25446
+ AegisName: RuneknightStone_Middle
+ Name: Lord Knight Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25447
+ AegisName: RuneknightStone_Bottom
+ Name: Lord Knight Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25448
+ AegisName: RuneknightStone_Robe
+ Name: Rune Knight Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25449
+ AegisName: GeneticStone_Robe
+ Name: Genetic Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25450
+ AegisName: GeneticStone_Top
+ Name: Creator Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25451
+ AegisName: GeneticStone_Middle
+ Name: Creator Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25452
+ AegisName: GeneticStone_Bottom
+ Name: Creator Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25453
+ AegisName: WarlockStone_Top
+ Name: High Wizard Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25454
+ AegisName: WarlockStone_Middle
+ Name: High Wizard Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25455
+ AegisName: WarlockStone_Bottom
+ Name: High Wizard Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25456
+ AegisName: WarlockStone_Robe
+ Name: Warlock Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25464
+ AegisName: World_Moving_Rights
+ Name: World Moving Rights
+ Type: Etc
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ 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)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25491
+ AegisName: ShadowchaseStone_Middle
+ Name: Stalker Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25492
+ AegisName: ShadowchaseStone_Bottom
+ Name: Stalker Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25493
+ AegisName: ShadowchaserStone_Robe
+ Name: Shadow Chaser Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25494
+ AegisName: MechanicStone_Top
+ Name: Mastersmith Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25495
+ AegisName: MechanicStone_Middle
+ Name: Mastersmith Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25496
+ AegisName: MechanicStone_Bottom
+ Name: Mastersmith Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25497
+ AegisName: MechanicStone_Robe
+ Name: Mechanic Stone (Garment)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25498
+ AegisName: WanderMinstrelStone_Top
+ Name: Clown Gypsy Stone (Upper)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25499
+ AegisName: WanderMinstrelStone_Middle
+ Name: Clown Gypsy Stone (Middle)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25500
+ AegisName: WanderMinstrelStone_Bottom
+ Name: Clown Gypsy Stone (Lower)
+ Type: Etc
+ Buy: 20
+ Weight: 100
+ - Id: 25501
+ AegisName: WanderMinstrelStone_Robe
+ Name: Wanderer Minstrel Stone (Garment)
+ 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: 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: 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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bVit,3;
+ - Id: 25673
+ AegisName: M_M_Luk
+ Name: Modification Module (Luk)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLuk,3;
+ - Id: 25674
+ AegisName: M_M_Str
+ Name: Modification Module (Str)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bStr,3;
+ - Id: 25675
+ AegisName: M_M_Agi
+ Name: Modification Module (Agi)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAgi,3;
+ - Id: 25676
+ AegisName: M_M_Int
+ Name: Modification Module (Int)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bInt,3;
+ - Id: 25677
+ AegisName: M_M_Dex
+ Name: Modification Module (Dex)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bDex,3;
+ - Id: 25678
+ AegisName: M_M_HP_recovery
+ Name: Modification Module (HP recovery)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bHPrecovRate,20;
+ - Id: 25679
+ AegisName: M_M_SP_recovery
+ Name: Modification Module (SP recovery)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bSPrecovRate,20;
+ - Id: 25680
+ AegisName: M_M_Spell5
+ Name: Modification Module (Spell)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bMatk,18;
+ bonus bVariableCastrate,-10;
+ - Id: 25681
+ AegisName: M_M_Attack_Delay_4
+ Name: Modification Module (Attack Speed)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bAspdRate,10;
+ - Id: 25682
+ AegisName: M_M_Fatal4
+ Name: Modification Module (Fatal)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus bCritical,4;
+ - Id: 25683
+ AegisName: M_M_Expert_Archer5
+ Name: Modification Module (Expert Archer)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 25684
+ AegisName: M_M_Vital
+ Name: Modification Module (Vital)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ 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;
+ }
+ - Id: 25688
+ AegisName: M_M_Magic
+ Name: Modification Module (Magic)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ .@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)
+ Type: Card
+ 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;
+ } }
+ - Id: 25696
+ AegisName: M_M_Drain_Life
+ Name: Modification Module (Drain Life)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus2 bHPDrainRate,20,2;
+ - Id: 25697
+ AegisName: M_M_Drain_Soul
+ Name: Modification Module (Drain Soul)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ bonus2 bSPDrainRate,10,1;
+ - Id: 25698
+ AegisName: M_M_Magic_Healing
+ Name: Modification Module (Magic Healing)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC;
+ - Id: 25699
+ AegisName: M_M_Magic_Soul
+ Name: Modification Module (Magic Soul)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC;
+ - Id: 25700
+ AegisName: M_M_Unlimited_Vital
+ Name: Modification Module (Unlimited Vital)
+ Type: Card
+ 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 */
+ - Id: 25701
+ AegisName: M_M_Spell_Buster
+ Name: Modification Module (Spell Buster)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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)
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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)
+ Type: Etc
+ Weight: 100
+ - Id: 25707
+ AegisName: HighpriestStone_Middle
+ Name: High Priest Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25708
+ AegisName: HighpriestStone_Bottom
+ Name: High Priest Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25709
+ AegisName: ArchbishopStone_Robe
+ Name: Archbishop Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25710
+ AegisName: PaladinStone_Top
+ Name: Paladin Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25711
+ AegisName: PaladinStone_Middle
+ Name: Paladin Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25712
+ AegisName: PaladinStone_Bottom
+ Name: Paladin Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25713
+ AegisName: RoyalguardStone_Robe
+ Name: Royal Guard Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25714
+ AegisName: AssacrossStone_Top
+ Name: Assassin Cross Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25715
+ AegisName: AssacrossStone_Middle
+ Name: Assassin Cross Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25716
+ AegisName: AssacrossStone_Bottom
+ Name: Assassin Cross Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25717
+ AegisName: GuillcrossStone_Robe
+ 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: Dragenergy_Green
+ Name: Green Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25760
+ AegisName: Dragenergy_Blue
+ Name: Blue Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25761
+ AegisName: Dragenergy_Red
+ Name: Red Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25762
+ AegisName: Dragenergy_Gold
+ Name: Gold Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25763
+ AegisName: Dragenergy_Purple
+ Name: Purple Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25764
+ AegisName: Dragenergy_Silver
+ Name: Silver Dragon Orb
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25765
+ AegisName: Drabone_L
+ Name: Large Dragon Bone
+ Type: Etc
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ - Id: 25766
+ AegisName: Drabone_S
+ Name: Small Dragon Bone
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 25767
+ AegisName: Angel_Dream
+ Name: Angel's Dream
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25768
+ AegisName: Shard_Blue
+ Name: Valkyrie Ingrid's Armor Fragment
+ Type: Etc
+ Weight: 30
+ - Id: 25769
+ AegisName: Shard_Gold
+ Name: Valkyrie Reginleif's Armor Fragment
+ Type: Etc
+ Weight: 30
+ - Id: 25770
+ AegisName: Valkyrie_Armor2
+ Name: Valkyrie Reginleif's Armor
+ Type: Etc
+ Weight: 100
+ - Id: 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)
+ Type: Etc
+ Weight: 100
+ - Id: 25798
+ AegisName: SuraStone_Bottom2
+ Name: Sura Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25799
+ AegisName: SuraStone_Middle2
+ Name: Sura Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25800
+ AegisName: SuraStone_Top2
+ Name: Sura Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25801
+ AegisName: SorcererStone_Robe2
+ Name: Sorcerer Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25802
+ AegisName: SorcererStone_Bottom2
+ Name: Sorcerer Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25803
+ AegisName: SorcererStone_Middle2
+ Name: Sorcerer Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25804
+ AegisName: SorcererStone_Top2
+ Name: Sorcerer Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25805
+ AegisName: ShadowchaserStone_Robe2
+ Name: Shadow Chaser Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25806
+ AegisName: ShadowchasStone_Bottom2
+ Name: Shadow Chaser Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25807
+ AegisName: ShadowchasStone_Middle2
+ Name: Shadow Chaser Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25808
+ AegisName: ShadowchaserStone_Top2
+ Name: Shadow Chaser Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25809
+ AegisName: Ein_REDIUM
+ Name: Redium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 25810
+ AegisName: Ein_RINDIUM
+ Name: Rindium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 25811
+ AegisName: Ein_ODIUM
+ Name: Odium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 25812
+ AegisName: Ein_PURDIUM
+ Name: Purdium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 25813
+ AegisName: Ein_WHIDIUM
+ Name: Whidium
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 25814
+ AegisName: Ein_DYNITE
+ Name: Dynite
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25815
+ AegisName: Ein_SOLIDDUST
+ Name: Hardened Dust
+ Type: Etc
+ - Id: 25816
+ AegisName: Ein_RUSTHELM
+ Name: Broken Trap
+ Type: Etc
+ Weight: 10
+ - Id: 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)
+ Type: Etc
+ Weight: 100
+ - Id: 25843
+ AegisName: SoulLinkerStone_Top
+ Name: Soul Linker Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25844
+ AegisName: SoulLinkerStone_Middle
+ Name: Soul Linker Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25845
+ AegisName: SoulLinkerStone_Bottom
+ Name: Soul Linker Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25846
+ AegisName: StarGladiatorStone_Top
+ Name: Star Gladiator Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25847
+ AegisName: StarGladiatorStone_Middle
+ Name: Star Gladiator Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25848
+ AegisName: StarGladiatorStone_Bottom
+ Name: Star Gladiator Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25849
+ AegisName: StarEmperorStone_Garment
+ Name: Star Emperor Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25850
+ AegisName: NinjaStone_Top
+ Name: Ninja Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25851
+ AegisName: NinjaStone_Middle
+ Name: Ninja Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25852
+ AegisName: NinjaStone_Bottom
+ Name: Ninja Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25853
+ AegisName: KagerouStone_Robe
+ Name: Kagerou Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25854
+ AegisName: OboroStone_Robe
+ Name: Oboro Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25855
+ AegisName: GunslingerStone_Top
+ Name: Gunslinger Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25856
+ AegisName: GunslingerStone_Middle
+ Name: Gunslinger Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25857
+ AegisName: GunslingerStone_Bottom
+ Name: Gunslinger Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25858
+ AegisName: GunslingerStone_Robe
+ Name: Gunslinger Stone (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 25859
+ AegisName: DoramStone_Top
+ Name: Doram Stone (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 25860
+ AegisName: DoramStone_Middle
+ Name: Doram Stone (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 25861
+ AegisName: DoramStone_Bottom
+ Name: Doram Stone (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 25862
+ AegisName: DoramStone_Robe
+ 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: S_Circlet_Of_Time
+ Name: Sealed Temporal Circlet
+ Type: Etc
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 25865
+ AegisName: Jewel_Of_Time_Ore
+ Name: Temperal Gemstone
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25866
+ AegisName: Spell_Of_Time
+ Name: Temporal Spell
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 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
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25893
+ AegisName: aegis_25893
+ Name: Deep Sea Fish's Tail
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25894
+ AegisName: aegis_25894
+ Name: Rotten Deep Sea Fish
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25895
+ AegisName: aegis_25895
+ Name: Deep Sea Starfish
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25896
+ AegisName: aegis_25896
+ Name: Deep Sea Crab
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25897
+ AegisName: Crown_Of_Witch
+ Name: Deep Sea Witch's Crown
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 25898
+ AegisName: Siroods_Fish_Rod
+ Name: Searud's Fishing Rod # !todo check english name
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 25899
+ AegisName: E_Abyss1
+ Name: Abyssal Essence
+ Type: Etc
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 27012
+ AegisName: Kick_Step_Card
+ Name: Kick Step Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,8;
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC) {
+ bonus bLongAtkDef,30;
+ }
+ - Id: 27013
+ 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: 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; }",20,5000,BF_NORMAL|BF_MAGIC,"{ specialeffect2 EF_HEAL2; }";
+ - Id: 27015
+ AegisName: RepairRobot_T_Card
+ Name: Repair Robot Turbo Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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);
+ - Id: 27016
+ 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: Scr_MT_Robots_Card
+ Name: Scrap Robots Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,-(1+(BaseLevel>=90)+(BaseLevel>=120));
+ - Id: 27019
+ AegisName: DR815_Card
+ Name: DR815 Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120);
+ - Id: 27020
+ AegisName: T_W_O_Card
+ Name: T W O Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,10;
+ bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,5+((getrefine()/3)*10);
+ - Id: 27025
+ AegisName: Lich_Lord_Card
+ Name: Lich Lord Card
+ Type: Card
+ Buy: 20
+ 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; }";
+ - Id: 27026
+ AegisName: Fire_Condor_Card
+ Name: Fire Condor Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bVariableCastRate,"MG_FIREBALL",-50;
+ bonus2 bSkillAtk,"MG_FIREBALL",100;
+ - Id: 27027
+ 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;
+ - Id: 27028
+ AegisName: Fire_Frilldora_Card
+ Name: Fire Frilldora Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7);
+ - Id: 27029
+ AegisName: Fire_Golem_Card
+ Name: Fire Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Fire,20;
+ bonus2 bAddEle,Ele_Fire,5;
+ - Id: 27030
+ AegisName: Fulbuk_Card
+ Name: Firebug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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: 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: 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;
+ - Id: 27083
+ 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;
+ - Id: 27084
+ 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;
+ }
+ - Id: 27085
+ 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;
+ - Id: 27086
+ 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), ITEMINFO_VIEW) == W_BOW) {
+ bonus3 bAutoSpell,"AC_DOUBLE",5,30;
+ if (getrefine() >= 10) {
+ bonus2 bWeaponDamageRate,W_BOW,20;
+ }
+ }
+ - Id: 27087
+ 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,"{ specialeffect2 EF_POTION_BERSERK; showscript \"This is the truth!\"; }";
+ - Id: 27088
+ AegisName: FuryHero_Card
+ Name: Fury Hero Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27101
+ 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;
+ - Id: 27102
+ AegisName: MattDrainliar_Card
+ Name: Matt Drainliar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bResEff,Eff_Burning,10000;
+ - Id: 27103
+ 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;
+ - Id: 27104
+ 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
+ AegisName: Bomi_Card
+ Name: Bomi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ skill "HW_NAPALMVULCAN",4;
+ - Id: 27106
+ 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());
+ }
+ - Id: 27107
+ 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: 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: JitterbugCard
+ Name: Jitterbug Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Neutral,10;
+ bonus bMaxHP,500;
+ - Id: 27110
+ 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: 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;
+ - Id: 27112
+ 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: 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
+ AegisName: Ominous_Solider_Card
+ Name: Ominous Solider Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27115
+ AegisName: Ominous_Permeter_Card
+ Name: Ominous Permeter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ }
+ - Id: 27116
+ AegisName: Ominous_Heater_Card
+ Name: Ominous Heater Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,3;
+ bonus bCritAtkRate,5;
+ - Id: 27117
+ AegisName: Ominous_Assaulter_Card
+ Name: Ominous Assaulter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ 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;
+ }
+ - Id: 27119
+ AegisName: Ominous_Turtle_General_Card
+ Name: Ominous Turtle General Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,30;
+ bonus bMdef,5;
+ bonus2 bSubSize,Size_All,25;
+ - Id: 27120
+ AegisName: Iara_Card
+ Name: Iara Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ skill "PR_STRECOVERY",1;
+ - Id: 27121
+ AegisName: Piranha_Card
+ Name: Piranha Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27122
+ AegisName: Curupira_Card
+ Name: Curupira Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27123
+ AegisName: Toucan_Card
+ Name: Toucan Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27124
+ AegisName: Jaguar_Card
+ Name: Jaguar Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27125
+ AegisName: Headless_Mule_Card
+ Name: Headless Mule Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Water,20;
+ bonus2 bMagicAtkEle,Ele_Holy,20;
+ - Id: 27126
+ AegisName: Boitata_Card
+ Name: Boitata Card
+ Type: Card
+ Buy: 20
+ 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_Insect,40;
+ - Id: 27147
+ 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: 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
+ AegisName: Heart_Hunter_Card
+ Name: Heart Hunter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@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: 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;
+ }
+ - Id: 27151
+ 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;
+ - Id: 27152
+ AegisName: Cutie_Card
+ Name: Cutie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,10;
+ .@r = getrefine()/2;
+ bonus bAgi,.@r;
+ bonus bAspdRate,.@r;
+ - Id: 27157
+ AegisName: Wood_Goblin_Card
+ Name: Wood Goblin Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27158
+ AegisName: Les_Card
+ Name: Les Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Wind,30;
+ - Id: 27159
+ AegisName: Uzhas_Card
+ Name: Uzhas Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10);
+ - Id: 27160
+ AegisName: Vavayaga_Card
+ Name: Vavayaga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bFlee,getrefine()*2;
+ - Id: 27161
+ AegisName: Mavka_Card
+ Name: Mavka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Fire,20;
+ bonus2 bMagicAtkEle,Ele_Earth,20;
+ - Id: 27162
+ AegisName: Gopinich_Card
+ Name: Gopinich Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bSPDrainValue,5;
+ bonus bUseSPrate,50;
+ - Id: 27163
+ AegisName: Faceworm_Card
+ Name: Faceworm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,-1;
+ bonus bDex,-1;
+ bonus bAspdRate,3;
+ - Id: 27164
+ 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;
+ - Id: 27165
+ 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;
+ - Id: 27166
+ AegisName: Faceworm_Egg_Card
+ Name: Faceworm Egg Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27167
+ 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;
+ - Id: 27168
+ 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
+ AegisName: Payon_Soldier_Card
+ Name: Payon Soldier Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@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: 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;
+ - Id: 27171
+ 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;
+ - Id: 27172
+ 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), 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: 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;
+ - Id: 27174
+ 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;
+ - Id: 27175
+ 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;
+ - Id: 27176
+ 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);
+ - Id: 27177
+ 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);
+ - Id: 27178
+ AegisName: Gaster_Card
+ Name: Gaster Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubClass,Class_Normal,25;
+ bonus2 bSubClass,Class_Boss,-50;
+ - Id: 27179
+ AegisName: Coyote_Card
+ Name: Coyote Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27180
+ AegisName: Mechaspider_Card
+ Name: Mechaspider Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBreakWeaponRate,1000;
+ bonus bBreakArmorRate,1000;
+ - Id: 27181
+ 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;
+ - Id: 27182
+ AegisName: Felock_Card
+ Name: Captain Felock Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,20;
+ if (readparam(bStr) >= 120) {
+ bonus bBaseAtk,20;
+ bonus bAspdRate,-3;
+ }
+ - Id: 27184
+ AegisName: Knight_Sakray_Card
+ Name: Knight Sakray Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddSize,Size_Small,15;
+ - Id: 27197
+ AegisName: Agnes_Lugenburg_Card
+ Name: Agnes Lugenburg Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddSize,Size_Small,15;
+ - Id: 27198
+ AegisName: Jurgen_Wigner_Card
+ Name: Jurgen Wigner Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Brute,15;
+ bonus2 bAddRace,RC_Player_Doram,15;
+ - Id: 27199
+ AegisName: Spica_Nerius_Card
+ Name: Spica Nerius Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Brute,15;
+ bonus2 bMagicAddRace,RC_Player_Doram,15;
+ - Id: 27200
+ AegisName: Nihil_Card
+ Name: Nihil Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 27201
+ AegisName: Agnes_Card
+ Name: Agnes Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 27202
+ AegisName: Jurgen_Card
+ Name: Juergen Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 27203
+ AegisName: Spica_Card
+ Name: Spica Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 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) {
+ bonus2 bAddRace2,RC2_SCARABA,25;
+ }
+ else {
+ bonus2 bAddRace2,RC2_SCARABA,15;
+ }
+ - Id: 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) {
+ bonus bHit,-20;
+ }
+ else {
+ bonus bHit,-30;
+ }
+ - Id: 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;
+ }
+ else {
+ bonus bMagicDamageReturn,15;
+ }
+ - Id: 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;
+ .@b = 15;
+ }
+ else {
+ .@a = 5;
+ .@b = 10;
+ }
+ 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: 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;
+ bonus bMatkRate,(readparam(bDex)>=110) ? 6 : 3;
+ }
+ else {
+ bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",3,1,BF_MAGIC,0;
+ bonus bMatkRate,(readparam(bDex)>=110) ? 10 : 5;
+ }
+ - Id: 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;
+ bonus2 bAddClass,Class_All,(readparam(bAgi)>=110) ? 6 : 3;
+ }
+ else {
+ bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",3,1,BF_WEAPON,1;
+ bonus2 bAddClass,Class_All,(readparam(bAgi)>=110) ? 10 : 5;
+ }
+ - Id: 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;
+ bonus bCritical,(readparam(bStr)>=110) ? 20 : 10;
+ }
+ else {
+ bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",3,1,BF_WEAPON,1;
+ bonus bCritical,(readparam(bStr)>=110) ? 30 : 20;
+ }
+ - Id: 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;
+ bonus bHit,(readparam(bLuk)>=110) ? 20 : 10;
+ }
+ else {
+ bonus bHit,(readparam(bLuk)>=110) ? 30 : 15;
+ }
+ - Id: 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;
+ bonus bMaxHPrate,(readparam(bInt)>=110) ? 10 : 5;
+ }
+ else {
+ bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",7,1,BF_WEAPON,0;
+ bonus bMaxHPrate,(readparam(bInt)>=110) ? 14 : 7;
+ }
+ - Id: 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), 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), 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: 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), ITEMINFO_VIEW) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) {
+ bonus bBaseAtk,50;
+ }
+ }
+ else {
+ 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: 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;
+ bonus2 bMagicAtkEle,Ele_Wind,50;
+ bonus2 bSubEle,Ele_All,-60;
+ }
+ else {
+ bonus2 bMagicAtkEle,Ele_Ghost,75;
+ bonus2 bMagicAtkEle,Ele_Wind,75;
+ bonus2 bSubEle,Ele_All,-40;
+ }
+ - Id: 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;
+ bonus2 bSubRace,RC_All,-20;
+ }
+ else {
+ bonus bCritAtkRate,25;
+ bonus2 bSubRace,RC_All,-15;
+ }
+ - Id: 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;
+ if (getrefine()<15) {
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ }
+ else {
+ bonus2 bSubEle,Ele_Water,20;
+ bonus2 bSubEle,Ele_Earth,20;
+ bonus2 bSubEle,Ele_Fire,20;
+ bonus2 bSubEle,Ele_Wind,20;
+ bonus2 bSubEle,Ele_Dark,20;
+ bonus2 bSubEle,Ele_Undead,20;
+ }
+ - Id: 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;
+ bonus bUseSPrate,20;
+ }
+ else {
+ bonus bMatkRate,15;
+ bonus bUseSPrate,15;
+ }
+ - Id: 27249
+ AegisName: Archi_Card
+ Name: Arhi Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,3;
+ bonus2 bMagicAtkEle,Ele_Neutral,5;
+ bonus2 bMagicAtkEle,Ele_Earth,5;
+ - Id: 27251
+ 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;
+ - Id: 27252
+ 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;
+ - Id: 27253
+ 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;
+ - Id: 27254
+ 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;
+ - Id: 27255
+ AegisName: Ordre_Card
+ Name: Ordre Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,3;
+ bonus2 bMagicAtkEle,Ele_Wind,5;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ - Id: 27256
+ AegisName: Blut_Hase_Card
+ Name: Blut Hase Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,3;
+ bonus bLongAtkRate,5;
+ - Id: 27257
+ AegisName: Kuro_Akuma_Card
+ Name: Kuro Akuma Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bVariableCastrate,-3;
+ bonus bLongAtkRate,5;
+ bonus2 bSkillAtk,"NJ_HUUJIN",5;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",5;
+ bonus2 bSkillAtk,"NJ_KOUENKA",5;
+ - Id: 27258
+ 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;
+ - Id: 27259
+ 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;
+ - Id: 27260
+ 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;
+ - Id: 27261
+ 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), 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: 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;
+ - Id: 27263
+ 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; }",20,10000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; active_transform 1040,10000; }";
+ - Id: 27264
+ AegisName: Evil_Shadow_Card
+ Name: Evil Shadow Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27265
+ AegisName: Evil_Fanatics_Card
+ Name: Evil Fanatics Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27286
+ AegisName: Colorful_Teddy_Bear_Card
+ Name: Colorful Teddy Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,5;
+ bonus2 bMagicAddSize,Size_Large,15;
+ - Id: 27287
+ AegisName: Shiny_Teddy_Bear_Card
+ Name: Shiny Teddy Bear Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bUseSPrate,10;
+ bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine());
+ - Id: 27288
+ AegisName: Hardworking_Pitman_Card
+ Name: Hardworking Pitman Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,5;
+ bonus2 bMagicAddSize,Size_Medium,15;
+ - Id: 27290
+ AegisName: Haunted_Obsidian_Card
+ Name: Haunted Obsidian Card
+ Type: Card
+ Buy: 20
+ 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;
+ } }
+ - Id: 27291
+ AegisName: Ancient_Tri_Joint_Card
+ Name: Ancient Tri Joint Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,30;
+ bonus bMaxHPrate,-1;
+ - Id: 27292
+ AegisName: Ancient_Stalactic_Golem_Card
+ Name: Ancient Stalactic Golem Card
+ Type: Card
+ Buy: 20
+ 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;
+ } }
+ - Id: 27293
+ AegisName: Ancient_Megalith_Card
+ Name: Ancient Megalith Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,30;
+ bonus bMaxSPrate,-1;
+ - Id: 27294
+ AegisName: Ancient_Tao_Gunka_Card
+ Name: Ancient Tao Gunka Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27295
+ AegisName: Ancient_Stone_Shooter_Card
+ Name: Ancient Stone Shooter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@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
+ Type: Card
+ Buy: 20
+ 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;
+ } }
+ - Id: 27297
+ AegisName: Ancient_Wootan_Fighter_Card
+ Name: Ancient Wootan Fighter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,5;
+ bonus bCritAtkRate,10;
+ - Id: 27298
+ AegisName: Ancient_Wootan_Defender_Card
+ Name: Ancient Wootan Defender Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@val = 30;
+ if (getrefine() >= 10) {
+ .@val += 20;
+ }
+ bonus2 bSubClass,Class_Boss,.@val;
+ - Id: 27301
+ AegisName: Labyrinth_Doppelganger_Card
+ Name: Labyrinth Doppelganger Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,10;
+ - Id: 27304
+ AegisName: E_EA2S_Card
+ Name: E EA2S Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bHPrecovRate,50;
+ - Id: 27305
+ AegisName: EL_A17T_Card
+ Name: EL A17T Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus4 bAutoSpell,"WL_HELLINFERNO",3,20,1;
+ - Id: 27306
+ AegisName: Bellare_Card
+ Name: Bellare Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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: 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), 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
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27309
+ AegisName: High_Sanare_Card
+ Name: Greater Sanare Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27310
+ AegisName: Plaga_Card
+ Name: Plaga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ - Id: 27311
+ AegisName: Mutant_Plaga_Card
+ Name: Mutant Plaga Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Demon,5;
+ - Id: 27313
+ 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), 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Brute,15;
+ bonus2 bAddRace,RC_Player_Doram,15;
+ - Id: 27315
+ 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;
+ - Id: 27316
+ 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;
+ - Id: 27317
+ 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
+ AegisName: Miguel_Card
+ Name: Miguel Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,20;
+ bonus2 bSubRace,RC_All,-10;
+ - Id: 27319
+ 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
+ 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;
+ - Id: 27321
+ AegisName: Despair_God_Morocc_Card
+ Name: Despair God Morocc Card
+ Type: Card
+ Buy: 20
+ 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 */
+ - Id: 27322
+ AegisName: Demon_God's_Apostle_Ahat_Card
+ Name: Demon God's Apostle Ahat Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,5;
+ - Id: 27323
+ AegisName: Demon_God's_Apostle_Shnaim_Card
+ Name: Demon God's Apostle Shnaim Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 27324
+ AegisName: Brinaranea_Card
+ Name: Brinaranea Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Water,15;
+ - Id: 27325
+ AegisName: Muspellskoll_Card
+ Name: Muspellskoll Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Fire,30;
+ - Id: 27326
+ AegisName: Morocc's_Minion_Card
+ Name: Morocc's Minion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,100;
+ bonus bAspdRate,25;
+ bonus bMaxHPrate,-20;
+ - Id: 27327
+ AegisName: Grim_Reaper_Ankou_Card
+ Name: Grim Reaper Ankou Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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 */
+ - Id: 27328
+ AegisName: Corrupt_Life_Card
+ Name: Corrupt Life Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Low: true
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,500;
+ bonus bMaxSP,50;
+ bonus2 bSubRace,RC_Angel,-50;
+ - Id: 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ - Id: 27331
+ AegisName: Kronecker_G_Heine_Card
+ Name: Kronecker G. Heine Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bVariableCastrate,-5;
+ - Id: 27332
+ AegisName: Skia_Card
+ Name: Skia Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ - Id: 27333
+ AegisName: Skia_Nerius_Card
+ Name: Skia Nerius Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspdRate,5;
+ - Id: 27334
+ AegisName: Chaotic_Baphomet_Card
+ Name: Chaotic Baphomet Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,25;
+ bonus2 bSubRace,RC_Demon,-5;
+ - Id: 27335
+ AegisName: Chaotic_Baphomet_Junior_Card
+ Name: Chaotic Baphomet Junior Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,readparam(bAgi)/15;
+ - Id: 27336
+ AegisName: Chaotic_Sidewinder_Card
+ Name: Chaotic Sidewinder Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27337
+ AegisName: Chaotic_Hunter_Fly_Card
+ Name: Chaotic Hunter Fly Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Wind,15;
+ bonus2 bSubRace,RC_Insect,15;
+ - Id: 27338
+ AegisName: Chaotic_Mantis_Card
+ Name: Chaotic Mantis Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,3;
+ - Id: 27339
+ AegisName: Chaotic_Ghostring_Card
+ Name: Chaotic Ghostring Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritAtkRate,3;
+ - Id: 27341
+ AegisName: Chaotic_Poporing_Card
+ Name: Chaotic Poporing Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,15;
+ bonus2 bSubRace,RC_Fish,15;
+ - Id: 27342
+ AegisName: Chaotic_Stem_Worm_Card
+ Name: Chaotic Stem Worm Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bHit,10;
+ bonus2 bSubDefEle,Ele_Earth,20;
+ bonus2 bSubDefEle,Ele_Neutral,10;
+ - Id: 27343
+ AegisName: Chaotic_Acolyte_Card
+ Name: Chaotic Acolyte Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bDelayrate,-4;
+ - Id: 27346
+ AegisName: Rigid_Muspellskoll_Card
+ Name: Rigid Muspellskoll Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27347
+ AegisName: Rigid_Kaho_Card
+ Name: Rigid Kaho Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddEle,Ele_Earth,10;
+ - Id: 27348
+ AegisName: Rigid_Lava_Golem_Card
+ Name: Rigid Lava Golem Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7);
+ - Id: 27349
+ AegisName: Rigid_Explosion_Card
+ Name: Rigid Explosion Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Dragon,15;
+ bonus2 bSubDefEle,Ele_Fire,15;
+ - Id: 27350
+ AegisName: Rigid_Earth_Deleter_Card
+ Name: Rigid Earth Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,2+(.@r/2);
+ - Id: 27351
+ AegisName: Rigid_Sky_Deleter_Card
+ Name: Rigid Sky Deleter Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Head_Mid: true
+ Head_Top: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHPrate,5;
+ - Id: 27352
+ AegisName: Rigid_Nightmare_Terror_Card
+ Name: Rigid Nightmare Terror Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxSPrate,5;
+ - Id: 27353
+ AegisName: Rigid_Blazer_Card
+ Name: Rigid Blazer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Demon,15;
+ bonus2 bSubDefEle,Ele_Neutral,15;
+ - Id: 27354
+ AegisName: Contaminated_Raydric_Card
+ Name: Contaminated Raydric Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,5;
+ - Id: 27355
+ AegisName: Contaminated_Raydric_Archer_Card
+ Name: Contaminated Raydric Archer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkRate,10;
+ - Id: 27356
+ AegisName: Frozen_Gargoyle_Card
+ Name: Frozen Gargoyle Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27357
+ AegisName: Contaminated_Sting_Card
+ Name: Contaminated Sting Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,100+25*(getrefine()/3);
+ - Id: 27358
+ AegisName: Prison_Breaker_Card
+ Name: Prison Breaker Card
+ Type: Card
+ Buy: 20
+ 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;
+ - Id: 27359
+ AegisName: Ice_Ghost_Card
+ Name: Ice Ghost Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddEle,Ele_Water,15;
+ - Id: 27360
+ AegisName: Flame_Ghost_Card
+ Name: Flame Ghost Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddEle,Ele_Fire,15;
+ - Id: 27361
+ AegisName: Contaminated_Wanderer_Card
+ Name: Contaminated Wanderer Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddSize,Size_Large,30;
+ bonus2 bAddSize,Size_Medium,30;
+ - Id: 27362
+ AegisName: Contaminated_Spider_Queen_Card
+ Name: Contaminated Spider Queen Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bAspd,1;
+ - Id: 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: 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: 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: 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: 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;
+ bonus2 bMagicSubSize,Size_Medium,25;
+ bonus2 bSubSize,Size_Large,25;
+ bonus2 bMagicSubSize,Size_Large,25;
+ - Id: 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: 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: 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: 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;
+ }
+ }
+ - Id: 29001
+ 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 bMatkRate,7;
+ bonus bInt,1;
+ }
+ }
+ - Id: 29002
+ 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 bMatkRate,8;
+ bonus bInt,1;
+ if (.@r>=13) {
+ bonus bMatkRate,2;
+ bonus bInt,1;
+ }
+ }
+ }
+ - Id: 29003
+ 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;
+ }
+ }
+ - Id: 29004
+ 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 bLongAtkRate,7;
+ bonus bDex,1;
+ }
+ }
+ - Id: 29005
+ 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 bLongAtkRate,8;
+ bonus bDex,1;
+ if (.@r>=13) {
+ bonus bLongAtkRate,2;
+ bonus bDex,1;
+ }
+ }
+ }
+ - Id: 29006
+ 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;
+ }
+ }
+ - Id: 29007
+ 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 bCritAtkRate,7;
+ bonus bLuk,1;
+ }
+ }
+ - Id: 29008
+ 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 bCritAtkRate,8;
+ bonus bLuk,1;
+ if (.@r>=13) {
+ bonus bCritAtkRate,6;
+ bonus bLuk,1;
+ }
+ }
+ }
+ - Id: 29009
+ 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;
+ }
+ }
+ - Id: 29010
+ 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 bMaxHPrate,7;
+ bonus bVit,1;
+ }
+ }
+ - Id: 29011
+ 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 bMaxHPrate,8;
+ bonus bVit,1;
+ if (.@r>=13) {
+ bonus bMaxHPrate,2;
+ bonus bVit,1;
+ }
+ }
+ }
+ - Id: 29013
+ AegisName: HPdrain3
+ Name: HP Absorption 3
+ Type: Card
+ Script: |
+ bonus2 bHPDrainRate,10,3;
+ - Id: 29014
+ AegisName: STR3INT
+ Name: STR+3 INT-3
+ Type: Card
+ Script: |
+ bonus bStr,3;
+ bonus bInt,-3;
+ - Id: 29015
+ AegisName: STR3DEX
+ Name: STR+3 DEX-3
+ Type: Card
+ Script: |
+ bonus bStr,3;
+ bonus bDex,-3;
+ - Id: 29016
+ AegisName: INT3DEX
+ Name: INT+3 DEX-3
+ Type: Card
+ Script: |
+ bonus bInt,3;
+ bonus bDex,-3;
+ - Id: 29017
+ AegisName: INT3VIT
+ Name: INT+3 VIT-3
+ Type: Card
+ Script: |
+ bonus bInt,3;
+ bonus bVit,-3;
+ - Id: 29018
+ AegisName: DEX3VIT
+ Name: DEX+3 VIT-3
+ Type: Card
+ Script: |
+ bonus bDex,3;
+ bonus bVit,-3;
+ - Id: 29019
+ AegisName: DEX3AGI
+ Name: DEX+3 AGI-3
+ Type: Card
+ Script: |
+ bonus bDex,3;
+ bonus bAgi,-3;
+ - Id: 29020
+ AegisName: VIT3AGI
+ Name: VIT+3 AGI-3
+ Type: Card
+ Script: |
+ bonus bVit,3;
+ bonus bAgi,-3;
+ - Id: 29021
+ AegisName: VIT3LUK
+ Name: VIT+3 LUK-3
+ Type: Card
+ Script: |
+ bonus bVit,3;
+ bonus bLuk,-3;
+ - Id: 29022
+ AegisName: AGI3LUK
+ Name: AGI+3 LUK-3
+ Type: Card
+ Script: |
+ bonus bAgi,3;
+ bonus bLuk,-3;
+ - Id: 29023
+ AegisName: AGI3STR
+ Name: AGI+3 STR-3
+ Type: Card
+ Script: |
+ bonus bAgi,3;
+ bonus bStr,-3;
+ - Id: 29024
+ AegisName: LUK3STR
+ Name: LUK+3 STR-3
+ Type: Card
+ Script: |
+ bonus bLuk,3;
+ bonus bStr,-3;
+ - Id: 29025
+ AegisName: LUK3INT
+ Name: LUK+3 INT-3
+ Type: Card
+ Script: |
+ bonus bLuk,3;
+ bonus bInt,-3;
+ - Id: 29026
+ AegisName: Def20
+ Name: DEF+20
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bDef,20;
+ - Id: 29027
+ AegisName: EXP2
+ Name: EXP+2%
+ Type: Card
+ Script: |
+ bonus2 bExpAddRace,RC_All,2;
+ - Id: 29028
+ AegisName: Atk1p_Top
+ Name: ATK + 1%
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_All,1;
+ - Id: 29029
+ AegisName: Atk1p_Bottom
+ Name: ATK+1%(Lower)
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_All,1;
+ - Id: 29030
+ AegisName: Matk1p_Top
+ Name: MATK+1%
+ Type: Card
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 29031
+ AegisName: Matk1p_Bottom
+ Name: MATK+1%(Lower)
+ Type: Card
+ Script: |
+ bonus bMatkRate,1;
+ - Id: 29032
+ AegisName: SPdrain1_Top
+ Name: SP Absorption 1
+ Type: Card
+ Script: |
+ bonus2 bSPDrainRate,10,1;
+ - Id: 29033
+ AegisName: Mdef4_Bottom
+ Name: MDEF+4
+ Type: Card
+ Script: |
+ bonus bMdef,4;
+ - Id: 29040
+ AegisName: Ghost_Effect
+ Name: Ghost Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_C_GHOST_EFFECT,true;
+ UnEquipScript: |
+ hateffect HAT_EF_C_GHOST_EFFECT,false;
+ - Id: 29041
+ AegisName: Twinkle_Effect
+ Name: Twinkle Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_LJOSALFAR,true;
+ UnEquipScript: |
+ hateffect HAT_EF_LJOSALFAR,false;
+ - Id: 29046
+ AegisName: Greed
+ Name: Greed
+ Type: Card
+ Script: |
+ skill "BS_GREED",1;
+ - Id: 29047
+ AegisName: Fatal0
+ Name: Fatal
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,3;
+ - Id: 29048
+ AegisName: Expert_Archer0
+ Name: Expert Archer
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,3;
+ - Id: 29049
+ AegisName: HP100_
+ Name: HP+100
+ Type: Card
+ Script: |
+ 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;
+ }
+ - Id: 29051
+ AegisName: Detoxify
+ Name: Detoxify
+ Type: Card
+ Script: |
+ skill "TF_DETOXIFY",1;
+ - Id: 29052
+ AegisName: Recovery
+ Name: Recovery
+ Type: Card
+ Script: |
+ skill "PR_STRECOVERY",1;
+ - Id: 29053
+ AegisName: Skill_Delay1_Top
+ Name: After Skill Delay1 Upper
+ Type: Card
+ Script: |
+ bonus bDelayrate,-1;
+ - Id: 29054
+ AegisName: Skill_Delay1_Middle
+ Name: After Skill Delay1 Middle
+ Type: Card
+ Script: |
+ bonus bDelayrate,-1;
+ - Id: 29055
+ AegisName: Skill_Delay1_Bottom
+ Name: After Skill Delay1 Lower
+ Type: Card
+ Script: |
+ bonus bDelayrate,-1;
+ - Id: 29056
+ AegisName: FixedCasting05
+ Name: Reduces Fixed Cast
+ Type: Card
+ Script: |
+ bonus bFixedCast,-500;
+ - Id: 29057
+ AegisName: Kyrie
+ Name: Kyrie
+ Type: Card
+ Script: |
+ skill "PR_KYRIE",1;
+ - Id: 29061
+ AegisName: Mettle1
+ Name: Mettle Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,4;
+ bonus bHit,10;
+ - Id: 29062
+ AegisName: Mettle2
+ Name: Mettle Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,8;
+ bonus bHit,20;
+ - Id: 29063
+ AegisName: Mettle3
+ Name: Mettle Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,12;
+ bonus bHit,30;
+ - Id: 29064
+ AegisName: Mettle4
+ Name: Mettle Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,16;
+ bonus bHit,40;
+ - Id: 29065
+ AegisName: Mettle5
+ Name: Mettle Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,20;
+ bonus bHit,50;
+ - Id: 29066
+ AegisName: Mettle6
+ Name: Mettle Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,24;
+ bonus bHit,60;
+ - Id: 29067
+ AegisName: Mettle7
+ Name: Mettle Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,28;
+ bonus bHit,70;
+ - Id: 29068
+ AegisName: Mettle8
+ Name: Mettle Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,32;
+ bonus bHit,80;
+ - Id: 29069
+ AegisName: Mettle9
+ Name: Mettle Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,36;
+ bonus bHit,90;
+ - Id: 29070
+ AegisName: Mettle10
+ Name: Mettle Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus2 bAddClass,Class_All,44;
+ bonus bHit,100;
+ - Id: 29071
+ AegisName: MagicEessence1
+ Name: Magic Essence Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-100;
+ bonus bMatkRate,4;
+ - Id: 29072
+ AegisName: MagicEessence2
+ Name: Magic Essence Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-200;
+ bonus bMatkRate,8;
+ - Id: 29073
+ AegisName: MagicEessence3
+ Name: Magic Essence Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-300;
+ bonus bMatkRate,12;
+ - Id: 29074
+ AegisName: MagicEessence4
+ Name: Magic Essence Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-400;
+ bonus bMatkRate,16;
+ - Id: 29075
+ AegisName: MagicEessence5
+ Name: Magic Essence Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-500;
+ bonus bMatkRate,20;
+ - Id: 29076
+ AegisName: MagicEessence6
+ Name: Magic Essence Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-600;
+ bonus bMatkRate,24;
+ - Id: 29077
+ AegisName: MagicEessence7
+ Name: Magic Essence Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-700;
+ bonus bMatkRate,28;
+ - Id: 29078
+ AegisName: MagicEessence8
+ Name: Magic Essence Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-800;
+ bonus bMatkRate,32;
+ - Id: 29079
+ AegisName: MagicEessence9
+ Name: Magic Essence Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-900;
+ bonus bMatkRate,36;
+ - Id: 29080
+ AegisName: MagicEessence10
+ Name: Magic Essence Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bFixedCast,-1000;
+ bonus bMatkRate,44;
+ - Id: 29081
+ AegisName: Acute1
+ Name: Acute Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,20;
+ bonus bCritical,3;
+ - Id: 29082
+ AegisName: Acute2
+ Name: Acute Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,35;
+ bonus bCritical,6;
+ - Id: 29083
+ AegisName: Acute3
+ Name: Acute Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,50;
+ bonus bCritical,9;
+ - Id: 29084
+ AegisName: Acute4
+ Name: Acute Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,65;
+ bonus bCritical,12;
+ - Id: 29085
+ AegisName: Acute5
+ Name: Acute Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,80;
+ bonus bCritical,15;
+ - Id: 29086
+ AegisName: Acute6
+ Name: Acute Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,95;
+ bonus bCritical,18;
+ - Id: 29087
+ AegisName: Acute7
+ Name: Acute Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,110;
+ bonus bCritical,21;
+ - Id: 29088
+ AegisName: Acute8
+ Name: Acute Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,125;
+ bonus bCritical,24;
+ - Id: 29089
+ AegisName: Acute9
+ Name: Acute Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,140;
+ bonus bCritical,27;
+ - Id: 29090
+ AegisName: Acute10
+ Name: Acute Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bCritAtkRate,170;
+ bonus bCritical,30;
+ - Id: 29091
+ AegisName: MasterArcher1
+ Name: Master Archer Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,4;
+ bonus bAspdRate,1;
+ - Id: 29092
+ AegisName: MasterArcher2
+ Name: Master Archer Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,8;
+ bonus bAspdRate,2;
+ - Id: 29093
+ AegisName: MasterArcher3
+ Name: Master Archer Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,12;
+ bonus bAspdRate,3;
+ - Id: 29094
+ AegisName: MasterArcher4
+ Name: Master Archer Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,16;
+ bonus bAspdRate,4;
+ - Id: 29095
+ AegisName: MasterArcher5
+ Name: Master Archer Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,20;
+ bonus bAspdRate,5;
+ - Id: 29096
+ AegisName: MasterArcher6
+ Name: Master Archer Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,24;
+ bonus bAspdRate,6;
+ - Id: 29097
+ AegisName: MasterArcher7
+ Name: Master Archer Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,28;
+ bonus bAspdRate,7;
+ - Id: 29098
+ AegisName: MasterArcher8
+ Name: Master Archer Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,32;
+ bonus bAspdRate,8;
+ - Id: 29099
+ AegisName: MasterArcher9
+ Name: Master Archer Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,36;
+ bonus bAspdRate,9;
+ - Id: 29100
+ AegisName: MasterArcher10
+ Name: Master Archer Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bLongAtkRate,44;
+ bonus bAspdRate,10;
+ - Id: 29101
+ AegisName: Adamatine1
+ Name: Adamantine Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMdef,20;
+ bonus bDef,140;
+ - Id: 29102
+ AegisName: Adamatine2
+ Name: Adamantine Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMdef,40;
+ bonus bDef,180;
+ - Id: 29103
+ AegisName: Adamatine3
+ Name: Adamantine Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,15;
+ bonus bMdef,60;
+ bonus bDef,220;
+ - Id: 29104
+ AegisName: Adamatine4
+ Name: Adamantine Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,20;
+ bonus bMdef,80;
+ bonus bDef,260;
+ - Id: 29105
+ AegisName: Adamatine5
+ Name: Adamantine Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,25;
+ bonus bMdef,100;
+ bonus bDef,300;
+ - Id: 29106
+ AegisName: Adamatine6
+ Name: Adamantine Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,30;
+ bonus bMdef,120;
+ bonus bDef,340;
+ - Id: 29107
+ AegisName: Adamatine7
+ Name: Adamantine Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,35;
+ bonus bMdef,140;
+ bonus bDef,380;
+ - Id: 29108
+ AegisName: Adamatine8
+ Name: Adamantine Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,40;
+ bonus bMdef,160;
+ bonus bDef,420;
+ - Id: 29109
+ AegisName: Adamatine9
+ Name: Adamantine Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,45;
+ bonus bMdef,180;
+ bonus bDef,460;
+ - Id: 29110
+ AegisName: Adamatine10
+ Name: Adamantine Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxHPrate,55;
+ bonus bMdef,200;
+ bonus bDef,500;
+ - Id: 29111
+ AegisName: Affection1
+ Name: Affection Lv. 1
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,3;
+ bonus bHealPower,5;
+ - Id: 29112
+ AegisName: Affection2
+ Name: Affection Lv. 2
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,6;
+ bonus bHealPower,10;
+ - Id: 29113
+ AegisName: Affection3
+ Name: Affection Lv. 3
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,9;
+ bonus bHealPower,15;
+ - Id: 29114
+ AegisName: Affection4
+ Name: Affection Lv. 4
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,12;
+ bonus bHealPower,20;
+ - Id: 29115
+ AegisName: Affection5
+ Name: Affection Lv. 5
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,15;
+ bonus bHealPower,25;
+ - Id: 29116
+ AegisName: Affection6
+ Name: Affection Lv. 6
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,18;
+ bonus bHealPower,30;
+ - Id: 29117
+ AegisName: Affection7
+ Name: Affection Lv. 7
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,21;
+ bonus bHealPower,35;
+ - Id: 29118
+ AegisName: Affection8
+ Name: Affection Lv. 8
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,24;
+ bonus bHealPower,40;
+ - Id: 29119
+ AegisName: Affection9
+ Name: Affection Lv. 9
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,27;
+ bonus bHealPower,45;
+ - Id: 29120
+ AegisName: Affection10
+ Name: Affection Lv. 10
+ Type: Card
+ Buy: 10
+ Script: |
+ bonus bMaxSPrate,30;
+ bonus bHealPower,55;
+ - Id: 29121
+ AegisName: Goddess_of_Justice_A
+ Name: Goddess of Justice A
+ Type: Card
+ Buy: 10
+ Script: |
+ 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 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;
+ - 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;
+ - Id: 29125
+ AegisName: Goddess_of_Insight_A
+ Name: Goddess of Insight A
+ Type: Card
+ Buy: 10
+ Script: |
+ 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;
+ - Id: 29142
+ AegisName: Electric_Effect
+ Name: Electric Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_ELECTRIC,true;
+ UnEquipScript: |
+ hateffect HAT_EF_ELECTRIC,false;
+ - Id: 29143
+ AegisName: Green_Floor_Effect
+ Name: Green Flare Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_GREEN_FLOOR,true;
+ UnEquipScript: |
+ hateffect HAT_EF_GREEN_FLOOR,false;
+ - Id: 29144
+ AegisName: Shrink_Effect
+ Name: Shrink Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_SHRINK,true;
+ UnEquipScript: |
+ hateffect HAT_EF_SHRINK,false;
+ - Id: 29145
+ AegisName: EXP2MIDDLE
+ Name: Experience+2%
+ Type: Card
+ Script: |
+ bonus2 bExpAddRace,RC_All,2;
+ - Id: 29146
+ AegisName: Identify
+ Name: Identify
+ Type: Card
+ Script: |
+ skill "MC_IDENTIFY",1;
+ - Id: 29147
+ AegisName: Resurrection
+ Name: Resurrection
+ Type: Card
+ Buy: 10
+ Script: |
+ skill "ALL_RESURRECTION",1;
+ - Id: 29148
+ AegisName: Leo_Stone
+ Name: Leo Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bStr,1;
+ - Id: 29149
+ AegisName: Pisces_Stone
+ Name: Pisces Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bInt,1;
+ - Id: 29150
+ AegisName: Capricorn_Stone
+ Name: Capricorn Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 29151
+ AegisName: Aquarius_Stone
+ Name: Aquarius Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bVit,1;
+ - Id: 29152
+ AegisName: Scorpio_Stone
+ Name: Scorpio Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bDex,1;
+ - Id: 29153
+ AegisName: Taurus_Stone
+ Name: Taurus Stone
+ Type: Card
+ Buy: 10
+ Locations:
+ Shoes: true
+ Script: |
+ bonus bLuk,1;
+ - Id: 29154
+ AegisName: FixedCasting03
+ Name: Minor Fixed Cast Reduction
+ Type: Card
+ Script: |
+ bonus bFixedCast,-300;
+ - Id: 29155
+ AegisName: LexAeterna
+ Name: Lex Aeterna
+ Type: Card
+ Script: |
+ bonus3 bAutoSpell,"PR_LEXAETERNA",1,10;
+ - Id: 29156
+ AegisName: Casting_Top
+ Name: Variable Cast Reduction Upper
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-3;
+ - Id: 29157
+ AegisName: Casting_Middle
+ Name: Variable Cast Reduction Middle
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-3;
+ - Id: 29158
+ AegisName: Casting_Bottom
+ Name: Variable Cast Reduction Lower
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-3;
+ - Id: 29159
+ AegisName: EXP2TOP
+ Name: Experience + 2%
+ Type: Card
+ Script: |
+ bonus2 bExpAddRace,RC_All,2;
+ - Id: 29160
+ AegisName: BlueAura_Effect
+ Name: Blue Aura Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_GUMGANG,true;
+ UnEquipScript: |
+ hateffect HAT_EF_GUMGANG,false;
+ - Id: 29161
+ AegisName: Pink_Glow_Effect
+ Name: Pink Glow Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_CHERRYBLOSSOM,true;
+ UnEquipScript: |
+ hateffect HAT_EF_CHERRYBLOSSOM,false;
+ - Id: 29162
+ AegisName: Shadow_Effect
+ Name: Shadow Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_KAGEMUSYA,true;
+ UnEquipScript: |
+ hateffect HAT_EF_KAGEMUSYA,false;
+ - Id: 29166
+ AegisName: A-Tolerance
+ 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;
+ - 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;
+ }
+ - 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;
+ }
+ - 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;
+ }
+ - 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;
+ - 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;
+ - 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;
+ - 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;
+ - 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;
+ - 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;
+ - Id: 29176
+ AegisName: Tenji
+ Name: Tenji
+ Type: Card
+ 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;
+ - 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
+ Type: Card
+ Script: |
+ hateffect HAT_EF_WHITEBODY2,true;
+ UnEquipScript: |
+ hateffect HAT_EF_WHITEBODY2,false;
+ - Id: 29225
+ AegisName: WaterField_Effect
+ Name: Water Field Effect
+ Type: Card
+ Script: |
+ hateffect HAT_EF_WATER_BELOW2,true;
+ UnEquipScript: |
+ hateffect HAT_EF_WATER_BELOW2,false;
+ - Id: 29226
+ AegisName: ExplodingWave_Effect
+ Name: Crimson Wave Effect
+ Type: Card
+ Script: |
+ /* todo */
+ - Id: 29227
+ AegisName: Heal
+ Name: Heal
+ Type: Card
+ Script: |
+ skill "AL_HEAL",1;
+ - Id: 29228
+ AegisName: Steal
+ Name: Steal
+ Type: Card
+ Script: |
+ skill "TF_STEAL",1;
+ - Id: 29229
+ AegisName: Teleport
+ Name: Teleport
+ Type: Card
+ Script: |
+ skill "AL_TELEPORT",1;
+ - Id: 29238
+ AegisName: Evasion10
+ Name: Flee+10
+ Type: Card
+ Script: |
+ bonus bFlee,10;
+ - Id: 29239
+ AegisName: Hit5
+ Name: Hit+5
+ Type: Card
+ Script: |
+ bonus bHit,5;
+ - Id: 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
+ Type: Card
+ Buy: 20
+ - Id: 29311
+ AegisName: Racing_RK_2
+ Name: Racing(Rune Knight) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29312
+ AegisName: Racing_RK_3
+ Name: Racing(Rune Knight) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29313
+ AegisName: Racing_RG_1
+ Name: Racing(Royal Guard) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29314
+ AegisName: Racing_RG_2
+ Name: Racing(Royal Guard) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29315
+ AegisName: Racing_RG_3
+ Name: Racing(Royal Guard) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29316
+ AegisName: Racing_MC_1
+ Name: Racing(Mechanic) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29317
+ AegisName: Racing_MC_2
+ Name: Racing(Mechanic) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29318
+ AegisName: Racing_MC_3
+ Name: Racing(Mechanic) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29319
+ AegisName: Racing_GN_1
+ Name: Racing(Geneticist) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29320
+ AegisName: Racing_GN_2
+ Name: Racing(Geneticist) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29321
+ AegisName: Racing_GN_3
+ Name: Racing(Geneticist) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29322
+ AegisName: Racing_GC_1
+ Name: Racing(Guillotine Cross) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29323
+ AegisName: Racing_GC_2
+ Name: Racing(Guillotine Cross) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29324
+ AegisName: Racing_GC_3
+ Name: Racing(Guillotine Cross) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29325
+ AegisName: Racing_SC_1
+ Name: Racing(Shadow Chaser) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29326
+ AegisName: Racing_SC_2
+ Name: Racing(Shadow Chaser) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29327
+ AegisName: Racing_SC_3
+ Name: Racing(Shadow Chaser) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29328
+ AegisName: Racing_WL_1
+ Name: Racing(Warlock) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29329
+ AegisName: Racing_WL_2
+ Name: Racing(Warlock) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29330
+ AegisName: Racing_WL_3
+ Name: Racing(Warlock) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29331
+ AegisName: Racing_SO_1
+ Name: Racing(Sorcerer) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29332
+ AegisName: Racing_SO_2
+ Name: Racing(Sorcerer) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29333
+ AegisName: Racing_SO_3
+ Name: Racing(Sorcerer) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29334
+ AegisName: Racing_AB_1
+ Name: Racing(Archbishop) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29335
+ AegisName: Racing_AB_2
+ Name: Racing(Archbishop) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29336
+ AegisName: Racing_AB_3
+ Name: Racing(Archbishop) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29337
+ AegisName: Racing_SR_1
+ Name: Racing(Sura) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29338
+ AegisName: Racing_SR_2
+ Name: Racing(Sura) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29339
+ AegisName: Racing_SR_3
+ Name: Racing(Sura) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29340
+ AegisName: Racing_RA_1
+ Name: Racing(Ranger) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29341
+ AegisName: Racing_RA_2
+ Name: Racing(Ranger) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29342
+ AegisName: Racing_RA_3
+ Name: Racing(Ranger) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29343
+ AegisName: Racing_WM_1
+ Name: Racing(Wanderers & Minstrel) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29344
+ AegisName: Racing_WM_2
+ Name: Racing(Wanderers & Minstrel) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29345
+ AegisName: Racing_WM_3
+ Name: Racing(Wanderers & Minstrel) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29346
+ AegisName: Racing_GS_1
+ Name: Racing(Gunslinger) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29347
+ AegisName: Racing_GS_2
+ Name: Racing(Gunslinger) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29348
+ AegisName: Racing_GS_3
+ Name: Racing(Gunslinger) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29349
+ AegisName: Racing_NJ_1
+ Name: Racing(Ninja)1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29350
+ AegisName: Racing_NJ_2
+ Name: Racing(Ninja)2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29351
+ AegisName: Racing_NJ_3
+ Name: Racing(Ninja)3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29352
+ AegisName: Racing_SN_1
+ Name: Racing(Super Novice) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29353
+ AegisName: Racing_SN_2
+ Name: Racing(Super Novice) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29354
+ AegisName: Racing_SN_3
+ Name: Racing(Super Novice) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29355
+ AegisName: Racing_SU_1
+ Name: Racing(Summoner) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29356
+ AegisName: Racing_SU_2
+ Name: Racing(Summoner) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29357
+ AegisName: Racing_SU_3
+ Name: Racing(Summoner) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29358
+ AegisName: Casting_Robe
+ Name: Variable Casting Garment
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-10;
+ - Id: 29359
+ AegisName: Fatal_Top
+ Name: Fatal (Upper)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,3;
+ - Id: 29360
+ AegisName: Fatal_Bottom
+ Name: Fatal (Lower)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,3;
+ - Id: 29361
+ AegisName: Fatal_Robe
+ Name: Fatal (Garment)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,20;
+ - Id: 29362
+ AegisName: DoubleAttack
+ Name: Double Attack
+ Type: Card
+ Script: |
+ skill "TF_DOUBLE",3;
+ bonus bDoubleRate,15;
+ - Id: 29380
+ AegisName: ATK5
+ Name: ATK +5
+ Type: Card
+ Script: |
+ bonus bBaseAtk,5;
+ - Id: 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,2*getskilllv("MO_IRONHAND");
+ - Id: 29424
+ AegisName: SuraStone_Middle_
+ Name: Champion Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bHit,2*getskilllv("MO_DODGE");
+ - Id: 29425
+ AegisName: SuraStone_Bottom_
+ Name: Champion Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"MO_CHAINCOMBO",20;
+ - Id: 29426
+ AegisName: SuraStone_Robe_
+ Name: SuraStone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
+ - Id: 29427
+ AegisName: SuraStone_Robe2_
+ Name: Sura Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",15;
+ - Id: 29428
+ AegisName: RangerStone_Top_
+ Name: Sniper Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("HT_STEELCROW");
+ - Id: 29429
+ AegisName: RangerStone_Middle_
+ Name: Sniper Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillFixedCast,"SN_SHARPSHOOTING",-500;
+ - Id: 29430
+ AegisName: RangerStone_Bottom_
+ Name: Sniper Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AC_SHOWER",20;
+ - Id: 29431
+ AegisName: RangerStone_Robe_
+ Name: RangerStone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RA_ARROWSTORM",10;
+ - Id: 29432
+ AegisName: SorcererStone_Top_
+ Name: Professor Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bAspdRate,getskilllv("SA_ADVANCEDBOOK");
+ - Id: 29433
+ AegisName: SorcererStone_Middle_
+ Name: Professor Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillFixedCast,"PF_DOUBLECASTING",-400;
+ - Id: 29434
+ AegisName: SorcererStone_Bottom_
+ Name: Professor Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"MG_FIREBOLT",20;
+ bonus2 bSkillAtk,"MG_COLDBOLT",20;
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20;
+ - Id: 29435
+ AegisName: SorcererStone_Robe_
+ Name: SorcererStone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10;
+ - Id: 29438
+ AegisName: Z-Knockback
+ Name: Z-Knockback
+ Type: Card
+ Script: |
+ bonus bNoKnockback;
+ - Id: 29439
+ AegisName: Z-Immortal
+ Name: Z-Immortal
+ Type: Card
+ Script: |
+ 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;
+ }
+ - Id: 29441
+ AegisName: Z-Reincarnation
+ Name: Z-Reincarnation
+ Type: Card
+ Script: |
+ bonus bRestartFullRecover;
+ - Id: 29442
+ AegisName: Z-NoDispell
+ Name: Z-NoDispell
+ Type: Card
+ Script: |
+ bonus bNoCastCancel2;
+ - Id: 29443
+ AegisName: Z-Clairvoyance
+ Name: Z-Clairvoyance
+ Type: Card
+ Script: |
+ bonus bIntravision;
+ - Id: 29444
+ AegisName: Z-Cast_Fixed
+ Name: Z-Cast Fixed
+ Type: Card
+ Script: |
+ bonus bFixedCastrate,-50;
+ - Id: 29460
+ AegisName: RuneknightStone_Top_
+ Name: Lord Knight Stone (Top)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("KN_SPEARMASTERY");
+ - Id: 29461
+ AegisName: RuneknightStone_Middle_
+ Name: Lord Knight Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"LK_SPIRALPIERCE",15;
+ - Id: 29462
+ AegisName: RuneknightStone_Bottom_
+ Name: Lord Knight Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus bAspdRate,getskilllv("KN_CAVALIERMASTERY");
+ - Id: 29463
+ AegisName: RuneknightStone_Robe_
+ Name: Rune Knight Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",10;
+ - Id: 29464
+ AegisName: GeneticStone_Top_
+ Name: Creator Stone (Top)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("AM_LEARNINGPOTION");
+ - Id: 29465
+ AegisName: GeneticStone_Middle_
+ Name: Creator Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bHealPower,2*getskilllv("AM_POTIONPITCHER");
+ - Id: 29466
+ AegisName: GeneticStone_Bottom_
+ Name: Creator Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AM_ACIDTERROR",20;
+ - Id: 29467
+ AegisName: GeneticStone_Robe_
+ Name: Genetic Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"GN_CARTCANNON",10;
+ - Id: 29468
+ AegisName: WarlockStone_Top_
+ Name: High Wizard Stone (Top)
+ Type: Card
+ Script: |
+ bonus bMatk,2*getskilllv("HW_MAGICPOWER");
+ - Id: 29469
+ AegisName: WarlockStone_Middle_
+ Name: High Wizard Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WZ_METEOR",20;
+ - Id: 29470
+ AegisName: WarlockStone_Bottom_
+ Name: High Wizard Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WZ_FIREPILLAR",20;
+ - Id: 29471
+ AegisName: WarlockStone_Robe_
+ Name: Warlock Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",10;
+ - Id: 29477
+ AegisName: ShadowchaserStone_Top_
+ Name: Stalker Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("RG_PLAGIARISM");
+ - Id: 29478
+ AegisName: ShadowchaseStone_Middle_
+ Name: Stalker Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bHit,2*getskilllv("AC_VULTURE");
+ - Id: 29479
+ AegisName: ShadowchaseStone_Bottom_
+ Name: Stalker Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RG_RAID",20;
+ - Id: 29480
+ AegisName: ShadowchaserStone_Robe_
+ Name: Shadow Chaser Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",15;
+ - Id: 29481
+ AegisName: MechanicStone_Top_
+ Name: Whitesmith Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("BS_WEAPONRESEARCH");
+ - Id: 29482
+ AegisName: MechanicStone_Middle_
+ Name: Whitesmith Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bHit,3*getskilllv("BS_SKINTEMPER");
+ - Id: 29483
+ AegisName: MechanicStone_Bottom_
+ Name: Whitesmith Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WS_CARTTERMINATION",20;
+ - Id: 29484
+ AegisName: MechanicStone_Robe_
+ Name: Mechanic Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"NC_AXETORNADO",15;
+ - Id: 29485
+ AegisName: WanderMinstrelStone_Top_
+ 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;
+ - 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;
+ - Id: 29487
+ AegisName: WanderMinstrelStone_Bottom_
+ Name: Clown Gypsy Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",20;
+ - Id: 29488
+ AegisName: WanderMinstrelStone_Robe_
+ Name: Wanderer Minstrel Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ - Id: 29513
+ AegisName: HighpriestStone_Top_
+ Name: High Priest Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bHealPower,getskilllv("HP_MEDITATIO");
+ - Id: 29514
+ AegisName: HighpriestStone_Middle_
+ Name: High Priest Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,2*getskilllv("PR_MACEMASTERY");
+ - Id: 29515
+ AegisName: HighpriestStone_Bottom_
+ Name: High Priest Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"PR_MAGNUS",20;
+ - Id: 29516
+ AegisName: ArchbishopStone_Robe_
+ Name: Archbishop Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AB_ADORAMUS",15;
+ - Id: 29517
+ AegisName: PaladinStone_Top_
+ Name: Paladin Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,(getskilllv("CR_TRUST")/2);
+ - Id: 29518
+ AegisName: PaladinStone_Middle_
+ Name: Paladin Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,(getskilllv("KN_SPEARMASTERY")/2);
+ - Id: 29519
+ AegisName: PaladinStone_Bottom_
+ Name: Paladin Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"CR_HOLYCROSS",20;
+ - Id: 29520
+ AegisName: RoyalguardStone_Robe_
+ Name: Royal Guard Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ - Id: 29521
+ AegisName: AssacrossStone_Top_
+ Name: Assassin Cross Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("AS_KATAR");
+ - Id: 29522
+ AegisName: AssacrossStone_Middle_
+ Name: Assassin Cross Stone (Middle)
+ Type: Card
+ Script: |
+ bonus bHit,2*getskilllv("AS_LEFT");
+ - Id: 29523
+ AegisName: AssacrossStone_Bottom_
+ Name: Assassin Cross Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AS_SONICBLOW",20;
+ - Id: 29524
+ AegisName: GuillcrossStone_Robe_
+ Name: Assassin Cross Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;
+ - Id: 29527
+ AegisName: Improve_Orb_Def
+ Name: Modification Orb(Defense)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bDef,25;
+ if (.@r>=7) {
+ bonus bDef,10;
+ if (.@r>=9) {
+ bonus bDef,10;
+ }
+ }
+ - Id: 29528
+ AegisName: Improve_Orb_Mdef
+ Name: Modification Orb(Magic Defense)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,2;
+ if (.@r>=7) {
+ bonus bMdef,3;
+ if (.@r>=9) {
+ bonus bMdef,3;
+ }
+ }
+ - 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 = getrefine();
+ bonus bMaxSPrate,5;
+ 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 = getrefine();
+ bonus bMaxHPrate,5;
+ 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 = 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 = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ 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 = getrefine();
+ bonus bMatkRate,5;
+ if (.@r>8) {
+ bonus bMatk,25;
+ }
+ else if (.@r>6) {
+ bonus bMatk,25;
+ }
+ - Id: 29536
+ AegisName: Improve_Orb_Archer
+ Name: Modification Orb(Sharpshooter)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3;
+ if (.@r>=7) {
+ bonus bLongAtkRate,2;
+ if (.@r>=9) {
+ bonus bLongAtkRate,2;
+ }
+ }
+ - Id: 29537
+ AegisName: Improve_Orb_Speed
+ Name: Modification Orb(Swift)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bAspd,1;
+ 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 = getrefine();
+ bonus bVariableCastrate,-5;
+ if (.@r>=7) {
+ bonus bVariableCastrate,-3;
+ if (.@r>=9) {
+ bonus bVariableCastrate,-3;
+ }
+ }
+ - Id: 29539
+ AegisName: Improve_Orb_Cri
+ Name: Modification Orb(Critical)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,10;
+ 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 = getrefine();
+ bonus bDelayrate,-5;
+ if (.@r>=7) {
+ bonus bDelayrate,-5;
+ if (.@r>=9) {
+ bonus bDelayrate,-5;
+ }
+ }
+ - Id: 29541
+ AegisName: Improve_Orb_Fix
+ Name: Modification Orb(Fixed Casting Time)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bFixedCast,-300;
+ if (.@r>=7) {
+ bonus bFixedCast,-200;
+ if (.@r>=9) {
+ bonus bFixedCast,-200;
+ }
+ }
+ - Id: 29542
+ AegisName: Improve_Orb_Above
+ Name: Modification Orb(Above All)
+ Type: Card
+ Script: |
+ .@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;
+ }
+ }
+ - 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)
+ Type: Card
+ 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 = 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;
+ }
+ else {
+ 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
+ Type: Card
+ Buy: 20
+ - Id: 29580
+ AegisName: Racing_SG_2
+ Name: Racing (Star Gladiator) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29581
+ AegisName: Racing_SG_3
+ Name: Racing (Star Gladiator) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29582
+ AegisName: Racing_SL_1
+ Name: Racing (Soul Linker) 1Lv
+ Type: Card
+ Buy: 20
+ - Id: 29583
+ AegisName: Racing_SL_2
+ Name: Racing (Soul Linker) 2Lv
+ Type: Card
+ Buy: 20
+ - Id: 29584
+ AegisName: Racing_SL_3
+ Name: Racing (Soul Linker) 3Lv
+ Type: Card
+ Buy: 20
+ - Id: 29587
+ AegisName: Gh_md_agi
+ Name: Flash
+ Type: Card
+ - Id: 29588
+ AegisName: Gh_md_str
+ Name: Power
+ Type: Card
+ - Id: 29589
+ AegisName: Gh_md_dex
+ Name: Celestial
+ Type: Card
+ - Id: 29590
+ AegisName: Gh_md_int
+ Name: Divine Power
+ Type: Card
+ - Id: 29591
+ AegisName: Gh_md_vit
+ Name: Rigid Body
+ Type: Card
+ - Id: 29592
+ AegisName: Gh_md_luk
+ Name: Hundred Lucks
+ Type: Card
+ - Id: 29594
+ AegisName: Seyren_Memory
+ Name: Seyren's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29595
+ AegisName: Howard_Memory
+ Name: Howard's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29596
+ AegisName: Eremes_Memory
+ Name: Eremes's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29598
+ AegisName: Catherine_Memory
+ Name: Catherine's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29599
+ AegisName: Margaretha_Memory
+ Name: Margaretha's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29600
+ AegisName: Cecil_Memory
+ Name: Cecil's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29601
+ AegisName: Randel_Memory
+ Name: Randel's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29602
+ AegisName: Flamel_Memory
+ Name: Flamel's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29603
+ AegisName: Gertie_Memory
+ Name: Gertie's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29604
+ AegisName: Celia_Memory
+ Name: Celia's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29605
+ AegisName: Chen_Memory
+ Name: Chen's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29606
+ AegisName: Trentini_Memory
+ Name: Trentini's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29607
+ AegisName: Alphoccio_Memory
+ Name: Alphoccio's Memory
+ Type: Card
+ Buy: 20
+ - Id: 29611
+ AegisName: SuraStone_Bottom2_
+ Name: Sura Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("AL_DP");
+ - Id: 29612
+ AegisName: SuraStone_Middle2_
+ Name: Sura Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"MO_COMBOFINISH",15;
+ - Id: 29613
+ AegisName: SuraStone_Top2_
+ Name: Sura Stone II (Upper)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"CH_CHAINCRUSH",15;
+ - Id: 29614
+ AegisName: SorcererStone_Robe2_
+ Name: Sorcerer Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",15;
+ - Id: 29615
+ AegisName: SorcererStone_Bottom2_
+ Name: Sorcerer Stone II (Bottom)
+ Type: Card
+ Script: |
+ 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;
+ - Id: 29617
+ AegisName: SorcererStone_Top2_
+ Name: Sorcerer Stone II (Upper)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WZ_EARTHSPIKE",20;
+ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20;
+ - Id: 29618
+ AegisName: ShadowchaserStone_Robe2_
+ Name: Shadow Chaser Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SC_FATALMENACE",15;
+ - Id: 29619
+ AegisName: ShadowchasStone_Bottom2_
+ Name: Shadow Chaser Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bHit,getskilllv("TF_MISS");
+ - Id: 29620
+ AegisName: ShadowchasStone_Middle2_
+ Name: Shadow Chaser Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RG_BACKSTAP",15;
+ - Id: 29621
+ AegisName: ShadowchaserStone_Top2_
+ Name: Shadow Chaser Stone II (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("RG_SNATCHER");
+ - Id: 29651
+ AegisName: SoulLinkerStone_Top_
+ Name: Soul Linker Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bMatk,2*getskilllv("TK_SPTIME");
+ - Id: 29652
+ AegisName: SoulLinkerStone_Middle_
+ Name: Soul Linker Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SL_SMA",20;
+ - Id: 29653
+ AegisName: SoulLinkerStone_Bottom_
+ Name: Soul Linker Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-2*getskilllv("SL_KAAHI");
+ - Id: 29654
+ AegisName: SoulReaperStone_Robe_
+ Name: Soul Reaper Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SP_SWHOO",20;
+ - Id: 29655
+ AegisName: StarGladiatorStone_Top_
+ Name: Star Gladiator Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("TK_HPTIME");
+ - Id: 29656
+ AegisName: StarGladiatorStone_Middle_
+ Name: Star Gladiator Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bFixedCastrate,"SG_FEEL",-50;
+ - Id: 29657
+ AegisName: StarGladiatorStone_Bottom_
+ Name: Star Gladiator Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus bAspdRate,getskilllv("SG_KNOWLEDGE");
+ - Id: 29658
+ AegisName: StarEmperorStone_Garment_
+ Name: Star Emperor Stone (Garment)
+ Type: Card
+ Script: |
+ 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 bMatk,2*getskilllv("NJ_NINPOU");
+ bonus bBaseAtk,2*getskilllv("NJ_NINPOU");
+ - Id: 29660
+ AegisName: NinjaStone_Middle_
+ Name: Ninja Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"NJ_HUUMA",20;
+ - Id: 29661
+ AegisName: NinjaStone_Bottom_
+ Name: Ninja Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"NJ_BAKUENRYU",20;
+ bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20;
+ bonus2 bSkillAtk,"NJ_KAMAITACHI",20;
+ - Id: 29662
+ AegisName: KagerouStone_Robe_
+ Name: Kagerou Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"KO_HUUMARANKA",25;
+ - Id: 29663
+ AegisName: OboroStone_Robe_
+ Name: Oboro Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"NJ_KOUENKA",20;
+ - Id: 29664
+ AegisName: GunslingerStone_Top_
+ Name: Gunslinger Stone (Upper)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE");
+ - Id: 29665
+ AegisName: GunslingerStone_Middle_
+ Name: Gunslinger Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"GS_DESPERADO",20;
+ - Id: 29666
+ AegisName: GunslingerStone_Bottom_
+ Name: Gunslinger Stone (Bottom)
+ Type: Card
+ Script: |
+ 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;
+ - Id: 29668
+ AegisName: DoramStone_Top_
+ Name: Doram Stone (Upper)
+ Type: Card
+ Script: |
+ .@lv = getskilllv("SU_SCRATCH");
+ bonus bBaseAtk,.@lv;
+ bonus bMatk,.@lv;
+ - Id: 29669
+ AegisName: DoramStone_Middle_
+ Name: Doram Stone (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",20;
+ - Id: 29670
+ AegisName: DoramStone_Bottom_
+ Name: Doram Stone (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20;
+ - Id: 29671
+ AegisName: DoramStone_Robe_
+ Name: Doram Stone (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"SU_PICKYPECK",20;
+ bonus2 bSkillAtk,"SU_CN_METEOR",20;
+ - Id: 29672
+ AegisName: Time_Jewely_Str_1
+ Name: Temporal Jewel (STR) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bBaseAtk,2*(.@r/2);
+ bonus bHit,3*(.@r/2);
+ bonus2 bAddClass,Class_All,(.@r/5);
+ - Id: 29673
+ AegisName: Time_Jewely_Str_2
+ Name: Temporal Jewel (STR) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bBaseAtk,4*(.@r/2);
+ bonus bHit,5*(.@r/2);
+ bonus2 bAddClass,Class_All,2*(.@r/5);
+ - Id: 29674
+ AegisName: Time_Jewely_Str_3
+ Name: Temporal Jewel (STR) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bBaseAtk,7*(.@r/2);
+ bonus bHit,7*(.@r/2);
+ bonus2 bAddClass,Class_All,3*(.@r/5);
+ - Id: 29675
+ AegisName: Time_Jewely_Agi_1
+ Name: Temporal Jewel (AGI) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bAspdRate,(.@r/2);
+ bonus bFlee,4*(.@r/2);
+ bonus bAspd,(.@r/5);
+ - Id: 29676
+ AegisName: Time_Jewely_Agi_2
+ Name: Temporal Jewel (AGI) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bAspdRate,3*(.@r/2);
+ bonus bFlee,5*(.@r/2);
+ bonus bAspd,(.@r/5);
+ - Id: 29677
+ AegisName: Time_Jewely_Agi_3
+ Name: Temporal Jewel (AGI) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bAspdRate,5*(.@r/2);
+ bonus bFlee,7*(.@r/2);
+ bonus bAspd,(.@r/5);
+ - Id: 29678
+ AegisName: Time_Jewely_Vit_1
+ Name: Temporal Jewel (VIT) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bDef,5*(.@r/2);
+ bonus bMaxHP,200*(.@r/2);
+ bonus bMaxHPrate,(.@r/5);
+ - Id: 29679
+ AegisName: Time_Jewely_Vit_2
+ Name: Temporal Jewel (VIT) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bDef,7*(.@r/2);
+ bonus bMaxHP,300*(.@r/2);
+ bonus bMaxHPrate,2*(.@r/5);
+ - Id: 29680
+ AegisName: Time_Jewely_Vit_3
+ Name: Temporal Jewel (VIT) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bDef,10*(.@r/2);
+ bonus bMaxHP,500*(.@r/2);
+ bonus bMaxHPrate,3*(.@r/5);
+ - Id: 29681
+ AegisName: Time_Jewely_Int_1
+ Name: Temporal Jewel (INT) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bHealPower,(.@r/2);
+ bonus bMatk,2*(.@r/2);
+ bonus bMatkRate,(.@r/5);
+ - Id: 29682
+ AegisName: Time_Jewely_Int_2
+ Name: Temporal Jewel (INT) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bHealPower,3*(.@r/2);
+ bonus bMatk,4*(.@r/2);
+ bonus bMatkRate,2*(.@r/5);
+ - Id: 29683
+ AegisName: Time_Jewely_Int_3
+ Name: Temporal Jewel (INT) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bHealPower,5*(.@r/2);
+ bonus bMatk,7*(.@r/2);
+ bonus bMatkRate,3*(.@r/5);
+ - Id: 29684
+ AegisName: Time_Jewely_Dex_1
+ Name: Temporal Jewel (DEX) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus2 bWeaponDamageRate,W_BOW,(.@r/2);
+ bonus bHit,2*(.@r/2);
+ bonus2 bAddClass,Class_All,(.@r/5);
+ - Id: 29685
+ AegisName: Time_Jewely_Dex_2
+ Name: Temporal Jewel (DEX) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus2 bWeaponDamageRate,W_BOW,2*(.@r/2);
+ bonus bHit,5*(.@r/2);
+ bonus2 bAddClass,Class_All,2*(.@r/5);
+ - Id: 29686
+ AegisName: Time_Jewely_Dex_3
+ Name: Temporal Jewel (DEX) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus2 bWeaponDamageRate,W_BOW,3*(.@r/2);
+ bonus bHit,7*(.@r/2);
+ bonus2 bAddClass,Class_All,3*(.@r/5);
+ - Id: 29687
+ AegisName: Time_Jewely_Luk_1
+ Name: Temporal Jewel (LUK) Lv 1
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bCritAtkRate,3*(.@r/2);
+ bonus bCritical,(.@r/2);
+ bonus2 bAddClass,Class_All,(.@r/5);
+ - Id: 29688
+ AegisName: Time_Jewely_Luk_2
+ Name: Temporal Jewel (LUK) Lv 2
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bCritAtkRate,6*(.@r/2);
+ bonus bCritical,2*(.@r/2);
+ bonus2 bAddClass,Class_All,2*(.@r/5);
+ - Id: 29689
+ AegisName: Time_Jewely_Luk_3
+ Name: Temporal Jewel (LUK) Lv 3
+ Type: Card
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HEAD_TOP);
+ bonus bCritAtkRate,9*(.@r/2);
+ bonus bCritical,3*(.@r/2);
+ bonus2 bAddClass,Class_All,3*(.@r/5);
+ - Id: 31006
+ AegisName: LoVA_Hades_Card
+ Name: LoVA Hades Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 31007
+ AegisName: LoVA_Realization_Hades_Card
+ Name: LoVA Realization Hades Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bDefEle,Ele_Undead;
+ bonus2 bSubRace,RC_Undead,10;
+ - Id: 31008
+ AegisName: LoVA_Lulu_Card
+ Name: LoVA Lulu Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ 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;
+ }
+ - Id: 31011
+ AegisName: LoVA_Realization_Kima_Card
+ Name: LoVA Realization Kima Card
+ Type: Card
+ Buy: 20
+ 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;
+ }
+ - Id: 31012
+ AegisName: LoVA_Bahamut_Card
+ Name: LoVA Bahamut Card
+ Type: Card
+ Buy: 20
+ 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;
+ }
+ - Id: 31013
+ AegisName: LoVA_Realization_Bahamut_Card
+ Name: LoVA Realization Bahamut Card
+ Type: Card
+ Buy: 20
+ 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;
+ }
+ - Id: 31014
+ AegisName: LoVA_Ragnarok_Card
+ Name: LoVA Ragnarok Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ 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
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ bonus bMdef,10;
+ bonus bMaxHPrate,10;
+ if (getrefine()>=7) {
+ bonus2 bSkillAtk,"HW_GRAVITATION",769;
+ }
+ - Id: 31016
+ 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;
+ - Id: 31017
+ AegisName: XM_Cookie_Card
+ Name: Vicious Cookie Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine()/2;
+ bonus2 bAddClass,Class_All,1+.@r;
+ bonus bMatkRate,1+.@r;
+ bonus bMaxHPrate,-2*(1+.@r);
+ - Id: 31018
+ 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;
+ - Id: 31019
+ 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;
+ - Id: 31020
+ 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;
+ - Id: 31021
+ 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;
+ - Id: 31022
+ 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;
+ - Id: 31023
+ 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;
+ - Id: 31024
+ AegisName: As_Bdy_Knight_Card
+ Name: Immortal Cursed Knight Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddClass,Class_All,10;
+ bonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1;
+ - Id: 31025
+ AegisName: As_Wind_Ghost_Card
+ Name: Immortal Wind Ghost Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,10;
+ bonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1;
+ - Id: 31026
+ AegisName: As_Ragged_Golem_Card
+ Name: Stephane Jack Earnest Wolf Card
+ Type: Card
+ Buy: 20
+ Weight: 10
+ Locations:
+ 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;
+ autobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";
+ autobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }";
+ - Id: 300000
+ AegisName: IDTest_Card
+ Name: IDTest Card
+ Type: Card
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ bonus bAgi,1;
+ - Id: 300001
+ AegisName: Poisonous_Card
+ Name: Poisonous Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Poison,25;
+ - Id: 300002
+ AegisName: Toxious_Card
+ Name: Toxious Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLongAtkDef,5;
+ bonus bMaxHPrate,10;
+ - Id: 300003
+ AegisName: Porcellio_W_Card
+ Name: White Porcellio Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bBaseAtk,20;
+ - Id: 300004
+ AegisName: Neo_Mineral_Card
+ Name: Neo Mineral Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDef,30;
+ - Id: 300005
+ AegisName: Abyss_Man_Card
+ Name: Abyssman Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMaxHP,10;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",10;
+ - Id: 300006
+ AegisName: Jeweliant_Card
+ Name: Jewelry Ant Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,100,BF_WEAPON,1;
+ - Id: 300007
+ AegisName: Jungoliant_Card
+ Name: Jeweled Ungoliant Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Angelgolt_Card
+ Name: Angelgolt Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,10;
+ - Id: 300009
+ AegisName: Plasma_Spt_Card
+ Name: Spectrum Plasma Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Ghost,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Ghost,10;
+ }
+ - Id: 300010
+ AegisName: Plasma_Arch_Card
+ Name: Arch Plasma Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Wind,10;
+ }
+ - Id: 300011
+ AegisName: Holy_Frus_Card
+ Name: Holy Frus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Holy,10;
+ }
+ - Id: 300012
+ AegisName: Holy_Skogul_Card
+ Name: Holy Skogul Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower,5;
+ if (.@r>=7) {
+ bonus bHealPower,3;
+ }
+ if (.@r>=9) {
+ bonus bHealPower,2;
+ }
+ - Id: 300013
+ AegisName: Reginleif_Card
+ Name: Reginleif Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus2 bAddClass,Class_All,30;
+ bonus bMaxHPrate,-15;
+ - Id: 300014
+ AegisName: Ingrid_Card
+ Name: Ingrid Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Armor: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bUnbreakableArmor;
+ bonus2 bAddClass,Class_All,-15;
+ bonus bMaxHPrate,40;
+ bonus2 bHPLossRate,1000,4000;
+ UnEquipScript: |
+ heal -10000,0;
+ - Id: 300015
+ AegisName: Ferus_P_Card
+ Name: Purple Ferus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Head_Top: true
+ Head_Mid: true
+ 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: Treasure_Mimic_Card
+ Name: Treasure Mimic Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bCritical,5;
+ bonus bFlee,30;
+ - Id: 300017
+ AegisName: Acidus_B_Card
+ Name: Black Acidus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Dark,25;
+ - Id: 300018
+ AegisName: Acidus_S_Card
+ Name: Silver Acidus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddEle,Ele_Holy,25;
+ - Id: 300019
+ AegisName: Bone_Ferus_Card
+ Name: Bone Ferus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Left_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Dragon,5;
+ - Id: 300020
+ AegisName: Bone_Acidus_Card
+ Name: Bone Acidus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddRace,RC_Brute,5;
+ - Id: 300021
+ AegisName: Bone_Detale_Card
+ Name: Bone Detardeurus Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Beta_Guards_Card
+ Name: Broken Security Beta Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Omega_Cleaner_Card
+ Name: Broken Cleaning Robot Omega Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bDex,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"NC_AXEBOOMERANG",10;
+ bonus2 bSkillAtk,"NC_VULCANARM",10;
+ - Id: 300078
+ AegisName: Sweetie_Card
+ Name: Sweetie Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSkillAtk,"RL_FIREDANCE",60;
+ bonus bUseSPrate,25;
+ - Id: 300079
+ AegisName: Red_Pepper_Card
+ Name: Red Pepper Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Red_Pepper_H_Card
+ Name: Greater Red Pepper Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Assistant_Card
+ Name: Research Assistant Bot Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Assistant_H_Card
+ Name: Greater Research Assistant Bot Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ 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: Dry_Rafflesia_Card
+ Name: Dried Rafflesia Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"NJ_KUNAI",15;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",15;
+ - Id: 300084
+ AegisName: Dry_Rafflesia_H_Card
+ Name: Greater Dried Rafflesia Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Holy,30;
+ bonus bFlee,5;
+ - Id: 300085
+ AegisName: Alnoldi_Ex_Card
+ Name: Special Alnoldi Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Alnoldi_Ex_H_Card
+ Name: Greater Special Alnoldi Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) {
+ bonus bShortAtkRate,10;
+ }
+ bonus bShortAtkRate,.@r;
+ if (.@r>=11) {
+ bonus bUnbreakableWeapon;
+ }
+ - Id: 300087
+ AegisName: Beta_Basic_Card
+ Name: Broken Gardener Beta Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bLuk,2;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",10;
+ bonus2 bSkillAtk,"SU_SCAROFTAROU",10;
+ - Id: 300088
+ AegisName: Beta_Basic_H_Card
+ Name: Greater_Broken Gardener Beta Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) {
+ bonus2 bAddClass,Class_All,5;
+ bonus bHit,20;
+ }
+ bonus bShortAtkRate,.@r;
+ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15*.@r;
+ bonus2 bSkillAtk,"SJ_FULLMOONKICK",15*.@r;
+ - Id: 300089
+ AegisName: Verporta_Card
+ Name: Verporta Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Verporte_Card
+ Name: Verporte Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ bonus bUseSPrate,5;
+ if (getrefine()>=9) {
+ bonus2 bMagicAtkEle,Ele_Earth,10;
+ }
+ - Id: 300091
+ AegisName: MD_Papila_Card
+ Name: Papila Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bDex,2;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ bonus2 bSkillAtk,"GS_SPREADATTACK",10;
+ bonus2 bSkillAtk,"GS_DESPERADO",10;
+ bonus2 bSkillAtk,"GS_FULLBUSTER",10;
+ - Id: 300092
+ AegisName: MD_Papila_H_Card
+ Name: Greater Papila Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: MD_Papila_Ruba_Card
+ Name: Papila Ruba Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: MD_Papila_Ruba_H_Card
+ Name: Greater Papila Ruba Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) {
+ bonus bCritAtkRate,20;
+ }
+ bonus bCritAtkRate,2*(getrefine()/2);
+ - Id: 300095
+ AegisName: MD_Papila_Cae_Card
+ Name: Papila Cae Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: MD_Papila_Cae_H_Card
+ Name: Greater Papila Cae Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ 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) {
+ bonus bVariableCastrate,-10;
+ bonus bMatk,20;
+ }
+ if (.@r>=13) {
+ bonus bMatk,20;
+ }
+ - Id: 300097
+ AegisName: Aries_Card
+ Name: Aries Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Aries_H_Card
+ Name: Greater Aries Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatk,5;
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ bonus2 bSkillAtk,"NJ_HUUJIN",10;
+ if (getrefine()>=7) {
+ bonus bVariableCastrate,-5;
+ }
+ - Id: 300099
+ AegisName: Silva_Papilia_Card
+ Name: Silva Papilia Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubClass,Class_Normal,20;
+ bonus bHealPower2,15;
+ - Id: 300100
+ AegisName: Gran_Papilia_Card
+ Name: Gran Papilia Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Left_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubClass,Class_Boss,25;
+ bonus bHealPower2,30;
+ - Id: 300101
+ AegisName: Broken_Cleaner_Card
+ Name: Broken Cleaner Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Bath_Manager_Card
+ Name: Bath Manager Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: Bath_Mermaid_Card
+ Name: Azure Princess Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus bMatk,15;
+ if (.@r>=9) {
+ bonus2 bMagicAddRace,RC_Fish,10;
+ bonus2 bMagicAddRace,RC_DemiHuman,10;
+ }
+ if (.@r>=11) {
+ bonus bDelayrate,-3;
+ }
+ - Id: 300104
+ AegisName: Bookworm_Card
+ Name: Bookworm Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bInt,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",10;
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10;
+ - Id: 300105
+ AegisName: Roaming_Spellbook_Card
+ Name: Roaming Spellbook Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,3;
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",10;
+ bonus2 bSkillAtk,"WL_COMET",10;
+ - Id: 300106
+ AegisName: Red_Pitaya_Card
+ Name: Red Pitaya Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Fire,10;
+ }
+ - Id: 300107
+ AegisName: Meow_Card
+ Name: Meow Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bAddItemHealRate,513,500;
+ bonus2 bAddItemHealRate,512,500;
+ - Id: 300108
+ AegisName: Sewage_Venenum_Card
+ Name: Sewage Venenum Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ bonus bDex,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SC_FATALMENACE",10;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",10;
+ - Id: 300109
+ AegisName: Sewage_Cramp_Card
+ Name: Sewage Cramp Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,1;
+ bonus bDex,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",10;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;
+ - Id: 300110
+ AegisName: Sewage_Waterfall_Card
+ Name: Sewage Waterfall Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ bonus bInt,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"KO_BAKURETSU",10;
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",10;
+ - Id: 300111
+ AegisName: Bellare3_Card
+ Name: Elite Bellare Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,2;
+ bonus bInt,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"NJ_KOUENKA",10;
+ bonus2 bSkillAtk,"NJ_HYOUSENSOU",10;
+ bonus2 bSkillAtk,"NJ_HUUJIN",10;
+ - Id: 300112
+ AegisName: Dolor3_Card
+ Name: Magic-poisoned Dolor Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bInt,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10;
+ bonus2 bSkillAtk,"SP_SWHOO",10;
+ - Id: 300113
+ AegisName: Unleashed_Magic_Card
+ Name: Unleashed Magic Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bVit,1;
+ bonus bInt,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;
+ bonus2 bSkillAtk,"WM_REVERBERATION",10;
+ - Id: 300114
+ AegisName: Plaga3_Card
+ Name: Magic-poisoned Plaga Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Neutral,10;
+ }
+ - Id: 300115
+ AegisName: Sanare3_Card
+ Name: Magic-poisoned Sanare Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,2;
+ bonus bDex,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"AB_ADORAMUS",10;
+ bonus2 bSkillAtk,"AB_JUDEX",10;
+ - Id: 300116
+ AegisName: Powerful_Magic_Card
+ Name: Powerful Magic Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ bonus bInt,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10;
+ bonus2 bSkillAtk,"SR_TIGERCANNON",10;
+ - Id: 300117
+ AegisName: Sharp_Magic_Card
+ Name: Sharp Magic Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"RA_ARROWSTORM",10;
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",10;
+ - Id: 300118
+ AegisName: Boiling_Phen_Card
+ Name: Boiling Phen Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bStr,2;
+ bonus bVit,1;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10;
+ bonus2 bSkillAtk,"SJ_FULLMOONKICK",10;
+ - Id: 300119
+ AegisName: Boiling_Swordfish_Card
+ Name: Boiling Swordfish Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bAgi,1;
+ bonus bDex,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10;
+ bonus2 bSkillAtk,"RL_R_TRIP",10;
+ - Id: 300120
+ AegisName: Boiling_Piranha_Card
+ Name: Boiling Piranha Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bMatkRate,2;
+ - Id: 300121
+ AegisName: Boiling_Marc_Card
+ Name: Boiling Marc Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Shoes: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_Holy,5;
+ bonus2 bMagicAtkEle,Ele_Water,5;
+ bonus2 bMagicAtkEle,Ele_Holy,(.@r/2);
+ bonus2 bMagicAtkEle,Ele_Water,(.@r/2);
+ - Id: 300122
+ AegisName: Yellow_Pitaya_Card
+ Name: Yellow Pitaya Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Holy,3*getrefine();
+ - Id: 300123
+ AegisName: Purple_Pitaya_Card
+ Name: Purple Pitaya Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Garment: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,15;
+ bonus2 bMagicAtkEle,Ele_Neutral,3*getrefine();
+ - Id: 300124
+ AegisName: Blue_Pitaya_Card
+ Name: Blue Pitaya Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ .@r = getequiprefinerycnt(EQI_HAND_R);
+ 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) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ }
+ if (.@r>=14) {
+ bonus2 bMagicAtkEle,Ele_Water,10;
+ }
+ - Id: 300125
+ AegisName: Green_Pitaya_Card
+ Name: Green Pitaya Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Both_Accessory: true
+ Flags:
+ BuyingStore: true
+ DropEffect: CLIENT
+ Script: |
+ bonus bInt,1;
+ bonus bLuk,2;
+ bonus bMaxHPrate,10;
+ bonus2 bSkillAtk,"SU_CN_METEOR",10;
+ bonus2 bSkillAtk,"SU_PICKYPECK",10;
+ - Id: 300127
+ AegisName: Wolf_Card_E
+ Name: Wolf Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 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: Poe_Card
+ Name: Poe Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 300130
+ AegisName: S_Poe_Card
+ Name: Poe Richard Card
+ Type: Card
+ Weight: 10
+ Locations:
+ Right_Hand: true
+ - Id: 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;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_Wind,2;
+ }
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_Wind,5;
+ }
+ - Id: 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: 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;
+ bonus2 bAddEle,Ele_Water,5;
+ if (.@r>=7) {
+ bonus2 bAddEle,Ele_Water,5;
+ }
+ if (.@r>=9) {
+ bonus2 bAddRace,RC_Fish,5;
+ }
+ - Id: 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: 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: 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: 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: ILL_Sword_Fish_Card
+ Name: Deep Sea Swordfish Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: 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;
+ if (getrefine()>=9) {
+ bonus2 bMagicAddEle,Ele_Water,5;
+ bonus2 bAddEle,Ele_Water,5;
+ }
+ - Id: 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: ILL_King_Dramoh_Card
+ Name: Deep Sea King Dramoh Card
+ Type: Card
+ Weight: 10
+ Locations:
+ 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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), ITEMINFO_VIEW) == W_BOOK) {
+ .@val += 20;
+ }
+ if (getrefine()>=14) {
+ .@val += 30;
+ }
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@val;
+ bonus2 bSkillAtk,"MG_FIREBOLT",.@val;
+ bonus2 bSkillAtk,"MG_COLDBOLT",.@val;
+ - Id: 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: 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)
+ Type: Card
+ Script: |
+ bonus bAspdRate,getskilllv("SN_WINDWALK")/2;
+ - Id: 310001
+ AegisName: Ranger_Middle2
+ Name: Sniper Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,(getskilllv("HT_BEASTBANE")/2);
+ - Id: 310002
+ AegisName: Ranger_Bottom2
+ Name: Sniper Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bBaseAtk,2*getskilllv("SN_SIGHT");
+ - Id: 310003
+ AegisName: Ranger_Robe2
+ Name: Ranger Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",15;
+ - Id: 310004
+ AegisName: Mechanic_Top2
+ Name: Whitesmith Stone II (Top)
+ Type: Card
+ Script: |
+ bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-(100*getskilllv("WS_OVERTHRUSTMAX"));
+ - Id: 310005
+ AegisName: Mechanic_Middle2
+ Name: Whitesmith Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WS_CARTTERMINATION",15;
+ - Id: 310006
+ AegisName: Mechanic_Bottom2
+ Name: Whitesmith Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,getskilllv("BS_MAXIMIZE");
+ - Id: 310007
+ AegisName: Mechanic_Robe2
+ Name: Mechanic Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"NC_ARMSCANNON",15;
+ - Id: 310008
+ AegisName: Highpriest_Top2
+ Name: High Priest Stone II (Top)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"PR_MAGNUS",15;
+ - Id: 310009
+ AegisName: Highpriest_Middle2
+ Name: High Priest Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_ASSUMPTIO");
+ - Id: 310010
+ AegisName: Highpriest_Bottom2
+ Name: High Priest Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-(getskilllv("PR_KYRIE")/2);
+ - Id: 310011
+ AegisName: Archbishop_Robe2
+ Name: Archbishop Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AB_JUDEX",15;
+ - Id: 310076
+ AegisName: Cassock_Str
+ Name: STR Blessing
+ Type: Card
+ Script: |
+ bonus bStr,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus2 bAddClass,Class_All,10;
+ - Id: 310077
+ AegisName: Cassock_Agi
+ Name: AGI Blessing
+ Type: Card
+ Script: |
+ bonus bAgi,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus bLongAtkRate,10;
+ - Id: 310078
+ AegisName: Cassock_Vit
+ Name: VIT Blessing
+ Type: Card
+ Script: |
+ bonus bVit,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ - Id: 310079
+ AegisName: Cassock_Dex
+ Name: DEX Blessing
+ Type: Card
+ Script: |
+ bonus bDex,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus bAspdRate,10;
+ bonus bVariableCastrate,-10;
+ - Id: 310080
+ AegisName: Cassock_Int
+ Name: INT Blessing
+ Type: Card
+ Script: |
+ bonus bInt,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus bMatkRate,10;
+ - Id: 310081
+ AegisName: Cassock_Luk
+ Name: LUK Blessing
+ Type: Card
+ Script: |
+ bonus bLuk,10;
+ bonus bMdef,3;
+ bonus bDef,25;
+ bonus bCritAtkRate,15;
+ - Id: 310082
+ AegisName: aegis_310082
+ Name: Automatic Modification Orb(Defense)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bDef,150;
+ if (.@r>=9) {
+ bonus bDef,75;
+ if (.@r>=11) {
+ bonus bDef,75;
+ }
+ }
+ - Id: 310083
+ AegisName: aegis_310083
+ Name: Automatic Modification Orb(Magic Defense)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMdef,15;
+ if (.@r>=9) {
+ bonus bMdef,7;
+ if (.@r>=11) {
+ bonus bMdef,7;
+ }
+ }
+ - Id: 310084
+ AegisName: aegis_310084
+ Name: Automatic Modification Orb(VIT)
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,1;
+ bonus bVit,3;
+ - Id: 310085
+ AegisName: aegis_310085
+ Name: Automatic Modification Orb(LUK)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,1;
+ bonus bLuk,3;
+ - Id: 310086
+ AegisName: aegis_310086
+ Name: Automatic Modification Orb(STR)
+ Type: Card
+ Script: |
+ bonus2 bAddClass,Class_All,2;
+ bonus bStr,3;
+ - Id: 310087
+ AegisName: aegis_310087
+ Name: Automatic Modification Orb(AGI)
+ Type: Card
+ Script: |
+ bonus bAspdRate,2;
+ bonus bAgi,3;
+ - Id: 310088
+ AegisName: aegis_310088
+ Name: Automatic Modification Orb(INT)
+ Type: Card
+ Script: |
+ bonus bMatkRate,2;
+ bonus bInt,3;
+ - Id: 310089
+ AegisName: aegis_310089
+ Name: Automatic Modification Orb(DEX)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,2;
+ bonus bDex,3;
+ - Id: 310090
+ AegisName: aegis_310090
+ Name: Automatic Modification Orb(HP Recovery)
+ Type: Card
+ Script: |
+ bonus bHPrecovRate,30;
+ - Id: 310091
+ AegisName: aegis_310091
+ Name: Automatic Modification Orb(SP Recovery)
+ Type: Card
+ Script: |
+ bonus bSPrecovRate,30;
+ - Id: 310092
+ AegisName: aegis_310092
+ Name: Automatic Modification Orb(Spell)
+ Type: Card
+ Script: |
+ bonus bVariableCastrate,-10;
+ bonus bMatk,20;
+ - Id: 310093
+ AegisName: aegis_310093
+ Name: Automatic Modification Orb(Attack Speed)
+ Type: Card
+ Script: |
+ bonus bAspdRate,10;
+ bonus bBaseAtk,20;
+ - Id: 310094
+ AegisName: aegis_310094
+ Name: Automatic Modification Orb(Fatal)
+ Type: Card
+ Script: |
+ bonus bCritAtkRate,10;
+ bonus bCritical,10;
+ - Id: 310095
+ AegisName: aegis_310095
+ Name: Automatic Modification Orb(Expert Archer)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,10;
+ bonus bHit,10;
+ - Id: 310096
+ AegisName: aegis_310096
+ Name: Automatic Modification Orb(Vital)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxHP,1500;
+ if (.@r>=9) {
+ bonus bMaxHPrate,2;
+ if (.@r>=11) {
+ bonus bMaxHPrate,3;
+ }
+ }
+ - Id: 310097
+ AegisName: aegis_310097
+ Name: Automatic Modification Orb(Mental)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMaxSPrate,5;
+ bonus bMaxSP,300;
+ if (.@r>=9) {
+ bonus bMaxSPrate,2;
+ if (.@r>=11) {
+ bonus bMaxSPrate,3;
+ }
+ }
+ - Id: 310098
+ AegisName: aegis_310098
+ Name: Automatic Modification Orb(Heal)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower,5;
+ if (.@r>=9) {
+ bonus bHealPower,5;
+ if (.@r>=11) {
+ bonus bHealPower,7;
+ }
+ }
+ - Id: 310099
+ AegisName: aegis_310099
+ Name: Automatic Modification Orb(Attack Power)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddClass,Class_All,5;
+ bonus bBaseAtk,75;
+ if (.@r>=9) {
+ bonus bShortAtkRate,2;
+ if (.@r>=11) {
+ bonus bShortAtkRate,3;
+ }
+ }
+ - Id: 310100
+ AegisName: aegis_310100
+ Name: Automatic Modification Orb(Magic Power)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,5;
+ bonus bMatk,75;
+ if (.@r>=9) {
+ bonus bMatkRate,2;
+ if (.@r>=11) {
+ bonus bMatkRate,3;
+ }
+ }
+ - Id: 310101
+ AegisName: aegis_310101
+ Name: Automatic Modification Orb(Shooter)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,3;
+ if (.@r>=9) {
+ bonus bLongAtkRate,3;
+ if (.@r>=11) {
+ bonus bLongAtkRate,3;
+ }
+ }
+ - Id: 310102
+ AegisName: aegis_310102
+ Name: Automatic Modification Orb(Fast)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bAspd,1;
+ if (.@r>=9) {
+ bonus bAspdRate,5;
+ if (.@r>=11) {
+ bonus bAspdRate,5;
+ }
+ }
+ - Id: 310103
+ AegisName: aegis_310103
+ Name: Automatic Modification Orb(Caster)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bVariableCastrate,-5;
+ if (.@r>=9) {
+ bonus bVariableCastrate,-5;
+ if (.@r>=11) {
+ bonus bVariableCastrate,-5;
+ }
+ }
+ - Id: 310104
+ AegisName: aegis_310104
+ Name: Automatic Modification Orb(Critical)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bCritical,10;
+ if (.@r>=9) {
+ bonus bCritAtkRate,5;
+ if (.@r>=11) {
+ bonus bCritAtkRate,7;
+ }
+ }
+ - Id: 310105
+ AegisName: aegis_310105
+ Name: Automatic Modification Orb(Magical Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_All,2;
+ bonus bVariableCastrate,-10;
+ bonus bMatk,20;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,1;
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_All,2;
+ }
+ }
+ - Id: 310106
+ AegisName: aegis_310106
+ Name: Automatic Modification Orb(Attacker Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddSize,Size_All,3;
+ bonus bShortAtkRate,10;
+ bonus bBaseAtk,20;
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,1;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,1;
+ }
+ }
+ - Id: 310107
+ AegisName: aegis_310107
+ Name: Automatic Modification Orb(Range Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddSize,Size_All,3;
+ bonus bLongAtkRate,10;
+ bonus bBaseAtk,20;
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,1;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,1;
+ }
+ }
+ - Id: 310108
+ AegisName: aegis_310108
+ Name: Automatic Modification Orb(Critical Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bAddSize,Size_All,3;
+ bonus bCritAtkRate,10;
+ bonus bCritical,5;
+ if (.@r>=9) {
+ bonus2 bAddSize,Size_All,1;
+ if (.@r>=11) {
+ bonus2 bAddSize,Size_All,1;
+ }
+ }
+ - Id: 310109
+ AegisName: aegis_310109
+ Name: Automatic Modification Orb(Recovery Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bHealPower,5;
+ bonus bVariableCastrate,-10;
+ bonus bMatk,20;
+ if (.@r>=9) {
+ bonus bHealPower,5;
+ if (.@r>=11) {
+ bonus bHealPower,5;
+ }
+ }
+ - Id: 310110
+ AegisName: aegis_310110
+ Name: Automatic Modification Orb(After Skill Delay)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bDelayrate,-4;
+ if (.@r>=9) {
+ bonus bDelayrate,-6;
+ if (.@r>=11) {
+ bonus bDelayrate,-6;
+ }
+ }
+ - Id: 310111
+ AegisName: aegis_310111
+ Name: Automatic Modification Orb(Fixed Casting)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bFixedCast,-100;
+ if (.@r>=9) {
+ bonus bFixedCast,-200;
+ if (.@r>=11) {
+ bonus bFixedCast,-500;
+ }
+ }
+ - Id: 310112
+ AegisName: aegis_310112
+ Name: Automatic Modification Orb(Above All)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSubClass,Class_Normal,7;
+ bonus2 bSubClass,Class_Boss,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: 310113
+ AegisName: aegis_310113
+ Name: Automatic Modification Orb(Drain Life)
+ Type: Card
+ Script: |
+ bonus2 bHPDrainRate,20,3;
+ - Id: 310114
+ AegisName: aegis_310114
+ Name: Automatic Modification Orb(Drain Soul)
+ Type: Card
+ Script: |
+ bonus2 bSPDrainRate,10,2;
+ - Id: 310115
+ AegisName: aegis_310115
+ Name: Automatic Modification Orb(Magic Healing)
+ Type: Card
+ Script: |
+ autobonus "{ bonus2 bHPRegenRate,500,400; }",20,9200,BF_MAGIC;
+ - Id: 310116
+ AegisName: aegis_310116
+ Name: Automatic Modification Orb(Magic Soul)
+ Type: Card
+ Script: |
+ autobonus "{ bonus2 bSPRegenRate,120,400; }",10,9200,BF_MAGIC;
+ - Id: 310117
+ AegisName: aegis_310117
+ Name: Automatic Modification Orb(Power Force)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMatkRate,3;
+ bonus2 bAddClass,Class_All,3;
+ if (.@r>=9) {
+ bonus bMatkRate,3;
+ bonus2 bAddClass,Class_All,3;
+ if (.@r>=11) {
+ bonus bMatkRate,4;
+ bonus2 bAddClass,Class_All,4;
+ }
+ }
+ - Id: 310118
+ AegisName: aegis_310118
+ Name: Automatic Modification Orb(Robust)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ bonus bMaxHP,2000;
+ bonus bMaxSP,300;
+ if (.@r>=9) {
+ bonus bMaxHPrate,2;
+ bonus bMaxSPrate,2;
+ if (.@r>=11) {
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ }
+ }
+ - Id: 310119
+ AegisName: aegis_310119
+ Name: Automatic Modification Orb(Powerful)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_All,5;
+ bonus bLongAtkRate,5;
+ bonus bShortAtkRate,5;
+ if (.@r>=9) {
+ 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;
+ }
+ }
+ - Id: 310120
+ AegisName: aegis_310120
+ Name: Automatic Modification Orb(All Force)
+ Type: Card
+ Script: |
+ bonus2 bMagicAtkEle,Ele_All,5;
+ bonus bLongAtkRate,5;
+ bonus bShortAtkRate,5;
+ - Id: 310121
+ AegisName: aegis_310121
+ Name: Automatic Orb(Unlimited Vital)
+ Type: Card
+ Script: |
+ autobonus2 "{ bonus bVit,50; bonus2 bSPRegenRate,800,500; }",10,10000,BF_MAGIC|BF_WEAPON;
+ - Id: 310122
+ AegisName: aegis_310122
+ Name: Automatic Orb(Spell Buster)
+ Type: Card
+ Script: |
+ autobonus "{ bonus bMatkRate,25; bonus bInt,50; }",30,10000,BF_MAGIC;
+ - Id: 310123
+ AegisName: aegis_310123
+ Name: Automatic Orb(Firing Shot)
+ Type: Card
+ Script: |
+ autobonus "{ bonus bLongAtkRate,15; bonus bDex,50; }",30,10000,BF_WEAPON;
+ - Id: 310124
+ AegisName: aegis_310124
+ Name: Automatic Orb(Over Power)
+ Type: Card
+ Script: |
+ autobonus "{ bonus bShortAtkRate,10; bonus2 bAddClass,Class_All,15; bonus bStr,50; }",30,10000,BF_WEAPON;
+ - Id: 310125
+ AegisName: aegis_310125
+ Name: Automatic Orb(Fatal Flash)
+ Type: Card
+ Script: |
+ autobonus "{ bonus bCritAtkRate,15; bonus bAgi,50; }",30,10000,BF_WEAPON;
+ - Id: 310126
+ AegisName: aegis_310126
+ Name: Automatic Orb(Lucky Strike)
+ Type: Card
+ Script: |
+ autobonus "{ bonus2 bMagicAtkEle,Ele_All,15; bonus bLuk,50; }",30,10000,BF_MAGIC;
+ - Id: 310127
+ AegisName: aegis_310127
+ Name: Automatic Orb(Dragonic Breath)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
+ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15;
+ 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;
+ }
+ }
+ - Id: 310128
+ AegisName: aegis_310128
+ Name: Automatic Orb(Wave Break)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",15;
+ bonus2 bSkillAtk,"RK_SONICWAVE",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",3;
+ bonus2 bSkillAtk,"RK_SONICWAVE",3;
+ }
+ if (.@r>=11) {
+ bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-250;
+ bonus2 bSkillCooldown,"RK_SONICWAVE",-250;
+ }
+ - Id: 310129
+ AegisName: aegis_310129
+ Name: Automatic Orb(Hundred Spiral)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LK_SPIRALPIERCE",15;
+ bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15;
+ 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;
+ }
+ }
+ - Id: 310130
+ AegisName: aegis_310130
+ Name: Automatic Orb(Drive Press)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_EARTHDRIVE",15;
+ bonus2 bSkillAtk,"LG_SHIELDPRESS",15;
+ 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;
+ }
+ }
+ - Id: 310131
+ AegisName: aegis_310131
+ Name: Automatic Orb(Banishing Cannon)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;
+ bonus2 bSkillAtk,"LG_CANNONSPEAR",15;
+ 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;
+ }
+ }
+ - Id: 310132
+ AegisName: aegis_310132
+ Name: Automatic Orb(Genesis Pressure)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15;
+ bonus2 bSkillAtk,"PA_PRESSURE",15;
+ 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;
+ }
+ }
+ - Id: 310133
+ AegisName: aegis_310133
+ Name: Automatic Orb(Boost Cannon)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15;
+ bonus2 bSkillAtk,"NC_ARMSCANNON",15;
+ 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;
+ }
+ }
+ - Id: 310134
+ AegisName: aegis_310134
+ Name: Automatic Orb(Cold Flare)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"NC_FLAMELAUNCHER",15;
+ bonus2 bSkillAtk,"NC_COLDSLOWER",15;
+ 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;
+ }
+ }
+ - Id: 310135
+ AegisName: aegis_310135
+ Name: Automatic Orb(Tornado Swing)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"NC_AXETORNADO",15;
+ bonus2 bSkillAtk,"NC_POWERSWING",15;
+ 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;
+ }
+ }
+ - Id: 310136
+ AegisName: aegis_310136
+ Name: Automatic Orb(Cannon Tornado)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GN_CART_TORNADO",15;
+ bonus2 bSkillAtk,"GN_CARTCANNON",15;
+ 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;
+ }
+ }
+ - Id: 310137
+ AegisName: aegis_310137
+ Name: Automatic Orb(Crazy Mandragora)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"GN_MANDRAGORA",-300;
+ bonus2 bSkillAtk,"GN_CRAZYWEED",15;
+ 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;
+ }
+ }
+ - Id: 310138
+ AegisName: aegis_310138
+ Name: Automatic Orb(Acid Explosion)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15;
+ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15;
+ 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;
+ }
+ }
+ - Id: 310139
+ AegisName: aegis_310139
+ Name: Automatic Orb(Sonic Impact)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
+ bonus2 bSkillAtk,"AS_SONICBLOW",15;
+ 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;
+ }
+ }
+ - Id: 310140
+ AegisName: aegis_310140
+ Name: Automatic Orb(Cutter Slasher)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15;
+ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;
+ 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;
+ }
+ }
+ - Id: 310141
+ AegisName: aegis_310141
+ Name: Automatic Orb(Berserk Slash)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"GC_COUNTERSLASH",15;
+ bonus2 bSkillAtk,"ASC_BREAKER",15;
+ 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;
+ }
+ }
+ - Id: 310142
+ AegisName: aegis_310142
+ Name: Automatic Orb(Fatal Raid)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SC_FATALMENACE",15;
+ bonus2 bSkillAtk,"RG_RAID",15;
+ 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;
+ }
+ }
+ - Id: 310143
+ AegisName: aegis_310143
+ Name: Automatic Orb(Shadow Spell)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bMagicAtkEle,Ele_All,15;
+ if (.@r>=9) {
+ bonus2 bMagicAtkEle,Ele_All,3;
+ if (.@r>=11) {
+ bonus2 bMagicAtkEle,Ele_All,7;
+ }
+ }
+ - Id: 310144
+ AegisName: aegis_310144
+ Name: Automatic Orb(Angle Shot)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bLongAtkRate,10;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",3;
+ if (.@r>=11) {
+ bonus bLongAtkRate,5;
+ bonus2 bSkillAtk,"SC_TRIANGLESHOT",7;
+ }
+ }
+ - Id: 310145
+ AegisName: aegis_310145
+ Name: Automatic Orb(Crimson Strain)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WL_EARTHSTRAIN",15;
+ bonus2 bSkillAtk,"WL_CRIMSONROCK",15;
+ 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;
+ }
+ }
+ - Id: 310146
+ AegisName: aegis_310146
+ Name: Automatic Orb(Jack Lightning)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15;
+ bonus2 bSkillAtk,"WL_JACKFROST",15;
+ 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;
+ }
+ }
+ - Id: 310147
+ AegisName: aegis_310147
+ Name: Automatic Orb(Comet Vortex)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WL_TETRAVORTEX",15;
+ bonus2 bSkillAtk,"WL_COMET",15;
+ 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;
+ }
+ }
+ - Id: 310148
+ AegisName: aegis_310148
+ Name: Automatic Orb(Double Bolt)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15;
+ bonus2 bSkillAtk,"MG_FIREBOLT",15;
+ bonus2 bSkillAtk,"MG_COLDBOLT",15;
+ if (.@r>=9) {
+ 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;
+ }
+ }
+ - Id: 310149
+ AegisName: aegis_310149
+ Name: Automatic Orb(Warm Wave)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"SO_WARMER",-1000;
+ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15;
+ 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;
+ }
+ }
+ - Id: 310150
+ AegisName: aegis_310150
+ Name: Automatic Orb(Diamond Grave)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SO_DIAMONDDUST",15;
+ bonus2 bSkillAtk,"SO_EARTHGRAVE",15;
+ 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;
+ }
+ }
+ - Id: 310151
+ AegisName: aegis_310151
+ Name: Automatic Orb(Magnusmus)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"PR_MAGNUS",15;
+ bonus2 bSkillAtk,"AB_ADORAMUS",15;
+ 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;
+ }
+ }
+ - Id: 310152
+ AegisName: aegis_310152
+ Name: Automatic Orb(Holy Judex)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"AL_HOLYLIGHT",15;
+ bonus2 bSkillAtk,"AB_JUDEX",15;
+ 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;
+ }
+ }
+ - Id: 310153
+ AegisName: aegis_310153
+ Name: Automatic Orb(Duple Lica)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"HP_BASILICA",-2000;
+ bonus2 bSkillAtk,"AB_DUPLELIGHT",15;
+ 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;
+ }
+ }
+ - Id: 310154
+ AegisName: aegis_310154
+ Name: Automatic Orb(Tiger Empire)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SR_FALLENEMPIRE",15;
+ bonus2 bSkillAtk,"SR_TIGERCANNON",15;
+ 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;
+ }
+ }
+ - Id: 310155
+ AegisName: aegis_310155
+ Name: Automatic Orb(Rampage Arrow)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SR_KNUCKLEARROW",15;
+ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
+ 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;
+ }
+ }
+ - Id: 310156
+ AegisName: aegis_310156
+ Name: Automatic Orb(Raging Combo)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"MO_COMBOFINISH",15;
+ bonus2 bSkillAtk,"CH_CHAINCRUSH",15;
+ 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;
+ }
+ }
+ - Id: 310157
+ AegisName: aegis_310157
+ Name: Automatic Orb(Cluster)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",3;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"RA_CLUSTERBOMB",7;
+ }
+ }
+ - Id: 310158
+ AegisName: aegis_310158
+ Name: Automatic Orb(Breeze Shooting)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus bCritAtkRate,10;
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",3;
+ if (.@r>=11) {
+ bonus bCritAtkRate,5;
+ bonus2 bSkillAtk,"SN_SHARPSHOOTING",7;
+ }
+ }
+ - Id: 310159
+ AegisName: aegis_310159
+ Name: Automatic Orb(Aimed Storm)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"RA_ARROWSTORM",15;
+ bonus2 bSkillAtk,"RA_AIMEDBOLT",15;
+ 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;
+ }
+ }
+ - Id: 310160
+ AegisName: aegis_310160
+ Name: Automatic Orb(Metal Echo)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_GREAT_ECHO",15;
+ bonus2 bSkillAtk,"WM_METALICSOUND",15;
+ 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;
+ }
+ }
+ - Id: 310161
+ AegisName: aegis_310161
+ Name: Automatic Orb(Reverberation)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",3;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"WM_REVERBERATION",7;
+ }
+ }
+ - Id: 310162
+ AegisName: aegis_310162
+ Name: Automatic Orb(Vulcan Severe)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",15;
+ 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;
+ }
+ }
+ - Id: 310163
+ AegisName: aegis_310163
+ Name: Automatic Orb(Prominence Burst)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SJ_SOLARBURST",15;
+ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15;
+ 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;
+ }
+ }
+ - Id: 310164
+ AegisName: aegis_310164
+ Name: Automatic Orb(Moon Kick)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SJ_FULLMOONKICK",15;
+ bonus2 bSkillAtk,"SJ_NEWMOONKICK",15;
+ 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;
+ }
+ }
+ - Id: 310165
+ AegisName: aegis_310165
+ Name: Automatic Orb(Flash Falling)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15;
+ bonus2 bSkillAtk,"SJ_FLASHKICK",15;
+ 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;
+ }
+ }
+ - Id: 310166
+ AegisName: aegis_310166
+ Name: Automatic Orb(Eswhoo)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SL_SMA",15;
+ bonus2 bSkillAtk,"SP_SWHOO",15;
+ 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;
+ }
+ }
+ - Id: 310167
+ AegisName: aegis_310167
+ Name: Automatic Orb(Espa)
+ 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;
+ }
+ }
+ - Id: 310168
+ AegisName: aegis_310168
+ Name: Automatic Orb(Curse Explosion)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",3;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",7;
+ }
+ }
+ - Id: 310169
+ AegisName: aegis_310169
+ Name: Automatic 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>=9) {
+ 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;
+ }
+ }
+ - Id: 310170
+ AegisName: aegis_310170
+ Name: Automatic 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>=9) {
+ 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;
+ }
+ }
+ - Id: 310171
+ AegisName: aegis_310171
+ Name: Automatic 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>=9) {
+ 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;
+ }
+ }
+ - Id: 310172
+ AegisName: aegis_310172
+ Name: Automatic 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>=9) {
+ 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;
+ }
+ }
+ - Id: 310173
+ AegisName: aegis_310173
+ Name: Automatic Orb(Cross Slash)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15;
+ if (.@r>=9) {
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",3;
+ if (.@r>=11) {
+ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",7;
+ }
+ }
+ - Id: 310174
+ AegisName: aegis_310174
+ Name: Automatic 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>=9) {
+ 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;
+ }
+ }
+ - Id: 310175
+ AegisName: aegis_310175
+ Name: Automatic Orb(Power of Sea)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillCooldown,"SU_SHRIMPARTY",-500;
+ bonus2 bSkillCooldown,"SU_TUNAPARTY",-500;
+ 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;
+ }
+ }
+ - Id: 310176
+ AegisName: aegis_310176
+ Name: Automatic Orb(Power of Land)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15;
+ bonus2 bSkillAtk,"SU_CN_METEOR",15;
+ 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;
+ }
+ }
+ - Id: 310177
+ AegisName: aegis_310177
+ Name: Automatic Orb(Power of Life)
+ Type: Card
+ Script: |
+ .@r = getrefine();
+ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15;
+ bonus2 bSkillAtk,"SU_PICKYPECK",15;
+ 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;
+ }
+ }
+ - 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)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WL_COMET",15;
+ - Id: 310181
+ AegisName: Warlock_Top2
+ Name: High Wizard Stone II (Upper)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WZ_METEOR",20;
+ - Id: 310182
+ AegisName: Warlock_Middle2
+ Name: High Wizard Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Neutral,2*getskilllv("HW_GRAVITATION");
+ - Id: 310183
+ AegisName: Warlock_Bottom2
+ Name: High Wizard Stone II (Lower)
+ Type: Card
+ Script: |
+ bonus bMatk,2*getskilllv("HW_SOULDRAIN");
+ - Id: 310184
+ AegisName: RoyalGuard_Robe2
+ Name: Royal Guard Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"LG_RAYOFGENESIS",15;
+ - Id: 310185
+ AegisName: RoyalGuard_Bottom2
+ Name: Paladin Stone II (Lower)
+ Type: Card
+ Script: |
+ bonus2 bMagicAtkEle,Ele_Holy,getskilllv("CR_GRANDCROSS");
+ - Id: 310186
+ AegisName: RoyalGuard_Middle2
+ Name: Paladin Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"PA_PRESSURE",20;
+ - Id: 310187
+ AegisName: RoyalGuard_Top2
+ Name: Paladin Stone II (Upper)
+ Type: Card
+ Script: |
+ 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;
+ }
+ - Id: 310189
+ AegisName: GuillotineCross_Bottom2
+ Name: Assassin Cross Stone II (Lower)
+ Type: Card
+ Script: |
+ bonus2 bAddSize,Size_All,2*getskilllv("ASC_KATAR");
+ - Id: 310190
+ AegisName: GuillotineCross_Middle2
+ Name: Assassin Cross Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"AS_SONICBLOW",20;
+ - Id: 310191
+ AegisName: GuillotineCross_Top2
+ Name: Assassin Cross Stone II (Upper)
+ Type: Card
+ Script: |
+ 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
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,1;
+ bonus bMaxSPrate,1;
+ - Id: 310213
+ AegisName: aegis_310213
+ Name: Regret Lv2
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ - Id: 310214
+ AegisName: aegis_310214
+ Name: Regret Lv3
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 310215
+ AegisName: aegis_310215
+ Name: Regret Lv4
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ - Id: 310216
+ AegisName: aegis_310216
+ Name: Regret Lv5
+ Type: Card
+ 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
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,1;
+ bonus bMaxSPrate,1;
+ - Id: 310233
+ AegisName: aegis_310233
+ Name: Solace Lv2
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,3;
+ bonus bMaxSPrate,3;
+ - Id: 310234
+ AegisName: aegis_310234
+ Name: Solace Lv3
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,5;
+ bonus bMaxSPrate,5;
+ - Id: 310235
+ AegisName: aegis_310235
+ Name: Solace Lv4
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,7;
+ bonus bMaxSPrate,7;
+ - Id: 310236
+ AegisName: aegis_310236
+ Name: Solace Lv5
+ Type: Card
+ Script: |
+ bonus bMaxHPrate,10;
+ bonus bMaxSPrate,10;
+ - Id: 310237
+ AegisName: aegis_310237
+ Name: Inverse Scale Lv1
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,10;
+ bonus2 bAddRace,RC_Dragon,10;
+ - Id: 310238
+ AegisName: aegis_310238
+ Name: Inverse Scale Lv2
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,15;
+ bonus2 bAddRace,RC_Dragon,15;
+ - Id: 310239
+ AegisName: aegis_310239
+ Name: Inverse Scale Lv3
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bAddRace,RC_Dragon,20;
+ - Id: 310240
+ AegisName: aegis_310240
+ Name: Inverse Scale Lv4
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,25;
+ bonus2 bAddRace,RC_Dragon,25;
+ - Id: 310241
+ AegisName: aegis_310241
+ Name: Inverse Scale Lv5
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,35;
+ bonus2 bAddRace,RC_Dragon,35;
+ - Id: 310242
+ AegisName: aegis_310242
+ Name: Dragon Scale Lv1
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,10;
+ bonus2 bMagicAddRace,RC_Dragon,10;
+ - Id: 310243
+ AegisName: aegis_310243
+ Name: Dragon Scale Lv2
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,15;
+ bonus2 bMagicAddRace,RC_Dragon,15;
+ - Id: 310244
+ AegisName: aegis_310244
+ Name: Dragon Scale Lv3
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,20;
+ bonus2 bMagicAddRace,RC_Dragon,20;
+ - Id: 310245
+ AegisName: aegis_310245
+ Name: Dragon Scale Lv4
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,25;
+ bonus2 bMagicAddRace,RC_Dragon,25;
+ - Id: 310246
+ AegisName: aegis_310246
+ Name: Dragon Scale Lv5
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,35;
+ bonus2 bMagicAddRace,RC_Dragon,35;
+ - Id: 310247
+ AegisName: aegis_310247
+ Name: Divine Evil Lv1
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,10;
+ bonus2 bAddRace,RC_Demon,10;
+ - Id: 310248
+ AegisName: aegis_310248
+ Name: Divine Evil Lv2
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,15;
+ bonus2 bAddRace,RC_Demon,15;
+ - Id: 310249
+ AegisName: aegis_310249
+ Name: Divine Evil Lv3
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,20;
+ bonus2 bAddRace,RC_Demon,20;
+ - Id: 310250
+ AegisName: aegis_310250
+ Name: Divine Evil Lv4
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,25;
+ bonus2 bAddRace,RC_Demon,25;
+ - Id: 310251
+ AegisName: aegis_310251
+ Name: Divine Evil Lv5
+ Type: Card
+ Script: |
+ bonus2 bAddRace,RC_Angel,35;
+ bonus2 bAddRace,RC_Demon,35;
+ - Id: 310252
+ AegisName: aegis_310252
+ Name: Destructive Evil Lv1
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,10;
+ bonus2 bMagicAddRace,RC_Demon,10;
+ - Id: 310253
+ AegisName: aegis_310253
+ Name: Destructive Evil Lv2
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,15;
+ bonus2 bMagicAddRace,RC_Demon,15;
+ - Id: 310254
+ AegisName: aegis_310254
+ Name: Destructive Evil Lv3
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,20;
+ bonus2 bMagicAddRace,RC_Demon,20;
+ - Id: 310255
+ AegisName: aegis_310255
+ Name: Destructive Evil Lv4
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,25;
+ bonus2 bMagicAddRace,RC_Demon,25;
+ - Id: 310256
+ AegisName: aegis_310256
+ Name: Destructive Evil Lv5
+ Type: Card
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,35;
+ bonus2 bMagicAddRace,RC_Demon,35;
+ - Id: 310257
+ AegisName: Runeknight_Robe2
+ Name: Rune Knight Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"RK_IGNITIONBREAK",15;
+ - Id: 310258
+ AegisName: Runeknight_Top2
+ Name: Lord Knight Stone II (Top)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,getskilllv("LK_SPIRALPIERCE");
+ - Id: 310259
+ AegisName: Runeknight_Middle2
+ Name: Lord Knight Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"KN_BOWLINGBASH",20;
+ - Id: 310260
+ AegisName: Runeknight_Bottom2
+ Name: Lord Knight Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"LK_SPIRALPIERCE",20;
+ - Id: 310261
+ AegisName: Genetic_Robe2
+ Name: Creator Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"GN_CRAZYWEED",20;
+ - Id: 310262
+ AegisName: Genetic_Top2
+ Name: Creator Stone II (Top)
+ Type: Card
+ Script: |
+ bonus2 bAddSize,Size_All,getskilllv("AM_CANNIBALIZE");
+ - Id: 310263
+ AegisName: Genetic_Middle2
+ Name: Creator Stone II (Middle)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25;
+ - Id: 310264
+ AegisName: Genetic_Bottom2
+ Name: Creator Stone II (Bottom)
+ Type: Card
+ Script: |
+ bonus bLongAtkRate,(getskilllv("CR_ACIDDEMONSTRATION")/2);
+ - Id: 310265
+ AegisName: WandMinst_Robe2
+ Name: Wanderer's Stone II (Garment)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"WM_REVERBERATION",15;
+ - Id: 310266
+ AegisName: WandMinst_Top2
+ Name: Trentini Gypsy Stone II (Top)
+ Type: Card
+ Script: |
+ bonus2 bSkillAtk,"CG_ARROWVULCAN",15;
+ - Id: 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: 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)
+ Type: Etc
+ Weight: 100
+ - Id: 1000009
+ AegisName: RangerStone_II_Middle
+ Name: Sniper Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000010
+ AegisName: RangerStone_II_Bottom
+ Name: Sniper Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 1000011
+ AegisName: RangerStone_II_Garment
+ Name: Ranger Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000012
+ AegisName: MechanicStone_II_Top
+ Name: Whitesmith Stone II (Top)
+ Type: Etc
+ Weight: 100
+ - Id: 1000013
+ AegisName: MechanicStone_II_Middle
+ Name: Whitesmith Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000014
+ AegisName: MechanicStone_II_Bottom
+ Name: Whitesmith Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 1000015
+ AegisName: MechanicStone_II_Garment
+ Name: Mechanic Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000016
+ AegisName: HighpriestStone_II_Top
+ Name: High Priest Stone II (Top)
+ Type: Etc
+ Weight: 100
+ - Id: 1000017
+ AegisName: HighpriestStone_II_Middle
+ Name: High Priest Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000018
+ AegisName: HighpriestStone_II_Bottom
+ Name: High Priest Stone II (Bottom)
+ Type: Etc
+ Weight: 100
+ - Id: 1000019
+ AegisName: ArchbishopStone_II_Garment
+ Name: Archbishop Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000092
+ AegisName: ELYUMINA_RADAR
+ Name: Elyumina Radar
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000093
+ AegisName: PITAYA_TAIL_R
+ Name: Red Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000094
+ AegisName: PITAYA_TAIL_Y
+ Name: Yellow Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000095
+ AegisName: PITAYA_TAIL_B
+ Name: Blue Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000096
+ AegisName: PITAYA_TAIL_G
+ Name: Green Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000097
+ AegisName: PITAYA_TAIL_P
+ Name: Purple Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000098
+ AegisName: PITAYA_TAIL_BOSS
+ Name: Boss Pitaya Tail
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000099
+ AegisName: GARDENERS_COOKIE
+ Name: Gardener's Cookie
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000100
+ AegisName: FREEZING_TRAP
+ Name: Freezing Trap
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000101
+ AegisName: AUTODOLL_PARTS
+ Name: Autodoll Parts
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000102
+ AegisName: EMERGENCY_KEY
+ Name: Emergency Key
+ Type: Etc
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000103
+ AegisName: BarMealTicket
+ Name: Barmeal Ticket
+ Type: Etc
+ Flags:
+ BuyingStore: true
+ - Id: 1000104
+ AegisName: Magical_Igni_Stone
+ Name: Magical Soapstone
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000105
+ AegisName: EP17_2_NO1
+ Name: Automatic Modification Module(Defense)
+ Type: Etc
+ Weight: 10
+ - Id: 1000106
+ AegisName: EP17_2_NO2
+ Name: Automatic Modification Module(Magic Defense)
+ Type: Etc
+ Weight: 10
+ - Id: 1000107
+ AegisName: EP17_2_NO3
+ Name: Automatic Modification Module(VIT)
+ Type: Etc
+ Weight: 10
+ - Id: 1000108
+ AegisName: EP17_2_NO4
+ Name: Automatic Modification Module(LUK)
+ Type: Etc
+ Weight: 10
+ - Id: 1000109
+ AegisName: EP17_2_NO5
+ Name: Automatic Modification Module(STR)
+ Type: Etc
+ Weight: 10
+ - Id: 1000110
+ AegisName: EP17_2_NO6
+ Name: Automatic Modification Module(AGI)
+ Type: Etc
+ Weight: 10
+ - Id: 1000111
+ AegisName: EP17_2_NO7
+ Name: Automatic Modification Module(INT)
+ Type: Etc
+ Weight: 10
+ - Id: 1000112
+ AegisName: EP17_2_NO8
+ Name: Automatic Modification Module(DEX)
+ Type: Etc
+ Weight: 10
+ - Id: 1000113
+ AegisName: EP17_2_RA1
+ Name: Automatic Modification Module(HP Recovery)
+ Type: Etc
+ Weight: 10
+ - Id: 1000114
+ AegisName: EP17_2_RA2
+ Name: Automatic Modification Module(SP Recovery)
+ Type: Etc
+ Weight: 10
+ - Id: 1000115
+ AegisName: EP17_2_RA3
+ Name: Automatic Modification Module(Spell)
+ Type: Etc
+ Weight: 10
+ - Id: 1000116
+ AegisName: EP17_2_RA4
+ Name: Automatic Modification Module(Attack Speed)
+ Type: Etc
+ Weight: 10
+ - Id: 1000117
+ AegisName: EP17_2_RA5
+ Name: Automatic Modification Module(Fatal)
+ Type: Etc
+ Weight: 10
+ - Id: 1000118
+ AegisName: EP17_2_RA6
+ Name: Automatic Modification Module(Expert Archer)
+ Type: Etc
+ Weight: 10
+ - Id: 1000119
+ AegisName: EP17_2_RA7
+ Name: Automatic Modification Module(Vital)
+ Type: Etc
+ Weight: 10
+ - Id: 1000120
+ AegisName: EP17_2_RA8
+ Name: Automatic Modification Module(Mental)
+ Type: Etc
+ Weight: 10
+ - Id: 1000121
+ AegisName: EP17_2_RA9
+ Name: Automatic Modification Module(Heal)
+ Type: Etc
+ Weight: 10
+ - Id: 1000122
+ AegisName: EP17_2_RA10
+ Name: Automatic Modification Module(Attack Power)
+ Type: Etc
+ Weight: 10
+ - Id: 1000123
+ AegisName: EP17_2_RA11
+ Name: Automatic Modification Module(Magic Power)
+ Type: Etc
+ Weight: 10
+ - Id: 1000124
+ AegisName: EP17_2_RA12
+ Name: Automatic Modification Module(Shooter)
+ Type: Etc
+ Weight: 10
+ - Id: 1000125
+ AegisName: EP17_2_RA13
+ Name: Automatic Modification Module(Fast)
+ Type: Etc
+ Weight: 10
+ - Id: 1000126
+ AegisName: EP17_2_RA14
+ Name: Automatic Modification Module(Caster)
+ Type: Etc
+ Weight: 10
+ - Id: 1000127
+ AegisName: EP17_2_RA15
+ Name: Automatic Modification Module(Critical)
+ Type: Etc
+ Weight: 10
+ - Id: 1000128
+ AegisName: EP17_2_RA16
+ Name: Automatic Modification Module(Magical Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000129
+ AegisName: EP17_2_RA17
+ Name: Automatic Modification Module(Attacker Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000130
+ AegisName: EP17_2_RA18
+ Name: Automatic Modification Module(Range Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000131
+ AegisName: EP17_2_RA19
+ Name: Automatic Modification Module(Critical Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000132
+ AegisName: EP17_2_RA20
+ Name: Automatic Modification Module(Recovery Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000133
+ AegisName: EP17_2_UQ1
+ Name: Automatic Modification Module(After Skill Delay)
+ Type: Etc
+ Weight: 10
+ - Id: 1000134
+ AegisName: EP17_2_UQ2
+ Name: Automatic Modification Module(Above All)
+ Type: Etc
+ Weight: 10
+ - Id: 1000135
+ AegisName: EP17_2_UQ3
+ Name: Automatic Module (Above All)
+ Type: Etc
+ Weight: 10
+ - Id: 1000136
+ AegisName: EP17_2_UQ4
+ Name: Automatic Modification Module(Drain Life)
+ Type: Etc
+ Weight: 10
+ - Id: 1000137
+ AegisName: EP17_2_UQ5
+ Name: Automatic Modification Module(Drain Soul)
+ Type: Etc
+ Weight: 10
+ - Id: 1000138
+ AegisName: EP17_2_UQ6
+ Name: Automatic Modification Module(Magic Healing)
+ Type: Etc
+ Weight: 10
+ - Id: 1000139
+ AegisName: EP17_2_UQ7
+ Name: Automatic Modification Module(Magic Soul)
+ Type: Etc
+ Weight: 10
+ - Id: 1000140
+ AegisName: EP17_2_UQ8
+ Name: Automatic Modification Module(Power Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000141
+ AegisName: EP17_2_UQ9
+ Name: Automatic Modification Module(Robust)
+ Type: Etc
+ Weight: 10
+ - Id: 1000142
+ AegisName: EP17_2_UQ10
+ Name: Automatic Modification Module(Powerful)
+ Type: Etc
+ Weight: 10
+ - Id: 1000143
+ AegisName: EP17_2_UQ11
+ Name: Automatic Modification Module(All Force)
+ Type: Etc
+ Weight: 10
+ - Id: 1000144
+ AegisName: EP17_2_LE1
+ Name: Automatic Module(Unlimited Vital)
+ Type: Etc
+ Weight: 10
+ - Id: 1000145
+ AegisName: EP17_2_LE2
+ Name: Automatic Module(Spell Buster)
+ Type: Etc
+ Weight: 10
+ - Id: 1000146
+ AegisName: EP17_2_LE3
+ Name: Automatic Module(Firing Shot)
+ Type: Etc
+ Weight: 10
+ - Id: 1000147
+ AegisName: EP17_2_LE4
+ Name: Automatic Module(Over Power)
+ Type: Etc
+ Weight: 10
+ - Id: 1000148
+ AegisName: EP17_2_LE5
+ Name: Automatic Module(Fatal Flash)
+ Type: Etc
+ Weight: 10
+ - Id: 1000149
+ AegisName: EP17_2_LE6
+ Name: Automatic Module(Lucky Strike)
+ Type: Etc
+ Weight: 10
+ - Id: 1000152
+ AegisName: EP17_2_EP1
+ Name: Automatic Module(Dragonic Breath)
+ Type: Etc
+ Weight: 10
+ - Id: 1000153
+ AegisName: EP17_2_EP2
+ Name: Automatic Module(Wave Break)
+ Type: Etc
+ Weight: 10
+ - Id: 1000154
+ AegisName: EP17_2_EP3
+ Name: Automatic Module(Hundred Spiral)
+ Type: Etc
+ Weight: 10
+ - Id: 1000155
+ AegisName: EP17_2_EP4
+ Name: Automatic Module(Drive Press)
+ Type: Etc
+ Weight: 10
+ - Id: 1000156
+ AegisName: EP17_2_EP5
+ Name: Automatic Module(Banishing Cannon)
+ Type: Etc
+ Weight: 10
+ - Id: 1000157
+ AegisName: EP17_2_EP6
+ Name: Automatic Module(Genesis Pressure)
+ Type: Etc
+ Weight: 10
+ - Id: 1000158
+ AegisName: EP17_2_EP7
+ Name: Automatic Module(Boost Cannon)
+ Type: Etc
+ Weight: 10
+ - Id: 1000159
+ AegisName: EP17_2_EP8
+ Name: Automatic Module(Cold Flare)
+ Type: Etc
+ Weight: 10
+ - Id: 1000160
+ AegisName: EP17_2_EP9
+ Name: Automatic Module(Tornado Swing)
+ Type: Etc
+ Weight: 10
+ - Id: 1000161
+ AegisName: EP17_2_EP10
+ Name: Automatic Module(Cannon Tornado)
+ Type: Etc
+ Weight: 10
+ - Id: 1000162
+ AegisName: EP17_2_EP11
+ Name: Automatic Module(Crazy Mandragora)
+ Type: Etc
+ Weight: 10
+ - Id: 1000163
+ AegisName: EP17_2_EP12
+ Name: Automatic Module(Acid Explosion)
+ Type: Etc
+ Weight: 10
+ - Id: 1000164
+ AegisName: EP17_2_EP13
+ Name: Automatic Module(Sonic Impact)
+ Type: Etc
+ Weight: 10
+ - Id: 1000165
+ AegisName: EP17_2_EP14
+ Name: Automatic Module(Cutter Slasher)
+ Type: Etc
+ Weight: 10
+ - Id: 1000166
+ AegisName: EP17_2_EP15
+ Name: Automatic Module(Berserk Slash)
+ Type: Etc
+ Weight: 10
+ - Id: 1000167
+ AegisName: EP17_2_EP16
+ Name: Automatic Module(Fatal Raid)
+ Type: Etc
+ Weight: 10
+ - Id: 1000168
+ AegisName: EP17_2_EP17
+ Name: Automatic Module(Shadow Spell)
+ Type: Etc
+ Weight: 10
+ - Id: 1000169
+ AegisName: EP17_2_EP18
+ Name: Automatic Module(Angle Shot)
+ Type: Etc
+ Weight: 10
+ - Id: 1000170
+ AegisName: EP17_2_EP19
+ Name: Automatic Module(Crimson Strain)
+ Type: Etc
+ Weight: 10
+ - Id: 1000171
+ AegisName: EP17_2_EP20
+ Name: Automatic Module(Jack Lightning)
+ Type: Etc
+ Weight: 10
+ - Id: 1000172
+ AegisName: EP17_2_EP21
+ Name: Automatic Module(Comet Vortex)
+ Type: Etc
+ Weight: 10
+ - Id: 1000173
+ AegisName: EP17_2_EP22
+ Name: Automatic Module(Double Bolt)
+ Type: Etc
+ Weight: 10
+ - Id: 1000174
+ AegisName: EP17_2_EP23
+ Name: Automatic Module(Warm Wave)
+ Type: Etc
+ Weight: 10
+ - Id: 1000175
+ AegisName: EP17_2_EP24
+ Name: Automatic Module(Diamond Grave)
+ Type: Etc
+ Weight: 10
+ - Id: 1000176
+ AegisName: EP17_2_EP25
+ Name: Automatic Module(Magnusmus)
+ Type: Etc
+ Weight: 10
+ - Id: 1000177
+ AegisName: EP17_2_EP26
+ Name: Automatic Module(Holy Judex)
+ Type: Etc
+ Weight: 10
+ - Id: 1000178
+ AegisName: EP17_2_EP27
+ Name: Automatic Module(Duple Lica)
+ Type: Etc
+ Weight: 10
+ - Id: 1000179
+ AegisName: EP17_2_EP28
+ Name: Automatic Module(Tiger Empire)
+ Type: Etc
+ Weight: 10
+ - Id: 1000180
+ AegisName: EP17_2_EP29
+ Name: Automatic Module(Rampage Arrow)
+ Type: Etc
+ Weight: 10
+ - Id: 1000181
+ AegisName: EP17_2_EP30
+ Name: Automatic Module(Raging Combo)
+ Type: Etc
+ Weight: 10
+ - Id: 1000182
+ AegisName: EP17_2_EP31
+ Name: Automatic Module(Cluster)
+ Type: Etc
+ Weight: 10
+ - Id: 1000183
+ AegisName: EP17_2_EP32
+ Name: Automatic Module(Breeze Shooting)
+ Type: Etc
+ Weight: 10
+ - Id: 1000184
+ AegisName: EP17_2_EP33
+ Name: Automatic Module(Aimed Storm)
+ Type: Etc
+ Weight: 10
+ - Id: 1000185
+ AegisName: EP17_2_EP34
+ Name: Automatic Module(Metal Echo)
+ Type: Etc
+ Weight: 10
+ - Id: 1000186
+ AegisName: EP17_2_EP35
+ Name: Automatic Module(Reverberation)
+ Type: Etc
+ Weight: 10
+ - Id: 1000187
+ AegisName: EP17_2_EP36
+ Name: Automatic Module(Vulcan Severe)
+ Type: Etc
+ Weight: 10
+ - Id: 1000188
+ AegisName: EP17_2_EP37
+ Name: Automatic Module(Prominence Burst)
+ Type: Etc
+ Weight: 10
+ - Id: 1000189
+ AegisName: EP17_2_EP38
+ Name: Automatic Module(Moon Kick)
+ Type: Etc
+ Weight: 10
+ - Id: 1000190
+ AegisName: EP17_2_EP39
+ Name: Automatic Module(Flash Falling)
+ Type: Etc
+ Weight: 10
+ - Id: 1000191
+ AegisName: EP17_2_EP40
+ Name: Automatic Module(Eswhoo)
+ Type: Etc
+ Weight: 10
+ - Id: 1000192
+ AegisName: EP17_2_EP41
+ Name: Automatic Module(Espa)
+ Type: Etc
+ Weight: 10
+ - Id: 1000193
+ AegisName: EP17_2_EP42
+ Name: Automatic Module(Curse Explosion)
+ Type: Etc
+ Weight: 10
+ - Id: 1000194
+ AegisName: EP17_2_EP43
+ Name: Automatic Module(Des Hammer Dance)
+ Type: Etc
+ Weight: 10
+ - Id: 1000195
+ AegisName: EP17_2_EP44
+ Name: Automatic Module(Fire Howling Tail)
+ Type: Etc
+ Weight: 10
+ - Id: 1000196
+ AegisName: EP17_2_EP45
+ Name: Automatic Module(Storm Buster Trip)
+ Type: Etc
+ Weight: 10
+ - Id: 1000197
+ AegisName: EP17_2_EP46
+ Name: Automatic Module(Flame Ice Wind)
+ Type: Etc
+ Weight: 10
+ - Id: 1000198
+ AegisName: EP17_2_EP47
+ Name: Automatic Module(Cross Slash)
+ Type: Etc
+ Weight: 10
+ - Id: 1000199
+ AegisName: EP17_2_EP48
+ Name: Automatic Module(Exploding Flake Wind)
+ Type: Etc
+ Weight: 10
+ - Id: 1000200
+ AegisName: EP17_2_EP49
+ Name: Automatic Module(Power of Sea)
+ Type: Etc
+ Weight: 10
+ - Id: 1000201
+ AegisName: EP17_2_EP50
+ Name: Automatic Module(Power of Land)
+ Type: Etc
+ Weight: 10
+ - Id: 1000202
+ AegisName: EP17_2_EP51
+ Name: Automatic Module(Power of Life)
+ Type: Etc
+ Weight: 10
+ - Id: 1000207
+ AegisName: EP17_2_RA21
+ Name: Automatic Modification Module(Mirror Counter)
+ Type: Etc
+ Weight: 10
+ - Id: 1000208
+ AegisName: EP17_2_UQ12
+ Name: Automatic Modification Module(Reflection Reject)
+ Type: Etc
+ Weight: 10
+ - Id: 1000213
+ AegisName: WarlockStone_Robe2
+ Name: Warlock Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000214
+ AegisName: WarlockStone_Top2
+ Name: High Wizard Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 1000215
+ AegisName: WarlockStone_Middle2
+ Name: High Wizard Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000216
+ AegisName: WarlockStone_Bottom2
+ Name: High Wizard Stone II (Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 1000217
+ AegisName: RoyalGuardStone_Robe2
+ Name: Royal Guard Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000218
+ AegisName: RoyalGuardStone_Top2
+ Name: Paladin Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 1000219
+ AegisName: RoyalGuardStone_Middle2
+ Name: Paladin Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000220
+ AegisName: RoyalGuardStone_Bottom2
+ Name: Paladin Stone II (Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 1000221
+ AegisName: GuillotineCrossStone_Robe2
+ Name: Guillotine Cross Stone II (Garment)
+ Type: Etc
+ Weight: 100
+ - Id: 1000222
+ AegisName: GuillotineCrossStone_Top2
+ Name: Assassin Cross Stone II (Upper)
+ Type: Etc
+ Weight: 100
+ - Id: 1000223
+ AegisName: GuillotineCrossStone_Middle2
+ Name: Assassin Cross Stone II (Middle)
+ Type: Etc
+ Weight: 100
+ - Id: 1000224
+ AegisName: GuillotineCrossStone_Bottom2
+ Name: Assassin Cross Stone II (Lower)
+ Type: Etc
+ Weight: 100
+ - Id: 1000225
+ AegisName: aegis_1000225
+ Name: Potato Chips
+ Type: Etc
+ Weight: 10
+ - Id: 1000226
+ AegisName: Broken_Dollcore
+ Name: Core of a Broken Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000227
+ AegisName: aegis_1000227
+ Name: Cloud Cotton
+ Type: Etc
+ Weight: 10
+ - Id: 1000231
+ AegisName: Broken_AutoDoll_Parts
+ Name: Parts of Broken Automatic Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000232
+ AegisName: Autodoll_Communicator
+ Name: Communication Chip of Automatic Doll
+ Type: Etc
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 1000235
+ 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
new file mode 100644
index 0000000000..d46b60e064
--- /dev/null
+++ b/db/re/item_db_usable.yml
@@ -0,0 +1,50165 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Database
+###########################################################################
+#
+# Item Settings
+#
+###########################################################################
+# - Id Item ID.
+# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
+# Name Name in English for displaying as output.
+# Type Item type. (Default: Etc)
+# SubType Weapon or Ammo type. (Default: 0)
+# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
+# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
+# Weight Item weight. Each 10 is 1 weight. (Default: 0)
+# Attack Weapon's attack. (Default: 0)
+# MagicAttack Weapon's magic attack. (Default: 0)
+# Defense Armor's defense. (Default: 0)
+# Range Weapon's attack range. (Default: 0)
+# Slots Available slots in item. (Default: 0)
+# Jobs Jobs that can equip the item. (Map default is 'All: true')
+# Classes Upper class types that can equip the item. (Map default is 'All: true')
+# Gender Gender that can equip the item. (Default: Both)
+# Locations Equipment's placement. (Default: None)
+# WeaponLevel Weapon level. (Default: 0)
+# EquipLevelMin Minimum required level to equip. (Default: 0)
+# EquipLevelMax Maximum level that can equip. (Default: 0)
+# Refineable If the item can be refined. (Default: false)
+# View View sprite of an item. (Default: 0)
+# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
+# Flags: Item flags. (Default: null)
+# BuyingStore If the item is available for Buyingstores. (Default: false)
+# DeadBranch If the item is a Dead Branch. (Default: false)
+# Container If the item is part of a container. (Default: false)
+# UniqueId If the item is a unique stack. (Default: false)
+# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
+# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
+# NoConsume If the item is consumed on use. (Default: false)
+# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
+# Delay: Item use delay. (Default: null)
+# Duration Duration of delay in seconds.
+# Status Status Change used to track delay. (Default: None)
+# Stack: Item stack amount. (Default: null)
+# Amount Maximum amount that can be stacked.
+# Inventory If the stack is applied to player's inventory. (Default: true)
+# Cart If the stack is applied to the player's cart. (Default: false)
+# Storage If the stack is applied to the player's storage. (Default: false)
+# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
+# NoUse: Conditions when the item is unusable. (Default: null)
+# Override Group level to override these conditions.
+# Sitting If the item can not be used while sitting. (Default: false)
+# Trade: Trade restrictions. (Default: null)
+# Override Group level to override these conditions.
+# NoDrop If the item can not be dropped. (Default: false)
+# NoTrade If the item can not be traded. (Default: false)
+# TradePartner If the item can not be traded to the player's partner. (Default: false)
+# NoSell If the item can not be sold. (Default: false)
+# NoCart If the item can not be put in a cart. (Default: false)
+# NoStorage If the item can not be put in a storage. (Default: false)
+# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
+# NoMail If the item can not be put in a mail. (Default: false)
+# NoAuction If the item can not be put in an auction. (Default: false)
+# Script Script to execute when the item is used/equipped. (Default: null)
+# EquipScript Script to execute when the item is equipped. (Default: null)
+# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
+###########################################################################
+
+Header:
+ Type: ITEM_DB
+ Version: 1
+
+Body:
+ - Id: 500
+ AegisName: Choko_Gangjeong
+ Name: Choko Gangjeong
+ Type: Healing
+ Weight: 10
+ Script: |
+ percentheal 10,10;
+ - Id: 501
+ AegisName: Red_Potion
+ Name: Red Potion
+ Type: Healing
+ Buy: 10
+ Weight: 70
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 502
+ AegisName: Orange_Potion
+ Name: Orange Potion
+ Type: Healing
+ Buy: 50
+ Weight: 100
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 503
+ AegisName: Yellow_Potion
+ Name: Yellow Potion
+ Type: Healing
+ Buy: 180
+ Weight: 130
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 504
+ AegisName: White_Potion
+ Name: White Potion
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 505
+ AegisName: Blue_Potion
+ Name: Blue Potion
+ Type: Healing
+ Buy: 5000
+ Weight: 150
+ Script: |
+ itemheal 0,rand(40,60);
+ - Id: 506
+ AegisName: Green_Potion
+ Name: Green Potion
+ Type: Healing
+ Buy: 40
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Healing
+ Buy: 18
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(18,28),0;
+ - Id: 508
+ AegisName: Yellow_Herb
+ Name: Yellow Herb
+ Type: Healing
+ Buy: 40
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(38,58),0;
+ - Id: 509
+ AegisName: White_Herb
+ Name: White Herb
+ Type: Healing
+ Buy: 120
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(75,115),0;
+ - Id: 510
+ AegisName: Blue_Herb
+ Name: Blue Herb
+ Type: Healing
+ Buy: 60
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(15,30);
+ - Id: 511
+ AegisName: Green_Herb
+ Name: Green Herb
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_end SC_POISON;
+ - Id: 512
+ AegisName: Apple
+ Name: Apple
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(16,22),0;
+ - Id: 513
+ AegisName: Banana
+ Name: Banana
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(17,21),0;
+ - Id: 514
+ AegisName: Grape
+ Name: Grape
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,15);
+ - Id: 515
+ AegisName: Carrot
+ Name: Carrot
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(18,20),0;
+ - Id: 516
+ AegisName: Sweet_Potato
+ Name: Potato
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(15,23),0;
+ - Id: 517
+ AegisName: Meat
+ Name: Meat
+ Type: Healing
+ Buy: 50
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(70,100),0;
+ - Id: 518
+ AegisName: Honey
+ Name: Honey
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(70,100),rand(20,40);
+ - Id: 519
+ AegisName: Milk
+ Name: Milk
+ Type: Healing
+ Buy: 25
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(27,37),0;
+ - Id: 520
+ AegisName: Leaflet_Of_Hinal
+ Name: Hinalle Leaflet
+ Type: Healing
+ Buy: 150
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 521
+ AegisName: Leaflet_Of_Aloe
+ Name: Aloe Leaflet
+ Type: Healing
+ Buy: 360
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 522
+ AegisName: Fruit_Of_Mastela
+ Name: Mastela Fruit
+ Type: Healing
+ Buy: 8500
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,600),0;
+ - Id: 523
+ AegisName: Holy_Water
+ Name: Holy Water
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_end SC_CURSE;
+ - Id: 525
+ AegisName: Panacea
+ Name: Panacea
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ 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;
+ - Id: 526
+ AegisName: Royal_Jelly
+ Name: Royal Jelly
+ Type: Healing
+ Buy: 7000
+ Weight: 150
+ 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;
+ - Id: 528
+ AegisName: Monster's_Feed
+ Name: Monster's Feed
+ Type: Healing
+ Buy: 60
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(72,108),0;
+ - Id: 529
+ AegisName: Candy
+ Name: Candy
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 530
+ AegisName: Candy_Striper
+ Name: Candy Cane
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 531
+ AegisName: Apple_Juice
+ Name: Apple Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(25,35),0;
+ - Id: 532
+ AegisName: Banana_Juice
+ Name: Banana Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(26,34),0;
+ - Id: 533
+ AegisName: Grape_Juice
+ Name: Grape Juice
+ Type: Healing
+ Buy: 250
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(15,25);
+ - Id: 534
+ AegisName: Carrot_Juice
+ Name: Carrot Juice
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(27,33),0;
+ - Id: 535
+ AegisName: Pumpkin
+ Name: Pumpkin
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 19,0;
+ - Id: 536
+ AegisName: Ice_Cream
+ Name: Ice Cream
+ Type: Healing
+ Buy: 150
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ sc_start SC_FREEZE,10000,0,2500,0;
+ - Id: 537
+ AegisName: Pet_Food
+ Name: Pet Food
+ Type: Healing
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 538
+ AegisName: Well_Baked_Cookie
+ Name: Well-baked Cookie
+ Type: Healing
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(160,200),0;
+ - Id: 539
+ AegisName: Piece_Of_Cake
+ Name: Piece of Cake
+ Type: Healing
+ Buy: 3000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(270,330),0;
+ - Id: 540
+ AegisName: Falcon's_Feed
+ Name: Falcon Food
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Script: |
+ itemheal rand(185,225),0;
+ - Id: 541
+ AegisName: Pecopeco's_Feed
+ Name: PecoPeco Food
+ Type: Healing
+ Buy: 3000
+ Weight: 50
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 542
+ AegisName: Festive_Cookie
+ Name: Festival Cookie
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 543
+ AegisName: Festive_Rainbow_Cake
+ Name: Festival Rainbow Cake
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 544
+ AegisName: Fish_Slice
+ Name: Raw Fish
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(25,60),0;
+ - Id: 545
+ AegisName: Red_Slim_Potion
+ Name: Condensed Red Potion
+ Type: Healing
+ Buy: 150
+ Weight: 20
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 546
+ AegisName: Yellow_Slim_Potion
+ Name: Condensed Yellow Potion
+ Type: Healing
+ Buy: 600
+ Weight: 30
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 547
+ AegisName: White_Slim_Potion
+ Name: Condensed White Potion
+ Type: Healing
+ Buy: 1650
+ Weight: 50
+ Trade:
+ Override: 100
+ NoSell: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 548
+ AegisName: Cheese
+ Name: Cheese
+ Type: Healing
+ Buy: 2800
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,15);
+ - Id: 549
+ AegisName: Nice_Sweet_Potato
+ Name: Yam
+ Type: Healing
+ Buy: 180
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,100),0;
+ sc_start SC_STUN,3000,0,1500,0;
+ - Id: 550
+ AegisName: Popped_Rice
+ Name: Rice Cake
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(10,15),0;
+ - Id: 551
+ AegisName: Shusi
+ Name: Sushi
+ Type: Healing
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,60),0;
+ - Id: 552
+ AegisName: KETUPAT
+ Name: Ketupat
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Script: |
+ itemheal rand(70,90),rand(20,30);
+ - Id: 553
+ AegisName: Bun
+ Name: Bao
+ Type: Healing
+ Buy: 1
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(35,70),0;
+ - Id: 554
+ AegisName: Mojji
+ Name: Mochi
+ Type: Healing
+ Buy: 100
+ Weight: 80
+ Script: |
+ 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
+ Type: Healing
+ Buy: 100
+ Weight: 20
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 556
+ AegisName: Long_Rice_Cake
+ Name: Rice Cake Stick
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(20,25),0;
+ - Id: 557
+ AegisName: Hash_Rice_Cake
+ Name: Neatly Sliced Rice Cake
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(25,30),0;
+ - Id: 558
+ AegisName: Chocolate
+ Name: Chocolate
+ Type: Healing
+ Buy: 1
+ Weight: 20
+ Script: |
+ itemheal 1,1;
+ - Id: 559
+ AegisName: HandMade_Chocolate
+ Name: Hand-made Chocolate
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 560
+ AegisName: HandMade_Chocolate_
+ Name: Handmade White Chocolate
+ Type: Healing
+ Buy: 5000
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 561
+ AegisName: White_Chocolate
+ Name: White Chocolate
+ Type: Healing
+ Buy: 5000
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 562
+ AegisName: Pizza
+ Name: Doublecrust Swiss Fondue
+ Type: Healing
+ Buy: 100
+ Weight: 150
+ Script: |
+ itemheal rand(70,100),0;
+ - Id: 563
+ AegisName: Pizza_01
+ Name: Doublecrust Swiss Fondue
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(375,445),0;
+ - Id: 564
+ AegisName: Rice_Ball
+ Name: Rice Ball
+ Type: Healing
+ Buy: 1
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 200,0;
+ - Id: 565
+ AegisName: Vita500_Bottle
+ Name: Vita500
+ Type: Healing
+ Buy: 580
+ Weight: 100
+ Script: |
+ itemheal rand(142,274),0;
+ - Id: 566
+ AegisName: Tomyumkung
+ Name: Tom Yum Goong
+ Type: Healing
+ Buy: 10000
+ Weight: 150
+ 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;
+ - Id: 567
+ AegisName: Prawn
+ Name: Shrimp
+ Type: Healing
+ Buy: 500
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(117,192),0;
+ - Id: 568
+ AegisName: Lemon
+ Name: Lemon
+ Type: Healing
+ Buy: 60
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(10,20);
+ - Id: 569
+ AegisName: Novice_Potion
+ Name: Novice Potion
+ Type: Healing
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(44,66),0;
+ - Id: 570
+ AegisName: Lucky_Candy
+ Name: Lucky Candy
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 571
+ AegisName: Lucky_Candy_Cane
+ Name: Lucky Candy Cane
+ Type: Healing
+ Buy: 20
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 572
+ AegisName: Lucky_Cookie
+ Name: Lucky Cookie
+ Type: Healing
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(160,200),0;
+ - Id: 573
+ AegisName: Chocolate_Drink
+ Name: Chocolate Drink
+ Type: Healing
+ 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;
+ - Id: 574
+ AegisName: Egg
+ Name: Egg
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(33,42),0;
+ - Id: 575
+ AegisName: Piece_Of_Cake_
+ Name: 2nd Anniversary Cake
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal rand(270,330),0;
+ - Id: 576
+ AegisName: Prickly_Fruit
+ Name: Prickly Fruit
+ Type: Healing
+ Buy: 540
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(150,300),rand(20,30);
+ - Id: 577
+ AegisName: Grain
+ Name: Bag of Grain
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(60,70),0;
+ - Id: 578
+ AegisName: Strawberry
+ Name: Strawberry
+ Type: Healing
+ Buy: 200
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(16,28);
+ - Id: 579
+ AegisName: Delicious_Fish
+ Name: Fresh Fish
+ Type: Healing
+ Buy: 700
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(100,150),0;
+ - Id: 580
+ AegisName: Bread
+ Name: Bread
+ Type: Healing
+ Buy: 150
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 581
+ AegisName: Mushroom
+ Name: Edible Mushroom
+ Type: Healing
+ Buy: 40
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(20,30),0;
+ - Id: 582
+ AegisName: Orange
+ Name: Orange
+ Type: Healing
+ Buy: 300
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(10,20),rand(10,20);
+ - Id: 583
+ AegisName: KETUPAT_
+ Name: Ketupat Sayur
+ Type: Healing
+ 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;
+ - Id: 584
+ AegisName: Fish_Ball_Soup
+ Name: Fish Cake Soup
+ Type: Healing
+ Buy: 100
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(40,70),0;
+ - Id: 585
+ AegisName: Wurst
+ Name: Brusti
+ Type: Delayconsume
+ Buy: 2
+ Weight: 40
+ Script: |
+ itemheal rand(15,20),0;
+ itemskill "PR_MAGNIFICAT",3;
+ - Id: 586
+ AegisName: Mother's_Cake
+ Name: Mother's Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 587
+ AegisName: Prickly_Fruit_
+ Name: Red Prickly Fruit
+ Type: Healing
+ Buy: 880
+ Weight: 60
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(270,330),rand(20,30);
+ - Id: 588
+ AegisName: Spaghetti
+ Name: Spaghetti
+ Type: Healing
+ Buy: 100
+ Weight: 100
+ Script: |
+ itemheal rand(40,70),0;
+ - Id: 589
+ AegisName: Pizza_02
+ Name: Pizza
+ Type: Healing
+ Buy: 1200
+ Weight: 150
+ Script: |
+ itemheal rand(375,445),0;
+ - Id: 590
+ AegisName: Brezel_
+ Name: Pretzel
+ Type: Healing
+ Buy: 2
+ Weight: 20
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 591
+ AegisName: Caviar_Pancake
+ Name: Caviar Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 592
+ AegisName: Jam_Pancake
+ Name: Jam Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 593
+ AegisName: Honey_Pancake
+ Name: Honey Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 594
+ AegisName: Sour_Cream_Pancake
+ Name: Sour-Cream Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 595
+ AegisName: Mushroom_Pancake
+ Name: Mushroom Pancake
+ Type: Healing
+ Weight: 150
+ 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;
+ - Id: 596
+ AegisName: Cute_Strawberry_Choco
+ Name: Cute Strawberry-Choco
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal 0,rand(1,100);
+ - Id: 597
+ AegisName: Lovely_Choco_Tart
+ Name: Lovely Choco-Tart
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(10,400),0;
+ - Id: 598
+ AegisName: Light_Red_Pot
+ Name: Light Red Potion
+ Type: Healing
+ Buy: 50
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 599
+ AegisName: Light_Orange_Pot
+ Name: Light Orange Potion
+ Type: Healing
+ Buy: 200
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 601
+ AegisName: Wing_Of_Fly
+ Name: Fly Wing
+ Type: Delayconsume
+ Buy: 250
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 602
+ AegisName: Wing_Of_Butterfly
+ Name: Butterfly Wing
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",3;
+ - Id: 603
+ AegisName: Old_Blue_Box
+ Name: Old Blue Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Trade:
+ Override: 100
+ NoSell: true
+ Script: |
+ getrandgroupitem(IG_BlueBox,1);
+ - Id: 604
+ AegisName: Branch_Of_Dead_Tree
+ Name: Dead Branch
+ Type: Usable
+ Buy: 50
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,"";
+ - Id: 605
+ AegisName: Anodyne
+ Name: Anodyne
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "SM_ENDURE",1;
+ - Id: 606
+ AegisName: Aloebera
+ Name: Aloevera
+ Type: Delayconsume
+ Buy: 1500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "SM_SELFPROVOKE",1;
+ - Id: 607
+ AegisName: Yggdrasilberry
+ Name: Yggdrasil Berry
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_F
+ Script: |
+ percentheal 100,100;
+ - Id: 608
+ AegisName: Seed_Of_Yggdrasil
+ Name: Yggdrasil Seed
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_G
+ Script: |
+ percentheal 50,50;
+ - Id: 609
+ AegisName: Amulet
+ Name: Amulet
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 610
+ AegisName: Leaf_Of_Yggdrasil
+ Name: Yggdrasil Leaf
+ Type: Delayconsume
+ Buy: 12000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ALL_RESURRECTION",1;
+ - Id: 611
+ AegisName: Spectacles
+ Name: Magnifier
+ Type: Delayconsume
+ Buy: 40
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "MC_IDENTIFY",1;
+ - Id: 612
+ AegisName: Portable_Furnace
+ Name: Mini Furnace
+ Type: Usable
+ Buy: 150
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 21;
+ - Id: 613
+ AegisName: Iron_Hammer
+ Name: Iron Hammer
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 1;
+ - Id: 614
+ AegisName: Golden_Hammer
+ Name: Golden Hammer
+ Type: Usable
+ Buy: 3000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 2;
+ - Id: 615
+ AegisName: Oridecon_Hammer
+ Name: Oridecon Hammer
+ Type: Usable
+ Buy: 5000
+ Weight: 400
+ Flags:
+ BuyingStore: true
+ Script: |
+ produce 3;
+ - Id: 616
+ AegisName: Old_Card_Album
+ Name: Old Card Album
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum,1);
+ - Id: 617
+ AegisName: Old_Violet_Box
+ Name: Old Purple Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Trade:
+ Override: 100
+ NoSell: true
+ Script: |
+ getrandgroupitem(IG_VioletBox,1);
+ - Id: 618
+ AegisName: Worn_Out_Scroll
+ Name: Worn Out Scroll
+ Type: Usable
+ Buy: 50
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 619
+ AegisName: Unripe_Apple
+ Name: Unripe Apple
+ Type: Usable
+ Buy: 1000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1002;
+ - Id: 620
+ AegisName: Orange_Juice
+ Name: Orange Juice
+ Type: Usable
+ Buy: 1500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1113;
+ - Id: 621
+ AegisName: Bitter_Herb
+ Name: Bitter Herb
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1031;
+ - Id: 622
+ AegisName: Rainbow_Carrot
+ Name: Rainbow Carrot
+ Type: Usable
+ Buy: 2500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1063;
+ - Id: 623
+ AegisName: Earthworm_The_Dude
+ Name: Earthworm the Dude
+ Type: Usable
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1049;
+ - Id: 624
+ AegisName: Rotten_Fish
+ Name: Rotten Fish
+ Type: Usable
+ Buy: 2500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1011;
+ - Id: 625
+ AegisName: Lusty_Iron
+ Name: Rusty Iron
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1042;
+ - Id: 626
+ AegisName: Monster_Juice
+ Name: Monster Juice
+ Type: Usable
+ Buy: 1500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1035;
+ - Id: 627
+ AegisName: Sweet_Milk
+ Name: Sweet Milk
+ Type: Usable
+ Buy: 7000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1167;
+ - Id: 628
+ AegisName: Well_Dried_Bone
+ Name: Well-Dried Bone
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1107;
+ - Id: 629
+ AegisName: Singing_Flower
+ Name: Singing Flower
+ Type: Usable
+ Buy: 300
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1052;
+ - Id: 630
+ AegisName: Dew_Laden_Moss
+ Name: Dew Laden Moss
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1014;
+ - Id: 631
+ AegisName: Deadly_Noxious_Herb
+ Name: Deadly Noxious Herb
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1077;
+ - Id: 632
+ AegisName: Fatty_Chubby_Earthworm
+ Name: Fatty Chubby Earthworm
+ Type: Usable
+ Buy: 5000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1019;
+ - Id: 633
+ AegisName: Baked_Yam
+ Name: Sweet Potato
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1056;
+ - Id: 634
+ AegisName: Tropical_Banana
+ Name: Tropical Banana
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1057;
+ - Id: 635
+ AegisName: Horror_Of_Tribe
+ Name: Orc Trophy
+ Type: Usable
+ Buy: 300
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1023;
+ - Id: 636
+ AegisName: No_Recipient
+ Name: No Recipient
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1026;
+ - Id: 637
+ AegisName: Old_Broom
+ Name: Old Broom
+ Type: Usable
+ Buy: 350
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1110;
+ - Id: 638
+ AegisName: Silver_Knife_Of_Chaste
+ Name: Silver Knife of Chastity
+ Type: Usable
+ Buy: 12000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1170;
+ - Id: 639
+ AegisName: Armlet_Of_Obedience
+ Name: Armlet of Obedience
+ Type: Usable
+ Buy: 18000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1029;
+ - Id: 640
+ AegisName: Shining_Stone
+ Name: Shining Stone
+ Type: Usable
+ Buy: 3000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1155;
+ - Id: 641
+ AegisName: Contracts_In_Shadow
+ Name: Contract in Shadow
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1109;
+ - Id: 642
+ AegisName: Book_Of_Devil
+ Name: Book of the Devil
+ Type: Usable
+ Buy: 1800
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1101;
+ - Id: 643
+ AegisName: Pet_Incubator
+ Name: Pet Incubator
+ Type: Usable
+ Buy: 10000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ bpet;
+ - Id: 644
+ AegisName: Gift_Box
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox,1);
+ - Id: 645
+ AegisName: Center_Potion
+ Name: Concentration Potion
+ Type: Usable
+ Buy: 1200
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,4;
+ - Id: 656
+ AegisName: Awakening_Potion
+ Name: Awakening Potion
+ Type: Usable
+ Buy: 2200
+ Weight: 150
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Ninja: true
+ Novice: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Summoner: true
+ SuperNovice: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Wizard: true
+ EquipLevelMin: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,6;
+ - Id: 657
+ AegisName: Berserk_Potion
+ Name: Berserk Potion
+ Type: Usable
+ Buy: 4500
+ Weight: 200
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rebellion: true
+ Rogue: true
+ SoulLinker: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Wizard: true
+ EquipLevelMin: 85
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,9;
+ - Id: 658
+ AegisName: Union_Of_Tribe
+ Name: Union of Tribe
+ Type: Usable
+ Buy: 2
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ guildgetexp rand(50000,100000);
+ - Id: 659
+ AegisName: Heart_Of_Her
+ Name: Her Heart
+ Type: Usable
+ Buy: 500
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1188;
+ - Id: 660
+ AegisName: Prohibition_Red_Candle
+ Name: Forbidden Red Candle
+ Type: Usable
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1200;
+ - Id: 661
+ AegisName: Sway_Apron
+ Name: Soft Apron
+ Type: Usable
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1275;
+ - Id: 662
+ AegisName: Inspector_Certificate
+ Name: Authoritative Badge
+ Type: Usable
+ Buy: 1450
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SPEEDUP0,180000,25;
+ - Id: 663
+ AegisName: Korea_Rice_Cake
+ Name: Korean Rice Cake
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,0;
+ - Id: 664
+ AegisName: Gift_Box_1
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_1,1);
+ - Id: 665
+ AegisName: Gift_Box_2
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_2,1);
+ - Id: 666
+ AegisName: Gift_Box_3
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_3,1);
+ - Id: 667
+ AegisName: Gift_Box_4
+ Name: Gift Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBox_4,1);
+ - Id: 668
+ AegisName: Handsei
+ Name: Red Envelope
+ Type: Usable
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ Zeny += rand(1000,10000);
+ - Id: 669
+ AegisName: Rice_Cake_Soup
+ Name: Tempting Rice-Cake Soup
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,10;
+ - Id: 671
+ AegisName: Gold_Coin
+ Name: Gold Coin
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ RouletteGold++;
+ - Id: 673
+ AegisName: Copper_Coin
+ Name: Bronze Coin
+ Type: Usable
+ Buy: 100
+ Weight: 40
+ Script: |
+ RouletteBronze++;
+ - Id: 675
+ AegisName: Silver_Coin
+ Name: Silver Coin
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ RouletteSilver++;
+ - Id: 678
+ AegisName: Poison_Bottle
+ Name: Poison Bottle
+ Type: Usable
+ Buy: 5000
+ Weight: 100
+ 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;
+ - Id: 679
+ AegisName: Gold_Pill
+ Name: Pilule
+ Type: Usable
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DPOISON,10000,0,1000,0;
+ sc_start SC_POISON,50000,0;
+ - Id: 680
+ AegisName: Magical_Carnation
+ Name: Magic Carnation
+ Type: Healing
+ Weight: 1000
+ Script: |
+ percentheal 0,20;
+ - Id: 681
+ AegisName: Memory_Of_Wedding
+ Name: Sweet Memory of Marriage
+ Type: Usable
+ Buy: 50000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (getpartnerid())
+ sc_start SC_WEDDING,600000,0;
+ - Id: 682
+ AegisName: Realgar_Wine
+ Name: Distilled Fighting Spirit
+ Type: Usable
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,30;
+ - Id: 683
+ AegisName: Exorcize_Herb
+ Name: Herb of Incantation
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MATKPOTION,60000,30;
+ - Id: 684
+ AegisName: Durian
+ Name: Durian
+ Type: Usable
+ Buy: 15000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,10;
+ sc_start SC_MATKPOTION,60000,10;
+ - Id: 685
+ AegisName: RAMADAN
+ Name: Ramadan
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Script: |
+ percentheal 100,50;
+ - Id: 686
+ AegisName: Earth_Scroll_1_3
+ Name: Level 3 Earth Spike
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "WZ_EARTHSPIKE",3;
+ - Id: 687
+ AegisName: Earth_Scroll_1_5
+ Name: Level 5 Earth Spike
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "WZ_EARTHSPIKE",5;
+ - Id: 688
+ AegisName: Cold_Scroll_1_3
+ Name: Level 3 Cold Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_COLDBOLT",3;
+ - Id: 689
+ AegisName: Cold_Scroll_1_5
+ Name: Level 5 Cold Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_COLDBOLT",5;
+ - Id: 690
+ AegisName: Fire_Scroll_1_3
+ Name: Level 3 Fire Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBOLT",3;
+ - Id: 691
+ AegisName: Fire_Scroll_1_5
+ Name: Level 5 Fire Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBOLT",5;
+ - Id: 692
+ AegisName: Wind_Scroll_1_3
+ Name: Level 3 Lightening Bolt
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_LIGHTNINGBOLT",3;
+ - Id: 693
+ AegisName: Wind_Scroll_1_5
+ Name: Level 5 Lightening Bolt
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_LIGHTNINGBOLT",5;
+ - Id: 694
+ AegisName: Ghost_Scroll_1_3
+ Name: Level 3 Soul Strike
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_SOULSTRIKE",3;
+ - Id: 695
+ AegisName: Ghost_Scroll_1_5
+ Name: Level 5 Soul Strike
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_SOULSTRIKE",5;
+ - Id: 696
+ AegisName: Fire_Scroll_2_1
+ Name: Level 1 Fire Ball
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBALL",1;
+ - Id: 697
+ AegisName: Fire_Scroll_2_5
+ Name: Level 5 Fire Ball
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREBALL",5;
+ - Id: 698
+ AegisName: Fire_Scroll_3_1
+ Name: Level 1 Fire Wall
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREWALL",1;
+ - Id: 699
+ AegisName: Fire_Scroll_3_5
+ Name: Level 5 Fire Wall
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FIREWALL",5;
+ - Id: 700
+ AegisName: Cold_Scroll_2_1
+ Name: Level 1 Frost Diver
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FROSTDIVER",1;
+ - Id: 6046
+ AegisName: Clothing_Dye_Coupon
+ Name: Clothing Dye Coupon
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6047
+ AegisName: Clothing_Dye_Coupon_II
+ Name: Clothing Dye Coupon II
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 6720
+ AegisName: Status_Reset_Coupon
+ Name: Status Reset Coupon
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ resetstatus;
+ - Id: 6721
+ AegisName: Status_Reset_Coupon_
+ Name: Status Reset Coupon
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ resetstatus;
+ - Id: 7037
+ AegisName: Trade_Coupon
+ Name: Coupon
+ Type: Usable
+ Buy: 100
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*set pcroom,(gettimetick(2)+7200);*/
+ - Id: 9510
+ AegisName: Enchant_Stone_Box17
+ Name: Costume Enchant Stone Box17
+ Type: Cash
+ Weight: 10
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box17);
+ - Id: 9514
+ AegisName: Ein_Ddbox
+ Name: Physical Modification Permit
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 9514; */
+ - Id: 9523
+ AegisName: Metal_Smelting_Ticket
+ Name: Metal Refining Ticket
+ Type: Delayconsume
+ Weight: 1
+ Script: |
+ /*upgradeui 9523;*/
+ - Id: 9529
+ AegisName: Ein_Ddbox2
+ Name: Magical Modification Permit
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 9529; */
+ - Id: 9550
+ AegisName: Gemstone_Of_Time
+ Name: Gemstone of Time
+ Type: Delayconsume
+ Weight: 1
+ Script: |
+ /*upgradeui 9550;*/
+ - Id: 9551
+ AegisName: Time_Unseal_Key
+ Name: Time Unseal Key
+ Type: Delayconsume
+ Weight: 1
+ Script: |
+ /*upgradeui 9551;*/
+ - Id: 9785
+ AegisName: Frozen_Box_IL
+ Name: Frozen Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 9785; */
+ - Id: 9933
+ AegisName: True_Hunting_9Refine
+ Name: Troi Hunting 9 Refinement Package
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 9933; */
+ - Id: 9934
+ AegisName: True_Hunting_Opt_A
+ Name: Trois Hunting Physical Craft Kit
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 9934; */
+ - Id: 9935
+ AegisName: True_Hunting_Opt_B
+ Name: Trois Hunting Magical Craft Kit
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 9935; */
+ - Id: 11500
+ AegisName: Light_Yellow_Pot
+ Name: Light Yellow Potion
+ Type: Healing
+ Buy: 550
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 11501
+ AegisName: Light_White_Pot
+ Name: Light White Potion
+ Type: Healing
+ Buy: 1200
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 11502
+ AegisName: Light_Blue_Pot
+ Name: Light Blue Potion
+ Type: Healing
+ Buy: 5000
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,rand(40,60);
+ - Id: 11503
+ AegisName: Siege_White_Potion
+ Name: WoE White Potion
+ Type: Healing
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(400,500),0;
+ - Id: 11504
+ AegisName: Siege_Blue_Potion
+ Name: WoE Blue Potion
+ Type: Healing
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,rand(50,70);
+ - Id: 11505
+ AegisName: Iris
+ Name: Iris
+ Type: Healing
+ Weight: 30
+ Script: |
+ itemheal 0,150;
+ - Id: 11506
+ AegisName: Fanta_Orange
+ Name: Fanta Orange
+ Type: Healing
+ Buy: 800
+ Weight: 10
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11507
+ AegisName: Fanta_Grape
+ Name: Fanta Grape
+ Type: Healing
+ Buy: 800
+ Weight: 10
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11508
+ AegisName: Karada_Meguri_Tea
+ Name: Karada Meguricha
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11509
+ AegisName: Royal_Milk_Tea
+ Name: Black Tea Kochakaden
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11510
+ AegisName: Coke_Zero
+ Name: Coca Cola Zero
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11511
+ AegisName: Coke_No_Cal
+ Name: Diet Coca Cola
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11512
+ AegisName: Coca_Cola
+ Name: Coca Cola
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11513
+ AegisName: Protect_Neck_Candy
+ Name: Protect Neck Candy
+ Type: Healing
+ Buy: 200
+ Weight: 1
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(5,25),0;
+ - Id: 11514
+ AegisName: Enriched_Slim_Pot
+ Name: Enriched Slim Pot
+ Type: Healing
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(335,415),0;
+ - Id: 11515
+ AegisName: Coconut
+ Name: Coconut
+ Type: Healing
+ Buy: 1500
+ Weight: 120
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(300,400),0;
+ - Id: 11516
+ AegisName: Asai_Fruit
+ Name: Asai Fruit
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(16,22),0;
+ - Id: 11517
+ AegisName: Puri_Potion
+ Name: Puri Potion
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,600),0;
+ - Id: 11518
+ AegisName: N_Blue_Potion
+ Name: Blue Potion
+ Type: Healing
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,5;
+ - Id: 11519
+ AegisName: Beef_Toast
+ Name: Beef Toast
+ Type: Healing
+ Buy: 1200
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(170,250),0;
+ - Id: 11520
+ AegisName: Mora_Mandarin
+ Name: Mora Mandar
+ Type: Healing
+ Buy: 500
+ Weight: 20
+ EquipLevelMin: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(50,80);
+ - Id: 11521
+ AegisName: Pingui_Berry_Juice
+ Name: Pingui Berry Juice
+ Type: Healing
+ Buy: 500
+ Weight: 50
+ EquipLevelMin: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(400,800),rand(50,80);
+ - Id: 11522
+ AegisName: Red_Raffle_Sap
+ Name: Red Raffle Sap
+ Type: Healing
+ Buy: 2500
+ Weight: 100
+ EquipLevelMin: 100
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 1000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(400,800),0;
+ - Id: 11523
+ AegisName: Yellow_Raffle_Sap
+ Name: Yellow Raffle Sap
+ Type: Healing
+ Buy: 3000
+ Weight: 120
+ EquipLevelMin: 110
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 2000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(600,1000),0;
+ - Id: 11524
+ AegisName: White_Raffle_Sap
+ Name: White Raffle Sap
+ Type: Healing
+ Buy: 3500
+ Weight: 140
+ EquipLevelMin: 120
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_E
+ Script: |
+ itemheal rand(800,1200),0;
+ - Id: 11525
+ AegisName: Mora_Hip_Tea
+ Name: Mora Hip Tea
+ Type: Healing
+ Buy: 20
+ Weight: 150
+ EquipLevelMin: 120
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_H
+ Script: |
+ itemheal rand(1500,2000),0;
+ - Id: 11526
+ AegisName: Rafflecino
+ Name: Rafflecino
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ EquipLevelMin: 120
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,rand(120,160);
+ - Id: 11527
+ AegisName: Baklava
+ Name: Baklava
+ Type: Healing
+ Buy: 3500
+ Weight: 600
+ Script: |
+ itemheal 1200,440;
+ - Id: 11528
+ AegisName: Kanafeh
+ Name: Kanafeh
+ Type: Healing
+ Buy: 1500
+ Weight: 200
+ Script: |
+ itemheal 300,240;
+ - Id: 11529
+ AegisName: MAAMOUL_
+ Name: Maamoul
+ Type: Healing
+ Buy: 500
+ Weight: 100
+ Script: |
+ itemheal 120,60;
+ - Id: 11530
+ AegisName: Jujube
+ Name: Jujube
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal 30,0;
+ - Id: 11531
+ AegisName: Coffee
+ Name: Coffee
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Script: |
+ itemheal 0,10;
+ - Id: 11532
+ AegisName: Nasi_Goreng
+ Name: Nasi Goreng
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(17,23),0;
+ - Id: 11533
+ AegisName: Satay
+ Name: Satay
+ Type: Healing
+ Buy: 15
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(17,23),0;
+ - Id: 11534
+ AegisName: Coco_Juice
+ Name: Coconut Juice
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(17,23),0;
+ - Id: 11535
+ AegisName: Almond_Chocolate
+ Name: Almond Chocolate
+ Type: Healing
+ Buy: 190
+ Weight: 200
+ Script: |
+ itemheal 0,rand(8,16);
+ - Id: 11536
+ AegisName: Cat_Hard_Biscuit
+ Name: Cat Biscuit
+ Type: Healing
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(70,110),0;
+ callfunc "F_Cat_Hard_Biscuit";
+ - Id: 11537
+ AegisName: Rice_weevil_Bug
+ Name: Rice Weevil Bug
+ Type: Healing
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(100,150),0;
+ callfunc "F_Rice_Weevil_Bug";
+ - Id: 11538
+ AegisName: Octupus_Leg
+ Name: Fresh Octopus Legs
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Script: |
+ itemheal rand(35,60),rand(5,10);
+ - Id: 11539
+ AegisName: Athale_Choco
+ Name: Athale Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11540
+ AegisName: Shyai_Choco
+ Name: Shyai Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11541
+ AegisName: Mid_Choco
+ Name: Mid Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11542
+ AegisName: Zonda_Choco
+ Name: Zonda Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11543
+ AegisName: Goedo_Choco
+ Name: Goedo Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11544
+ AegisName: Huike_Choco
+ Name: Huike Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11545
+ AegisName: Rune_Choco
+ Name: Rune Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11546
+ AegisName: Pope_Choco
+ Name: Pope Choco
+ Type: Healing
+ Buy: 1
+ Weight: 80
+ Script: |
+ itemheal 50,50;
+ - Id: 11547
+ AegisName: Woe_Violet_Potion
+ Name: Siege Purple Potion
+ Type: Healing
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(500,700),rand(60,85);
+ - Id: 11548
+ AegisName: Woe_White_Potion
+ Name: Siege White Potion
+ Type: Healing
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,0;
+ - Id: 11549
+ AegisName: Woe_Blue_Potion
+ Name: Siege Blue Potion
+ Type: Healing
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 0,10;
+ - Id: 11550
+ AegisName: Pumpkin_Cake
+ Name: Pumpkin Cake
+ Type: Healing
+ Buy: 10
+ Weight: 40
+ Script: |
+ percentheal 5,5;
+ - Id: 11551
+ AegisName: Savory_Herb_Salad
+ Name: Savory Herb Salad
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(20,30),0;
+ sc_start SC_STRFOOD,180000,1;
+ - Id: 11552
+ AegisName: Apple_Carrot_Salad
+ Name: Apple Carrot Salad
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(20,30),0;
+ sc_start SC_AGIFOOD,180000,1;
+ - Id: 11553
+ AegisName: Casual_Stew
+ Name: Casual Stew
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(20,30),0;
+ sc_start SC_VITFOOD,180000,1;
+ - Id: 11554
+ AegisName: Golden_Roasted_Apple
+ Name: Golden Roasted Apple
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(20,30),0;
+ sc_start SC_DEXFOOD,180000,1;
+ - Id: 11555
+ AegisName: Red_Potion_RG
+ Name: Red Potion RG
+ Type: Healing
+ Weight: 40
+ Script: |
+ itemheal 325,0;
+ - Id: 11557
+ AegisName: TE_White_Potion
+ Name: TE White Potion
+ Type: Healing
+ Buy: 200
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 325,0;
+ - Id: 11558
+ AegisName: TE_White_Slim_Potion
+ Name: TE White Slim Potion
+ Type: Healing
+ Buy: 275
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 325,0;
+ - Id: 11563
+ AegisName: Hot_Tee
+ Name: Hot Tea
+ Type: Usable
+ Buy: 10
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 0,100;
+ - Id: 11564
+ AegisName: Sweet_Canape
+ Name: Sweet Canape
+ Type: Usable
+ Buy: 10
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal 1000,0;
+ - Id: 11565
+ AegisName: White_Potion_B
+ Name: White Potion
+ Type: Healing
+ Buy: 10
+ Weight: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 11566
+ AegisName: Yellow_Potion_
+ Name: Yellow Potion
+ Type: Healing
+ Buy: 10
+ Weight: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 11567
+ AegisName: Novice_Potion_B
+ Name: Novice Potion
+ Type: Healing
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(44,66),0;
+ - Id: 11568
+ AegisName: Red_Slim_Potion_B
+ Name: Red Slim Potion
+ Type: Healing
+ Buy: 10
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 11569
+ AegisName: Orange_Potion_
+ Name: Orange Potion
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 11570
+ AegisName: Red_Potion_
+ Name: Red Potion
+ Type: Healing
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 11571
+ AegisName: Green_Potion_
+ Name: Green Potion
+ Type: Healing
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Healing
+ Buy: 10
+ Weight: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 0,rand(40,60);
+ - Id: 11573
+ AegisName: White_Slim_Potion_B
+ Name: White Slim Potion
+ Type: Healing
+ Buy: 10
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(325,405),0;
+ - Id: 11574
+ AegisName: Yellow_Slim_Potion_
+ Name: Yellow Slim Potion
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(175,235),0;
+ - Id: 11577
+ AegisName: Rice_Ball_B
+ Name: Rice Ball
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 200,0;
+ - Id: 11578
+ AegisName: Candy_Striper_B
+ Name: Candy Bar
+ Type: Healing
+ Buy: 10
+ Weight: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 11580
+ AegisName: Candy_B
+ Name: Candy
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(45,65),0;
+ - Id: 11581
+ AegisName: Piece_Of_Cake_B
+ Name: Piece of Cake
+ Type: Healing
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(270,330),0;
+ - Id: 11582
+ AegisName: Well_Baked_Cookie_B
+ Name: Well-baked Cookie
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal rand(160,200),0;
+ - Id: 11583
+ AegisName: Chocolate_Drink_B
+ Name: Chocolate Drink
+ Type: Healing
+ Buy: 10
+ Weight: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 11584
+ AegisName: White_Chocolate_B
+ Name: White Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 50,50;
+ - Id: 11585
+ AegisName: HandMade_Chocolate_B
+ Name: Hand-made Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 50,50;
+ - Id: 11586
+ AegisName: HandMade_Chocolate_B_
+ Name: Hand-made White Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 50,50;
+ - Id: 11587
+ AegisName: Chocolate_B
+ Name: Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemheal 1,1;
+ - Id: 11588
+ AegisName: Fresh_Strawberries
+ Name: Fresh Strawberries
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemheal rand(32,56),rand(16,28);
+ - Id: 11589
+ AegisName: Iceflake
+ Name: Cold Snow Cone
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 5,5;
+ - Id: 11590
+ AegisName: Meat_Skewer5
+ Name: Skewer No.5
+ Type: Healing
+ Buy: 5000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemheal rand(760,810),10;
+ - Id: 11592
+ AegisName: Trance_Candy_R
+ Name: Trans Candy Red
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Script: |
+ 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
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Script: |
+ 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
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Script: |
+ 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
+ Type: Healing
+ Buy: 20
+ Weight: 30
+ Script: |
+ 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
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Script: |
+ itemheal rand(600,800),0;
+ - Id: 11597
+ AegisName: Iron_Bug
+ Name: Iron Worm
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ - Id: 11598
+ AegisName: Bitter_Cacao_Bean
+ Name: Bitter Cacao Bean
+ Type: Healing
+ Buy: 10
+ - Id: 11599
+ AegisName: Superstar_Potion
+ Name: Superstar Potion
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ - Id: 11600
+ AegisName: ShiningHolyWater
+ Name: Shining Holy Water
+ Type: Healing
+ Buy: 10
+ Weight: 15
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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: Tasty_Anchovy
+ Name: Delicious Anchovy
+ Type: Healing
+ Buy: 20
+ Weight: 20
+ Script: |
+ itemheal rand(30,46),0;
+ specialeffect2 EF_HEAL3;
+ - Id: 11602
+ AegisName: Nepeta_Cataria
+ Name: Catnip Fruit
+ Type: Healing
+ Buy: 15
+ Weight: 1
+ Script: |
+ itemheal rand(36,40),0;
+ specialeffect2 EF_HEAL3;
+ - Id: 11605
+ AegisName: Cookies_Bat
+ Name: Cookie Bat
+ Type: Healing
+ Weight: 30
+ Script: |
+ itemheal rand(50,100),0;
+ /*TODO*/
+ - Id: 11616
+ AegisName: Yummy_Meat
+ Name: Delicious Meat
+ Type: Healing
+ Buy: 1400
+ Weight: 50
+ Script: |
+ itemheal rand(100,150),0;
+ - Id: 11621
+ AegisName: Red_Syrup
+ Name: Red Syrup
+ Type: Healing
+ Buy: 800
+ Weight: 70
+ EquipLevelMin: 60
+ Delay:
+ Duration: 1000
+ Script: |
+ itemheal 325,0;
+ - Id: 11622
+ AegisName: Yellow_Syrup
+ Name: Yellow Syrup
+ Type: Healing
+ Buy: 1200
+ Weight: 100
+ EquipLevelMin: 60
+ Delay:
+ Duration: 1000
+ Script: |
+ itemheal 900,0;
+ - Id: 11623
+ AegisName: White_Syrup
+ Name: White Syrup
+ Type: Healing
+ Buy: 1500
+ Weight: 140
+ EquipLevelMin: 60
+ Delay:
+ Duration: 1000
+ Script: |
+ itemheal 1800,0;
+ - Id: 11624
+ AegisName: Blue_Syrup
+ Name: Blue Syrup
+ Type: Healing
+ Buy: 7000
+ Weight: 100
+ EquipLevelMin: 60
+ Delay:
+ Duration: 10000
+ Script: |
+ itemheal 0,180;
+ - Id: 11701
+ AegisName: Girl_Bunch_Of_Flower
+ Name: Girl's Bouquet
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Script: |
+ itemheal rand(105,145),0;
+ - Id: 11702
+ AegisName: Moon_Cookie
+ Name: Moon Cookie
+ Type: Healing
+ Weight: 300
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ unitskilluseid getcharid(3),"AL_BLESSING",7;
+ - Id: 11703
+ AegisName: Mysterious_Blood
+ Name: Mystery Blood
+ Type: Healing
+ Weight: 10
+ Script: |
+ itemheal 0,rand(25,35);
+ - Id: 11704
+ AegisName: KETUPAT_F
+ Name: Ketupat
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemheal rand(70,90),0;
+ - Id: 11705
+ AegisName: Special_White_Potion
+ Name: Children's Potion
+ Type: Healing
+ Buy: 1
+ Weight: 10
+ Script: |
+ itemheal rand(425,425),0;
+ - Id: 11706
+ AegisName: Steak
+ Name: Steak
+ Type: Healing
+ Buy: 1
+ Weight: 200
+ Script: |
+ itemheal rand(700,1000),0;
+ - Id: 11707
+ AegisName: Roasted_Beef
+ Name: Roast Beef
+ Type: Healing
+ Buy: 1
+ Weight: 200
+ Script: |
+ itemheal 0,rand(100,200);
+ - Id: 11708
+ AegisName: Fore_Flank_Sirloin
+ Name: Fore Flank Sirloin
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ itemheal rand(30,50),rand(1,5);
+ - Id: 11709
+ AegisName: Fanta_Zero_Lemon
+ Name: Fanta Zero Lemon
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11710
+ AegisName: Sakura_Mist
+ Name: Sakura Mist
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11711
+ AegisName: Sakura_Milk_Tea
+ Name: Sakura Milk Tea
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11712
+ AegisName: First_Leaf_Tea
+ Name: Flower
+ Type: Healing
+ Buy: 800
+ Weight: 100
+ Script: |
+ itemheal rand(50,70),rand(10,12);
+ - Id: 11713
+ AegisName: Julia's_Candy
+ Name: Julia's Candy
+ Type: Healing
+ Weight: 30
+ Script: |
+ itemheal rand(40,45),0;
+ - Id: 12000
+ AegisName: Cold_Scroll_2_5
+ Name: Level 5 Frost Diver
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "MG_FROSTDIVER",5;
+ - Id: 12001
+ AegisName: Holy_Scroll_1_3
+ Name: Level 3 Heal
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AL_HEAL",3;
+ - Id: 12002
+ AegisName: Holy_Scroll_1_5
+ Name: Level 5 Heal
+ Type: Delayconsume
+ Buy: 2000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AL_HEAL",5;
+ - Id: 12003
+ AegisName: Holy_Scroll_2_1
+ Name: Level 1 Teleport
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 12004
+ AegisName: Arrow_Container
+ Name: Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1750,500;
+ - Id: 12005
+ AegisName: Iron_Arrow_Container
+ Name: Iron Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1770,500;
+ - Id: 12006
+ AegisName: Steel_Arrow_Container
+ Name: Steel Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1753,500;
+ - Id: 12007
+ AegisName: Ori_Arrow_Container
+ Name: Oridecon Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1765,500;
+ - Id: 12008
+ AegisName: Fire_Arrow_Container
+ Name: Fire Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1752,500;
+ - Id: 12009
+ AegisName: Silver_Arrow_Container
+ Name: Silver Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1751,500;
+ - Id: 12010
+ AegisName: Wind_Arrow_Container
+ Name: Wind Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1755,500;
+ - Id: 12011
+ AegisName: Stone_Arrow_Container
+ Name: Stone Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1756,500;
+ - Id: 12012
+ AegisName: Crystal_Arrow_Container
+ Name: Crystal Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1754,500;
+ - Id: 12013
+ AegisName: Shadow_Arrow_Container
+ Name: Shadow Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1767,500;
+ - Id: 12014
+ AegisName: Imma_Arrow_Container
+ Name: Immaterial Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1757,500;
+ - Id: 12015
+ AegisName: Rusty_Arrow_Container
+ Name: Rusty Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1762,500;
+ - Id: 12016
+ AegisName: Speed_Up_Potion
+ Name: Speed Potion
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SPEEDUP1,5000,50;
+ - Id: 12017
+ AegisName: Slow_Down_Potion
+ Name: Slow Potion
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SLOWDOWN,5000,100;
+ - Id: 12018
+ AegisName: Fire_Cracker
+ Name: Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12019
+ AegisName: Holy_Egg
+ Name: Holy Egg
+ Type: Delayconsume
+ Buy: 2
+ Weight: 150
+ Script: |
+ itemskill "ALL_RESURRECTION",2;
+ - Id: 12020
+ AegisName: Water_Of_Darkness
+ Name: Cursed Water
+ Type: Delayconsume
+ Buy: 2
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",8;
+ - Id: 12021
+ AegisName: Pork_Belly
+ Name: Pork
+ Type: Healing
+ Weight: 10
+ Script: |
+ getexp2 33333333,0;
+ - Id: 12022
+ AegisName: Spareribs
+ Name: Galbi
+ Type: Healing
+ Weight: 10
+ Script: |
+ getexp2 0,33333333;
+ - Id: 12023
+ AegisName: Giftbox_China
+ Name: Wrapped Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GiftBoxChina,1);
+ - Id: 12024
+ AegisName: Red_Pouch_Of_Surprise
+ Name: Red Pouch
+ Type: Usable
+ Buy: 50
+ Weight: 50
+ Flags:
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,"";
+ - Id: 12025
+ AegisName: Egg_Boy
+ Name: Dano Festival Egg
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_EggBoy,1);
+ - Id: 12026
+ AegisName: Egg_Girl
+ Name: Dano Festival Egg
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_EggGirl,1);
+ - Id: 12027
+ AegisName: Giggling_Box
+ Name: Giggling Box
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 9,0;
+ sc_start SC_CURSE,30000,0,3000,0;
+ - Id: 12028
+ AegisName: Box_Of_Thunder
+ Name: Box of Thunder
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_SPEEDUP0,20000,25;
+ - Id: 12029
+ AegisName: Gloomy_Box
+ Name: Box of Gloom
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "AC_CONCENTRATION",1;
+ - Id: 12030
+ AegisName: Box_Of_Grudge
+ Name: Box of Resentment
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,20;
+ - Id: 12031
+ AegisName: Sleepy_Box
+ Name: Box of Drowsiness
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_MATKPOTION,60000,20;
+ - Id: 12032
+ AegisName: Box_Of_Storm
+ Name: Box of Storms
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",2;
+ - Id: 12033
+ AegisName: Box_Of_Sunlight
+ Name: Box of Sunlight
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ sc_start SC_Intravision,30000,0;
+ - Id: 12034
+ AegisName: Painting_Box
+ Name: Box of Panting
+ Type: Usable
+ Buy: 1000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,9;
+ sc_start SC_SILENCE,30000,0,3000,0;
+ - Id: 12035
+ AegisName: Lotto_Box01
+ Name: Lotto Box 01
+ Type: Usable
+ Weight: 20
+ Script: |
+ getrandgroupitem(IG_LottoBox1,1);
+ - Id: 12036
+ AegisName: Lotto_Box02
+ Name: Lotto Box 02
+ Type: Usable
+ Weight: 20
+ Script: |
+ getrandgroupitem(IG_LottoBox2,1);
+ - Id: 12037
+ AegisName: Lotto_Box03
+ Name: Lotto Box 03
+ Type: Usable
+ Weight: 20
+ Script: |
+ getrandgroupitem(IG_LottoBox3,1);
+ - Id: 12038
+ AegisName: Lotto_Box04
+ Name: Lotto Box 04
+ Type: Usable
+ Weight: 20
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_LottoBox4,1);
+ - Id: 12039
+ AegisName: Lotto_Box05
+ Name: Lotto Box 05
+ Type: Usable
+ Weight: 20
+ Script: |
+ getrandgroupitem(IG_LottoBox5,1);
+ - Id: 12040
+ AegisName: Stone_Of_Intelligence_
+ Name: Stone of Sage
+ Type: Usable
+ Buy: 100000
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ homevolution;
+ - Id: 12041
+ AegisName: Str_Dish01
+ Name: Fried Grasshopper Legs
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 12042
+ AegisName: Str_Dish02
+ Name: Seasoned Sticky Webfoot
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 12043
+ AegisName: Str_Dish03
+ Name: Bomber Steak
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 12044
+ AegisName: Str_Dish04
+ Name: Herb Marinade Beef
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,4;
+ percentheal 5,0;
+ - Id: 12045
+ AegisName: Str_Dish05
+ Name: Lutie Lady's Pancake
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 12046
+ AegisName: Int_Dish01
+ Name: Grape Juice Herbal Tea
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,1;
+ percentheal 0,5;
+ - Id: 12047
+ AegisName: Int_Dish02
+ Name: Autumn Red Tea
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,2;
+ percentheal 0,5;
+ - Id: 12048
+ AegisName: Int_Dish03
+ Name: Honey Herbal Tea
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,3;
+ percentheal 0,5;
+ - Id: 12049
+ AegisName: Int_Dish04
+ Name: Morocc Fruit Wine
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,4;
+ percentheal 0,5;
+ - Id: 12050
+ AegisName: Int_Dish05
+ Name: Mastela Fruit Wine
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,5;
+ percentheal 0,10;
+ - Id: 12051
+ AegisName: Vit_Dish01
+ Name: Steamed Crab Nippers
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 12052
+ AegisName: Vit_Dish02
+ Name: Assorted Seafood
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 12053
+ AegisName: Vit_Dish03
+ Name: Clam Soup
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 12054
+ AegisName: Vit_Dish04
+ Name: Seasoned Jellyfish
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,4;
+ percentheal 5,0;
+ - Id: 12055
+ AegisName: Vit_Dish05
+ Name: Spicy Fried Bao
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 12056
+ AegisName: Agi_Dish01
+ Name: Frog Egg Squid Ink Soup
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,1;
+ percentheal 3,1;
+ - Id: 12057
+ AegisName: Agi_Dish02
+ Name: Smooth Noodle
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,2;
+ percentheal 3,1;
+ - Id: 12058
+ AegisName: Agi_Dish03
+ Name: Tentacle Cheese Gratin
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,3;
+ percentheal 3,1;
+ - Id: 12059
+ AegisName: Agi_Dish04
+ Name: Lutie Cold Noodle
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,4;
+ percentheal 3,1;
+ - Id: 12060
+ AegisName: Agi_Dish05
+ Name: Steamed Bat Wing in Pumpkin
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,5;
+ percentheal 6,2;
+ - Id: 12061
+ AegisName: Dex_Dish01
+ Name: Honey Grape Juice
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,1;
+ percentheal 2,2;
+ - Id: 12062
+ AegisName: Dex_Dish02
+ Name: Chocolate Mousse Cake
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,2;
+ percentheal 2,2;
+ - Id: 12063
+ AegisName: Dex_Dish03
+ Name: Fruit Mix
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,3;
+ percentheal 2,2;
+ - Id: 12064
+ AegisName: Dex_Dish04
+ Name: Cream Sandwich
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,4;
+ percentheal 2,2;
+ - Id: 12065
+ AegisName: Dex_Dish05
+ Name: Green Salad
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,5;
+ percentheal 5,5;
+ - Id: 12066
+ AegisName: Luk_Dish01
+ Name: Fried Monkey Tails
+ Type: Healing
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,1;
+ percentheal 3,2;
+ - Id: 12067
+ AegisName: Luk_Dish02
+ Name: Mixed Juice
+ Type: Healing
+ Buy: 4000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,2;
+ percentheal 3,2;
+ - Id: 12068
+ AegisName: Luk_Dish03
+ Name: Fried Sweet Potato
+ Type: Healing
+ Buy: 6000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,3;
+ percentheal 4,2;
+ - Id: 12069
+ AegisName: Luk_Dish04
+ Name: Steamed Ancient Lips
+ Type: Healing
+ Buy: 8000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,4;
+ percentheal 4,2;
+ - Id: 12070
+ AegisName: Luk_Dish05
+ Name: Fried Scorpion Tails
+ Type: Healing
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,5;
+ percentheal 5,2;
+ - Id: 12071
+ AegisName: Str_Dish06
+ Name: Shiny Marinade Beef
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,6;
+ percentheal 10,2;
+ - Id: 12072
+ AegisName: Str_Dish07
+ Name: Whole Roast
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,7;
+ percentheal 10,4;
+ - Id: 12073
+ AegisName: Str_Dish08
+ Name: Bearfoot Special
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,8;
+ percentheal 15,6;
+ - Id: 12074
+ AegisName: Str_Dish09
+ Name: Tendon Satay
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,9;
+ percentheal 15,8;
+ - Id: 12075
+ AegisName: Str_Dish10
+ Name: Steamed Tongue
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,10;
+ percentheal 20,20;
+ - Id: 12076
+ AegisName: Int_Dish06
+ Name: Red Mushroom Wine
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,6;
+ percentheal 2,10;
+ - Id: 12077
+ AegisName: Int_Dish07
+ Name: Special Royal Jelly Herbal Tea
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,7;
+ percentheal 4,10;
+ - Id: 12078
+ AegisName: Int_Dish08
+ Name: Royal Family Tea
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,8;
+ percentheal 6,10;
+ - Id: 12079
+ AegisName: Int_Dish09
+ Name: Tristan XII
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,9;
+ percentheal 8,15;
+ - Id: 12080
+ AegisName: Int_Dish10
+ Name: Dragon Breath Cocktail
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,10;
+ percentheal 10,20;
+ - Id: 12081
+ AegisName: Vit_Dish06
+ Name: Awfully Bitter Bracer
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,6;
+ percentheal 13,0;
+ - Id: 12082
+ AegisName: Vit_Dish07
+ Name: Sumptuous Feast
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,7;
+ percentheal 16,0;
+ - Id: 12083
+ AegisName: Vit_Dish08
+ Name: Giant Burito
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,8;
+ percentheal 19,0;
+ - Id: 12084
+ AegisName: Vit_Dish09
+ Name: Ascending Dragon Soup
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,9;
+ percentheal 22,0;
+ - Id: 12085
+ AegisName: Vit_Dish10
+ Name: Immortal Stew
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,10;
+ percentheal 25,0;
+ - Id: 12086
+ AegisName: Agi_Dish06
+ Name: Chile Shrimp Gratin
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,6;
+ percentheal 7,2;
+ - Id: 12087
+ AegisName: Agi_Dish07
+ Name: Steamed Alligator with Vegetable
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,7;
+ percentheal 8,2;
+ - Id: 12088
+ AegisName: Agi_Dish08
+ Name: Incredibly Spicy Curry
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,8;
+ percentheal 9,2;
+ - Id: 12089
+ AegisName: Agi_Dish09
+ Name: Special Meat Stew
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,9;
+ percentheal 10,2;
+ - Id: 12090
+ AegisName: Agi_Dish10
+ Name: Steamed Desert Scorpions
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,10;
+ percentheal 15,5;
+ - Id: 12091
+ AegisName: Dex_Dish06
+ Name: Peach Cake
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,6;
+ percentheal 5,6;
+ - Id: 12092
+ AegisName: Dex_Dish07
+ Name: Soul Haunted Bread
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,7;
+ percentheal 5,7;
+ - Id: 12093
+ AegisName: Dex_Dish08
+ Name: Special Toast
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,8;
+ percentheal 5,8;
+ - Id: 12094
+ AegisName: Dex_Dish09
+ Name: Heavenly Fruit Juice
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,9;
+ percentheal 5,9;
+ - Id: 12095
+ AegisName: Dex_Dish10
+ Name: Hwergelmir's Tonic
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,10;
+ percentheal 10,10;
+ - Id: 12096
+ AegisName: Luk_Dish06
+ Name: Lucky Soup
+ Type: Healing
+ Buy: 20000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,6;
+ percentheal 6,3;
+ - Id: 12097
+ AegisName: Luk_Dish07
+ Name: Assorted Shish Kebob
+ Type: Healing
+ Buy: 40000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,7;
+ percentheal 7,3;
+ - Id: 12098
+ AegisName: Luk_Dish08
+ Name: Strawberry Flavored Rice Ball
+ Type: Healing
+ Buy: 60000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,8;
+ percentheal 9,3;
+ - Id: 12099
+ AegisName: Luk_Dish09
+ Name: Blood Flavored Soda
+ Type: Healing
+ Buy: 80000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,9;
+ percentheal 10,4;
+ - Id: 12100
+ AegisName: Luk_Dish10
+ Name: Cooked Nine Tail's Tails
+ Type: Healing
+ Buy: 100000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,10;
+ percentheal 14,8;
+ - Id: 12101
+ AegisName: Citron
+ Name: Citron
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_FLEEFOOD,180000,30;
+ - Id: 12102
+ AegisName: Meat_Skewer
+ Name: Grilled Skewer
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_HITFOOD,180000,30;
+ - Id: 12103
+ AegisName: Bloody_Dead_Branch
+ Name: Bloody Branch
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,"";
+ - Id: 12104
+ AegisName: Random_Quiver
+ Name: Random Quiver
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Quiver,1);
+ - Id: 12105
+ AegisName: Set_Of_Taiming_Item
+ Name: Taming Gift Set
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Taming,1);
+ getrandgroupitem(IG_Taming,1);
+ getrandgroupitem(IG_Taming,1);
+ - Id: 12106
+ AegisName: Accessory_Box
+ Name: Jewelry Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Accesory,1);
+ - Id: 12107
+ AegisName: Wrapped_Mask
+ Name: Wrapped Mask
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Mask,1);
+ - Id: 12108
+ AegisName: Bundle_Of_Magic_Scroll
+ Name: Scroll Package
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ 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);
+ - Id: 12109
+ AegisName: Poring_Box
+ Name: Poring Box
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ DeadBranch: true
+ Script: |
+ monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,"";
+ - Id: 12110
+ AegisName: First_Aid_Kit
+ Name: First Aid Kit
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ 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);
+ - Id: 12111
+ AegisName: Food_Package
+ Name: Bundle of Food
+ Type: Usable
+ Buy: 10000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_FoodBag,1);
+ getrandgroupitem(IG_FoodBag,1);
+ getrandgroupitem(IG_FoodBag,1);
+ - Id: 12112
+ AegisName: Tropical_Sograt
+ Name: Tropical Sograt
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_CURSE,10000,1;
+ - Id: 12113
+ AegisName: Vermilion_The_Beach
+ Name: Vermilion on the Beach
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_STUN,10000,1;
+ - Id: 12114
+ AegisName: Elemental_Fire
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",4;
+ - Id: 12115
+ AegisName: Elemental_Water
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",2;
+ - Id: 12116
+ AegisName: Elemental_Earth
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",3;
+ - Id: 12117
+ AegisName: Elemental_Wind
+ Name: Elemental Converter
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "ITEM_ENCHANTARMS",5;
+ - Id: 12118
+ AegisName: Resist_Fire
+ Name: Fireproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;
+ - Id: 12119
+ AegisName: Resist_Water
+ Name: Coldproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;
+ - Id: 12120
+ AegisName: Resist_Earth
+ Name: Earthproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;
+ - Id: 12121
+ AegisName: Resist_Wind
+ Name: Thunderproof Potion
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;
+ - Id: 12122
+ AegisName: Sesame_Pastry
+ Name: Sesame Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_HITFOOD,180000,30;
+ - Id: 12123
+ AegisName: Honey_Pastry
+ Name: Honey Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_FLEEFOOD,180000,30;
+ - Id: 12124
+ AegisName: Rainbow_Cake
+ Name: Rainbow Cake
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_BATKFOOD,60000,10;
+ sc_start SC_MATKFOOD,60000,10;
+ - Id: 12125
+ AegisName: Outdoor_Cooking_Kits
+ Name: Outdoor Cooking Kit
+ Type: Usable
+ Buy: 500
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 11;
+ - Id: 12126
+ AegisName: Indoor_Cooking_Kits
+ Name: Home Cooking Kit
+ Type: Usable
+ Buy: 1000
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 12;
+ - Id: 12127
+ AegisName: High_end_Cooking_Kits
+ Name: Professional Cooking Kit
+ Type: Usable
+ Buy: 2000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 13;
+ - Id: 12128
+ AegisName: Imperial_Cooking_Kits
+ Name: Royal Cooking Kit
+ Type: Usable
+ Buy: 5000
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 14;
+ - Id: 12129
+ AegisName: Fantastic_Cooking_Kits
+ Name: Fantastic Cooking Kit
+ Type: Usable
+ Buy: 10000
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ cooking 15;
+ - Id: 12130
+ AegisName: Cookie_Bag
+ Name: Cookie Bag
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CookieBag,1);
+ getrandgroupitem(IG_CookieBag,1);
+ getrandgroupitem(IG_CookieBag,1);
+ - Id: 12131
+ AegisName: Lucky_Potion
+ Name: Lucky Potion
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Script: |
+ /* sc_start SC_LUKFOOD,180000,15; */
+ - Id: 12132
+ AegisName: Red_Bag
+ Name: Santa's Bag
+ Type: Usable
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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;
+ }
+ - Id: 12134
+ AegisName: Red_Envelope
+ Name: Red Envelope
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Script: |
+ .@r = BaseLevel*100;
+ getexp2 .@r,.@r;
+ - Id: 12135
+ AegisName: Green_Ale
+ Name: Green Ale
+ Type: Usable
+ Buy: 20
+ Weight: 30
+ Delay:
+ Duration: 3000
+ Script: |
+ percentheal 50,50;
+ sc_start SC_CONFUSION,10000,0,1000,0;
+ - Id: 12136
+ AegisName: Women's_Bundle
+ Name: Women's Bundle
+ Type: Usable
+ Weight: 100
+ Script: |
+ getitem callfunc("F_Rand",558,529,2668,7518),1;
+ - Id: 12137
+ AegisName: 1st_Stage_Prize
+ Name: First Stage Prize
+ Type: Usable
+ - Id: 12138
+ AegisName: 2nd_Stage_Prize
+ Name: Second Stage Prize
+ Type: Usable
+ - Id: 12139
+ AegisName: 3rd_Stage_Prize
+ Name: Third Stage Prize
+ Type: Usable
+ - Id: 12140
+ AegisName: 4th_Stage_Prize
+ Name: Fourth Stage Prize
+ Type: Usable
+ - Id: 12141
+ AegisName: 5th_Stage_Prize
+ Name: Fifth Stage Prize
+ Type: Usable
+ - Id: 12142
+ AegisName: Magic_Book
+ Name: Book of Magic
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1800000,10;
+ - Id: 12143
+ AegisName: Red_Can
+ Name: Red Can
+ Type: Usable
+ Buy: 50000
+ Weight: 300
+ Script: |
+ percentheal 25,25;
+ - Id: 12144
+ AegisName: Sphere_Case_Wind
+ Name: Lightning Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13204,500;
+ - Id: 12145
+ AegisName: Sphere_Case_Darkness
+ Name: Blind Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13206,500;
+ - Id: 12146
+ AegisName: Sphere_Case_Poison
+ Name: Poison Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13205,500;
+ - Id: 12147
+ AegisName: Sphere_Case_Water
+ Name: Freezing Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13207,500;
+ - Id: 12148
+ AegisName: Sphere_Case_Fire
+ Name: Flare Sphere Pack
+ Type: Usable
+ Buy: 2
+ Weight: 350
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13203,500;
+ - Id: 12149
+ AegisName: Bullet_Case
+ Name: Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13200,500;
+ - Id: 12150
+ AegisName: Bullet_Case_Blood
+ Name: Blood Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13202,500;
+ - Id: 12151
+ AegisName: Bullet_Case_Silver
+ Name: Silver Cartridge
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 13201,500;
+ - Id: 12152
+ AegisName: Special_Box
+ Name: Special Present
+ Type: Usable
+ Weight: 100
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Special_Box);
+ - Id: 12153
+ AegisName: Bow_Mercenary_Scroll1
+ Name: Bowman Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6017,1800000;
+ - Id: 12154
+ AegisName: Bow_Mercenary_Scroll2
+ Name: Bowman Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6018,1800000;
+ - Id: 12155
+ AegisName: Bow_Mercenary_Scroll3
+ Name: Bowman Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6019,1800000;
+ - Id: 12156
+ AegisName: Bow_Mercenary_Scroll4
+ Name: Bowman Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6020,1800000;
+ - Id: 12157
+ AegisName: Bow_Mercenary_Scroll5
+ Name: Bowman Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6021,1800000;
+ - Id: 12158
+ AegisName: Bow_Mercenary_Scroll6
+ Name: Bowman Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6022,1800000;
+ - Id: 12159
+ AegisName: Bow_Mercenary_Scroll7
+ Name: Bowman Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6023,1800000;
+ - Id: 12160
+ AegisName: Bow_Mercenary_Scroll8
+ Name: Bowman Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6024,1800000;
+ - Id: 12161
+ AegisName: Bow_Mercenary_Scroll9
+ Name: Bowman Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6025,1800000;
+ - Id: 12162
+ AegisName: Bow_Mercenary_Scroll10
+ Name: Bowman Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6026,1800000;
+ - Id: 12163
+ AegisName: SwordMercenary_Scroll1
+ Name: Fencer Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6037,1800000;
+ - Id: 12164
+ AegisName: SwordMercenary_Scroll2
+ Name: Fencer Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6038,1800000;
+ - Id: 12165
+ AegisName: SwordMercenary_Scroll3
+ Name: Fencer Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6039,1800000;
+ - Id: 12166
+ AegisName: SwordMercenary_Scroll4
+ Name: Fencer Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6040,1800000;
+ - Id: 12167
+ AegisName: SwordMercenary_Scroll5
+ Name: Fencer Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6041,1800000;
+ - Id: 12168
+ AegisName: SwordMercenary_Scroll6
+ Name: Fencer Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6042,1800000;
+ - Id: 12169
+ AegisName: SwordMercenary_Scroll7
+ Name: Fencer Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6043,1800000;
+ - Id: 12170
+ AegisName: SwordMercenary_Scroll8
+ Name: Fencer Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6044,1800000;
+ - Id: 12171
+ AegisName: SwordMercenary_Scroll9
+ Name: Fencer Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6045,1800000;
+ - Id: 12172
+ AegisName: SwordMercenary_Scroll10
+ Name: Fencer Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6046,1800000;
+ - Id: 12173
+ AegisName: SpearMercenary_Scroll1
+ Name: Spearman Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6027,1800000;
+ - Id: 12174
+ AegisName: SpearMercenary_Scroll2
+ Name: Spearman Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6028,1800000;
+ - Id: 12175
+ AegisName: SpearMercenary_Scroll3
+ Name: Spearman Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6029,1800000;
+ - Id: 12176
+ AegisName: SpearMercenary_Scroll4
+ Name: Spearman Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6030,1800000;
+ - Id: 12177
+ AegisName: SpearMercenary_Scroll5
+ Name: Spearman Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6031,1800000;
+ - Id: 12178
+ AegisName: SpearMercenary_Scroll6
+ Name: Spearman Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6032,1800000;
+ - Id: 12179
+ AegisName: SpearMercenary_Scroll7
+ Name: Spearman Scroll 7
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6033,1800000;
+ - Id: 12180
+ AegisName: SpearMercenary_Scroll8
+ Name: Spearman Scroll 8
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6034,1800000;
+ - Id: 12181
+ AegisName: SpearMercenary_Scroll9
+ Name: Spearman Scroll 9
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6035,1800000;
+ - Id: 12182
+ AegisName: SpearMercenary_Scroll10
+ Name: Spearman Scroll 10
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 6036,1800000;
+ - Id: 12183
+ AegisName: Holy_Arrow_Quiver
+ Name: Holy Arrow Quiver
+ Type: Usable
+ Buy: 2
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1772,500;
+ - Id: 12184
+ AegisName: Mercenary_Red_Potion
+ Name: Mercenary Red Potion
+ Type: Usable
+ Buy: 500
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_heal 1000,0;
+ - Id: 12185
+ AegisName: Mercenary_Blue_Potion
+ Name: Mercenary Blue Potion
+ Type: Usable
+ Buy: 1000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_heal 0,100;
+ - Id: 12186
+ AegisName: Red_Box
+ Name: Old Red Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_RedBox,1);
+ - Id: 12187
+ AegisName: Green_Box
+ Name: Old Green Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_GreenBox,1);
+ - Id: 12188
+ AegisName: Magical_Moon_Cake
+ Name: Grace Moon Cake
+ Type: Healing
+ Buy: 20
+ Weight: 300
+ Script: |
+ percentheal 50,50;
+ - Id: 12189
+ AegisName: Red_Box_
+ Name: Old Red Box
+ Type: Usable
+ Buy: 50000
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_RedBox_2,1);
+ - Id: 12190
+ AegisName: Moon_Cake
+ Name: Moon Cake
+ Type: Usable
+ Buy: 2
+ Weight: 300
+ Script: |
+ sc_start SC_SPEEDUP0,180000,25;
+ - Id: 12191
+ AegisName: Special_Moon_Cake
+ Name: Special Moon Cake
+ Type: Usable
+ Buy: 2
+ Weight: 300
+ Script: |
+ 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: 30
+ Script: |
+ percentheal 5,5;
+ - Id: 12193
+ AegisName: Brezel
+ Name: Pretzel
+ Type: Usable
+ Buy: 20
+ Weight: 20
+ Script: |
+ percentheal 5,5;
+ - Id: 12194
+ AegisName: Hometown_Gift
+ Name: Hometown Gift
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_HometownGift,1);
+ getrandgroupitem(IG_HometownGift,1);
+ getrandgroupitem(IG_HometownGift,1);
+ - Id: 12195
+ AegisName: Plain_Rice_Cake
+ Name: Plain Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 0,20;
+ - Id: 12196
+ AegisName: Hearty_Rice_Cake
+ Name: Hearty Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 50,0;
+ - Id: 12197
+ AegisName: Salty_Rice_Cake
+ Name: Salty Rice Cake
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,10;
+ - Id: 12198
+ AegisName: Lucky_Rice_Cake
+ Name: Lucky Rice Cake
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INCLUK,1200000,21;
+ - Id: 12199
+ AegisName: Rice_Scroll
+ Name: Scroll of Magic
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12200
+ AegisName: Event_Cake
+ Name: X-mas Cake
+ Type: Delayconsume
+ Buy: 20
+ Weight: 50
+ Script: |
+ percentheal 5,0;
+ itemskill "PR_MAGNIFICAT",3;
+ - Id: 12201
+ AegisName: Red_Box_C
+ Name: Commonplace Red Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ - Id: 12202
+ AegisName: Str_Dish10_
+ Name: Steamed Tongue
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_STR_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12203
+ AegisName: Agi_Dish10_
+ Name: Steamed Scorpion
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_AGI_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12204
+ AegisName: Int_Dish10_
+ Name: Dragon Breath Cocktail
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_INT_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12205
+ AegisName: Dex_Dish10_
+ Name: Hwergelmir's Tonic
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_DEX_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12206
+ AegisName: Luk_Dish10_
+ Name: Cooked Nine Tail's Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_LUK_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12207
+ AegisName: Vit_Dish10_
+ Name: Stew Of Immortality
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FOOD_VIT_CASH,1800000,10;
+ percentheal 15,5;
+ - Id: 12208
+ AegisName: Battle_Manual
+ Name: Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 60000
+ Status: Reuse_Limit_C
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,50;
+ - Id: 12209
+ AegisName: Insurance
+ Name: Life Insurance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LIFEINSURANCE,1800000,0;
+ - Id: 12210
+ AegisName: Bubble_Gum
+ Name: Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 60000
+ Status: Reuse_Limit_D
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ITEMBOOST,1800000,200;
+ - Id: 12211
+ AegisName: Kafra_Card
+ Name: Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashStore";
+ - Id: 12212
+ AegisName: Giant_Fly_Wing
+ Name: Giant Fly Wing
+ Type: DelayConsume
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashPartyCall";
+ - Id: 12213
+ AegisName: Neuralizer
+ Name: Neuralizer
+ Type: Delayconsume
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashReset";
+ - Id: 12214
+ AegisName: Convex_Mirror
+ Name: Convex Mirror
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_BOSSMAPINFO,600000,0;
+ - Id: 12215
+ AegisName: Blessing_10_Scroll
+ Name: LV10 Blessing Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,240000,10;
+ - Id: 12216
+ AegisName: Inc_Agi_10_Scroll
+ Name: LV10 Agil Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASSUMPTIO,100000,5;
+ skilleffect "HP_ASSUMPTIO",0;
+ - Id: 12219
+ AegisName: Wind_Walk_10_Scroll
+ Name: LV10 Wind Walker Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ skilleffect "SN_WINDWALK",0;
+ sc_start SC_WINDWALK,250000,10;
+ - Id: 12220
+ AegisName: Adrenaline_Scroll
+ Name: LV5 Adrenaline Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ .@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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ input .@megaphone$;
+ announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;
+ - Id: 12225
+ AegisName: Sweet_Candy_Striper
+ Name: Sweet Candy Cane
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1245;
+ - Id: 12226
+ AegisName: Examination1
+ Name: Examination 1
+ Type: Healing
+ 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;
+ - Id: 12227
+ AegisName: Examination2
+ Name: Examination 2
+ Type: Healing
+ 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;
+ - Id: 12228
+ AegisName: Examination3
+ Name: Examination 3
+ Type: Healing
+ 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;
+ - Id: 12229
+ AegisName: Examination4
+ Name: Examination 4
+ Type: Healing
+ 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;
+ - Id: 12230
+ AegisName: Examination5
+ Name: Examination 5
+ Type: Healing
+ 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;
+ - Id: 12231
+ AegisName: Examination6
+ Name: Examination 6
+ Type: Healing
+ 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;
+ - Id: 12232
+ AegisName: Gingerbread
+ Name: Ginger Bread
+ Type: Usable
+ Buy: 20
+ Weight: 150
+ Script: |
+ sc_start SC_ASPDPOTION1,900000,0;
+ sc_start SC_SPEEDUP0,900000,25;
+ - Id: 12233
+ AegisName: Kvass
+ Name: Kvass
+ Type: Healing
+ Buy: 20
+ Weight: 200
+ Script: |
+ percentheal 100,100;
+ - Id: 12234
+ AegisName: Cacao99
+ Name: Fierce Cacao 99%
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ percentheal 25,0;
+ - Id: 12235
+ AegisName: Strawberry_Choco
+ Name: Chocolate Strawberry
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,5;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,240000,5;
+ - Id: 12236
+ AegisName: Choco_Tart
+ Name: Chocolate Tart
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ itemskill "AL_ANGELUS",5;
+ - Id: 12237
+ AegisName: Choco_Lump
+ Name: Junky Chocolate
+ Type: Usable
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DPOISON,10000,0,1000,0;
+ sc_start SC_POISON,50000,0;
+ - Id: 12240
+ AegisName: Old_Yellow_Box
+ Name: Old Yellow Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_YellowBox,1);
+ - Id: 12241
+ AegisName: M_Center_Potion
+ Name: Mercenary Concentration Potion
+ Type: Usable
+ Buy: 800
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION0,1800000,0;
+ - Id: 12242
+ AegisName: M_Awakening_Potion
+ Name: Mercenary Awakening Potion
+ Type: Usable
+ Buy: 1500
+ Weight: 150
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION1,1800000,0;
+ - Id: 12243
+ AegisName: M_Berserk_Potion
+ Name: Mercenary Berserk Potion
+ Type: Usable
+ Buy: 3000
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_sc_start SC_ASPDPOTION2,1800000,0;
+ - Id: 12244
+ AegisName: Old_Gift_Box
+ Name: Old Gift Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_OldGiftBox,1);
+ - Id: 12245
+ AegisName: Green_Ale_US
+ Name: Green Ale
+ Type: Healing
+ Buy: 5000
+ Weight: 500
+ Script: |
+ percentheal 100,0;
+ - Id: 12246
+ AegisName: Magic_Card_Album
+ Name: Mystical Card Album
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_MagicCardAlbum,1);
+ - Id: 12247
+ AegisName: Halohalo
+ Name: Halo-Halo
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ EquipLevelMin: 20
+ Script: |
+ sc_start SC_INCALLSTATUS,600000,3;
+ - Id: 12248
+ AegisName: Masquerade_Ball_Box
+ Name: Fancy Ball Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Masquerade,1);
+ - Id: 12249
+ AegisName: Payroll_Of_Kafra_
+ Name: Payment Statement for Kafra Employee
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12250
+ AegisName: Str_Dish10_M
+ Name: Steamed Tongue
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12252
+ AegisName: Int_Dish10_M
+ Name: Dragon Breath Cocktail
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12254
+ AegisName: Luk_Dish10_M
+ Name: Cooked Nine Tail
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - Id: 12256
+ AegisName: PRO_Gift_Box
+ Name: PRO Gift Box
+ Type: Usable
+ Weight: 10
+ - Id: 12257
+ AegisName: Cold_Medicine
+ Name: Cold Medicine
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ EquipLevelMin: 50
+ Script: |
+ percentheal 25,25;
+ - Id: 12258
+ AegisName: Bombring_Box
+ Name: Bomb Poring Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rang02") {
+ monster "this",-1,-1,"--ja--",1904,1,"";
+ }
+ - Id: 12259
+ AegisName: Miracle_Medicine
+ Name: Miracle Tonic
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getexp2(3000000,1500000);
+ - Id: 12260
+ AegisName: Cool_Summer_Outfit
+ Name: Cool Summer Outfit
+ Type: Usable
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SUMMER,600000,0;
+ - Id: 12261
+ AegisName: Secret_Medicine
+ Name: Leap of Fantasy
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getexp2(2000000,1000000);
+ - Id: 12262
+ AegisName: Inspector_Certificate_
+ Name: Authoritative Badge
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SPEEDUP0,540000,25;
+ - Id: 12263
+ AegisName: Comp_Battle_Manual
+ Name: Field Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,200;
+ - Id: 12264
+ AegisName: Comp_Bubble_Gum
+ Name: Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ITEMBOOST,1800000,200;
+ - Id: 12265
+ AegisName: Comp_Insurance
+ Name: Life Insurrance
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LIFEINSURANCE,1800000,0;
+ - Id: 12266
+ AegisName: Sesame_Pastry_
+ Name: Sesame Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,180000,30;
+ - Id: 12267
+ AegisName: Honey_Pastry_
+ Name: Honey Pastry
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,180000,30;
+ - Id: 12268
+ AegisName: Rainbow_Cake_
+ Name: Rainbow Cake
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATKPOTION,60000,10;
+ sc_start SC_MATKFOOD,60000,10;
+ - Id: 12269
+ AegisName: Tasty_Colonel
+ Name: Tasty Pink Ration
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATKPOTION,600000,15;
+ - Id: 12270
+ AegisName: Tasty_Major
+ Name: Tasty White Ration
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_MATKPOTION,600000,15;
+ - Id: 12271
+ AegisName: Mre_A
+ Name: Military Ration A
+ Type: Healing
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 5,0;
+ - Id: 12272
+ AegisName: Mre_B
+ Name: Military Ration B
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,600000,33;
+ - Id: 12273
+ AegisName: Mre_C
+ Name: Military Ration C
+ Type: Usable
+ Buy: 2
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,600000,33;
+ - Id: 12274
+ AegisName: Gold_Pill_1
+ Name: Daehwandan
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_INCREASE_MAXHP,3600000,5,10;
+ percentheal 10,0;
+ - Id: 12275
+ AegisName: Gold_Pill_2
+ Name: Taecheongdan
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_INCREASE_MAXSP,3600000,5,10;
+ percentheal 0,10;
+ - Id: 12276
+ AegisName: Mimic_Scroll
+ Name: Mimic Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 2058,1800000;
+ - Id: 12277
+ AegisName: Disguise_Scroll
+ Name: Disguise Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 2059,1800000;
+ - Id: 12278
+ AegisName: Alice_Scroll
+ Name: Alice Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 2060,1800000;
+ - Id: 12279
+ AegisName: Undead_Element_Scroll
+ Name: Undead Elemental Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;
+ - Id: 12280
+ AegisName: Holy_Element_Scroll
+ Name: Holy Elemental Scroll
+ Type: Usable
+ Weight: 10
+ Script: |
+ specialeffect2 EF_BENEDICTIO;
+ sc_start SC_BENEDICTIO,300000,1;
+ - Id: 12281
+ AegisName: Tresure_Box_WoE
+ Name: Event Treasure Box
+ Type: Usable
+ Buy: 20
+ Weight: 150
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tresure_Box_WoE_);
+ - Id: 12282
+ AegisName: Internet_Cafe1
+ Name: Internet Cafe1
+ Type: Usable
+ Weight: 10
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - Id: 12286
+ AegisName: Masquerade_Ball_Box2
+ Name: Masquerade Ball Box2
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Masquerade_2,1);
+ - Id: 12287
+ AegisName: Love_Angel
+ Name: Love Angel Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 1;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12288
+ AegisName: Squirrel
+ Name: Squirrel Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 2;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12289
+ AegisName: Gogo
+ Name: Gogo Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 3;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12290
+ AegisName: Mysterious_Can
+ Name: Mysterious Can Magic Powder
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,120000,5;
+ - Id: 12291
+ AegisName: Mysterious_PET_Bottle
+ Name: Mysterious PET Bottle
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 5,0;
+ skilleffect "AL_INCAGI",0;
+ sc_start SC_INCREASEAGI,120000,5;
+ - Id: 12292
+ AegisName: Unripe_Fruit
+ Name: Unripe Yggdrasilberry
+ Type: Healing
+ Buy: 500
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 20,0;
+ - Id: 12293
+ AegisName: Dried_Yggdrasilberry
+ Name: Dried Yggdrasilberry
+ Type: Healing
+ Buy: 500
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 0,20;
+ - Id: 12294
+ AegisName: PC_Bang_Coin_Box1
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2740,1;
+ - Id: 12295
+ AegisName: PC_Bang_Coin_Box2
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2739,1;
+ - Id: 12296
+ AegisName: PC_Bang_Coin_Box3
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2738,1;
+ - Id: 12297
+ AegisName: PC_Bang_Coin_Box4
+ Name: PC-Room Coin Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2738,2;
+ - Id: 12298
+ AegisName: SP_Potion
+ Name: SP Consumption Reduction Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SPCOST_RATE,3600000,15;
+ - Id: 12299
+ AegisName: Mega_Resist_Potion
+ Name: Mega Resist Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_COMMONSC_RESIST,3600000,10;
+ - Id: 12300
+ AegisName: Wild_Rose_Scroll
+ Name: Wild Rose Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1965,1800000;
+ - Id: 12301
+ AegisName: Doppelganger_Scroll
+ Name: Doppelganger Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1966,1800000;
+ - Id: 12302
+ AegisName: Ygnizem_Scroll
+ Name: Egnigem Cenia Contract
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ mercenary_create 1967,1800000;
+ - Id: 12303
+ AegisName: Water_Of_Blessing
+ Name: Blessing Of Water
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12304
+ AegisName: Picture_Diary
+ Name: Diary Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 4;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12305
+ AegisName: Mini_Heart
+ Name: Mini Heart Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 5;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12306
+ AegisName: Newcomer
+ Name: Freshman Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 6;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12307
+ AegisName: Kid
+ Name: Kid Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 7;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12308
+ AegisName: Magic_Castle
+ Name: Magic Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 8;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12309
+ AegisName: Bulging_Head
+ Name: JJangu Magic Powder
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setfont 9;
+ UnEquipScript: |
+ setfont 0;
+ - Id: 12310
+ AegisName: Spray_Of_Flowers
+ Name: Spray Of Flowers
+ Type: Usable
+ Weight: 50
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,300000,10;
+ - Id: 12311
+ AegisName: Large_Spray_Of_Flowers
+ Name: Huge Spray Of Flowers
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "ALL_PARTYFLEE",5;
+ - Id: 12312
+ AegisName: Thick_Manual50
+ Name: Thick Battle Manual
+ Type: Usable
+ Script: |
+ sc_start SC_EXPBOOST,3600000,50;
+ - Id: 12313
+ AegisName: Protection_Of_Angel
+ Name: Guardian Angel
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* itemskill "ALL_ANGEL_PROTECT",1; */
+ - Id: 12314
+ AegisName: Noive_Box
+ Name: Adventurer Returns Support Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Noive_Box);
+ - Id: 12315
+ AegisName: Goddess_Bless
+ Name: Goddess Of Blessing
+ Type: Usable
+ Weight: 10
+ - Id: 12316
+ AegisName: Angel_Bless
+ Name: Angel Of Blessing
+ Type: Usable
+ Weight: 10
+ - Id: 12317
+ AegisName: Powder_Snow
+ Name: Snow Powder
+ Type: Usable
+ Weight: 10
+ - Id: 12318
+ AegisName: Little_Heart
+ Name: Small Hearts
+ Type: Usable
+ Weight: 10
+ - Id: 12319
+ AegisName: Strawberry_Cake
+ Name: Rune Strawberry Cake
+ Type: Usable
+ Weight: 300
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,600000,10;
+ sc_start SC_FLEEFOOD,600000,20;
+ - Id: 12321
+ AegisName: Spicy_Sandwich
+ Name: Arunafeltz Desert Sandwich
+ Type: Usable
+ Weight: 300
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INCCRI,600000,7;
+ - Id: 12322
+ AegisName: Chocolate_Pie
+ Name: Chocolate Pie
+ Type: Healing
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 5,5;
+ - Id: 12323
+ AegisName: N_Fly_Wing
+ Name: Novice Fly Wing
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 12324
+ AegisName: N_Butterfly_Wing
+ Name: Novice Butterfly Wing
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",3;
+ - Id: 12325
+ AegisName: N_Magnifier
+ Name: Novice Magnifier
+ Type: Delayconsume
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "MC_IDENTIFY",1;
+ - Id: 12326
+ AegisName: J_Firecracker
+ Name: Large Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12327
+ AegisName: Charm_Of_Luck
+ Name: Charm Of Luck
+ Type: Usable
+ Buy: 1000
+ Weight: 50
+ Script: |
+ sc_start SC_INCLUK,3600000,20;
+ - Id: 12328
+ AegisName: Charm_Of_Happiness
+ Name: Charm Of Happiness
+ Type: Usable
+ Buy: 1800
+ Weight: 100
+ Script: |
+ sc_start SC_INCLUK,3600000,20;
+ - Id: 12329
+ AegisName: Recall_MaleGM
+ Name: Summon Male GameMaster Scroll
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_create 2000,1800000;
+ - Id: 12330
+ AegisName: Recall_FemaleGM
+ Name: Summon Female GameMaster Scroll
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ mercenary_create 2001,1800000;
+ - Id: 12331
+ AegisName: Ginseng
+ Name: Ginseng
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 6,0;
+ - Id: 12332
+ AegisName: Fruit_Juice
+ Name: Fruit Juice
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 0,6;
+ - Id: 12333
+ AegisName: Ansila
+ Name: Ancilla
+ Type: Usable
+ Weight: 10
+ Stack:
+ Amount: 3
+ Inventory: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 0,15;
+ sc_start SC_ANCILLA,60000,1;
+ - Id: 12334
+ AegisName: Cherish_Box
+ Name: Treasure Edition Helm Box
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Cherish_Box,1);
+ - Id: 12335
+ AegisName: Yummy_Skewered_Dish
+ Name: Grilled Delicious Skewer
+ Type: Healing
+ Buy: 1000
+ Weight: 350
+ Script: |
+ percentheal 60,60;
+ - Id: 12336
+ AegisName: Baked_Mushroom
+ Name: Grilled Mushroom
+ Type: Healing
+ Buy: 500
+ Weight: 300
+ Script: |
+ percentheal 30,30;
+ - Id: 12337
+ AegisName: Grilled_Sausage
+ Name: Grilled Sausages
+ Type: Healing
+ Buy: 300
+ Weight: 200
+ Script: |
+ percentheal 20,20;
+ - Id: 12338
+ AegisName: Grilled_Corn
+ Name: Grilled Corn
+ Type: Usable
+ Buy: 100
+ Weight: 100
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Cherish_Box_Ori,1);
+ - Id: 12340
+ AegisName: Mysterious_Rice_Powder
+ Name: Chewy Rice Powder
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1815;
+ - Id: 12341
+ AegisName: Special_Alloy_Trap_Box
+ Name: Special Alloy Trap Box
+ Type: Usable
+ Buy: 30000
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 7940,100;
+ - Id: 12342
+ AegisName: Manuk's_Opportunity
+ Name: Manuk's Opportunity
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_MANU_ATK,600000,10;
+ - Id: 12343
+ AegisName: Manuk's_Courage
+ Name: Manuk's Courage
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_MANU_DEF,600000,10;
+ - Id: 12344
+ AegisName: Pinguicula's_fruit_Jam
+ Name: Pinguicula's Fruit Jam
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_SPL_ATK,600000,10;
+ - Id: 12345
+ AegisName: Luciola's_Honey_Jam
+ Name: Luciola's Honey Jam
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_SPL_DEF,600000,10;
+ - Id: 12346
+ AegisName: Unripe_Acorn
+ Name: Unripe Acorn
+ Type: Usable
+ Flags:
+ BuyingStore: true
+ Script: |
+ heal -100,0;
+ - Id: 12347
+ AegisName: Acorn_Jelly
+ Name: Acorn Jelly
+ Type: Delayconsume
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "ALL_REVERSEORCISH",1;
+ - Id: 12348
+ AegisName: Manuk's_Faith
+ Name: Manuk's Faith
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_MANU_MATK,600000,10;
+ - Id: 12349
+ AegisName: Cornus'_Tears
+ Name: Cornus' Tears
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_POTION_BERSERK;
+ sc_start SC_SPL_MATK,600000,10;
+ - Id: 12350
+ AegisName: Angeling_Potion
+ Name: Angeling Potion
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,120000,5;
+ itemskill "AL_ANGELUS",5;
+ - Id: 12351
+ AegisName: Shout_Megaphone
+ Name: Scream Megaphone
+ Type: Delayconsume
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ itemskill "MC_LOUD",1;
+ - Id: 12352
+ AegisName: Dun_Tele_Scroll3
+ Name: Dungeon Teleport Scroll 3
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashDungeon",3;
+ - Id: 12353
+ AegisName: Tiny_Waterbottle
+ Name: Small Bottle
+ Type: Usable
+ Buy: 800
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_WATERWEAPON,90000,1;
+ - Id: 12354
+ AegisName: Buche_De_Noel
+ Name: Buche De Noel
+ Type: Usable
+ Buy: 2
+ Weight: 50
+ 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;
+ - Id: 12355
+ AegisName: Xmas_Gift
+ Name: Xmas Gift
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Xmas_Gift,1);
+ - Id: 12356
+ AegisName: Louise_Costume_Box
+ Name: Louise Costume Box
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Louise_Costume_Box,1);
+ - Id: 12357
+ AegisName: Shiny_Wing_Gown
+ Name: Shiny Wing Gown
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Script: |
+ pet 1630;
+ - Id: 12358
+ AegisName: Fan_Of_Wind
+ Name: Fan Of Wind
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1513;
+ - Id: 12359
+ AegisName: Very_Soft_Plant
+ Name: Very Soft Plant
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1586;
+ - Id: 12360
+ AegisName: Very_Red_Juice
+ Name: Very Red Juice
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1505;
+ - Id: 12361
+ AegisName: Delicious_Shaved_Ice
+ Name: Delicious Shaved Ice
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1143;
+ - Id: 12362
+ AegisName: Kuloren
+ Name: Kuloren
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1401;
+ - Id: 12363
+ AegisName: Fit_Pipe
+ Name: Fit Pipe
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1179;
+ - Id: 12364
+ AegisName: Staff_Of_Leader
+ Name: Staff Of Leader
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1299;
+ - Id: 12365
+ AegisName: Charming_Lotus
+ Name: Charming Lotus
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1416;
+ - Id: 12366
+ AegisName: Gril_Doll
+ Name: Girl's Doll
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1404;
+ - Id: 12367
+ AegisName: Luxury_Whisky_Bottle
+ Name: Luxury Whisky Bottle
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1504;
+ - Id: 12368
+ AegisName: Splendid_Mirror
+ Name: Splendid Mirror
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1148;
+ - Id: 12369
+ AegisName: Oilpalm_Coconut
+ Name: Oilpalm Coconut
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1495;
+ - Id: 12370
+ AegisName: Gril's_Naivety
+ Name: Girl's Naivety
+ Type: Usable
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1374;
+ - Id: 12371
+ AegisName: Magical_Lithography
+ Name: Magical Lithography
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1040;
+ - Id: 12372
+ AegisName: Hell_Contract
+ Name: Hell Contract
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1379;
+ - Id: 12373
+ AegisName: Boy's_Naivety
+ Name: Boy's Pure Heart
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1370;
+ - Id: 12374
+ AegisName: Flaming_Ice
+ Name: Ice Fireworks
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ pet 1837;
+ - Id: 12375
+ AegisName: Acaraje
+ Name: Akaraje
+ Type: Usable
+ Weight: 80
+ Script: |
+ 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: Delayconsume
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 3,0;
+ itemskill "PR_GLORIA",2;
+ - Id: 12377
+ AegisName: Mysterious_PET_Bottle2
+ Name: Mysterious PET Bottle2
+ Type: Delayconsume
+ Buy: 10
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ percentheal 0,3;
+ itemskill "PR_MAGNIFICAT",1;
+ - Id: 12378
+ AegisName: 2009_Rice_Cake_Soup
+ Name: Rice Cake Soup
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Script: |
+ percentheal 50,50;
+ - Id: 12379
+ AegisName: Pope's_Cookie
+ Name: Pope Cookie
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ 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;
+ - Id: 12380
+ AegisName: Desert_Wolf_Babe_Scroll
+ Name: Job Change Flute
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ mercenary_create 2034,1800000;
+ - Id: 12381
+ AegisName: ValkyrieA_Scroll
+ Name: Ancient Languages Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ if (strcharinfo(3) == "job3_arch02") {
+ mercenary_create 2037,1800000;
+ }
+ - Id: 12382
+ AegisName: ValkyrieB_Scroll
+ Name: Ancient Languages Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ if (strcharinfo(3) == "job3_arch02") {
+ mercenary_create 2038,1800000;
+ }
+ - Id: 12383
+ AegisName: Vulcan_Bullet_Magazine
+ Name: Vulcan Bullet Magazine
+ Type: Usable
+ Buy: 11000
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 6145,1000;
+ - Id: 12384
+ AegisName: Rainbow_Ruby_Water
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_war02") {
+ itemskill "WL_FROSTMISTY",5;
+ }
+ - Id: 12385
+ AegisName: Rainbow_Ruby_Fire
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_war02") {
+ itemskill "WL_CRIMSONROCK",5;
+ }
+ - Id: 12386
+ AegisName: Rainbow_Ruby_Wind
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_war02") {
+ itemskill "WL_CHAINLIGHTNING",5;
+ }
+ - Id: 12387
+ AegisName: Rainbow_Ruby_Earth
+ Name: Rainbow Ruby
+ Type: Delayconsume
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_war02") {
+ itemskill "WL_EARTHSTRAIN",5;
+ }
+ - Id: 12388
+ AegisName: Runstone_Crush
+ Name: Rhydo Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rune02") {
+ itemskill "RK_CRUSHSTRIKE",1;
+ }
+ - Id: 12389
+ AegisName: Runstone_Storm
+ Name: Pertz Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rune02") {
+ itemskill "RK_STORMBLAST",1;
+ }
+ - Id: 12390
+ AegisName: Runstone_Millennium
+ Name: Verkana Runestone For Apprentice
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if (strcharinfo(3) == "job3_rune02") {
+ itemskill "RK_MILLENNIUMSHIELD",1;
+ }
+ - Id: 12391
+ AegisName: Lucky_Egg_C
+ Name: Lucky Egg C
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C);
+ - Id: 12392
+ AegisName: RepairA
+ Name: Repair A
+ Type: Usable
+ Buy: 275
+ Weight: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear()) {
+ itemheal rand(200,300),0;
+ }
+ - Id: 12393
+ AegisName: RepairB
+ Name: Repair B
+ Type: Usable
+ Buy: 625
+ Weight: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear()) {
+ itemheal rand(300,400),0;
+ }
+ - Id: 12394
+ AegisName: RepairC
+ Name: Repair C
+ Type: Usable
+ Buy: 1375
+ Weight: 1
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ if (checkmadogear()) {
+ itemheal rand(400,500),0;
+ }
+ - Id: 12395
+ AegisName: Tantanmen
+ Name: Tantan Noodle
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ pet 1519;
+ - Id: 12396
+ AegisName: Fools_Day_Box
+ Name: Gift Box?
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ .@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?
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ .@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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12399
+ AegisName: Castle_Treasure_Box
+ Name: Castle Treasure Box
+ Type: Usable
+ Buy: 20
+ Weight: 1000
+ Script: |
+ Zeny += rand(50000,100000);
+ - Id: 12400
+ AegisName: Water_Of_Blessing_
+ Name: Water Of Blessing
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12401
+ AegisName: Rune_Kn_Test_Int
+ Name: Rune Kn Test Int
+ Type: Usable
+ Script: |
+ sc_start SC_INCINT,300000,40;
+ - Id: 12402
+ AegisName: 29Fruit
+ Name: 29Fruit
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 5,5;
+ - Id: 12403
+ AegisName: Lucky_Egg_C2
+ Name: Lucky Egg C2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C2);
+ - Id: 12404
+ AegisName: Acti_Potion
+ Name: Acti Potion
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 12405
+ AegisName: Underripe_Yggseed
+ Name: Underripe Yggseed
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 30,30;
+ skilleffect "AL_BLESSING",0;
+ sc_start SC_BLESSING,140000,5;
+ - Id: 12406
+ AegisName: Psychic_ArmorS
+ Name: Psychic ArmorS
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_ENERGYCOAT;
+ sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0;
+ - Id: 12407
+ AegisName: PCBang_Coupon_Box
+ Name: PC Cafe Coupon Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12408
+ AegisName: Leaf_Cat_Ball
+ Name: Hydra Ball
+ Type: Usable
+ Script: |
+ pet 2081;
+ - Id: 12409
+ AegisName: Pork_Belly_H
+ Name: 1st Class Pork Belly
+ Type: Usable
+ - Id: 12410
+ AegisName: Spareribs_H
+ Name: Thick Pork Belly
+ Type: Usable
+ - Id: 12411
+ AegisName: HE_Battle_Manual
+ Name: HE Battle Manual
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_EXPBOOST,900000,200;
+ - Id: 12412
+ AegisName: HE_Bubble_Gum
+ Name: HE Bubble Gum
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_ITEMBOOST,900000,300;
+ - Id: 12413
+ AegisName: PCBang_Coupon_Box2
+ Name: PC Cafe Coupon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12414
+ AegisName: Guarana_Candy
+ Name: Guarana Candy
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12416
+ AegisName: Lucky_Egg_C3
+ Name: Lucky Egg C3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C3);
+ - Id: 12417
+ AegisName: Boost500
+ Name: Boost500
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Script: |
+ sc_start SC_BOOST500,500000,10;
+ - Id: 12418
+ AegisName: Full_SwingK
+ Name: Full SwingK
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_FULL_SWING_K,500000,50;
+ - Id: 12419
+ AegisName: Mana_Plus
+ Name: Mana Plus
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MANA_PLUS,500000,50;
+ - Id: 12420
+ AegisName: Stamina_Up_M
+ Name: Stamina Up M
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Script: |
+ sc_start SC_MUSTLE_M,500000,5;
+ - Id: 12421
+ AegisName: Digestive_F
+ Name: Falmons F
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ sc_start SC_LIFE_FORCE_F,500000,5;
+ - Id: 12422
+ AegisName: HP_Increase_PotionS
+ Name: HP Increase Potion (Small)
+ Type: Usable
+ Buy: 100
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1;
+ percentheal 1,0;
+ - Id: 12423
+ AegisName: HP_Increase_PotionM
+ Name: HP Increase Potion (Medium)
+ Type: Usable
+ Buy: 100
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2;
+ percentheal 2,0;
+ - Id: 12424
+ AegisName: HP_Increase_PotionL
+ Name: HP Increase Potion (Large)
+ Type: Usable
+ Buy: 100
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3;
+ percentheal 5,0;
+ - Id: 12425
+ AegisName: SP_Increase_PotionS
+ Name: SP Increase Potion (Small)
+ Type: Usable
+ Buy: 100
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1;
+ percentheal 0,2;
+ - Id: 12426
+ AegisName: SP_Increase_PotionM
+ Name: SP Increase Potion (Medium)
+ Type: Usable
+ Buy: 100
+ Weight: 40
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2;
+ percentheal 0,4;
+ - Id: 12427
+ AegisName: SP_Increase_PotionL
+ Name: SP Increase Potion (Large)
+ Type: Usable
+ Buy: 100
+ Weight: 80
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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: 70
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20;
+ heal 1000,0;
+ - Id: 12429
+ AegisName: Savage_BBQ
+ Name: Savage Full Roast
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SAVAGE_STEAK,300000,20;
+ - Id: 12430
+ AegisName: Wug_Blood_Cocktail
+ Name: Cocktail Warg Blood
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;
+ - Id: 12431
+ AegisName: Minor_Brisket
+ Name: Minor Stew
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MINOR_BBQ,300000,20;
+ - Id: 12432
+ AegisName: Siroma_Icetea
+ Name: Siroma Iced Tea
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SIROMA_ICE_TEA,300000,20;
+ - Id: 12433
+ AegisName: Drocera_Herb_Stew
+ Name: Drosera Herb Salad
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DROCERA_HERB_STEAMED,300000,20;
+ - Id: 12434
+ AegisName: Petti_Tail_Noodle
+ Name: Petite Tail Noodles
+ Type: Usable
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_PUTTI_TAILS_NOODLES,300000,20;
+ - Id: 12435
+ AegisName: Black_Thing
+ Name: Black Mass
+ Type: Usable
+ Weight: 50
+ Script: |
+ sc_start SC_STOMACHACHE,60000,rand(5,10);
+ - Id: 12436
+ AegisName: Vitata500
+ Name: Vitata 500
+ Type: Healing
+ Buy: 10
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;
+ - Id: 12438
+ AegisName: F_Giant_Fly_Wing
+ Name: F Giant Fly Wing
+ 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
+ Type: Usable
+ Weight: 10
+ Script: |
+ callfunc "F_CashSiegeTele";
+ - Id: 12445
+ AegisName: F_Str_Dish10_
+ Name: F Str Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_STRFOOD,1800000,10;
+ percentheal 20,10;
+ - Id: 12446
+ AegisName: F_Agi_Dish10_
+ Name: F Agi Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_AGIFOOD,1800000,10;
+ percentheal 15,5;
+ - Id: 12447
+ AegisName: F_Int_Dish10_
+ Name: F Int Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,1800000,10;
+ percentheal 10,20;
+ - Id: 12448
+ AegisName: F_Dex_Dish10_
+ Name: F Dex Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_DEXFOOD,1800000,10;
+ percentheal 10,10;
+ - Id: 12449
+ AegisName: F_Luk_Dish10_
+ Name: F Luk Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_LUKFOOD,1800000,10;
+ - Id: 12450
+ AegisName: F_Vit_Dish10_
+ Name: F Vit Dish10
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_VITFOOD,1800000,10;
+ - Id: 12451
+ AegisName: F_WOB_Rune
+ Name: F WOB Rune
+ Type: Usable
+ Weight: 10
+ - Id: 12452
+ AegisName: F_WOB_Schwaltz
+ Name: F WOB Schwarz
+ Type: Usable
+ Weight: 10
+ - Id: 12453
+ AegisName: F_WOB_Rachel
+ Name: F WOB Rachel
+ Type: Usable
+ Weight: 10
+ - Id: 12454
+ AegisName: F_WOB_Local
+ Name: F WOB Local
+ Type: Usable
+ Weight: 10
+ - Id: 12456
+ AegisName: F_Greed_Scroll
+ Name: F Greed Scroll
+ 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;
+ - 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;
+ - 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;
+ - 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;
+ - 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;
+ - 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;
+ - Id: 12466
+ AegisName: F_Blessing_10_Scroll
+ Name: F Blessing 10 Scroll
+ 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: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "AL_INCAGI",10;
+ - Id: 12468
+ AegisName: F_Aspersio_5_Scroll
+ Name: F Aspersio 5 Scroll
+ 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: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "SN_WINDWALK",10;
+ - Id: 12471
+ AegisName: F_Adrenaline_Scroll
+ Name: F Adrenaline Scroll
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_Parti_Box);
+ - Id: 12474
+ AegisName: RWC_Final_Comp_Box
+ Name: RWC Final Comp Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_Final_Comp_Box);
+ - Id: 12475
+ AegisName: Cure_Free
+ Name: Cure Free
+ Type: Usable
+ Buy: 20
+ 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;
+ - Id: 12476
+ AegisName: PCBang_Coupon_Box3
+ Name: PCBang Coupon Box3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12477
+ AegisName: Gift_Bundle
+ Name: Gift Bundle
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Gift_Bundle);*/
+ getitem 547,30;
+ getitem 608,2;
+ getitem 6302,1;
+ - Id: 12478
+ AegisName: Chance_Box
+ Name: Chance Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12479
+ AegisName: Caracas_Ring_Box
+ Name: Caracas Ring Box
+ Type: Usable
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Caracas_Ring_Box);*/
+ rentitem 2841,270000;
+ - Id: 12480
+ AegisName: Attend_3Day_Box
+ Name: Attend 3Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12481
+ AegisName: Attend_7Day_Box
+ Name: Attend 7Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12482
+ AegisName: Attend_10Day_Box
+ Name: Attend 10Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12483
+ AegisName: Attend_15Day_Box
+ Name: Attend 15Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12484
+ AegisName: Attend_20Day_Box
+ Name: Attend 20Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12485
+ AegisName: Attend_25Day_Box
+ Name: Attend 25Day Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12486
+ AegisName: GoldPC_First_Box
+ Name: GoldPC First Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12487
+ AegisName: PC_4Leaf_Clover_Box
+ Name: PC 4Leaf Clover Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12488
+ AegisName: Ticket_Gift_Box
+ Name: Ticket Gift Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ # Script: |
+ # mercenary_create VALK_MERC_H,1800000;
+ - Id: 12489
+ AegisName: Ticket_Gift_Box2
+ Name: Ticket Gift Box2
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12490
+ AegisName: Vivid_Notation
+ Name: Christmas Music Box
+ Type: Usable
+ Buy: 20
+ Flags:
+ BuyingStore: true
+ Script: |
+ playbgm rand(53,58)+".mp3";
+ - Id: 12491
+ AegisName: Curious_Snowball
+ Name: Curious Snowball
+ Type: Usable
+ Buy: 20
+ Script: |
+ callfunc "F_Snowball";
+ - Id: 12492
+ AegisName: Crumpled_Paper
+ Name: Crumpled Paper
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_Crumpled_Paper,1);
+ - Id: 12493
+ AegisName: Lucky_Egg_C4
+ Name: Lucky Egg C4
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C4);
+ - Id: 12494
+ AegisName: E_Giant_Fly_Wing
+ Name: E Giant Fly Wing
+ 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
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ITEMBOOST,1800000,100;
+ - Id: 12498
+ AegisName: E_Kafra_Card
+ Name: E Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12499
+ AegisName: E_Neuralizer
+ Name: E Neuralizer
+ Type: Usable
+ Buy: 2
+ - Id: 12500
+ AegisName: E_Dun_Tele_Scroll1
+ Name: E Dun Tele Scroll1
+ Type: Usable
+ Weight: 10
+ - Id: 12501
+ AegisName: E_Str_Dish10_
+ Name: Steamed Tongue
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_STRFOOD,1800000,10;
+ - Id: 12502
+ AegisName: E_Agi_Dish10_
+ Name: Steamed Desert Scorpions
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1800000,10;
+ - Id: 12503
+ AegisName: E_Int_Dish10_
+ Name: Dragon Breath Cocktail
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INTFOOD,1800000,10;
+ - Id: 12504
+ AegisName: E_Dex_Dish10_
+ Name: Hwergelmir's Tonic
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DEXFOOD,1800000,10;
+ - Id: 12505
+ AegisName: E_Luk_Dish10_
+ Name: Cooked Nine Tail
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LUKFOOD,1800000,10;
+ - Id: 12506
+ AegisName: E_Vit_Dish10_
+ Name: Immortal Stew
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_VITFOOD,1800000,10;
+ - Id: 12507
+ AegisName: E_WOB_Rune
+ Name: Yellow Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",1;
+ - Id: 12508
+ AegisName: E_WOB_Schwaltz
+ Name: Green Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",2;
+ - Id: 12509
+ AegisName: E_WOB_Rachel
+ Name: Red Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",3;
+ - Id: 12510
+ AegisName: E_WOB_Local
+ Name: Blue Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",5;
+ - Id: 12511
+ AegisName: E_Siege_Teleport_Scroll
+ Name: E Siege Teleport Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12512
+ AegisName: E_Greed_Scroll
+ Name: E Greed Scroll
+ 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
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ sc_start SC_INCCRI,300000,30;
+ - Id: 12515
+ AegisName: E_Med_Life_Potion
+ Name: E Med Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start2 SC_L_LIFEPOTION,600000,-7,4;
+ - Id: 12516
+ AegisName: E_Small_Life_Potion
+ Name: E Small Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start2 SC_S_LIFEPOTION,600000,-5,5;
+ - Id: 12517
+ AegisName: E_Regeneration_Potion
+ Name: E Regeneration Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12518
+ AegisName: E_B_Mdef_Potion
+ Name: E B Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12519
+ AegisName: E_S_Mdef_Potion
+ Name: E S Mdef Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12520
+ AegisName: E_B_Def_Potion
+ Name: E B Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12521
+ AegisName: E_S_Def_Potion
+ Name: E S Def Potion
+ Type: Usable
+ Weight: 10
+ - Id: 12522
+ AegisName: E_Blessing_10_Scroll
+ Name: Blessing Scroll Lv 10
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_BLESSING",10;
+ - Id: 12523
+ AegisName: E_Inc_Agi_10_Scroll
+ Name: Increase Agility Scroll Lv 10
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_INCAGI",10;
+ - Id: 12524
+ AegisName: E_Aspersio_5_Scroll
+ Name: Aspersio Scroll Lv 5
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "PR_ASPERSIO",5;
+ - Id: 12525
+ AegisName: E_Assumptio_5_Scroll
+ Name: Assumptio Scroll Lv 5
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "HP_ASSUMPTIO",5;
+ - Id: 12526
+ AegisName: E_Wind_Walk_10_Scroll
+ Name: Wind Walk Scroll Lv 10
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "SN_WINDWALK",10;
+ - Id: 12527
+ AegisName: E_Adrenaline_Scroll
+ Name: Adrenaline Scroll
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Script: |
+ itemskill "BS_ADRENALINE",5;
+ - Id: 12528
+ AegisName: E_Convex_Mirror
+ Name: Convex Mirror
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ sc_start SC_BOSSMAPINFO,600000,0;
+ - Id: 12529
+ AegisName: White_Slim_Potion_Box
+ Name: White Slim Potion Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,200;
+ - Id: 12530
+ AegisName: Mastela_Fruit_Box
+ Name: Mastela Fruit Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 522,200;
+ - Id: 12531
+ AegisName: White_Potion_Box
+ Name: White Potion Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 504,100;
+ - Id: 12532
+ AegisName: Royal_Jelly_Box2
+ Name: Royal Jelly Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 526,100;
+ - Id: 12533
+ AegisName: Blue_Herb_Box2
+ Name: Blue Herb Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 510,100;
+ - Id: 12534
+ AegisName: Yggdrasil_Seed_Box
+ Name: Yggdrasil Seed Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 608,30;
+ - Id: 12535
+ AegisName: Iggdrasilberry_Box
+ Name: Iggdrasilberry Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 607,15;
+ - Id: 12536
+ AegisName: NY_Rice_Cake_Soup
+ Name: NY Rice Cake Soup
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 20,20;
+ - Id: 12537
+ AegisName: Solo_Gift_Basket
+ Name: Solo Gift Basket
+ Type: Usable
+ Buy: 1000
+ Weight: 10
+ 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;
+ - Id: 12538
+ AegisName: Couple_Event_Basket
+ Name: Couple Event Basket
+ Type: Usable
+ Buy: 2000
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ /*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
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ getgroupitem(IG_Splendid_Box);
+ - Id: 12540
+ AegisName: GM_Warp_Box
+ Name: GM Warp Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_GM_Warp_Box);
+ - Id: 12541
+ AegisName: Fortune_Cookie1
+ Name: Fortune Cookie1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_Fortune_Cookie1,1);
+ - Id: 12542
+ AegisName: Fortune_Cookie2
+ Name: Fortune Cookie2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Fortune_Cookie2);
+ - Id: 12543
+ AegisName: Fortune_Cookie3
+ Name: Fortune Cookie3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Fortune_Cookie3);
+ - Id: 12544
+ AegisName: Mystic_Tree_Branch
+ Name: Mystic Tree Branch
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12545
+ AegisName: Lucky_Egg_C5
+ Name: Lucky Egg C5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C5);
+ - Id: 12546
+ AegisName: Suspicious_Dish
+ Name: Suspicious Dish
+ Type: Usable
+ Buy: 100
+ Weight: 50
+ Script: |
+ sc_start SC_POISON,50000,0;
+ - Id: 12547
+ AegisName: Chalcenodny_Box
+ Name: Chalcenodny Box
+ Type: Usable
+ Weight: 200
+ - Id: 12548
+ AegisName: Buy_Market_Permit2
+ Name: Shabby Purchase Street Stall License
+ Type: Usable
+ Buy: 500
+ Weight: 10
+ Script: |
+ buyingstore 2;
+ - Id: 12549
+ AegisName: White_Slim_Pot_Box2
+ Name: White Slim Pot Box2
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,100;
+ - Id: 12550
+ AegisName: Poison_Bottle_Box2
+ Name: Deadly Poison Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,30;
+ - Id: 12551
+ AegisName: MVP_Tele_Scroll
+ Name: MVP Tele Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12552
+ AegisName: Quest_Tele_Scroll
+ Name: Quest Tele Scroll
+ Type: Usable
+ Weight: 10
+ - Id: 12553
+ AegisName: Brysinggamen_Piece_Box
+ Name: Brysinggamen Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12554
+ AegisName: Asprika_Piece_Box
+ Name: Asprika Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12555
+ AegisName: Brynhild_Piece_Box
+ Name: Brynhild Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12556
+ AegisName: Sleipnir_Piece_Box
+ Name: Sleipnir Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12557
+ AegisName: Mjolnir_Piece_Box
+ Name: Mjolnir Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12558
+ AegisName: Magingiorde_Piece_Box
+ Name: Magingiorde Piece Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12559
+ AegisName: Tenkaippin_Strong
+ Name: Tenkaippin Strong
+ Type: Usable
+ Buy: 650
+ Weight: 200
+ - Id: 12560
+ AegisName: Tenkaippin_Clean
+ Name: Tenkaippin Clean
+ Type: Usable
+ Buy: 650
+ Weight: 200
+ - Id: 12561
+ AegisName: Mysterious_Seed
+ Name: Mysterious Seed
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ warp "bif_fild01",32,382;
+ - Id: 12562
+ AegisName: Bubble_Gum_Plus
+ Name: Bubble Gum Plus
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12563
+ AegisName: BM75
+ Name: BM75
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ - Id: 12564
+ AegisName: 3D_Glasses_Box
+ Name: 3D Glasses Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12565
+ AegisName: Cheer_Scarf_Box
+ Name: Cheer Scarf Box
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12566
+ AegisName: Cheer_Scarf2_Box
+ Name: Cheer Scarf2 Box
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12567
+ AegisName: Cheer_Scarf3_Box
+ Name: Cheer Scarf3 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12568
+ AegisName: Cheer_Scarf4_Box
+ Name: Cheer Scarf4 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12569
+ AegisName: Cheer_Scarf6_Box
+ Name: Cheer Scarf6 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12570
+ AegisName: Cheer_Scarf8_Box
+ Name: Cheer Scarf8 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12571
+ AegisName: Cheer_Scarf10_Box
+ Name: Cheer Scarf10 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12572
+ AegisName: Cheer_Scarf10_Box2
+ Name: Cheer Scarf10 Box2
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12573
+ AegisName: Fruit_Basket
+ Name: Fruit Basket
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Fruit_Basket,1);
+ getrandgroupitem(IG_Fruit_Basket,1);
+ getrandgroupitem(IG_Fruit_Basket,1);
+ - Id: 12574
+ AegisName: Mora_Berry
+ Name: Mora Berry
+ Type: Usable
+ Weight: 20
+ 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;
+ - Id: 12575
+ AegisName: Arrow_Of_Elf_Cntr
+ Name: Arrow Of Elf Cntr
+ Type: Usable
+ Buy: 500
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1773,500;
+ - Id: 12576
+ AegisName: Hunting_Arrow_Cntr
+ Name: Hunting Arrow Cntr
+ Type: Usable
+ Buy: 500
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1774,500;
+ - Id: 12577
+ AegisName: Lucky_Egg_C6
+ Name: Lucky Egg C6
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C6);
+ - Id: 12578
+ AegisName: Rapid_Life_Water
+ Name: Rapid Life Water
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600;
+ - Id: 12579
+ AegisName: Ring_Of_Valkyrie_Box
+ Name: Ring Of Valkyrie Box
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12580
+ AegisName: Vending_Search_Scroll
+ Name: Universal Catalog Silver
+ Type: Usable
+ Weight: 10
+ Script: |
+ searchstores 10,0;
+ - Id: 12581
+ AegisName: Vending_Search_Scroll2
+ Name: Universal Catalog Gold
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ searchstores 10,1;
+ - Id: 12582
+ AegisName: Siege_Supply_Box
+ Name: WoE Supply Box
+ Type: Delayconsume
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 12583
+ AegisName: PR_Team_Box
+ Name: Public Relations box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6397,1;
+ - Id: 12584
+ AegisName: Develop_Team_box
+ Name: Development Team box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6398,1;
+ - Id: 12585
+ AegisName: Marketing_Team_Box
+ Name: Marketing Team box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6399,1;
+ - Id: 12586
+ AegisName: Operating_Team_Box
+ Name: Operation Team box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6400,1;
+ - Id: 12587
+ AegisName: Summer_Night_box
+ Name: A Summer Night's Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12246,1;
+ - Id: 12588
+ AegisName: Summer_Night_box2
+ Name: A Summer Night's Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12103,1;
+ - Id: 12589
+ AegisName: Summer_Night_box3
+ Name: A Summer Night's Box3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12106,1;
+ - Id: 12591
+ AegisName: Uni_Catalog_Bz
+ Name: Universal Catalog Bronze
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ searchstores 10,1;
+ - Id: 12592
+ AegisName: Cyclops_Box1
+ Name: Cyclops Box1
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ - Id: 12593
+ AegisName: Cyclops_Box2
+ Name: Cyclops Box2
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ - Id: 12594
+ AegisName: Cyclops_Box3
+ Name: Cyclops Box3
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ - Id: 12595
+ AegisName: Lucky_Egg_C7
+ Name: Lucky Egg C7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C7);
+ - Id: 12596
+ AegisName: Magic_Candy
+ Name: Magic Candy
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 180000
+ Status: Reuse_Limit_B
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 12597
+ AegisName: Opor_Ayam
+ Name: Opor Ayam
+ Type: Delayconsume
+ Buy: 20
+ Weight: 150
+ - Id: 12598
+ AegisName: Dendeng_Balado
+ Name: Dendeng Balado
+ Type: Delayconsume
+ Buy: 20
+ Weight: 150
+ - Id: 12599
+ AegisName: Kurma
+ Name: Kurma
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ - Id: 12600
+ AegisName: Treasure_Box_Scroll
+ Name: Treasure Chest Summoned
+ Type: Delayconsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12601
+ AegisName: Cold_Watermelon_Juice
+ Name: Fresh Watermelon Juice
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ percentheal 5,5;
+ - Id: 12602
+ AegisName: Special_Box1
+ Name: Special Box I
+ Type: Delayconsume
+ Buy: 100
+ Weight: 100
+ - Id: 12603
+ AegisName: Special_Box2
+ Name: Special Box II
+ Type: Delayconsume
+ Buy: 100
+ Weight: 100
+ - Id: 12604
+ AegisName: Special_Box3
+ Name: Special Box III
+ Type: Delayconsume
+ Buy: 100
+ Weight: 100
+ - Id: 12605
+ AegisName: Special_Box4
+ Name: Special Box IV
+ Type: Delayconsume
+ Buy: 100
+ Weight: 100
+ - Id: 12606
+ AegisName: Special_Box5
+ Name: Special Box V
+ Type: Delayconsume
+ Buy: 100
+ Weight: 100
+ - Id: 12607
+ AegisName: Lolli_Pop_Box
+ Name: Delicious Lollipop Box
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12608
+ AegisName: Splendid_Box2
+ Name: Splendid Box2
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ - Id: 12609
+ AegisName: Old_Ore_Box
+ Name: Old Ore Box
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ BuyingStore: true
+ Script: |
+ getgroupitem(IG_Old_Ore_Box);
+ - Id: 12610
+ AegisName: Mysterious_Egg
+ Name: Mysterious Egg
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1;
+ - Id: 12612
+ AegisName: Old_Coin_Pocket
+ Name: Old Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Old_Coin_Pocket);
+ - Id: 12613
+ AegisName: High_Coin_Pocket
+ Name: Improved Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_High_Coin_Pocket);
+ - Id: 12614
+ AegisName: Mid_Coin_Pocket
+ Name: Intermediate Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Mid_Coin_Pocket);
+ - Id: 12615
+ AegisName: Low_Coin_Pocket
+ Name: Minor Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Low_Coin_Pocket);
+ - Id: 12616
+ AegisName: Sgrade_Pocket
+ Name: S Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Sgrade_Pocket);
+ - Id: 12617
+ AegisName: Agrade_Pocket
+ Name: A Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Agrade_Pocket);
+ - Id: 12618
+ AegisName: Bgrade_Pocket
+ Name: B Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Bgrade_Pocket);
+ - Id: 12619
+ AegisName: Cgrade_Pocket
+ Name: C Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Cgrade_Pocket);
+ - Id: 12620
+ AegisName: Dgrade_Pocket
+ Name: D Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Dgrade_Pocket);
+ - Id: 12621
+ AegisName: Egrade_Pocket
+ Name: E Grade Coin Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Egrade_Pocket);
+ - Id: 12622
+ AegisName: Boarding_Halter
+ Name: Reins Of Mount
+ Type: Usable
+ Flags:
+ NoConsume: true
+ Delay:
+ Duration: 3000
+ Status: All_Riding_Reuse_Limit
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ setmounting();
+ UnEquipScript: |
+ if (ismounting())
+ setmounting();
+ - Id: 12623
+ AegisName: High_Weapon_Box
+ Name: Advanced Weapons Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Advanced_Weapons_Box,1);
+ - Id: 12624
+ AegisName: Delicious_Jelly
+ Name: Delicious Jelly
+ Type: Healing
+ Buy: 20
+ Weight: 50
+ Script: |
+ percentheal 3,3;
+ - Id: 12625
+ AegisName: Sapa_Feat_Cert_Pack
+ Name: Sapa Feat Cert Pack
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12626
+ AegisName: Wander_Man_Scroll
+ Name: Wander Man Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2213,1800000;
+ - Id: 12627
+ AegisName: Wicked_Nymph_Scroll
+ Name: Wicked Nymph Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2214,1800000;
+ - Id: 12628
+ AegisName: Kasa_Scroll
+ Name: Kasa Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2215,1800000;
+ - Id: 12629
+ AegisName: Salamander_Scroll
+ Name: Salamander Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2216,1800000;
+ - Id: 12630
+ AegisName: Teddy_Bear_Scroll
+ Name: Teddy Bear Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2217,1800000;
+ - Id: 12631
+ AegisName: Macro_Stone_A
+ Name: Macro Stone A
+ Type: Usable
+ - Id: 12632
+ AegisName: Macro_Stone_B
+ Name: Macro Stone B
+ Type: Usable
+ - Id: 12633
+ AegisName: Malang_Cat_Can
+ Name: Malangdo Cat Can
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 12634
+ AegisName: Macro_Stone_A1
+ Name: Macro Stone A1
+ Type: Usable
+ - Id: 12635
+ AegisName: Macro_Stone_A2
+ Name: Macro Stone A2
+ Type: Usable
+ - Id: 12636
+ AegisName: Malang_Sp_Can
+ Name: Malangdo Canned Specialties
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "malangdo",140,114;
+ - Id: 12637
+ AegisName: Gong_Bug_Pocket
+ Name: Sow Bug Pocket
+ Type: Usable
+ Buy: 20
+ Weight: 500
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13208,200;
+ - Id: 12638
+ AegisName: Dried_Squid_Box
+ Name: Dried Squid Box
+ Type: Usable
+ Buy: 20
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13292,200;
+ - Id: 12639
+ AegisName: Flying_Fish_Box
+ Name: Flying Fish Box
+ Type: Usable
+ Buy: 20
+ Weight: 2000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13293,200;
+ - Id: 12640
+ AegisName: Starfish_Box
+ Name: Starfish Box
+ Type: Usable
+ Buy: 20
+ Weight: 500
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13291,200;
+ - Id: 12641
+ AegisName: Lucky_Egg_C8
+ Name: Lucky Egg C8
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C8);
+ - Id: 12642
+ AegisName: Fruit_Of_Mastela_Box2
+ Name: Fruit Of Mastela 100 Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 522,100;
+ - Id: 12643
+ AegisName: E_Coin_Pack50
+ Name: E Coin Pack50
+ Type: Usable
+ Script: |
+ getitem 6422,50;
+ - Id: 12644
+ AegisName: PCBang_Coupon_Box4
+ Name: PCBang Coupon Box4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12645
+ AegisName: J_Aspersio_5_Scroll_C
+ Name: J Aspersio 5 Scroll C
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPERSIO,180000,1;
+ - Id: 12646
+ AegisName: Takoyaki
+ Name: Fried Octopus Legs
+ Type: Usable
+ 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;
+ - Id: 12647
+ AegisName: Ink_Ball
+ Name: Sea Ink
+ Type: Usable
+ Buy: 20
+ Weight: 30
+ Script: |
+ getgroupitem(IG_Ink_Ball);
+ - Id: 12648
+ AegisName: Special_Potion_Set
+ Name: Comprehensive Set Of Potions
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12263,5;
+ - Id: 12651
+ AegisName: Lv110_Imperial_Gift
+ Name: Level 110 Bounty
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12623,1;
+ getitem 16765,1;
+ getitem 16765,1;
+ getitem 16765,1;
+ - Id: 12652
+ AegisName: Lv130_Imperial_Gift
+ Name: Level 130 Bounty
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12613,10;
+ - Id: 12653
+ AegisName: Lv150_Imperial_Gift
+ Name: Level 150 Bounty
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 16740,1;
+ getitem 16740,1;
+ getitem 16740,1;
+ getitem 5364,1;
+ - Id: 12654
+ AegisName: Lucky_Egg_C9
+ Name: Lucky Egg C9
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C9);
+ - Id: 12655
+ AegisName: Brain_Powder
+ Name: Brain Powder
+ Type: Usable
+ Buy: 2000
+ Weight: 100
+ - Id: 12656
+ AegisName: Magical_Powder
+ Name: Magical Powder
+ Type: Usable
+ Buy: 3000
+ Weight: 200
+ - Id: 12657
+ AegisName: Madness_Powder
+ Name: Madness Powder
+ Type: Usable
+ Buy: 4000
+ Weight: 300
+ - Id: 12658
+ AegisName: Trans_Scroll_Devi
+ Name: Transformation Scroll(Deviruchi)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1109,1200000,SC_MTF_ASPD,10,5;
+ showscript "Traaaansformation-!! Deviruchi form!!";
+ - Id: 12659
+ AegisName: Trans_Scroll_Ray_Arch
+ Name: Transformation Scroll(Raydric)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1276,1200000,SC_MTF_RANGEATK,25;
+ showscript "Traaaansformation-!! Raydric form!!";
+ - Id: 12660
+ AegisName: Trans_Scroll_Mavka
+ Name: Transformation Scroll(Mavka)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1884,1200000,SC_MTF_RANGEATK,25;
+ showscript "Traaaansformation-!! Mavka form!!";
+ - Id: 12661
+ AegisName: Trans_Scroll_Marduk
+ Name: Transformation Scroll(Marduk)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1140,1200000,SC_MTF_MATK,25;
+ showscript "Traaaansformation-!! Marduk form!!";
+ - Id: 12662
+ AegisName: Trans_Scroll_Banshee
+ Name: Transformation Scroll(Banshee)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1867,1200000,SC_MTF_MATK,25;
+ showscript "Traaaansformation-!! Banshee form!!";
+ - Id: 12663
+ AegisName: Trans_Scroll_Poring
+ Name: Transformation Scroll(Poring)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1002,1200000,SC_MTF_CRIDAMAGE,25;
+ showscript "Traaaansformation-!! Poring form!!";
+ - Id: 12664
+ AegisName: Trans_Scroll_Golem
+ Name: Transformation Scroll(Golem)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Delay:
+ Duration: 10000
+ Status: Reuse_Limit_Mtf
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ transform 1040,1200000,SC_MTF_MLEATKED,5,20,2;
+ showscript "Traaaansformation-!! Golem form!!";
+ - Id: 12665
+ AegisName: Grovel_Buff
+ Name: Grovel Buff
+ Type: Usable
+ - Id: 12666
+ AegisName: Thai_Perfume_MATK
+ Name: Thai Perfume MATK
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK;
+ - Id: 12667
+ AegisName: Thai_Perfume_ATK
+ Name: Thai Perfume ATK
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK;
+ - Id: 12668
+ AegisName: Thai_Perfume_ASPD
+ Name: Thai Perfume ASPD
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD;
+ - Id: 12669
+ AegisName: Thai_Perfume_CAST
+ Name: Thai Perfume CAST
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST;
+ - Id: 12670
+ AegisName: Beast_Powder
+ Name: Beast Powder
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ - Id: 12671
+ AegisName: 99lv_Battle_Manual
+ Name: 99lv Battle Manual
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12672
+ AegisName: Start_New_Box
+ Name: Start New Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 617,2;
+ getitem 12263,2;
+ getitem 12329,3;
+ getitem 12330,2;
+ - Id: 12673
+ AegisName: Lucky_Egg_C10
+ Name: Lucky Egg C10
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Egg_C10);
+ - Id: 12674
+ AegisName: God_Material_Box
+ Name: God Material Box
+ Type: Usable
+ Buy: 20
+ Weight: 500
+ Script: |
+ getgroupitem(IG_God_Material_Box);
+ - Id: 12675
+ AegisName: Sg_Weapon_Supply_Box
+ Name: WoE Weapon Supply Box
+ Type: Usable
+ Buy: 20
+ Weight: 500
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getgroupitem(IG_Sg_Weapon_Supply_Box);
+ - Id: 12676
+ AegisName: Sg_Violet_Potion_Box
+ Name: Siege Violet Potion Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 11547,50;
+ - Id: 12677
+ AegisName: Siege_Arrow_Quiver_S
+ Name: Siege Arrow Quiver S
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ EquipLevelMin: 130
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1775,500;
+ - Id: 12678
+ AegisName: Siege_Arrow_Quiver_A
+ Name: Siege Arrow Quiver A
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ EquipLevelMin: 95
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 1776,500;
+ - Id: 12679
+ AegisName: Sg_White_Potion_Box
+ Name: Siege White Potion Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 11548,30;
+ - Id: 12680
+ AegisName: Sg_Blue_Potion_Box
+ Name: Siege Blue Potion Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 11549,10;
+ - Id: 12681
+ AegisName: Nestea_Lemon
+ Name: Nestea Lemon
+ Type: Usable
+ Weight: 50
+ - Id: 12682
+ AegisName: Nestea_Blacktea
+ Name: Nestea Black Tea
+ Type: Usable
+ Weight: 30
+ - Id: 12683
+ AegisName: Sg_Vi_Potion_Box200
+ Name: Siege Violet Potion Box (200)
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem 11547,200;
+ - Id: 12684
+ AegisName: ASPD_Potion
+ Name: ASPD Potion
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 900000
+ Status: Reuse_Limit_Aspd_Potion
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATTHASTE_CASH,900000,3;
+ - Id: 12685
+ AegisName: Gryphon_Egg_Scroll
+ Name: Gryphon Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12686
+ AegisName: Str_Dish20
+ Name: Str Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12687
+ AegisName: Int_Dish20
+ Name: Int Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12688
+ AegisName: Vit_Dish20
+ Name: Vit Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12689
+ AegisName: Dex_Dish20
+ Name: Dex Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12690
+ AegisName: Old_C_Album_Helm
+ Name: Headgear Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Helm,1);
+ - Id: 12691
+ AegisName: Old_C_Album_Armor
+ Name: Armor Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Armor,1);
+ - Id: 12692
+ AegisName: Old_C_Album_Shield
+ Name: Shield Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Shield,1);
+ - Id: 12693
+ AegisName: Old_C_Album_Garment
+ Name: Garment Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Garment,1);
+ - Id: 12694
+ AegisName: Old_C_Album_Shoes
+ Name: Shoes Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Shoes,1);
+ - Id: 12695
+ AegisName: Old_C_Album_Acc
+ Name: Accessory Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Acc,1);
+ - Id: 12696
+ AegisName: RWC_Cele_Fire
+ Name: RWC Celebration Firecracker
+ Type: Usable
+ Weight: 20
+ Script: |
+ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;
+ - Id: 12697
+ AegisName: RWC_Cele_Fire2
+ Name: RWC Celebration Firecracker
+ Type: Usable
+ Weight: 20
+ Script: |
+ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;
+ - Id: 12698
+ AegisName: Old_C_Album_Weapon
+ Name: Weapon Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Container: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum_Weapon,1);
+ - Id: 12699
+ AegisName: Tikbalang_Belt
+ Name: Tikbalang Harness
+ Type: Usable
+ Buy: 20
+ Weight: 50
+ Flags:
+ BuyingStore: true
+ Script: |
+ pet 2313;
+ - Id: 12700
+ AegisName: Insideout_Shirt
+ Name: Inside-out Shirt
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ warp "malaya",242,211;
+ - Id: 12701
+ AegisName: Old_Blue_Box_F
+ Name: Old Blue Box
+ Type: Usable
+ Weight: 200
+ - Id: 12702
+ AegisName: Old_Bleu_Box
+ Name: Old Navy Box
+ Type: Usable
+ Weight: 200
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_BleuBox,1);
+ getrandgroupitem(IG_BleuBox,1);
+ - Id: 12703
+ AegisName: Holy_Egg_2
+ Name: Holy Egg
+ Type: Usable
+ Weight: 50
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Holy_Egg_2,1);
+ - Id: 12704
+ AegisName: Elixir_Of_Life
+ Name: Elixir of Life
+ Type: Healing
+ Weight: 10
+ EquipLevelMin: 85
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 100,0;
+ - Id: 12705
+ AegisName: Noble_Nameplate
+ Name: Noble Nameplate
+ Type: Usable
+ Weight: 100
+ EquipLevelMin: 90
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,100;
+ - Id: 12706
+ AegisName: Lucky_Cookie01
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_GLORIA",5;
+ - Id: 12707
+ AegisName: Lucky_Cookie02
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_MAGNIFICAT",1;
+ - Id: 12708
+ AegisName: Lucky_Cookie03
+ Name: Lucky Cookie
+ Type: Delayconsume
+ Weight: 100
+ NoUse:
+ Override: 100
+ Sitting: true
+ Script: |
+ itemskill "PR_IMPOSITIO",3;
+ - Id: 12709
+ AegisName: Guyak_Candy
+ Name: Guyak Candy
+ Type: Healing
+ Weight: 150
+ Script: |
+ percentheal 30,30;
+ - Id: 12710
+ AegisName: Guyak_Pudding
+ Name: Guyak Pudding
+ Type: Usable
+ Weight: 200
+ Script: |
+ sc_start SC_SPEEDUP1,300000,50;
+ - Id: 12711
+ AegisName: Pretzel
+ Name: Pretzel
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Script: |
+ itemheal rand(50,90),0;
+ - Id: 12712
+ AegisName: Green_Beer
+ Name: Green Beer
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ Script: |
+ percentheal 0,50;
+ - Id: 12713
+ AegisName: Monster_Extract
+ Name: Monster Extract
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12714
+ AegisName: Easter_Scroll
+ Name: Easter Scroll
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_Easter_Scroll,1);
+ - Id: 12715
+ AegisName: Black_Treasure_Box
+ Name: Black Treasure Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12716
+ AegisName: Indian_Rice_Cake
+ Name: Indian Rice Cake
+ Type: Usable
+ Weight: 10
+ - Id: 12717
+ AegisName: Poison_Paralysis
+ Name: Paralyze
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12718
+ AegisName: Poison_Leech
+ Name: Leech End
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12719
+ AegisName: Poison_Oblivion
+ Name: Oblivion Curse
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12720
+ AegisName: Poison_Contamination
+ Name: Disheart
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12721
+ AegisName: Poison_Numb
+ Name: Toxin
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12722
+ AegisName: Poison_Fever
+ Name: Pyrexia
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12723
+ AegisName: Poison_Laughing
+ Name: Magic Mushroom
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12724
+ AegisName: Poison_Fatigue
+ Name: Venom Bleed
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Flags:
+ BuyingStore: true
+ - Id: 12725
+ AegisName: Runstone_Nosiege
+ Name: Nauthiz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ Delay:
+ Duration: 120000
+ Status: Reuse_Refresh
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_REFRESH",1;
+ - Id: 12726
+ AegisName: Runstone_Rhydo
+ Name: Raido Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ Delay:
+ Duration: 30000
+ Status: Reuse_Crushstrike
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;
+ - Id: 12727
+ AegisName: Runstone_Verkana
+ Name: Berkana Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ Delay:
+ Duration: 60000
+ Status: Reuse_Millenniumshield
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;
+ - Id: 12728
+ AegisName: Runstone_Isia
+ Name: Isa Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;
+ - Id: 12729
+ AegisName: Runstone_Asir
+ Name: Othila Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;
+ - Id: 12730
+ AegisName: Runstone_Urj
+ Name: Uruz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_ABUNDANCE",1;
+ - Id: 12731
+ AegisName: Runstone_Turisus
+ Name: Thurisaz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;
+ - Id: 12732
+ AegisName: Runstone_Pertz
+ Name: Wyrd Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ Delay:
+ Duration: 1000
+ Status: Reuse_Stormblast
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_STORMBLAST",1;
+ - Id: 12733
+ AegisName: Runstone_Hagalas
+ Name: Hagalaz Rune
+ Type: Usable
+ Buy: 100
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
+ unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;
+ - Id: 12734
+ AegisName: Runstone_Quality
+ Name: Luxurious Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 8;
+ - Id: 12735
+ AegisName: Runstone_Ancient
+ Name: Ancient Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 30;
+ - Id: 12736
+ AegisName: Runstone_Mystic
+ Name: Mystic Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 60;
+ - Id: 12737
+ AegisName: Runstone_Ordinary
+ Name: General Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 4;
+ - Id: 12738
+ AegisName: Runstone_Rare
+ Name: Rare Rune
+ Type: Healing
+ Buy: 2
+ Weight: 100
+ Jobs:
+ Knight: true
+ Classes:
+ All_Third: true
+ Flags:
+ BuyingStore: true
+ Script: |
+ makerune 15;
+ - Id: 12739
+ AegisName: Snow_Flower
+ Name: Snow Flowers
+ Type: Usable
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ percentheal 10,10;
+ - Id: 12740
+ AegisName: Inc_Str_Scroll
+ Name: Amplification Scroll
+ Type: Usable
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL;
+ - Id: 12742
+ AegisName: Valentine_Gift_Box1
+ Name: Valentine Gift Box
+ Type: Usable
+ Script: |
+ getitem 7946,1;
+ - Id: 12743
+ AegisName: Valentine_Gift_Box2
+ Name: Valentine Gift Box
+ Type: Usable
+ Script: |
+ getitem 7947,1;
+ - Id: 12744
+ AegisName: Chocotate_Box
+ Name: Chocolate Box
+ Type: Usable
+ Script: |
+ getitem 558,1;
+ - Id: 12745
+ AegisName: Skull_Scroll
+ Name: Skull Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12746
+ AegisName: Destruction_Scroll
+ Name: Destruction Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12747
+ AegisName: Royal_Scroll
+ Name: Royal Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12748
+ AegisName: Immune_Scroll
+ Name: Immune Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12749
+ AegisName: Mystic_Scroll
+ Name: Mystic Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12750
+ AegisName: Battle_Scroll
+ Name: Battle Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12751
+ AegisName: Armor_Scroll
+ Name: Armor Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12752
+ AegisName: Prayer_Scroll
+ Name: Prayer Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12753
+ AegisName: Soul_Scroll
+ Name: Soul Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12754
+ AegisName: New_Year_Bun
+ Name: Chinese Pastel
+ Type: Usable
+ Weight: 10
+ Script: |
+ percentheal 50,50;
+ - Id: 12755
+ AegisName: Traditional_Firecrack
+ Name: Chinese Fireworks
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Script: |
+ specialeffect2 EF_POK_JAP;
+ /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */
+ - Id: 12756
+ AegisName: New_Gift_Envelope
+ Name: Chinese New Year Envelope
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_New_Gift_Envelope);*/
+ getrandgroupitem(IG_New_Gift_Envelope,0);
+ - Id: 12757
+ AegisName: Loyal_Ring1_Box
+ Name: Loyal Ring1 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12758
+ AegisName: Loyal_Ring2_Box
+ Name: Loyal Ring2 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12759
+ AegisName: Loyal_Ring3_Box
+ Name: Loyal Ring3 Box
+ Type: Usable
+ Buy: 10
+ - Id: 12760
+ AegisName: Bubble_Gum_Green
+ Name: Bubble Gum Green
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ sc_start SC_INCSTR,1200000,10;
+ - Id: 12761
+ AegisName: Bubble_Gum_Yellow
+ Name: Bubble Gum Yellow
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ sc_start SC_INCINT,1200000,10;
+ - Id: 12762
+ AegisName: Bubble_Gum_Orange
+ Name: Bubble Gum Orange
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ sc_start SC_INCDEX,1200000,10;
+ - Id: 12763
+ AegisName: Bubble_Gum_Red
+ Name: Bubble Gum Red
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ sc_start SC_INCAGI,1200000,10;
+ - Id: 12764
+ AegisName: Fools_Day_Box_Tw
+ Name: Fools Day Box Tw
+ Type: Usable
+ - Id: 12765
+ AegisName: Summer_Knight_Box
+ Name: Summer Knight Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ - Id: 12766
+ AegisName: Reward_Job_BM25
+ Name: Reward Job BM25
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12767
+ AegisName: Passion_FB_Hat_Box
+ Name: Passion FB Hat Box
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Passion_FB_Hat_Box);*/
+ rentitem 5856,3600;
+ - Id: 12768
+ AegisName: Cool_FB_Hat_Box
+ Name: Cool FB Hat Box
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Cool_FB_Hat_Box);*/
+ rentitem 5857,3600;
+ - Id: 12769
+ AegisName: Victory_FB_Hat_Box
+ Name: Victory FB Hat Box
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Victory_FB_Hat_Box);*/
+ rentitem 5858,3600;
+ - Id: 12770
+ AegisName: Glory_FB_Hat_Box
+ Name: Glory FB Hat Box
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Glory_FB_Hat_Box);*/
+ rentitem 5859,86400;
+ - Id: 12771
+ AegisName: Passion_Hat_Box2
+ Name: Passion Hat Box2
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Passion_Hat_Box2);*/
+ rentitem 5856,21600;
+ - Id: 12772
+ AegisName: Cool_Hat_Box2
+ Name: Cool Hat Box2
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Cool_Hat_Box2);*/
+ rentitem 5857,21600;
+ - Id: 12773
+ AegisName: Victory_Hat_Box2
+ Name: Victory Hat Box2
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_Victory_Hat_Box2);*/
+ rentitem 5858,21600;
+ - Id: 12774
+ AegisName: Empty_Potion_Bottle
+ Name: Empty Potion Bottle
+ Type: Usable
+ - Id: 12775
+ AegisName: Ancient_Spirit_Agimat
+ Name: Greater Agimat of Ancient Spirit
+ Type: Usable
+ Buy: 20
+ Weight: 600
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_PROVIDENCE;
+ bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200;
+ - Id: 12776
+ AegisName: Agi_Dish20
+ Name: Agi Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12777
+ AegisName: Luk_Dish20
+ Name: Luk Dish20
+ Type: Usable
+ Weight: 10
+ - Id: 12778
+ AegisName: Bapho_Jr_Scroll
+ Name: Bapho Jr Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2325,1800000;
+ - Id: 12779
+ AegisName: Galapago_Scroll
+ Name: Galapago Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2326,1800000;
+ - Id: 12780
+ AegisName: 10M_Zeny_Check
+ Name: 10M Zeny Check
+ Type: Usable
+ - Id: 12781
+ AegisName: 1M_Zeny_Check
+ Name: 1M Zeny Check
+ Type: Usable
+ - Id: 12782
+ AegisName: 100T_Zeny_Check
+ Name: 100T Zeny Check
+ Type: Usable
+ - Id: 12783
+ AegisName: 10000_Zeny_Check
+ Name: 10000 Zeny Check
+ Type: Usable
+ - Id: 12784
+ AegisName: 1000_Zeny_Check
+ Name: 1000 Zeny Check
+ Type: Usable
+ - Id: 12785
+ AegisName: Dragon_Egg_Scroll
+ Name: Dragon Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12786
+ AegisName: Change_Slot_Card
+ Name: Character Position Change Coupon
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ CharMoves++;
+ - Id: 12787
+ AegisName: Diabolic_Scroll
+ Name: Diabolic Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2342,1800000;
+ - Id: 12788
+ AegisName: No100_Firecracker
+ Name: No100 Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ - Id: 12789
+ AegisName: Juicy_Fruit
+ Name: Juicy Fruit
+ Type: Usable
+ Buy: 2
+ Weight: 100
+ - Id: 12790
+ AegisName: Change_Name_Card
+ Name: Character Name Change Coupon
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ CharRename++;
+ - Id: 12791
+ AegisName: Combat_Pill
+ Name: Combat Pill
+ Type: Usable
+ 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 */
+ - Id: 12792
+ AegisName: P_Combat_Pill
+ Name: P Combat Pill
+ Type: Usable
+ 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;
+ - Id: 12793
+ AegisName: Combat_Pill_Box10
+ Name: Combat Pill Box10
+ Type: Usable
+ Buy: 20
+ Script: |
+ getitem 12791,10;
+ - Id: 12794
+ AegisName: P_Combat_Pill_Box10
+ Name: P Combat Pill Box10
+ Type: Usable
+ Buy: 20
+ Script: |
+ getitem 12792,10;
+ - Id: 12795
+ AegisName: 2011_RWC_Scroll_Kr
+ Name: 2011 RWC Scroll Kr
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12796
+ AegisName: Red_Booster
+ Name: Red Booster
+ Type: Delayconsume
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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";
+ - Id: 12797
+ AegisName: Wish_Maiden_Scroll
+ Name: Wish Maiden Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2344,1800000;
+ - Id: 12798
+ AegisName: Zealotus_Scroll
+ Name: Zealotus Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2345,1800000;
+ - Id: 12799
+ AegisName: PCBang_Coupon_Box5
+ Name: PCBang Coupon Box5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12800
+ AegisName: Ktullanux_Scroll
+ Name: Ktullanux Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2346,1800000;
+ - Id: 12801
+ AegisName: Eddga_Scroll
+ Name: Eddga Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2347,1800000;
+ - Id: 12802
+ AegisName: Time_Guardian_Box
+ Name: Time Guardian Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12803
+ AegisName: Beginner_Kit_Box
+ Name: Beginner Kit Box
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12804
+ AegisName: Cru_Scroll
+ Name: Cru Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12805
+ AegisName: Mystic_Powder
+ Name: Mystic Powder
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12806
+ AegisName: Scaraba_Scroll
+ Name: Scaraba Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2378,1800000;
+ - Id: 12807
+ AegisName: Mercenary_Casting_
+ Name: Mercenary Casting
+ Type: Usable
+ EquipLevelMin: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12809
+ AegisName: Level_Up_Box
+ Name: Level Up Box
+ Type: Usable
+ EquipLevelMin: 120
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12811
+ AegisName: Event_Gift_Box_
+ Name: Event Gift Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Delayconsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_Ecl
+ Script: |
+ itemskill "ECL_SNOWFLIP",1;
+ - Id: 12813
+ AegisName: Peony_Mommy
+ Name: Peony Mamy
+ Type: Delayconsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_Ecl
+ Script: |
+ itemskill "ECL_PEONYMAMY",1;
+ - Id: 12814
+ AegisName: Slapping_Herb
+ Name: Slapping Herb
+ Type: Delayconsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_Ecl
+ Script: |
+ itemskill "ECL_SADAGUI",1;
+ - Id: 12815
+ AegisName: Yggdrasil_Dust
+ Name: Yggdrasil Dust
+ Type: Delayconsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_Ecl
+ Script: |
+ itemskill "ECL_SEQUOIADUST",1;
+ - Id: 12816
+ AegisName: Old_Ore_Box_
+ Name: Old Ore Box
+ Type: Usable
+ EquipLevelMin: 60
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12817
+ AegisName: Old_Card_Album_
+ Name: Old Card Album
+ Type: Usable
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_CardAlbum,1);
+ getitem 12818,1;
+ - Id: 12818
+ AegisName: High_Weapon_Box_
+ Name: High Weapon Box
+ Type: Usable
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getrandgroupitem(IG_Advanced_Weapons_Box,1);
+ getitem 12809,1;
+ - Id: 12819
+ AegisName: Zherlthsh_Tck_Box_
+ Name: Zherlthsh Tck Box
+ Type: Usable
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6184,1;
+ - Id: 12820
+ AegisName: Mao_Guai_Scroll
+ Name: Mao Guai Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2348,1800000;
+ - Id: 12821
+ AegisName: Loli_Ruri_Scroll
+ Name: Loli Ruri Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2349,1800000;
+ - Id: 12822
+ AegisName: Songpyun_Box50
+ Name: Songpyun Box50
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 663,50;
+ - Id: 12823
+ AegisName: Sedora_Scroll
+ Name: Sedora Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2350,1800000;
+ - Id: 12824
+ AegisName: Chepet_Scroll
+ Name: Chepet Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ mercenary_create 2351,1800000;
+ - Id: 12826
+ AegisName: Wind_Type_Scroll
+ Name: Wind Type Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Wind_Type_Scroll);
+ - Id: 12827
+ AegisName: Water_Type_Scroll
+ Name: Water Type Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Water_Type_Scroll);
+ - Id: 12828
+ AegisName: Fire_Type_Scroll
+ Name: Fire Type Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Fire_Type_Scroll);
+ - Id: 12829
+ AegisName: Earth_Type_Scroll
+ Name: Earth Type Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Earth_Type_Scroll);
+ - Id: 12831
+ AegisName: Potion_Box
+ Name: Potion Box
+ Type: Usable
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 545,100;
+ getitem 546,100;
+ getitem 547,100;
+ getitem 505,100;
+ - Id: 12834
+ AegisName: Undead_Egg
+ Name: Undead Egg
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12835
+ AegisName: Girls_Heart
+ Name: Girls Heart
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12837
+ AegisName: Wooden_Treasure_Box
+ Name: Wooden Treasure Box
+ Type: Usable
+ - Id: 12838
+ AegisName: Iron_Treasure_Box
+ Name: Iron Treasure Box
+ Type: Usable
+ EquipLevelMin: 10
+ - Id: 12839
+ AegisName: bronze_Treasure_Box
+ Name: bronze Treasure Box
+ Type: Usable
+ EquipLevelMin: 20
+ - Id: 12840
+ AegisName: Silver_Treasure_Box
+ Name: Silver Treasure Box
+ Type: Usable
+ EquipLevelMin: 30
+ - Id: 12841
+ AegisName: Golden_Treasure_Box
+ Name: Golden Treasure Box
+ Type: Usable
+ EquipLevelMin: 40
+ - Id: 12842
+ AegisName: Platinum_Treasure_Box
+ Name: Platinum Treasure Box
+ Type: Usable
+ EquipLevelMin: 50
+ - Id: 12843
+ AegisName: Pearl_Treasure_Box
+ Name: Pearl Treasure Box
+ Type: Usable
+ EquipLevelMin: 60
+ - Id: 12844
+ AegisName: Diamond_Treasure_Box
+ Name: Diamond Treasure Box
+ Type: Usable
+ EquipLevelMin: 70
+ - Id: 12845
+ AegisName: WOB_Amatsu
+ Name: Amatsu_Butterfly_Wing
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "iz_ng01",26,57;
+ - Id: 12846
+ AegisName: Unripe_Apple2
+ Name: Little Unripe Apple
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ Script: |
+ pet 2398;
+ - Id: 12847
+ AegisName: Old_Equipment_Box
+ Name: Old Equipment Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12848
+ AegisName: Falcon_Pipe
+ Name: Falcon Flute
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ if (getskilllv("HT_FALCON")) {
+ if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider))
+ setfalcon (!checkfalcon());
+ }
+ - Id: 12849
+ AegisName: Combination_Kit
+ Name: Combination Kit
+ Type: Usable
+ Buy: 40
+ Weight: 10
+ Script: |
+ if (BaseLevel < 20)
+ cooking 30;
+ else
+ cooking 11;
+ - Id: 12850
+ AegisName: Heaven_Scroll
+ Name: Heaven Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Heaven_Scroll);
+ - Id: 12851
+ AegisName: Vocation_Scroll
+ Name: Vocation Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Vocation_Scroll);
+ - Id: 12852
+ AegisName: Wisdom_Scroll
+ Name: Wisdom Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Wisdom_Scroll);
+ - Id: 12853
+ AegisName: Patron_Scroll
+ Name: Patron Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Patron_Scroll);
+ - Id: 12860
+ AegisName: Mommy_Day_Cake
+ Name: Mommy Day Cake
+ Type: Usable
+ Weight: 200
+ Script: |
+ 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
+ Type: Usable
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ monster "this",-1,-1,"--ja--",rand(1324,1363),1,"";
+ - Id: 12873
+ AegisName: TE_Potion_Box
+ Name: TE Potion Box
+ Type: Cash
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem(11558,10);
+ - Id: 12874
+ AegisName: Frost_Giant_Blood
+ Name: Frost Giant Blood
+ Type: Usable
+ Weight: 100
+ Script: |
+ 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;
+ - Id: 12876
+ AegisName: Elf_Tear_Stun
+ Name: Elf Tear Stun
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_STUN,10000,3000,0;
+ - Id: 12877
+ AegisName: Elf_Tear_Stone_Curse
+ Name: Elf Tear Stone Curse
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_STONE,10000,3000,0;
+ - Id: 12878
+ AegisName: Elf_Tear_Freezing
+ Name: Elf Tear Freezing
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_FREEZ,10000,3000,0;
+ - Id: 12879
+ AegisName: Elf_Tear_Sleep
+ Name: Elf Tear Sleep
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_SLEEP,10000,3000,0;
+ - Id: 12880
+ AegisName: Elf_Tear_Curse
+ Name: Elf Tear Curse
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_CURSE,10000,3000,0;
+ - Id: 12881
+ AegisName: Elf_Tear_Silence
+ Name: Elf Tear Silence
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_SILENCE,10000,3000,0;
+ - Id: 12882
+ AegisName: Elf_Tear_Blind
+ Name: Elf Tear Blind
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start2 SC_GVG_BLIND,10000,3000,0;
+ - Id: 12883
+ AegisName: Almighty
+ Name: Almighty
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_BASH3D;
+ sc_start SC_2011RWC_SCROLL,1800000,10;
+ - Id: 12884
+ AegisName: Infinite_Concentration_Potion
+ Name: Infinite Concentration Potion
+ Type: Delayconsume
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,4;
+ - Id: 12885
+ AegisName: Infinite_Awakening_Potion
+ Name: Infinite Awakening Potion
+ Type: Delayconsume
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,6;
+ - Id: 12886
+ AegisName: Infinite_Berserk_Potion
+ Name: Infinite Berserk Potion
+ Type: Delayconsume
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,9;
+ - Id: 12887
+ AegisName: C_Wing_Of_Fly
+ Name: Infinite Flywing
+ Type: Usable
+ Flags:
+ NoConsume: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 12888
+ AegisName: Siege_Kit_Box
+ Name: Siege Kit Box
+ Type: Cash
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 12889
+ AegisName: Weapon_Box_Spear
+ Name: Weapon Box(Spear)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12890
+ AegisName: Weapon_Box_Mace
+ Name: Weapon Box(Mace)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12891
+ AegisName: Weapon_Box_Dagger
+ Name: Weapon Box(Dagger)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12892
+ AegisName: Weapon_Box_Axe
+ Name: Weapon Box(Axe)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12893
+ AegisName: Weapon_Box_Bow
+ Name: Weapon Box(Bow)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12894
+ AegisName: Weapon_Box_Sword
+ Name: Weapon Box(Sword)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12895
+ AegisName: Weapon_Box_Knuckle
+ Name: Weapon Box(Knuckle)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12896
+ AegisName: Weapon_Box_Book
+ Name: Weapon Box(Book)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12897
+ AegisName: Weapon_Box_Guitar
+ Name: Weapon Box(Guitar)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12898
+ AegisName: Weapon_Box_Whip
+ Name: Weapon Box(Whip)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12899
+ AegisName: Weapon_Box_Staff
+ Name: Weapon Box(Staff)
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ - Id: 12900
+ AegisName: Battle_Manual_Box
+ Name: Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,10;
+ - Id: 12901
+ AegisName: Insurance_Package
+ Name: Insurance Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,10;
+ - Id: 12902
+ AegisName: Bubble_Gum_Box
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,10;
+ - Id: 12903
+ AegisName: Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,10;
+ - Id: 12904
+ AegisName: Agi_Dish_Box
+ Name: Steamed Scorpion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,10;
+ - Id: 12905
+ AegisName: Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,10;
+ - Id: 12906
+ AegisName: Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,10;
+ - Id: 12907
+ AegisName: Luk_Dish_Box
+ Name: Nine Tail Dish Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,10;
+ - Id: 12908
+ AegisName: Vit_Dish_Box
+ Name: Stew Of Immortality Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,10;
+ - Id: 12909
+ AegisName: Kafra_Card_Box
+ Name: Kafra Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,10;
+ - Id: 12910
+ AegisName: Giant_Fly_Wing_Box
+ Name: Giant Fly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,10;
+ - Id: 12911
+ AegisName: Neuralizer_Box
+ Name: Neuralizer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12213,1;
+ - Id: 12912
+ AegisName: Convex_Mirror_Box
+ Name: Convex Mirror Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,10;
+ - Id: 12913
+ AegisName: Blessing_10_Scroll_Box
+ Name: Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,10;
+ - Id: 12914
+ AegisName: Inc_Agi_10_Scroll_Box
+ Name: Increase AGI 10 scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,10;
+ - Id: 12915
+ AegisName: Aspersio_5_Scroll_Box
+ Name: Aspersio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Aspersio_5_Scroll_Box);
+ - Id: 12916
+ AegisName: Assumptio_5_Scroll_Box
+ Name: Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,10;
+ - Id: 12917
+ AegisName: Wind_Walk_10_Scroll_Box
+ Name: Wind Walk 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,10;
+ - Id: 12918
+ AegisName: Adrenaline_Scroll_Box
+ Name: Adrenaline 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,10;
+ - Id: 12919
+ AegisName: Megaphone_Box
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,10;
+ - Id: 12920
+ AegisName: Enriched_Elunium_Box
+ Name: Enriched Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,10;
+ - Id: 12921
+ AegisName: Enriched_Oridecon_Box
+ Name: Enriched Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,10;
+ - Id: 12922
+ AegisName: Token_Of_Siegfried_Box
+ Name: Token of Siegfried Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,10;
+ - Id: 12923
+ AegisName: Pet_Egg_Scroll_Box1
+ Name: December Lucky Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box1);
+ - Id: 12924
+ AegisName: Pet_Egg_Scroll_Box2
+ Name: Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box2);
+ - Id: 12925
+ AegisName: Pet_Egg_Scroll1
+ Name: Kafra Item Mall Prize Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll1);
+ - Id: 12926
+ AegisName: Pet_Egg_Scroll2
+ Name: December Lucky Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll2);
+ - Id: 12927
+ AegisName: J_Aspersio_5_Scroll_Box
+ Name: Aspersio Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12928,10;
+ - Id: 12928
+ AegisName: J_Aspersio_5_Scroll
+ Name: Sacred Scroll
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "PR_ASPERSIO",5;
+ - Id: 12929
+ AegisName: Pet_Egg_Scroll_Box3
+ Name: Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box3);
+ - Id: 12930
+ AegisName: Pet_Egg_Scroll_Box4
+ Name: Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box4);
+ - Id: 12931
+ AegisName: Pet_Egg_Scroll_Box5
+ Name: Pet Egg Box 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box5);
+ - Id: 12932
+ AegisName: Pet_Egg_Scroll3
+ Name: Episode 13.2 Key Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll3);
+ - Id: 12933
+ AegisName: Pet_Egg_Scroll4
+ Name: Summer Hat Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll4);
+ - Id: 12934
+ AegisName: Pet_Egg_Scroll5
+ Name: Pet Egg Scroll5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll5);
+ - Id: 12935
+ AegisName: Infiltrator_Box
+ Name: Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Infiltrator_Box);
+ - Id: 12936
+ AegisName: Muramasa_Box
+ Name: Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Muramasa_Box);
+ - Id: 12937
+ AegisName: Excalibur_Box
+ Name: Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Excalibur_Box);
+ - Id: 12938
+ AegisName: Combat_Knife_Box
+ Name: Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Combat_Knife_Box);
+ - Id: 12939
+ AegisName: Counter_Dagger_Box
+ Name: Dagger of Counter Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Counter_Dagger_Box);
+ - Id: 12940
+ AegisName: Kaiser_Knuckle_Box
+ Name: Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Kaiser_Knuckle_Box);
+ - Id: 12941
+ AegisName: Pole_Axe_Box
+ Name: Poll Axe Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pole_Axe_Box);
+ - Id: 12942
+ AegisName: Mighty_Staff_Box
+ Name: Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Mighty_Staff_Box);
+ - Id: 12943
+ AegisName: Right_Epsilon_Box
+ Name: Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Right_Epsilon_Box);
+ - Id: 12944
+ AegisName: Balistar_Box
+ Name: Ballista Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Balistar_Box);
+ - Id: 12945
+ AegisName: Diary_Of_Great_Sage_Box
+ Name: Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Diary_Of_Great_Sage_Box);
+ - Id: 12946
+ AegisName: Asura_Box
+ Name: Asura Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Asura_Box);
+ - Id: 12947
+ AegisName: Apple_Of_Archer_Box
+ Name: Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Apple_Of_Archer_Box);
+ - Id: 12948
+ AegisName: Bunny_Band_Box
+ Name: Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Bunny_Band_Box);
+ - Id: 12949
+ AegisName: Sahkkat_Box
+ Name: Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Sahkkat_Box);
+ - Id: 12950
+ AegisName: Lord_Circlet_Box
+ Name: Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lord_Circlet_Box);
+ - Id: 12951
+ AegisName: Elven_Ears_Box
+ Name: Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Elven_Ears_Box);
+ - Id: 12952
+ AegisName: Steel_Flower_Box
+ Name: Steel Flower Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Steel_Flower_Box);
+ - Id: 12953
+ AegisName: Critical_Ring_Box
+ Name: Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Critical_Ring_Box);
+ - Id: 12954
+ AegisName: Earring_Box
+ Name: Earring Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Earring_Box);
+ - Id: 12955
+ AegisName: Ring_Box
+ Name: Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Ring_Box);
+ - Id: 12956
+ AegisName: Necklace_Box
+ Name: Necklace Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Necklace_Box);
+ - Id: 12957
+ AegisName: Glove_Box
+ Name: Glove Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Glove_Box);
+ - Id: 12958
+ AegisName: Brooch_Box
+ Name: Brooch Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Brooch_Box);
+ - Id: 12959
+ AegisName: Rosary_Box
+ Name: Rosary Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Rosary_Box);
+ - Id: 12960
+ AegisName: Safety_Ring_Box
+ Name: Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Safety_Ring_Box);
+ - Id: 12961
+ AegisName: Vesper_Core01_Box
+ Name: Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vesper_Core01_Box);
+ - Id: 12962
+ AegisName: Vesper_Core02_Box
+ Name: Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vesper_Core02_Box);
+ - Id: 12963
+ AegisName: Vesper_Core03_Box
+ Name: Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vesper_Core03_Box);
+ - Id: 12964
+ AegisName: Vesper_Core04_Box
+ Name: Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vesper_Core04_Box);
+ - Id: 12965
+ AegisName: Emergency_Box1
+ Name: Emergency Level 1 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12968,1;
+ - Id: 12966
+ AegisName: Emergency_Box2
+ Name: Emergency Level 2 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12969,1;
+ - Id: 12967
+ AegisName: Emergency_Box3
+ Name: Emergency Level 3 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12970,1;
+ - Id: 12968
+ AegisName: Emergency_Scroll1
+ Name: Emergency Level 1 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;
+ - Id: 12969
+ AegisName: Emergency_Scroll2
+ Name: Emergency Level 2 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;
+ - Id: 12970
+ AegisName: Emergency_Scroll3
+ Name: Emergency Level 3 Scroll
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_Recall
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;
+ - Id: 12971
+ AegisName: Teleport_Box1
+ Name: Teleport Scroll Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12977,10;
+ - Id: 12972
+ AegisName: Teleport_Box2
+ Name: Teleport Scroll Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12978,10;
+ - Id: 12973
+ AegisName: Teleport_Box3
+ Name: Teleport Scroll Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12979,10;
+ - Id: 12974
+ AegisName: Teleport_Box4
+ Name: Teleport Scroll Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12980,10;
+ - Id: 12975
+ AegisName: Teleport_Box5
+ Name: Teleport Scroll Box 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12981,10;
+ - Id: 12976
+ AegisName: Teleport_Box6
+ Name: Teleport Scroll Box 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12982,10;
+ - Id: 12977
+ AegisName: Teleport_Scroll1
+ Name: Teleport Scroll 1
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",1;
+ - Id: 12978
+ AegisName: Teleport_Scroll2
+ Name: Teleport Scroll 2
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",2;
+ - Id: 12979
+ AegisName: Teleport_Scroll3
+ Name: Teleport Scroll 3
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",3;
+ - Id: 12980
+ AegisName: Teleport_Scroll4
+ Name: Teleport Scroll 4
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",4;
+ - Id: 12981
+ AegisName: Teleport_Scroll5
+ Name: Teleport Scroll 5
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",5;
+ - Id: 12982
+ AegisName: Teleport_Scroll6
+ Name: Teleport Scroll 6
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashTele",6;
+ - Id: 12983
+ AegisName: Pet_Egg_Scroll_Box6
+ Name: Pet Egg Scroll Box 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box6);
+ - Id: 12984
+ AegisName: Pet_Egg_Scroll_Box7
+ Name: Pet Egg Scroll Box 7
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box7);
+ - Id: 12985
+ AegisName: Pet_Egg_Scroll_Box8
+ Name: Pet Egg Scroll Box 8
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box8);
+ - Id: 12986
+ AegisName: Pet_Egg_Scroll_Box9
+ Name: Adventurer Pack Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box9);
+ - Id: 12987
+ AegisName: Pet_Egg_Scroll_Box10
+ Name: Pet Egg Scroll Box 10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box10);
+ - Id: 12988
+ AegisName: Pet_Egg_Scroll_Box11
+ Name: Pet Egg Scroll Box 11
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_Box11);
+ - Id: 12989
+ AegisName: Pet_Egg_Scroll6
+ Name: Pet Egg Scroll 6
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll6);
+ - Id: 12990
+ AegisName: Pet_Egg_Scroll7
+ Name: Pet Egg Scroll 7
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll7);
+ - Id: 12991
+ AegisName: Pet_Egg_Scroll8
+ Name: Party Hard Pack
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll8);
+ - Id: 12992
+ AegisName: Pet_Egg_Scroll9
+ Name: Adventurer Pack
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll9);
+ - Id: 12993
+ AegisName: Pet_Egg_Scroll10
+ Name: Pet Egg Scroll 10
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll10);
+ - Id: 12994
+ AegisName: Pet_Egg_Scroll11
+ Name: Pet Egg Scroll 11
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll11);
+ - Id: 12995
+ AegisName: White_Herb_Box
+ Name: White Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 509,15;
+ - Id: 12996
+ AegisName: Blue_Herb_Box
+ Name: Blue Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 510,15;
+ - Id: 12997
+ AegisName: Elunium_Box
+ Name: Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 985,5;
+ - Id: 12998
+ AegisName: Oridecon_Box
+ Name: Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 984,5;
+ - Id: 12999
+ AegisName: Branch_Of_Dead_Tree_Box
+ Name: Dead Branch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 604,3;
+ - Id: 13500
+ AegisName: Insurance60_Package
+ Name: Life Insurrance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14500,10;
+ - Id: 13501
+ AegisName: Assorted_Scroll_Box
+ Name: Experience Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13502
+ AegisName: Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5279,604800;
+ - Id: 13503
+ AegisName: Magestic_Goat_Box
+ Name: Baphomet Horns Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5280,604800;
+ - Id: 13504
+ AegisName: Deviruchi_Cap_Box
+ Name: Refined Deviruchi Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5281,604800;
+ - Id: 13505
+ AegisName: Executioner_Box
+ Name: Executioner Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1174,604800;
+ - Id: 13506
+ AegisName: Brood_Axe_Box
+ Name: Refined Bloody Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1373,604800;
+ - Id: 13507
+ AegisName: Tomahawk_Box
+ Name: Tomahawk Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1374,604800;
+ - Id: 13508
+ AegisName: Bow_Of_Rudra_Box
+ Name: Rudra Bow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1729,604800;
+ - Id: 13509
+ AegisName: Cutlas_Box
+ Name: Cutlus Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13402,604800;
+ - Id: 13510
+ AegisName: Solar_Sword_Box
+ Name: Solar Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13403,604800;
+ - Id: 13511
+ AegisName: Sword_Breaker_Box
+ Name: Refined Swordbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13024,604800;
+ - Id: 13512
+ AegisName: Mail_Breaker_Box
+ Name: Refined Mailbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13025,604800;
+ - Id: 13513
+ AegisName: Moonlight_Sword_Box
+ Name: Moonlight Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13026,604800;
+ - Id: 13514
+ AegisName: Spanner_Box
+ Name: Wrench Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1534,604800;
+ - Id: 13515
+ AegisName: Grape_Box
+ Name: Grape Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 514,10;
+ - Id: 13516
+ AegisName: Royal_Jelly_Box
+ Name: Royal Jelly Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 526,5;
+ - Id: 13517
+ AegisName: Yggdrasilberry_Box
+ Name: Yggdrasil Berry Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 607,3;
+ - Id: 13518
+ AegisName: Weapon_Card_Scroll_Box
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13558,1;
+ - Id: 13519
+ AegisName: Armor_Card_Scroll_Box
+ Name: Armor Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13559,1;
+ - Id: 13520
+ AegisName: Helmet_Card_Scroll_Box
+ Name: Helmet Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13560,1;
+ - Id: 13521
+ AegisName: Hood_Card_Scroll_Box
+ Name: Garment Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13561,1;
+ - Id: 13522
+ AegisName: Hood_Card_Scroll_Box2
+ Name: Shield Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13562,1;
+ - Id: 13523
+ AegisName: Shoes_Card_Scroll_Box
+ Name: Shoes Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13563,1;
+ - Id: 13524
+ AegisName: Accy_Card_Scroll_Box
+ Name: Accessory Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13564,1;
+ - Id: 13525
+ AegisName: Zeny_Scroll_Box
+ Name: Zeny Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14508,1;
+ - Id: 13526
+ AegisName: Pet_Egg_Scroll_Box1_
+ Name: Pet Egg Scroll Box 12
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12925,30;
+ - Id: 13527
+ AegisName: Pet_Egg_Scroll_Box2_
+ Name: Pet Egg Scroll Box 13
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12926,30;
+ - Id: 13528
+ AegisName: Pet_Egg_Scroll_Box3_
+ Name: Pet Egg Scroll Box 14
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12932,30;
+ - Id: 13529
+ AegisName: Pet_Egg_Scroll_Box4_
+ Name: Pet Egg Scroll Box 15
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12933,30;
+ - Id: 13530
+ AegisName: Pet_Egg_Scroll_Box5_
+ Name: Pet Egg Scroll Box 16
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12934,30;
+ - Id: 13531
+ AegisName: Light_Red_Pot_Box
+ Name: Light Red Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 598,50;
+ - Id: 13532
+ AegisName: Light_Orange_Pot_Box
+ Name: Light Orange Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 599,50;
+ - Id: 13533
+ AegisName: Light_Yellow_Pot_Box
+ Name: Light Yellow Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11500,50;
+ - Id: 13534
+ AegisName: Light_White_Pot_Box
+ Name: Light White Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11501,50;
+ - Id: 13535
+ AegisName: Light_Center_Pot_Box
+ Name: Light Concentration Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14509,20;
+ - Id: 13536
+ AegisName: Light_Awakening_Pot_Box
+ Name: Light Awakening Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14510,20;
+ - Id: 13537
+ AegisName: Light_Berserk_Pot_Box
+ Name: Light Berserk Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14511,20;
+ - Id: 13538
+ AegisName: Meteor_10_Scroll_Box
+ Name: Meteor Storm Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14512,10;
+ - Id: 13539
+ AegisName: Storm_10_Scroll_Box
+ Name: Storm Gust Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14513,10;
+ - Id: 13540
+ AegisName: Vermilion_10_Scroll_Box
+ Name: Lord of Vermilion Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14514,10;
+ - Id: 13541
+ AegisName: Lex_Aeterna_Scroll_Box
+ Name: Lex Aeterna Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14515,10;
+ - Id: 13542
+ AegisName: Magnificat_5_Scroll_Box
+ Name: Magnificat Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14516,10;
+ - Id: 13543
+ AegisName: CP_Helm_Scroll_Box
+ Name: Chemical Protection Helm Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_CP_Helm_Scroll_Box);
+ - Id: 13544
+ AegisName: CP_Shield_Scroll_Box
+ Name: Chemical Protection Shield Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_CP_Shield_Scroll_Box);
+ - Id: 13545
+ AegisName: CP_Armor_Scroll_Box
+ Name: Chemical Protection Armor Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_CP_Armor_Scroll_Box);
+ - Id: 13546
+ AegisName: CP_Weapon_Scroll_Box
+ Name: Chemical Protection Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_CP_Weapon_Scroll_Box);
+ - Id: 13547
+ AegisName: Repair_Scroll_Box
+ Name: Repair Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Repair_Scroll_Box);
+ - Id: 13548
+ AegisName: Big_Bun_Box
+ Name: Big Bun Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14522,10;
+ - Id: 13549
+ AegisName: Pill__Box
+ Name: Pill Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14523,10;
+ - Id: 13550
+ AegisName: Superb_Fish_Slice_Box
+ Name: Fish Slice Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14524,10;
+ - Id: 13551
+ AegisName: Chewy_Ricecake_Box
+ Name: Chewy Ricecake Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14525,10;
+ - Id: 13552
+ AegisName: Oriental_Pastry_Box
+ Name: Pastry Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14526,10;
+ - Id: 13553
+ AegisName: Dun_Tele_Scroll1_Box
+ Name: Dungeon Teleport Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,5;
+ - Id: 13554
+ AegisName: Weapon_Card_Scroll_Box2
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13565,1;
+ - Id: 13555
+ AegisName: Weapon_Card_Scroll_Box3
+ Name: Weapon Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13566,1;
+ - Id: 13556
+ AegisName: Armor_Card_Scroll_Box2
+ Name: Armor Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13567,1;
+ - Id: 13557
+ AegisName: Accy_Card_Scroll_Box2
+ Name: Accessory Card Pet Egg Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13568,1;
+ - Id: 13558
+ AegisName: Weapon_Card_Scroll
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13559
+ AegisName: Armor_Card_Scroll
+ Name: Armor Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13560
+ AegisName: Helmet_Card_Scroll
+ Name: Helmet Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13561
+ AegisName: Hood_Card_Scroll
+ Name: Garment Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13562
+ AegisName: Hood_Card_Scroll2
+ Name: Shield Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13563
+ AegisName: Shoes_Card_Scroll
+ Name: Shoes Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13564
+ AegisName: Accy_Card_Scroll
+ Name: Accessory Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13565
+ AegisName: Weapon_Card_Scroll2
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13566
+ AegisName: Weapon_Card_Scroll3
+ Name: Weapon Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13567
+ AegisName: Armor_Card_Scroll2
+ Name: Armor Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13568
+ AegisName: Accy_Card_Scroll2
+ Name: Accessory Card Pet Egg Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13569
+ AegisName: PVP_Tele_Scroll_Box
+ Name: PVP Teleport Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14528,10;
+ - Id: 13570
+ AegisName: Giant_Fly_Wing_Box50
+ Name: Giant Fly Wing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,50;
+ - Id: 13571
+ AegisName: Giant_Fly_Wing_Box100
+ Name: Giant Fly Wing 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,100;
+ - Id: 13572
+ AegisName: Dex_Dish_Box30
+ Name: Hwergelmir's Tonic 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,30;
+ - Id: 13573
+ AegisName: Dex_Dish_Box50
+ Name: Hwergelmir's Tonic 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,50;
+ - Id: 13574
+ AegisName: Luk_Dish_Box30
+ Name: Nine Tail Dish 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,30;
+ - Id: 13575
+ AegisName: Luk_Dish_Box50
+ Name: Nine Tail Dish 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,50;
+ - Id: 13576
+ AegisName: Inc_Agi_10_Box30
+ Name: Increase Agility Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,30;
+ - Id: 13577
+ AegisName: Inc_Agi_10_Box50
+ Name: Increase Agility Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,50;
+ - Id: 13578
+ AegisName: Vit_Dish_Box30
+ Name: Stew of Immortality 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,30;
+ - Id: 13579
+ AegisName: Vit_Dish_Box50
+ Name: Stew of Immortality 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,50;
+ - Id: 13580
+ AegisName: Insurance_Package30
+ Name: Life Insurrance 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,30;
+ - Id: 13581
+ AegisName: Insurance_Package50
+ Name: Life Insurrance 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,50;
+ - Id: 13582
+ AegisName: Convex_Mirror_Box5
+ Name: Convex Mirror 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,5;
+ - Id: 13583
+ AegisName: Convex_Mirror_Box30
+ Name: Convex Mirror 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,30;
+ - Id: 13584
+ AegisName: Blessing10_Box30
+ Name: Blessing Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,30;
+ - Id: 13585
+ AegisName: Blessing10_Box50
+ Name: Blessing Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,50;
+ - Id: 13586
+ AegisName: Adrenaline10_Box30
+ Name: Adrenaline Rush Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,30;
+ - Id: 13587
+ AegisName: Adrenaline10_Box50
+ Name: Adrenaline Rush Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,50;
+ - Id: 13588
+ AegisName: Assumptio_5_Box30
+ Name: Assumptio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,30;
+ - Id: 13589
+ AegisName: Assumptio_5_Box50
+ Name: Assumptio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,50;
+ - Id: 13590
+ AegisName: Aspersio_5_Box30
+ Name: Aspersio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,30;
+ - Id: 13591
+ AegisName: Aspersio_5_Box50
+ Name: Aspersio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,50;
+ - Id: 13592
+ AegisName: Agi_Dish_Box30
+ Name: Steamed Scorpion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,30;
+ - Id: 13593
+ AegisName: Agi_Dish_Box50
+ Name: Steamed Scorpion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,50;
+ - Id: 13594
+ AegisName: Wind_Walk10_Box30
+ Name: Wind Walk Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,30;
+ - Id: 13595
+ AegisName: Wind_Walk10_Box50
+ Name: Wind Walk Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,50;
+ - Id: 13596
+ AegisName: Int_Dish_Box30
+ Name: Dragon Breath Cocktail 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,30;
+ - Id: 13597
+ AegisName: Int_Dish_Box50
+ Name: Dragon Breath Cocktail 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,50;
+ - Id: 13598
+ AegisName: Battle_Manual_Box1
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,1;
+ - Id: 13599
+ AegisName: Battle_Manual_Box5
+ Name: Field Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,5;
+ - Id: 13600
+ AegisName: Siegfried_Box5
+ Name: Token of Siegfried 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,5;
+ - Id: 13601
+ AegisName: Siegfried_Box20
+ Name: Token of Siegfried 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,20;
+ - Id: 13602
+ AegisName: Kafra_Card_Box30
+ Name: Kafra Card 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,30;
+ - Id: 13603
+ AegisName: Kafra_Card_Box50
+ Name: Kafra Card 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,50;
+ - Id: 13604
+ AegisName: Str_Dish_Box30
+ Name: Steamed Tongue 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,30;
+ - Id: 13605
+ AegisName: Str_Dish_Box50
+ Name: Steamed Tongue 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,50;
+ - Id: 13606
+ AegisName: Bubble_Gum_Box1
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,1;
+ - Id: 13607
+ AegisName: Bubble_Gum_Box5
+ Name: Bubble Gum 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,5;
+ - Id: 13608
+ AegisName: Megaphone_Box1
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,1;
+ - Id: 13609
+ AegisName: Megaphone_Box5
+ Name: Megaphone 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,5;
+ - Id: 13610
+ AegisName: Enriched_Elunium_Box5
+ Name: Enriched Elunium 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ - Id: 13611
+ AegisName: Enriched_Oridecon_Box5
+ Name: Enriched Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,5;
+ - Id: 13612
+ AegisName: Handcuff_Box
+ Name: Arrest Handcuffs Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2706,1;
+ - Id: 13613
+ AegisName: Super_Pet_Egg_Box1
+ Name: Super Pet Egg Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13617,1;
+ - Id: 13614
+ AegisName: Super_Pet_Egg_Box2
+ Name: Super Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13618,1;
+ - Id: 13615
+ AegisName: Super_Pet_Egg_Box3
+ Name: Super Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13619,1;
+ - Id: 13616
+ AegisName: Super_Pet_Egg_Box4
+ Name: Super Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13620,1;
+ - Id: 13617
+ AegisName: Super_Pet_Egg1
+ Name: Super Pet Egg 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg1);
+ - Id: 13618
+ AegisName: Super_Pet_Egg2
+ Name: Super Pet Egg 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg2);
+ - Id: 13619
+ AegisName: Super_Pet_Egg3
+ Name: Super Pet Egg 3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg3);
+ - Id: 13620
+ AegisName: Super_Pet_Egg4
+ Name: Super Pet Egg 4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg4);
+ - Id: 13621
+ AegisName: Greed_Box30
+ Name: Greed Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14529,30;
+ - Id: 13622
+ AegisName: Greed_Box50
+ Name: Greed Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14529,50;
+ - Id: 13623
+ AegisName: Greed_Box100
+ Name: Greed Scroll 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14529,100;
+ - Id: 13624
+ AegisName: Flee_30_Scroll_Box
+ Name: Evasion Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14530,1;
+ - Id: 13625
+ AegisName: Accuracy_30_Scroll_Box
+ Name: Concentration Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14531,1;
+ - Id: 13626
+ AegisName: Super_Card_Pet_Egg_Box1
+ Name: Super Card Pet Egg Box 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13630,1;
+ - Id: 13627
+ AegisName: Super_Card_Pet_Egg_Box2
+ Name: Super Card Pet Egg Box 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13631,1;
+ - Id: 13628
+ AegisName: Super_Card_Pet_Egg_Box3
+ Name: Super Card Pet Egg Box 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13632,1;
+ - Id: 13629
+ AegisName: Super_Card_Pet_Egg_Box4
+ Name: Super Card Pet Egg Box 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13633,1;
+ - Id: 13630
+ AegisName: Super_Card_Pet_Egg1
+ Name: Super Card Pet Egg 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Card_Pet_Egg1);
+ - Id: 13631
+ AegisName: Super_Card_Pet_Egg2
+ Name: Super Card Pet Egg 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Card_Pet_Egg2);
+ - Id: 13632
+ AegisName: Super_Card_Pet_Egg3
+ Name: Super Card Pet Egg 3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Card_Pet_Egg3);
+ - Id: 13633
+ AegisName: Super_Card_Pet_Egg4
+ Name: Super Card Pet Egg 4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Card_Pet_Egg4);
+ - Id: 13634
+ AegisName: Vigorgra_Package1
+ Name: 1 Hour Package Vol. 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package1);
+ - Id: 13635
+ AegisName: Vigorgra_Package2
+ Name: 1 Hour Package Vol. 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package2);
+ - Id: 13636
+ AegisName: Vigorgra_Package3
+ Name: 1 Hour Package Vol. 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package3);
+ - Id: 13637
+ AegisName: Vigorgra_Package4
+ Name: 1 Hour Package Vol. 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package4);
+ - Id: 13638
+ AegisName: Vigorgra_Package5
+ Name: 1 Hour Package Vol. 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package5);
+ - Id: 13639
+ AegisName: Vigorgra_Package6
+ Name: 1 Hour Package Vol. 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package6);
+ - Id: 13640
+ AegisName: Vigorgra_Package7
+ Name: 2 Hour Package Vol. 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package7);
+ - Id: 13641
+ AegisName: Vigorgra_Package8
+ Name: 2 Hour Package Vol. 2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package8);
+ - Id: 13642
+ AegisName: Vigorgra_Package9
+ Name: 2 Hour Package Vol. 3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package9);
+ - Id: 13643
+ AegisName: Vigorgra_Package10
+ Name: 2 Hour Package Vol. 4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package10);
+ - Id: 13644
+ AegisName: Vigorgra_Package11
+ Name: 2 Hour Package Vol. 5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package11);
+ - Id: 13645
+ AegisName: Vigorgra_Package12
+ Name: 2 Hour Package Vol. 6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Vigorgra_Package12);
+ - Id: 13646
+ AegisName: Infiltrator_Box1
+ Name: Refined Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1267,604800;
+ - Id: 13647
+ AegisName: Muramasa_Box1
+ Name: Refined Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1173,604800;
+ - Id: 13648
+ AegisName: Excalibur_Box1
+ Name: Refined Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13401,604800;
+ - Id: 13649
+ AegisName: Combat_Knife_Box1
+ Name: Refined Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13021,604800;
+ - Id: 13650
+ AegisName: Counter_Dagger_Box1
+ Name: Refined Dagger of Counter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13022,604800;
+ - Id: 13651
+ AegisName: Kaiser_Knuckle_Box1
+ Name: Refined Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1817,604800;
+ - Id: 13652
+ AegisName: Pole_Axe_Box1
+ Name: Refined Pole Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1419,604800;
+ - Id: 13653
+ AegisName: Mighty_Staff_Box1
+ Name: Refined Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1623,604800;
+ - Id: 13654
+ AegisName: Right_Epsilon_Box1
+ Name: Refined Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1372,604800;
+ - Id: 13655
+ AegisName: Balistar_Box1
+ Name: Refined Ballista Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1728,604800;
+ - Id: 13656
+ AegisName: Diary_Of_Sage_Box1
+ Name: Refined Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1563,604800;
+ - Id: 13657
+ AegisName: Asura_Box1
+ Name: Refined Ashura Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13023,604800;
+ - Id: 13658
+ AegisName: Apple_Of_Archer_Box1
+ Name: Refined Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5265,1209600;
+ - Id: 13659
+ AegisName: Bunny_Band_Box1
+ Name: Refined Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5266,1209600;
+ - Id: 13660
+ AegisName: Sahkkat_Box1
+ Name: Refined Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5267,1209600;
+ - Id: 13661
+ AegisName: Lord_Circlet_Box1
+ Name: Refined Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5268,1209600;
+ - Id: 13662
+ AegisName: Elven_Ears_Box1
+ Name: Refined Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2686,1209600;
+ - Id: 13663
+ AegisName: Steel_Flower_Box1
+ Name: Refined Romantic Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2687,1209600;
+ - Id: 13664
+ AegisName: Critical_Ring_Box1
+ Name: Refined Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2688,604800;
+ - Id: 13665
+ AegisName: Earring_Box1
+ Name: Refined Earring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2689,604800;
+ - Id: 13666
+ AegisName: Ring_Box1
+ Name: Refined Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2690,604800;
+ - Id: 13667
+ AegisName: Necklace_Box1
+ Name: Refined Necklace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2691,604800;
+ - Id: 13668
+ AegisName: Glove_Box1
+ Name: Refined Glove Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2692,604800;
+ - Id: 13669
+ AegisName: Brooch_Box1
+ Name: Refined Brooch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2693,604800;
+ - Id: 13670
+ AegisName: Rosary_Box1
+ Name: Refined Rosary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2694,604800;
+ - Id: 13671
+ AegisName: Safety_Ring_Box1
+ Name: Refined Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2695,604800;
+ - Id: 13672
+ AegisName: Vesper_Core01_Box1
+ Name: Refined Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2696,604800;
+ - Id: 13673
+ AegisName: Vesper_Core02_Box1
+ Name: Refined Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2697,604800;
+ - Id: 13674
+ AegisName: Vesper_Core03_Box1
+ Name: Refined Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2698,604800;
+ - Id: 13675
+ AegisName: Vesper_Core04_Box1
+ Name: Refined Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2699,604800;
+ - Id: 13676
+ AegisName: Drooping_Kitty_Box1
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5279,1209600;
+ - Id: 13677
+ AegisName: Magestic_Goat_Box1
+ Name: Refined Majestic Goat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5280,1209600;
+ - Id: 13678
+ AegisName: Deviruchi_Cap_Box1
+ Name: Refined Deviruchi Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5281,1209600;
+ - Id: 13679
+ AegisName: Executioner_Box1
+ Name: Refined Executioner Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1174,604800;
+ - Id: 13680
+ AegisName: Brood_Axe_Box1
+ Name: Refined Bloody Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1373,604800;
+ - Id: 13681
+ AegisName: Tomahawk_Box1
+ Name: Refined Tomahawk Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1374,604800;
+ - Id: 13682
+ AegisName: Bow_Of_Rudra_Box1
+ Name: Refined Rudra Bow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1729,604800;
+ - Id: 13683
+ AegisName: Cutlas_Box1
+ Name: Refined Cutlus Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13402,604800;
+ - Id: 13684
+ AegisName: Solar_Sword_Box1
+ Name: Refined Solar Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13403,604800;
+ - Id: 13685
+ AegisName: Sword_Breaker_Box1
+ Name: Refined Swordbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13024,604800;
+ - Id: 13686
+ AegisName: Mail_Breaker_Box1
+ Name: Refined Mailbreaker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13025,604800;
+ - Id: 13687
+ AegisName: Moonlight_Sword_Box1
+ Name: Refined Moonlight Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13026,604800;
+ - Id: 13688
+ AegisName: Spanner_Box1
+ Name: Refined Wrench Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1534,604800;
+ - Id: 13689
+ AegisName: Bok_Choy_Box
+ Name: Bok Choy Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7766,100;
+ - Id: 13690
+ AegisName: Chung_E_Cake_Box
+ Name: Green Maiden Cake Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7767,100;
+ - Id: 13691
+ AegisName: Freyja_Overcoat_Box
+ Name: Freya's Clothes Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2369,604800;
+ - Id: 13692
+ AegisName: Freyja_Boots_Box
+ Name: Freya's Boots Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2428,604800;
+ - Id: 13693
+ AegisName: Freyja_Cape_Box
+ Name: Freya's Manteau Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2533,604800;
+ - Id: 13694
+ AegisName: Freyja_Crown_Box
+ Name: Freya's Crown Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5306,604800;
+ - Id: 13695
+ AegisName: Battle_Manual25_Box
+ Name: Field Manual 25% Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14532,10;
+ - Id: 13696
+ AegisName: Battle_Manual100_Box
+ Name: Field Manual 100% Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14533,10;
+ - Id: 13697
+ AegisName: J_Blessing10_Box
+ Name: Blessing Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,10;
+ - Id: 13698
+ AegisName: J_Inc_Agi10_Box
+ Name: Increase Agility Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,10;
+ - Id: 13699
+ AegisName: J_Wind_Walk10_Box
+ Name: Wind Walk Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,10;
+ - Id: 13700
+ AegisName: J_Adrenaline10_Box
+ Name: Adrenaline Rush Scroll 10 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,10;
+ - Id: 13701
+ AegisName: Pet_Egg_Scroll12
+ Name: Pet Egg Scroll 12
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll12);
+ - Id: 13702
+ AegisName: Pet_Egg_Scroll13
+ Name: Pet Egg Scroll 13
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll13);
+ - Id: 13703
+ AegisName: Pet_Egg_Scroll14
+ Name: Pet Egg Scroll 14
+ Type: Usable
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll14);
+ - Id: 13704
+ AegisName: Super_Pet_Egg5
+ Name: Super Pet Egg 5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg5);
+ - Id: 13705
+ AegisName: Super_Pet_Egg6
+ Name: Super Pet Egg 6
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg6);
+ - Id: 13706
+ AegisName: Super_Pet_Egg7
+ Name: Super Pet Egg 7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg7);
+ - Id: 13707
+ AegisName: Super_Pet_Egg8
+ Name: Super Pet Egg 8
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg8);
+ - Id: 13708
+ AegisName: Pet_Egg_Scroll_E
+ Name: Pet Egg Scroll E
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Pet_Egg_Scroll_E);
+ - Id: 13709
+ AegisName: BRO_Package_1
+ Name: BRO Package Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13710
+ AegisName: Max_Weight_Up_Box
+ Name: Gym Pass Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7776,10;
+ - Id: 13711
+ AegisName: Small_Life_Potion_Box
+ Name: Small Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,10;
+ - Id: 13712
+ AegisName: Small_Life_Potion_Box30
+ Name: Small Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,30;
+ - Id: 13713
+ AegisName: Small_Life_Potion_Box50
+ Name: Small Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,50;
+ - Id: 13714
+ AegisName: Med_Life_Potion_Box
+ Name: Medium Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,10;
+ - Id: 13715
+ AegisName: Med_Life_Potion_Box30
+ Name: Medium Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,30;
+ - Id: 13716
+ AegisName: Med_Life_Potion_Box50
+ Name: Medium Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,50;
+ - Id: 13717
+ AegisName: Abrasive_Box5
+ Name: Abrasive 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,5;
+ - Id: 13718
+ AegisName: Abrasive_Box10
+ Name: Abrasive 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,10;
+ - Id: 13719
+ AegisName: Regeneration_Box5
+ Name: Regeneration Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,5;
+ - Id: 13720
+ AegisName: Regeneration_Box10
+ Name: Regeneration 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,10;
+ - Id: 13721
+ AegisName: Dun_Tele_Scroll_Box10
+ Name: Dungeon Teleport Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,10;
+ - Id: 13722
+ AegisName: Pecopeco_Hairband_Box
+ Name: Peco Peco Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5286,1;
+ - Id: 13723
+ AegisName: Red_Glasses_Box
+ Name: Red Glasses Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5288,1;
+ - Id: 13724
+ AegisName: Whisper_Mask_Box
+ Name: Whisper Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5294,1;
+ - Id: 13725
+ AegisName: Ramen_Hat_Box
+ Name: Ramen Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Ramen_Hat_Box);
+ - Id: 13726
+ AegisName: Gold_Box_
+ Name: Golden Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7777,1;
+ - Id: 13727
+ AegisName: Silver_Box_
+ Name: Silver Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7778,1;
+ - Id: 13728
+ AegisName: Gold_Key1_Box
+ Name: Golden Key 1 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7779,1;
+ - Id: 13729
+ AegisName: Gold_Key5_Box
+ Name: Golden Key 5 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7779,5;
+ - Id: 13730
+ AegisName: Silver_Key1_Box
+ Name: Silver Key 1 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7780,1;
+ - Id: 13731
+ AegisName: Silver_Key5_Box
+ Name: Silver Key 5 Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7780,5;
+ - Id: 13734
+ AegisName: Pecopeco_Hairband_Box1
+ Name: Peco Peco Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5286,1;
+ - Id: 13735
+ AegisName: Red_Glasses_Box1
+ Name: Red Glasses Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5288,1;
+ - Id: 13736
+ AegisName: Whisper_Mask_Box1
+ Name: Whisper Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5294,1;
+ - Id: 13737
+ AegisName: Ramen_Hat_Box1
+ Name: Ramen Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5293,1;
+ - Id: 13738
+ AegisName: Glass_Of_Illusion_Box5
+ Name: Glass of Illusion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,5;
+ - Id: 13739
+ AegisName: Glass_Of_Illusion_Box10
+ Name: Glass of Illusion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,10;
+ - Id: 13740
+ AegisName: Shadow_Armor_S_Box5
+ Name: Shadow Armor Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,5;
+ - Id: 13741
+ AegisName: Shadow_Armor_S_Box10
+ Name: Shadow Armor Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,10;
+ - Id: 13742
+ AegisName: Shadow_Armor_S_Box30
+ Name: Shadow Armor Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,30;
+ - Id: 13743
+ AegisName: Holy_Armor_S_Box5
+ Name: Holy Armor Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,5;
+ - Id: 13744
+ AegisName: Holy_Armor_S_Box10
+ Name: Holy Armor Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,10;
+ - Id: 13745
+ AegisName: Holy_Armor_S_Box30
+ Name: Holy Armor Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,30;
+ - Id: 13746
+ AegisName: S_Def_Potion_Box10
+ Name: Small Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,10;
+ - Id: 13747
+ AegisName: S_Def_Potion_Box30
+ Name: Small Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,30;
+ - Id: 13748
+ AegisName: S_Def_Potion_Box50
+ Name: Small Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,50;
+ - Id: 13749
+ AegisName: B_Def_Potion_Box10
+ Name: Big Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,10;
+ - Id: 13750
+ AegisName: B_Def_Potion_Box30
+ Name: Big Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,30;
+ - Id: 13751
+ AegisName: B_Def_Potion_Box50
+ Name: Big Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,50;
+ - Id: 13752
+ AegisName: S_Mdef_Potion_Box10
+ Name: Small Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,10;
+ - Id: 13753
+ AegisName: S_Mdef_Potion_Box30
+ Name: Small Magic Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,30;
+ - Id: 13754
+ AegisName: S_Mdef_Potion_Box50
+ Name: Small Magic Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,50;
+ - Id: 13755
+ AegisName: B_Mdef_Potion_Box10
+ Name: Big Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,10;
+ - Id: 13756
+ AegisName: B_Mdef_Potion_Box30
+ Name: Big Magic Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,30;
+ - Id: 13757
+ AegisName: B_Mdef_Potion_Box50
+ Name: Big Magic Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,50;
+ - Id: 13758
+ AegisName: Battle_Manual_X3_Box
+ Name: Field Manual 300% Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14545,20;
+ - Id: 13759
+ AegisName: In_Blue_Herb_Box
+ Name: Blue Herb Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 510,50;
+ - Id: 13760
+ AegisName: Honey_Box
+ Name: Honey Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 518,100;
+ - Id: 13761
+ AegisName: Empty_Bottle_Box
+ Name: Empty Bottle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 713,500;
+ - Id: 13762
+ AegisName: In_Royal_Jelly_Box
+ Name: Royal Jelly Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 526,70;
+ - Id: 13763
+ AegisName: 5_Anniversary_Coin_Box
+ Name: Coin Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2709,1;
+ - Id: 13764
+ AegisName: Battle_Manual_Box_TW
+ Name: Beginner's Field Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7803,5;
+ - Id: 13765
+ AegisName: Certificate_TW_Box
+ Name: Certificate Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getitem 7804,1;*/
+ - Id: 13766
+ AegisName: Nagan_Box
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13407,604800;
+ - Id: 13767
+ AegisName: Skewer_Box
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1424,604800;
+ - Id: 13768
+ AegisName: Survival_Rod_Box
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1628,604800;
+ - Id: 13769
+ AegisName: Quadrille_Box
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1537,604800;
+ - Id: 13770
+ AegisName: Great_Axe_Box
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1378,604800;
+ - Id: 13771
+ AegisName: Bloody_Roar_Box
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1273,604800;
+ - Id: 13772
+ AegisName: Hardback_Box
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1567,604800;
+ - Id: 13773
+ AegisName: Fire_Brand_Box
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Fire_Brand_Box);
+ /*rentitem 13408,604800;*/
+ - Id: 13774
+ AegisName: Immaterial_Sword_Box
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13409,604800;
+ - Id: 13775
+ AegisName: Unholy_Touch_Box
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1274,604800;
+ - Id: 13776
+ AegisName: Cloak_Of_Survival_Box
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2535,1209600;
+ - Id: 13777
+ AegisName: Masquerade_Box
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5326,1209600;
+ - Id: 13778
+ AegisName: Orc_Hero_Helm_Box
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5327,1209600;
+ - Id: 13779
+ AegisName: Evil_Wing_Ears_Box
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5328,1209600;
+ - Id: 13780
+ AegisName: Dark_Blindfold_Box
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5329,1209600;
+ - Id: 13781
+ AegisName: kRO_Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5330,1209600;
+ - Id: 13782
+ AegisName: Corsair_Box
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5331,1209600;
+ - Id: 13783
+ AegisName: Bloody_Iron_Ball_Box
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2710,604800;
+ - Id: 13784
+ AegisName: Spiritual_Ring_Box
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2711,604800;
+ - Id: 13785
+ AegisName: Nagan_Box1
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13407,86400;
+ - Id: 13786
+ AegisName: Skewer_Box1
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1424,86400;
+ - Id: 13787
+ AegisName: Survival_Rod_Box1
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1628,86400;
+ - Id: 13788
+ AegisName: Quadrille_Box1
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1537,86400;
+ - Id: 13789
+ AegisName: Great_Axe_Box1
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1378,86400;
+ - Id: 13790
+ AegisName: Bloody_Roar_Box1
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1273,86400;
+ - Id: 13791
+ AegisName: Hardback_Box1
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1567,86400;
+ - Id: 13792
+ AegisName: Fire_Brand_Box1
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13408,86400;
+ - Id: 13793
+ AegisName: Immaterial_Sword_Box1
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13409,86400;
+ - Id: 13794
+ AegisName: Unholy_Touch_Box1
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1274,86400;
+ - Id: 13795
+ AegisName: Cloak_Of_Survival_Box1
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2535,86400;
+ - Id: 13796
+ AegisName: Masquerade_Box1
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5326,86400;
+ - Id: 13797
+ AegisName: Orc_Hero_Helm_Box1
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5327,86400;
+ - Id: 13798
+ AegisName: Evil_Wing_Ears_Box1
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5328,86400;
+ - Id: 13799
+ AegisName: Dark_Blindfold_Box1
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5329,86400;
+ - Id: 13800
+ AegisName: kRO_Drooping_Kitty_Box1
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5330,86400;
+ - Id: 13801
+ AegisName: Corsair_Box1
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5331,86400;
+ - Id: 13802
+ AegisName: Bloody_Iron_Ball_Box1
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2710,86400;
+ - Id: 13803
+ AegisName: Spiritual_Ring_Box1
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2711,86400;
+ - Id: 13804
+ AegisName: Fire_Cracker_Love_Box
+ Name: I Love You Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14546,10;
+ - Id: 13805
+ AegisName: Fire_Cracker_Wday_Box
+ Name: Whiteday Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14547,10;
+ - Id: 13806
+ AegisName: Fire_Cracker_Vday_Box
+ Name: Valentine's Day Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14548,10;
+ - Id: 13807
+ AegisName: Fire_Cracker_Bday_Box
+ Name: Birthday Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14549,10;
+ - Id: 13808
+ AegisName: Fire_Cracker_Xmas_Box
+ Name: Xmas Firecracker Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14550,10;
+ - Id: 13809
+ AegisName: Blue_Gemstone_Box
+ Name: Blue Gemstone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 717,100;
+ - Id: 13810
+ AegisName: Blue_Potion_Box
+ Name: Light Blue Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11502,25;
+ - Id: 13811
+ AegisName: Food_Box_Lv1
+ Name: Food Box Vol 1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 503,100;
+ getitem 12684,10;
+ getitem 607,5;
+ - Id: 13815
+ AegisName: Knife_Goblin_Box
+ Name: Knife Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14569,10;
+ - Id: 13816
+ AegisName: Flail_Goblin_Box
+ Name: Flail Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14570,10;
+ - Id: 13817
+ AegisName: Hammer_Goblin_Box
+ Name: Hammer Goblin Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14571,10;
+ - Id: 13818
+ AegisName: Red_Deleter_Box
+ Name: Red Deleter Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14572,10;
+ - Id: 13819
+ AegisName: Diabolic_Box
+ Name: Diabolic Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14573,10;
+ - Id: 13820
+ AegisName: Wanderer_Box
+ Name: Wanderer Taming Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14574,10;
+ - Id: 13821
+ AegisName: Green_Apple_Box
+ Name: Green Apple Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7821,10;
+ - Id: 13822
+ AegisName: Whole_Barbecue_Box
+ Name: Barbeque Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7822,10;
+ - Id: 13823
+ AegisName: Meat_Veg_Skewer_Box
+ Name: Meat Skewer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7823,10;
+ - Id: 13824
+ AegisName: Spirit_Liquor_Box
+ Name: Spirit Liquor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7824,10;
+ - Id: 13825
+ AegisName: Green_Box_
+ Name: Old Green Box
+ Type: Usable
+ Buy: 20
+ Weight: 200
+ Flags:
+ UniqueId: true
+ - Id: 13826
+ AegisName: Power_Box1
+ Name: Power Box 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 682,1;
+ getitem 12123,1;
+ getitem 12122,1;
+ - Id: 13827
+ AegisName: Power_Box2
+ Name: Power Box 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 683,1;
+ getitem 12123,1;
+ getitem 12122,1;
+ - Id: 13828
+ AegisName: Resist_Box1
+ Name: Resist Box 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12118,1;
+ getitem 12119,1;
+ - Id: 13829
+ AegisName: Resist_Box2
+ Name: Resist Box 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12120,1;
+ getitem 12121,1;
+ - Id: 13830
+ AegisName: Stat_Boost1
+ Name: Stat Boost 1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,5;
+ - Id: 13835
+ AegisName: Dun_Tele_Scroll2_Box10
+ Name: Dungeon Teleport Scroll II 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,10;
+ - Id: 13836
+ AegisName: Mbl_Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12250,1;
+ - Id: 13837
+ AegisName: Mbl_Agi_Dish_Box
+ Name: Steamed Desert Scorpions Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12251,1;
+ - Id: 13838
+ AegisName: Mbl_Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12252,1;
+ - Id: 13839
+ AegisName: Mbl_Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12253,1;
+ - Id: 13840
+ AegisName: Mbl_Luk_Dish_Box
+ Name: Cooked Nine Tail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12254,1;
+ - Id: 13841
+ AegisName: Mbl_Vit_Dish_Box
+ Name: Immortal Stew Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12255,1;
+ - Id: 13842
+ AegisName: Mbl_Kafra_Card_Box
+ Name: Payment Statement for Kafra Employee Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12249,1;
+ - Id: 13843
+ AegisName: Mbl_Battle_Manual_Box
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14532,1;
+ - Id: 13844
+ AegisName: Heroic_Stone_Box
+ Name: Heroic Stone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7825,1;
+ - Id: 13845
+ AegisName: Mysterious_Travel_Sack1
+ Name: Mystery Travel Sack A
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Mysterious_Travel_Sack1);
+ - Id: 13846
+ AegisName: Mysterious_Travel_Sack2
+ Name: Mystery Travel Sack B
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Mysterious_Travel_Sack2);
+ - Id: 13847
+ AegisName: Mysterious_Travel_Sack3
+ Name: Mystery Travel Sack C
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Mysterious_Travel_Sack3);
+ - Id: 13848
+ AegisName: Mysterious_Travel_Sack4
+ Name: Mystery Travel Sack D
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Mysterious_Travel_Sack4);
+ - Id: 13849
+ AegisName: WOB_Box_Rune5
+ Name: Yellow Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,5;
+ - Id: 13850
+ AegisName: WOB_Box_Rune10
+ Name: Yellow Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,10;
+ - Id: 13851
+ AegisName: WOB_Box_Schawaltz5
+ Name: Green Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,5;
+ - Id: 13852
+ AegisName: WOB_Box_Schawaltz10
+ Name: Green Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,10;
+ - Id: 13853
+ AegisName: WOB_Box_Rachel5
+ Name: Red Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,5;
+ - Id: 13854
+ AegisName: WOB_Box_Rachel10
+ Name: Red Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,10;
+ - Id: 13855
+ AegisName: WOB_Box_Local5
+ Name: Blue Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,5;
+ - Id: 13856
+ AegisName: WOB_Box_Local10
+ Name: Blue Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,10;
+ - Id: 13857
+ AegisName: Spark_Candy_Box5
+ Name: Candy 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,5;
+ - Id: 13858
+ AegisName: Spark_Candy_Box10
+ Name: Candy 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,10;
+ - Id: 13859
+ AegisName: Directive_A_Envelope
+ Name: Directive Envelope A
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2734,1;
+ - Id: 13860
+ AegisName: Directive_B_Envelope
+ Name: Directive Envelope B
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2735,1;
+ - Id: 13861
+ AegisName: Mini_Battle_Manual_Box
+ Name: Small Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,4;
+ - Id: 13862
+ AegisName: Trial_Box
+ Name: Trial Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,2;
+ getitem 12215,15;
+ getitem 12216,15;
+ - Id: 13863
+ AegisName: Repair_Scroll_Box10
+ Name: Repair Weapon Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5314,604800;
+ - Id: 13865
+ AegisName: Observer_Box
+ Name: Observer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5315,604800;
+ - Id: 13866
+ AegisName: Flying_Angel_Box
+ Name: Flying Angel Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5210,1;
+ - Id: 13867
+ AegisName: Neko_Mimi_Box
+ Name: Neko Mimi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 13868
+ AegisName: MFH_Box
+ Name: Moonlight Flower Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5214,1;
+ - Id: 13869
+ AegisName: Chick_Hat_Box
+ Name: Baby Chick Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5283,1;
+ - Id: 13870
+ AegisName: New_Style_Box
+ Name: Beauty Gift Certificate Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7622,1;
+ - Id: 13871
+ AegisName: Magician_Card_Box
+ Name: Mage Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13872
+ AegisName: Acolyte_Card_Box
+ Name: Acolyte Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13873
+ AegisName: Archer_Card_Box
+ Name: Archer Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13874
+ AegisName: Swordman_Card_Box
+ Name: Swordman Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13875
+ AegisName: Thief_Card_Box
+ Name: Thief Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13876
+ AegisName: Merchant_Card_Box
+ Name: Merchant Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13877
+ AegisName: Clock_Tower_Card_Box
+ Name: Clock Tower Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4244,1;
+ getitem 4299,1;
+ getitem 4313,1;
+ getitem 4229,1;
+ - Id: 13878
+ AegisName: Geffenia_Card_Box
+ Name: Geffenia Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4218,1;
+ getitem 4269,1;
+ - Id: 13879
+ AegisName: Owl_Card_Box
+ Name: Owl Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4237,1;
+ getitem 4238,1;
+ - Id: 13880
+ AegisName: Ghost_Card_Box
+ Name: Ghost Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4193,1;
+ getitem 4294,1;
+ - Id: 13881
+ AegisName: Nightmare_Card_Box
+ Name: Nightmare Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4127,1;
+ getitem 4166,1;
+ - Id: 13882
+ AegisName: Curse_Card_Box
+ Name: Curse Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4076,4;
+ - Id: 13883
+ AegisName: Sleep_Card_Box
+ Name: Sleep Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4024,4;
+ - Id: 13884
+ AegisName: Freeze_Card_Box
+ Name: Freeze Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4055,4;
+ - Id: 13885
+ AegisName: Stun_Card_Box
+ Name: Stun Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4017,4;
+ - Id: 13886
+ AegisName: Silence_Card_Box
+ Name: Silence Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4057,4;
+ - Id: 13887
+ AegisName: Blind_Card_Box
+ Name: Blind Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4020,4;
+ - Id: 13888
+ AegisName: Chaos_Card_Box
+ Name: Chaos Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4104,4;
+ - Id: 13889
+ AegisName: Elunium_Box_
+ Name: Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 985,10;
+ - Id: 13890
+ AegisName: Oridecon_Box_
+ Name: Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 984,10;
+ - Id: 13891
+ AegisName: Fire_Converter_Box
+ Name: Fire Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12114,10;
+ - Id: 13892
+ AegisName: Water_Converter_Box
+ Name: Water Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12115,10;
+ - Id: 13893
+ AegisName: Wind_Converter_Box
+ Name: Wind Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12117,10;
+ - Id: 13894
+ AegisName: Earth_Converter_Box
+ Name: Earth Converter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12116,10;
+ - Id: 13895
+ AegisName: Starter_Pack
+ Name: Starter Pack
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 13896
+ AegisName: Mimic_Summon_Box5
+ Name: Mimic Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,5;
+ - Id: 13897
+ AegisName: Disguise_Summon_Box5
+ Name: Disguise Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,5;
+ - Id: 13898
+ AegisName: Alice_Summon_Box5
+ Name: Alice Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,5;
+ - Id: 13899
+ AegisName: Mimic_Summon_Box10
+ Name: Mimic Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,10;
+ - Id: 13900
+ AegisName: Disguise_Summon_Box10
+ Name: Disguise Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,10;
+ - Id: 13901
+ AegisName: Alice_Summon_Box10
+ Name: Alice Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,10;
+ - Id: 13902
+ AegisName: Fish_Head_Hat_Box
+ Name: Fish Head Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5380,1;
+ - Id: 13903
+ AegisName: Santa_Poring_Hat_Box
+ Name: Santa Poring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5381,1;
+ - Id: 13904
+ AegisName: Bell_Ribbon_Box
+ Name: Bell Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5382,1;
+ - Id: 13905
+ AegisName: Hard_Core_Set_Box
+ Name: XM Hardcore Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;*/
+ - Id: 13907
+ AegisName: Soft_Core_Set_Box
+ Name: XM Softcore Set Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Deviruchi_Set_Box);
+ /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/
+ - Id: 13909
+ AegisName: MVP_Hunt_Box
+ Name: MVP Hunting Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Brewing_Box);
+ /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/
+ - Id: 13911
+ AegisName: Xmas_Pet_Scroll
+ Name: Christmas Pet Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Xmas_Pet_Scroll);
+ - Id: 13912
+ AegisName: Party_Blessing_Box
+ Name: Party Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14588,10;
+ - Id: 13913
+ AegisName: Party_Inc_Agi_Box
+ Name: Party Increase Agi 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14589,10;
+ - Id: 13914
+ AegisName: Party_Assumptio_Box
+ Name: Party Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14590,10;
+ - Id: 13915
+ AegisName: Love_Angel_Box
+ Name: Love Angel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12287,604800;
+ - Id: 13916
+ AegisName: Squirrel_Box
+ Name: Squirrel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12288,604800;
+ - Id: 13917
+ AegisName: Gogo_Box
+ Name: Gogo Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12289,604800;
+ - Id: 13918
+ AegisName: Drooping_W_Kitty_Box
+ Name: Koneko Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5372,1;
+ - Id: 13919
+ AegisName: L_Magestic_Goat_Box
+ Name: Baphomet Horns Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5374,1;
+ - Id: 13920
+ AegisName: Satanic_Chain_P_Box
+ Name: Flying Evil Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5376,1;
+ - Id: 13921
+ AegisName: Antique_Pipe_Box
+ Name: Gentleman's Pipe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5377,1;
+ - Id: 13922
+ AegisName: Rabbit_Ear_Hat_Box
+ Name: Bunny Top Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5378,1;
+ - Id: 13923
+ AegisName: Darkness_Helm_Box
+ Name: Dark Randgris Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5373,1;
+ - Id: 13924
+ AegisName: L_Orc_Hero_Helm_Box
+ Name: Orc Hero Headdress Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5375,1;
+ - Id: 13925
+ AegisName: Lucky_Scroll08
+ Name: Lucky Scroll08
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Scroll08);
+ - Id: 13926
+ AegisName: Crusader_Card_Box
+ Name: Crusader Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4371,1;
+ getitem 4311,1;
+ getitem 4319,1;
+ getitem 4331,1;
+ - Id: 13927
+ AegisName: Alchemist_Card_Box
+ Name: Alchemist Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4312,1;
+ getitem 4332,1;
+ getitem 4185,1;
+ getitem 4293,1;
+ - Id: 13932
+ AegisName: Sylph_Box
+ Name: Sylph Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4345,4;
+ - Id: 13933
+ AegisName: Undine_Box
+ Name: Undine Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4350,4;
+ - Id: 13934
+ AegisName: Salamander_Box
+ Name: Salamander Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4380,4;
+ - Id: 13935
+ AegisName: Soul_Box
+ Name: Soul Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4388,4;
+ - Id: 13936
+ AegisName: Noum_Bpx
+ Name: Gnome Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 4335,4;
+ - Id: 13937
+ AegisName: Robo_Eye_Box
+ Name: Robo Eye Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5325,1;
+ - Id: 13938
+ AegisName: Twin_Ribbon_Box
+ Name: Maiden's Twin Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5187,1;
+ - Id: 13939
+ AegisName: Diadem_Box
+ Name: Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5313,1;
+ - Id: 13940
+ AegisName: Siege_Tele_Scroll_Box
+ Name: WoE Teleport Scroll 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,100;
+ - Id: 13941
+ AegisName: Valentine_Scroll_TW
+ Name: Taiwan Valentine Scroll
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13942
+ AegisName: Love_Angel_Box_1m
+ Name: Love Angel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14009,1;
+ - Id: 13943
+ AegisName: Squirrel_Box_1m
+ Name: Squirrel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14010,1;
+ - Id: 13944
+ AegisName: Gogo_Box_1m
+ Name: Gogo Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14011,1;
+ - Id: 13945
+ AegisName: Br_SwordPackage
+ Name: Swordman Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_SwordPackage);
+ - Id: 13946
+ AegisName: Br_MagePackage
+ Name: Magician Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_MagePackage);
+ - Id: 13947
+ AegisName: Br_AcolPackage
+ Name: Acolyte Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_AcolPackage);
+ - Id: 13948
+ AegisName: Br_ArcherPackage
+ Name: Archer Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_ArcherPackage);
+ - Id: 13949
+ AegisName: Br_MerPackage
+ Name: Merchant Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_MerPackage);
+ - Id: 13950
+ AegisName: Br_ThiefPackage
+ Name: Thief Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Br_ThiefPackage);
+ - Id: 13951
+ AegisName: Wasteland_Outlaw_Box
+ Name: Western Outlaw Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13109,604800;
+ - Id: 13952
+ AegisName: Lever_Action_Rifle_Box
+ Name: Lever Action Rifle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13170,604800;
+ - Id: 13953
+ AegisName: All_In_One_Ring_Box
+ Name: All In One Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_All_In_One_Ring_Box);
+ /*rentitem All_In_One_Ring,604800;*/
+ - Id: 13954
+ AegisName: Spiritual_Tunic_Box
+ Name: Spiritual Tunic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2384,604800;
+ - Id: 13955
+ AegisName: Recuperative_Armor_Box
+ Name: Recuvative Armor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2385,604800;
+ - Id: 13956
+ AegisName: Shelter_Resistance_Box
+ Name: Shell Of Resistance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2132,604800;
+ - Id: 13957
+ AegisName: Sylphid_Manteau_Box
+ Name: Silf Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2543,604800;
+ - Id: 13958
+ AegisName: Refresh_Shoes_Box
+ Name: Refresh Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2439,604800;
+ - Id: 13959
+ AegisName: Toast_Box
+ Name: Crunch Toast Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5391,604800;
+ - Id: 13960
+ AegisName: Name_Change_Coupon_Box
+ Name: Identification Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7623,1;
+ - Id: 13961
+ AegisName: Mojji_Box
+ Name: Mochi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 554,5;
+ - Id: 13962
+ AegisName: Deprotai_Doll_Hat_Box
+ Name: Defolty Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5340,1;
+ - Id: 13963
+ AegisName: Claris_Doll_Hat_Box
+ Name: Glaris Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5341,1;
+ - Id: 13964
+ AegisName: Sorin_Doll_Hat_Box
+ Name: Sorin Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5342,1;
+ - Id: 13965
+ AegisName: Tayelin_Doll_Hat_Box
+ Name: Tailring Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5343,1;
+ - Id: 13966
+ AegisName: Binit_Doll_Hat_Box
+ Name: Vinit Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5344,1;
+ - Id: 13967
+ AegisName: Debril_Doll_Hat_Box
+ Name: W Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5345,1;
+ - Id: 13968
+ AegisName: Bubblegum_Lower_Box
+ Name: Bubble Gum Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5394,86400;
+ - Id: 13969
+ AegisName: Lucky_Clip_Box
+ Name: Lucky Clip Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2742,86400;
+ - Id: 13970
+ AegisName: Iron_10_Box
+ Name: Iron Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 998,10;
+ - Id: 13971
+ AegisName: Steel_10_Box
+ Name: Steel Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 999,10;
+ - Id: 13972
+ AegisName: Coal_10_Box
+ Name: Coal Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1003,10;
+ - Id: 13973
+ AegisName: Poison_Bottle_30_Box
+ Name: Poison Bottle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,30;
+ - Id: 13974
+ AegisName: TW_Scroll01
+ Name: Fisherman Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 13975
+ AegisName: Picture_Diary_Box
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12304,604800;
+ - Id: 13976
+ AegisName: Mini_Heart_Box
+ Name: Mini Heart Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12305,604800;
+ - Id: 13977
+ AegisName: Newcomer_Box
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12306,604800;
+ - Id: 13978
+ AegisName: Kid_Box
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12307,604800;
+ - Id: 13979
+ AegisName: Magic_Castle_Box
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12308,604800;
+ - Id: 13980
+ AegisName: Bulging_Head_Box
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12309,604800;
+ - Id: 13981
+ AegisName: Picture_Diary_Box_1m
+ Name: Diary Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12304,2592000;
+ - Id: 13982
+ AegisName: Mini_Heart_Box_1m
+ Name: Mini Heart Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12305,2592000;
+ - Id: 13983
+ AegisName: Newcomer_Box_1m
+ Name: Freshman Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12306,2592000;
+ - Id: 13984
+ AegisName: Kid_Box_1m
+ Name: Kid Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12307,2592000;
+ - Id: 13985
+ AegisName: Magic_Castle_Box_1m
+ Name: Magic Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12308,2592000;
+ - Id: 13986
+ AegisName: Bulging_Head_Box_1m
+ Name: JJangu Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12309,2592000;
+ - Id: 13987
+ AegisName: Ori_Stone_5_Box
+ Name: Rough Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 756,5;
+ - Id: 13988
+ AegisName: Ori_Stone_50_Box
+ Name: Rough Oridecon 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 756,50;
+ - Id: 13989
+ AegisName: Acidbomb_10_Box
+ Name: Acid Bomb 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Acidbomb_10_Box);
+ /*getitem 7135,10; getitem 7136,10;*/
+ - Id: 13990
+ AegisName: Job_Manual50_Box
+ Name: JOB Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14592,10;
+ - Id: 13991
+ AegisName: Tiger_Mask_Box
+ Name: Tiger Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5098,1;
+ - Id: 13992
+ AegisName: Cat_Hat_Box
+ Name: Pussy Cat Bell Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 13993
+ AegisName: Alice_Doll_Box
+ Name: Alice Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5137,1;
+ - Id: 13994
+ AegisName: Speed_Up_Potion_Box5
+ Name: Speed Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12016,5;
+ - Id: 13995
+ AegisName: Speed_Up_Potion_Box10
+ Name: Speed Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12016,10;
+ - Id: 13996
+ AegisName: Big_Bun_Box100
+ Name: Big Bun 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14522,100;
+ - Id: 13997
+ AegisName: Big_Bun_Box500
+ Name: Big Bun 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14522,500;
+ - Id: 13998
+ AegisName: Giant_Fly_Wing_Box500
+ Name: Giant Fly Wing 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,500;
+ - Id: 13999
+ AegisName: Pill__Box100
+ Name: Pill 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14523,100;
+ - Id: 14000
+ AegisName: Pill__Box500
+ Name: Pill 500 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14523,500;
+ - Id: 14001
+ AegisName: Basic_Siege_Supply_Box
+ Name: Recruit Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Basic_Siege_Supply_Box);
+ /*getitem 11503,25; getitem 11504,10;*/
+ - Id: 14002
+ AegisName: Adv_Siege_Supply_Box
+ Name: Veteran Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Adv_Siege_Supply_Box);
+ /*getitem 11503,50; getitem 11504,20;*/
+ - Id: 14003
+ AegisName: Elite_Siege_Supply_Box
+ Name: Elite Siege Supply Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Elite_Siege_Supply_Box);
+ /*getitem 11503,100; getitem 11504,50;*/
+ - Id: 14004
+ AegisName: Poison_Bottle_10_Box
+ Name: Poison Bottle 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,10;
+ - Id: 14005
+ AegisName: Poison_Bottle_5_Box
+ Name: Poison Bottle 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 678,5;
+ - Id: 14006
+ AegisName: F_Drooping_W_Kitty_Box
+ Name: Evolved Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5372,1;
+ - Id: 14007
+ AegisName: F_Rabbit_Ear_Hat_Box
+ Name: Evolved Rabbits Headband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5378,1;
+ - Id: 14008
+ AegisName: F_L_Orc_Hero_Helm_Box
+ Name: Evolved Helmet Of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5375,1;
+ - Id: 14009
+ AegisName: F_Love_Angel_Box
+ Name: Love Angel Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12287,604800;
+ - Id: 14010
+ AegisName: F_Squirrel_Box
+ Name: Squillroll Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12288,604800;
+ - Id: 14011
+ AegisName: F_Gogo_Box
+ Name: Gogo Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12289,604800;
+ - Id: 14012
+ AegisName: F_Love_Angel_Box_1m
+ Name: Love Angel Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13915,2592000;
+ - Id: 14013
+ AegisName: F_Squirrel_Box_1m
+ Name: Squillroll Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13916,2592000;
+ - Id: 14014
+ AegisName: F_Gogo_Box_1m
+ Name: Gogo Magic Powder Box 30 Days
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13917,2592000;
+ - Id: 14015
+ AegisName: F_Wasteland_Outlaw_Box
+ Name: Western Outlaw Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13107,604800;
+ - Id: 14016
+ AegisName: F_Lever_Action_Rifle_Box
+ Name: Lever Action Rifle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13170,604800;
+ - Id: 14017
+ AegisName: F_All_In_One_Ring_Box
+ Name: All In One Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2741,604800;
+ - Id: 14018
+ AegisName: F_Spritual_Tunic_Box
+ Name: Spiritual Tunic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2384,604800;
+ - Id: 14019
+ AegisName: F_Recuperative_Box
+ Name: Recuvative Armor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2385,604800;
+ - Id: 14020
+ AegisName: F_Shelter_Resist_Box
+ Name: Shell Of Resistance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2132,604800;
+ - Id: 14021
+ AegisName: F_Sylphid_Manteau_Box
+ Name: Silf Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2543,604800;
+ - Id: 14022
+ AegisName: F_Refresh_Shoes_Box
+ Name: Refresh Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2439,604800;
+ - Id: 14023
+ AegisName: F_Toast_Box
+ Name: Crunch Toast Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5391,604800;
+ - Id: 14024
+ AegisName: F_Robo_Eye_Box
+ Name: Robo Eye Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5325,1;
+ - Id: 14025
+ AegisName: F_Twin_Ribbon_Box
+ Name: Maiden's Twin Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5187,1;
+ - Id: 14026
+ AegisName: F_Diadem_Box
+ Name: Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5313,1;
+ - Id: 14027
+ AegisName: F_Fish_Head_Hat_Box
+ Name: Fish Head Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5380,1;
+ - Id: 14028
+ AegisName: F_Santa_Poring_Hat_Box
+ Name: SantaPoring Cap Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5381,1;
+ - Id: 14029
+ AegisName: F_Bell_Ribbon_Box
+ Name: Bell Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5382,1;
+ - Id: 14030
+ AegisName: F_Mimic_Scroll_Box5
+ Name: Mimic Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,5;
+ - Id: 14031
+ AegisName: F_Disguise_Scroll_Box5
+ Name: Disguise Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,5;
+ - Id: 14032
+ AegisName: F_Alice_Scroll_Box5
+ Name: Alice Summoning 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,5;
+ - Id: 14033
+ AegisName: F_Mimic_Scroll_Box10
+ Name: Mimic Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12276,10;
+ - Id: 14034
+ AegisName: F_Disguise_Scroll_Box10
+ Name: Disguise Summoning 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12277,10;
+ - Id: 14035
+ AegisName: F_Alice_Scroll_Box10
+ Name: Alice Summoning 10 Box)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12278,10;
+ - Id: 14036
+ AegisName: F_New_Style_Coupon_Box
+ Name: New Style Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7622,1;
+ - Id: 14037
+ AegisName: F_Repair_Scroll_Box
+ Name: Repair Weapon Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5314,604800;
+ - Id: 14040
+ AegisName: F_Observer_Box
+ Name: Observer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5315,604800;
+ - Id: 14041
+ AegisName: F_WOB_Rune_Box5
+ Name: Yellow Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,5;
+ - Id: 14042
+ AegisName: F_WOB_Rune_Box10
+ Name: Yellow Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14582,10;
+ - Id: 14043
+ AegisName: F_WOB_Schwaltz_Box5
+ Name: Green Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,5;
+ - Id: 14044
+ AegisName: F_WOB_Schwaltz_Box10
+ Name: Green Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14583,10;
+ - Id: 14045
+ AegisName: F_WOB_Rachel_Box5
+ Name: Red Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,5;
+ - Id: 14046
+ AegisName: F_WOB_Rachel_Box10
+ Name: Red Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14584,10;
+ - Id: 14047
+ AegisName: F_WOB_Local_Box5
+ Name: Blue Butterfly Wing 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,5;
+ - Id: 14048
+ AegisName: F_WOB_Local_Box10
+ Name: Blue Butterfly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14585,10;
+ - Id: 14049
+ AegisName: F_Spark_Candy_Box5
+ Name: Candy 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,5;
+ - Id: 14050
+ AegisName: F_Spark_Candy_Box10
+ Name: Candy 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14586,10;
+ - Id: 14051
+ AegisName: F_Dun_Tel_Scroll2_Box5
+ Name: Dungeon Teleport Scroll II 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,5;
+ - Id: 14052
+ AegisName: F_Dun_Tel_Scroll2_Box10
+ Name: Dungeon Teleport Scroll II 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14581,10;
+ - Id: 14053
+ AegisName: F_Little_Angel_Doll_Box
+ Name: Little Angel Doll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5324,1;
+ - Id: 14054
+ AegisName: F_Triple_Poring_Hat_Box
+ Name: Poring 3 Hats Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5255,1;
+ - Id: 14055
+ AegisName: F_Nagan_Box
+ Name: Refined Nagan Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13407,604800;
+ - Id: 14056
+ AegisName: F_Skewer_Box
+ Name: Refined Brocca Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1424,604800;
+ - Id: 14057
+ AegisName: F_Survival_Rod_Box
+ Name: Refined Survivor's Rod Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1628,604800;
+ - Id: 14058
+ AegisName: F_Quadrille_Box
+ Name: Refined Quadrille Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1537,604800;
+ - Id: 14059
+ AegisName: F_Great_Axe_Box
+ Name: Refined Great Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1378,604800;
+ - Id: 14060
+ AegisName: F_Bloody_Roar_Box
+ Name: Refined Bloody Roar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1273,604800;
+ - Id: 14061
+ AegisName: F_Hardback_Box
+ Name: Refined Hardcover Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1567,604800;
+ - Id: 14062
+ AegisName: F_Fire_Brand_Box
+ Name: Refined Fireblend Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13408,604800;
+ - Id: 14063
+ AegisName: F_Immaterial_Sword_Box
+ Name: Refined Immaterial Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13409,604800;
+ - Id: 14064
+ AegisName: F_Unholy_Touch_Box
+ Name: Refined Unholy Touch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1274,604800;
+ - Id: 14065
+ AegisName: F_Clack_Of_Servival_Box
+ Name: Refined Survivor's Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2535,1209600;
+ - Id: 14066
+ AegisName: F_Masquerade_Box
+ Name: Refined Masquerade Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5326,1209600;
+ - Id: 14067
+ AegisName: F_Orc_Hero_Helm_Box
+ Name: Refined Helmet of Orc Hero Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5327,1209600;
+ - Id: 14068
+ AegisName: F_Ear_Of_Devil_Wing_Box
+ Name: Refined Wing of Diablo Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5328,1209600;
+ - Id: 14069
+ AegisName: F_Dark_Blindfold_Box
+ Name: Refined Dark Blinder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5329,1209600;
+ - Id: 14070
+ AegisName: F_K_Drooping_Kitty_Box
+ Name: Refined Drooping Cat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5330,1209600;
+ - Id: 14071
+ AegisName: F_Corsair_Box
+ Name: Refined Corsair Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5331,1209600;
+ - Id: 14072
+ AegisName: F_Bloody_Iron_Ball_Box
+ Name: Refined Bloodied Shackle Ball Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2710,604800;
+ - Id: 14073
+ AegisName: F_Spiritual_Ring_Box
+ Name: Refined Spiritual Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2711,604800;
+ - Id: 14074
+ AegisName: F_G_O_I_Box5
+ Name: Wine Glass of Illusion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,5;
+ - Id: 14075
+ AegisName: F_G_O_I_Box10
+ Name: Glass Of Illusion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14538,10;
+ - Id: 14076
+ AegisName: F_Shadow_Armor_S_Box5
+ Name: Scroll of Shadow Armor 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,5;
+ - Id: 14077
+ AegisName: F_Shadow_Armor_S_Box10
+ Name: Scroll of Shadow Armor 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,10;
+ - Id: 14078
+ AegisName: F_Shadow_Armor_S_Box30
+ Name: Scroll of Shadow Armor 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14539,30;
+ - Id: 14079
+ AegisName: F_Holy_Armor_S_Box5
+ Name: Scroll of Holy Armor 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,5;
+ - Id: 14080
+ AegisName: F_Holy_Armor_S_Box10
+ Name: Scroll of Holy Armor 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,10;
+ - Id: 14081
+ AegisName: F_Holy_Armor_S_Box30
+ Name: Scroll of Holy Armor 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14540,30;
+ - Id: 14082
+ AegisName: FS_Def_Potion_Box10
+ Name: Small Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,10;
+ - Id: 14083
+ AegisName: FS_Def_Potion_Box30
+ Name: Small Physical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,30;
+ - Id: 14084
+ AegisName: FS_Def_Potion_Box50
+ Name: Small Physical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14541,50;
+ - Id: 14085
+ AegisName: FB_Def_Potion_Box10
+ Name: Big Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,10;
+ - Id: 14086
+ AegisName: FB_Def_Potion_Box30
+ Name: Large Physical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,30;
+ - Id: 14087
+ AegisName: FB_Def_Potion_Box50
+ Name: Large Physical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14542,50;
+ - Id: 14088
+ AegisName: FS_Mdef_Potion_Box10
+ Name: Small Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,10;
+ - Id: 14089
+ AegisName: FS_Mdef_Potion_Box30
+ Name: Small Magical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,30;
+ - Id: 14090
+ AegisName: FS_Mdef_Potion_Box50
+ Name: Small Magical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14543,50;
+ - Id: 14091
+ AegisName: FB_Mdef_Potion_Box10
+ Name: Big Magic Defense Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,10;
+ - Id: 14092
+ AegisName: FB_Mdef_Potion_Box30
+ Name: Large Magical Defense Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,30;
+ - Id: 14093
+ AegisName: FB_Mdef_Potion_Box50
+ Name: Large Magical Defense Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14544,50;
+ - Id: 14094
+ AegisName: F_Flying_Angel_Box
+ Name: Flying Angel Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5210,1;
+ - Id: 14095
+ AegisName: F_Cat_Hat_Box
+ Name: Neko Mimi Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5099,1;
+ - Id: 14096
+ AegisName: F_M_F_H_Box
+ Name: Moonlight Flower Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5214,1;
+ - Id: 14097
+ AegisName: F_Chick_Hat_Box
+ Name: Baby Chick Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5283,1;
+ - Id: 14098
+ AegisName: F_Pecopeco_Hairband_Box
+ Name: Peco Peco Hairband Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5286,1209600;
+ - Id: 14099
+ AegisName: F_Red_Glasses_Box
+ Name: Red Glasses Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5288,1209600;
+ - Id: 14100
+ AegisName: F_Whisper_Mask_Box
+ Name: Whisper Mask Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5294,1209600;
+ - Id: 14101
+ AegisName: F_Ramen_Hat_Box
+ Name: Ramen Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5293,1209600;
+ - Id: 14102
+ AegisName: F_Dun_Tele_Scroll1_Box
+ Name: Dungeon Teleport Scroll 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,5;
+ - Id: 14103
+ AegisName: F_Max_Weight_Up_Box
+ Name: Gym Membership Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7776,1;
+ - Id: 14104
+ AegisName: F_S_Life_Potion_Box
+ Name: Small Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,10;
+ - Id: 14105
+ AegisName: F_S_Life_Potion_Box30
+ Name: Small Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,30;
+ - Id: 14106
+ AegisName: F_S_Life_Potion_Box50
+ Name: Small Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,50;
+ - Id: 14107
+ AegisName: F_M_Life_Potion_Box
+ Name: Medium Life Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,10;
+ - Id: 14108
+ AegisName: F_M_Life_Potion_Box30
+ Name: Large Life Potion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,30;
+ - Id: 14109
+ AegisName: F_M_Life_Potion_Box50
+ Name: Large Life Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14535,50;
+ - Id: 14110
+ AegisName: F_Abrasive_Box5
+ Name: Abrasive 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,5;
+ - Id: 14111
+ AegisName: F_Abrasive_Box10
+ Name: Abrasive 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14536,10;
+ - Id: 14112
+ AegisName: F_Regeneration_Box5
+ Name: Regeneration Potion 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,5;
+ - Id: 14113
+ AegisName: F_Regeneration_Box10
+ Name: Regeneration Potion 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14537,10;
+ - Id: 14114
+ AegisName: F_Dun_Tele_Scroll_Box10
+ Name: Dungeon Teleport Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14527,10;
+ - Id: 14115
+ AegisName: F_Infiltrator_Box
+ Name: Refined Infiltrator Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1267,604800;
+ - Id: 14116
+ AegisName: F_Muramasa_Box
+ Name: Refined Muramasa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1173,604800;
+ - Id: 14117
+ AegisName: F_Excalibur_Box
+ Name: Refined Excalibur Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13401,604800;
+ - Id: 14118
+ AegisName: F_Combat_Knife_Box
+ Name: Combat Knife Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13021,604800;
+ - Id: 14119
+ AegisName: F_Counter_Dagger_Box
+ Name: Counter Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13022,604800;
+ - Id: 14120
+ AegisName: F_Kaiser_Knuckle_Box
+ Name: Refined Kaiser Knuckle Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1817,604800;
+ - Id: 14121
+ AegisName: F_Mighty_Staff_Box
+ Name: Refined Mighty Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1623,604800;
+ - Id: 14122
+ AegisName: F_Right_Epsilon_Box
+ Name: Light Epsilon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1372,604800;
+ - Id: 14123
+ AegisName: F_Balistar_Box
+ Name: Refined Ballista Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1728,604800;
+ - Id: 14124
+ AegisName: F_Diary_Of_Great_Sage
+ Name: Sage's Diary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1563,604800;
+ - Id: 14125
+ AegisName: F_Asura_Box
+ Name: Asura Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13023,604800;
+ - Id: 14126
+ AegisName: F_Apple_Of_Archer_Box
+ Name: Apple of Archer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5265,1209600;
+ - Id: 14127
+ AegisName: F_Bunny_Band_Box
+ Name: Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5266,1209600;
+ - Id: 14128
+ AegisName: F_Sahkkat_Box
+ Name: Refined Sakkat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5267,1209600;
+ - Id: 14129
+ AegisName: F_Lord_Circlet_Box
+ Name: Refined Grand Circlet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5268,1209600;
+ - Id: 14130
+ AegisName: F_Elven_Ears_Box
+ Name: Elven Ears Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2686,1209600;
+ - Id: 14131
+ AegisName: F_Steel_Flower_Box
+ Name: Steel Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2687,1209600;
+ - Id: 14132
+ AegisName: F_Critical_Ring_Box
+ Name: Critical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2688,604800;
+ - Id: 14133
+ AegisName: F_Earring_Box
+ Name: Earring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2689,604800;
+ - Id: 14134
+ AegisName: F_Ring_Box
+ Name: Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2690,604800;
+ - Id: 14135
+ AegisName: F_Necklace_Box
+ Name: Necklace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2691,604800;
+ - Id: 14136
+ AegisName: F_Glove_Box
+ Name: Glove Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2692,604800;
+ - Id: 14137
+ AegisName: F_Brooch_Box
+ Name: Brooch Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2693,604800;
+ - Id: 14138
+ AegisName: F_Rosary_Box
+ Name: Rosary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2694,604800;
+ - Id: 14139
+ AegisName: F_Safety_Ring_Box
+ Name: Safety Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2695,604800;
+ - Id: 14140
+ AegisName: F_Vesper_Core_Box01
+ Name: Refined Vesper Core 01 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2696,604800;
+ - Id: 14141
+ AegisName: F_Vesper_Core_Box02
+ Name: Refined Vesper Core 02 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2697,604800;
+ - Id: 14142
+ AegisName: F_Vesper_Core_Box03
+ Name: Refined Vesper Core 03 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2698,604800;
+ - Id: 14143
+ AegisName: F_Vesper_Core_Box04
+ Name: Refined Vesper Core 04 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2699,604800;
+ - Id: 14144
+ AegisName: F_Vigorgra_Package1
+ Name: Vigorgra Box1
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14145
+ AegisName: F_Vigorgra_Package2
+ Name: Vigorgra Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14146
+ AegisName: F_Vigorgra_Package3
+ Name: Vigorgra Box3
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14147
+ AegisName: F_Vigorgra_Package4
+ Name: Vigorgra Box4
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14148
+ AegisName: F_Vigorgra_Package5
+ Name: Vigorgra Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14149
+ AegisName: F_Vigorgra_Package6
+ Name: Vigorgra Box6
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14150
+ AegisName: F_Vigorgra_Package7
+ Name: Vigorgra Box7
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14151
+ AegisName: F_Vigorgra_Package8
+ Name: Vigorgra Box8
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14152
+ AegisName: F_Vigorgra_Package9
+ Name: Start your Journey Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14153
+ AegisName: F_Vigorgra_Package10
+ Name: Siege Mode Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14154
+ AegisName: F_Vigorgra_Package11
+ Name: 1 Hour Survival Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14155
+ AegisName: F_Vigorgra_Package12
+ Name: Weekend Hunting Pack
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14156
+ AegisName: F_Battle_Manual_Box
+ Name: Battle Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,10;
+ - Id: 14157
+ AegisName: F_Insurance_Package
+ Name: Insurance Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,10;
+ - Id: 14158
+ AegisName: F_Bubble_Gum_Box
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,10;
+ - Id: 14159
+ AegisName: F_Str_Dish_Box
+ Name: Steamed Tongue Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,10;
+ - Id: 14160
+ AegisName: F_Agi_Dish_Box
+ Name: Steamed Scorpion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,10;
+ - Id: 14161
+ AegisName: F_Int_Dish_Box
+ Name: Dragon Breath Cocktail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,10;
+ - Id: 14162
+ AegisName: F_Dex_Dish_Box
+ Name: Hwergelmir's Tonic Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,10;
+ - Id: 14163
+ AegisName: F_Luk_Dish_Box
+ Name: Nine Tail Dish Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,10;
+ - Id: 14164
+ AegisName: F_Vit_Dish_Box
+ Name: Stew Of Immortality Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,10;
+ - Id: 14165
+ AegisName: F_Kafra_Card_Box
+ Name: Kafra Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,10;
+ - Id: 14166
+ AegisName: F_Giant_Fly_Wing_Box
+ Name: Giant Fly Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,10;
+ - Id: 14167
+ AegisName: F_Neuralizer_Box
+ Name: Neuralizer Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12213,1;
+ - Id: 14168
+ AegisName: F_Convex_Mirror_Box
+ Name: Convex Mirror Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,10;
+ - Id: 14169
+ AegisName: F_Blessing_10_Scroll_Box
+ Name: Blessing 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,10;
+ - Id: 14170
+ AegisName: F_Inc_Agi_10_Scroll_Box
+ Name: Increase AGI 10 scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,10;
+ - Id: 14171
+ AegisName: F_Aspersio_5_Scroll_Box
+ Name: Aspersio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,10;
+ getitem 523,10;
+ - Id: 14172
+ AegisName: F_Assumptio_5_Scroll_Box
+ Name: Assumptio 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,10;
+ - Id: 14173
+ AegisName: F_Wind_Walk_10_Scroll_Box
+ Name: Wind Walk 10 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,10;
+ - Id: 14174
+ AegisName: F_Adrenaline_Scroll_Box
+ Name: Adrenaline 5 Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,10;
+ - Id: 14175
+ AegisName: F_Megaphone_Box
+ Name: Megaphone 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,10;
+ - Id: 14176
+ AegisName: F_Enriched_Elunium_Box
+ Name: Enriched Elunium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,10;
+ - Id: 14177
+ AegisName: F_Enriched_Oridecon_Box
+ Name: Enriched Oridecon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,10;
+ - Id: 14178
+ AegisName: F_Token_Of_Siegfried_Box
+ Name: Token of Siegfried Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,10;
+ - Id: 14179
+ AegisName: F_Giant_Fly_Wing_Box50
+ Name: Giant Fly Wing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,50;
+ - Id: 14180
+ AegisName: F_Giant_Fly_Wing_Box100
+ Name: Giant Fly Wing 100 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12212,100;
+ - Id: 14181
+ AegisName: F_Dex_Dish_Box30
+ Name: Hwergelmir's Tonic 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,30;
+ - Id: 14182
+ AegisName: F_Dex_Dish_Box50
+ Name: Hwergelmir's Tonic 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,50;
+ - Id: 14183
+ AegisName: F_Luk_Dish_Box30
+ Name: Nine Tail Dish 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,30;
+ - Id: 14184
+ AegisName: F_Luk_Dish_Box50
+ Name: Nine Tail Dish 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,50;
+ - Id: 14185
+ AegisName: F_Inc_Agi_10_Box30
+ Name: Increase Agility Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,30;
+ - Id: 14186
+ AegisName: F_Inc_Agi_10_Box50
+ Name: Increase Agility Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12216,50;
+ - Id: 14187
+ AegisName: F_Vit_Dish_Box30
+ Name: Stew of Immortality 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,30;
+ - Id: 14188
+ AegisName: F_Vit_Dish_Box50
+ Name: Stew of Immortality 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,50;
+ - Id: 14189
+ AegisName: F_Insurance_Package30
+ Name: Life Insurrance 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,30;
+ - Id: 14190
+ AegisName: F_Insurance_Package50
+ Name: Life Insurrance 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12209,50;
+ - Id: 14191
+ AegisName: F_Convex_Mirror_Box5
+ Name: Convex Mirror 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,5;
+ - Id: 14192
+ AegisName: F_Convex_Mirror_Box30
+ Name: Convex Mirror 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12214,30;
+ - Id: 14193
+ AegisName: F_Blessing10_Box30
+ Name: Blessing Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,30;
+ - Id: 14194
+ AegisName: F_Blessing10_Box50
+ Name: Lv10 Blessing Scroll Box 50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12215,50;
+ - Id: 14195
+ AegisName: F_Adrenaline10_Box30
+ Name: Adrenaline Rush Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,30;
+ - Id: 14196
+ AegisName: F_Adrenaline10_Box50
+ Name: Adrenaline Rush Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12220,50;
+ - Id: 14197
+ AegisName: F_Assumptio_5_Box30
+ Name: Assumptio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,30;
+ - Id: 14198
+ AegisName: F_Assumptio_5_Box50
+ Name: Lv5 Assumptio Scroll Box 50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12218,50;
+ - Id: 14199
+ AegisName: F_Aspersio_5_Box30
+ Name: Aspersio Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,30;
+ getitem 523,30;
+ - Id: 14200
+ AegisName: F_Aspersio_5_Box50
+ Name: Aspersio Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12217,50;
+ getitem 523,50;
+ - Id: 14201
+ AegisName: F_Agi_Dish_Box30
+ Name: Steamed Scorpion 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,30;
+ - Id: 14202
+ AegisName: F_Agi_Dish_Box50
+ Name: Steamed Scorpion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,50;
+ - Id: 14203
+ AegisName: F_Wind_Walk10_Box30
+ Name: Wind Walk Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,30;
+ - Id: 14204
+ AegisName: F_Wind_Walk10_Box50
+ Name: Wind Walk Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12219,50;
+ - Id: 14205
+ AegisName: F_Int_Dish_Box30
+ Name: Dragon Breath Cocktail 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,30;
+ - Id: 14206
+ AegisName: F_Int_Dish_Box50
+ Name: Dragon Breath Cocktail 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,50;
+ - Id: 14207
+ AegisName: F_Battle_Manual_Box1
+ Name: Field Manual Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,1;
+ - Id: 14208
+ AegisName: F_Battle_Manual_Box5
+ Name: Battle Manual 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,5;
+ - Id: 14209
+ AegisName: F_Siegfried_Box5
+ Name: Token of Siegfried 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,5;
+ - Id: 14210
+ AegisName: F_Siegfried_Box20
+ Name: Token of Siegfried 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7621,20;
+ - Id: 14211
+ AegisName: F_Kafra_Card_Box30
+ Name: Kafra Card 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,30;
+ - Id: 14212
+ AegisName: F_Kafra_Card_Box50
+ Name: Kafra Card 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12211,50;
+ - Id: 14213
+ AegisName: F_Str_Dish_Box30
+ Name: Steamed Tongue 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,30;
+ - Id: 14214
+ AegisName: F_Str_Dish_Box50
+ Name: Steamed Tongue 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,50;
+ - Id: 14215
+ AegisName: F_Bubble_Gum_Box1
+ Name: Bubble Gum Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,1;
+ - Id: 14216
+ AegisName: F_Bubble_Gum_Box5
+ Name: Bubble Gum 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,5;
+ - Id: 14217
+ AegisName: F_Megaphone_Box1
+ Name: Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,1;
+ - Id: 14218
+ AegisName: F_Megaphone_Box5
+ Name: Megaphone 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12221,5;
+ - Id: 14219
+ AegisName: F_Enriched_Elunium_Box5
+ Name: Enriched Elunium 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ - Id: 14220
+ AegisName: F_Enriched_Oridecon_Box5
+ Name: Enriched Oridecon 5 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7620,5;
+ - Id: 14221
+ AegisName: MP_Scroll_Box
+ Name: Mystical Amplification Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,10;
+ - Id: 14222
+ AegisName: MP_Scroll_Box30
+ Name: Mystical Amplification Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,30;
+ - Id: 14223
+ AegisName: MP_Scroll_Box50
+ Name: Mystical Amplification Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,50;
+ - Id: 14224
+ AegisName: Quagmire_Scroll_Box
+ Name: Quagmire Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,10;
+ - Id: 14225
+ AegisName: Quagmire_Scroll_Box30
+ Name: Quagmire Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,30;
+ - Id: 14226
+ AegisName: Quagmire_Scroll_Box50
+ Name: Quagmire Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,50;
+ - Id: 14227
+ AegisName: Healing_Staff_Box
+ Name: Healing Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1638,604800;
+ - Id: 14228
+ AegisName: Praxinus_Box
+ Name: Praccsinos Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2752,604800;
+ - Id: 14229
+ AegisName: Cherry_Blossom_Scroll
+ Name: Cherry Blossom Scroll
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Sakura_Scroll);
+ - Id: 14230
+ AegisName: Note_Headphones_Box
+ Name: Note Headphones Box
+ Type: Cash
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5151,1;
+ - Id: 14231
+ AegisName: Novice_Breastplate_Boxes
+ Name: Novice Breastplate Boxes
+ Type: Cash
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14232
+ AegisName: Yggdrasilberry_Box_
+ Name: Yggdrasil Berry 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 607,10;
+ - Id: 14233
+ AegisName: Dead_Tree_Branch_Box1
+ Name: Dead Branch 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 604,10;
+ - Id: 14234
+ AegisName: Dead_Tree_Branch_Box2
+ Name: Dead Branch 25 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 604,25;
+ - Id: 14235
+ AegisName: Field_Manual_Box_2
+ Name: Field Manual 2 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12208,2;
+ - Id: 14236
+ AegisName: Steamed_Tongue_Box_20
+ Name: Steamed Tongue 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12202,20;
+ - Id: 14237
+ AegisName: Steamed_Desert_Scorpions_Box_20
+ Name: Steamed Desert Scorpions Box(20)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12203,20;
+ - Id: 14238
+ AegisName: Stew_Of_Immortality_Box_20
+ Name: Immortal Stew 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12207,20;
+ - Id: 14239
+ AegisName: Dragon_Breath_Cocktail_Box_20
+ Name: Dragon Breath Cocktail 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12204,20;
+ - Id: 14240
+ AegisName: Hwergelmir's_Tonic_Box_20
+ Name: Hwergelmir's Tonic 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12205,20;
+ - Id: 14241
+ AegisName: Nine_Tail_Dish_Box_20
+ Name: Nine Tail Dish 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12206,20;
+ - Id: 14242
+ AegisName: Beholder_Ring_Box
+ Name: Beholder Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Beholder_Ring_Box);
+ /*rentitem 2753,604800;*/
+ - Id: 14243
+ AegisName: Hallow_Ring_Box
+ Name: Hallow Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Hallow_Ring_Box);
+ /*rentitem 2754,604800;*/
+ - Id: 14244
+ AegisName: Clamorous_Ring_Box
+ Name: Clamorous Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Clamorous_Ring_Box);
+ /*rentitem 2755,604800;*/
+ - Id: 14245
+ AegisName: Chemical_Ring_Box
+ Name: Chemical Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Chemical_Ring_Box);
+ /*rentitem 2756,604800;*/
+ - Id: 14246
+ AegisName: Insecticide_Ring_Box
+ Name: Insecticide Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Insecticide_Ring_Box);
+ /*rentitem 2757,604800;*/
+ - Id: 14247
+ AegisName: Fisher_Ring_Box
+ Name: Fisher Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Fisher_Ring_Box);
+ /*rentitem 2758,604800;*/
+ - Id: 14248
+ AegisName: Decussate_Ring_Box
+ Name: Decussate Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Decussate_Ring_Box);
+ /*rentitem 2759,604800;*/
+ - Id: 14249
+ AegisName: Bloody_Ring_Box
+ Name: Bloody Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Bloody_Ring_Box);
+ /*rentitem 2760,604800;*/
+ - Id: 14250
+ AegisName: Satanic_Ring_Box
+ Name: Satanic Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Satanic_Ring_Box);
+ /*rentitem 2761,604800;*/
+ - Id: 14251
+ AegisName: Dragoon_Ring_Box
+ Name: Dragon Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Dragoon_Ring_Box);
+ /*rentitem 2762,604800;*/
+ - Id: 14252
+ AegisName: Beholder_Ring_Box2
+ Name: Beholder Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2753,1;
+ - Id: 14253
+ AegisName: Hallow_Ring_Box2
+ Name: Hallow Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2754,1;
+ - Id: 14254
+ AegisName: Clamorous_Ring_Box2
+ Name: Clamorous Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2755,1;
+ - Id: 14255
+ AegisName: Chemical_Ring_Box2
+ Name: Chemical Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2756,1;
+ - Id: 14256
+ AegisName: Insecticide_Ring_Box2
+ Name: Insecticide Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2757,1;
+ - Id: 14257
+ AegisName: Fisher_Ring_Box2
+ Name: Fisher Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2758,1;
+ - Id: 14258
+ AegisName: Decussate_Ring_Box2
+ Name: Decussate Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2759,1;
+ - Id: 14259
+ AegisName: Bloody_Ring_Box2
+ Name: Bloody Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2760,1;
+ - Id: 14260
+ AegisName: Satanic_Ring_Box2
+ Name: Satanic Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2761,1;
+ - Id: 14261
+ AegisName: Dragoon_Ring_Box2
+ Name: Dragon Ring Box II
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2762,1;
+ - Id: 14262
+ AegisName: Diary_Magic_Powder_Box
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12304,604800;
+ - Id: 14263
+ AegisName: Mini_Heart_Magic_Powder_Box
+ Name: Mini Heart Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12305,604800;
+ - Id: 14264
+ AegisName: Freshman_Magic_Powder_Box
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12306,604800;
+ - Id: 14265
+ AegisName: Kid_Magic_Powder_Box
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12307,604800;
+ - Id: 14266
+ AegisName: Magic_Magic_Powder_Box
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12308,604800;
+ - Id: 14267
+ AegisName: JJangu_Magic_Powder_Box
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12309,604800;
+ - Id: 14268
+ AegisName: Diary_Magic_Powder_Box4
+ Name: Diary Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14269
+ AegisName: Mini_Heart_Magic_Powder_Box4
+ Name: Mini Heart Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14270
+ AegisName: Freshman_Magic_Powder_Box4
+ Name: Freshman Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14271
+ AegisName: Kid_Magic_Powder_Box4
+ Name: Kid Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14272
+ AegisName: Magic_Magic_Powder_Box4
+ Name: Magic Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14273
+ AegisName: JJangu_Magic_Powder_Box4
+ Name: JJangu Magic Powder Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14274
+ AegisName: Amplification_10_Scroll_Box2
+ Name: Mystical Amplification Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,10;
+ - Id: 14275
+ AegisName: Amplification_30_Scroll_Box2
+ Name: Mystical Amplification Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,30;
+ - Id: 14276
+ AegisName: Amplification_50_Scroll_Box2
+ Name: Mystical Amplification Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14593,50;
+ - Id: 14277
+ AegisName: Quagmire_10_Scroll_Box2
+ Name: Quagmire Scroll 10 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,10;
+ - Id: 14278
+ AegisName: Quagmire_30_Scroll_Box2
+ Name: Quagmire Scroll 30 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,30;
+ - Id: 14279
+ AegisName: Quagmire_50_Scroll_Box2
+ Name: Quagmire Scroll 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14594,50;
+ - Id: 14280
+ AegisName: Healing_Staff_Box2
+ Name: Healing Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1638,1;
+ - Id: 14281
+ AegisName: Praccsinos_Box
+ Name: Praccsinos Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2752,1;
+ - Id: 14282
+ AegisName: Emperium_Box
+ Name: Emperium Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 714,1;
+ - Id: 14283
+ AegisName: Marriage_Certificate_Box
+ Name: Written Oath Of Marriage Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6026,1;
+ - Id: 14284
+ AegisName: Muffler_Box
+ Name: Muffler Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2548,1;
+ - Id: 14285
+ AegisName: Balkiriah_Shield_Box
+ Name: Balkiriah Shield Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2137,1;
+ - Id: 14286
+ AegisName: Skull_Ring_Box
+ Name: Skull Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2763,1;
+ - Id: 14287
+ AegisName: Baricade_Repair_Kit
+ Name: Barricade Repair Kit
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1019,30;
+ getitem 999,10;
+ getitem 1011,10;
+ getitem 984,5;
+ - Id: 14288
+ AegisName: Guardian_Stone_Repair_Kit
+ Name: Guardian Stone Repair Kit
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6046,1;
+ - Id: 14290
+ AegisName: Cloth_Dye_Coupon2_Box
+ Name: Original Clothing Dye Coupon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6047,1;
+ - Id: 14291
+ AegisName: Cloth_Dye_Coupon3_Box
+ Name: Clothing Dye Coupon Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6046,1;
+ - Id: 14292
+ AegisName: Cloth_Dye_Coupon4_Box
+ Name: Clothing Dye Coupon Box II
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6047,1;
+ - Id: 14293
+ AegisName: Mercenary_Contract_Box
+ Name: Mercenary Contract Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6050,1;
+ - Id: 14294
+ AegisName: Mercenary_Contract_Box5
+ Name: Mercenary Contract Box 5ea
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6050,5;
+ - Id: 14295
+ AegisName: Mercenary_Contract_Box10
+ Name: Mercenary Contract Box 10ea
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6050,10;
+ - Id: 14296
+ AegisName: Angel_Scroll
+ Name: Angel Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Angel_Scroll);
+ - Id: 14297
+ AegisName: Devil_Scroll
+ Name: Devil Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Devil_Scroll);
+ - Id: 14298
+ AegisName: Surprise_Scroll
+ Name: Surprise Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Surprise_Scroll);
+ - Id: 14300
+ AegisName: Mask_Of_Ifrit_Box
+ Name: Mask Of Ifrit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5420,1;
+ - Id: 14301
+ AegisName: Ifrit's_Ear_Box
+ Name: Ears Of Ifrit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5421,1;
+ - Id: 14304
+ AegisName: Scuba_Mask_Box
+ Name: Scuba Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5397,1;
+ - Id: 14306
+ AegisName: RWC_Special_Scroll
+ Name: RWC Special Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_Special_Scroll);
+ - Id: 14307
+ AegisName: RWC_Limited_Scroll
+ Name: RWC Limited Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_Limited_Scroll);
+ - Id: 14308
+ AegisName: Ardor_Scroll
+ Name: Ardor Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14314
+ AegisName: PhreeoniS_Box
+ Name: Phreeoni Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14597,10;
+ - Id: 14315
+ AegisName: GhostringS_Box
+ Name: Ghostring Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14598,10;
+ - Id: 14316
+ AegisName: July7_Scroll
+ Name: July7 Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_July7_Scroll);
+ - Id: 14317
+ AegisName: Bacsojin_Scroll
+ Name: Bacsojin Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Bacsojin_Scroll);
+ - Id: 14321
+ AegisName: Holy_Sabre_Box
+ Name: Holy Sabre Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13419,86400;
+ - Id: 14322
+ AegisName: Book_Of_Prayer_Box
+ Name: Book of Prayer Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1578,86400;
+ - Id: 14323
+ AegisName: Phenomena_Whip_Box
+ Name: Phenomena Whip Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1982,86400;
+ - Id: 14324
+ AegisName: Staff_Of_Darkness_Box
+ Name: Staff of Darkness Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1642,86400;
+ - Id: 14325
+ AegisName: Monk_Knuckle_Box
+ Name: Monk Knuckle Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1828,86400;
+ - Id: 14326
+ AegisName: Mace_Of_Madness_Box
+ Name: Mace of Madness Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1547,86400;
+ - Id: 14327
+ AegisName: Spear_Of_Excellent_Box
+ Name: Spear of Excellent Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1427,86400;
+ - Id: 14328
+ AegisName: Bow_Of_Evil_Box
+ Name: Bow of Evil Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1744,86400;
+ - Id: 14329
+ AegisName: Katar_Of_Speed_Box
+ Name: Katar of Speed Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1283,86400;
+ - Id: 14330
+ AegisName: Sharpshooter_Revolver_Box
+ Name: Sharpshooter Revolver Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13111,86400;
+ - Id: 14343
+ AegisName: Spiked_Scarf_Box
+ Name: Spiked Scarf Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5462,1;
+ - Id: 14344
+ AegisName: Rainbow_Scarf_Box
+ Name: Rainbow Scarf Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5463,1;
+ - Id: 14345
+ AegisName: Animal_Scroll
+ Name: Animal Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Animal_Scroll);
+ - Id: 14349
+ AegisName: Mental_Potion20_Box
+ Name: Mental Potion 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14600,20;
+ - Id: 14350
+ AegisName: Mental_Potion50_Box
+ Name: Mental Potion 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14600,50;
+ - Id: 14351
+ AegisName: Tyr's_Blessing20_Box
+ Name: Tyr's Blessing 20 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14601,20;
+ - Id: 14352
+ AegisName: Tyr's_Blessing50_Box
+ Name: Tyr's Blessing 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14601,50;
+ - Id: 14361
+ AegisName: Orc_HeroS_Box
+ Name: Orc HeroS Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14604,10;
+ - Id: 14362
+ AegisName: Orc_LoadS_Box
+ Name: Orc LoadS Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14605,10;
+ - Id: 14363
+ AegisName: Heart_Scroll
+ Name: Heart Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Heart_Scroll);
+ - Id: 14372
+ AegisName: Powder_Snow_Box
+ Name: Powder Snow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12317,1;
+ - Id: 14375
+ AegisName: Holy_Celestial_Axe_Box
+ Name: Celestial Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 1383,1;
+ - Id: 14376
+ AegisName: Angeling_Pot_Box
+ Name: Angeling Potion Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12350,1;
+ - Id: 14377
+ AegisName: Shout_Megaphone_Box
+ Name: Scream Megaphone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12351,1;
+ - Id: 14379
+ AegisName: Love_Daddy_Box
+ Name: Love Daddy Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5489,1;
+ - Id: 14380
+ AegisName: Anubis_Helm_Box
+ Name: Anubis Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5490,1;
+ - Id: 14381
+ AegisName: Piercing_Box_M
+ Name: Piercing Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1644,1;
+ - Id: 14382
+ AegisName: Lich_Bone_Box_M
+ Name: Lich Bone Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1645,1;
+ - Id: 14383
+ AegisName: Long_Horn_Box_M
+ Name: Long Horn Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1428,1;
+ - Id: 14384
+ AegisName: Hunting_Spear_Box_M
+ Name: Hunting Spear Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1429,1;
+ - Id: 14385
+ AegisName: Death_Note_Box_M
+ Name: Death Note Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1579,1;
+ - Id: 14386
+ AegisName: Destruction_Box_M
+ Name: Destruction Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2003,1;
+ - Id: 14387
+ AegisName: Rider_Insignia_Box_M
+ Name: Rider Insignia Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2551,1;
+ - Id: 14388
+ AegisName: Mithril_Cape_Box_M
+ Name: Mithril Cape Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2552,1;
+ - Id: 14389
+ AegisName: Sniping_Box_M
+ Name: Sniping Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2398,1;
+ - Id: 14390
+ AegisName: Orleans_Box_M
+ Name: Orleans Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2785,1;
+ - Id: 14391
+ AegisName: Spiritual_Box_M
+ Name: Spiritual Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2786,1;
+ - Id: 14392
+ AegisName: Variant_Box_M
+ Name: Variant Box M
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2449,1;
+ - Id: 14393
+ AegisName: Almighty_Charm_Box
+ Name: Universal Amulet Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7945,1;
+ - Id: 14407
+ AegisName: Xmas_Scroll
+ Name: Xmas Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14408
+ AegisName: New_Year_Scroll
+ Name: New Year Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_New_Year_Scroll);
+ - Id: 14426
+ AegisName: Fortune_Sword_Box
+ Name: Neo Fortune Sword Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13043,86400;
+ - Id: 14427
+ AegisName: House_Auger_Box
+ Name: Neo House Auger
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13044,86400;
+ - Id: 14428
+ AegisName: Kamaitachi_Box
+ Name: Neo Kamaitachi Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13045,86400;
+ - Id: 14429
+ AegisName: Berserk_Guitar_Box
+ Name: Neo Berserk Guitar Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1928,86400;
+ - Id: 14430
+ AegisName: Doom_Slayer_Box
+ Name: Neo Doom Slayer Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 1386,86400;
+ - Id: 14431
+ AegisName: Huuma_Blaze_Shuriken_Box
+ Name: Neo Huuma Blaze Shuriken Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13308,86400;
+ - Id: 14432
+ AegisName: Odin's_Blessing_Box
+ Name: Neo Odin's Blessing Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 15001,86400;
+ - Id: 14433
+ AegisName: Ring_Of_Flame_Lord_Box
+ Name: Neo Ring of Flame Lord Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2792,86400;
+ - Id: 14434
+ AegisName: Ring_Of_Resonance_Box
+ Name: Neo Ring of Resonance Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2793,86400;
+ - Id: 14435
+ AegisName: Boys_Cap_Box
+ Name: Neo Boys Cap Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5492,86400;
+ - Id: 14436
+ AegisName: Ulle's_Cap_Box
+ Name: Neo Ulle's Cap Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5493,86400;
+ - Id: 14437
+ AegisName: Sphinx_Helm_Box
+ Name: Neo Sphinx Helm Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 5494,86400;
+ - Id: 14438
+ AegisName: Honglyun's_Sword_Box
+ Name: Honglyun's Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13420,1;
+ - Id: 14439
+ AegisName: Power_Of_Thor_Box
+ Name: Power Of Thor Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5495,1;
+ - Id: 14440
+ AegisName: Dice_Hat_Box
+ Name: Dice Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5496,1;
+ - Id: 14441
+ AegisName: King_Tiger_Doll_Hat_Box
+ Name: King Tiger Doll Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5497,1;
+ - Id: 14442
+ AegisName: Wondering_Wolf_Helm_Box
+ Name: Wondering Wolf Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5498,1;
+ - Id: 14443
+ AegisName: Pizza_Hat_Box
+ Name: Pizza Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5499,1;
+ - Id: 14444
+ AegisName: Icecream_Hat_Box
+ Name: Icecream Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5500,1;
+ - Id: 14447
+ AegisName: Pirate's_Pride_Box
+ Name: Pirate's Pride Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5501,1;
+ - Id: 14448
+ AegisName: Necromencer's_Hood_Box
+ Name: Necromancer's Hood Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5502,1;
+ - Id: 14459
+ AegisName: Rabbit_Magic_Hat_Box
+ Name: Magic Rabbit Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5503,1;
+ - Id: 14460
+ AegisName: China_Wedding_Veil_Box
+ Name: RO 5th Wedding Anniversary Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5504,1;
+ - Id: 14461
+ AegisName: Asara_Fairy_Hat_Box
+ Name: Ashura Fairy Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5505,1;
+ - Id: 14466
+ AegisName: Valentine_Pledge_Box
+ Name: Valentine's Emblem Box
+ Type: Usable
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Valentine_Pledge_Box);
+ /*rentitem 5817,525600;*/
+ - Id: 14469
+ AegisName: Ox_Tail_Scroll
+ Name: Ox Tail Egg
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Ox_Tail_Scroll);
+ - Id: 14485
+ AegisName: Academy_Badge_Box
+ Name: Academy Badge Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 2751,1;
+ - Id: 14486
+ AegisName: Academy_Fresh_Hat_Box
+ Name: Academy Fresh Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5406,1;
+ - Id: 14487
+ AegisName: Academy_Gradu_Cap_Box
+ Name: Academy Gradu Cap Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5407,1;
+ - Id: 14488
+ AegisName: Blue_Pajamas_Hat_Box
+ Name: Blue Pajamas Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 100
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5506,1;
+ - Id: 14489
+ AegisName: Pink_Pajamas_Hat_Box
+ Name: Pink Pajamas Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 100
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5507,1;
+ - Id: 14490
+ AegisName: Shark_Hat_Box
+ Name: Shark Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5508,1;
+ - Id: 14494
+ AegisName: Samambaia_Box
+ Name: Samambaia Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5511,1;
+ - Id: 14495
+ AegisName: Aquarius_Diadem_Box
+ Name: Aquarius Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5512,1;
+ - Id: 14496
+ AegisName: Aquarius_Crown_Box
+ Name: Aquarius Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5513,1;
+ - Id: 14497
+ AegisName: Pisces_Diadem_Box
+ Name: Pisces Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5514,1;
+ - Id: 14498
+ AegisName: Pisces_Crown_Box
+ Name: Pisces Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5515,1;
+ - Id: 14499
+ AegisName: Peacock_Feather_Box
+ Name: Peacock Feather Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5519,1;
+ - Id: 14500
+ AegisName: Insurance60
+ Name: Life Insurrance Certificate
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LIFEINSURANCE,3600000,0;
+ - Id: 14505
+ AegisName: Dun_1HR_Voucher
+ Name: Dungeon 1 Hour Ticket
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "dali02",117,69;
+ - Id: 14506
+ AegisName: Dun_Voucher
+ Name: Dungeon 1 Hour Ticket
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ select("Invasion of Air Stronghold - Lv. 145 or higher");
+ warp "dali02",117,69;
+ - Id: 14508
+ AegisName: Zeny_Scroll
+ Name: Zeny Pet Egg Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ Zeny += rand(1000,77777);
+ - Id: 14509
+ AegisName: Light_Center_Pot
+ Name: Light Concentration Potion
+ Type: Usable
+ Buy: 800
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,4;
+ - Id: 14510
+ AegisName: Light_Awakening_Pot
+ Name: Light Awakening Potion
+ Type: Usable
+ Buy: 1500
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Archer: true
+ Assassin: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Hunter: true
+ KagerouOboro: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Monk: true
+ Ninja: true
+ Novice: true
+ Rebellion: true
+ Rogue: true
+ Sage: true
+ SoulLinker: true
+ StarGladiator: true
+ Summoner: true
+ SuperNovice: true
+ Swordman: true
+ Taekwon: true
+ Thief: true
+ Wizard: true
+ EquipLevelMin: 40
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,6;
+ - Id: 14511
+ AegisName: Light_Berserk_Pot
+ Name: Light Berserk Potion
+ Type: Usable
+ Buy: 3000
+ Weight: 20
+ Jobs:
+ Alchemist: true
+ Blacksmith: true
+ Crusader: true
+ Gunslinger: true
+ Knight: true
+ Mage: true
+ Merchant: true
+ Rebellion: true
+ Rogue: true
+ SoulLinker: true
+ StarGladiator: true
+ Swordman: true
+ Taekwon: true
+ Wizard: true
+ EquipLevelMin: 85
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,9;
+ - Id: 14512
+ AegisName: Meteor_10_Scroll
+ Name: Meteor Storm Scroll
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "WZ_METEOR",10;
+ - Id: 14513
+ AegisName: Storm_10_Scroll
+ Name: Storm Gust Scroll
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "WZ_STORMGUST",10;
+ - Id: 14514
+ AegisName: Vermilion_10_Scroll
+ Name: Lord of Vermilion Scroll
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "WZ_VERMILION",10;
+ - Id: 14515
+ AegisName: Lex_Aeterna_Scroll
+ Name: Lex Aeterna Scroll
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "PR_LEXAETERNA",1;
+ - Id: 14516
+ AegisName: Magnificat_5_Scroll
+ Name: Magnificat Scroll
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "PR_MAGNIFICAT",5;
+ - Id: 14517
+ AegisName: CP_Helm_Scroll
+ Name: Chemical Protection Helm Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_HELM",5;
+ - Id: 14518
+ AegisName: CP_Shield_Scroll
+ Name: Chemical Protection Shield Scrol
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_SHIELD",5;
+ - Id: 14519
+ AegisName: CP_Armor_Scroll
+ Name: Chemical Protection Armor Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_ARMOR",5;
+ - Id: 14520
+ AegisName: CP_Weapon_Scroll
+ Name: Chemical Protection Weapon Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"AM_CP_WEAPON",5;
+ - Id: 14521
+ AegisName: Repair_Scroll
+ Name: Repair Weapon Scroll
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;
+ - Id: 14522
+ AegisName: Big_Bun
+ Name: Big Bun
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 100,0;
+ - Id: 14523
+ AegisName: Pill_
+ Name: Pill
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 0,100;
+ - Id: 14524
+ AegisName: Superb_Fish_Slice
+ Name: Superb Fish Slice
+ Type: Healing
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 100,100;
+ - Id: 14525
+ AegisName: Chewy_Ricecake
+ Name: Chewy Ricecake
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ATKPOTION,1800000,10;
+ - Id: 14526
+ AegisName: Oriental_Pastry
+ Name: Oriental Pastry
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_MATKPOTION,1800000,10;
+ - Id: 14527
+ AegisName: Dun_Tele_Scroll1
+ Name: Dungeon Teleport Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashDungeon",1;
+ - Id: 14528
+ AegisName: PVP_Tele_Scroll
+ Name: PVP Teleport Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "pvp_n_room",52,25;
+ - Id: 14529
+ AegisName: Greed_Scroll
+ Name: Greed Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "BS_GREED",1;
+ - Id: 14530
+ AegisName: Flee_30_Scroll
+ Name: Evasion Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_FLEEFOOD,1800000,30;
+ - Id: 14531
+ AegisName: Accuracy_30_Scroll
+ Name: Concentration Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_HITFOOD,1800000,30;
+ - Id: 14532
+ AegisName: Battle_Manual25
+ Name: Field Manual 25%
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,25;
+ - Id: 14533
+ AegisName: Battle_Manual100
+ Name: Field Manual 100%
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,3600000,100;
+ - Id: 14534
+ AegisName: Small_Life_Potion
+ Name: Small Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;
+ - Id: 14535
+ AegisName: Med_Life_Potion
+ Name: Medium Life Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_HEAL3;
+ sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;
+ - Id: 14536
+ AegisName: Abrasive
+ Name: Abrasive
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_MAGICALATTHIT;
+ sc_start SC_INCCRI,300000,30;
+ - Id: 14537
+ AegisName: Regeneration_Potion
+ Name: Regeneration Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_LIGHTSPHERE;
+ sc_start SC_INCHEALRATE,1800000,20;
+ - Id: 14538
+ AegisName: Glass_Of_Illusion
+ Name: Glass of Illusion
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 300000
+ Status: Reuse_Limit_A
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_STEAL;
+ sc_start SC_INCFLEE2,60000,20;
+ - Id: 14539
+ AegisName: Shadow_Armor_S
+ Name: Shadow Armor Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_CLOAKING;
+ sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;
+ - Id: 14540
+ AegisName: Holy_Armor_S
+ Name: Holy Armor Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_BENEDICTIO;
+ sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;
+ - Id: 14541
+ AegisName: S_Def_Potion
+ Name: Small Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_DEF_RATE,60000,3;
+ - Id: 14542
+ AegisName: B_Def_Potion
+ Name: Big Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_DEF_RATE,180000,3;
+ - Id: 14543
+ AegisName: S_Mdef_Potion
+ Name: Small Magic Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ sc_start SC_MDEF_RATE,60000,3;
+ - Id: 14544
+ AegisName: B_Mdef_Potion
+ Name: Big Magic Defense Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ sc_start SC_MDEF_RATE,180000,3;
+ - Id: 14545
+ AegisName: Battle_Manual_X3
+ Name: Field Manual 300%
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,300;
+ - Id: 14546
+ AegisName: Fire_Cracker_Love
+ Name: I Love You Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14547
+ AegisName: Fire_Cracker_Wday
+ Name: Whiteday Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14548
+ AegisName: Fire_Cracker_Vday
+ Name: Valentine's Day Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14549
+ AegisName: Fire_Cracker_Bday
+ Name: Birthday Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14550
+ AegisName: Fire_Cracker_Xmas
+ Name: Xmas Firecracker
+ Type: Usable
+ Buy: 2
+ Weight: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14551
+ AegisName: Str_Dish01_
+ Name: Fried Grasshopper Legs
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 14552
+ AegisName: Str_Dish02_
+ Name: Seasoned Sticky Webfoot
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 14553
+ AegisName: Str_Dish03_
+ Name: Bomber Steak
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 14554
+ AegisName: Int_Dish01_
+ Name: Grape Juice Herbal Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,1;
+ percentheal 0,5;
+ - Id: 14555
+ AegisName: Int_Dish02_
+ Name: Autumn Red Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,2;
+ percentheal 0,5;
+ - Id: 14556
+ AegisName: Int_Dish03_
+ Name: Honey Herbal Tea
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,3;
+ percentheal 0,5;
+ - Id: 14557
+ AegisName: Vit_Dish01_
+ Name: Steamed Crab Nippers
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,1;
+ percentheal 5,0;
+ - Id: 14558
+ AegisName: Vit_Dish02_
+ Name: Assorted Seafood
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,2;
+ percentheal 5,0;
+ - Id: 14559
+ AegisName: Vit_Dish03_
+ Name: Clam Soup
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,3;
+ percentheal 5,0;
+ - Id: 14560
+ AegisName: Agi_Dish01_
+ Name: Frog Egg Squid Ink Soup
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,1;
+ percentheal 3,1;
+ - Id: 14561
+ AegisName: Agi_Dish02_
+ Name: Smooth Noodle
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,2;
+ percentheal 3,1;
+ - Id: 14562
+ AegisName: Agi_Dish03_
+ Name: Tentacle Cheese Gratin
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,3;
+ percentheal 3,1;
+ - Id: 14563
+ AegisName: Dex_Dish01_
+ Name: Honey Grape Juice
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,1;
+ percentheal 2,2;
+ - Id: 14564
+ AegisName: Dex_Dish02_
+ Name: Chocolate Mousse Cake
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,2;
+ percentheal 2,2;
+ - Id: 14565
+ AegisName: Dex_Dish03_
+ Name: Fruit Mix
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,3;
+ percentheal 2,2;
+ - Id: 14566
+ AegisName: Luk_Dish01_
+ Name: Fried Monkey Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,1;
+ percentheal 3,2;
+ - Id: 14567
+ AegisName: Luk_Dish02_
+ Name: Mixed Juice
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,2;
+ percentheal 3,2;
+ - Id: 14568
+ AegisName: Luk_Dish03_
+ Name: Fried Sweet Potato
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,3;
+ percentheal 4,2;
+ - Id: 14569
+ AegisName: Knife_Goblin_Ring
+ Name: Knife Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1122;
+ - Id: 14570
+ AegisName: Flail_Goblin_Ring
+ Name: Flail Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1123;
+ - Id: 14571
+ AegisName: Hammer_Goblin_Ring
+ Name: Hammer Goblin Ring
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1125;
+ - Id: 14572
+ AegisName: Holy_Marble
+ Name: Holy Marble
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1385;
+ - Id: 14573
+ AegisName: Red_Burning_Stone
+ Name: Red Burning Stone
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ pet 1382;
+ - Id: 14574
+ AegisName: Skull_Of_Vagabond
+ Name: Vagabond's Skull
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ Script: |
+ pet 1208;
+ - Id: 14575
+ AegisName: Str_Dish05_
+ Name: Lutie Lady's Pancake
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_STRFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 14576
+ AegisName: Int_Dish05_
+ Name: Mastela Fruit Wine
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_INTFOOD,1200000,5;
+ percentheal 0,10;
+ - Id: 14577
+ AegisName: Vit_Dish05_
+ Name: Spicy Fried Bao
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_VITFOOD,1200000,5;
+ percentheal 10,0;
+ - Id: 14578
+ AegisName: Agi_Dish05_
+ Name: Steamed Bat Wing in Pumpkin
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_AGIFOOD,1200000,5;
+ percentheal 6,2;
+ - Id: 14579
+ AegisName: Dex_Dish05_
+ Name: Green Salad
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_DEXFOOD,1200000,5;
+ percentheal 5,5;
+ - Id: 14580
+ AegisName: Luk_Dish05_
+ Name: Fried Scorpion Tails
+ Type: Healing
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_LUKFOOD,1200000,5;
+ percentheal 5,2;
+ - Id: 14581
+ AegisName: Dun_Tele_Scroll2
+ Name: Dungeon Teleport Scroll II
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashDungeon",2;
+ - Id: 14582
+ AegisName: WOB_Rune
+ Name: Yellow Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",1;
+ - Id: 14583
+ AegisName: WOB_Schwaltz
+ Name: Green Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",2;
+ - Id: 14584
+ AegisName: WOB_Rachel
+ Name: Red Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",3;
+ - Id: 14585
+ AegisName: WOB_Local
+ Name: Blue Butterfly Wing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashCity",4;
+ - Id: 14586
+ AegisName: Spark_Candy
+ Name: Jumping Candy
+ Type: Usable
+ Weight: 10
+ Delay:
+ Duration: 180000
+ Status: Reuse_Limit_B
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14587
+ AegisName: Repair_Scroll_
+ Name: Equipment Repair Spell Book
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "BS_REPAIRWEAPON",1;
+ - Id: 14588
+ AegisName: Pty_Blessing_Scroll
+ Name: Party Blessing 10 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "CASH_BLESSING",10;
+ - Id: 14589
+ AegisName: Pty_Inc_Agi_Scroll
+ Name: Party Increase Agi 10 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "CASH_INCAGI",10;
+ - Id: 14590
+ AegisName: Pty_Assumptio_Scroll
+ Name: Party Assumptio 5 Scroll
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "CASH_ASSUMPTIO",5;
+ - Id: 14591
+ AegisName: Siege_Teleport_Scroll
+ Name: WoE Teleport Scroll
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashSiegeTele";
+ - Id: 14592
+ AegisName: Job_Manual50
+ Name: JOB Battle Manual
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_JEXPBOOST,1800000,50;
+ - Id: 14593
+ AegisName: Magic_Power_Scroll
+ Name: Mystical Amplification Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "HW_MAGICPOWER",10;
+ - Id: 14594
+ AegisName: Quagmire_Scroll
+ Name: Quagmire Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "WZ_QUAGMIRE",5;
+ - Id: 14595
+ AegisName: Unsealed_Magic_Spell
+ Name: Unsealed Magic Spell
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "yuno_fild09",255,127;
+ - Id: 14596
+ AegisName: Pierre_Treasurebox
+ Name: Pierre's Treasure Box
+ Type: Usable
+ Weight: 100
+ 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);
+ - Id: 14597
+ AegisName: PhreeoniS
+ Name: Phreeoni Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;
+ - Id: 14598
+ AegisName: GhostringS
+ Name: Ghostring Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;
+ - Id: 14599
+ AegisName: Greed_Scroll_C
+ Name: Greed Scroll
+ Type: Delayconsume
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "BS_GREED",1;
+ - Id: 14600
+ AegisName: Mental_Potion
+ Name: Mental Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800;
+ - Id: 14601
+ AegisName: Tyr's_Blessing
+ Name: Tyr's Blessing
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14602
+ AegisName: TaogunkaS
+ Name: Tao Gunka Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14603
+ AegisName: MistressS
+ Name: Mistress Scroll
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_LIGHTSPHERE;
+ bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD;
+ - Id: 14606
+ AegisName: Job_Manual25
+ Name: JOB Battle Manual
+ Type: Usable
+ Weight: 10
+ NoUse:
+ Override: 100
+ Sitting: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_JEXPBOOST,1800000,25;
+ - Id: 14607
+ AegisName: Luxurious_Dinner_W
+ Name: Luxurious Western Food
+ Type: Usable
+ Buy: 10000
+ Weight: 600
+ Script: |
+ sc_start SC_INCALLSTATUS,3600000,3;
+ - Id: 14608
+ AegisName: Luxurious_Dinner_E
+ Name: Manchu-Han Imperial Feast
+ Type: Usable
+ Buy: 20000
+ Weight: 1200
+ Script: |
+ sc_start SC_INCALLSTATUS,3600000,6;
+ - Id: 14609
+ AegisName: Spoiled_Cuisine
+ Name: Spoiled Cuisine
+ Type: Usable
+ Buy: 5000
+ Weight: 300
+ Script: |
+ percentheal 10,10;
+ - Id: 14611
+ AegisName: M_Def_Potion
+ Name: M Def Potion
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_GUARD;
+ sc_start SC_DEF_RATE,120000,3;
+ - Id: 14612
+ AegisName: M_Mdef_Potion
+ Name: M Mdef Potion
+ Type: Delayconsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ specialeffect2 EF_SPELLBREAKER;
+ sc_start SC_MDEF_RATE,120000,3;
+ - Id: 14613
+ AegisName: RWC_Scroll_2012
+ Name: RWC Scroll 2012
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_Scroll_2012);
+ - Id: 14614
+ AegisName: Ex_Def_Potion
+ Name: Ex Def Potion
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 1
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getitem callfunc("F_Rand",Devilring card, Angeling card, 11 weapons smelting ticket, armor smelting 11 ticket , horns of the buffalo, ring of recovery, pink bunny costume hair band)*/
+ - Id: 14624
+ AegisName: Blue_Scroll
+ Name: Blue Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Blue_Scroll);
+ - Id: 14626
+ AegisName: Indigo_Scroll
+ Name: Indigo Scroll
+ Type: Usable
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Indigo_Scroll);
+ - Id: 14627
+ AegisName: Christmas_Scroll
+ Name: Christmas Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14628
+ AegisName: Costume_Festival_Box
+ Name: Costume Festival Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14629
+ AegisName: Costume_Enchantment_Stone_Box
+ Name: Costume Enchantment Stone Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1;
+ - Id: 14643
+ AegisName: Violet_Scroll
+ Name: Violet Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Violet_Scroll);
+ - Id: 14663
+ AegisName: Scroll_Sealed_Dark_Lord
+ Name: Scroll Sealed Dark Lord
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 14664
+ AegisName: Bi_Hwang_Scroll
+ Name: Bi Hwang Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Bi_Hwang_Scroll);
+ - Id: 14665
+ AegisName: Jung_Bi_Scroll
+ Name: Jung Bi Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Jung_Bi_Scroll);
+ - Id: 14666
+ AegisName: Je_Un_Scroll
+ Name: Je Un Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Je_Un_Scroll);
+ - Id: 14667
+ AegisName: Yong_Kwang_Scroll
+ Name: Yong Kwang Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Yong_Kwang_Scroll);
+ - Id: 14672
+ AegisName: Steel_Fighter_Scroll_Lv20
+ Name: Steel Fighter Scroll (Lv20)
+ Type: Healing
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14673
+ AegisName: Steel_Fighter_Scroll_Lv25
+ Name: Steel Fighter Scroll (Lv25)
+ Type: Healing
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14674
+ AegisName: Cup_Of_Boza
+ Name: Cup Of Boza
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14679
+ AegisName: Article_Sealed_Storm_Scroll
+ Name: Article Sealed Storm Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14681
+ AegisName: Costume_Enchantment_Stone_Box_II
+ Name: Costume Enchantment Stone Box II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ - Id: 14682
+ AegisName: Sealed_Beelzebub_Scroll
+ Name: Sealed Beelzebub Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14689
+ AegisName: Sealed_Kiel-D-01_Scroll
+ Name: Sealed Kiel-D-01 Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14695
+ 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;
+ - Id: 14696
+ AegisName: Sealed_Gloom_Under_Night_Gachapon
+ Name: Sealed Gloom Under Night Gachapon
+ Type: Cash
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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);*/
+ - Id: 14699
+ AegisName: Garuda_Scroll
+ Name: Memorial Garuda Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Garuda_Scroll);
+ - Id: 14701
+ AegisName: TW_13y_Lucky_Egg_06
+ Name: Midgard Immortal Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_TW_13y_Lucky_Egg_06);
+ - Id: 14704
+ AegisName: Gemstone_Shadow_Box
+ Name: Gemstone Shadow Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */
+ - Id: 14717
+ AegisName: 2013_RWC_Scroll
+ Name: 2013 RWC Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_2013_RWC_Scroll);
+ - Id: 14718
+ AegisName: Scroll_Turtle_General_Sealed
+ Name: Scroll Turtle General Sealed
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: Confirm the rates*/
+ getitem callfunc("F_Rand",6228,6232,19751,14695),1;
+ - Id: 14723
+ AegisName: Limited_Neuralizer_I
+ Name: (Limited)Neuralizer I
+ Type: Delayconsume
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashReset";
+ - Id: 14724
+ AegisName: Limited_Neuralizer_II
+ Name: (Limited)Neuralizer II
+ Type: Delayconsume
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashReset";
+ - Id: 14725
+ AegisName: Sealed_Bacsojin_Scroll
+ Name: Sealed Bacsojin Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: No clue yet*/
+ - Id: 14731
+ AegisName: Teleport_Shadow_Box
+ Name: Teleport Shadow Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: Confirm the rates*/
+ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1;
+ - Id: 14735
+ AegisName: Costama_Egg22
+ Name: Shapeshifter Costume
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Shapeshifter_Costume);
+ - Id: 14739
+ AegisName: Sealed_General_Egnigem_Cenia_Scroll
+ Name: Sealed General Egnigem Cenia Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: Confirm the rates*/
+ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1;
+ - Id: 14740
+ AegisName: Sealed_Vesper_Scroll
+ Name: Sealed Vesper Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 14741
+ AegisName: Imortal_Midgard_Scroll
+ Name: Midgard Celebration Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Imortal_Midgard_Scroll);
+ - Id: 14753
+ AegisName: Hero_Midgard_Egg
+ Name: Hero Midgard Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Hero_Midgard_Egg);
+ - Id: 14758
+ AegisName: Safe_To_Smelting_Scroll
+ Name: Safe To Smelting Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1;
+ - Id: 14765
+ AegisName: Limited_Edition_JOB_Battle_Manual
+ Name: Limited Edition JOB Battle Manual
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_JEXPBOOST,3600000,35;
+ - Id: 14766
+ AegisName: Limited_Power_Booster
+ Name: Limited Power Booster
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;
+ - Id: 14805
+ AegisName: July_Lucky_Scroll
+ Name: Almighty Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_July_Lucky_Scroll);
+ - Id: 16131
+ AegisName: Lady_Tanee_Doll_Box
+ Name: Lady Tanee Doll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5526,1;
+ - Id: 16132
+ AegisName: Lunatic_Hat_Box
+ Name: Lunatic Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5527,1;
+ - Id: 16133
+ AegisName: G_Staff_Of_Light_Box
+ Name: Staff Of Light Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2006,1;
+ - Id: 16134
+ AegisName: King_Frog_Hat_Box
+ Name: Frog King Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5528,1;
+ - Id: 16135
+ AegisName: Evil's_Bone_Hat_Box
+ Name: Satanic Bone Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5529,1;
+ - Id: 16185
+ AegisName: Raven_Cap_Box
+ Name: Raven Cap Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5530,1;
+ - Id: 16186
+ AegisName: B_Dragon_Hat_Box
+ Name: Baby Dragon Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5531,1;
+ - Id: 16192
+ AegisName: Quati_Hat_Box
+ Name: Kwati Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5537,1;
+ - Id: 16193
+ AegisName: Tucan_Hat_Box
+ Name: Tucan Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5538,1;
+ - Id: 16194
+ AegisName: Jaguar_Hat_Box
+ Name: Jaguar Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5539,1;
+ - Id: 16195
+ AegisName: Tw_March_Scroll
+ Name: Tw March Scroll
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16226
+ AegisName: Aries_Diadem_Box
+ Name: Aries Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5545,1;
+ - Id: 16227
+ AegisName: Aries_Crown_Box
+ Name: Aries Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5546,1;
+ - Id: 16228
+ AegisName: RJC_Katusa_Box
+ Name: RJC Katusa Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5547,1;
+ - Id: 16229
+ AegisName: Scarlet_Rose_Box
+ Name: Scarlet Rose Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5548,1;
+ - Id: 16230
+ AegisName: Taurus_Diadem_Box
+ Name: Taurus Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5549,1;
+ - Id: 16231
+ AegisName: Taurus_Crown_Box
+ Name: Taurus Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5550,1;
+ - Id: 16232
+ AegisName: Reginleif_Box
+ Name: Reginleif Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoSell: true
+ NoCart: true
+ Script: |
+ getitem 5471,1;
+ - Id: 16235
+ AegisName: Octopus_Hat_Box
+ Name: Octopus Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5554,1;
+ - Id: 16236
+ AegisName: Leaf_Cat_Hat_Box
+ Name: Leaf Cat Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5555,1;
+ - Id: 16237
+ AegisName: Fur_Seal_Hat_Box
+ Name: Fur Seal Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5556,1;
+ - Id: 16238
+ AegisName: Wild_Rose_Hat_Box
+ Name: Wild Rose Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5557,1;
+ - Id: 16239
+ AegisName: Saci_Hat_Box
+ Name: Saci Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5558,1;
+ - Id: 16244
+ AegisName: Dolor_Hat_Box
+ Name: Dolor Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5563,1;
+ - Id: 16245
+ AegisName: Tw_April_Scroll
+ Name: Tw April Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_April_Scroll);
+ - Id: 16246
+ AegisName: Crown_Of_Deceit_Box
+ Name: Crown Of Deceit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5564,1;
+ - Id: 16247
+ AegisName: Dragon_Arhat_Mask_Box
+ Name: Dragon Arhat Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5565,1;
+ - Id: 16248
+ AegisName: Tiger_Arhat_Mask_Box
+ Name: Tiger Arhat Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5566,1;
+ - Id: 16249
+ AegisName: Knight_Gift_Box
+ Name: Knight Gift Box
+ Type: Usable
+ Flags:
+ UniqueId: true
+ - Id: 16250
+ AegisName: Valkyrie's_Gift_Box
+ Name: Valkyrie's Gift Box
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 1
+ Script: |
+ getitem 5826,1;
+ - Id: 16251
+ AegisName: Gemini_Diadem_Box
+ Name: Gemini Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5569,1;
+ - Id: 16252
+ AegisName: Gemini_Crown_Box
+ Name: Gemini Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5570,1;
+ - Id: 16253
+ AegisName: Rabbit_Scroll
+ Name: Rabbit Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16254
+ AegisName: Energizing_Potion_Box
+ Name: Energizing Potion Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16257
+ AegisName: Buddah_Scroll
+ Name: Buddah Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Buddah_Scroll);
+ - Id: 16258
+ AegisName: HD_Bradium_Box5
+ Name: HD Bradium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,5;
+ - Id: 16259
+ AegisName: HD_Carnium_Box5
+ Name: HD Carnium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,5;
+ - Id: 16260
+ AegisName: HD_Bradium_Box10
+ Name: HD Bradium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,10;
+ - Id: 16261
+ AegisName: HD_Carnium_Box10
+ Name: HD Carnium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,10;
+ - Id: 16262
+ AegisName: F_HD_Bradium_Box5
+ Name: HD Bradium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,5;
+ - Id: 16263
+ AegisName: F_HD_Carnium_Box5
+ Name: HD Carnium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,5;
+ - Id: 16264
+ AegisName: HD_Bradium_10_Box2
+ Name: HD Bradium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6226,10;
+ - Id: 16265
+ AegisName: HD_Carnium_10_Box2
+ Name: HD Carnium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6225,10;
+ - Id: 16266
+ AegisName: Indonesia_Beret_Box
+ Name: Indonesia Beret Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getitem 5580,1;
+ - Id: 16267
+ AegisName: HE_Battle_Manual_Box
+ Name: HE Battle Manual Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12411,10;
+ - Id: 16268
+ AegisName: HE_Bubble_Gum_Box
+ Name: HE Bubble Gum Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 12412,10;
+ - Id: 16269
+ AegisName: Cancer_Diadem_Box
+ Name: Cancer Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5581,1;
+ - Id: 16270
+ AegisName: Cancer_Crown_Box
+ Name: Cancer Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5582,1;
+ - Id: 16304
+ AegisName: Evil_Incarnation_Disable
+ Name: Evil Incarnation
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Evil_Incarnation);
+ - Id: 16305
+ AegisName: Upg_Guard_Box
+ Name: Upg Guard Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2149,1;
+ - Id: 16306
+ AegisName: F_Upg_Guard_Box
+ Name: F Upg Guard Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2149,1;
+ - Id: 16307
+ AegisName: Upg_Buckler_Box
+ Name: Upg Buckler Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2150,1;
+ - Id: 16308
+ AegisName: F_Upg_Buckler_Box
+ Name: F Upg Buckler Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2150,1;
+ - Id: 16309
+ AegisName: Upg_Shield_Box
+ Name: Upg Shield Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2151,1;
+ - Id: 16310
+ AegisName: F_Upg_Shield_Box
+ Name: F Upg Shield Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2151,1;
+ - Id: 16311
+ AegisName: Upg_Shoes_Box
+ Name: Upg Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2459,1;
+ - Id: 16312
+ AegisName: F_Upg_Shoes_Box
+ Name: F Upg Shoes Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2459,1;
+ - Id: 16313
+ AegisName: Upg_Boots_Box
+ Name: Upg Boots Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2460,1;
+ - Id: 16314
+ AegisName: F_Upg_Boots_Box
+ Name: F Upg Boots Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2460,1;
+ - Id: 16315
+ AegisName: Upg_Greave_Box
+ Name: Upg Greave Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2461,1;
+ - Id: 16316
+ AegisName: F_Upg_Greave_Box
+ Name: F Upg Greave Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2461,1;
+ - Id: 16317
+ AegisName: Upg_Hood_Box
+ Name: Upg Hood Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2561,1;
+ - Id: 16318
+ AegisName: F_Upg_Hood_Box
+ Name: F Upg Hood Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2561,1;
+ - Id: 16319
+ AegisName: Upg_Muffler_Box
+ Name: Upg Muffler Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2562,1;
+ - Id: 16320
+ AegisName: F_Upg_Muffler_Box
+ Name: F Upg Muffler Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2562,1;
+ - Id: 16321
+ AegisName: Upg_Manteau_Box
+ Name: Upg Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2563,1;
+ - Id: 16322
+ AegisName: F_Upg_Manteau_Box
+ Name: F Upg Manteau Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2563,1;
+ - Id: 16323
+ AegisName: Upg_Clip_Box
+ Name: Upg Clip Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2828,1;
+ - Id: 16324
+ AegisName: F_Upg_Clip_Box
+ Name: F Upg Clip Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2828,1;
+ - Id: 16327
+ AegisName: Upg_Adv_Suit_Box
+ Name: Upg Adv Suit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15015,1;
+ - Id: 16328
+ AegisName: F_Upg_Adv_Suit_Box
+ Name: F Upg Adv Suit Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15015,1;
+ - Id: 16329
+ AegisName: Upg_Coat_Box
+ Name: Upg Coat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15016,1;
+ - Id: 16330
+ AegisName: F_Upg_Coat_Box
+ Name: F Upg Coat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15016,1;
+ - Id: 16331
+ AegisName: Upg_Saint_Robe_Box
+ Name: Upg Saint Robe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15017,1;
+ - Id: 16332
+ AegisName: F_Upg_Saint_Robe_Box
+ Name: F Upg Saint Robe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15017,1;
+ - Id: 16333
+ AegisName: Upg_Tights_Box
+ Name: Upg Tights Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15018,1;
+ - Id: 16334
+ AegisName: F_Upg_Tights_Box
+ Name: F Upg Tights Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15018,1;
+ - Id: 16335
+ AegisName: Upg_Thief_Cloth_Box
+ Name: Upg Thief Cloth Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15019,1;
+ - Id: 16336
+ AegisName: F_Upg_Thief_Cloth_Box
+ Name: F Upg Thief Cloth Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15019,1;
+ - Id: 16337
+ AegisName: Upg_Mail_Box
+ Name: Upg Mail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15020,1;
+ - Id: 16338
+ AegisName: F_Upg_Mail_Box
+ Name: F Upg Mail Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15020,1;
+ - Id: 16339
+ AegisName: Upg_Formal_Dress_Box
+ Name: Upg Formal Dress Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15021,1;
+ - Id: 16340
+ AegisName: F_Upg_Formal_Dress_Box
+ Name: F Upg Formal Dress Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 15021,1;
+ - Id: 16341
+ AegisName: Greed_Clip_Box
+ Name: Greed Clip Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 2829,1;
+ - Id: 16342
+ AegisName: F_Greed_Clip_Box
+ Name: F Greed Clip Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 2829,1;
+ - Id: 16343
+ AegisName: Leo_Crown_Box
+ Name: Leo Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5588,1;
+ - Id: 16344
+ AegisName: Leo_Diadem_Box
+ Name: Leo Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5589,1;
+ - Id: 16345
+ AegisName: F_Leo_Crown_Box
+ Name: F Leo Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5588,1;
+ - Id: 16346
+ AegisName: F_Leo_Diadem_Box
+ Name: F Leo Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5589,1;
+ - Id: 16360
+ AegisName: Desert_Prince_Box
+ Name: Desert Prince Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5591,1;
+ - Id: 16361
+ AegisName: FDesert_Prince_Box
+ Name: FDesert Prince Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5591,1;
+ - Id: 16362
+ AegisName: Sigrun's_Wing_Box
+ Name: Sigrun's Wing Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5592,1;
+ - Id: 16363
+ AegisName: FSigrun's_Wing_Box
+ Name: FSigrun's Wing Box
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5592,1;
+ - Id: 16368
+ AegisName: Virgo_Crown_Box
+ Name: Virgo Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5598,1;
+ - Id: 16371
+ AegisName: Tw_Aug_Scroll
+ Name: Tw Aug Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Aug_Scroll);
+ - Id: 16372
+ AegisName: F_Clover_Box_Mouth
+ Name: F Clover Box Mouth
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_F_Clover_Box_Mouth);
+ /*rentitem 4Leaf_Clover_In_Mouth,3600;*/
+ - Id: 16374
+ AegisName: Mouth_Bubble_Gum_Box
+ Name: Mouth Bubble Gum Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,30;
+ - Id: 16379
+ AegisName: Siege_Teleport_Scroll_Silver_10Box
+ Name: Siege Teleport Scroll Silver 10Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12415,10;
+ - Id: 16380
+ AegisName: Siege_Teleport_Scroll_Silver_30Box
+ Name: Siege Teleport Scroll Silver 30Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12415,30;
+ - Id: 16381
+ AegisName: WoE_Teleport_Scroll_100_Box
+ Name: WoE Teleport Scroll 100 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12444,100;
+ - Id: 16382
+ AegisName: WoE_Teleport_Scroll_30_Box
+ Name: WoE Teleport Scroll 30 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12444,30;
+ - Id: 16385
+ AegisName: F_Clover_Box_Mouth2
+ Name: F Clover Box Mouth2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_F_Clover_Box_Mouth2);
+ /*rentitem 4Leaf_Clover_In_Mouth,7200;*/
+ - Id: 16386
+ AegisName: F_Clover_Box_Mouth4
+ Name: F Clover Box Mouth4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_F_Clover_Box_Mouth4);
+ /*rentitem 4Leaf_Clover_In_Mouth,14400;*/
+ - Id: 16389
+ AegisName: BGum_Box_In_Mouth2
+ Name: BGum Box In Mouth2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_BGum_Box_In_Mouth2);
+ /*rentitem Bubble_Gum_In_Mouth,7200;*/
+ - Id: 16390
+ AegisName: BGum_Box_In_Mouth4
+ Name: BGum Box In Mouth4
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_BGum_Box_In_Mouth4);
+ /*rentitem Bubble_Gum_In_Mouth,14400;*/
+ - Id: 16393
+ AegisName: HD_Ori_Box5
+ Name: HD Oridecon 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6240,5;
+ - Id: 16394
+ AegisName: HD_Ori_Box10
+ Name: HD Oridecon 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6240,10;
+ - Id: 16395
+ AegisName: HD_Elu_Box5
+ Name: HD Elunium 5 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6241,5;
+ - Id: 16396
+ AegisName: HD_Elu_Box10
+ Name: HD Elunium 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6241,10;
+ - Id: 16397
+ AegisName: Virgo_Diadem_Box
+ Name: Virgo Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5599,1;
+ - Id: 16398
+ AegisName: Virgo_Crown_Box_
+ Name: Virgo Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5598,1;
+ - Id: 16399
+ AegisName: Virgo_Diadem_Box_
+ Name: Virgo Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5599,1;
+ - Id: 16405
+ AegisName: Midgard_Coin_Box_
+ Name: Midgard Coin Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6242,1;
+ - Id: 16406
+ AegisName: FMidgard_Coin_Box
+ Name: FMidgard Coin Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6242,1;
+ - Id: 16409
+ AegisName: Tw_Sep_Scroll
+ Name: Tw Sep Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Sep_Scroll);
+ - Id: 16410
+ AegisName: Chung_Hairband_Box
+ Name: Chung Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5609,1;
+ - Id: 16411
+ AegisName: FChung_Hairband_Box
+ Name: FChung Hairband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5609,1;
+ - Id: 16412
+ AegisName: Ice_Wing_Ear_Box
+ Name: Ice Wing Ear Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5610,1;
+ - Id: 16413
+ AegisName: FIce_Wing_Ear_Box
+ Name: FIce Wing Ear Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5610,1;
+ - Id: 16414
+ AegisName: Turtle_Hat_Box
+ Name: Turtle Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5611,1;
+ - Id: 16415
+ AegisName: FTurtle_Hat_Box
+ Name: FTurtle Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5611,1;
+ - Id: 16418
+ AegisName: Giant_Fly_Wing_Box_500
+ Name: Giant Fly Wing Box 500
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem 12212,500;
+ - Id: 16419
+ AegisName: Greed_Scroll_Box_30
+ Name: Greed Scroll Box 30
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem 14529,30;
+ - Id: 16420
+ AegisName: Adventurer_Pack
+ Name: Adventurer Pack
+ Type: Usable
+ 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;
+ - Id: 16421
+ AegisName: Written_Oath_Of_Marriage_Box
+ Name: Written Oath Of Marriage Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem 6026,1;
+ - Id: 16422
+ AegisName: Magestic_Goat_Box_
+ Name: Magestic Goat Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 5280,604800;
+ - Id: 16423
+ AegisName: Episode_13.1_Key_Package
+ Name: Episode 13.1 Key Package
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem 7782,1;
+ getitem 12208,2;
+ getitem 14582,10;
+ - Id: 16424
+ AegisName: Executioner_Box_
+ Name: Executioner Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 1174,604800;
+ - Id: 16425
+ AegisName: Cutlus_Box
+ Name: Cutlus Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 13402,604800;
+ - Id: 16426
+ AegisName: Moonlight_Dagger_Box
+ Name: Moonlight Dagger Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 13026,604800;
+ - Id: 16427
+ AegisName: Wrench_Box
+ Name: Wrench Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 1534,604800;
+ - Id: 16428
+ AegisName: Solar_Sword_Box_
+ Name: Solar Sword Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 13403,604800;
+ - Id: 16429
+ AegisName: Tomahawk_Box_
+ Name: Tomahawk Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 1374,604800;
+ - Id: 16430
+ AegisName: Rudra_Bow_Box
+ Name: Rudra Bow Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 1729,604800;
+ - Id: 16431
+ AegisName: Pole_Axe_Box_
+ Name: Pole Axe Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ rentitem 1419,604800;
+ - Id: 16436
+ AegisName: Libra_Crown_Box
+ Name: Libra Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5662,1;
+ - Id: 16437
+ AegisName: Libra_Crown_Box_
+ Name: Libra Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5662,1;
+ - Id: 16438
+ AegisName: Libra_Diadem_Box
+ Name: Libra Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5663,1;
+ - Id: 16439
+ AegisName: Libra_Diadem_Box_
+ Name: Libra Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5663,1;
+ - Id: 16440
+ AegisName: Filir_Wing_Box
+ Name: Filir Wing Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5664,1;
+ - Id: 16446
+ AegisName: Tw_October_Scroll
+ Name: Tw October Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_October_Scroll);
+ - Id: 16447
+ AegisName: Scorpio_Crown_Box
+ Name: Scorpio Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5676,1;
+ - Id: 16448
+ AegisName: Scorpio_Diadem_Box
+ Name: Scorpio Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5677,1;
+ - Id: 16449
+ AegisName: Scorpio_Crown_Box_
+ Name: Scorpio Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5676,1;
+ - Id: 16450
+ AegisName: FScorpio_Diadem_Box
+ Name: FScorpio Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5677,1;
+ - Id: 16456
+ AegisName: My_Scroll1
+ Name: My Scroll1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_My_Scroll1);
+ - Id: 16457
+ AegisName: Tw_Nov_Scroll
+ Name: Tw Nov Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Nov_Scroll);
+ - Id: 16461
+ AegisName: Red_Wing_Hat_Box
+ Name: Red Wing Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5690,1;
+ - Id: 16462
+ AegisName: FRed_Wing_Hat_Box
+ Name: FRed Wing Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5690,1;
+ - Id: 16466
+ AegisName: My_Scroll2
+ Name: My Scroll2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_My_Scroll2);
+ - Id: 16481
+ AegisName: Small_Life_Potion_Box_10
+ Name: Small Life Potion Box (10)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12516,10;
+ - Id: 16483
+ AegisName: Abrasive_Box_10
+ Name: Abrasive Box (10)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12514,10;
+ - Id: 16503
+ AegisName: E_Insurance_Package
+ Name: E Insurance Package
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12209,10;
+ - Id: 16504
+ AegisName: Bubble_Gum_Box_10
+ Name: Bubble Gum Box(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12210,10;
+ - Id: 16505
+ AegisName: Steamed_Tongue_Box_10
+ Name: Steamed Tongue Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12501,10;
+ - Id: 16506
+ AegisName: Steamed_Desert_Scorpions_Box_10
+ Name: Steamed Desert Scorpions Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12502,10;
+ - Id: 16507
+ AegisName: Dragon_Breath_Cocktail_Box_10
+ Name: Dragon Breath Cocktail Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12503,10;
+ - Id: 16508
+ AegisName: Hwergelmir's_Tonic_Box_10
+ Name: Hwergelmir's Tonic Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12504,10;
+ - Id: 16509
+ AegisName: Cooked_Nine_Tail_Box_10
+ Name: Cooked Nine Tail Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12505,10;
+ - Id: 16510
+ AegisName: Immortal_Stew_Box_10
+ Name: Immortal Stew Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12506,10;
+ - Id: 16514
+ AegisName: Blessing_Scroll_Box_10
+ Name: Blessing Scroll Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12522,10;
+ - Id: 16515
+ AegisName: Increase_Agility_Scroll_Box_10
+ Name: Increase Agility Scroll Box (10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12523,10;
+ - Id: 16542
+ AegisName: Xmas_Bless
+ Name: Xmas Bless
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Xmas_Bless);
+ - Id: 16543
+ AegisName: Snowman_Hat_Box
+ Name: Snowman Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5738,1;
+ - Id: 16544
+ AegisName: FSnowman_Hat_Box
+ Name: FSnowman Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5738,1;
+ - Id: 16548
+ AegisName: Sagittarius_Crown_Box
+ Name: Sagittarius Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5739,1;
+ - Id: 16549
+ AegisName: Sagittarius_Diadem_Box
+ Name: Sagittarius Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5740,1;
+ - Id: 16550
+ AegisName: Sagittarius_Crown_Box_
+ Name: Sagittarius Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5739,1;
+ - Id: 16551
+ AegisName: Sagittarius_Diadem_Box_
+ Name: Sagittarius Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5740,1;
+ - Id: 16554
+ AegisName: Elven_Sunglasses_Box
+ Name: Elven Sunglasses Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem 5245,1;
+ - Id: 16555
+ AegisName: Pr_Reset_Stone_Box
+ Name: Pr Reset Stone Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Pr_Reset_Stone_Box);*/
+ getitem 6320,1;
+ - Id: 16556
+ AegisName: FPremium_Reset_Stone_Box
+ Name: Reset Stone Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ /*getgroupitem(IG_FPr_Reset_Stone_Box);*/
+ getitem 6320,1;
+ - Id: 16557
+ AegisName: CP_Helm_Scroll10
+ Name: CP Helm Scroll10
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14517,10;
+ - Id: 16558
+ AegisName: CP_Shield_Scroll10
+ Name: CP Shield Scroll10
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14518,10;
+ - Id: 16559
+ AegisName: CP_Armor_Scroll10
+ Name: CP Armor Scroll10
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14519,10;
+ - Id: 16560
+ AegisName: CP_Weapon_Scroll10
+ Name: CP Weapon Scroll10
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14520,10;
+ - Id: 16561
+ AegisName: CP_Scroll_Package
+ Name: CP Scroll Package
+ Type: Usable
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16562
+ AegisName: Majestic_Devil_Scroll
+ Name: Majestic Devil Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Majestic_Devil_Scroll);
+ - Id: 16563
+ AegisName: BM100_Box_5
+ Name: BM100 Box 5
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14533,5;
+ - Id: 16565
+ AegisName: Capricorn_Crown_Box
+ Name: Capricorn Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5744,1;
+ - Id: 16566
+ AegisName: Capricorn_Crown_Box_
+ Name: Capricorn Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5744,1;
+ - Id: 16567
+ AegisName: Capricorn_Diadem_Box
+ Name: Capricorn Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5745,1;
+ - Id: 16568
+ AegisName: FCapricorn_Diadem_Box
+ Name: FCapricorn Diadem Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5745,1;
+ - Id: 16569
+ AegisName: Summer_Scroll
+ Name: Summer Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ UniqueId: true
+ - Id: 16571
+ AegisName: Rice_Ball_Hat_Box
+ Name: Rice Ball Hat Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getitem 5575,1;
+ - Id: 16576
+ AegisName: Illusion_Nothing
+ Name: Illusion Nothing
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Illusion_Nothing);
+ - Id: 16577
+ AegisName: Dragon_Captain
+ Name: Dragon Captain
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16582
+ AegisName: Red_Bunny_Band_Box
+ Name: Red Bunny Band Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5763,1;
+ - Id: 16584
+ AegisName: Sloth_Hat_Box
+ Name: Sloth Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5761,1;
+ - Id: 16585
+ AegisName: F_Sloth_Hat_Box
+ Name: F Sloth Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5761,1;
+ - Id: 16586
+ AegisName: Duneyrr_Helm_Box
+ Name: Duneyrr Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5762,1;
+ - Id: 16587
+ AegisName: F_Duneyrr_Helm_Box
+ Name: F Duneyrr Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5762,1;
+ - Id: 16588
+ AegisName: Thoughtful_Hat_Box
+ Name: Thoughtful Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
+ - Id: 16589
+ AegisName: Thoughtful_Hat_Box_
+ Name: Thoughtful Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
+ - Id: 16590
+ AegisName: Thoughtful_Hat_Box__
+ Name: Thoughtful Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
+ - Id: 16598
+ AegisName: Activation_Potion_Box_II
+ Name: Activation Potion Box II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16600
+ AegisName: Spring_Flower_Scr_Tw
+ Name: Spring Flower Scr Tw
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16601
+ AegisName: Blue_Arara_Hat_Box
+ Name: Blue Arara Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5778,1;
+ - Id: 16602
+ AegisName: F_Blue_Arara_Hat_Box
+ Name: F Blue Arara Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5778,1;
+ - Id: 16603
+ AegisName: Drooping_Votto_Box
+ Name: Drooping Votto Box
+ Type: Cash
+ Buy: 10
+ Script: |
+ /* getitem drooping votto hat,1; */
+ - Id: 16604
+ AegisName: Drooping_Votto_Box_
+ Name: Drooping Votto Box
+ Type: Cash
+ Buy: 10
+ Script: |
+ /* getitem drooping votto hat[1],1; */
+ - Id: 16606
+ AegisName: Tendrilrion_Hat_Box
+ Name: Tendrilrion Hat Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Script: |
+ getitem 5780,1;
+ - Id: 16619
+ AegisName: Yellow_Bunnyband_Box
+ Name: Yellow Bunnyband Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 5783,1;
+ - Id: 16620
+ AegisName: Yellow_Bunny_Headband_Box
+ Name: Yellow Bunny Headband Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Script: |
+ getitem 5783,1;
+ - Id: 16622
+ AegisName: Pink_Bunny_Band_Box
+ Name: Pink Bunny Band Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Script: |
+ getitem 5784,1;
+ - Id: 16623
+ AegisName: Green_Bunny_Band_Box
+ Name: Green Bunny Band Box
+ Type: Cash
+ Buy: 10
+ Script: |
+ getitem 5785,1;
+ - Id: 16625
+ AegisName: Half_Asprika_box7
+ Name: Half Asprika Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 2566,604800;
+ - Id: 16628
+ AegisName: Brynhild_Box
+ Name: Half Brynhild Box
+ Type: Usable
+ Buy: 20
+ EquipLevelMin: 47
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 15023,604800;
+ - Id: 16631
+ AegisName: Aributa_Scroll
+ Name: Aributa Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16638
+ AegisName: Ribbon_Of_Life_Box
+ Name: Life Ribbon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Life_Ribbon_Box);
+ - Id: 16639
+ AegisName: Ribbon_Of_Life_Box2
+ Name: Life Ribbon Box2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Life_Ribbon_Box2);
+ - Id: 16640
+ AegisName: Ribbon_Of_Life_Box3
+ Name: Life Ribbon Box3
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Life_Ribbon_Box3);
+ - Id: 16652
+ AegisName: Flame_Light
+ Name: Flame Light
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Flame_Light);
+ - Id: 16653
+ AegisName: BM75_10Box
+ Name: BM75 10Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12563,10;
+ - Id: 16654
+ AegisName: Valiant_Will
+ Name: Valiant Will
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16655
+ AegisName: Rapid_Life_Potion_10_Box
+ Name: Rapid Life Potion 10 Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12578,10;
+ - Id: 16658
+ AegisName: Rapid_Water_Box_10
+ Name: Rapid Water Box(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12578,10;
+ - Id: 16659
+ AegisName: Zodiac_Diadem_Pack
+ Name: Zodiac Diadem Box
+ Type: Usable
+ Buy: 20
+ Weight: 1
+ Script: |
+ getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1;
+ - Id: 16664
+ AegisName: Leo_Scroll
+ Name: Leo Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16665
+ AegisName: Virgo_Scroll
+ Name: Virgo Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16666
+ AegisName: Magic_Candy_Box10
+ Name: Magic Candy Box10
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Magic_Candy_Box10);
+ /*getitem Magic_Candy,10;*/
+ - Id: 16668
+ AegisName: Kotak_Ketupat_Warna_Warni
+ Name: Kotak Ketupat Warna Warni
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ rentitem 2869,20160000;
+ - Id: 16670
+ AegisName: Field_Manual_Box_A
+ Name: Field Manual Box A
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 14532,10;
+ if (!rand(10))
+ getitem callfunc("F_Rand",603,617),1;
+ - Id: 16673
+ AegisName: Libra_Scroll
+ Name: Libra Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Libra_Scroll);
+ - Id: 16675
+ AegisName: Splash_Scroll
+ Name: Splash Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Splash_Scroll);
+ - Id: 16676
+ AegisName: Zodiac_Crown_Pack
+ Name: Zodiac Crown Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1;
+ - Id: 16677
+ AegisName: Universal_Catalog_Gold_Box10
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,10;
+ - Id: 16678
+ AegisName: Universal_Catalog_Gold_Box50
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,50;
+ - Id: 16679
+ AegisName: Universal_Catalog_Gold_Box10_
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,10;
+ - Id: 16680
+ AegisName: Universal_Catalog_Gold_Box50_
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,50;
+ - Id: 16681
+ AegisName: BR_Independence_Scroll
+ Name: BR Independence Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_BR_Independence_Scroll);
+ - Id: 16682
+ AegisName: Boarding_Halter_Box
+ Name: Boarding Halter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Boarding_Halter_Box);
+ /*rentitem 12622,604800;*/
+ - Id: 16683
+ AegisName: B_Halter_Box_30Days
+ Name: B Halter Box 30Days
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12622,2592000;
+ - Id: 16684
+ AegisName: Wing_Of_Fly_Box10
+ Name: Wing Of Fly Box10
+ Type: Usable
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 601,10;
+ - Id: 16685
+ AegisName: Wing_Of_Fly_Box50
+ Name: Wing Of Fly Box50
+ Type: Usable
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 601,50;
+ - Id: 16686
+ AegisName: Wing_Of_Fly_Box100
+ Name: Wing Of Fly Box100
+ Type: Usable
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 601,100;
+ - Id: 16687
+ AegisName: RWC2010_SuitcaseA
+ Name: RWC2010 SuitcaseA
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_RWC2010_SuitcaseA);
+ - Id: 16688
+ AegisName: RWC2010_SuitcaseB
+ Name: RWC2010 SuitcaseB
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_RWC2010_SuitcaseB);
+ - Id: 16691
+ AegisName: Scorpius_Scroll
+ Name: Scorpius Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 16692
+ AegisName: Alice_Hat_Box
+ Name: Alice Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5137,1;
+ - Id: 16693
+ AegisName: Crescent_Helm_Box
+ Name: Crescent Helm Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5142,1;
+ - Id: 16694
+ AegisName: Crescent_Helm_Box_
+ Name: Crescent Helm Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5142,1;
+ - Id: 16695
+ AegisName: Dragon_Skull_Box
+ Name: Dragon Skull Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5292,1;
+ - Id: 16696
+ AegisName: Dragon_Skull_Box_
+ Name: Dragon Skull Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5292,1;
+ - Id: 16697
+ AegisName: Drooping_Bunny_Box
+ Name: Drooping Bunny Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5290,1;
+ - Id: 16698
+ AegisName: Drooping_Bunny_Box_
+ Name: Drooping Bunny Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5290,1;
+ - Id: 16699
+ AegisName: Evolved_Blue_Fish_Box
+ Name: Evolved Blue Fish Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5222,1;
+ - Id: 16701
+ AegisName: Evolved_Pair_of_Red_Ribbon_Box
+ Name: Evolved Pair of Red Ribbon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5221,1;
+ - Id: 16702
+ AegisName: Evolved_Pair_of_Red_Ribbon_Box_
+ Name: Evolved Pair of Red Ribbon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5221,1;
+ - Id: 16703
+ AegisName: Evolved_Pipe_Box
+ Name: Evolved Pipe Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5220,1;
+ - Id: 16704
+ AegisName: Evolved_Pipe_Box_
+ Name: Evolved Pipe Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5220,1;
+ - Id: 16705
+ AegisName: Hibiscus_Box
+ Name: Hibiscus Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5139,1;
+ - Id: 16706
+ AegisName: Hibiscus_Box_
+ Name: Hibiscus Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5139,1;
+ - Id: 16707
+ AegisName: Jumping_Poring_Box
+ Name: Jumping Poring Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5335,1;
+ - Id: 16708
+ AegisName: Jumping_Poring_Box_
+ Name: Jumping Poring Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5335,1;
+ - Id: 16709
+ AegisName: Kettle_Hat_Box
+ Name: Kettle Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5291,1;
+ - Id: 16710
+ AegisName: Kettle_Hat_Box_
+ Name: Kettle Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5291,1;
+ - Id: 16711
+ AegisName: Magic_Eyes_Box
+ Name: Magic Eyes Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5138,1;
+ - Id: 16712
+ AegisName: Magic_Eyes_Box_
+ Name: Magic Eyes Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5138,1;
+ - Id: 16713
+ AegisName: Mini_Propeller_Box
+ Name: Mini Propeller Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5226,1;
+ - Id: 16714
+ AegisName: Mini_Propeller_Box_
+ Name: Mini Propeller Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5226,1;
+ - Id: 16715
+ AegisName: Puppy_Hat_Box
+ Name: Puppy Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5182,1;
+ - Id: 16716
+ AegisName: Puppy_Hat_Box_
+ Name: Puppy Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5182,1;
+ - Id: 16717
+ AegisName: Sheep_Hat_Box
+ Name: Sheep Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5133,1;
+ - Id: 16718
+ AegisName: Sheep_Hat_Box_
+ Name: Sheep Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5133,1;
+ - Id: 16719
+ AegisName: Tiger_Mask_Box_
+ Name: Tiger Mask Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5098,1;
+ - Id: 16720
+ AegisName: Tiger_Mask_Box__
+ Name: Tiger Mask Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5098,1;
+ - Id: 16721
+ AegisName: Vaccation_Hat_Box
+ Name: Vacation Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5629,1;
+ - Id: 16722
+ AegisName: Vane_Hairpin_Box
+ Name: Vane Hairpin Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5285,1;
+ - Id: 16723
+ AegisName: Vane_Hairpin_Box_
+ Name: Vane Hairpin Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5285,1;
+ - Id: 16724
+ AegisName: Vanilmirth_Hat_Box
+ Name: Vanilmirth Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5289,1;
+ - Id: 16725
+ AegisName: Vanilmirth_Hat_Box_
+ Name: Vanilmirth Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5289,1;
+ - Id: 16726
+ AegisName: Water_Lily_Crown_Box
+ Name: Water Lily Crown Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5284,1;
+ - Id: 16727
+ AegisName: Water_Lily_Crown_Box_
+ Name: Water Lily Crown Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5284,1;
+ - Id: 16728
+ AegisName: Pink_Beanie_Hat_Box
+ Name: Pink Beanie Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5237,1;
+ - Id: 16729
+ AegisName: Pink_Beanie_Hat_Box_
+ Name: Pink Beanie Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5237,1;
+ - Id: 16730
+ AegisName: Green_Ribbon_Box
+ Name: Green Ribbon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5193,1;
+ - Id: 16731
+ AegisName: Green_Ribbon_Box_
+ Name: Green Ribbon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5193,1;
+ - Id: 16732
+ AegisName: Gray_Deviruchi_Hat_Box
+ Name: Gray Deviruchi Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5229,1;
+ - Id: 16733
+ AegisName: Gray_Deviruchi_Hat_Box_
+ Name: Gray Deviruchi Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5229,1;
+ - Id: 16734
+ AegisName: Blue_Drooping_Cat_Box
+ Name: Blue Drooping Cat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5233,1;
+ - Id: 16735
+ AegisName: Blue_Drooping_Cat_Box_
+ Name: Blue Drooping Cat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5233,1;
+ - Id: 16736
+ AegisName: Fantastic_Wig_Box
+ Name: Fantastic Wig Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5276,1;
+ - Id: 16737
+ AegisName: Fantastic_Wig_Box_
+ Name: Fantastic Wig Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5276,1;
+ - Id: 16738
+ AegisName: Yellow_Mage_Hat_Box
+ Name: Yellow Mage Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5242,1;
+ - Id: 16739
+ AegisName: Yellow_Mage_Hat_Box_
+ Name: Yellow Mage Hat Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ getitem 5242,1;
+ - Id: 16740
+ AegisName: Ptotection_Seagod_Box
+ Name: The Sea God's Call 23 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 6436,86400;
+ - Id: 16741
+ AegisName: Hairtail_Box1
+ Name: Cutlass 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Hairtail_Box1);*/
+ rentitem 1198,3600;
+ - Id: 16742
+ AegisName: Hairtail_Box2
+ Name: Cutlass 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Hairtail_Box2);*/
+ rentitem 1198,604800;
+ - Id: 16743
+ AegisName: Spearfish_Box1
+ Name: Marlin 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Spearfish_Box1);*/
+ rentitem 1489,3600;
+ - Id: 16744
+ AegisName: Spearfish_Box2
+ Name: Marlin 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Spearfish_Box2);*/
+ rentitem 1489,604800;
+ - Id: 16745
+ AegisName: Saurel_Box1
+ Name: Pompano 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Saurel_Box1);*/
+ rentitem 13068,3600;
+ - Id: 16746
+ AegisName: Saurel_Box2
+ Name: Pompano 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Saurel_Box2);*/
+ rentitem 13068,604800;
+ - Id: 16747
+ AegisName: Tuna_Box1
+ Name: Tuna 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Tuna_Box1);*/
+ rentitem 16016,3600;
+ - Id: 16748
+ AegisName: Tuna_Box2
+ Name: Tuna 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Tuna_Box2);*/
+ rentitem 16016,604800;
+ - Id: 16749
+ AegisName: Malang_Crab_Box1
+ Name: Malangdo Crab 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Malang_Crab_Box1);*/
+ rentitem 18107,3600;
+ - Id: 16750
+ AegisName: Malang_Crab_Box2
+ Name: Malangdo Crab 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Malang_Crab_Box2);*/
+ rentitem 18107,604800;
+ - Id: 16751
+ AegisName: Brindle_Eel_Box1
+ Name: Zebra Eel 1 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Brindle_Eel_Box1);*/
+ rentitem 18108,3600;
+ - Id: 16752
+ AegisName: Brindle_Eel_Box2
+ Name: Zebra Eel 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Brindle_Eel_Box2);*/
+ rentitem 18108,604800;
+ - Id: 16753
+ AegisName: Unbreak_Weap_Box
+ Name: Unbreakable Weapon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6438,1;
+ - Id: 16754
+ AegisName: F_Unbreak_Weap_Box
+ Name: Unbreakable Weapon Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6438,1;
+ - Id: 16755
+ AegisName: Unbreak_Def_Box
+ Name: Unbreakable Armor Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6439,1;
+ - Id: 16756
+ AegisName: F_Unbreak_Def_Box
+ Name: Unbreakable Armor Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6439,1;
+ - Id: 16757
+ AegisName: Hallo_Scroll
+ Name: Hallo Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Hallo_Scroll);
+ - Id: 16760
+ AegisName: Umbala_Spirit_Box2
+ Name: Umbala Spirit Box2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Umbala_Spirit_Box2);
+ /*rentitem Umbala_Spirit,604800;*/
+ - Id: 16761
+ AegisName: F_Umbala_Spirit_Box2
+ Name: F Umbala Spirit Box2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Ptotection_Seagod_Box2);*/
+ rentitem 6436,604800;
+ - Id: 16764
+ AegisName: Ptotection_Seagod_Box3
+ Name: The Sea God's Call 15 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Ptotection_Seagod_Box3);*/
+ rentitem 6436,1209600;
+ - Id: 16765
+ AegisName: Octo_Hstick_Box
+ Name: Octopus Hunting Skewer 23 Hour Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Octo_Hstick_Box);*/
+ rentitem 6442,86400;
+ - Id: 16766
+ AegisName: Octo_Hstick_Box2
+ Name: Octopus Hunting Skewer 3 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Octo_Hstick_Box2);*/
+ rentitem 6442,259200;
+ - Id: 16767
+ AegisName: Octo_Hstick_Box3
+ Name: Octopus Hunting Skewer 7 Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Octo_Hstick_Box3);*/
+ rentitem 6442,604800;
+ - Id: 16770
+ AegisName: Silvervine_Fruit_Box10
+ Name: Silvervine 10 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Silvervine_Fruit_Box10);*/
+ getitem 6417,10;
+ getitem 12636,30;
+ - Id: 16771
+ AegisName: Silvervine_Fruit_Box40
+ Name: Silvervine 40 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Silvervine_Fruit_Box40);*/
+ getitem 6417,40;
+ getitem 12636,120;
+ - Id: 16774
+ AegisName: Asgard_Scroll
+ Name: Asgard Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Asgard_Scroll);
+ - Id: 16775
+ AegisName: Sagittarius_Scroll
+ Name: Sagittarius Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sagittarius_Scroll);
+ - Id: 16776
+ AegisName: Universal_Catalog_Gold_Box10__
+ Name: Universal Catalog Gold 10 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,10;
+ - Id: 16777
+ AegisName: Universal_Catalog_Gold_Box50__
+ Name: Universal Catalog Gold 50 Box
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12581,50;
+ - Id: 16821
+ AegisName: Dungeon_Teleport_Scroll_Box_5
+ Name: Dungeon Teleport Scroll Box(5)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16822
+ AegisName: Dungeon_Teleport_Scroll_Box_10
+ Name: Dungeon Teleport Scroll Box(10)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16826
+ AegisName: Sagittarius_Scr_Box
+ Name: Sagittarius Scr Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sagittarius_Scr_Box);
+ - Id: 16837
+ AegisName: Dungeon_Teleport_Scroll_II_Box_5
+ Name: Dungeon Teleport Scroll II Box(5)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16838
+ AegisName: Dungeon_Teleport_Scroll_II_Box_10
+ Name: Dungeon Teleport Scroll II Box(10)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16864
+ AegisName: Siege_Map_Teleport_Scroll_Box_10
+ Name: Siege Map Teleport Scroll Box(10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,10;
+ - Id: 16865
+ AegisName: Siege_Map_Teleport_Scroll_Box_30
+ Name: Siege Map Teleport Scroll Box(30)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,30;
+ - Id: 16866
+ AegisName: Siege_Map_Teleport_Scroll_II_Box_10
+ Name: Siege Map Teleport Scroll II Box(10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,10;
+ - Id: 16867
+ AegisName: Siege_Map_Teleport_Scroll_II_Box_30
+ Name: Siege Map Teleport Scroll II Box(30)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14591,30;
+ - Id: 16972
+ AegisName: Weather_Report_Box
+ Name: Weather Report Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 19515,1;
+ - Id: 16974
+ AegisName: Comin_Actor_Box
+ Name: Comin Actor Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Comin_Actor_Box);*/
+ getitem 19514,1;
+ getitem 19521,1;
+ - Id: 16975
+ AegisName: Singing_Bird_Box
+ Name: Singing Bird Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 19516,1;
+ - Id: 16976
+ AegisName: Hen_Set_Box
+ Name: Hen Set Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Hen_Set_Box);*/
+ getitem 19513,1;
+ getitem 19517,1;
+ - Id: 16977
+ AegisName: Red_Minicrown_Box
+ Name: Red Minicrown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 19522,1;
+ - Id: 16979
+ AegisName: Silvervine_Fruit_Box4
+ Name: Silvervine 4 Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Silvervine_Fruit_Box4);*/
+ getitem 6417,4;
+ getitem 12636,12;
+ - Id: 16990
+ AegisName: Sagittar_Diadem_Scroll
+ Name: Sagittar Diadem Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sagittar_Diadem_Scroll);
+ - Id: 16991
+ AegisName: Sagittar_Di_Scroll_Box
+ Name: Sagittar Di Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sagittar_Di_Scroll_Box);
+ - Id: 16992
+ AegisName: Butterfly_Wing_Box20
+ Name: Butterfly Wing Box20
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 602,20;
+ - Id: 16993
+ AegisName: Butterfly_Wing_Box50
+ Name: Butterfly Wing Box50
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 602,50;
+ - Id: 16995
+ AegisName: Old_Hat_Box
+ Name: Old Hat Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 16996
+ AegisName: Capri_Crown_Scroll
+ Name: Capri Crown Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Capri_Crown_Scroll);
+ - Id: 16997
+ AegisName: Capri_Crown_Scroll_Box
+ Name: Capri Crown Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Capri_Crown_Scroll_Box);
+ - Id: 16998
+ AegisName: Archangel_Wing_Box
+ Name: Archangel Wings Box
+ Type: Usable
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2573,1;
+ - Id: 16999
+ AegisName: Bravery_Bag_Box
+ Name: Bravery Bag Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2576,1;
+ - Id: 17000
+ AegisName: Wander_Man_Box5
+ Name: Wander Man Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12626,5;
+ - Id: 17001
+ AegisName: Wander_Man_Box10
+ Name: Wander Man Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12626,10;
+ - Id: 17002
+ AegisName: Wicked_Nymph_Box5
+ Name: Wicked Nymph Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12627,5;
+ - Id: 17003
+ AegisName: Wicked_Nymph_Box10
+ Name: Wicked Nymph Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12627,10;
+ - Id: 17004
+ AegisName: Kasa_Scroll_Box5
+ Name: Kasa Scroll Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12628,5;
+ - Id: 17005
+ AegisName: Kasa_Scroll_Box10
+ Name: Kasa Scroll Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12628,10;
+ - Id: 17006
+ AegisName: Salamander_Box5
+ Name: Salamander Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12629,5;
+ - Id: 17007
+ AegisName: Salamander_Box10
+ Name: Salamander Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12629,10;
+ - Id: 17008
+ AegisName: Teddy_Bear_Box5
+ Name: Teddy Bear Box5
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12630,5;
+ - Id: 17009
+ AegisName: Teddy_Bear_Box10
+ Name: Teddy Bear Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 12630,10;
+ - Id: 17011
+ AegisName: Capricon_Di_Scroll
+ Name: Capricon Di Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Capricon_Di_Scroll);
+ - Id: 17012
+ AegisName: Capricon_Di_Scroll_Box
+ Name: Capricon Di Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Capricon_Di_Scroll_Box);
+ - Id: 17013
+ AegisName: Malang_Woe_Encard_Box
+ Name: Malang Woe Encard Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(IG_Malang_Woe_Encard_Box);*/
+ getitem 16740,1;
+ getitem 16765,1;
+ - Id: 17014
+ AegisName: Butterfly_ear_Box
+ Name: Butterfly ear Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 19509,1;
+ - Id: 17015
+ AegisName: Stuckhead_Screw_Box
+ Name: Stuckhead Screw Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 19510,1;
+ - Id: 17016
+ AegisName: Aquarius_Diadem_Scroll
+ Name: Aquarius Diadem Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Aquarius_Diadem_Scroll);
+ - Id: 17017
+ AegisName: Aquarius_Di_Scroll_Box
+ Name: Aquarius Di Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Aquarius_Di_Scroll_Box);
+ - Id: 17018
+ AegisName: Libra_Scroll2
+ Name: Libra Scroll2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17019
+ AegisName: Scorpio_Scroll2
+ Name: Scorpio Scroll2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17020
+ AegisName: Tw_Nov_Scroll2
+ Name: Tw Nov Scroll2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Nov_Scroll2);
+ - Id: 17021
+ AegisName: Summer_Scroll3
+ Name: Summer Scroll3
+ Type: Usable
+ Buy: 20
+ Weight: 100
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Summer_Scroll3);
+ - Id: 17022
+ AegisName: Super_Pet_Egg1_2
+ Name: Super Pet Egg1 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg1_2);
+ - Id: 17023
+ AegisName: Super_Pet_Egg4_2
+ Name: Super Pet Egg4 2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Super_Pet_Egg4_2);
+ - Id: 17024
+ AegisName: Lovely_Aquarius_Scroll
+ Name: Lovely Aquarius Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Lovely_Aquarius_Scroll);
+ - Id: 17025
+ AegisName: Lovely_Aquarius_Box
+ Name: Lovely Aquarius Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Lovely_Aquarius_Box);
+ - Id: 17026
+ AegisName: Boitata_Scroll
+ Name: Boitata Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Boitata_Scroll);
+ - Id: 17028
+ AegisName: Pisces_Diadem_Scroll
+ Name: Pisces Diadem Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Pisces_Diadem_Scroll);
+ - Id: 17029
+ AegisName: Pisces_Diadem_Box_
+ Name: Pisces Diadem Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Pisces_Diadem_Box);
+ - Id: 17030
+ AegisName: St_Pat_Hat_box
+ Name: St Pat Hat box
+ Type: Cash
+ Buy: 20
+ Weight: 100
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18565,1;
+ - Id: 17035
+ AegisName: Energetic_Pisces_Scroll
+ Name: Energetic Pisces Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Energetic_Pisces_Scroll);
+ - Id: 17036
+ AegisName: Energetic_Pisces_Box
+ Name: Energetic Pisces Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Energetic_Pisces_Box);
+ - Id: 17037
+ AegisName: Trans_Box_Devi
+ Name: Trans Box Devi
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12658,10;
+ - Id: 17038
+ AegisName: Trans_Box_Ray_Arch
+ Name: Trans Box Ray Arch
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12659,10;
+ - Id: 17039
+ AegisName: Trans_Box_Mavka
+ Name: Trans Box Mavka
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12660,10;
+ - Id: 17040
+ AegisName: Trans_Box_Marduk
+ Name: Trans Box Marduk
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12661,10;
+ - Id: 17041
+ AegisName: Trans_Box_Banshee
+ Name: Trans Box Banshee
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12662,10;
+ - Id: 17042
+ AegisName: Trans_Box_Poring
+ Name: Trans Box Poring
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12663,10;
+ - Id: 17043
+ AegisName: Trans_Box_Golem
+ Name: Trans Box Golem
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12664,10;
+ - Id: 17050
+ AegisName: Aries_Scroll_
+ Name: Aries Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Aries_Scroll);
+ - Id: 17051
+ AegisName: Aries_Scroll_Box
+ Name: Aries Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Aries_Scroll_Box);
+ - Id: 17052
+ AegisName: Holy_Mom_Blaze_Box
+ Name: Holy Mom Blaze Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6472,1;
+ - Id: 17056
+ AegisName: Wiz_Card_Album
+ Name: Wiz Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17057
+ AegisName: Swordman_Card_Album
+ Name: Swordman Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17058
+ AegisName: Thief_Card_Album
+ Name: Thief Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17059
+ AegisName: Acolyte_Card_Album
+ Name: Acolyte Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17060
+ AegisName: Merchant_Card_Album
+ Name: Merchant Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17061
+ AegisName: Archer_Card_Album
+ Name: Archer Card Album
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17062
+ AegisName: Taurus_Diadem_Scroll
+ Name: Taurus Diadem Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Taurus_Diadem_Scroll);
+ - Id: 17063
+ AegisName: Taurus_Di_Scroll_Box
+ Name: Taurus Di Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Taurus_Di_Scroll_Box);
+ - Id: 17064
+ AegisName: Tw_Sagitt_Scroll
+ Name: Tw Sagitt Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17066
+ AegisName: Poison_Bottle_Box50
+ Name: Poison Bottle Box50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 678,50;
+ - Id: 17067
+ AegisName: Poison_Bottle_Box100
+ Name: Poison Bottle Box100
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 678,100;
+ - Id: 17068
+ AegisName: Acidbomb_Box50
+ Name: Acidbomb Box50
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 7135,50;
+ getitem 7136,50;
+ - Id: 17069
+ AegisName: Acidbomb_Box100
+ Name: Acidbomb Box100
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 7135,100;
+ getitem 7136,100;
+ - Id: 17070
+ AegisName: Acidbomb_Box500
+ Name: Acidbomb Box500
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 7135,500;
+ getitem 7136,500;
+ - Id: 17071
+ AegisName: Superb_Fish_Box50
+ Name: Superb Fish Box50
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14524,50;
+ - Id: 17072
+ AegisName: Superb_Fish_Box100
+ Name: Superb Fish Box100
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14524,100;
+ - Id: 17073
+ AegisName: Superb_Fish_Box500
+ Name: Superb Fish Box500
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 14524,500;
+ - Id: 17074
+ AegisName: Empty_Bottle_Box10
+ Name: Empty Bottle Box10
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 713,10;
+ - Id: 17075
+ AegisName: Empty_Bottle_Box100
+ Name: Empty Bottle Box100
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 713,100;
+ - Id: 17076
+ AegisName: Empty_Bottle_Box500
+ Name: Empty Bottle Box500
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 713,500;
+ - Id: 17077
+ AegisName: Taurus_Crown_Scroll
+ Name: Taurus Crown Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Taurus_Crown_Scroll);
+ - Id: 17078
+ AegisName: Taurus_Crown_Scroll_Box
+ Name: Taurus Crown Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Taurus_Crown_Scroll_Box);
+ - Id: 17079
+ AegisName: Indonesia_Box2
+ Name: Indonesia Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17081
+ AegisName: Yggdrasil_Crown_Box
+ Name: Yggdrasil Crown Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 18580,1;
+ - Id: 17082
+ AegisName: Gemi_Diadem_Scroll
+ Name: Gemi Diadem Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Gemi_Diadem_Scroll);
+ - Id: 17083
+ AegisName: Gemi_Diadem_Scroll_Box
+ Name: Gemi Diadem Scroll Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Gemi_Diadem_Scroll_Box);
+ - Id: 17084
+ AegisName: Upg_Katar_Box
+ Name: Upg Katar Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1292,1;
+ - Id: 17085
+ AegisName: Upg_Two_Handed_Axe_Box
+ Name: Upg Two Handed Axe Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1394,1;
+ - Id: 17086
+ AegisName: Upg_Lance_Box
+ Name: Upg Lance Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1491,1;
+ - Id: 17087
+ AegisName: Upg_Book_Box
+ Name: Upg Book Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 1585,1;
+ - Id: 17088
+ AegisName: Upg_Staff_Box
+ Name: Upg Staff Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2015,1;
+ - Id: 17089
+ AegisName: Upg_Dagger_Box
+ Name: Upg Dagger Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13071,1;
+ - Id: 17090
+ AegisName: Upg_Revolver_Box
+ Name: Upg Revolver
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 13115,1;
+ - Id: 17091
+ AegisName: Upg_Mace_Box
+ Name: Upg Mace Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 16019,1;
+ - Id: 17092
+ AegisName: Upg_Bow_Box
+ Name: Upg Bow Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 18112,1;
+ - Id: 17093
+ AegisName: Upg_Twohand_Sword_Box
+ Name: Upg Two-Handed Sword Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 21000,1;
+ - Id: 17094
+ AegisName: Upg_Katar_Box2
+ Name: Upg Katar Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17095
+ AegisName: Upg_Two_Handed_Axe_Box2
+ Name: Upg Two-Hand Axe Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17096
+ AegisName: Upg_Lance_Box2
+ Name: Upg Lance Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17097
+ AegisName: Upg_Book_Box2
+ Name: Upg_Book_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17098
+ AegisName: Upg_Staff_Box2
+ Name: Upg_Staff_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17099
+ AegisName: Upg_Dagger_Box2
+ Name: Upg_Dagger_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17100
+ AegisName: Upg_Revolver_Box2
+ Name: Upg_Revolver_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17101
+ AegisName: Upg_Mace_Box2
+ Name: Upg_Mace_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17102
+ AegisName: Upg_Bow_Box2
+ Name: Upg_Bow_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17103
+ AegisName: Upg_Twohand_Sword_Box2
+ Name: Upg_Twohand_Sword_Box2
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17104
+ AegisName: HD_Oridecon_50Box
+ Name: HD Oridecon 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6240,50;
+ - Id: 17105
+ AegisName: HD_Elunium_50Box
+ Name: HD Elunium 50 Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6241,50;
+ - Id: 17106
+ AegisName: Max_Weight_Up_10Box
+ Name: Heavy Lifter Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7776,10;
+ - Id: 17107
+ AegisName: Gemi_Crown_Scroll
+ Name: Gemi Crown Scroll
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Gemi_Crown_Scroll);
+ - Id: 17108
+ AegisName: Gemi_Crown_Scroll_Box
+ Name: Gemi Crown Scroll Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Gemi_Crown_Scroll_Box);
+ - Id: 17109
+ AegisName: Capri_Scroll
+ Name: Capri Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17110
+ AegisName: Aquarius_Scroll
+ Name: Aquarius Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17113
+ AegisName: Pisces_Scroll
+ Name: Pisces Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17114
+ AegisName: Horn_Of_Ancient_Box
+ Name: Horn Of Ancient Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18595,1;
+ - Id: 17115
+ AegisName: Sprout_Hat_Box
+ Name: Sprout Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18596,1;
+ - Id: 17116
+ AegisName: Mercury_Helm_Box
+ Name: Mercury Helm Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18597,1;
+ - Id: 17117
+ AegisName: Aries_Scroll
+ Name: Aries Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17118
+ AegisName: ASPD_Potion_Box10
+ Name: ASPD Enhanced Potion Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12684,10;
+ - Id: 17120
+ AegisName: Taurus_Scroll
+ Name: Taurus Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17121
+ AegisName: Starry_Scroll
+ Name: Starry Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17122
+ AegisName: Immuned_Shield_Box
+ Name: Immuned Shield Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2168,1;
+ - Id: 17123
+ AegisName: Black_Devil_Mask_Box
+ Name: Black Devil Mask Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 18599,1;
+ - Id: 17124
+ AegisName: Cat_Ears_Beret_Box
+ Name: Cat Ears Beret Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18600,1;
+ - Id: 17125
+ AegisName: Red_Bread_Hat_Box
+ Name: Red Bread Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18601,1;
+ - Id: 17126
+ AegisName: ASPD_Potion_Box10_2
+ Name: ASPD Enhanced Potion Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12684,10;
+ - Id: 17127
+ AegisName: Leo_Scroll2
+ Name: Leo Scroll2
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17134
+ AegisName: RWC_Scroll
+ Name: RWC Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17138
+ AegisName: Ms_Cancer_Scroll
+ Name: Ms Cancer Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Ms_Cancer_Scroll);
+ - Id: 17139
+ AegisName: RWC_Super_Scroll
+ Name: RWC Super Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_RWC_Super_Scroll);
+ - Id: 17140
+ AegisName: Leo_Scroll_
+ Name: Leo Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Leo_Scroll);
+ - Id: 17141
+ AegisName: Ms_Virgo_Scroll
+ Name: Ms Virgo Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Ms_Virgo_Scroll);
+ - Id: 17143
+ AegisName: Ms_Scorpio_Scroll
+ Name: Ms Scorpio Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Ms_Scorpio_Scroll);
+ - Id: 17146
+ AegisName: Dep_Alice_Hat_Box
+ Name: Dep Alice Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18630,1;
+ - Id: 17147
+ AegisName: Ribbon_Chef_Hat_Box
+ Name: Ribbon Chef Hat Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18631,1;
+ - Id: 17152
+ AegisName: Bridal_Ribbon_Box
+ Name: Bridal Ribbon Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 18636,1;
+ - Id: 17155
+ AegisName: Upg_Huuma_Shuriken_Box
+ Name: Upg Huuma Shuriken Box
+ Type: Usable
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 13316,86400;
+ - Id: 17156
+ AegisName: TCG_Card_Scroll
+ Name: Bossnia Ticket Scroll
+ Type: Usable
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_TCG_Card_Scroll);
+ - Id: 17157
+ AegisName: Vital_Flower_Box
+ Name: Vital Flower Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6113,10;
+ - Id: 17158
+ AegisName: Flame_Gemstone_Box
+ Name: Flame Gemstone Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6114,10;
+ - Id: 17159
+ AegisName: Change_Name_Card_Box
+ Name: Name Change Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17160
+ AegisName: Character_Name_Change_Card_Box
+ Name: Character Name Change Card Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17162
+ AegisName: Boarding_Halter_Box7
+ Name: Boarding Halter Box7
+ Type: Cash
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12622,604800;
+ - Id: 17165
+ AegisName: Challenge_Kit
+ Name: Challenge Kit
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ 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]
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17181
+ AegisName: Jan_Groove_Box
+ Name: Jan Groove Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17184
+ AegisName: 3rd_Test_Pass_Box
+ Name: 3rd Test Pass Box
+ Type: Cash
+ Flags:
+ UniqueId: true
+ Script: |
+ getitem 6583,1;
+ - Id: 17203
+ AegisName: Free_Pass_Box
+ Name: Free Pass Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ - Id: 17204
+ AegisName: Shining_Egg
+ Name: Shining Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Shining_Egg);
+ - Id: 17207
+ AegisName: Idn_Heart_Scroll
+ Name: Idn Heart Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Script: |
+ getgroupitem(IG_Idn_Heart_Scroll);
+ - Id: 17209
+ AegisName: Tw_Rainbow_Scroll
+ Name: Tw Rainbow Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Rainbow_Scroll);
+ - Id: 17210
+ AegisName: Tw_Red_Scroll
+ Name: Tw Red Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Red_Scroll);
+ - Id: 17211
+ AegisName: Tw_Orange_Scroll
+ Name: Tw Orange Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Orange_Scroll);
+ - Id: 17212
+ AegisName: Tw_Yellow_Scroll
+ Name: Tw Yellow Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Tw_Yellow_Scroll);
+ - Id: 17226
+ AegisName: Infinite_Concentration_Potion_
+ Name: Infinite Concentration Potion
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12884,604800;
+ - Id: 17227
+ AegisName: Infinite_Awakening_Potion_
+ Name: Infinite Awakening Potion
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12885,604800;
+ - Id: 17228
+ AegisName: Infinite_Berserk_Potion_
+ Name: Infinite Berserk Potion
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12886,604800;
+ - Id: 17229
+ AegisName: Infinite_Flywing_Box
+ Name: Infinite Flywing Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12887,604800;
+ - Id: 17230
+ AegisName: Valerian_Scroll
+ Name: Valerian Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Valerian_Scroll);
+ - Id: 17231
+ AegisName: Refinement_Ore_Box
+ Name: Refinement Ore Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,1;
+ getitem 7620,1;
+ - Id: 17232
+ AegisName: Refinement_Box_7
+ Name: Refinement box(7)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6230,1;
+ getitem 6234,1;
+ - Id: 17233
+ AegisName: Scroll_Of_Death
+ Name: Scroll Of Death
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Death);
+ - Id: 17234
+ AegisName: Scroll_Of_Life
+ Name: Scroll Of Life
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Life);
+ - Id: 17235
+ AegisName: Scroll_Of_Magic
+ Name: Scroll Of Magic
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Magic);
+ - Id: 17236
+ AegisName: Scroll_Of_Thews
+ Name: Scroll Of Thews
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Thews);
+ - Id: 17237
+ AegisName: Scroll_Of_Darkness
+ Name: Scroll Of Darkness
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Darkness);
+ - Id: 17238
+ AegisName: Scroll_Of_Holiness
+ Name: Scroll Of Holiness
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Scroll_Of_Holiness);
+ - Id: 17239
+ AegisName: Horned_Scroll
+ Name: Horned Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Horned_Scroll);
+ - Id: 17240
+ AegisName: Mercury_Scroll
+ Name: Mercury Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Mercury_Scroll);
+ - Id: 17241
+ AegisName: Amistr_Cap_Box
+ Name: Amistir Cap Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Defense: 4
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 5766,1;
+ - Id: 17242
+ AegisName: Immortal_Egg
+ Name: Immortal Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Immortal_Egg);
+ - Id: 17244
+ AegisName: Event_Almighty_Box
+ Name: Event Almighty Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12883,10;
+ - Id: 17245
+ AegisName: Idn_Independ_Scroll
+ Name: Idn Independ Scroll
+ Type: Cash
+ Buy: 20
+ Flags:
+ UniqueId: true
+ - Id: 17246
+ AegisName: HD_Elunium_Box_30
+ Name: HD Elunium Box(30)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6241,30;
+ - Id: 17247
+ AegisName: HD_Oridecon_Box_30
+ Name: HD Oridecon Box(30)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6240,30;
+ - Id: 17251
+ AegisName: C_Wing_Of_Fly_3Day_Box
+ Name: C Wing Of Fly 3Day Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_C_Wing_Of_Fly_3Day_Box);
+ - Id: 17252
+ AegisName: RWC_2012_Set_Box
+ Name: RWC 2012 Set Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_RWC_2012_Set_Box);
+ - Id: 17253
+ AegisName: RWC_2012_Ring_Box
+ Name: RWC 2012 Ring Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2966,1;
+ - Id: 17254
+ AegisName: RWC_2012_Pendant_Box
+ Name: RWC 2012 Pendant Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2968,1;
+ - Id: 17255
+ AegisName: Sapphire_Egg
+ Name: Sapphire Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Sapphire_Egg);
+ - Id: 17256
+ AegisName: Good_Student_Gift_Box
+ Name: Good Student Gift Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Good_Student_Gift_Box);
+ - Id: 17257
+ AegisName: Bad_Student_Gift_Box
+ Name: Bad Student Gift Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Bad_Student_Gift_Box);
+ - Id: 17262
+ AegisName: Ex_Def_Potion_Box
+ Name: Special Defense Potion Box
+ Type: Cash
+ Buy: 20
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12884,259200;
+ - Id: 17264
+ AegisName: Infinite_Awakening_Potion_3rd_Box
+ Name: Infinite Awakening Potion 3rd Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12885,259200;
+ - Id: 17265
+ AegisName: Infinite_Berserk_Potion_3rd_Box
+ Name: Infinite Berserk Potion 3rd Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12886,259200;
+ - Id: 17266
+ AegisName: Limited_Battle_Manual_Package
+ Name: Limited Battle Manual Package
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 17263,1;
+ getitem 17264,1;
+ getitem 17265,1;
+ - Id: 17270
+ AegisName: STR_Biscuit_Stick_Box
+ Name: Bar Cookie Of Strength Box
+ Type: Cash
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14616,20;
+ - Id: 17271
+ AegisName: VIT_Biscuit_Stick_Box
+ Name: Bar Cookie Of Vitality Box
+ Type: Cash
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14617,20;
+ - Id: 17272
+ AegisName: AGI_Biscuit_Stick_Box
+ Name: Bar Cookie Of Agility Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14618,20;
+ - Id: 17273
+ AegisName: INT_Biscuit_Stick_Box
+ Name: Bar Cookie Of Intellgence Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14619,20;
+ - Id: 17274
+ AegisName: DEX_Biscuit_Stick_Box
+ Name: Bar Cookie Of Dexterity Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14620,20;
+ - Id: 17275
+ AegisName: LUK_Biscuit_Stick_Box
+ Name: Bar Cookie Of Luck Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Flags:
+ UniqueId: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14621,20;
+ - Id: 17277
+ AegisName: Unlimited_Box
+ Name: Unlimited Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Unlimited_Box);
+ - Id: 17278
+ AegisName: Unlimited_Box_10
+ Name: Unlimited Box(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Unlimited_Box_10);
+ - Id: 17281
+ AegisName: Refinement_Ore_Box_IV
+ Name: Refinement Ore Box IV
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 14627,1;
+ - Id: 17282
+ AegisName: Refinement_Ore_Box_IV_10
+ Name: Refinement Ore Box IV(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,50;
+ getitem 7620,50;
+ getitem 14627,11;
+ - Id: 17283
+ AegisName: Refinement_Ore_Box_IV_20
+ Name: Refinement Ore Box IV(20)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,100;
+ getitem 7620,100;
+ getitem 14627,23;
+ - Id: 17285
+ AegisName: Events_Beauty_Gift_Box
+ Name: Events Beauty Gift Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO*/
+ - Id: 17292
+ AegisName: Shadow_Box
+ Name: Shadow Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1;
+ - Id: 17293
+ AegisName: Shadow_Physical_Package
+ Name: Shadow Physical Package
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1;
+ - Id: 17294
+ AegisName: Shadow_Magical_Package
+ Name: Shadow Magical Package
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1;
+ - Id: 17298
+ AegisName: Support_Package
+ Name: Support Package
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package);
+ - Id: 17299
+ AegisName: Support_Package_10
+ Name: Support Package(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package_10);
+ - Id: 17302
+ AegisName: Shadow_Box_II_
+ Name: Shadow Box II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17303
+ AegisName: Shadow_Set_Box_II
+ Name: Shadow Set Box II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 17304
+ AegisName: Neuralizer_Box_3
+ Name: Neuralizer Box 3
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12213,3;
+ - Id: 17306
+ AegisName: Status_Reset_Coupon_Box
+ Name: Status Reset Coupon Box
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",6720,6721),1;
+ - Id: 17307
+ AegisName: Midgard_Scroll
+ Name: Midgard Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Midgard_Scroll);
+ - Id: 17308
+ AegisName: Half_Asprika_box1
+ Name: Half Asprika box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 2566,86400;
+ - Id: 17311
+ AegisName: Half_Brynhild_box1
+ Name: Half Brynhild box1
+ Type: Usable
+ Buy: 20
+ EquipLevelMin: 47
+ Script: |
+ rentitem 15023,86400;
+ - Id: 17314
+ AegisName: Infinite_Giant_Fly_Wing_Box
+ Name: Infinite Giant Fly Wing Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12212,86400;
+ - Id: 17315
+ AegisName: Lucky_Silvervine_Fruit_Box_10
+ Name: Lucky Silvervine Fruit Box(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6417,10;
+ - Id: 17316
+ AegisName: Lucky_Silvervine_Fruit_Box_110
+ Name: Lucky Silvervine Fruit Box(110)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6417,110;
+ - Id: 17317
+ AegisName: Sweet_Midgard_Scroll
+ Name: Sweet Midgard Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sweet_Midgard_Scroll);
+ - Id: 17320
+ AegisName: IdRO10th_Scroll
+ Name: Birthday IdRO10th Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_IdRO10th_Scroll);
+ - Id: 17321
+ AegisName: Three_Master_Package
+ Name: Three Master Package
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: Confirm the items and rates*/
+ getitem 14534,20;
+ getitem 14535,20;
+ - Id: 17322
+ AegisName: Three_Master_Package_10
+ Name: Three Master Package(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: Confirm the items and rates*/
+ getitem 14534,200;
+ getitem 14535,200;
+ - Id: 17326
+ AegisName: Requiem_Scroll
+ Name: Requiem Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Requiem_Scroll);
+ - Id: 17331
+ AegisName: Event_Almighty_Box_
+ Name: Event Almighty Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Event_Almighty_Box);
+ - Id: 17332
+ AegisName: Event_Almighty_Box_100
+ Name: Event Almighty Box(100)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Event_Almighty_Box_100);
+ - Id: 17337
+ AegisName: Holy_Spirit_Scroll
+ Name: Holy Spirit Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Holy_Spirit_Scroll);
+ - Id: 17338
+ AegisName: Ore_Box_V
+ Name: Ore Box V
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 14696,1;
+ - Id: 17339
+ AegisName: Ore_Box_V_10
+ Name: Ore Box V(10)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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: 10
+ Script: |
+ /* TODO */
+ - Id: 17396
+ AegisName: Half_L_Magestic_Goat_Box1
+ Name: Half L Magestic Goat Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5887,86400;
+ - Id: 17397
+ AegisName: Half_L_Magestic_Goat_Box7
+ Name: Half L Magestic Goat Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 5887,604800;
+ - Id: 17398
+ AegisName: Half_BF_Spear1_Box1
+ Name: Half BF Spear1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1439,86400;
+ - Id: 17399
+ AegisName: Half_BF_Spear1_Box7
+ Name: Half BF Spear1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1439,604800;
+ - Id: 17400
+ AegisName: Half_BF_Book2_Box1
+ Name: Half BF Book2 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1597,86400;
+ - Id: 17401
+ AegisName: Half_BF_Book2_Box7
+ Name: Half BF Book2 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1597,604800;
+ - Id: 17402
+ AegisName: Half_BF_Staff4_Box1
+ Name: Half BF Staff4 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1673,86400;
+ - Id: 17403
+ AegisName: Half_BF_Staff4_Box7
+ Name: Half BF Staff4 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1673,604800;
+ - Id: 17404
+ AegisName: Half_BF_Staff2_Box1
+ Name: Half BF Staff2 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1674,86400;
+ - Id: 17405
+ AegisName: Half_BF_Staff2_Box7
+ Name: Half BF Staff2 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1674,604800;
+ - Id: 17406
+ AegisName: Half_BF_Knuckle1_Box1
+ Name: Half BF Knuckle1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1838,86400;
+ - Id: 17407
+ AegisName: Half_BF_Knuckle1_Box7
+ Name: Half BF Knuckle1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 1838,604800;
+ - Id: 17408
+ AegisName: Half_BF_Dagger2_Box1
+ Name: Half BF Dagger2 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13096,86400;
+ - Id: 17409
+ AegisName: Half_BF_Dagger2_Box7
+ Name: Half BF Dagger2 Box1s
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13096,604800;
+ - Id: 17410
+ AegisName: Half_BF_Huuma_Shuriken2_Box1
+ Name: Half BF Huuma Shuriken2 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13321,86400;
+ - Id: 17411
+ AegisName: Half_BF_Huuma_Shuriken2_Box7
+ Name: Half BF Huuma Shuriken2 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13321,604800;
+ - Id: 17412
+ AegisName: Half_BF_Sword1_Box1
+ Name: Half BF Sword1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13445,86400;
+ - Id: 17413
+ AegisName: Half_BF_Sword1_Box7
+ Name: Half BF Sword1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 13445,604800;
+ - Id: 17414
+ AegisName: Half_Mjolnir_Box1
+ Name: Half Mjolnir Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 16034,86400;
+ - Id: 17415
+ AegisName: Half_Mjolnir_Box7
+ Name: Half Mjolnir Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 16034,604800;
+ - Id: 17416
+ AegisName: Half_BF_Morning_Star1_Box1
+ Name: Half BF Morning Star1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 16035,86400;
+ - Id: 17417
+ AegisName: Half_BF_Morning_Star1_Box7
+ Name: Half BF Morning Star1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 16035,604800;
+ - Id: 17418
+ AegisName: Half_BF_Bow1_Box1
+ Name: Half BF Bow1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 18124,86400;
+ - Id: 17419
+ AegisName: Half_BF_Bow1_Box7
+ Name: Half BF Bow1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 18124,604800;
+ - Id: 17420
+ AegisName: Half_BF_Katar2_Box1
+ Name: Half BF Katar2 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28002,86400;
+ - Id: 17421
+ AegisName: Half_BF_Katar2_Box7
+ Name: Half BF Katar2 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28002,604800;
+ - Id: 17422
+ AegisName: Half_BF_Two_Handed_Axe1Box1
+ Name: Half BF Two Handed Axe1Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28102,86400;
+ - Id: 17423
+ AegisName: Half_BF_Two_Handed_Axe1Box7
+ Name: Half BF Two Handed Axe1Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28102,604800;
+ - Id: 17424
+ AegisName: Half_BF_Rifle1_Box1
+ Name: Half BF Rifle1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28203,86400;
+ - Id: 17425
+ AegisName: Half_BF_Rifle1_Box7
+ Name: Half BF Rifle1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28203,604800;
+ - Id: 17426
+ AegisName: Half_BF_Shotgun1_Box1
+ Name: Half BF Shotgun1 Box1
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28204,86400;
+ - Id: 17427
+ AegisName: Half_BF_Shotgun1_Box7
+ Name: Half BF Shotgun1 Box7
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ rentitem 28204,604800;
+ - Id: 17429
+ AegisName: 11_Anniversary_Shadow_Box
+ Name: 11 Anniversary Shadow Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */
+ - Id: 17430
+ AegisName: 11_Anniversary_Shadow_Package
+ Name: 11 Anniversary Shadow Package
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */
+ - Id: 17431
+ AegisName: Thanks_Giving_Scroll
+ Name: Miracle Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Thanks_Giving_Scroll);
+ - Id: 17432
+ AegisName: Lucky_Silvervine_Fruit_Box_II_10
+ Name: Lucky Silvervine Fruit Box II(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/
+ getitem 6417,110;
+ getitem 14705,11;
+ - Id: 17435
+ AegisName: Idn_Legend_Hero_Scroll
+ Name: Legend Hero Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Idn_Legend_Hero_Scroll);
+ - Id: 17440
+ AegisName: Name_Change_Card_Box
+ Name: Name Change Card Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12790,1;
+ - Id: 17441
+ AegisName: Halter_Lead_Box
+ Name: Halter Lead Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12622,1;
+ - Id: 17442
+ AegisName: Emperium_G_Box
+ Name: Emperium G Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6444,1;
+ - Id: 17443
+ AegisName: Reinforcement_Buckler_Box
+ Name: Reinforcement Buckler Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 2150,1;
+ - Id: 17447
+ AegisName: Blessing_Midgard_Scroll
+ Name: Blessing Midgard Lucky Egg
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Blessing_Midgard_Scroll);
+ - Id: 17449
+ AegisName: Cookies_Bar_Set
+ Name: Set Bar Cookies
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ for (.@i = 14616;
+ .@i <= 14621;
+ .@i++) getitem .@i,1;
+ - Id: 17455
+ AegisName: Premium_Battle_Manual_Box
+ Name: Premium Battle Manual Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22614,1;
+ - Id: 17456
+ AegisName: Support_Package_II
+ Name: Support Package II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package_II);
+ - Id: 17457
+ AegisName: Support_Package_II_10
+ Name: Support Package II(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package_II_10);
+ - Id: 17461
+ AegisName: Costama_Egg18
+ Name: Frozen Egg Costume
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg18);
+ - Id: 17464
+ AegisName: Winter_Midgard_Scroll
+ Name: Winter Midgard Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Winter_Midgard_Scroll);
+ - Id: 17465
+ AegisName: Refinement_Ore_Box_VI
+ Name: Refinement Ore Box VI
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 14718,1;
+ - Id: 17466
+ AegisName: Refinement_Ore_Box_VI_10
+ Name: Refinement Ore Box VI(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6833,50;
+ - Id: 17468
+ AegisName: Neuralizer_II_Box_3
+ Name: Neuralizer II Box (3)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14724,3;
+ - Id: 17469
+ AegisName: Neuralizer_I_Box
+ Name: Neuralizer I Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14723,1;
+ - Id: 17470
+ AegisName: Costama_Egg19
+ Name: Headgear Costume Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg19);
+ - Id: 17471
+ AegisName: Spring_Festival_Scroll
+ Name: Spring Festival Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Spring_Festival_Scroll);
+ - Id: 17472
+ AegisName: Support_Package_III
+ Name: Support Package III
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package_III);
+ - Id: 17473
+ AegisName: Support_Package_III_10
+ Name: Support Package III(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Support_Package_III_10);
+ - Id: 17474
+ AegisName: Infinite_Giant_Fly_Wing_Box_V
+ Name: Infinite Giant Fly Wing Box V
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 12212,86400;
+ - Id: 17475
+ AegisName: Limited_Gym_Membership_Card_Box_10
+ Name: (Limited)Gym Membership Card Box(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 17475,10;
+ - Id: 17477
+ AegisName: Unlimited_Box_II
+ Name: Unlimited Box II
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Unlimited_Box_II);
+ - Id: 17478
+ AegisName: Unlimited_Box_II_10
+ Name: Unlimited Box II(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Unlimited_Box_II_10);
+ - Id: 17479
+ AegisName: Midgard_Fes_Scroll
+ Name: Midgard Festival Egg
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Midgard_Fes_Scroll);
+ - Id: 17481
+ AegisName: Costama_Egg21
+ Name: Flower Blossom Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg21);
+ - Id: 17482
+ AegisName: Solaris_Festival_Scroll
+ Name: Solaris Festival Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Solaris_Festival_Scroll);
+ - Id: 17483
+ AegisName: Three_Master_Package_III
+ Name: Three Master Package III
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Three_Master_Package_III);
+ - Id: 17484
+ AegisName: Three_Master_Package_III_10
+ Name: Three Master Package III(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Three_Master_Package_III_10);
+ - Id: 17490
+ AegisName: Time_Travel_Scroll
+ Name: Time Travel Lucky Egg
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Time_Travel_Scroll);
+ - Id: 17491
+ AegisName: Refinement_Ore_Box_VII
+ Name: Refinement Ore Box VII
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 4482,1;
+ - Id: 17492
+ AegisName: Refinement_Ore_Box_VII_10
+ Name: Refinement Ore Box VII(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,50;
+ getitem 7620,50;
+ getitem 4482,11;
+ - Id: 17493
+ AegisName: Costama_Egg23
+ Name: Burning Feather Costume Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg23);
+ - Id: 17494
+ AegisName: Happy_Time_Scroll
+ Name: Rise Midgard Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Happy_Time_Scroll);
+ - Id: 17495
+ AegisName: Lucky_Silvervine_Fruit_Box_III10
+ Name: Lucky Silvervine Fruit Box III(10)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10);
+ - Id: 17496
+ AegisName: Lucky_Silvervine_Fruit_Box_III110
+ Name: Lucky Silvervine Fruit Box III(110)
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110);
+ - Id: 17497
+ AegisName: Costama_Egg24
+ Name: Seaside Costume Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg24);
+ - Id: 17498
+ AegisName: Three_Master_Package_IV
+ Name: Three Master Package IV
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,200;
+ getitem 14535,200;
+ getitem 12578,200;
+ getitem 22812,11;
+ - Id: 17501
+ AegisName: Support_Package_IV
+ Name: Support Package IV
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 17502
+ AegisName: Support_Package_IV_10
+ Name: Support Package IV(10)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 17507
+ AegisName: Nyangvine_Box4
+ Name: Actinidia Cat Fruit Box(4)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6909,4;
+ - Id: 17508
+ AegisName: Nyangvine_Box10
+ Name: Actinidia Cat Fruit Box(10)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6909,10;
+ - Id: 17509
+ AegisName: Nyangvine_Box40
+ Name: Actinidia Cat Fruit Box(40)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6909,40;
+ - Id: 17510
+ AegisName: Smelting_Ore_Box_VIII
+ Name: Smelting Ore Box VIII
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 22828,1;
+ - Id: 17511
+ AegisName: Smelting_Ore_Box_VIII_10
+ Name: Smelting Ore Box VIII(10)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,50;
+ getitem 7620,50;
+ getitem 22828,11;
+ - Id: 17512
+ AegisName: Limited_Purified_Eluminium_Box_30
+ Name: (Limited) Purified Eluminium Box(30)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6911,30;
+ getitem 6635,1;
+ - Id: 17513
+ AegisName: Limited_Purified_Oridecon_Box_30
+ Name: (Limited) Purified Oridecon Box(30)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6910,30;
+ getitem 6635,1;
+ - Id: 17515
+ AegisName: Unlimited_Box_III
+ Name: Unlimited Box III
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12684,5;
+ getitem 12796,10;
+ if (!rand(30))
+ getitem 14758,1;
+ - Id: 17516
+ AegisName: Unlimited_Box_III_10
+ Name: Unlimited Box III(10)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12684,50;
+ getitem 12796,100;
+ if (!rand(30))
+ getitem 14758,11;
+ - Id: 17517
+ AegisName: Costama_Egg28
+ Name: Animal Costume Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg28);
+ - Id: 17519
+ AegisName: Epic_Heroes_Scroll
+ Name: Epic Heroes Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Epic_Heroes_Lucky_Egg);
+ - Id: 17520
+ AegisName: Limited_Edition_Manual_Box
+ Name: Limited Edition Manual Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14765,3;
+ /*getitem (limited edition battle manual),2;*/
+ - Id: 17521
+ AegisName: Three_Master_Package_V
+ Name: Three Master Package V
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14534,200;
+ getitem 14535,200;
+ /*getitem Mysterious Water of Life,200;*/
+ getitem 22842,11;
+ - Id: 17523
+ AegisName: Costama_Egg29
+ Name: Mystical Costume Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Costama_Egg29);
+ - Id: 17524
+ AegisName: Limited_Power_Booster_Box
+ Name: Limited Power Booster Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14766,1;
+ getitem 22873,1;
+ - Id: 17525
+ AegisName: Limited_Power_Booster_Box_100
+ Name: Limited Power Booster Box(100)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14766,100;
+ getitem 22873,11;
+ - Id: 17526
+ AegisName: Majestic_Lucky_Scroll
+ Name: Majestic Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Majestic_Lucky_Scroll);
+ - Id: 17527
+ AegisName: Nyangvine_Box200
+ Name: Actinidia Cat Fruit Box(200)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6909,200;
+ getitem 12636,rand(1,5);
+ /*TODO: Fix the 12636 amount*/
+ - Id: 17532
+ AegisName: Blessing_Lucky_Scroll
+ Name: Blessing Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Blessing_Lucky_Scroll);
+ - Id: 17544
+ AegisName: Smelting_Ore_Box_IX
+ Name: Smelting Ore Box IX
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,5;
+ getitem 7620,5;
+ getitem 22888,1;
+ - Id: 17545
+ AegisName: Smelting_Ore_Box_IX_10
+ Name: Smelting Ore Box IX(10)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 7619,50;
+ getitem 7620,50;
+ getitem 22888,11;
+ - Id: 17547
+ AegisName: Limited_2015_Neuralizer_Box
+ Name: (Limited)2015 Neuralizer Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22894,1;
+ - Id: 17548
+ AegisName: Limited_2015_Status_Initialization_Volume_Box
+ Name: (Limited)2015 Status Initialization Volume Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22895,1;
+ - Id: 17549
+ AegisName: Limited_High_Density_Bradium_Box_30
+ Name: (Limited)High Density Bradium Box(30)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6327,30;
+ - Id: 17550
+ AegisName: Limited_High_Density_Kalunium_Box_30
+ Name: (Limited)High Density Kalunium Box(30)
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6906,30;
+ - Id: 17552
+ AegisName: Garnet_Lucky_Scroll
+ Name: Garnet Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Garnet_Lucky_Scroll);
+ - Id: 17567
+ AegisName: Event_Almighty_Box__
+ Name: Event Almighty Box
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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)
+ Type: Cash
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 14505,1;
+ - Id: 17572
+ AegisName: Erzulie_Lucky_Scroll
+ Name: Erzulie Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Erzulie_Lucky_Scroll);
+ - Id: 17584
+ AegisName: Venus_Lucky_Scroll
+ Name: Venus Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Venus_Lucky_Scroll);
+ - Id: 17588
+ AegisName: Amora_Lucky_Scroll
+ Name: Amora Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Amora_Lucky_Scroll);
+ - Id: 17598
+ AegisName: Sograt_Lucky_Scroll
+ Name: Sograt Lucky Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sograt_Lucky_Scroll);
+ - Id: 17607
+ AegisName: Sanctuary_Lucky_Scroll
+ Name: Sanctuary Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Sanctuary_Lucky_Scroll);
+ - Id: 17613
+ AegisName: Chronosian_Lucky_Scroll
+ Name: Chronosian Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Chronosian_Lucky_Scroll);
+ - Id: 17628
+ AegisName: Cyborg_Lucky_Scroll
+ Name: Cyborg Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Cyborg_Lucky_Scroll);
+ - Id: 17633
+ AegisName: Undine_Lucky_Scroll
+ Name: Undine Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_Undine_Lucky_Scroll);
+ - Id: 17648
+ AegisName: Smithy_Lucky_Scroll
+ Name: Smithy Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Smithy_Lucky_Scroll);
+ - Id: 17659
+ AegisName: Ganymede_Lucky_Scroll
+ Name: Ganymede Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Ganymede_Lucky_Scroll);
+ - Id: 17665
+ AegisName: LastAngel_LuckyScroll
+ Name: LastAngel LuckyScroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_LastAngel_LuckyScroll);
+ - Id: 17671
+ AegisName: Valkyrie_Lucky_Scroll
+ Name: Valkyrie Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Valkyrie_Lucky_Scroll);
+ - Id: 17674
+ AegisName: Rainbow_Lucky_Scroll
+ Name: Splash Rainbow Lucky Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Splash_Rainbow_Lucky_Scroll);
+ - Id: 17681
+ AegisName: Midgard_Lucky_Scroll
+ Name: Midgard Lucky Scroll
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Midgard_Lucky_Scroll);
+ - Id: 17692
+ AegisName: June_Lucky_Scroll
+ Name: Blessing Scarlet Egg
+ Type: Cash
+ Weight: 10
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Blessing_Scarlet_Scroll);
+ - Id: 22507
+ AegisName: ShabbyOldScroll
+ Name: Old Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ callfunc "F_22507";
+ - Id: 22508
+ AegisName: Para_Team_Mark_
+ Name: Eden Group Mark
+ Type: Usable
+ Flags:
+ NoConsume: true
+ Delay:
+ Duration: 1200000
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "moc_para01",171,115;
+ - Id: 22510
+ AegisName: King_Wolf_Scroll
+ Name: King Wolf Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO, confirm the rates*/
+ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1;
+ - Id: 22511
+ AegisName: Fenrir_Card__
+ Name: Fenrir's Power Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025;
+ - Id: 22513
+ AegisName: King_of_Gift_Box
+ Name: King of Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO, confirm the rates*/
+ getitem callfunc("F_Rand",12817,4403,14512),1;
+ - Id: 22514
+ AegisName: Candy_Holder
+ Name: Candy Holder
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Idn_Wisdom_Egg);
+ - Id: 22521
+ AegisName: Level_Up_Box_
+ Name: Level Up Box
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 80
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO*/
+ - Id: 22522
+ AegisName: Level_Up_Box100
+ Name: Level Up Box(100)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box100);
+ - Id: 22523
+ AegisName: Level_Up_Box120
+ Name: Level Up Box(120)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 120
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box120);
+ - Id: 22524
+ AegisName: Level_Up_Box130
+ Name: Level Up Box(130)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box130);
+ - Id: 22525
+ AegisName: Level_Up_Box140
+ Name: Level Up Box(140)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 140
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box140);
+ - Id: 22526
+ AegisName: Level_Up_Box150
+ Name: Level Up Box(150)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box150);
+ - Id: 22527
+ AegisName: Level_Up_Box160
+ Name: Level Up Box(160)
+ Type: Cash
+ Buy: 10
+ EquipLevelMin: 160
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Level_Up_Box160);
+ - Id: 22528
+ AegisName: Pet_Exchange_Ticket_Box
+ Name: Pet Exchange Ticket Box
+ Type: Cash
+ Buy: 10
+ Weight: 20
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO*/
+ - Id: 22529
+ AegisName: Shadow_Exchange_Box
+ Name: Shadow Exchange SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 22529;*/
+ - Id: 22530
+ AegisName: Christmas_Box
+ Name: Christmas Box
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Christmas_Box);
+ - Id: 22531
+ AegisName: Special_Christmas_Box
+ Name: Special Christmas Box
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Special_Christmas_Box);
+ - Id: 22532
+ AegisName: Santa_Gift
+ Name: Santa Gift
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Santa_Gift);
+ - Id: 22533
+ AegisName: New_Year_Gift_Box
+ Name: New Year Gift Box
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO*/
+ - Id: 22534
+ AegisName: Closedmind_Box
+ Name: Closed Mind Box
+ Type: Cash
+ Buy: 10
+ Weight: 1000
+ EquipLevelMin: 1
+ Flags:
+ BuyingStore: true
+ Script: |
+ getgroupitem(IG_Sealed_Mind_Box);
+ - Id: 22535
+ AegisName: WorkerScroll_A
+ Name: Scroll Summoning Workers(Male)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ # Script: |
+ # mercenary_create 3024,1800000;
+ - Id: 22536
+ AegisName: WorkerScroll_B
+ Name: Scroll Summoning Workers(Female)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ # Script: |
+ # mercenary_create 3025,1800000;
+ - Id: 22537
+ AegisName: PrizeOfHero
+ Name: Prize Of Hero
+ Type: Usable
+ Weight: 100
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_PrizeOfHero,1);
+ - Id: 22538
+ AegisName: Hanbok_bag
+ Name: Hanbok bag
+ Type: Usable
+ Weight: 10
+ Script: |
+ sc_start SC_HANBOK,600000,0;
+ - Id: 22540
+ AegisName: Runstone_Lux
+ Name: Lux Anima Runestone
+ Type: Delayconsume
+ Buy: 2
+ Weight: 10
+ Classes:
+ All_Third: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_Luxanima
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "RK_LUXANIMA",1;
+ - Id: 22541
+ AegisName: PC_Room_Coupon_Box_VI
+ Name: PC Room Coupon Box VI
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22542
+ AegisName: Center_Potion_B
+ Name: Concentration Potion
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION0,1800000,4;
+ - Id: 22543
+ AegisName: Berserk_Potion_B
+ Name: Berserk Potion
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ Jobs:
+ Mage: true
+ Swordman: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION2,1800000,9;
+ - Id: 22544
+ AegisName: Awakening_Potion_B
+ Name: Awakening Potion
+ Type: Usable
+ Buy: 10
+ Weight: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_ASPDPOTION1,1800000,6;
+ - Id: 22545
+ AegisName: Speed_Up_Potion_B
+ Name: Speed Potion
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SPEEDUP1,5000,50;
+ - Id: 22546
+ AegisName: Slow_Down_Potion_B
+ Name: Slow Potion
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_SLOWDOWN,5000,100;
+ - Id: 22547
+ AegisName: Anodyne_B
+ Name: Anti-Payne Moment
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22548
+ AegisName: Water_Of_Darkness_B
+ Name: Wed Cursed
+ Type: Usable
+ Buy: 10
+ Weight: 30
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22549
+ AegisName: Poison_Bottle_B
+ Name: Poison Bottle
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 22550
+ AegisName: Cookie_Bag_B
+ Name: Sweets Pocket
+ Type: Usable
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22551
+ AegisName: Sesame_Pastry_B
+ Name: Teacake
+ Type: Usable
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22552
+ AegisName: Honey_Pastry_B
+ Name: Fried Pastry
+ Type: Usable
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22553
+ AegisName: Rainbow_Cake_B
+ Name: Rainbow Bread
+ Type: Usable
+ Buy: 10
+ Weight: 70
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ 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);
+ - Id: 22555
+ AegisName: Gourmet_Chocolate
+ Name: Gourmet Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ NoCart: true
+ - Id: 22556
+ AegisName: Luxury_Chocolate
+ Name: Luxury Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ NoCart: true
+ - Id: 22557
+ AegisName: Masterpieces_of_Artisan_Chocolate
+ Name: Masterpieces of Artisan Chocolate
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoSell: true
+ NoCart: true
+ - Id: 22558
+ AegisName: Lucky_Bag
+ Name: Lucky Bag
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ Container: true
+ Script: |
+ getrandgroupitem(IG_Lucky_Bag,1);
+ - Id: 22559
+ AegisName: Mock_Strawberry
+ Name: Mock Strawberry
+ Type: Delayconsume
+ Buy: 20
+ Weight: 100
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_G
+ Script: |
+ percentheal 50,50;
+ itemskill "SM_ENDURE",3;
+ - Id: 22563
+ AegisName: Lucky_Bag_Of_New_Era
+ Name: Lucky Bag Of New Era
+ Type: Usable
+ Script: |
+ /* TODO */
+ - Id: 22567
+ AegisName: Squad_Prize
+ Name: Expedition Award Box
+ 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: Usable
+ Buy: 20
+ Weight: 100
+ # Script: |
+ # mercenary_create 3087,1800000;
+ - Id: 22569
+ AegisName: Gift_New_start
+ Name: Gift New start
+ Type: Cash
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22571
+ AegisName: Easter_Egg
+ Name: Easter Egg
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ - Id: 22592
+ AegisName: Happy_Call_Box
+ Name: Happy Call Box
+ Type: Cash
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22605
+ AegisName: Gingerbread2
+ Name: Ginger Bread
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ - Id: 22610
+ AegisName: New_Beginnings_Box
+ Name: New Beginnings Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12803,1;
+ getitem 12802,1;
+ getitem 12809,1;
+ - Id: 22611
+ AegisName: Packing_Envelope
+ Name: Packed Envelope
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Script: |
+ /* TODO */
+ - Id: 22612
+ AegisName: Decomposition_Potion
+ Name: Corrupt Reagents
+ Type: Delayconsume
+ Buy: 10
+ Weight: 50
+ Script: |
+ specialeffect2 EF_VENOMDUST;
+ showscript "Yeah! Zombie night! Yeah!!";
+# transform 1015,60000,SC_GLASTHEIM_TRANS; /* todo */
+ - Id: 22613
+ AegisName: Contaminated_Reagents
+ Name: Contaminated Reagents
+ Type: Delayconsume
+ Buy: 10
+ Weight: 50
+ Script: |
+ /* TODO */
+ - Id: 22614
+ AegisName: Premium_Manual
+ Name: Premium Manual
+ Type: Usable
+ Buy: 2
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,8640000,50;
+ sc_start SC_ITEMBOOST,8640000,200;
+ - Id: 22617
+ AegisName: Clear_Box_S
+ Name: Clear Box S
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22618
+ AegisName: Clear_Box_A
+ Name: Clear Box A
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ - Id: 22619
+ AegisName: Ghost_Summon_Scroll
+ Name: Ghost Scroll
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* mercenary_create M_E_DEVILING,1800000; */
+ - Id: 22620
+ AegisName: Memorial_Box
+ Name: Box Of Memories
+ Type: Usable
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* TODO */
+ - Id: 22621
+ AegisName: Squid_Bbq
+ Name: Barbecued Squid
+ Type: Usable
+ Buy: 5000
+ Weight: 250
+ Flags:
+ BuyingStore: true
+ Script: |
+ specialeffect2 EF_EXIT;
+ sc_start SC_JP_EVENT04,300000,25;
+ percentheal 5,5;
+ - Id: 22623
+ AegisName: New_Start_Box
+ Name: New Start Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12803,1;
+ getitem 12802,1;
+ getitem 12809,1;
+ - Id: 22624
+ AegisName: Riesen_Bretzel
+ Name: Riesen Bretzel
+ Type: Healing
+ Script: |
+ percentheal 100,0;
+ - Id: 22625
+ AegisName: Oktoberfest_Bag
+ Name: Oktoberfest Bag
+ Type: Usable
+ Weight: 100
+ Script: |
+ sc_start SC_OKTOBERFEST,600000,0;
+ - Id: 22626
+ AegisName: January_Gift_Box
+ Name: January Gift Box
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 19052,604800;
+ - Id: 22627
+ AegisName: February_Gift_Box
+ Name: February Gift Box
+ Type: Usable
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12105,2;
+ - Id: 22628
+ AegisName: 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 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;
+ - 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;
+ - Id: 22631
+ AegisName: Green_Package99
+ Name: Green Package 99
+ Type: Cash
+ Weight: 100
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - Id: 22643
+ AegisName: 17173_Green_Package99
+ Name: Green Package 99
+ Type: Cash
+ Weight: 100
+ Script: |
+ 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;
+ - 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;
+ - 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;
+ - Id: 22647
+ AegisName: S_Green_Package99
+ Name: Green Package 99
+ Type: Cash
+ Weight: 100
+ Script: |
+ getitem 12213,1;
+ getitem 7676,1;
+ getitem 5883,1;
+ - Id: 22648
+ AegisName: Angeling_Package
+ Name: Angel Ring Package
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1;
+ - Id: 22649
+ AegisName: Deviling_Package
+ Name: Devil Ring Package
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1;
+ - Id: 22652
+ AegisName: Briliant_Hat_Box
+ Name: Brilliant Hat Box
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* TODO */
+ - Id: 22653
+ AegisName: Wet_Card_Album
+ Name: Wet Card Album
+ Type: Usable
+ Buy: 10000
+ Weight: 50
+ Script: |
+ /* TODO */
+ - Id: 22657
+ AegisName: Honey_Songpyun_
+ Name: Honey Songpyun
+ Type: Healing
+ Buy: 20
+ Weight: 200
+ Script: |
+ percentheal 20,0;
+ - Id: 22658
+ AegisName: Cow_Steamed_Ribs
+ Name: Cow Steamed Ribs
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180;
+ - Id: 22659
+ AegisName: Pig_Steamed_Ribs
+ Name: Pig Steamed Ribs
+ Type: Healing
+ Buy: 20
+ Weight: 100
+ Script: |
+ bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180;
+ - Id: 22669
+ AegisName: HALLOWEEN_G_BOX
+ Name: Halloween Box
+ Type: Usable
+ Weight: 200
+ Flags:
+ Container: true
+ Script: |
+ getgroupitem(IG_HALLOWEEN_G_BOX);
+ - Id: 22670
+ AegisName: DARK_INVITATION
+ Name: Invitation of Darkness
+ Type: Usable
+ 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;
+ }
+ - Id: 22671
+ AegisName: March_Gift_Box
+ Name: March Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*2 Lucky Eggs*/
+ - Id: 22672
+ AegisName: April_Gift_Box
+ Name: April Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
+ - Id: 22673
+ AegisName: May_Gift_Box
+ Name: May Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22777,2;
+ - Id: 22674
+ AegisName: June_Gift_Box
+ Name: June Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*1 Potion Box*/
+ - Id: 22675
+ AegisName: Mysterious_Scroll
+ Name: Mysterious Scroll
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Script: |
+ sc_start SC_INTFOOD,3600000,30;
+ - Id: 22676
+ AegisName: Hangul_Day_Event_Box
+ Name: Hangul Day Event Box
+ Type: Usable
+ Buy: 20
+ Script: |
+ getitem 22675,10;
+ getitem 607,9;
+ - Id: 22679
+ AegisName: Chest_Of_Death
+ Name: Death's Chest
+ Type: Usable
+ EquipLevelMin: 170
+ Flags:
+ BuyingStore: true
+ Script: |
+ getitem rand(6814,6819),1;
+ - Id: 22685
+ AegisName: Solo_Christmas_Gift
+ Name: Single Union Christmas Gift
+ Type: Usable
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Solo_Christmas_Gift);
+ - Id: 22686
+ AegisName: Solo_Cookie
+ Name: Single Cookie
+ Type: Healing
+ Weight: 50
+ Script: |
+ percentheal 5,5;
+ - Id: 22687
+ AegisName: Pieces_Of_Sentiment
+ Name: Sentimental Fragment
+ Type: Delayconsume
+ Weight: 1
+ EquipLevelMin: 100
+ Flags:
+ BuyingStore: true
+ Delay:
+ Duration: 5000
+ Status: Reuse_Limit_F
+ Script: |
+ callfunc("F_Pieces_Of_Sentiment");
+ - Id: 22691
+ AegisName: Piece_Of_Record1
+ Name: Record Fragment
+ Type: Healing
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "un_bk_q",98,143;
+ - Id: 22692
+ AegisName: Piece_Of_Record2
+ Name: Record Fragment
+ Type: Healing
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "un_bk_q",45,276;
+ - Id: 22693
+ AegisName: Piece_Of_Record3
+ Name: Record Fragment
+ Type: Healing
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "un_bk_q",217,346;
+ - Id: 22694
+ AegisName: Piece_Of_Record4
+ Name: Record Fragment
+ Type: Healing
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "un_bk_q",273,235;
+ - Id: 22695
+ AegisName: Piece_Of_Record5
+ Name: Record Fragment
+ Type: Healing
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ warp "un_bk_q",275,290;
+ - Id: 22699
+ AegisName: Test_Reagent
+ Name: Test Reagent
+ Type: Usable
+ Weight: 30
+ Flags:
+ BuyingStore: true
+ Script: |
+ 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
+ Type: Cash
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/
+ - Id: 22702
+ AegisName: Minus_Str
+ Name: STR Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bStr,-1,22702;
+ - Id: 22703
+ AegisName: Minus_Agi
+ Name: AGI Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bAgi,-1,22703;
+ - Id: 22704
+ AegisName: Minus_Vit
+ Name: VIT Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bVit,-1,22704;
+ - Id: 22705
+ AegisName: Minus_Int
+ Name: INT Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bInt,-1,22705;
+ - Id: 22706
+ AegisName: Minus_Dex
+ Name: DEX Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bDex,-1,22706;
+ - Id: 22707
+ AegisName: Minus_Luk
+ Name: LUK Reduction Potion
+ Type: Delayconsume
+ Buy: 10
+ Script: |
+ callfunc "F_CashReduceStat",bLuk,-1,22707;
+ - Id: 22708
+ AegisName: Pitapat_Box
+ Name: Thrilling Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No clue the random item yet*/
+ - Id: 22721
+ AegisName: ?_Box
+ Name: "? Box"
+ Type: Cash
+ Buy: 10
+ Script: |
+ /*No clue the random item yet*/
+ - Id: 22734
+ AegisName: Revolution_Quiz_Box
+ Name: Revolution Quiz Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 6635,2;
+ getitem 6423,1;
+ /*1x Enchanted Letter Introduction*/
+ - Id: 22735
+ AegisName: Sealed_Moonlight_Flower_Scroll
+ Name: Sealed Moonlight Flower Scroll
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*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
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 20212,1;
+ - Id: 22737
+ AegisName: Bullet_Case_Blood_
+ Name: Bloody Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13222,500;
+ - Id: 22738
+ AegisName: Bullet_Case_Silver_
+ Name: Silver Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13221,500;
+ - Id: 22739
+ AegisName: Sphere_Case_Wind_
+ Name: Lightning Sphere Pack
+ Type: Usable
+ Buy: 10
+ Weight: 350
+ Script: |
+ getitem 13224,500;
+ - Id: 22740
+ AegisName: Sphere_Case_Darkness_
+ Name: Blind Sphere Pack
+ Type: Usable
+ Buy: 10
+ Weight: 350
+ Script: |
+ getitem 13226,500;
+ - Id: 22741
+ AegisName: Sphere_Case_Poison_
+ Name: Poison Sphere Pack
+ Type: Usable
+ Buy: 10
+ Weight: 350
+ Script: |
+ getitem 13225,500;
+ - Id: 22742
+ AegisName: Sphere_Case_Water_
+ Name: Freezing Sphere Pack
+ Type: Usable
+ Buy: 10
+ Weight: 350
+ Script: |
+ getitem 13227,500;
+ - Id: 22743
+ AegisName: Sphere_Case_Fire_
+ Name: Flare Sphere Pack
+ Type: Usable
+ Buy: 10
+ Weight: 350
+ Script: |
+ getitem 13223,500;
+ - Id: 22744
+ AegisName: Bullet_Case_AP
+ Name: Armor-Piercing Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13215,500;
+ - Id: 22745
+ AegisName: Bullet_Case_Blaze
+ Name: Incandescence Shot Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13216,500;
+ - Id: 22746
+ AegisName: Bullet_Case_Fleeze
+ Name: Glaciation Shot Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13217,500;
+ - Id: 22747
+ AegisName: Bullet_Case_Electric
+ Name: Dengeki Shot Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13218,500;
+ - Id: 22748
+ AegisName: Bullet_Case_Stone
+ Name: Hearthstone Shot Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13219,500;
+ - Id: 22749
+ AegisName: Sanctified_Bullet_Case
+ Name: Purification Shot Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13220,500;
+ - Id: 22750
+ AegisName: Trans_Scroll_Horn_Scaraba
+ Name: Transformation Scroll(Horn Scaraba)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 2161,1200000,SC_MTF_ASPD2,2,10;
+ - Id: 22751
+ AegisName: Trans_Scroll_Wanderer
+ Name: Transformation Scroll(Wanderer)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 1208,1200000,SC_MTF_ASPD2,2,10;
+ - Id: 22752
+ AegisName: Trans_Scroll_Gazeti
+ Name: Transformation Scroll(Gazeti)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 1778,1200000,SC_MTF_RANGEATK2,30;
+ - Id: 22753
+ AegisName: Trans_Scroll_Kobold_Archer
+ Name: Transformation Scroll(Kobold Archer)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 1282,1200000,SC_MTF_RANGEATK2,30;
+ - Id: 22754
+ AegisName: Trans_Scroll_Necromancer
+ Name: Transformation Scroll(Necromancer)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 1870,1200000,SC_MTF_RANGEATK2,30;
+ - Id: 22755
+ AegisName: Trans_Scroll_Wind_Ghost
+ Name: Transformation Scroll(Wind Ghost)
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ transform 1263,1200000,SC_MTF_MATK2,50;
+ - Id: 22756
+ AegisName: August_Gift_Box
+ Name: August Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12246,1;
+ - Id: 22757
+ AegisName: Collection_Of_Scrolls_Magical_Transformation
+ Name: Collection Of Scrolls Magical Transformation
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ Script: |
+ getitem 22755,1;
+ getitem 22754,1;
+ - Id: 22758
+ AegisName: Collection_Of_Scrolls_Shooting_Transformation
+ Name: Collection Of Scrolls Shooting Transformation
+ Type: Cash
+ Buy: 10
+ Weight: 200
+ Script: |
+ 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;
+ - Id: 22760
+ AegisName: Argiope_Transportin
+ Name: Argiope Transportin
+ Type: Usable
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No Info*/
+ - Id: 22761
+ AegisName: Luciola_Vespa_Transportin
+ Name: Luciola Vespa Transportin
+ Type: Usable
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No Info*/
+ - Id: 22762
+ AegisName: Centipede_Transportin
+ Name: Centipede Transportin
+ Type: Usable
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No Info*/
+ - Id: 22764
+ AegisName: Pet_Exchange_Ticket_Box_
+ Name: Pet Exchange Ticket Box
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 22770
+ AegisName: Shark_Skewer
+ Name: Shark Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /*No Info*/
+ - Id: 22771
+ AegisName: Bluefin_Tuna_Skewer
+ Name: Bluefin Tuna Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INCATKRATE,5000,30;
+ - Id: 22772
+ AegisName: Sea_Bream_Skewer
+ Name: Sea Bream Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_INCMATKRATE,5000,30;
+ - Id: 22773
+ AegisName: Piranha_Skewer
+ Name: Piranha Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_ASPDPOTION0,5000,5;
+ - Id: 22774
+ AegisName: Salmon_Skewer
+ Name: Salmon Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_SPEEDUP0,5000,25;
+ - Id: 22775
+ AegisName: Eels_Skewer
+ Name: Eels Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_DEF_RATE,5000,30;
+ - Id: 22776
+ AegisName: Carp_Skewer
+ Name: Carp Skewer
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ sc_start SC_MDEF_RATE,5000,30;
+ - Id: 22777
+ AegisName: Gift_Buff_Set
+ Name: Gift Buff Set
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Gift_Buff_Set);
+ - Id: 22781
+ AegisName: PC_Bang_Normal_Box
+ Name: PC Bang Normal Box
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,20;
+ /*No Info*/
+ - Id: 22782
+ AegisName: PC_Bang_Wooden_Box
+ Name: PC Bang Wooden Box
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,30;
+ /*No Info*/
+ - Id: 22783
+ AegisName: PC_Bang_Golden_Box
+ Name: PC Bang Golden Box
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,1;
+ getitem 985,10;
+ /*No Info*/
+ - Id: 22784
+ AegisName: PC_Bang_Platinum_Box
+ Name: PC Bang Platinum Box
+ Type: Usable
+ Buy: 10
+ Weight: 200
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 547,1;
+ getitem 12017,10;
+ getitem 678,12;
+ /*No Info*/
+ - Id: 22808
+ AegisName: NoviceBox
+ Name: Special Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ 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
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1;
+ - Id: 22813
+ AegisName: Bearer's_Shadow_Box
+ Name: Bearer's Shadow Box
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1;
+ - Id: 22822
+ AegisName: Summer_Vacation_Costumes
+ Name: Summer Vacation Costumes
+ Type: Usable
+ Weight: 100
+ EquipLevelMin: 1
+ Script: |
+ sc_start SC_DRESSUP,600000,1;
+ - Id: 22823
+ AegisName: Sealed_Sniper_Scroll
+ Name: Sealed Sniper Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/
+ - Id: 22826
+ AegisName: Enchant_Stone_Box4
+ Name: Costume Enchantment Stone Box 4
+ Type: Usable
+ Buy: 10
+ 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;
+ - Id: 22827
+ AegisName: Shadow_Cube
+ Name: Shadow Cube
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Classes:
+ All: false
+ Script: |
+ /*No Info*/
+ - Id: 22828
+ AegisName: Sealed_Album_Scroll
+ Name: Sealed Album Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1;
+ - Id: 22829
+ AegisName: Sealed_Card_Album
+ Name: Sealed Card Album
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1;
+ - Id: 22837
+ AegisName: Integer_Time
+ Name: Integer Time
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 673,5;
+ - Id: 22838
+ AegisName: Something_Candy_Holder
+ Name: Something Candy Holders
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Something_Candy_Holder);
+ - Id: 22842
+ AegisName: Sealed_Dracula_Scroll_II
+ Name: Sealed Dracula Scroll II
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1;
+ - Id: 22843
+ AegisName: Superstar_Snack
+ Name: Superstar Snack
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300;
+ - Id: 22844
+ AegisName: Sealed_Dracula_Card_Album
+ Name: Sealed Dracula Card Album
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ Classes:
+ All: false
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No Info*/
+ - Id: 22845
+ AegisName: Sealed_Fortune_Egg
+ Name: Sealed Fortune Egg
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1;
+ - Id: 22846
+ AegisName: Sealed_Dracula_Card_
+ Name: Sealed Dracula Card
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus_script "{ bonus2 bSPDrainRate,50,5; }",300;
+ - Id: 22847
+ AegisName: BadgeOfProntera
+ Name: Prontera Badge
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ warp "prontera",159,192;
+ - Id: 22848
+ AegisName: KeysPrison
+ Name: Prison Key
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ warp "prt_prison",188,23;
+ - Id: 22849
+ AegisName: P_Temporal_Crystal
+ Name: Prontera Time Crystal
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ warp "prt_q",155,27;
+ - Id: 22850
+ AegisName: January_Gift_Box_
+ Name: January Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem 19052,604800;
+ - Id: 22851
+ AegisName: February_Gift_Box_
+ Name: February Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12105,2;
+ - Id: 22852
+ AegisName: March_Gift_Box_
+ Name: March Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*2 Lucky Eggs*/
+ - Id: 22853
+ AegisName: April_Gift_Box_
+ Name: April Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
+ - Id: 22854
+ AegisName: May_Gift_Box_
+ Name: May Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22777,2;
+ - Id: 22855
+ AegisName: June_Gift_Box_
+ Name: June Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*1 Potion Box*/
+ - Id: 22856
+ AegisName: July_Gift_Box_
+ Name: July Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 20212,1;
+ - Id: 22857
+ AegisName: August_Gift_Box_
+ Name: August Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12246,1;
+ - Id: 22858
+ AegisName: September_Gift_Box
+ Name: September Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*2 Lucky Eggs*/
+ - Id: 22859
+ AegisName: October_Gift_Box
+ Name: October Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12529,5;
+ - Id: 22860
+ AegisName: November_Gift_Box
+ Name: November Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
+ - Id: 22861
+ AegisName: December_Gift_Box
+ Name: December Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22869,10;
+ - Id: 22868
+ AegisName: Enchant_Stone_Box5
+ Name: Costume Enchantment Stone Box 5
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box5);
+ - Id: 22869
+ AegisName: Lucky_Roulette_Tickets
+ Name: Lucky Roulette Ticket
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ EquipLevelMin: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ RouletteBronze++;
+ - Id: 22873
+ AegisName: Sealed_Beelzebub_Scroll_II
+ Name: Sealed Beelzebub Scroll II
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1;
+ - Id: 22874
+ AegisName: Sealed_Beelzebub_Card_Album
+ Name: Sealed Beelzebub Card Album
+ Type: Usable
+ Buy: 10
+ Weight: 50
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*No Info*/
+ - Id: 22876
+ AegisName: Shabby_Purse
+ Name: Old Money Pocket
+ Type: Usable
+ Script: |
+ specialeffect2 EF_STEAL;
+ Zeny += rand(100,1000);
+ - Id: 22881
+ AegisName: Binding_Rope
+ Name: Rope Gallows
+ Type: Usable
+ Buy: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Used to catch a Lost Sheep*/
+ - Id: 22882
+ AegisName: Choco_Tteokguk
+ Name: Chocolate Rice Cake Soup
+ Type: Usable
+ Buy: 10
+ Script: |
+ percentheal 10,10;
+ - Id: 22883
+ AegisName: September_Gift_Box_
+ Name: September Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*2 Lucky Eggs*/
+ - Id: 22884
+ AegisName: October_Gift_Box_
+ Name: October Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12529,5;
+ - Id: 22885
+ AegisName: November_Gift_Box_
+ Name: November Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
+ - Id: 22886
+ AegisName: December_Gift_Box_
+ Name: December Gift Box
+ Type: Usable
+ Buy: 10
+ Weight: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 22869,10;
+ - Id: 22887
+ AegisName: PC-Room_Box
+ Name: PC-Room Box
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 12531,1;
+ getitem callfunc("F_Rand",6230,6234,22654),1;
+ - Id: 22888
+ AegisName: New_Year's_Scroll
+ Name: New Year's Scroll
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1;
+ - Id: 22893
+ AegisName: New_Year's_Shadow_Cube
+ Name: New Year's Shadow Cube
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Get a random Shadow Equip (No info which one)*/
+ - Id: 22894
+ AegisName: Limited_2015_Neuralizer
+ Name: (Limited)2015 Neuralizer
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashReset";
+ - Id: 22895
+ AegisName: Limited_2015_Status_Initialization_Volume
+ Name: (Limited)2015 Status Initialization Volume
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Works like item 6320, can reset up to 3x within 1 hour*/
+ - Id: 22896
+ AegisName: Limited_Old_Status_Initialization_Volume
+ Name: (Limited)Old Status Initialization Volume
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*Works like item 6320, can reset up to 3x within 1 hour*/
+ - Id: 22899
+ AegisName: DowntownMap
+ Name: Parchment City
+ Type: Delayconsume
+ Buy: 20
+ Script: |
+ itemskill "AL_INCAGI",1;
+ heal -15,0;
+ - Id: 22901
+ AegisName: BlueboxOfQuestions
+ Name: Mysterious Blue Box
+ Type: Usable
+ Buy: 20
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc("F_Mysterious_box");
+ - Id: 22902
+ AegisName: Sealed_Card_Album_Scroll_II
+ Name: Sealed Card Album Scroll II
+ Type: Usable
+ Buy: 20
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1;
+ - Id: 22905
+ AegisName: Enchant_Stone_Box6
+ Name: Costume Enchant Stone Box 6
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box6);
+ - Id: 22953
+ AegisName: Enchant_Stone_Box7
+ Name: Costume Enchant Stone Box 7
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box7);
+ - Id: 22979
+ AegisName: Comp_Battle_Bubble
+ Name: "[Sale] Battle Manual and Bubble Gum"
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ sc_start SC_EXPBOOST,1800000,50;
+ sc_start SC_ITEMBOOST,1800000,100;
+ - Id: 22984
+ AegisName: Dr_Life_Potion_01
+ Name: Kahluna Milk
+ Type: Healing
+ Buy: 6
+ Weight: 10
+ Script: |
+ sc_start SC_DORAM_BUF_01, 180000, 0;
+ - Id: 22985
+ AegisName: Dr_Life_Potion_02
+ Name: Basil
+ Type: Healing
+ Buy: 10
+ Weight: 10
+ Script: |
+ sc_start SC_DORAM_BUF_02, 180000, 0;
+ - Id: 23001
+ AegisName: Enchant_Stone_Box8
+ Name: Costume Enchant Stone Box 8
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box8);
+ - Id: 23012
+ AegisName: S_Small_Mana_Potion
+ Name: "[Sale] Small Mana Potion"
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9;
+ /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */
+ - Id: 23016
+ AegisName: Pieces_Of_Grudge
+ Name: Cursed Fragment
+ Type: Usable
+ Buy: 1
+ Weight: 1
+ Script: |
+ callfunc("F_Cursed_Fragment");
+ - Id: 23038
+ AegisName: S_Slim_White_Box
+ Name: "[Sale] Slim White Potion Box"
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 11573,200;
+ - Id: 23042
+ AegisName: Seed_Of_Yggdrasil_
+ Name: "[NotForSale]Yggdrasil Seed"
+ Type: Healing
+ Weight: 300
+ Delay:
+ Duration: 3000
+ Status: Reuse_Limit_G
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ percentheal 50,50;
+ - Id: 23043
+ AegisName: S_Seed_Of_Yggdrasil_Box
+ Name: "[Sale] Yggdrasil Seed Box"
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getitem 23042,30;
+ - Id: 23046
+ AegisName: S_Mystic_Powder
+ Name: "[Sale] Mystic Powder"
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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"
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ 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;
+ - Id: 23048
+ AegisName: S_Resilience_Potion
+ Name: "[Sale] Resilience Enhancement Potion"
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box9);
+ - Id: 23076
+ AegisName: Build_Up_Potion_SS
+ Name: Build Up Potion SS
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ 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
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ 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
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ Script: |
+ if (strcharinfo(3) == "slabw01") {
+ sc_start SC_EP16_2_BUFF_AC,10000,0;
+ }
+ - Id: 23080
+ AegisName: Cursed_Crystal
+ Name: Cursed Crystal
+ Type: Usable
+ Buy: 1
+ Weight: 500
+ Script: |
+ callfunc("F_Cursed_Crystal");
+ - Id: 23086
+ AegisName: Enchant_Stone_Box10
+ Name: Costume Enchant Stone Box 10
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box10);
+ - Id: 23087
+ AegisName: Small_Leather_Bag
+ Name: Small Leather Bag
+ Type: Usable
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23100;*/
+ - Id: 23123
+ AegisName: Bullet_Case_Flare
+ Name: Flare Bullet Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13228,500;
+ - Id: 23124
+ AegisName: Bullet_Case_Lighting
+ Name: Lightning Bullet Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13229,500;
+ - Id: 23125
+ AegisName: Bullet_Case_Ice
+ Name: Ice Bullet Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13230,500;
+ - Id: 23126
+ AegisName: Bullet_Case_Poison
+ Name: Poison Bullet Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13231,500;
+ - Id: 23127
+ AegisName: Bullet_Case_Blind
+ Name: Blind Bullet Cartridge
+ Type: Usable
+ Buy: 10
+ Weight: 250
+ Script: |
+ getitem 13232,500;
+ - Id: 23151
+ AegisName: EnchantStone_Recipe
+ Name: Enchant Stone Recipe
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23151;*/
+ - Id: 23152
+ AegisName: Collectibles_Box
+ Name: Collectibles SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23152;*/
+ - Id: 23153
+ AegisName: Pet_Egg_Box
+ Name: Pet Egg SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23153;*/
+ - Id: 23154
+ AegisName: Costume_Exchange_Box
+ Name: Costume Exchange SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23154;*/
+ - Id: 23170
+ AegisName: Fan_Modification_Kit
+ Name: Fan Modification Kit
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23170;*/
+ - Id: 23174
+ AegisName: Enchant_Stone_Box11
+ Name: Costume Enchant Stone Box 11
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box11);
+ - Id: 23175
+ AegisName: Uniform_Repair_Kit
+ Name: Uniform Repair Kit
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23175;*/
+ - Id: 23177
+ AegisName: Kafra_Card_
+ Name: Kafra Card
+ Type: Usable
+ Buy: 2
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ callfunc "F_CashStore";
+ - Id: 23187
+ AegisName: Sap_Jelly
+ Name: Sap Liquid
+ Type: Usable
+ Buy: 10
+ Script: |
+ pet 1180;
+ - Id: 23188
+ AegisName: Airship_Part
+ Name: Unprocessed Parts
+ Type: Usable
+ Buy: 10
+ Script: |
+ pet 1632;
+ - Id: 23189
+ AegisName: Little_Dall_Needle
+ Name: Small Needle Kit
+ Type: Usable
+ Buy: 10
+ Script: |
+ pet 1622;
+ - Id: 23191
+ AegisName: Varetyr_Spear_Scroll_1_5
+ Name: Level 5 Varetyr Spear
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemskill "SO_VARETYR_SPEAR",5;
+ - Id: 23192
+ AegisName: Diamond_Dust_Scroll_1_5
+ Name: Level 5 Diamond Dust
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemskill "SO_DIAMONDDUST",5;
+ - Id: 23193
+ AegisName: Crimson_Rock_Scroll_1_5
+ Name: Level 5 Crimson Rock
+ Type: Delayconsume
+ Buy: 10
+ Weight: 10
+ Script: |
+ itemskill "WL_CRIMSONROCK",5;
+ - 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;
+ - Id: 23196
+ AegisName: Agust_Lucky_Scroll
+ Name: Shining Blue Lucky Egg
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Flags:
+ Container: true
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ getgroupitem(IG_Agust_Lucky_Scroll);
+ - Id: 23228
+ AegisName: HazyMooncake
+ Name: Hazy Mooncake
+ Type: Healing
+ Buy: 768
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* unknown */
+ - Id: 23229
+ AegisName: Scroll_of_Fallen_Angel_Wings
+ Name: Scroll of Fallen Angel Wings
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23229;*/
+ - Id: 23236
+ AegisName: Class_Shadow_Box_Weapon
+ Name: Class Shadow Box (Weapon)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23236;*/
+ - Id: 23237
+ AegisName: Class_Shadow_Box_Armor
+ Name: Class Shadow Box (Armor)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23237;*/
+ - Id: 23238
+ AegisName: Class_Shadow_Box_Shoes
+ Name: Class Shadow Box (Shoes)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23238;*/
+ - Id: 23239
+ AegisName: Class_Shadow_Box_Shield
+ Name: Class Shadow Box (Shield)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23239;*/
+ - Id: 23240
+ AegisName: Class_Shadow_Box_Pendant
+ Name: Class Shadow Box (Pendant)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23240;*/
+ - Id: 23241
+ AegisName: Class_Shadow_Box_Earring
+ Name: Class Shadow Box (Earring)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23241;*/
+ - Id: 23247
+ AegisName: StatusShadow_Mix
+ Name: StatusShadow Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23247;*/
+ - Id: 23248
+ AegisName: GemstoneShadow_Mix
+ Name: GemstoneShadow Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23248;*/
+ - Id: 23249
+ AegisName: BearersShadow_Mix
+ Name: BearerShadow Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23249;*/
+ - Id: 23250
+ AegisName: ComposeShadow_Mix
+ Name: ComposerShadow Mix
+ Type: Delayconsume
+ 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_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: 300
+ Jobs:
+ Blacksmith: true
+ Classes:
+ All_Third: true
+ EquipLevelMin: 100
+ Delay:
+ Duration: 180000
+ Script: |
+ specialeffect2 EF_CLAYMORE;
+ setmadogear true;
+ - Id: 23280
+ AegisName: N_Fly_Wing_
+ Name: Novice Fly Wing
+ Type: Delayconsume
+ Buy: 10
+ EquipLevelMin: 1
+ EquipLevelMax: 98
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 23281
+ AegisName: RaceShadow_Mix
+ Name: RaceShadow Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23281;*/
+ - Id: 23288
+ AegisName: Compressed_Wing_Of_Fly
+ Name: Compressed Fly Wing
+ Type: Delayconsume
+ Buy: 1000
+ Weight: 10
+ Script: |
+ itemskill "AL_TELEPORT",1;
+ - Id: 23289
+ AegisName: Candy_Pouch_Blessing_Scroll_Melee
+ Name: Candy Pouch Blessing Scroll(Physical)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23289;*/
+ - Id: 23290
+ AegisName: Candy_Pouch_Blessing_Scroll_Range
+ Name: Candy Pouch Blessing Scroll(Ranged)
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23290;*/
+ - Id: 23291
+ AegisName: Candy_Pouch_Blessing_Scroll_Magic
+ Name: Candy Pouch Blessing Scroll(Magic)
+ Type: Delayconsume
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box12);
+ - Id: 23307
+ AegisName: S_Shining_Def_Scroll
+ Name: "[Sale] Shining Defense Scroll"
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ 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
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23308;*/
+ - Id: 23311
+ AegisName: Magic_Cat_hand_Scroll
+ Name: Magic Cat Hand Scroll
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23311;*/
+ - Id: 23324
+ AegisName: StabilityShadow_Mix
+ Name: StabilityShadow Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23324;*/
+ - Id: 23340
+ AegisName: Comp_Megaphone
+ Name: "[Sale] Megaphone"
+ Type: Usable
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ input .@megaphone$;
+ announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;
+ - Id: 23436
+ AegisName: Shadow_Refine_Hammer
+ Name: Shadow Refine Hammer
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23436;*/
+ - Id: 23474
+ AegisName: InfinityShadow_Mix
+ Name: InfinityShadow Mix
+ Type: Delayconsume
+ 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
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box13);
+ - Id: 23545
+ AegisName: Silver_Statue
+ Name: Silver Statue
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23545;*/
+ - Id: 23546
+ AegisName: Cursed_Blood
+ Name: Cursed Blood
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23546;*/
+ - Id: 23547
+ AegisName: Gold_Statue
+ Name: Gold Statue
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23547;*/
+ - Id: 23629
+ AegisName: Enchant_Stone_Box14
+ Name: Costume Enchant Stone Box 14
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box14);
+ - Id: 23665
+ AegisName: PhysicalMagical_Mix
+ Name: PhysicalMagical Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23665;*/
+ - Id: 23666
+ AegisName: ImmunedAthena_Mix
+ Name: ImmunedAthena Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23666;*/
+ - Id: 23667
+ AegisName: HardChamption_Mix
+ Name: HardChampion Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23667;*/
+ - Id: 23668
+ AegisName: KingbirdAncient_Mix
+ Name: KingbirdAncient Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23668;*/
+ - Id: 23669
+ AegisName: CriticalHit_Mix
+ Name: CriticalHit Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23669;*/
+ - Id: 23675
+ AegisName: Geffen_Magic_Scroll
+ Name: Geffen Magic Armor Order Form
+ Type: Delayconsume
+ Weight: 100
+ Script: |
+ /*upgradeui 23675;*/
+ - Id: 23676
+ AegisName: Gray_Charcoal_Melee
+ Name: Grey Abrasive (physical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23676;*/
+ - Id: 23677
+ AegisName: Gray_Charcoal_Magic
+ Name: Grey Abrasive (magical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23677;*/
+ - Id: 23678
+ AegisName: Gray_Charcoal_Range
+ Name: Grey Abrasive (distance)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23678;*/
+ - Id: 23679
+ AegisName: Geffen_Magic_Scroll2
+ Name: Geffen Magic Accessory Order Form
+ Type: Delayconsume
+ Weight: 100
+ Script: |
+ /*upgradeui 23679;*/
+ - Id: 23682
+ AegisName: Enchant_Stone_Box15
+ Name: Costume Enchant Stone Box 15
+ Type: Cash
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box15);
+ - Id: 23706
+ AegisName: Charleston_Parts_W
+ Name: Charleston Upgrade Parts (Physical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23706;*/
+ - Id: 23707
+ AegisName: Charleston_Parts_R
+ Name: Charleston Upgrade Parts (Ranged)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23707;*/
+ - Id: 23720
+ AegisName: Shadow_Random_Mix
+ Name: Shadow Random Mix
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23720;*/
+ - Id: 23770
+ AegisName: Enchant_Stone_Box16
+ Name: Costume Enchant Stone Box16
+ Type: Cash
+ Weight: 10
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box16);
+ - Id: 23776
+ AegisName: EP17_1_SPC05
+ Name: Weapon Modifier (Physical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23776;*/
+ - Id: 23777
+ AegisName: EP17_1_SPC06
+ Name: Advanced Weapon Modifier (Physical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23777;*/
+ - Id: 23778
+ AegisName: EP17_1_SPC07
+ Name: Super Weapon Modifier (Physical)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23778;*/
+ - Id: 23779
+ AegisName: EP17_1_SPC08
+ Name: Weapon Modifier (Magic)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23779;*/
+ - Id: 23780
+ AegisName: EP17_1_SPC09
+ Name: Advanced Weapon Modifier (Magic)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23780;*/
+ - Id: 23781
+ AegisName: EP17_1_SPC10
+ Name: Super Weapon Modifier (Magic)
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23781;*/
+ - Id: 23815
+ AegisName: Magma_Essence
+ Name: Lava Essence
+ Type: Delayconsume
+ Weight: 50
+ Script: |
+ /*upgradeui 23815;*/
+ - Id: 23818
+ AegisName: Bs_Item_M_S_2
+ Name: Giant Orc Helm Combination SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23818;*/
+ - Id: 23819
+ AegisName: Bs_Item_M_S_8
+ Name: Crimson Rose SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23819;*/
+ - Id: 23820
+ AegisName: Bs_Item_M_S_10
+ Name: Grand Peco Hairband SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23820;*/
+ - Id: 23821
+ AegisName: Bs_Item_M_S_11
+ Name: Moonflower Hair Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23821;*/
+ - Id: 23822
+ AegisName: Bs_Item_M_S_34
+ Name: Wings of 8 Purgatories SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23822;*/
+ - Id: 23823
+ AegisName: Bs_Item_M_S_41
+ Name: Tare Neko Cru SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23823;*/
+ - Id: 23824
+ AegisName: Bs_Item_M_S_42
+ Name: Glory Soccer Ball Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23824;*/
+ - Id: 23825
+ AegisName: Bs_Item_M_S_43
+ Name: Wicket marching Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23825;*/
+ - Id: 23826
+ AegisName: Bs_Item_M_S_44
+ Name: Wandering Wolf Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23826;*/
+ - Id: 23827
+ AegisName: Bs_Sha_M_S_1
+ Name: Status Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23827;*/
+ - Id: 23828
+ AegisName: Bs_Sha_M_S_17
+ Name: Elegant Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23828;*/
+ - Id: 23829
+ AegisName: Bs_Sha_M_S_18
+ Name: Tension Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23829;*/
+ - Id: 23830
+ AegisName: Bs_Sha_M_S_19
+ Name: Restore Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23830;*/
+ - Id: 23831
+ AegisName: Bs_Sha_M_S_20
+ Name: Healing Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23831;*/
+ - Id: 23832
+ AegisName: Bs_Item_M_S_4
+ Name: Amistr Cap SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23832;*/
+ - Id: 23833
+ AegisName: Bs_Item_M_S_6
+ Name: Tiger King Doll Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23833;*/
+ - Id: 23834
+ AegisName: Bs_Item_M_S_7
+ Name: Bacsojin Doll SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23834;*/
+ - Id: 23835
+ AegisName: Bs_Item_M_S_12
+ Name: Candy Pouch Bag SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23835;*/
+ - Id: 23836
+ AegisName: Bs_Item_M_S_13
+ Name: Gold Fish Head Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23836;*/
+ - Id: 23837
+ AegisName: Bs_Item_M_S_15
+ Name: Survival SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23837;*/
+ - Id: 23838
+ AegisName: Bs_Item_M_S_28
+ Name: Toy Sringe SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23838;*/
+ - Id: 23839
+ AegisName: Bs_Item_M_S_29
+ Name: Indigor Rear Ribbon SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23839;*/
+ - Id: 23840
+ AegisName: Bs_Item_M_S_31
+ Name: Magical Booster SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23840;*/
+ - Id: 23841
+ AegisName: Bs_Item_M_S_32
+ Name: Rosario's Necklace SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23841;*/
+ - Id: 23842
+ AegisName: Bs_Item_M_S_33
+ Name: Spirit Crown SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23842;*/
+ - Id: 23843
+ AegisName: Bs_Item_M_S_36
+ Name: Guard's Cap SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23843;*/
+ - Id: 23844
+ AegisName: Bs_Item_M_S_37
+ Name: Bandit's Hood SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23844;*/
+ - Id: 23845
+ AegisName: Bs_Item_M_S_38
+ Name: Angel's Blessing SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23845;*/
+ - Id: 23846
+ AegisName: Bs_Item_M_S_39
+ Name: Rabbit Magic Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23846;*/
+ - Id: 23847
+ AegisName: Bs_Item_M_S_40
+ Name: Anubis Helm SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23847;*/
+ - Id: 23848
+ AegisName: Bs_Item_M_S_45
+ Name: Imp Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23848;*/
+ - Id: 23849
+ AegisName: Bs_Item_M_S_46
+ Name: Red Marching Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23849;*/
+ - Id: 23850
+ AegisName: Bs_Item_M_S_47
+ Name: Ifrit Mask SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23850;*/
+ - Id: 23851
+ AegisName: Bs_Item_M_S_48
+ Name: Incarnation Of Morocc Doll SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23851;*/
+ - Id: 23852
+ AegisName: Bs_Item_M_S_49
+ Name: Samambaia SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23852;*/
+ - Id: 23853
+ AegisName: Bs_Item_M_S_50
+ Name: Chick Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23853;*/
+ - Id: 23854
+ AegisName: Bs_Sha_M_S_2
+ Name: Class Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23854;*/
+ - Id: 23855
+ AegisName: Bs_Sha_M_S_5
+ Name: Spell Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23855;*/
+ - Id: 23856
+ AegisName: Bs_Sha_M_S_6
+ Name: Size Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23856;*/
+ - Id: 23857
+ AegisName: Bs_Sha_M_S_7
+ Name: Race Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23857;*/
+ - Id: 23858
+ AegisName: Bs_Sha_M_S_8
+ Name: Stability Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23858;*/
+ - Id: 23859
+ AegisName: Bs_Sha_M_S_13
+ Name: Special Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23859;*/
+ - Id: 23860
+ AegisName: Bs_Sha_M_S_15
+ Name: Physical Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23860;*/
+ - Id: 23861
+ AegisName: Bs_Sha_M_S_16
+ Name: Magical Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23861;*/
+ - Id: 23862
+ AegisName: Bs_Sha_M_S_23
+ Name: EXP Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23862;*/
+ - Id: 23863
+ AegisName: Bs_Item_M_S_5
+ Name: Mad Bunny SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23863;*/
+ - Id: 23864
+ AegisName: Bs_Item_M_S_9
+ Name: Archangel's Wings SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23864;*/
+ - Id: 23865
+ AegisName: Bs_Item_M_S_14
+ Name: Smokie's Transformation Leaf SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23865;*/
+ - Id: 23866
+ AegisName: Bs_Item_M_S_16
+ Name: Ifrit's Ear SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23866;*/
+ - Id: 23867
+ AegisName: Bs_Item_M_S_17
+ Name: Heartwing Band SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23867;*/
+ - Id: 23868
+ AegisName: Bs_Item_M_S_19
+ Name: Sigrun's Wings SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23868;*/
+ - Id: 23869
+ AegisName: Bs_Item_M_S_27
+ Name: Cat Headdress SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23869;*/
+ - Id: 23870
+ AegisName: Bs_Item_M_S_35
+ Name: Noble Mask SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23870;*/
+ - Id: 23871
+ AegisName: Bs_Sha_M_S_9
+ Name: Gemstone Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23871;*/
+ - Id: 23872
+ AegisName: Bs_Sha_M_S_10
+ Name: Bearers Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23872;*/
+ - Id: 23873
+ AegisName: Bs_Sha_M_S_11
+ Name: Hasty Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23873;*/
+ - Id: 23874
+ AegisName: Bs_Sha_M_S_21
+ Name: Critical Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23874;*/
+ - Id: 23875
+ AegisName: Bs_Sha_M_S_22
+ Name: Mortal Blow Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23875;*/
+ - Id: 23876
+ AegisName: Bs_Item_M_S_1
+ Name: Fallen Angel Wings SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23876;*/
+ - Id: 23877
+ AegisName: Bs_Item_M_S_3
+ Name: Adventurer's Backpack SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23877;*/
+ - Id: 23879
+ AegisName: Bs_Item_M_S_18
+ Name: Spell Circuit SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23879;*/
+ - Id: 23880
+ AegisName: Bs_Item_M_S_20
+ Name: New Wave Sunglasses SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23880;*/
+ - Id: 23881
+ AegisName: Bs_Item_M_S_21
+ Name: Giant Snake Breath SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23881;*/
+ - Id: 23882
+ AegisName: Bs_Item_M_S_22
+ Name: Judge Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23882;*/
+ - Id: 23883
+ AegisName: Bs_Item_M_S_23
+ Name: Dog Officer SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23883;*/
+ - Id: 23884
+ AegisName: Bs_Item_M_S_24
+ Name: Fancy Feather Hat SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23884;*/
+ - Id: 23885
+ AegisName: Bs_Item_M_S_25
+ Name: Amistr Beret SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23885;*/
+ - Id: 23886
+ AegisName: Bs_Item_M_S_26
+ Name: General Helm SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23886;*/
+ - Id: 23887
+ AegisName: Bs_Item_M_S_30
+ Name: Cursed Knight's Shield SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23887;*/
+ - Id: 23888
+ AegisName: Bs_Sha_M_S_3
+ Name: Penetration Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23888;*/
+ - Id: 23889
+ AegisName: Bs_Sha_M_S_4
+ Name: Tempest Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23889;*/
+ - Id: 23890
+ AegisName: Bs_Sha_M_S_12
+ Name: Blitz Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23890;*/
+ - Id: 23891
+ AegisName: Bs_Sha_M_S_14
+ Name: Reload Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23891;*/
+ - Id: 23892
+ AegisName: Bs_Sha_M_S_24
+ Name: Force and Spirit Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23892;*/
+ - Id: 23893
+ AegisName: Bs_Sha_M_S_25
+ Name: Infinity Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23893;*/
+ - Id: 23894
+ AegisName: Bs_Item_M_S_51
+ Name: Wickebine's Black Cat's Ear SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23894;*/
+ - Id: 23926
+ AegisName: Shadow_9_Refine_Hammer
+ Name: Shadow 9 Refine Hammer
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 23926;*/
+ - Id: 23967
+ AegisName: EnchantStone_Recipe_9m
+ Name: Enchant Stone Recipe 9m
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 23967;*/
+ - Id: 23981
+ AegisName: Abyss_Ddbox
+ Name: Turbulence Dragon's Power
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 23981; */
+ - Id: 100000
+ AegisName: IDTest_Special
+ Name: IDTest Special
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100000;*/
+ - Id: 100003
+ AegisName: ILL_Piece_A
+ Name: Red Phantom Resonance Stone
+ Type: Delayconsume
+ Script: |
+ /*upgradeui 100003;*/
+ - Id: 100004
+ AegisName: ILL_Piece_B
+ Name: Azure Mirage Resonance Stone
+ Type: Delayconsume
+ Script: |
+ /*upgradeui 100004;*/
+ - Id: 100009
+ AegisName: Joy_Of_Victory
+ Name: Victorious Happiness
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100009; */
+ - Id: 100010
+ AegisName: PerfectSize_Mix
+ Name: Perfect Size Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100010;*/
+ - Id: 100011
+ AegisName: MagicPiercing_Mix
+ Name: Magic Piercing Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100011;*/
+ - Id: 100019
+ AegisName: Enchant_Stone_Box18
+ Name: Costume Enchant Stone Box18
+ Type: Cash
+ Weight: 10
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box18);
+ - Id: 100023
+ AegisName: Ancient_Hero_Bravery
+ Name: Ancient Hero Bravery
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 100023;*/
+ - Id: 100025
+ AegisName: Ancient_Hero_Wisdom
+ Name: Ancient Hero Wisdom
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*upgradeui 100025;*/
+ - Id: 100043
+ AegisName: Boost_Up_1
+ Name: Booster Armor UpgradeBox
+ Type: Delayconsume
+ Script: |
+ /*upgradeui 100043;*/
+ - Id: 100044
+ AegisName: Boost_Up_2
+ Name: Booster Weapon UpgradeBox
+ Type: Delayconsume
+ Script: |
+ /*upgradeui 100044;*/
+ - Id: 100052
+ AegisName: Enchant_Stone_Box19
+ Name: Costume Enchantment Stone Box 19
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box19);
+ - Id: 100053
+ AegisName: Piercing_Mix
+ Name: Piercing Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100053;*/
+ - Id: 100058
+ AegisName: Hasty_Mix
+ Name: Hasty Shadow SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100058;*/
+ - Id: 100060
+ AegisName: EnchantStone_Recipe_4m
+ Name: 4m Enchant Stone Recipe SynthesisBox
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100060;*/
+ - Id: 100065
+ AegisName: WL_MB_SG
+ Name: Spell Book (Storm Gust)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",1;
+ - Id: 100066
+ AegisName: WL_MB_LOV
+ Name: Spell Book (Lord of Vermilion)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",2;
+ - Id: 100067
+ AegisName: WL_MB_MS
+ Name: Spell Book (Meteor Storm)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",3;
+ - Id: 100068
+ AegisName: WL_MB_DL
+ Name: Spell Book (Drain Life)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",4;
+ - Id: 100069
+ AegisName: WL_MB_JF
+ Name: Spell Book (Jack Frost)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",5;
+ - Id: 100070
+ AegisName: WL_MB_ES
+ Name: Spell Book (Earth Strain)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",6;
+ - Id: 100071
+ AegisName: WL_MB_CR
+ Name: Spell Book (Crimson Rock)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",7;
+ - Id: 100072
+ AegisName: WL_MB_CL
+ Name: Spell Book (Chain Lightning)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",8;
+ - Id: 100073
+ AegisName: WL_MB_CM
+ Name: Spell Book (Comet)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",9;
+ - Id: 100074
+ AegisName: WL_MB_TV
+ Name: Spell Book (Tetra Vortex)
+ Type: Delayconsume
+ Flags:
+ NoConsume: true
+ Script: |
+ itemskill "WL_READING_SB_READING",10;
+ - Id: 100125
+ AegisName: Metal_7_Ticket
+ Name: Metal Weapon +7 Refinement Ticket
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100125; */
+ - Id: 100128
+ AegisName: Noblesses_Refine_Ticket
+ Name: Noblesses Refine Ticket
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100128;*/
+ - Id: 100129
+ AegisName: Imperial_Refine_Ticket
+ Name: Imperial Refine Ticket
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100129;*/
+ - Id: 100130
+ AegisName: Grace_Refine_Ticket
+ Name: Grace Refine Ticket
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100130;*/
+ - Id: 100131
+ AegisName: Imperial_P_Mo_Garment
+ Name: Imperial Physical Modification Permit (Garment)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100131;*/
+ - Id: 100132
+ AegisName: Imperial_M_Mo_Garment
+ Name: Imperial Magical Modification Permit (Garment)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100132;*/
+ - Id: 100133
+ AegisName: Grace_P_Mo_Garment
+ Name: Grace Physical Modification Permit (Garment)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100133;*/
+ - Id: 100134
+ AegisName: Grace_M_Mo_Garment
+ Name: Grace Magical Modification Permit (Garment)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100134;*/
+ - Id: 100135
+ AegisName: Imperial_P_Mo_Armor
+ Name: Imperial Physical Modification Permit (Armor)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100135;*/
+ - Id: 100136
+ AegisName: Imperial_M_Mo_Armor
+ Name: Imperial Magical Modification Permit (Armor)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 125
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100136;*/
+ - Id: 100137
+ AegisName: Grace_P_Mo_Armor
+ Name: Grace Physical Modification Permit (Armor)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100137;*/
+ - Id: 100138
+ AegisName: Grace_M_Mo_Armor
+ Name: Grace Magical Modification Permit (Armor)
+ Type: Delayconsume
+ Buy: 20
+ EquipLevelMin: 150
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /*upgradeui 100138;*/
+ - Id: 100142
+ AegisName: Abyss_Ddbox2
+ Name: Stable Dragon's Power
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100142; */
+ - Id: 100144
+ AegisName: Abyss_Ddbox3
+ Name: Burning Dragon's Power
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100144; */
+ - Id: 100145
+ AegisName: Abyss_Ddbox4
+ Name: Hot Dragon's Power
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100145; */
+ - Id: 100151
+ AegisName: Skill_Sha_M_S_Weapon
+ Name: Skill Shadow Weapon Combination Scroll
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100151; */
+ - Id: 100164
+ AegisName: Auto_Imp_Melee_1
+ Name: Normal Automatic Improvement Device (Physical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100164; */
+ - Id: 100165
+ AegisName: Auto_Imp_Melee_2
+ Name: Advanced Automatic Improvement Device (Physical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100165; */
+ - Id: 100166
+ AegisName: Auto_Imp_Melee_3
+ Name: Premium Automatic Improvement Device (Physical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100166; */
+ - Id: 100167
+ AegisName: Auto_Imp_Magic_1
+ Name: Normal Automatic Improvement Device (Magical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100167; */
+ - Id: 100168
+ AegisName: Auto_Imp_Magic_2
+ Name: Advanced Automatic Improvement Device (Magical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100168; */
+ - Id: 100169
+ AegisName: Auto_Imp_Magic_3
+ Name: Premium Automatic Improvement Device (Magical)
+ Type: DelayConsume
+ Script: |
+ /* upgradeui 100169; */
+ - Id: 100202
+ AegisName: Enchant_Stone_Box20
+ Name: Costume Enchantment Stone Box 20
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box20);
+ - Id: 100205
+ AegisName: Class_Sha_R_M_Melee
+ Name: Class Shadow Spellbook (Melee)
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100205; */
+ - Id: 100206
+ AegisName: Class_Sha_R_M_Magic
+ Name: Class Shadow Spellbook (Magic)
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100206; */
+ - Id: 100207
+ AegisName: Skill_Sha_R_M_Melee
+ Name: Skill Shadow Spellbook (Melee)
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100207; */
+ - Id: 100208
+ AegisName: Skill_Sha_R_M_Magic
+ Name: Skill Shadow Spellbook (Magic)
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100208; */
+ - Id: 100209
+ AegisName: Skill_Sha_M_S_Shield
+ Name: Skill Shadow Shield Recipe
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100209; */
+ - Id: 100210
+ AegisName: Skill_Sha_M_S_Pendant
+ Name: Skill Shadow Pendant Recipe
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100210; */
+ - Id: 100211
+ AegisName: Skill_Sha_M_S_Earing
+ Name: Skill Shadow Earring Recipe
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100211; */
+ - Id: 100212
+ AegisName: Skill_Sha_M_S_Shoes
+ Name: Skill Shadow Shoes Recipe
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100212; */
+ - Id: 100213
+ AegisName: Skill_Sha_M_S_Armor
+ Name: Skill Shadow Armor Recipe
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100213; */
+ - Id: 100231
+ AegisName: Ref_T_Potion
+ Name: Golden X
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Script: |
+ sc_start SC_REF_T_POTION,30000,0;
+ - Id: 100232
+ AegisName: Add_Atk_Potion
+ Name: Red Herb Activator
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Script: |
+ sc_start SC_ADD_ATK_DAMAGE,500000,15;
+ - Id: 100233
+ AegisName: Add_Matk_Potion
+ Name: Blue Herb Activator
+ Type: Healing
+ Buy: 10
+ Weight: 30
+ Script: |
+ sc_start SC_ADD_MATK_DAMAGE,500000,15;
+ - Id: 100251
+ AegisName: Illu_Enhance_Cube
+ Name: Illusion Reinforcement Cube
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100251; */
+ - Id: 100252
+ AegisName: Auto_Enhance_Cube
+ Name: Automatic Reinforcement Cube
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoSell: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100252; */
+ - Id: 100268
+ AegisName: Temporal_Refine_Cube
+ Name: Temporal Equipment 11 Refine Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100268; */
+ - Id: 100269
+ AegisName: Geffen_Refine_Cube
+ Name: Geffen Magic Tournament 12 Refine Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100269; */
+ - Id: 100270
+ AegisName: Old_Refine_Cube
+ Name: Fallen Warrior's Headgear 12 Refine Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100270; */
+ - Id: 100271
+ AegisName: Refine_Hero_Weapon
+ Name: Ancient Hero Weapon 9 Refine Permission
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100271; */
+ - Id: 100272
+ AegisName: Refine_Hero_Boots
+ Name: Ancient Hero Boots 9 Refine Permission
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100272; */
+ - Id: 100273
+ AegisName: Remodel_Hero_Boots
+ Name: Ancient Hero Boots Modification Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100273; */
+ - Id: 100274
+ AegisName: Oriental_Sword_Cube
+ Name: Oriental Sword Modification Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100274; */
+ - Id: 100275
+ AegisName: Dragonic_Slayer_Cube
+ Name: Dragonic Slayer Modification Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100275; */
+ - Id: 100276
+ AegisName: Shiver_Katar_K_Cube
+ Name: Shiver Katar Modification Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100276; */
+ - Id: 100277
+ AegisName: Blade_Katar_Cube
+ Name: Blade Katar Modification Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100277; */
+ - Id: 100314
+ AegisName: Enchant_Stone_Box21
+ Name: Costume Enchantment Stone Box 21
+ Type: Usable
+ Buy: 10
+ Weight: 10
+ EquipLevelMin: 1
+ Script: |
+ getgroupitem(IG_Enchant_Stone_Box21);
+ - Id: 100321
+ AegisName: OS_Weapon_Refine_Cube
+ Name: OS Weapon +11 Refinement Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100321; */
+ - Id: 100322
+ AegisName: Racecap_Refine_Cube
+ Name: Racing Cap +11 Refinement Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100322; */
+ - Id: 100327
+ AegisName: Sword_Of_Bluefire_Cube
+ Name: Red Lotus Sword Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100327; */
+ - Id: 100328
+ AegisName: Slate_Sword_Cube
+ Name: Slate Sword Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100328; */
+ - Id: 100329
+ AegisName: Narcis_Bow_Cube
+ Name: Narcissus Bow Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100329; */
+ - Id: 100330
+ AegisName: Trumpet_Shell_K_Cube
+ Name: Trumpet Shell Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100330; */
+ - Id: 100331
+ AegisName: Barb_Wire_K_Cube
+ Name: Barbed Wire Whip Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100331; */
+ - Id: 100338
+ AegisName: Booster_W_Up_1
+ Name: Booster Weapon Phase 1 Upgrade Package
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100338; */
+ - Id: 100339
+ AegisName: Booster_W_Up_2
+ Name: Booster Weapon Phase 2 Upgrade Package
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100339; */
+ - Id: 100340
+ AegisName: Booster_W_Up_3
+ Name: Booster Weapon Upgrade Package
+ Type: DelayConsume
+ EquipLevelMin: 100
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100340; */
+ - Id: 100341
+ AegisName: E_ILL_Up
+ Name: Illusion (Bound) Upgrade Package
+ Type: DelayConsume
+ EquipLevelMin: 130
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100341; */
+ - Id: 100354
+ AegisName: Auto_Armor_Refine_Cube
+ Name: Automatic Armor +11 Refinement Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100354; */
+ - Id: 100355
+ AegisName: Bio_Weapon_Refine_Cube
+ Name: Bio Lab Weapon +11 Refinement Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100355; */
+ - Id: 100360
+ AegisName: Avenger_Cube
+ Name: Avenger Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100360; */
+ - Id: 100361
+ AegisName: Meteor_Striker_Cube
+ Name: Meteor Striker Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100361; */
+ - Id: 100362
+ AegisName: Magic_Sword_Cube
+ Name: Mado Sword Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100362; */
+ - Id: 100363
+ AegisName: Fatalist_Cube
+ Name: Fatalist Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100363; */
+ - Id: 100365
+ AegisName: MD_Geffen_Rarmor
+ Name: MD Geffen Refine Armor
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100365; */
+ - Id: 100366
+ AegisName: MD_Geffen_Rhood
+ Name: MD Geffen Refine Hood
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100366; */
+ - Id: 100367
+ AegisName: MD_Geffen_Racc
+ Name: MD Geffen Refine Accessory
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100367; */
+ - Id: 100368
+ AegisName: MD_Geffen_Rsheild
+ Name: MD Geffen Refine Shield
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100368; */
+ - Id: 100376
+ AegisName: Royal_Bow_K_Cube
+ Name: Royal Bow Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100376; */
+ - Id: 100377
+ AegisName: Scalet_Dragon_L_Cube
+ Name: Scarlet Dragon Leather Bow Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100377; */
+ - Id: 100378
+ AegisName: Shadow_Staff_K_Cube
+ Name: Shadow Staff Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100378; */
+ - Id: 100379
+ AegisName: Freezing_Rod_Cube
+ Name: Chilling Cane Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100379; */
+ - Id: 100381
+ AegisName: 3Lv_9Refine_Weapon_7Gu
+ Name: +9 Lv3 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100381; */
+ - Id: 100382
+ AegisName: 3Lv_10Refine_Weapon_8Gu
+ Name: +10 Lv3 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100382; */
+ - Id: 100383
+ AegisName: 3Lv_11Refine_Weapon_9Gu
+ Name: +11 Lv3 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100383; */
+ - Id: 100384
+ AegisName: 3Lv_12Refine_Weapon_10G
+ Name: +12 Lv3 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100384; */
+ - Id: 100385
+ AegisName: 4Lv_9Refine_Weapon_8Gu
+ Name: +9 Lv4 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100385; */
+ - Id: 100386
+ AegisName: 4Lv_10Refine_Weapon_9Gu
+ Name: +10 Lv4 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100386; */
+ - Id: 100387
+ AegisName: 4Lv_11Refine_Weapon_10G
+ Name: +11 Lv4 Weapon Refine Permission Exchange Hammer
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100387; */
+ - Id: 100388
+ AegisName: Iron_Nail_K_Cube
+ Name: Iron Nail Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100388; */
+ - Id: 100390
+ AegisName: Ray_Knuckle_Cube
+ Name: Ray Knuckle Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100390; */
+ - Id: 100391
+ AegisName: Moonlight_Box_IL
+ Name: Moonlight Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100391; */
+ - Id: 100392
+ AegisName: S_Moonlight_Box_IL
+ Name: Special Moonlight Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100392; */
+ - Id: 100393
+ AegisName: Undine_Spear_K_Cube
+ Name: Aquatic Spear Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100393; */
+ - Id: 100394
+ AegisName: Light_Blade_Cube
+ Name: Light Blade Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100394; */
+ - Id: 100395
+ AegisName: Iron_Staff_Cube
+ Name: Iron Staff Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100395; */
+ - Id: 100396
+ AegisName: Blue_Crystal_Staff_Cube
+ Name: Blue Crystal Staff Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100396; */
+ - Id: 100397
+ AegisName: Demon_Hunt_Bible_Cube
+ Name: Exorcist's Bible Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100397; */
+ - Id: 100398
+ AegisName: Saint_Hall_Cube
+ Name: Saint Scepter Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100398; */
+ - Id: 100399
+ AegisName: MeawFoxtail_Cube
+ Name: Meowmeow Foxtail Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100399; */
+ - Id: 100400
+ AegisName: Fog_Dew_Sword_Cube
+ Name: Kiri no Tsuyu Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100400; */
+ - Id: 100401
+ AegisName: Humma_Clear_Cube
+ Name: Clarity Huuma Shuriken Remodeling Cube
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100401; */
+ - Id: 100402
+ AegisName: Thousand_Sun_Cube
+ Name: Thousand Sun Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100402;*/
+ - Id: 100403
+ AegisName: Spirit_Pendulum_Cube
+ Name: Spirit Pendulum Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100403;*/
+ - Id: 100404
+ AegisName: Crimson_Rose_Cube
+ Name: Crimson Rose Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100404;*/
+ - Id: 100405
+ AegisName: Master_Soul_Rifle_Cube
+ Name: Master Soul Rifle Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100405;*/
+ - Id: 100406
+ AegisName: Golden_Lord_Launcher_Cube
+ Name: Golden Lord Launcher Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100406;*/
+ - Id: 100407
+ AegisName: The_Black_Cube
+ Name: The Black Modification Cube
+ Type: Delayconsume
+ Weight: 10
+ Script: |
+ /*synthesisui 100407;*/
+ - Id: 100408
+ AegisName: Demon_Slayer_Shot_Cube
+ Name: Demon Slayer Shot Modification Cube
+ Type: Delayconsume
+ 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: 100412
+ AegisName: Great_Hero_Bravery
+ Name: Great Hero's Bravery
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100412; */
+ - Id: 100413
+ AegisName: Great_Hero_Wisdom
+ Name: Great Hero's Wisdom
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100413; */
+ - Id: 100414
+ AegisName: Vampire_Box_IL
+ Name: Vampire Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100414; */
+ - Id: 100415
+ AegisName: S_Vampire_Box_IL
+ Name: Special Vampire Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100415; */
+ - Id: 100416
+ AegisName: S_Frozen_Box_IL
+ Name: Special Frozen Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100416; */
+ - Id: 100417
+ AegisName: Turtle_Is_Box_IL
+ Name: Turtle Island Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100417; */
+ - Id: 100418
+ AegisName: S_Turtle_Is_Box_IL
+ Name: Special Turtle Island Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100418; */
+ - Id: 100419
+ AegisName: Teddy_Bear_Box_IL
+ Name: Teddy Bear Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100419; */
+ - Id: 100420
+ AegisName: S_Teddy_Bear_Box_IL
+ Name: Special Teddy Bear Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100420; */
+ - Id: 100421
+ AegisName: Luanda_Box_IL
+ Name: Luanda Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100421; */
+ - Id: 100422
+ AegisName: S_Luanda_Box_IL
+ Name: Special Luanda Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100422; */
+ - Id: 100423
+ AegisName: Labyrinth_Box_IL
+ Name: Labyrinth Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100423; */
+ - Id: 100424
+ AegisName: S_Labyrinth_Box_IL
+ Name: Special Labyrinth Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100424; */
+ - Id: 100425
+ AegisName: Underwater_Box_IL
+ Name: Underwater Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100425; */
+ - Id: 100426
+ AegisName: S_Underwater_Box_IL
+ Name: Special Underwater Refine Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100426; */
+ - Id: 100433
+ AegisName: EnchantStone_Recipe_3m
+ Name: March Costume Enchant Stone Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100433; */
+ - Id: 100436
+ AegisName: Circlet_Refine_Cube
+ Name: Temporal Circlet +11 Refine Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100436; */
+ - Id: 100466
+ AegisName: Egir_Power_Box
+ Name: Aegir's Power Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100466; */
+ - Id: 100467
+ AegisName: Egir_Magic_Box
+ Name: Aegir's Magical Power Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100467; */
+ - Id: 100468
+ AegisName: Egirnion_Box
+ Name: Aegirnian Box
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100468; */
+ - Id: 100476
+ AegisName: MD_Airboat_Random
+ Name: Ymir Beads
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100476; */
+ - Id: 100479
+ AegisName: Sakray_Fury
+ Name: Sakrai's Wraith
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100479; */
+ - Id: 100480
+ AegisName: Sakray_Fury2
+ Name: Condensed Sakrai's Wrath
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100480; */
+ - Id: 100481
+ AegisName: Overclocker
+ Name: Battle Processor Accelerator
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100481; */
+ - Id: 100485
+ AegisName: Sakray_Regret
+ Name: Sakrai's Regret
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100485; */
+ - Id: 100486
+ AegisName: Sakray_Regret2
+ Name: Condensed Sakrai's Regret
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100486; */
+ - Id: 100572
+ AegisName: FullPeneShadow_Mix
+ Name: Full Penetration Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100572; */
+ - Id: 100579
+ AegisName: PendantStoneForWork
+ Name: Pendant Gemstone of Force
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* synthesisui 100579; */
+ - Id: 100580
+ AegisName: Dark_Stone
+ Name: Dark Stone
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100580; */
+ - Id: 100596
+ AegisName: FullTempShadow_Mix
+ Name: Full Tempest Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100596; */
+ - Id: 100600
+ AegisName: Shadow_Mix_Recipe2
+ Name: New Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100600; */
+ - Id: 100601
+ AegisName: Illusion_Module_Mix
+ Name: Illusion Module Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100601; */
+ - Id: 100602
+ AegisName: Automatic_Module_Mix
+ Name: Automatic Module Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100602; */
+ - Id: 100620
+ AegisName: True_GemShadow_Mix
+ Name: True Gemstone Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100620; */
+ - Id: 100621
+ AegisName: Mammoth_Mix
+ Name: Maximum Mammonth Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100621; */
+ - Id: 100626
+ AegisName: GrayWolf_7_Ticket
+ Name: Gray Wolf +7 Refinement Box
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100626; */
+ - Id: 100627
+ AegisName: GrayWolf_9_Ticket
+ Name: Gray Wolf +9 Refinement Box
+ Type: DelayConsume
+ Weight: 10
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100627; */
+ - Id: 100650
+ AegisName: Pontifex_Courage
+ Name: Pontifex Courage
+ Type: DelayConsume
+ Weight: 10
+ EquipLevelMin: 180
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100650; */
+ - Id: 100651
+ AegisName: Pontifex_Wisdom
+ Name: Pontifex Wisdom
+ Type: DelayConsume
+ Weight: 10
+ EquipLevelMin: 180
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100651; */
+ - Id: 100652
+ AegisName: Pontifex_Tenacity
+ Name: Pontifex Tenacity
+ Type: DelayConsume
+ Weight: 10
+ EquipLevelMin: 180
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100652; */
+ - Id: 100653
+ AegisName: Pontifex_Belief
+ Name: Pontifex Belief
+ Type: DelayConsume
+ Weight: 10
+ EquipLevelMin: 180
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100653; */
+ - Id: 100661
+ AegisName: EXPShadow_Mix
+ Name: Experience Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100661; */
+ - Id: 100684
+ AegisName: Bio_Helm_Refine_Cube
+ Name: Biological Lab Helmet +11 Refinement Cube
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* upgradeui 100684; */
+ - Id: 100691
+ AegisName: AbsorbShadow_Mix
+ Name: Absolve Shadow Thump Box
+ Type: DelayConsume
+ Weight: 10
+ Flags:
+ BuyingStore: true
+ Script: |
+ /* synthesisui 100691; */
+ - Id: 100699
+ AegisName: Twins_Box_IL
+ Name: Twins Smelt Box # !todo check english name
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100699; */
+ - Id: 100700
+ AegisName: S_Twins_Box_IL
+ Name: Special Twins Smelting Box # !todo check english name
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100700; */
+ - Id: 100710
+ AegisName: EXP_Overclocker
+ Name: EXP Advisor Retrofit # !todo check english name
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100710; */
+ - Id: 100722
+ AegisName: Booster_RandomOpt_P
+ Name: Booster Modification Stone (Physical) # !todo check english name
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100722; */
+ - Id: 100723
+ AegisName: Booster_RandomOpt_M
+ Name: Booster Modification Stone (Magical) # !todo check english name
+ Type: DelayConsume
+ Trade:
+ Override: 100
+ NoDrop: true
+ NoTrade: true
+ NoCart: true
+ NoStorage: true
+ NoGuildStorage: true
+ NoMail: true
+ NoAuction: true
+ Script: |
+ /* upgradeui 100723; */
+ - Id: 100744
+ AegisName: Costama_Egg69
+ Name: Hero's Weapon Modification (Physical) # !todo check english name
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100744; */
+ - Id: 100745
+ AegisName: Hero_LT_Refine_Magic
+ Name: Hero's Weapon Modification Device (Magical) # !todo check english name
+ Type: DelayConsume
+ Weight: 10
+ Script: |
+ /* upgradeui 100745; */
+ - Id: 1100003
+ AegisName: Concentrated_R_P
+ Name: Concentrated Red Potion
+ Type: Healing
+ Buy: 10
+ Weight: 2
+ EquipLevelMin: 120
+ Script: |
+ itemheal rand(655,675),0;
+ - Id: 1100004
+ AegisName: Concentrated_B_P
+ Name: Concentrated Blue Potion
+ Type: Healing
+ Buy: 10
+ Weight: 2
+ EquipLevelMin: 120
+ Script: |
+ itemheal 0,rand(340,360);
+ - Id: 1100005
+ AegisName: Concentrated_G_P
+ Name: Concentrated Gold Potion
+ Type: Healing
+ Buy: 10
+ Weight: 2
+ EquipLevelMin: 180
+ Script: |
+ itemheal rand(2730,2750),0;
diff --git a/db/re/item_delay.txt b/db/re/item_delay.txt
deleted file mode 100644
index 11d0ed0063..0000000000
--- a/db/re/item_delay.txt
+++ /dev/null
@@ -1,106 +0,0 @@
-// Item Delay Database
-//
-// Structure of Database:
-// ,{,}
-//
-//
-// ID of item that will has reuse delay.
-//
-// Re-use delay in milliseconds.
-//
-// SC (status change) group for the item.
-// Example for SC_REUSE_LIMIT_MTF
-// 12658,10000,SC_REUSE_LIMIT_MTF // Transformation Scroll(Deviruchi)
-// 12659,10000,SC_REUSE_LIMIT_MTF // Transformation Scroll(Raydric)
-// -> 12658 has reuse delay for 10 seconds, and also,
-// 12659 cannot be used when this delay is active.
-// Since this is optional, default is -1 will ignores the
-// delay group and the delay will be stored in character's
-// data that has limit set in src/map/itemdb.hpp as MAX_ITEMDELAYS.
-
-// SC_REUSE_REFRESH
-12725,120000,SC_REUSE_REFRESH //Runstone_Nosiege
-
-// SC_REUSE_LIMIT_A
-14538,300000,SC_REUSE_LIMIT_A //Glass_Of_Illusion
-
-// SC_REUSE_LIMIT_B
-12596,180000,SC_REUSE_LIMIT_B //Magic_Candy
-14586,180000,SC_REUSE_LIMIT_B //Spark_Candy
-
-// SC_REUSE_LIMIT_C
-12208,60000,SC_REUSE_LIMIT_C //Battle_Manual
-
-// SC_REUSE_LIMIT_D
-12210,60000,SC_REUSE_LIMIT_D //Bubble_Gum
-
-// SC_REUSE_LIMIT_E
-11522,1000,SC_REUSE_LIMIT_E //Red_Raffle_Sap
-11523,2000,SC_REUSE_LIMIT_E //Yellow_Raffle_Sap
-11524,3000,SC_REUSE_LIMIT_E //White_Raffle_Sap
-
-// SC_REUSE_LIMIT_F
-607,5000,SC_REUSE_LIMIT_F //Yggdrasil_Berry
-
-// SC_REUSE_LIMIT_G
-608,3000,SC_REUSE_LIMIT_G //Yggdrasil_Seed
-22559,3000,SC_REUSE_LIMIT_G //Mock_Strawberry
-23042,3000,SC_REUSE_LIMIT_G //S_Seed_Of_Yggdrasil
-
-// SC_REUSE_LIMIT_H
-11525,5000,SC_REUSE_LIMIT_H //Mora_Hip_Tea
-
-// SC_REUSE_LIMIT_MTF
-12658,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Deviruchi)
-12659,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Raydric)
-12660,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Mavka)
-12661,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Marduk)
-12662,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Banshee)
-12663,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Poring)
-12664,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Golem)
-
-// SC_REUSE_LIMIT_ASPD_POTION
-12684,900000,SC_REUSE_LIMIT_ASPD_POTION //ASPD_Potion
-
-// SC_REUSE_MILLENNIUMSHIELD
-12727,60000,SC_REUSE_MILLENNIUMSHIELD //Runstone_Verkana
-
-// SC_REUSE_CRUSHSTRIKE
-12726,30000,SC_REUSE_CRUSHSTRIKE //Runstone_Rhydo
-
-// SC_REUSE_STORMBLAST
-12732,1000,SC_REUSE_STORMBLAST //Runstone_Pertz
-
-// SC_ALL_RIDING_REUSE_LIMIT
-12622,3000,SC_ALL_RIDING_REUSE_LIMIT //Boarding_Halter
-
-// SC_REUSE_LIMIT_ECL
-12812,5000,SC_REUSE_LIMIT_ECL //Snow_Flip
-12813,5000,SC_REUSE_LIMIT_ECL //Peony_Mommy
-12814,5000,SC_REUSE_LIMIT_ECL //Slapping_Herb
-12815,5000,SC_REUSE_LIMIT_ECL //Yggdrasil_Dust
-
-// SC_REUSE_LIMIT_RECALL
-12968,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll1
-12969,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll2
-12970,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll3
-
-// Misc
-11621,10000 //Red_Syrup
-11622,10000 //Yellow_Syrup
-11623,10000 //White_Syrup
-11624,10000 //Blue_Syrup
-12135,10000 //Green_Ale
-//12202,60000 //Str_Dish10_
-//12203,60000 //Agi_Dish10_
-//12204,60000 //Int_Dish10_
-//12205,60000 //Dex_Dish10_
-//12206,60000 //Luk_Dish10_
-//12207,60000 //Vit_Dish10_
-22508,1200000 //Para_Team_Mark_
-
-// Bed of Honor
-22687,5000,SC_REUSE_LIMIT_F // Pieces_Of_Sentiment
-
-23277,180000 //Mado_Box
-
diff --git a/db/re/item_flag.txt b/db/re/item_flag.txt
deleted file mode 100644
index 2f46a1517c..0000000000
--- a/db/re/item_flag.txt
+++ /dev/null
@@ -1,1787 +0,0 @@
-// Flagged Items
-// ,
-//
-// :
-// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag)
-// 2 - As item group container, check player's inventory and weight before consumed
-// 4 - GUID Item: When this item is obtained, will generates GUID that cannot be stacked even same or stackable item
-// 8 - Item will be bound item when equipped
-// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted!
-// 32 - Item will not be removed on consumption. Also supports 'itemskill'
-// 64 - Item will be displayed with a client side defined drop
-// 128 - Item will be displayed with a white pillar drop effect
-// 256 - Item will be displayed with a blue pillar drop effect
-// 512 - Item will be displayed with a yellow pillar drop effect
-// 1024 - Item will be displayed with a purple pillar drop effect
-// 2048 - Item will be displayed with a orange pillar drop effect
-// NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree
-
-// Logged as Dead Branch item
-604,1 //Branch_Of_Dead_Tree
-12103,1 //Bloody_Dead_Branch
-12109,1 //Poring_Box
-12024,1 //Red_Pouch_Of_Surprise
-
-// Item group container
-603,2 //Old_Blue_Box
-616,2 //Old_Card_Album
-617,2 //Old_Violet_Box
-644,2 //Gift_Box
-664,2 //Gift_Box_1
-665,2 //Gift_Box_2
-666,2 //Gift_Box_3
-667,2 //Gift_Box_4
-12023,2 //Giftbox_China
-12025,2 //Egg_Boy
-12026,2 //Egg_Girl
-12038,2 //Lotto_Box04
-12104,2 //Random_Quiver
-12105,2 //Set_Of_Taiming_Item
-12106,2 //Accessory_Box
-12107,2 //Wrapped_Mask
-12108,2 //Bundle_Of_Magic_Scroll
-12110,2 //First_Aid_Kit
-12111,2 //Food_Package
-12130,2 //Cookie_Bag
-12152,2 //Special_Box
-12186,2 //Red_Box
-12187,2 //Green_Box
-12189,2 //Red_Box_
-12194,2 //Hometown_Gift
-12240,2 //Old_Yellow_Box
-12244,2 //Old_Gift_Box
-12246,2 //Magic_Card_Album
-12248,2 //Masquerade_Ball_Box
-12281,2 //Tresure_Box_WoE
-12286,2 //Masquerade_Ball_Box2
-12334,2 //Cherish_Box
-12339,2 //Cherish_Box_Ori
-12355,2 //Xmas_Gift
-12356,2 //Louise_Costume_Box
-12391,2 //Lucky_Egg_C
-12403,2 //Lucky_Egg_C2
-12416,2 //Lucky_Egg_C3
-12473,2 //RWC_Parti_Box
-12474,2 //RWC_Final_Comp_Box
-12477,2 //Gift_Bundle
-12479,2 //Caracas_Ring_Box
-12492,2 //Crumpled_Paper
-12493,2 //Lucky_Egg_C4
-12537,2 //Solo_Gift_Basket
-12538,2 //Couple_Event_Basket
-12540,2 //GM_Warp_Box
-12541,2 //Fortune_Cookie1
-12542,2 //Fortune_Cookie2
-12543,2 //Fortune_Cookie3
-12545,2 //Lucky_Egg_C5
-12573,2 //Fruit_Basket
-12577,2 //Lucky_Egg_C6
-12595,2 //Lucky_Egg_C7
-12612,2 //Old_Coin_Pocket
-12613,2 //High_Coin_Pocket
-12614,2 //Mid_Coin_Pocket
-12615,2 //Low_Coin_Pocket
-12616,2 //Sgrade_Pocket
-12617,2 //Agrade_Pocket
-12618,2 //Bgrade_Pocket
-12619,2 //Cgrade_Pocket
-12620,2 //Dgrade_Pocket
-12621,2 //Egrade_Pocket
-12623,2 //High_Weapon_Box
-12641,2 //Lucky_Egg_C8
-12654,2 //Lucky_Egg_C9
-12673,2 //Lucky_Egg_C10
-12675,2 //Sg_Weapon_Supply_Box
-12690,2 //Old_C_Album_Helm
-12691,2 //Old_C_Album_Armor
-12692,2 //Old_C_Album_Shield
-12693,2 //Old_C_Album_Garment
-12694,2 //Old_C_Album_Shoes
-12695,2 //Old_C_Album_Acc
-12698,2 //Old_C_Album_Weapon
-12702,2 //Old_Bleu_Box
-12703,2 //Holy_Egg_2
-12714,2 //Easter_Scroll
-12756,2 //New_Gift_Envelope
-12767,2 //Passion_FB_Hat_Box
-12768,2 //Cool_FB_Hat_Box
-12769,2 //Victory_FB_Hat_Box
-12770,2 //Glory_FB_Hat_Box
-12771,2 //Passion_Hat_Box2
-12772,2 //Cool_Hat_Box2
-12773,2 //Victory_Hat_Box2
-12826,2 //Wind_Type_Scroll
-12827,2 //Water_Type_Scroll
-12828,2 //Fire_Type_Scroll
-12829,2 //Earth_Type_Scroll
-12850,2 //Heaven_Scroll
-12851,2 //Vocation_Scroll
-12852,2 //Wisdom_Scroll
-12853,2 //Patron_Scroll
-12915,2 //Aspersio_5_Scroll_Box
-12923,2 //Pet_Egg_Scroll_Box1
-12924,2 //Pet_Egg_Scroll_Box2
-12925,2 //Pet_Egg_Scroll1
-12926,2 //Pet_Egg_Scroll2
-12929,2 //Pet_Egg_Scroll_Box3
-12930,2 //Pet_Egg_Scroll_Box4
-12931,2 //Pet_Egg_Scroll_Box5
-12932,2 //Pet_Egg_Scroll3
-12933,2 //Pet_Egg_Scroll4
-12934,2 //Pet_Egg_Scroll5
-12935,2 //Infiltrator_Box
-12936,2 //Muramasa_Box
-12937,2 //Excalibur_Box
-12938,2 //Combat_Knife_Box
-12939,2 //Counter_Dagger_Box
-12940,2 //Kaiser_Knuckle_Box
-12941,2 //Pole_Axe_Box
-12942,2 //Mighty_Staff_Box
-12943,2 //Right_Epsilon_Box
-12944,2 //Balistar_Box
-12945,2 //Diary_Of_Great_Sage_Box
-12946,2 //Asura_Box
-12947,2 //Apple_Of_Archer_Box
-12948,2 //Bunny_Band_Box
-12949,2 //Sahkkat_Box
-12950,2 //Lord_Circlet_Box
-12951,2 //Elven_Ears_Box
-12952,2 //Steel_Flower_Box
-12953,2 //Critical_Ring_Box
-12954,2 //Earring_Box
-12955,2 //Ring_Box
-12956,2 //Necklace_Box
-12957,2 //Glove_Box
-12958,2 //Brooch_Box
-12959,2 //Rosary_Box
-12960,2 //Safety_Ring_Box
-12961,2 //Vesper_Core01_Box
-12962,2 //Vesper_Core02_Box
-12963,2 //Vesper_Core03_Box
-12964,2 //Vesper_Core04_Box
-12983,2 //Pet_Egg_Scroll_Box6
-12984,2 //Pet_Egg_Scroll_Box7
-12985,2 //Pet_Egg_Scroll_Box8
-12986,2 //Pet_Egg_Scroll_Box9
-12987,2 //Pet_Egg_Scroll_Box10
-12988,2 //Pet_Egg_Scroll_Box11
-12989,2 //Pet_Egg_Scroll6
-12990,2 //Pet_Egg_Scroll7
-12991,2 //Pet_Egg_Scroll8
-12992,2 //Pet_Egg_Scroll9
-12993,2 //Pet_Egg_Scroll10
-12994,2 //Pet_Egg_Scroll11
-13543,2 //CP_Helm_Scroll_Box
-13544,2 //CP_Shield_Scroll_Box
-13545,2 //CP_Armor_Scroll_Box
-13546,2 //CP_Weapon_Scroll_Box
-13547,2 //Repair_Scroll_Box
-13617,2 //Super_Pet_Egg1
-13618,2 //Super_Pet_Egg2
-13619,2 //Super_Pet_Egg3
-13620,2 //Super_Pet_Egg4
-13630,2 //Super_Card_Pet_Egg1
-13631,2 //Super_Card_Pet_Egg2
-13632,2 //Super_Card_Pet_Egg3
-13633,2 //Super_Card_Pet_Egg4
-13634,2 //Vigorgra_Package1
-13635,2 //Vigorgra_Package2
-13636,2 //Vigorgra_Package3
-13637,2 //Vigorgra_Package4
-13638,2 //Vigorgra_Package5
-13639,2 //Vigorgra_Package6
-13640,2 //Vigorgra_Package7
-13641,2 //Vigorgra_Package8
-13642,2 //Vigorgra_Package9
-13643,2 //Vigorgra_Package10
-13644,2 //Vigorgra_Package11
-13645,2 //Vigorgra_Package12
-13701,2 //Pet_Egg_Scroll12
-13702,2 //Pet_Egg_Scroll13
-13703,2 //Pet_Egg_Scroll14
-13704,2 //Super_Pet_Egg5
-13705,2 //Super_Pet_Egg6
-13706,2 //Super_Pet_Egg7
-13707,2 //Super_Pet_Egg8
-13708,2 //Pet_Egg_Scroll_E
-13725,2 //Ramen_Hat_Box
-13773,2 //Fire_Brand_Box
-13845,2 //Mysterious_Travel_Sack1
-13846,2 //Mysterious_Travel_Sack2
-13847,2 //Mysterious_Travel_Sack3
-13848,2 //Mysterious_Travel_Sack4
-13871,2 //Magician_Card_Box
-13872,2 //Acolyte_Card_Box
-13873,2 //Archer_Card_Box
-13874,2 //Swordman_Card_Box
-13875,2 //Thief_Card_Box
-13876,2 //Merchant_Card_Box
-13905,2 //Hard_Core_Set_Box
-13906,2 //Kitty_Set_Box
-13907,2 //Soft_Core_Set_Box
-13908,2 //Deviruchi_Set_Box
-13909,2 //MVP_Hunt_Box
-13910,2 //Brewing_Box
-13911,2 //Christmas_Pet_Scroll
-13925,2 //Lucky_Scroll08
-13945,2 //Br_SwordPackage
-13946,2 //Br_MagePackage
-13947,2 //Br_AcolPackage
-13948,2 //Br_ArcherPackage
-13949,2 //Br_MerPackage
-13950,2 //Br_ThiefPackage
-13953,2 //All_In_One_Ring_Box
-13989,2 //Acidbomb_10_Box
-14001,2 //Basic_Siege_Supply_Box
-14002,2 //Adv_Siege_Supply_Box
-14003,2 //Elite_Siege_Supply_Box
-14229,2 //Sakura_Scroll
-14242,2 //Beholder_Ring_Box
-14243,2 //Hallow_Ring_Box
-14244,2 //Clamorous_Ring_Box
-14245,2 //Chemical_Ring_Box
-14246,2 //Insecticide_Ring_Box
-14247,2 //Fisher_Ring_Box
-14248,2 //Decussate_Ring_Box
-14249,2 //Bloody_Ring_Box
-14250,2 //Satanic_Ring_Box
-14251,2 //Dragoon_Ring_Box
-14296,2 //Angel_Scroll
-14297,2 //Devil_Scroll
-14298,2 //Surprise_Scroll
-14306,2 //RWC_Special_Scroll
-14307,2 //RWC_Limited_Scroll
-14316,2 //July7_Scroll
-14317,2 //Bacsojin_Scroll
-14345,2 //Animal_Scroll
-14363,2 //Heart_Scroll
-14408,2 //New_Year_Scroll
-14466,2 //Valentine_Pledge_Box
-14469,2 //Ox_Tail_Scroll
-14596,2 //Pierre_Treasurebox
-14613,2 //RWC_Scroll_2012
-14624,2 //Blue_Scroll
-14626,2 //Indigo_Scroll
-14643,2 //Violet_Scroll
-14664,2 //Bi_Hwang_Scroll
-14665,2 //Jung_Bi_Scroll
-14666,2 //Je_Un_Scroll
-14667,2 //Yong_Kwang_Scroll
-14699,2 //Memorial_Garuda_Lucky_Egg
-14701,2 //Rune_Midgard_Imortal_Lucky_Egg
-14735,2 //Shapeshifter_Costume
-14741,2 //Midgard_Celebration_Lucky_Egg
-14753,2 //Hero_Midgard_Egg
-14805,2 //Almighty_Lucky_Egg
-16245,2 //Tw_April_Scroll
-16257,2 //Buddah_Scroll
-16304,2 //Evil_Incarnation
-16371,2 //Tw_Aug_Scroll
-16372,2 //F_Clover_Box_Mouth
-16374,2 //Mouth_Bubble_Gum_Box
-16385,2 //F_Clover_Box_Mouth2
-16386,2 //F_Clover_Box_Mouth4
-16389,2 //BGum_Box_In_Mouth2
-16390,2 //BGum_Box_In_Mouth4
-16409,2 //Tw_Sep_Scroll
-16446,2 //Tw_October_Scroll
-16456,2 //My_Scroll1
-16457,2 //Tw_Nov_Scroll
-16466,2 //My_Scroll2
-16542,2 //Xmas_Bless
-16555,2 //Pr_Reset_Stone_Box
-16556,2 //FPr_Reset_Stone_Box
-16562,2 //Majestic_Devil_Scroll
-16576,2 //Illusion_Nothing
-16638,2 //Life_Ribbon_Box
-16639,2 //Life_Ribbon_Box2
-16640,2 //Life_Ribbon_Box3
-16652,2 //Flame_Light
-16666,2 //Magic_Candy_Box10
-16673,2 //Libra_Scroll
-16675,2 //Splash_Scroll
-16681,2 //BR_Independence_Scroll
-16682,2 //Boarding_Halter_Box
-16687,2 //RWC2010_SuitcaseA
-16688,2 //RWC2010_SuitcaseB
-16741,2 //Hairtail_Box1
-16742,2 //Hairtail_Box2
-16743,2 //Spearfish_Box1
-16744,2 //Spearfish_Box2
-16745,2 //Saurel_Box1
-16746,2 //Saurel_Box2
-16747,2 //Tuna_Box1
-16748,2 //Tuna_Box2
-16749,2 //Malang_Crab_Box1
-16750,2 //Malang_Crab_Box2
-16751,2 //Brindle_Eel_Box1
-16752,2 //Brindle_Eel_Box2
-16757,2 //Hallo_Scroll
-16760,2 //Umbala_Spirit_Box2
-16761,2 //F_Umbala_Spirit_Box2
-16763,2 //Ptotection_Seagod_Box2
-16764,2 //Ptotection_Seagod_Box3
-16765,2 //Octo_Hstick_Box
-16766,2 //Octo_Hstick_Box2
-16767,2 //Octo_Hstick_Box3
-16770,2 //Silvervine_Fruit_Box10
-16771,2 //Silvervine_Fruit_Box40
-16774,2 //Asgard_Scroll
-16775,2 //Sagittarius_Scroll
-16826,2 //Sagittarius_Scr_Box
-16972,2 //Weather_Report_Box
-16974,2 //Comin_Actor_Box
-16976,2 //Hen_Set_Box
-16979,2 //Silvervine_Fruit_Box4
-16990,2 //Sagittar_Diadem_Scroll
-16991,2 //Sagittar_Di_Scroll_Box
-16996,2 //Capri_Crown_Scroll
-16997,2 //Capri_Crown_Scroll_Box
-17011,2 //Capricon_Di_Scroll
-17012,2 //Capricon_Di_Scroll_Box
-17013,2 //Malang_Woe_Encard_Box
-17016,2 //Aquarius_Diadem_Scroll
-17017,2 //Aquarius_Di_Scroll_Box
-17020,2 //Tw_Nov_Scroll2
-17021,2 //Summer_Scroll3
-17022,2 //Super_Pet_Egg1_2
-17023,2 //Super_Pet_Egg4_2
-17024,2 //Lovely_Aquarius_Scroll
-17025,2 //Lovely_Aquarius_Box
-17026,2 //Boitata_Scroll
-17028,2 //Pisces_Diadem_Scroll
-17029,2 //Pisces_Diadem_Box
-17035,2 //Energetic_Pisces_Scroll
-17036,2 //Energetic_Pisces_Box
-17050,2 //Aries_Scroll
-17051,2 //Aries_Scroll_Box
-17062,2 //Taurus_Diadem_Scroll
-17063,2 //Taurus_Di_Scroll_Box
-17077,2 //Taurus_Crown_Scroll
-17078,2 //Taurus_Crown_Scroll_Box
-17082,2 //Gemi_Diadem_Scroll
-17083,2 //Gemi_Diadem_Scroll_Box
-17107,2 //Gemi_Crown_Scroll
-17108,2 //Gemi_Crown_Scroll_Box
-17138,2 //Ms_Cancer_Scroll
-17139,2 //RWC_Super_Scroll
-17140,2 //Leo_Scroll
-17141,2 //Ms_Virgo_Scroll
-17143,2 //Ms_Scorpio_Scroll
-17156,2 //TCG_Card_Scroll
-17165,2 //Challenge_Kit
-17204,2 // Shining_Egg
-17209,2 //Tw_Rainbow_Scroll
-17210,2 //Tw_Red_Scroll
-17211,2 //Tw_Orange_Scroll
-17212,2 //Tw_Yellow_Scroll
-17233,2 //Scroll_Of_Death
-17234,2 //Scroll_Of_Life
-17235,2 //Scroll_Of_Magic
-17236,2 //Scroll_Of_Thews
-17237,2 //Scroll_Of_Darkness
-17238,2 //Scroll_Of_Holiness
-17239,2 //Horned_Scroll
-17240,2 //Mercury_Scroll
-17251,2 //C_Wing_Of_Fly_3Day_Box
-17252,2 //RWC_2012_Set_Box
-17256,2 //Good_Student_Gift_Box
-17257,2 //Bad_Student_Gift_Box
-17262,2 //Ex_Def_Potion_Box
-17307,2 //Midgard_Egg
-17317,2 //Sweet_Midgard_Egg
-17320,2 //Birthday_IdRO10th_Scroll
-17326,2 //Requiem_Egg
-17337,2 //Holy_Spirit_Egg
-17431,2 //Miracle_Lucky_Egg
-17435,2 //Legend_Hero_Lucky_Egg
-17447,2 //Blessing_Midgard_Lucky_Egg
-17461,2 //Frozen_Egg_Costume
-17464,2 //Winter_Midgard_Egg
-17470,2 //Headgear_Costume_Scroll
-17471,2 //Spring_Festival_Lucky_Egg
-17479,2 //Midgard_Festival_Egg
-17481,2 //Flower_Blossom_Scroll
-17482,2 //Solaris_Festival_Scroll
-17490,2 //Time_Travel_Lucky_Egg
-17493,2 //Burning_Feather_Costume_Scroll
-17494,2 //Rise_Midgard_Lucky_Egg
-17497,2 //Seaside_Costume_Scroll
-17517,2 //Animal_Costume_Scroll
-17519,2 //Epic_Heroes_Scroll
-17523,2 //Mystical_Costume_Scroll
-17526,2 //Majestic_Lucky_Egg
-17532,2 //Blessing_Lucky_Egg
-17552,2 //Garnet_Lucky_Egg
-17572,2 //Erzulie_Lucky_Egg
-17584,2 //Venus_Lucky_Egg
-17588,2 //Amora_Lucky_Egg
-17598,2 //Sograt_Lucky_Scroll
-17607,2 //Sanctuary_Lucky_Egg
-17613,2 //Chronosian_Lucky_Egg
-17628,2 //Cyborg_Lucky_Egg
-17633,2 //Undine_Lucky_Egg
-17648,2 //Smithy_Lucky_Egg
-17659,2 //Ganymede_Lucky_Egg
-17665,2 //LastAngel_LuckyScroll
-17671,2 //Valkyrie_Lucky_Egg
-17674,2 //Splash_Rainbow_Lucky_Egg
-17681,2 //Midgard_Lucky_Scroll
-17692,2 //Blessing_Scarlet_Egg
-22514,2 //Candy_Holder
-22537,2 //PrizeOfHero
-22558,2 //Lucky_Bag
-22669,2 //HALLOWEEN_G_BOX
-22685,2 //Solo_Christmas_Gift
-23196,2 // Shining_Blue_Lucky_Egg
-
-// GUID
-12900,4 //Battle_Manual_Box
-12901,4 //Insurance_Package
-12902,4 //Bubble_Gum_Box
-12903,4 //Str_Dish_Box
-12904,4 //Agi_Dish_Box
-12905,4 //Int_Dish_Box
-12906,4 //Dex_Dish_Box
-12907,4 //Luk_Dish_Box
-12908,4 //Vit_Dish_Box
-12909,4 //Kafra_Card_Box
-12910,4 //Giant_Fly_Wing_Box
-12911,4 //Neuralizer_Box
-12912,4 //Convex_Mirror_Box
-12913,4 //Blessing_10_Scroll_Box
-12914,4 //Inc_Agi_10_Scroll_Box
-12915,4 //Aspersio_5_Scroll_Box
-12915,4 //Aspersio_5_Scroll_Box
-12916,4 //Assumptio_5_Scroll_Box
-12917,4 //Wind_Walk_10_Scroll_Box
-12918,4 //Adrenaline_Scroll_Box
-12919,4 //Megaphone_Box
-12920,4 //Enriched_Elunium_Box
-12921,4 //Enriched_Oridecon_Box
-12922,4 //Token_Of_Siegfried_Box
-12923,4 //Pet_Egg_Scroll_Box1
-12924,4 //Pet_Egg_Scroll_Box2
-12925,4 //Pet_Egg_Scroll1
-12926,4 //Pet_Egg_Scroll2
-12927,4 //J_Aspersio_5_Scroll_Box
-12929,4 //Pet_Egg_Scroll_Box3
-12930,4 //Pet_Egg_Scroll_Box4
-12931,4 //Pet_Egg_Scroll_Box5
-12932,4 //Pet_Egg_Scroll3
-12933,4 //Pet_Egg_Scroll4
-12934,4 //Pet_Egg_Scroll5
-12935,4 //Infiltrator_Box
-12936,4 //Muramasa_Box
-12937,4 //Excalibur_Box
-12938,4 //Combat_Knife_Box
-12939,4 //Counter_Dagger_Box
-12940,4 //Kaiser_Knuckle_Box
-12941,4 //Pole_Axe_Box
-12942,4 //Mighty_Staff_Box
-12943,4 //Right_Epsilon_Box
-12944,4 //Balistar_Box
-12945,4 //Diary_Of_Great_Sage_Box
-12946,4 //Asura_Box
-12947,4 //Apple_Of_Archer_Box
-12948,4 //Bunny_Band_Box
-12949,4 //Sahkkat_Box
-12950,4 //Lord_Circlet_Box
-12951,4 //Elven_Ears_Box
-12952,4 //Steel_Flower_Box
-12953,4 //Critical_Ring_Box
-12954,4 //Earring_Box
-12955,4 //Ring_Box
-12956,4 //Necklace_Box
-12957,4 //Glove_Box
-12958,4 //Brooch_Box
-12959,4 //Rosary_Box
-12960,4 //Safety_Ring_Box
-12961,4 //Vesper_Core01_Box
-12962,4 //Vesper_Core02_Box
-12963,4 //Vesper_Core03_Box
-12964,4 //Vesper_Core04_Box
-12965,4 //Emergency_Box1
-12966,4 //Emergency_Box2
-12967,4 //Emergency_Box3
-12971,4 //Teleport_Box1
-12972,4 //Teleport_Box2
-12973,4 //Teleport_Box3
-12974,4 //Teleport_Box4
-12975,4 //Teleport_Box5
-12976,4 //Teleport_Box6
-12983,4 //Pet_Egg_Scroll_Box6
-12984,4 //Pet_Egg_Scroll_Box7
-12985,4 //Pet_Egg_Scroll_Box8
-12986,4 //Pet_Egg_Scroll_Box9
-12987,4 //Pet_Egg_Scroll_Box10
-12988,4 //Pet_Egg_Scroll_Box11
-12989,4 //Pet_Egg_Scroll6
-12990,4 //Pet_Egg_Scroll7
-12991,4 //Pet_Egg_Scroll8
-12992,4 //Pet_Egg_Scroll9
-12993,4 //Pet_Egg_Scroll10
-12994,4 //Pet_Egg_Scroll11
-12995,4 //White_Herb_Box
-12996,4 //Blue_Herb_Box
-12997,4 //Elunium_Box
-12998,4 //Oridecon_Box
-12999,4 //Branch_Of_Dead_Tree_Box
-13500,4 //Insurance60_Package
-13501,4 //Assorted_Scroll_Box
-13502,4 //Drooping_Kitty_Box
-13503,4 //Magestic_Goat_Box
-13504,4 //Deviruchi_Cap_Box
-13505,4 //Executioner_Box
-13506,4 //Brood_Axe_Box
-13507,4 //Tomahawk_Box
-13508,4 //Bow_Of_Rudra_Box
-13509,4 //Cutlas_Box
-13510,4 //Solar_Sword_Box
-13511,4 //Sword_Breaker_Box
-13512,4 //Mail_Breaker_Box
-13513,4 //Moonlight_Sword_Box
-13514,4 //Spanner_Box
-13515,4 //Grape_Box
-13516,4 //Royal_Jelly_Box
-13517,4 //Yggdrasilberry_Box
-13518,4 //Weapon_Card_Scroll_Box
-13519,4 //Armor_Card_Scroll_Box
-13520,4 //Helmet_Card_Scroll_Box
-13521,4 //Garment_Card_Scroll_Box
-13522,4 //Shield_Card_Scroll_Box
-13523,4 //Shoes_Card_Scroll_Box
-13524,4 //Accy_Card_Scroll_Box
-13525,4 //Zeny_Scroll_Box
-13526,4 //Pet_Egg_Scroll_Box1_
-13527,4 //Pet_Egg_Scroll_Box2_
-13528,4 //Pet_Egg_Scroll_Box3_
-13529,4 //Pet_Egg_Scroll_Box4_
-13530,4 //Pet_Egg_Scroll_Box5_
-13531,4 //Light_Red_Pot_Box
-13532,4 //Light_Orange_Pot_Box
-13533,4 //Light_Yellow_Pot_Box
-13534,4 //Light_White_Pot_Box
-13535,4 //Light_Center_Pot_Box
-13536,4 //Light_Awakening_Pot_Box
-13537,4 //Light_Berserk_Pot_Box
-13538,4 //Meteor_10_Scroll_Box
-13539,4 //Storm_10_Scroll_Box
-13540,4 //Vermilion_10_Scroll_Box
-13541,4 //Lex_Aeterna_Scroll_Box
-13542,4 //Magnificat_5_Scroll_Box
-13543,4 //CP_Helm_Scroll_Box
-13544,4 //CP_Shield_Scroll_Box
-13545,4 //CP_Armor_Scroll_Box
-13546,4 //CP_Weapon_Scroll_Box
-13547,4 //Repair_Scroll_Box
-13548,4 //Big_Bun_Box
-13549,4 //Pill__Box
-13550,4 //Superb_Fish_Slice_Box
-13551,4 //Chewy_Ricecake_Box
-13552,4 //Oriental_Pastry_Box
-13553,4 //Dun_Tele_Scroll1_Box
-13554,4 //Weapon_Card_Scroll_Box2
-13555,4 //Weapon_Card_Scroll_Box3
-13556,4 //Armor_Card_Scroll_Box2
-13557,4 //Accy_Card_Scroll_Box2
-13558,4 //Weapon_Card_Scroll
-13559,4 //Armor_Card_Scroll
-13560,4 //Helmet_Card_Scroll
-13561,4 //Hood_Card_Scroll
-13562,4 //Hood_Card_Scroll2
-13563,4 //Shoes_Card_Scroll
-13564,4 //Accy_Card_Scroll
-13565,4 //Weapon_Card_Scroll2
-13566,4 //Weapon_Card_Scroll3
-13567,4 //Armor_Card_Scroll2
-13568,4 //Accy_Card_Scroll2
-13569,4 //PVP_Tele_Scroll_Box
-13570,4 //Giant_Fly_Wing_Box50
-13571,4 //Giant_Fly_Wing_Box100
-13572,4 //Dex_Dish_Box30
-13573,4 //Dex_Dish_Box50
-13574,4 //Luk_Dish_Box30
-13575,4 //Luk_Dish_Box50
-13576,4 //Inc_Agi_10_Box30
-13577,4 //Inc_Agi_10_Box50
-13578,4 //Vit_Dish_Box30
-13579,4 //Vit_Dish_Box50
-13580,4 //Insurance_Package30
-13581,4 //Insurance_Package50
-13582,4 //Convex_Mirror_Box5
-13583,4 //Convex_Mirror_Box30
-13584,4 //Blessing10_Box30
-13585,4 //Blessing10_Box50
-13586,4 //Adrenaline10_Box30
-13587,4 //Adrenaline10_Box50
-13588,4 //Assumptio_5_Box30
-13589,4 //Assumptio_5_Box50
-13590,4 //Aspersio_5_Box30
-13591,4 //Aspersio_5_Box50
-13592,4 //Agi_Dish_Box30
-13593,4 //Agi_Dish_Box50
-13594,4 //Wind_Walk10_Box30
-13595,4 //Wind_Walk10_Box50
-13596,4 //Int_Dish_Box30
-13597,4 //Int_Dish_Box50
-13598,4 //Battle_Manual_Box1
-13599,4 //Battle_Manual_Box5
-13600,4 //Siegfried_Box5
-13601,4 //Siegfried_Box20
-13602,4 //Kafra_Card_Box30
-13603,4 //Kafra_Card_Box50
-13604,4 //Str_Dish_Box30
-13605,4 //Str_Dish_Box50
-13606,4 //Bubble_Gum_Box1
-13607,4 //Bubble_Gum_Box5
-13608,4 //Megaphone_Box1
-13609,4 //Megaphone_Box5
-13610,4 //Enriched_Elunium_Box5
-13611,4 //Enriched_Oridecon_Box5
-13612,4 //Handcuff_Box
-13613,4 //Super_Pet_Egg_Box1
-13614,4 //Super_Pet_Egg_Box2
-13615,4 //Super_Pet_Egg_Box3
-13616,4 //Super_Pet_Egg_Box4
-13617,4 //Super_Pet_Egg1
-13618,4 //Super_Pet_Egg2
-13619,4 //Super_Pet_Egg3
-13620,4 //Super_Pet_Egg4
-13621,4 //Greed_Box30
-13622,4 //Greed_Box50
-13623,4 //Greed_Box100
-13624,4 //Flee_30_Scroll_Box
-13625,4 //Accuracy_30_Scroll_Box
-13626,4 //Super_Card_Pet_Egg_Box1
-13627,4 //Super_Card_Pet_Egg_Box2
-13628,4 //Super_Card_Pet_Egg_Box3
-13629,4 //Super_Card_Pet_Egg_Box4
-13630,4 //Super_Card_Pet_Egg1
-13631,4 //Super_Card_Pet_Egg2
-13632,4 //Super_Card_Pet_Egg3
-13633,4 //Super_Card_Pet_Egg4
-13634,4 //Vigorgra_Package1
-13635,4 //Vigorgra_Package2
-13636,4 //Vigorgra_Package3
-13637,4 //Vigorgra_Package4
-13638,4 //Vigorgra_Package5
-13639,4 //Vigorgra_Package6
-13640,4 //Vigorgra_Package7
-13641,4 //Vigorgra_Package8
-13642,4 //Vigorgra_Package9
-13643,4 //Vigorgra_Package10
-13644,4 //Vigorgra_Package11
-13645,4 //Vigorgra_Package12
-13646,4 //Infiltrator_Box1
-13647,4 //Muramasa_Box1
-13648,4 //Excalibur_Box1
-13649,4 //Combat_Knife_Box1
-13650,4 //Counter_Dagger_Box1
-13651,4 //Kaiser_Knuckle_Box1
-13652,4 //Pole_Axe_Box1
-13653,4 //Mighty_Staff_Box1
-13654,4 //Right_Epsilon_Box1
-13655,4 //Balistar_Box1
-13656,4 //Diary_Of_Sage_Box1
-13657,4 //Asura_Box1
-13658,4 //Apple_Of_Archer_Box1
-13659,4 //Bunny_Band_Box1
-13660,4 //Sahkkat_Box1
-13661,4 //Lord_Circlet_Box1
-13662,4 //Elven_Ears_Box1
-13663,4 //Steel_Flower_Box1
-13664,4 //Critical_Ring_Box1
-13665,4 //Earring_Box1
-13666,4 //Ring_Box1
-13667,4 //Necklace_Box1
-13668,4 //Glove_Box1
-13669,4 //Brooch_Box1
-13670,4 //Rosary_Box1
-13671,4 //Safety_Ring_Box1
-13672,4 //Vesper_Core01_Box1
-13673,4 //Vesper_Core02_Box1
-13674,4 //Vesper_Core03_Box1
-13675,4 //Vesper_Core04_Box1
-13676,4 //Drooping_Kitty_Box1
-13677,4 //Magestic_Goat_Box1
-13678,4 //Deviruchi_Cap_Box1
-13679,4 //Executioner_Box1
-13680,4 //Brood_Axe_Box1
-13681,4 //Tomahawk_Box1
-13682,4 //Bow_Of_Rudra_Box1
-13683,4 //Cutlas_Box1
-13684,4 //Solar_Sword_Box1
-13685,4 //Sword_Breaker_Box1
-13686,4 //Mail_Breaker_Box1
-13687,4 //Moonlight_Sword_Box1
-13688,4 //Spanner_Box1
-13689,4 //Bok_Choy_Box
-13690,4 //Chung_E_Cake_Box
-13691,4 //Freyja_Overcoat_Box
-13692,4 //Freyja_Boots_Box
-13693,4 //Freyja_Cape_Box
-13694,4 //Freyja_Crown_Box
-13695,4 //Battle_Manual25_Box
-13696,4 //Battle_Manual100_Box
-13697,4 //J_Blessing10_Box
-13698,4 //J_Inc_Agi10_Box
-13699,4 //J_Wind_Walk10_Box
-13700,4 //J_Adrenaline10_Box
-13701,4 //Pet_Egg_Scroll12
-13702,4 //Pet_Egg_Scroll13
-13703,4 //Pet_Egg_Scroll14
-13704,4 //Super_Pet_Egg5
-13705,4 //Super_Pet_Egg6
-13706,4 //Super_Pet_Egg7
-13707,4 //Super_Pet_Egg8
-13708,4 //Pet_Egg_Scroll_E
-13709,4 //BRO_Package_1
-13710,4 //Max_Weight_Up_Box
-13711,4 //Small_Life_Potion_Box
-13712,4 //Small_Life_Potion_Box30
-13713,4 //Small_Life_Potion_Box50
-13714,4 //Med_Life_Potion_Box
-13715,4 //Med_Life_Potion_Box30
-13716,4 //Med_Life_Potion_Box50
-13717,4 //Abrasive_Box5
-13718,4 //Abrasive_Box10
-13719,4 //Regeneration_Box5
-13720,4 //Regeneration_Box10
-13721,4 //Dun_Tele_Scroll_Box10
-13722,4 //Pecopeco_Hairband_Box
-13723,4 //Red_Glasses_Box
-13724,4 //Whisper_Mask_Box
-13725,4 //Ramen_Hat_Box
-13726,4 //Gold_Box_
-13727,4 //Silver_Box_
-13728,4 //Gold_Key1_Box
-13729,4 //Gold_Key5_Box
-13730,4 //Silver_Key1_Box
-13731,4 //Silver_Key5_Box
-13734,4 //Pecopeco_Hairband_Box1
-13735,4 //Red_Glasses_Box1
-13736,4 //Whisper_Mask_Box1
-13737,4 //Ramen_Hat_Box1
-13738,4 //Glass_Of_Illusion_Box5
-13739,4 //Glass_Of_Illusion_Box10
-13740,4 //Shadow_Armor_S_Box5
-13741,4 //Shadow_Armor_S_Box10
-13742,4 //Shadow_Armor_S_Box30
-13743,4 //Holy_Armor_S_Box5
-13744,4 //Holy_Armor_S_Box10
-13745,4 //Holy_Armor_S_Box30
-13746,4 //S_Def_Potion_Box10
-13747,4 //S_Def_Potion_Box30
-13748,4 //S_Def_Potion_Box50
-13749,4 //B_Def_Potion_Box10
-13750,4 //B_Def_Potion_Box30
-13751,4 //B_Def_Potion_Box50
-13752,4 //S_Mdef_Potion_Box10
-13753,4 //S_Mdef_Potion_Box30
-13754,4 //S_Mdef_Potion_Box50
-13755,4 //B_Mdef_Potion_Box10
-13756,4 //B_Mdef_Potion_Box30
-13757,4 //B_Mdef_Potion_Box50
-13758,4 //Battle_Manual_X3_Box
-13759,4 //In_Blue_Herb_Box
-13760,4 //Honey_Box
-13761,4 //Empty_Bottle_Box
-13762,4 //In_Royal_Jelly_Box
-13763,4 //5_Anniversary_Coin_Box
-13764,4 //Battle_Manual_Box_TW
-13765,4 //Certificate_TW_Box
-13766,4 //Nagan_Box
-13767,4 //Skewer_Box
-13768,4 //Survival_Rod_Box
-13769,4 //Quadrille_Box
-13770,4 //Great_Axe_Box
-13771,4 //Bloody_Roar_Box
-13772,4 //Hardback_Box
-13773,4 //Fire_Brand_Box
-13774,4 //Immaterial_Sword_Box
-13775,4 //Unholy_Touch_Box
-13776,4 //Cloak_Of_Survival_Box
-13777,4 //Masquerade_Box
-13778,4 //Orc_Hero_Helm_Box
-13779,4 //Evil_Wing_Ears_Box
-13780,4 //Dark_Blindfold_Box
-13781,4 //kRO_Drooping_Kitty_Box
-13782,4 //Corsair_Box
-13783,4 //Bloody_Iron_Ball_Box
-13784,4 //Spiritual_Ring_Box
-13785,4 //Nagan_Box1
-13786,4 //Skewer_Box1
-13787,4 //Survival_Rod_Box1
-13788,4 //Quadrille_Box1
-13789,4 //Great_Axe_Box1
-13790,4 //Bloody_Roar_Box1
-13791,4 //Hardback_Box1
-13792,4 //Fire_Brand_Box1
-13793,4 //Immaterial_Sword_Box1
-13794,4 //Unholy_Touch_Box1
-13795,4 //Cloak_Of_Survival_Box1
-13796,4 //Masquerade_Box1
-13797,4 //Orc_Hero_Helm_Box1
-13798,4 //Evil_Wing_Ears_Box1
-13799,4 //Dark_Blindfold_Box1
-13800,4 //kRO_Drooping_Kitty_Box1
-13801,4 //Corsair_Box1
-13802,4 //Bloody_Iron_Ball_Box1
-13803,4 //Spiritual_Ring_Box1
-13804,4 //Fire_Cracker_Love_Box
-13805,4 //Fire_Cracker_Wday_Box
-13806,4 //Fire_Cracker_Vday_Box
-13807,4 //Fire_Cracker_Bday_Box
-13808,4 //Fire_Cracker_Xmas_Box
-13809,4 //Blue_Gemstone_Box
-13810,4 //Blue_Potion_Box
-13811,4 //Food_Box_Lv1
-13812,4 //Food_Box_Lv2
-13813,4 //Food_Box_Lv3
-13814,4 //Indonesia_Box
-13815,4 //Knife_Goblin_Box
-13816,4 //Flail_Goblin_Box
-13817,4 //Hammer_Goblin_Box
-13818,4 //Red_Deleter_Box
-13819,4 //Diabolic_Box
-13820,4 //Wanderer_Box
-13821,4 //Green_Apple_Box
-13822,4 //Whole_Barbecue_Box
-13823,4 //Meat_Veg_Skewer_Box
-13824,4 //Spirit_Liquor_Box
-13825,4 //Green_Box_
-13826,4 //Power_Box1
-13827,4 //Power_Box2
-13828,4 //Resist_Box1
-13829,4 //Resist_Box2
-13830,4 //Stat_Boost1
-13831,4 //Stat_Boost2
-13832,4 //Stat_Boost3
-13833,4 //Stat_Boost4
-13834,4 //Dun_Tele_Scroll2_Box5
-13835,4 //Dun_Tele_Scroll2_Box10
-13836,4 //Mbl_Str_Dish_Box
-13837,4 //Mbl_Agi_Dish_Box
-13838,4 //Mbl_Int_Dish_Box
-13839,4 //Mbl_Dex_Dish_Box
-13840,4 //Mbl_Luk_Dish_Box
-13841,4 //Mbl_Vit_Dish_Box
-13842,4 //Mbl_Kafra_Card_Box
-13843,4 //Mbl_Battle_Manual_Box
-13844,4 //Heroic_Stone_Box
-13845,4 //Mysterious_Travel_Sack1
-13846,4 //Mysterious_Travel_Sack2
-13847,4 //Mysterious_Travel_Sack3
-13848,4 //Mysterious_Travel_Sack4
-13849,4 //WOB_Box_Rune5
-13850,4 //WOB_Box_Rune10
-13851,4 //WOB_Box_Schawaltz5
-13852,4 //WOB_Box_Schawaltz10
-13853,4 //WOB_Box_Rachel5
-13854,4 //WOB_Box_Rachel10
-13855,4 //WOB_Box_Local5
-13856,4 //WOB_Box_Local10
-13857,4 //Spark_Candy_Box5
-13858,4 //Spark_Candy_Box10
-13859,4 //Directive_A_Envelope
-13860,4 //Directive_B_Envelope
-13861,4 //Mini_Battle_Manual_Box
-13862,4 //Trial_Box
-13863,4 //Repair_Scroll_Box10
-13864,4 //Hockey_Mask_Box
-13865,4 //Observer_Box
-13866,4 //Flying_Angel_Box
-13867,4 //Neko_Mimi_Box
-13868,4 //MFH_Box
-13869,4 //Chick_Hat_Box
-13870,4 //New_Style_Box
-13871,4 //Magician_Card_Box
-13872,4 //Acolyte_Card_Box
-13873,4 //Archer_Card_Box
-13874,4 //Swordman_Card_Box
-13875,4 //Thief_Card_Box
-13876,4 //Merchant_Card_Box
-13877,4 //Clock_Tower_Card_Box
-13878,4 //Geffenia_Card_Box
-13879,4 //Owl_Card_Box
-13880,4 //Ghost_Card_Box
-13881,4 //Nightmare_Card_Box
-13882,4 //Curse_Card_Box
-13883,4 //Sleep_Card_Box
-13884,4 //Freeze_Card_Box
-13885,4 //Stun_Card_Box
-13886,4 //Silence_Card_Box
-13887,4 //Blind_Card_Box
-13888,4 //Chaos_Card_Box
-13889,4 //Elunium_Box_
-13890,4 //Oridecon_Box_
-13891,4 //Fire_Converter_Box
-13892,4 //Water_Converter_Box
-13893,4 //Wind_Converter_Box
-13894,4 //Earth_Converter_Box
-13895,4 //Starter_Pack
-13896,4 //Mimic_Scroll_Box5
-13897,4 //Disguise_Scroll_Box5
-13898,4 //Alice_Scroll_Box5
-13899,4 //Mimic_Scroll_Box10
-13900,4 //Disguise_Scroll_Box10
-13901,4 //Alice_Scroll_Box10
-13902,4 //Fish_Head_Hat_Box
-13903,4 //Santa_Poring_Hat_Box
-13904,4 //Bell_Ribbon_Box
-13905,4 //Hard_Core_Set_Box
-13906,4 //Kitty_Set_Box
-13907,4 //Soft_Core_Set_Box
-13908,4 //Deviruchi_Set_Box
-13909,4 //MVP_Hunt_Box
-13910,4 //Brewing_Box
-13911,4 //Christmas_Pet_Scroll
-13912,4 //Pty_Blessing_Box
-13913,4 //Pty_Inc_Agi_Box
-13914,4 //Pty_Assumptio_Box
-13915,4 //Love_Angel_Box
-13916,4 //Squirrel_Box
-13917,4 //Gogo_Box
-13918,4 //Drooping_W_Kitty_Box
-13919,4 //L_Magestic_Goat_Box
-13920,4 //Satanic_Chain_P_Box
-13921,4 //Antique_Pipe_Box
-13922,4 //Rabbit_Ear_Hat_Box
-13923,4 //Darkness_Helm_Box
-13924,4 //L_Orc_Hero_Helm_Box
-13925,4 //Lucky_Scroll08
-13926,4 //Crusader_Card_Box
-13927,4 //Alchemist_Card_Box
-13928,4 //Rogue_Card_Box
-13929,4 //Bard_Dancer_Card_Box
-13930,4 //Sage_Card_Box
-13931,4 //Monk_Card_Box
-13932,4 //Sylph_Box
-13933,4 //Undine_Box
-13934,4 //Salamander_Box
-13935,4 //Soul_Box
-13936,4 //Noum_Bpx
-13937,4 //Robo_Eye_Box
-13938,4 //Twin_Ribbon_Box
-13939,4 //Diadem_Box
-13940,4 //Siege_Tele_Scroll_Box
-13941,4 //TW_Valentine_Scroll
-13942,4 //Love_Angel_Box_1m
-13943,4 //Squirrel_Box_1m
-13944,4 //Gogo_Box_1m
-13945,4 //Br_SwordPackage
-13946,4 //Br_MagePackage
-13947,4 //Br_AcolPackage
-13948,4 //Br_ArcherPackage
-13949,4 //Br_MerPackage
-13950,4 //Br_ThiefPackage
-13951,4 //Wasteland_Outlaw_Box
-13952,4 //Lever_Action_Rifle_Box
-13953,4 //All_In_One_Ring_Box
-13954,4 //Spiritual_Tunic_Box
-13955,4 //Recuperative_Armor_Box
-13956,4 //Shelter_Resistance_Box
-13957,4 //Sylphid_Manteau_Box
-13958,4 //Refresh_Shoes_Box
-13959,4 //Toast_Box
-13960,4 //Name_Change_Coupon_Box
-13961,4 //Mojji_Box
-13962,4 //Deprotai_Doll_Hat_Box
-13963,4 //Claris_Doll_Hat_Box
-13964,4 //Sorin_Doll_Hat_Box
-13965,4 //Tayelin_Doll_Hat_Box
-13966,4 //Binit_Doll_Hat_Box
-13967,4 //Debril_Doll_Hat_Box
-13968,4 //Bubblegum_Lower_Box
-13969,4 //Lucky_Clip_Box
-13970,4 //Iron_10_Box
-13971,4 //Steel_10_Box
-13972,4 //Coal_10_Box
-13973,4 //Poison_Bottle_30_Box
-13974,4 //TW_Scroll01
-13975,4 //Picture_Diary_Box
-13976,4 //Mini_Heart_Box
-13977,4 //Newcomer_Box
-13978,4 //Kid_Box
-13979,4 //Magic_Castle_Box
-13980,4 //Bulging_Head_Box
-13981,4 //Picture_Diary_Box_1m
-13982,4 //Mini_Heart_Box_1m
-13983,4 //Newcomer_Box_1m
-13984,4 //Kid_Box_1m
-13985,4 //Magic_Castle_Box_1m
-13986,4 //Bulging_Head_Box_1m
-13987,4 //Ori_Stone_5_Box
-13988,4 //Ori_Stone_50_Box
-13989,4 //Acidbomb_10_Box
-13990,4 //Job_Manual50_Box
-13991,4 //Tiger_Mask_Box
-13992,4 //Cat_Hat_Box
-13993,4 //Alice_Doll_Box
-13994,4 //Speed_Up_Potion_Box5
-13995,4 //Speed_Up_Potion_Box10
-13996,4 //Big_Bun_Box100
-13997,4 //Big_Bun_Box500
-13998,4 //Giant_Fly_Wing_Box500
-13999,4 //Pill__Box100
-14000,4 //Pill__Box500
-14001,4 //Basic_Siege_Supply_Box
-14002,4 //Adv_Siege_Supply_Box
-14003,4 //Elite_Siege_Supply_Box
-14004,4 //Poison_Bottle_10_Box
-14005,4 //Poison_Bottle_5_Box
-14006,4 //F_Drooping_W_Kitty_Box
-14007,4 //F_Rabbit_Ear_Hat_Box
-14008,4 //F_L_Orc_Hero_Helm_Box
-14009,4 //F_Love_Angel_Box
-14010,4 //F_Squirrel_Box
-14011,4 //F_Gogo_Box
-14012,4 //F_Love_Angel_Box_1m
-14013,4 //F_Squirrel_Box_1m
-14014,4 //F_Gogo_Box_1m
-14015,4 //F_Wasteland_Outlaw_Box
-14016,4 //F_Lever_Action_Rifle_Box
-14017,4 //F_All_In_One_Ring_Box
-14018,4 //F_Spritual_Tunic_Box
-14019,4 //F_Recuperative_Box
-14020,4 //F_Shelter_Resist_Box
-14021,4 //F_Sylphid_Manteau_Box
-14022,4 //F_Refresh_Shoes_Box
-14023,4 //F_Toast_Box
-14024,4 //F_Robo_Eye_Box
-14025,4 //F_Twin_Ribbon_Box
-14026,4 //F_Diadem_Box
-14027,4 //F_Fish_Head_Hat_Box
-14028,4 //F_Santa_Poring_Hat_Box
-14029,4 //F_Bell_Ribbon_Box
-14030,4 //F_Mimic_Scroll_Box5
-14031,4 //F_Disguise_Scroll_Box5
-14032,4 //F_Alice_Scroll_Box5
-14033,4 //F_Mimic_Scroll_Box10
-14034,4 //F_Disguise_Scroll_Box10
-14035,4 //F_Alice_Scroll_Box10
-14036,4 //F_New_Style_Coupon_Box
-14037,4 //F_Repair_Scroll_Box
-14038,4 //F_Repair_Scroll_Box10
-14039,4 //F_Hockey_Mask_Box
-14040,4 //F_Observer_Box
-14041,4 //F_WOB_Rune_Box5
-14042,4 //F_WOB_Rune_Box10
-14043,4 //F_WOB_Schwaltz_Box5
-14044,4 //F_WOB_Schwaltz_Box10
-14045,4 //F_WOB_Rachel_Box5
-14046,4 //F_WOB_Rachel_Box10
-14047,4 //F_WOB_Local_Box5
-14048,4 //F_WOB_Local_Box10
-14049,4 //F_Spark_Candy_Box5
-14050,4 //F_Spark_Candy_Box10
-14051,4 //F_Dun_Tel_Scroll2_Box5
-14052,4 //F_Dun_Tel_Scroll2_Box10
-14053,4 //F_Little_Angel_Doll_Box
-14054,4 //F_Triple_Poring_Hat_Box
-14055,4 //F_Nagan_Box
-14056,4 //F_Skewer_Box
-14057,4 //F_Survival_Rod_Box
-14058,4 //F_Quadrille_Box
-14059,4 //F_Great_Axe_Box
-14060,4 //F_Bloody_Roar_Box
-14061,4 //F_Hardback_Box
-14062,4 //F_Fire_Brand_Box
-14063,4 //F_Immaterial_Sword_Box
-14064,4 //F_Unholy_Touch_Box
-14065,4 //F_Clack_Of_Servival_Box
-14066,4 //F_Masquerade_Box
-14067,4 //F_Orc_Hero_Helm_Box
-14068,4 //F_Ear_Of_Devil_Wing_Box
-14069,4 //F_Dark_Blindfold_Box
-14070,4 //F_K_Drooping_Kitty_Box
-14071,4 //F_Corsair_Box
-14072,4 //F_Bloody_Iron_Ball_Box
-14073,4 //F_Spiritual_Ring_Box
-14074,4 //F_G_O_I_Box5
-14075,4 //F_G_O_I_Box10
-14076,4 //F_Shadow_Armor_S_Box5
-14077,4 //F_Shadow_Armor_S_Box10
-14078,4 //F_Shadow_Armor_S_Box30
-14079,4 //F_Holy_Armor_S_Box5
-14080,4 //F_Holy_Armor_S_Box10
-14081,4 //F_Holy_Armor_S_Box30
-14082,4 //FS_Def_Potion_Box10
-14083,4 //FS_Def_Potion_Box30
-14084,4 //FS_Def_Potion_Box50
-14085,4 //FB_Def_Potion_Box10
-14086,4 //FB_Def_Potion_Box30
-14087,4 //FB_Def_Potion_Box50
-14088,4 //FS_Mdef_Potion_Box10
-14089,4 //FS_Mdef_Potion_Box30
-14090,4 //FS_Mdef_Potion_Box50
-14091,4 //FB_Mdef_Potion_Box10
-14092,4 //FB_Mdef_Potion_Box30
-14093,4 //FB_Mdef_Potion_Box50
-14094,4 //F_Flying_Angel_Box
-14095,4 //F_Cat_Hat_Box
-14096,4 //F_M_F_H_Box
-14097,4 //F_Chick_Hat_Box
-14098,4 //F_Pecopeco_Hairband_Box
-14099,4 //F_Red_Glasses_Box
-14100,4 //F_Whisper_Mask_Box
-14101,4 //F_Ramen_Hat_Box
-14102,4 //F_Dun_Tele_Scroll1_Box
-14103,4 //F_Max_Weight_Up_Box
-14104,4 //F_S_Life_Potion_Box
-14105,4 //F_S_Life_Potion_Box30
-14106,4 //F_S_Life_Potion_Box50
-14107,4 //F_M_Life_Potion_Box
-14108,4 //F_M_Life_Potion_Box30
-14109,4 //F_M_Life_Potion_Box50
-14110,4 //F_Abrasive_Box5
-14111,4 //F_Abrasive_Box10
-14112,4 //F_Regeneration_Box5
-14113,4 //F_Regeneration_Box10
-14114,4 //F_Dun_Tele_Scroll_Box10
-14115,4 //F_Infiltrator_Box
-14116,4 //F_Muramasa_Box
-14117,4 //F_Excalibur_Box
-14118,4 //F_Combat_Knife_Box
-14119,4 //F_Counter_Dagger_Box
-14120,4 //F_Kaiser_Knuckle_Box
-14121,4 //F_Mighty_Staff_Box
-14122,4 //F_Right_Epsilon_Box
-14123,4 //F_Balistar_Box
-14124,4 //F_Diary_Of_Great_Sage
-14125,4 //F_Asura_Box
-14126,4 //F_Apple_Of_Archer_Box
-14127,4 //F_Bunny_Band_Box
-14128,4 //F_Sahkkat_Box
-14129,4 //F_Lord_Circlet_Box
-14130,4 //F_Elven_Ears_Box
-14131,4 //F_Steel_Flower_Box
-14132,4 //F_Critical_Ring_Box
-14133,4 //F_Earring_Box
-14134,4 //F_Ring_Box
-14135,4 //F_Necklace_Box
-14136,4 //F_Glove_Box
-14137,4 //F_Brooch_Box
-14138,4 //F_Rosary_Box
-14139,4 //F_Safety_Ring_Box
-14140,4 //F_Vesper_Core_Box01
-14141,4 //F_Vesper_Core_Box02
-14142,4 //F_Vesper_Core_Box03
-14143,4 //F_Vesper_Core_Box04
-14144,4 //F_Vigorgra_Package1
-14145,4 //F_Vigorgra_Package2
-14146,4 //F_Vigorgra_Package3
-14147,4 //F_Vigorgra_Package4
-14148,4 //F_Vigorgra_Package5
-14149,4 //F_Vigorgra_Package6
-14150,4 //F_Vigorgra_Package7
-14151,4 //F_Vigorgra_Package8
-14152,4 //F_Vigorgra_Package9
-14153,4 //F_Vigorgra_Package10
-14154,4 //F_Vigorgra_Package11
-14155,4 //F_Vigorgra_Package12
-14156,4 //F_Battle_Manual_Box
-14157,4 //F_Insurance_Package
-14158,4 //F_Bubble_Gum_Box
-14159,4 //F_Str_Dish_Box
-14160,4 //F_Agi_Dish_Box
-14161,4 //F_Int_Dish_Box
-14162,4 //F_Dex_Dish_Box
-14163,4 //F_Luk_Dish_Box
-14164,4 //F_Vit_Dish_Box
-14165,4 //F_Kafra_Card_Box
-14166,4 //F_Giant_Fly_Wing_Box
-14167,4 //F_Neuralizer_Box
-14168,4 //F_Convex_Mirror_Box
-14169,4 //F_Blessing_10_Scroll_Box
-14170,4 //F_Inc_Agi_10_Scroll_Box
-14171,4 //F_Aspersio_5_Scroll_Box
-14172,4 //F_Assumptio_5_Scroll_Box
-14173,4 //F_Wind_Walk_10_Scroll_Box
-14174,4 //F_Adrenaline_Scroll_Box
-14175,4 //F_Megaphone_Box
-14176,4 //F_Enriched_Elunium_Box
-14177,4 //F_Enriched_Oridecon_Box
-14178,4 //F_Token_Of_Siegfried_Box
-14179,4 //F_Giant_Fly_Wing_Box50
-14180,4 //F_Giant_Fly_Wing_Box100
-14181,4 //F_Dex_Dish_Box30
-14182,4 //F_Dex_Dish_Box50
-14183,4 //F_Luk_Dish_Box30
-14184,4 //F_Luk_Dish_Box50
-14185,4 //F_Inc_Agi_10_Box30
-14186,4 //F_Inc_Agi_10_Box50
-14187,4 //F_Vit_Dish_Box30
-14188,4 //F_Vit_Dish_Box50
-14189,4 //F_Insurance_Package30
-14190,4 //F_Insurance_Package50
-14191,4 //F_Convex_Mirror_Box5
-14192,4 //F_Convex_Mirror_Box30
-14193,4 //F_Blessing10_Box30
-14194,4 //F_Blessing10_Box50
-14195,4 //F_Adrenaline10_Box30
-14196,4 //F_Adrenaline10_Box50
-14197,4 //F_Assumptio_5_Box30
-14198,4 //F_Assumptio_5_Box50
-14199,4 //F_Aspersio_5_Box30
-14200,4 //F_Aspersio_5_Box50
-14201,4 //F_Agi_Dish_Box30
-14202,4 //F_Agi_Dish_Box50
-14203,4 //F_Wind_Walk10_Box30
-14204,4 //F_Wind_Walk10_Box50
-14205,4 //F_Int_Dish_Box30
-14206,4 //F_Int_Dish_Box50
-14207,4 //F_Battle_Manual_Box1
-14208,4 //F_Battle_Manual_Box5
-14209,4 //F_Siegfried_Box5
-14210,4 //F_Siegfried_Box20
-14211,4 //F_Kafra_Card_Box30
-14212,4 //F_Kafra_Card_Box50
-14213,4 //F_Str_Dish_Box30
-14214,4 //F_Str_Dish_Box50
-14215,4 //F_Bubble_Gum_Box1
-14216,4 //F_Bubble_Gum_Box5
-14217,4 //F_Megaphone_Box1
-14218,4 //F_Megaphone_Box5
-14219,4 //F_Enriched_Elunium_Box5
-14220,4 //FEnriched_Oridecon_Box5
-14221,4 //MP_Scroll_Box
-14222,4 //MP_Scroll_Box30
-14223,4 //MP_Scroll_Box50
-14224,4 //Quagmire_Scroll_Box
-14225,4 //Quagmire_Scroll_Box30
-14226,4 //Quagmire_Scroll_Box50
-14227,4 //Healing_Staff_Box
-14228,4 //Praxinus_Box
-14229,4 //Sakura_Scroll
-14232,4 //Yggdrasilberry_Box_
-14233,4 //Dead_Tree_Branch_Box1
-14234,4 //Dead_Tree_Branch_Box2
-14242,4 //Beholder_Ring_Box
-14243,4 //Hallow_Ring_Box
-14244,4 //Clamorous_Ring_Box
-14245,4 //Chemical_Ring_Box
-14246,4 //Insecticide_Ring_Box
-14247,4 //Fisher_Ring_Box
-14248,4 //Decussate_Ring_Box
-14249,4 //Bloody_Ring_Box
-14250,4 //Satanic_Ring_Box
-14251,4 //Dragoon_Ring_Box
-14252,4 //Beholder_Ring_Box2
-14253,4 //Hallow_Ring_Box2
-14254,4 //Clamorous_Ring_Box2
-14255,4 //Chemical_Ring_Box2
-14256,4 //Insecticide_Ring_Box2
-14257,4 //Fisher_Ring_Box2
-14258,4 //Decussate_Ring_Box2
-14259,4 //Bloody_Ring_Box2
-14260,4 //Satanic_Ring_Box2
-14261,4 //Dragoon_Ring_Box2
-14283,4 //Marriage_Covenant_Box
-14289,4 //Cloth_Dye_Coupon_Box
-14290,4 //Cloth_Dye_Coupon2_Box
-14296,4 //Angel_Scroll
-14297,4 //Devil_Scroll
-14298,4 //Surprise_Scroll
-14300,4 //Mask_Of_Ifrit_Box
-14301,4 //Ifrit's_Ear_Box
-14304,4 //Scuba_Mask_Box
-14306,4 //RWC_Special_Scroll
-14307,4 //RWC_Limited_Scroll
-14308,4 //Ardor_Scroll
-14314,4 //PhreeoniS_Box
-14315,4 //GhostringS_Box
-14316,4 //July7_Scroll
-14317,4 //Bacsojin_Scroll
-14343,4 //Spiked_Scarf_Box
-14344,4 //Rainbow_Scarf_Box
-14345,4 //Animal_Scroll
-14349,4 //Mental_Potion20_Box
-14350,4 //Mental_Potion50_Box
-14351,4 //Tyr's_Blessing20_Box
-14352,4 //Tyr's_Blessing50_Box
-14361,4 //Orc_HeroS_Box
-14362,4 //Orc_LoadS_Box
-14363,4 //Heart_Scroll
-14372,4 //Powder_Snow_Box
-14375,4 //Holy_Celestial_Axe_Box
-14376,4 //Angeling_Pot_Box
-14377,4 //Shout_Megaphone_Box
-14379,4 //Love_Daddy_Box
-14380,4 //Anubis_Helm_Box
-14381,4 //Piercing_Box_M
-14382,4 //Lich_Bone_Box_M
-14383,4 //Long_Horn_Box_M
-14384,4 //Hunting_Spear_Box_M
-14385,4 //Death_Note_Box_M
-14386,4 //Destruction_Box_M
-14387,4 //Rider_Insignia_Box_M
-14388,4 //Mithril_Cape_Box_M
-14389,4 //Sniping_Box_M
-14390,4 //Orleans_Box_M
-14391,4 //Spiritual_Box_M
-14392,4 //Variant_Box_M
-14393,4 //Almighty_Charm_Box
-14407,4 //Xmas_Scroll
-14408,4 //New_Year_Scroll
-14438,4 //Honglyun's_Sword_Box
-14439,4 //Power_Of_Thor_Box
-14440,4 //Dice_Hat_Box
-14441,4 //King_Tiger_Doll_Hat_Box
-14442,4 //Wondering_Wolf_Helm_Box
-14443,4 //Pizza_Hat_Box
-14444,4 //Icecream_Hat_Box
-14447,4 //Pirate's_Pride_Box
-14448,4 //Necromencer's_Hood_Box
-14459,4 //Rabbit_Magic_Hat_Box
-14460,4 //China_Wedding_Veil_Box
-14461,4 //Asara_Fairy_Hat_Box
-14466,4 //Valentine_Pledge_Box
-14469,4 //Ox_Tail_Scroll
-14485,4 //Academy_Badge_Box
-14486,4 //Academy_Fresh_Hat_Box
-14487,4 //Academy_Gradu_Cap_Box
-14488,4 //Blue_Pajamas_Hat_Box
-14489,4 //Pink_Pajamas_Hat_Box
-14490,4 //Shark_Hat_Box
-14494,4 //Samambaia_Box
-14495,4 //Aquarius_Diadem_Box
-14496,4 //Aquarius_Crown_Box
-14497,4 //Pisces_Diadem_Box
-14498,4 //Pisces_Crown_Box
-14499,4 //Peacock_Feather_Box
-14699,4 //Memorial_Garuda_Lucky_Egg
-14701,4 //Rune_Midgard_Imortal_Lucky_Egg
-14735,4 //Shapeshifter_Costume
-14741,4 //Midgard_Celebration_Lucky_Egg
-14753,4 //Hero_Midgard_Egg
-14805,4 //Almighty_Lucky_Egg
-16131,4 //Lady_Tanee_Doll_Box
-16132,4 //Lunatic_Hat_Box
-16133,4 //G_Staff_Of_Light_Box
-16134,4 //King_Frog_Hat_Box
-16135,4 //Evil's_Bone_Hat_Box
-16185,4 //Raven_Cap_Box
-16186,4 //B_Dragon_Hat_Box
-16192,4 //Quati_Hat_Box
-16193,4 //Tucan_Hat_Box
-16194,4 //Jaguar_Hat_Box
-16195,4 //Tw_March_Scroll
-16226,4 //Aries_Diadem_Box
-16227,4 //Aries_Crown_Box
-16228,4 //RJC_Katusa_Box
-16229,4 //Scarlet_Rose_Box
-16230,4 //Taurus_Diadem_Box
-16231,4 //Taurus_Crown_Box
-16232,4 //Reginleif_Box
-16235,4 //Octopus_Hat_Box
-16236,4 //Leaf_Cat_Hat_Box
-16237,4 //Fur_Seal_Hat_Box
-16238,4 //Wild_Rose_Hat_Box
-16239,4 //Saci_Hat_Box
-16244,4 //Dolor_Hat_Box
-16245,4 //Tw_April_Scroll
-16246,4 //Crown_Of_Deceit_Box
-16247,4 //Dragon_Arhat_Mask_Box
-16248,4 //Tiger_Arhat_Mask_Box
-16249,4 //Knight_Gift_Box
-16251,4 //Gemini_Diadem_Box
-16252,4 //Gemini_Crown_Box
-16253,4 //Rabbit_Scroll
-16254,4 //Energizing_Potion_Box
-16257,4 //Buddah_Scroll
-16258,4 //HD_Bradium_Box5
-16259,4 //HD_Carnium_Box5
-16260,4 //HD_Bradium_Box10
-16261,4 //HD_Carnium_Box10
-16269,4 //Cancer_Diadem_Box
-16270,4 //Cancer_Crown_Box
-16304,4 //Evil_Incarnation
-16305,4 //Upg_Guard_Box
-16306,4 //F_Upg_Guard_Box
-16307,4 //Upg_Buckler_Box
-16308,4 //F_Upg_Buckler_Box
-16309,4 //Upg_Shield_Box
-16310,4 //F_Upg_Shield_Box
-16311,4 //Upg_Shoes_Box
-16312,4 //F_Upg_Shoes_Box
-16313,4 //Upg_Boots_Box
-16314,4 //F_Upg_Boots_Box
-16315,4 //Upg_Greave_Box
-16316,4 //F_Upg_Greave_Box
-16317,4 //Upg_Hood_Box
-16318,4 //F_Upg_Hood_Box
-16319,4 //Upg_Muffler_Box
-16320,4 //F_Upg_Muffler_Box
-16321,4 //Upg_Manteau_Box
-16322,4 //F_Upg_Manteau_Box
-16323,4 //Upg_Clip_Box
-16324,4 //F_Upg_Clip_Box
-16327,4 //Upg_Adv_Suit_Box
-16328,4 //F_Upg_Adv_Suit_Box
-16329,4 //Upg_Coat_Box
-16330,4 //F_Upg_Coat_Box
-16331,4 //Upg_Saint_Robe_Box
-16332,4 //F_Upg_Saint_Robe_Box
-16333,4 //Upg_Tights_Box
-16334,4 //F_Upg_Tights_Box
-16335,4 //Upg_Thief_Cloth_Box
-16336,4 //F_Upg_Thief_Cloth_Box
-16337,4 //Upg_Mail_Box
-16338,4 //F_Upg_Mail_Box
-16339,4 //Upg_Formal_Dress_Box
-16340,4 //F_Upg_Formal_Dress_Box
-16341,4 //Greed_Clip_Box
-16342,4 //F_Greed_Clip_Box
-16343,4 //Leo_Crown_Box
-16344,4 //Leo_Diadem_Box
-16345,4 //F_Leo_Crown_Box
-16346,4 //F_Leo_Diadem_Box
-16360,4 //Desert_Prince_Box
-16361,4 //FDesert_Prince_Box
-16362,4 //Sigrun's_Wing_Box
-16363,4 //FSigrun's_Wing_Box
-16368,4 //Virgo_Crown_Box
-16371,4 //Tw_Aug_Scroll
-16372,4 //F_Clover_Box_Mouth
-16374,4 //Mouth_Bubble_Gum_Box
-16385,4 //F_Clover_Box_Mouth2
-16386,4 //F_Clover_Box_Mouth4
-16389,4 //BGum_Box_In_Mouth2
-16390,4 //BGum_Box_In_Mouth4
-16393,4 //HD_Ori_Box5
-16394,4 //HD_Ori_Box10
-16395,4 //HD_Elu_Box5
-16396,4 //HD_Elu_Box10
-16397,4 //Virgo_Diadem_Box
-16405,4 //Midgard_Coin_Box
-16406,4 //FMidgard_Coin_Box
-16409,4 //Tw_Sep_Scroll
-16410,4 //Chung_Hairband_Box
-16411,4 //FChung_Hairband_Box
-16412,4 //Ice_Wing_Ear_Box
-16413,4 //FIce_Wing_Ear_Box
-16414,4 //Turtle_Hat_Box
-16415,4 //FTurtle_Hat_Box
-16436,4 //Libra_Crown_Box
-16438,4 //Libra_Diadem_Box
-16440,4 //Filir_Wing_Box
-16446,4 //Tw_October_Scroll
-16447,4 //Scorpio_Crown_Box
-16448,4 //Scorpio_Diadem_Box
-16450,4 //FScorpio_Diadem_Box
-16456,4 //My_Scroll1
-16457,4 //Tw_Nov_Scroll
-16461,4 //Red_Wing_Hat_Box
-16462,4 //FRed_Wing_Hat_Box
-16466,4 //My_Scroll2
-16503,4 //E_Insurance_Package
-16542,4 //Xmas_Bless
-16543,4 //Snowman_Hat_Box
-16544,4 //FSnowman_Hat_Box
-16548,4 //Sagittarius_Crown_Box
-16549,4 //Sagittarius_Diadem_Box
-16555,4 //Pr_Reset_Stone_Box
-16556,4 //FPr_Reset_Stone_Box
-16557,4 //CP_Helm_Scroll10
-16558,4 //CP_Shield_Scroll10
-16559,4 //CP_Armor_Scroll10
-16560,4 //CP_Weapon_Scroll10
-16561,4 //CP_Scroll_Package
-16562,4 //Majestic_Devil_Scroll
-16563,4 //BM100_Box_5
-16565,4 //Capricorn_Crown_Box
-16567,4 //Capricorn_Diadem_Box
-16568,4 //FCapricorn_Diadem_Box
-16569,4 //Summber_Scroll
-16576,4 //Illusion_Nothing
-16577,4 //Dragon_Captain
-16582,4 //Red_Bunny_Band_Box
-16584,4 //Sloth_Hat_Box
-16585,4 //F_Sloth_Hat_Box
-16586,4 //Duneyrr_Helm_Box
-16587,4 //F_Duneyrr_Helm_Box
-16600,4 //Spring_Flower_Scr_Tw
-16601,4 //Blue_Arara_Hat_Box
-16602,4 //F_Blue_Arara_Hat_Box
-16619,4 //Yellow_Bunnyband_Box
-16631,4 //Aributa_Scroll
-16638,4 //Life_Ribbon_Box
-16639,4 //Life_Ribbon_Box2
-16640,4 //Life_Ribbon_Box3
-16652,4 //Flame_Light
-16653,4 //BM75_10Box
-16654,4 //Valiant_Will
-16664,4 //Leo_Scroll
-16665,4 //Virgo_Scroll
-16666,4 //Magic_Candy_Box10
-16673,4 //Libra_Scroll
-16675,4 //Splash_Scroll
-16681,4 //BR_Independence_Scroll
-16682,4 //Boarding_Halter_Box
-16683,4 //B_Halter_Box_30Days
-16684,4 //Wing_Of_Fly_Box10
-16685,4 //Wing_Of_Fly_Box50
-16686,4 //Wing_Of_Fly_Box100
-16687,4 //RWC2010_SuitcaseA
-16688,4 //RWC2010_SuitcaseB
-16691,4 //Scorpius_Scroll
-16740,4 //Ptotection_Seagod_Box
-16741,4 //Hairtail_Box1
-16742,4 //Hairtail_Box2
-16743,4 //Spearfish_Box1
-16744,4 //Spearfish_Box2
-16745,4 //Saurel_Box1
-16746,4 //Saurel_Box2
-16747,4 //Tuna_Box1
-16748,4 //Tuna_Box2
-16749,4 //Malang_Crab_Box1
-16750,4 //Malang_Crab_Box2
-16751,4 //Brindle_Eel_Box1
-16752,4 //Brindle_Eel_Box2
-16753,4 //Unbreak_Weap_Box
-16754,4 //F_Unbreak_Weap_Box
-16755,4 //Unbreak_Def_Box
-16756,4 //F_Unbreak_Def_Box
-16757,4 //Hallo_Scroll
-16760,4 //Umbala_Spirit_Box2
-16761,4 //F_Umbala_Spirit_Box2
-16763,4 //Ptotection_Seagod_Box2
-16764,4 //Ptotection_Seagod_Box3
-16765,4 //Octo_Hstick_Box
-16766,4 //Octo_Hstick_Box2
-16767,4 //Octo_Hstick_Box3
-16770,4 //Silvervine_Fruit_Box10
-16771,4 //Silvervine_Fruit_Box40
-16774,4 //Asgard_Scroll
-16775,4 //Sagittarius_Scroll
-16826,4 //Sagittarius_Scr_Box
-16972,4 //Weather_Report_Box
-16973,4 //Yellow_Hat_Box
-16974,4 //Comin_Actor_Box
-16975,4 //Singing_Bird_Box
-16976,4 //Hen_Set_Box
-16977,4 //Red_Minicrown_Box
-16979,4 //Silvervine_Fruit_Box4
-16990,4 //Sagittar_Diadem_Scroll
-16991,4 //Sagittar_Di_Scroll_Box
-16992,4 //Butterfly_Wing_Box20
-16993,4 //Butterfly_Wing_Box50
-16995,4 //Old_Hat_Box
-16996,4 //Capri_Crown_Scroll
-16997,4 //Capri_Crown_Scroll_Box
-16998,4 //Archangel_Wing_Box
-16999,4 //Bravery_Bag_Box
-17000,4 //Wander_Man_Box5
-17001,4 //Wander_Man_Box10
-17002,4 //Wicked_Nymph_Box5
-17003,4 //Wicked_Nymph_Box10
-17004,4 //Kasa_Scroll_Box5
-17005,4 //Kasa_Scroll_Box10
-17006,4 //Salamander_Box5
-17007,4 //Salamander_Box10
-17008,4 //Teddy_Bear_Box5
-17009,4 //Teddy_Bear_Box10
-17011,4 //Capricon_Di_Scroll
-17012,4 //Capricon_Di_Scroll_Box
-17013,4 //Malang_Woe_Encard_Box
-17016,4 //Aquarius_Diadem_Scroll
-17017,4 //Aquarius_Di_Scroll_Box
-17018,4 //Libra_Scroll2
-17019,4 //Scorpio_Scroll2
-17020,4 //Tw_Nov_Scroll2
-17021,4 //Summer_Scroll3
-17022,4 //Super_Pet_Egg1_2
-17023,4 //Super_Pet_Egg4_2
-17024,4 //Lovely_Aquarius_Scroll
-17025,4 //Lovely_Aquarius_Box
-17026,4 //Boitata_Scroll
-17028,4 //Pisces_Diadem_Scroll
-17029,4 //Pisces_Diadem_Box
-17030,4 //St_Pat_Hat_box
-17035,4 //Energetic_Pisces_Scroll
-17036,4 //Energetic_Pisces_Box
-17037,4 //Trans_Box_Devi
-17038,4 //Trans_Box_Ray_Arch
-17039,4 //Trans_Box_Mavka
-17040,4 //Trans_Box_Marduk
-17041,4 //Trans_Box_Banshee
-17042,4 //Trans_Box_Poring
-17043,4 //Trans_Box_Golem
-17050,4 //Aries_Scroll
-17051,4 //Aries_Scroll_Box
-17052,4 //Holy_Mom_Blaze_Box
-17056,4 //Wiz_Card_Album
-17057,4 //Swordman_Card_Album
-17058,4 //Thief_Card_Album
-17059,4 //Acolyte_Card_Album
-17060,4 //Merchant_Card_Album
-17061,4 //Archer_Card_Album
-17062,4 //Taurus_Diadem_Scroll
-17063,4 //Taurus_Di_Scroll_Box
-17064,4 //Tw_Sagitt_Scroll
-17066,4 //Poison_Bottle_Box50
-17067,4 //Poison_Bottle_Box100
-17068,4 //Acidbomb_Box50
-17069,4 //Acidbomb_Box100
-17070,4 //Acidbomb_Box500
-17071,4 //Superb_Fish_Box50
-17072,4 //Superb_Fish_Box100
-17073,4 //Superb_Fish_Box500
-17074,4 //Empty_Bottle_Box10
-17075,4 //Empty_Bottle_Box100
-17076,4 //Empty_Bottle_Box500
-17077,4 //Taurus_Crown_Scroll
-17078,4 //Taurus_Crown_Scroll_Box
-17079,4 //Indonesia_Box2
-17080,4 //Scorpio_Scroll3
-17081,4 //Yggdrasil_Crown_Box
-17082,4 //Gemi_Diadem_Scroll
-17083,4 //Gemi_Diadem_Scroll_Box
-17084,4 //Upg_Katar_Box
-17085,4 //Upg_Two_Handed_Axe_Box
-17086,4 //Upg_Lance_Box
-17087,4 //Upg_Book_Box
-17088,4 //Upg_Staff_Box
-17089,4 //Upg_Dagger_Box
-17090,4 //Upg_Revolver_Box
-17091,4 //Upg_Mace_Box
-17092,4 //Upg_Bow_Box
-17093,4 //Upg_Twohand_Sword_Box
-17094,4 //Upg_Katar_Box2
-17095,4 //Upg_Two_Handed_Axe_Box2
-17096,4 //Upg_Lance_Box2
-17097,4 //Upg_Book_Box2
-17098,4 //Upg_Staff_Box2
-17099,4 //Upg_Dagger_Box2
-17100,4 //Upg_Revolver_Box2
-17101,4 //Upg_Mace_Box2
-17102,4 //Upg_Bow_Box2
-17103,4 //Upg_Twohand_Sword_Box2
-17104,4 //HD_Oridecon_50Box
-17105,4 //HD_Elunium_50Box
-17106,4 //Max_Weight_Up_10Box
-17107,4 //Gemi_Crown_Scroll
-17108,4 //Gemi_Crown_Scroll_Box
-17109,4 //Capri_Scroll
-17110,4 //Aquarius_Scroll
-17113,4 //Pisces_Scroll
-17114,4 //Horn_Of_Ancient_Box
-17115,4 //Sprout_Hat_Box
-17116,4 //Mercury_Helm_Box
-17117,4 //Aries_Scroll
-17118,4 //ASPD_Potion_Box10
-17120,4 //Taurus_Scroll
-17121,4 //Starry_Scroll
-17122,4 //Immuned_Shield_Box
-17123,4 //Black_Devil_Mask_Box
-17124,4 //Cat_Ears_Beret_Box
-17125,4 //Red_Bread_Hat_Box
-17126,4 //ASPD_Potion_Box10_2
-17127,4 //Leo_Scroll2
-17134,4 //RWC_Scroll
-17138,4 //Ms_Cancer_Scroll
-17139,4 //RWC_Super_Scroll
-17140,4 //Leo_Scroll
-17141,4 //Ms_Virgo_Scroll
-17143,4 //Ms_Scorpio_Scroll
-17146,4 //Dep_Alice_Hat_Box
-17147,4 //Ribbon_Chef_Hat_Box
-17152,4 //Bridal_Ribbon_Box
-17155,4 //Upg_Huuma_Shuriken_Box
-17156,4 //TCG_Card_Scroll
-17157,4 //Vital_Flower_Box
-17158,4 //Flame_Gemstone_Box
-17162,4 //Boarding_Halter_Box7
-17165,4 //Challenge_Kit
-17176,4 //Boarding_Halter_Box3
-17181,4 //Jan_Groove_Box
-17184,4 //3rd_Test_Pass_Box
-17203,4 //Free_Pass_Box
-17204,4 // Shining_Egg
-17207,4 //Idn_Heart_Scroll
-17209,4 //Tw_Rainbow_Scroll
-17210,4 //Tw_Red_Scroll
-17211,4 //Tw_Orange_Scroll
-17212,4 //Tw_Yellow_Scroll
-17233,4 //Scroll_Of_Death
-17234,4 //Scroll_Of_Life
-17235,4 //Scroll_Of_Magic
-17236,4 //Scroll_Of_Thews
-17237,4 //Scroll_Of_Darkness
-17238,4 //Scroll_Of_Holiness
-17239,4 //Horned_Scroll
-17240,4 //Mercury_Scroll
-17245,4 //Idn_Independ_Scroll
-17251,4 //C_Wing_Of_Fly_3Day_Box
-17252,4 //RWC_2012_Set_Box
-17253,4 //RWC_2012_Ring_Box
-17254,4 //RWC_2012_Pendant_Box
-17256,4 //Good_Student_Gift_Box
-17257,4 //Bad_Student_Gift_Box
-17262,4 //Ex_Def_Potion_Box
-17270,4 //STR_Biscuit_Stick_Box
-17271,4 //VIT_Biscuit_Stick_Box
-17272,4 //AGI_Biscuit_Stick_Box
-17273,4 //INT_Biscuit_Stick_Box
-17274,4 //DEX_Biscuit_Stick_Box
-17275,4 //LUK_Biscuit_Stick_Box
-17307,4 //Midgard_Egg
-17317,4 //Sweet_Midgard_Egg
-17320,4 //Birthday_IdRO10th_Scroll
-17337,4 //Holy_Spirit_Egg
-17431,4 //Miracle_Lucky_Egg
-17435,4 //Legend_Hero_Lucky_Egg
-17447,4 //Blessing_Midgard_Lucky_Egg
-17461,4 //Frozen_Egg_Costume
-17464,4 //Winter_Midgard_Egg
-17470,4 //Headgear_Costume_Scroll
-17471,4 //Spring_Festival_Lucky_Egg
-17479,4 //Midgard_Festival_Egg
-17481,4 //Flower_Blossom_Scroll
-17482,4 //Solaris_Festival_Scroll
-17490,4 //Time_Travel_Lucky_Egg
-17493,4 //Burning_Feather_Costume_Scroll
-17494,4 //Rise_Midgard_Lucky_Egg
-17497,4 //Seaside_Costume_Scroll
-17517,4 //Animal_Costume_Scroll
-17519,4 //Epic_Heroes_Scroll
-17523,4 //Mystical_Costume_Scroll
-17526,4 //Majestic_Lucky_Egg
-17532,4 //Blessing_Lucky_Egg
-17552,4 //Garnet_Lucky_Egg
-17572,4 //Erzulie_Lucky_Egg
-17584,4 //Venus_Lucky_Egg
-17588,4 //Amora_Lucky_Egg
-17598,4 //Sograt_Lucky_Scroll
-17607,4 //Sanctuary_Lucky_Egg
-17613,4 //Chronosian_Lucky_Egg
-17628,4 //Cyborg_Lucky_Egg
-17633,4 //Undine_Lucky_Egg
-17648,4 //Smithy_Lucky_Egg
-17659,4 //Ganymede_Lucky_Egg
-17665,4 //LastAngel_LuckyScroll
-17671,4 //Valkyrie_Lucky_Egg
-17674,4 //Splash_Rainbow_Lucky_Egg
-17681,4 //Midgard_Lucky_Scroll
-17692,4 //Blessing_Scarlet_Egg
-//17297,4 //B_Halter_Box_1year
-//17318,4 //10_Anniv_Package
-//17319,4 //10_Anniv_Collection
-//17327,4 //Fashion_Costume_Box1
-//17328,4 //Fashion_Costume_Box2
-//17329,4 //Fashion_Costume_Box3
-//17330,4 //Fashion_Costume_Box4
-//17335,4 //Mysterious_Ingredient_B
-22558,4 //Lucky_Bag
-23196,4 // Shining_Blue_Lucky_Egg
-
-// Special Broadcast
-7782,16 //Gold_Key77
-7783,16 //Silver_Key77
-
-// Not removed after consumption
-12622,32 //Boarding_Halter
-12887,32 //C_Wing_Of_Fly
-22508,32 //Para_Team_Mark_
diff --git a/db/re/item_package.txt b/db/re/item_package.txt
index 42b8388a2b..e0d5addc43 100644
--- a/db/re/item_package.txt
+++ b/db/re/item_package.txt
@@ -4675,3 +4675,694 @@ IG_Santa_Gift,14586,500,5,1,0,0,0 // 5x Spark_Candy
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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
+
+// 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
diff --git a/db/re/item_randomopt_db.txt b/db/re/item_randomopt_db.txt
deleted file mode 100644
index 5a82f1049c..0000000000
--- a/db/re/item_randomopt_db.txt
+++ /dev/null
@@ -1,200 +0,0 @@
-// Items Random Option Database
-//
-// Structure of Database:
-// ID,{ Bonus Script }
-RDMOPT_VAR_MAXHPAMOUNT,{ bonus bMaxHP,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_MAXSPAMOUNT,{ bonus bMaxSP,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_STRAMOUNT,{ bonus bStr,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_AGIAMOUNT,{ bonus bAgi,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_VITAMOUNT,{ bonus bVit,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_INTAMOUNT,{ bonus bInt,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_DEXAMOUNT,{ bonus bDex,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_LUKAMOUNT,{ bonus bLuk,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_MAXHPPERCENT,{ bonus bMaxHPrate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_MAXSPPERCENT,{ bonus bMaxSPrate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_HPACCELERATION,{ bonus bHPrecovRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_SPACCELERATION,{ bonus bSPrecovRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_ATKPERCENT,{ bonus2 bAddClass,Class_All,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_MAGICATKPERCENT,{ bonus bMatkRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_PLUSASPD,{ bonus bAspd,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_PLUSASPDPERCENT,{ bonus bAspdRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_ATTPOWER,{ bonus bAtk,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_HITSUCCESSVALUE,{ bonus bHit,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_ATTMPOWER,{ bonus bMatk,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_ITEMDEFPOWER,{ bonus bDef,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_MDEFPOWER,{ bonus bMdef,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_AVOIDSUCCESSVALUE,{ bonus bFlee,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_PLUSAVOIDSUCCESSVALUE,{ bonus bFlee2,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_VAR_CRITICALSUCCESSVALUE,{ bonus bCritical,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_NOTHING,{ bonus2 bSubEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_WATER,{ bonus2 bSubEle,Ele_Water,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_GROUND,{ bonus2 bSubEle,Ele_Earth,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_FIRE,{ bonus2 bSubEle,Ele_Fire,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_WIND,{ bonus2 bSubEle,Ele_Wind,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_POISON,{ bonus2 bSubEle,Ele_Poison,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_SAINT,{ bonus2 bSubEle,Ele_Holy,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_DARKNESS,{ bonus2 bSubEle,Ele_Dark,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_TELEKINESIS,{ bonus2 bSubEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_UNDEAD,{ bonus2 bSubEle,Ele_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_ATTR_TOLERACE_ALL,{ bonus2 bSubEle,Ele_All,getrandomoptinfo(ROA_VALUE); }
-// TODO: Confirm if damage reduction is implemented correctly.
-// kRO desc : 몬스터로부터 받는 물리 데미지 %d%% 감소.
-RDMOPT_DAMAGE_PROPERTY_NOTHING_USER,{ bonus2 bSubDefEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_NOTHING_TARGET,{ bonus2 bAddEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_WATER_USER,{ bonus2 bSubDefEle,Ele_Water,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_WATER_TARGET,{ bonus2 bAddEle,Ele_Water,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_GROUND_USER,{ bonus2 bSubDefEle,Ele_Earth,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_GROUND_TARGET,{ bonus2 bAddEle,Ele_Earth,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_FIRE_USER,{ bonus2 bSubDefEle,Ele_Fire,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_FIRE_TARGET,{ bonus2 bAddEle,Ele_Fire,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_WIND_USER,{ bonus2 bSubDefEle,Ele_Wind,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_WIND_TARGET,{ bonus2 bAddEle,Ele_Wind,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_POISON_USER,{ bonus2 bSubDefEle,Ele_Poison,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_POISON_TARGET,{ bonus2 bAddEle,Ele_Poison,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_SAINT_USER,{ bonus2 bSubDefEle,Ele_Holy,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_SAINT_TARGET,{ bonus2 bAddEle,Ele_Holy,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_DARKNESS_USER,{ bonus2 bSubDefEle,Ele_Dark,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_DARKNESS_TARGET,{ bonus2 bAddEle,Ele_Dark,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_USER,{ bonus2 bSubDefEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_TELEKINESIS_TARGET,{ bonus2 bAddEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_UNDEAD_USER,{ bonus2 bSubDefEle,Ele_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_PROPERTY_UNDEAD_TARGET,{ bonus2 bAddEle,Ele_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_NOTHING_USER,{ bonus3 bSubEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_NOTHING_TARGET,{ bonus2 bMagicAddEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_WATER_USER,{ bonus3 bSubEle,Ele_Water,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_WATER_TARGET,{ bonus2 bMagicAddEle,Ele_Water,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_GROUND_USER,{ bonus3 bSubEle,Ele_Earth,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_GROUND_TARGET,{ bonus2 bMagicAddEle,Ele_Earth,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_FIRE_USER,{ bonus3 bSubEle,Ele_Fire,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_FIRE_TARGET,{ bonus2 bMagicAddEle,Ele_Fire,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_WIND_USER,{ bonus3 bSubEle,Ele_Wind,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_WIND_TARGET,{ bonus2 bMagicAddEle,Ele_Wind,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_POISON_USER,{ bonus3 bSubEle,Ele_Poison,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_POISON_TARGET,{ bonus2 bMagicAddEle,Ele_Poison,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_SAINT_USER,{ bonus3 bSubEle,Ele_Holy,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_SAINT_TARGET,{ bonus2 bMagicAddEle,Ele_Holy,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_DARKNESS_USER,{ bonus3 bSubEle,Ele_Dark,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_DARKNESS_TARGET,{ bonus2 bMagicAddEle,Ele_Dark,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_USER,{ bonus3 bSubEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_TELEKINESIS_TARGET,{ bonus2 bMagicAddEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_PROPERTY_UNDEAD_USER,{ bonus3 bSubEle,Ele_Undead,getrandomoptinfo(ROA_VALUE),BF_MAGIC; }
-RDMOPT_MDAMAGE_PROPERTY_UNDEAD_TARGET,{ bonus2 bMagicAddEle,Ele_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_BODY_ATTR_NOTHING,{ bonus bDefEle,Ele_Neutral; }
-RDMOPT_BODY_ATTR_WATER,{ bonus bDefEle,Ele_Water; }
-RDMOPT_BODY_ATTR_GROUND,{ bonus bDefEle,Ele_Earth; }
-RDMOPT_BODY_ATTR_FIRE,{ bonus bDefEle,Ele_Fire; }
-RDMOPT_BODY_ATTR_WIND,{ bonus bDefEle,Ele_Wind; }
-RDMOPT_BODY_ATTR_POISON,{ bonus bDefEle,Ele_Poison; }
-RDMOPT_BODY_ATTR_SAINT,{ bonus bDefEle,Ele_Holy; }
-RDMOPT_BODY_ATTR_DARKNESS,{ bonus bDefEle,Ele_Dark; }
-RDMOPT_BODY_ATTR_TELEKINESIS,{ bonus bDefEle,Ele_Ghost; }
-RDMOPT_BODY_ATTR_UNDEAD,{ bonus bDefEle,Ele_Undead; }
-//RDMOPT_BODY_ATTR_ALL,{ /* Needs more info */ }
-RDMOPT_RACE_TOLERACE_NOTHING,{ bonus2 bSubRace,RC_Formless,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_UNDEAD,{ bonus2 bSubRace,RC_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_ANIMAL,{ bonus2 bSubRace,RC_Brute,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_PLANT,{ bonus2 bSubRace,RC_Plant,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_INSECT,{ bonus2 bSubRace,RC_Insect,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_FISHS,{ bonus2 bSubRace,RC_Fish,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_DEVIL,{ bonus2 bSubRace,RC_Demon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_HUMAN,{ bonus2 bSubRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE); bonus2 bSubRace,RC_Player,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_ANGEL,{ bonus2 bSubRace,RC_Angel,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_TOLERACE_DRAGON,{ bonus2 bSubRace,RC_Dragon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_NOTHING,{ bonus2 bAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_UNDEAD,{ bonus2 bAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_ANIMAL,{ bonus2 bAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_PLANT,{ bonus2 bAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_INSECT,{ bonus2 bAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_FISHS,{ bonus2 bAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_DEVIL,{ bonus2 bAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_HUMAN,{ bonus2 bAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE); bonus2 bAddRace,RC_Player,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_ANGEL,{ bonus2 bAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_DAMAGE_DRAGON,{ bonus2 bAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_NOTHING,{ bonus2 bMagicAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_UNDEAD,{ bonus2 bMagicAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_ANIMAL,{ bonus2 bMagicAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_PLANT,{ bonus2 bMagicAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_INSECT,{ bonus2 bMagicAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_FISHS,{ bonus2 bMagicAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_DEVIL,{ bonus2 bMagicAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_HUMAN,{ bonus2 bMagicAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE); bonus2 bMagicAddRace,RC_Player,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_ANGEL,{ bonus2 bMagicAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_MDAMAGE_DRAGON,{ bonus2 bMagicAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_CRI_PERCENT_NOTHING,{ bonus2 bCriticalAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_UNDEAD,{ bonus2 bCriticalAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_ANIMAL,{ bonus2 bCriticalAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_PLANT,{ bonus2 bCriticalAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_INSECT,{ bonus2 bCriticalAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_FISHS,{ bonus2 bCriticalAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_DEVIL,{ bonus2 bCriticalAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_HUMAN,{ bonus2 bCriticalAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE)/10; bonus2 bCriticalAddRace,RC_Player,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_ANGEL,{ bonus2 bCriticalAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_CRI_PERCENT_DRAGON,{ bonus2 bCriticalAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE)/10; }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_NOTHING,{ bonus2 bIgnoreDefRaceRate,RC_Formless,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_UNDEAD,{ bonus2 bIgnoreDefRaceRate,RC_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_ANIMAL,{ bonus2 bIgnoreDefRaceRate,RC_Brute,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_PLANT,{ bonus2 bIgnoreDefRaceRate,RC_Plant,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_INSECT,{ bonus2 bIgnoreDefRaceRate,RC_Insect,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_FISHS,{ bonus2 bIgnoreDefRaceRate,RC_Fish,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_DEVIL,{ bonus2 bIgnoreDefRaceRate,RC_Demon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_HUMAN,{ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,getrandomoptinfo(ROA_VALUE); bonus2 bIgnoreDefRaceRate,RC_Player,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_ANGEL,{ bonus2 bIgnoreDefRaceRate,RC_Angel,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_DEF_PERCENT_DRAGON,{ bonus2 bIgnoreDefRaceRate,RC_Dragon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_NOTHING,{ bonus2 bIgnoreMdefRaceRate,RC_Formless,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_UNDEAD,{ bonus2 bIgnoreMdefRaceRate,RC_Undead,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANIMAL,{ bonus2 bIgnoreMdefRaceRate,RC_Brute,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_PLANT,{ bonus2 bIgnoreMdefRaceRate,RC_Plant,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_INSECT,{ bonus2 bIgnoreMdefRaceRate,RC_Insect,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_FISHS,{ bonus2 bIgnoreMdefRaceRate,RC_Fish,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_DEVIL,{ bonus2 bIgnoreMdefRaceRate,RC_Demon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_HUMAN,{ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,getrandomoptinfo(ROA_VALUE); bonus2 bIgnoreMdefRaceRate,RC_Player,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_ANGEL,{ bonus2 bIgnoreMdefRaceRate,RC_Angel,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RACE_IGNORE_MDEF_PERCENT_DRAGON,{ bonus2 bIgnoreMdefRaceRate,RC_Dragon,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_DAMAGE_NORMAL_TARGET,{ bonus2 bAddClass,Class_Normal,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_DAMAGE_BOSS_TARGET,{ bonus2 bAddClass,Class_Boss,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_DAMAGE_NORMAL_USER,{ bonus2 bSubClass,Class_Normal,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_DAMAGE_BOSS_USER,{ bonus2 bSubClass,Class_Boss,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_MDAMAGE_NORMAL,{ bonus2 bMagicAddClass,Class_Normal,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_MDAMAGE_BOSS,{ bonus2 bMagicAddClass,Class_Boss,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_IGNORE_DEF_PERCENT_NORMAL,{ bonus2 bIgnoreDefClassRate,Class_Normal,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_IGNORE_DEF_PERCENT_BOSS,{ bonus2 bIgnoreDefClassRate,Class_Boss,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_IGNORE_MDEF_PERCENT_NORMAL,{ bonus2 bIgnoreMdefClassRate,Class_Normal,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_CLASS_IGNORE_MDEF_PERCENT_BOSS,{ bonus2 bIgnoreMdefClassRate,Class_Boss,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_SMALL_TARGET,{ bonus2 bAddSize,Size_Small,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_MIDIUM_TARGET,{ bonus2 bAddSize,Size_Medium,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_LARGE_TARGET,{ bonus2 bAddSize,Size_Large,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_SMALL_USER,{ bonus2 bSubSize,Size_Small,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_MIDIUM_USER,{ bonus2 bSubSize,Size_Medium,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_LARGE_USER,{ bonus2 bSubSize,Size_Large,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_SIZE_PERFECT,{ bonus bNoSizeFix,1; }
-RDMOPT_DAMAGE_CRI_TARGET,{ bonus bCritAtkRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DAMAGE_CRI_USER,{ bonus bCriticalDef,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RANGE_ATTACK_DAMAGE_TARGET,{ bonus bLongAtkRate,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_RANGE_ATTACK_DAMAGE_USER,{ bonus bLongAtkDef,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_HEAL_VALUE,{ bonus bHealPower,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_HEAL_MODIFY_PERCENT,{ bonus bHealPower2,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_DEC_SPELL_CAST_TIME,{ bonus bVariableCastrate,-(getrandomoptinfo(ROA_VALUE));}
-RDMOPT_DEC_SPELL_DELAY_TIME,{ bonus bDelayrate,-(getrandomoptinfo(ROA_VALUE)); }
-RDMOPT_DEC_SP_CONSUMPTION,{ bonus bUseSPrate,-(getrandomoptinfo(ROA_VALUE)); }
-//RDMOPT_HP_DRAIN,{ /* Needs more info */ }
-//RDMOPT_SP_DRAIN,{ /* Needs more info */ }
-RDMOPT_WEAPON_ATTR_NOTHING,{ bonus bAtkEle,Ele_Neutral; }
-RDMOPT_WEAPON_ATTR_WATER,{ bonus bAtkEle,Ele_Water; }
-RDMOPT_WEAPON_ATTR_GROUND,{ bonus bAtkEle,Ele_Earth; }
-RDMOPT_WEAPON_ATTR_FIRE,{ bonus bAtkEle,Ele_Fire; }
-RDMOPT_WEAPON_ATTR_WIND,{ bonus bAtkEle,Ele_Wind; }
-RDMOPT_WEAPON_ATTR_POISON,{ bonus bAtkEle,Ele_Poison; }
-RDMOPT_WEAPON_ATTR_SAINT,{ bonus bAtkEle,Ele_Holy; }
-RDMOPT_WEAPON_ATTR_DARKNESS,{ bonus bAtkEle,Ele_Dark; }
-RDMOPT_WEAPON_ATTR_TELEKINESIS,{ bonus bAtkEle,Ele_Ghost; }
-RDMOPT_WEAPON_ATTR_UNDEAD,{ bonus bAtkEle,Ele_Undead; }
-RDMOPT_WEAPON_INDESTRUCTIBLE,{ bonus bUnbreakableWeapon,1; }
-RDMOPT_BODY_INDESTRUCTIBLE,{ bonus bUnbreakableArmor,1; }
-RDMOPT_MDAMAGE_SIZE_SMALL_TARGET,{ bonus2 bMagicAddSize,Size_Small,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_SIZE_MIDIUM_TARGET,{ bonus2 bMagicAddSize,Size_Medium,getrandomoptinfo(ROA_VALUE); }
-RDMOPT_MDAMAGE_SIZE_LARGE_TARGET,{ bonus2 bMagicAddSize,Size_Large,getrandomoptinfo(ROA_VALUE); }
-//RDMOPT_MDAMAGE_SIZE_SMALL_USER,{}
-//RDMOPT_MDAMAGE_SIZE_MIDIUM_USER,{}
-//RDMOPT_MDAMAGE_SIZE_LARGE_USER,{}
-//redefined?
-//RDMOPT_ATTR_TOLERACE_ALL,{}
diff --git a/db/re/item_randomopt_db.yml b/db/re/item_randomopt_db.yml
new file mode 100644
index 0000000000..8bb643ccef
--- /dev/null
+++ b/db/re/item_randomopt_db.yml
@@ -0,0 +1,891 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Random Option Database
+###########################################################################
+#
+# Item Random Option Settings
+#
+###########################################################################
+# - Id Item Random Option ID matching the ID defined in enumvar.lub in the client.
+# Option Item Random Option constant.
+# Script Bonus script used for option.
+###########################################################################
+
+Header:
+ Type: RANDOM_OPTION_DB
+ Version: 1
+
+Body:
+ - Id: 1
+ Option: VAR_MAXHPAMOUNT
+ Script: |
+ bonus bMaxHP,getrandomoptinfo(ROA_VALUE);
+ - Id: 2
+ Option: VAR_MAXSPAMOUNT
+ Script: |
+ bonus bMaxSP,getrandomoptinfo(ROA_VALUE);
+ - Id: 3
+ Option: VAR_STRAMOUNT
+ Script: |
+ bonus bStr,getrandomoptinfo(ROA_VALUE);
+ - Id: 4
+ Option: VAR_AGIAMOUNT
+ Script: |
+ bonus bAgi,getrandomoptinfo(ROA_VALUE);
+ - Id: 5
+ Option: VAR_VITAMOUNT
+ Script: |
+ bonus bVit,getrandomoptinfo(ROA_VALUE);
+ - Id: 6
+ Option: VAR_INTAMOUNT
+ Script: |
+ bonus bInt,getrandomoptinfo(ROA_VALUE);
+ - Id: 7
+ Option: VAR_DEXAMOUNT
+ Script: |
+ bonus bDex,getrandomoptinfo(ROA_VALUE);
+ - Id: 8
+ Option: VAR_LUKAMOUNT
+ Script: |
+ bonus bLuk,getrandomoptinfo(ROA_VALUE);
+ - Id: 9
+ Option: VAR_MAXHPPERCENT
+ Script: |
+ bonus bMaxHPrate,getrandomoptinfo(ROA_VALUE);
+ - Id: 10
+ Option: VAR_MAXSPPERCENT
+ Script: |
+ bonus bMaxSPrate,getrandomoptinfo(ROA_VALUE);
+ - Id: 11
+ Option: VAR_HPACCELERATION
+ Script: |
+ bonus bHPrecovRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 12
+ Option: VAR_SPACCELERATION
+ Script: |
+ bonus bSPrecovRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 13
+ Option: VAR_ATKPERCENT
+ Script: |
+ bonus2 bAddClass,Class_All,getrandomoptinfo(ROA_VALUE);
+ - Id: 14
+ Option: VAR_MAGICATKPERCENT
+ Script: |
+ bonus bMatkRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 15
+ Option: VAR_PLUSASPD
+ Script: |
+ bonus bAspd,getrandomoptinfo(ROA_VALUE);
+ - Id: 16
+ Option: VAR_PLUSASPDPERCENT
+ Script: |
+ bonus bAspdRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 17
+ Option: VAR_ATTPOWER
+ Script: |
+ bonus bAtk,getrandomoptinfo(ROA_VALUE);
+ - Id: 18
+ Option: VAR_HITSUCCESSVALUE
+ Script: |
+ bonus bHit,getrandomoptinfo(ROA_VALUE);
+ - Id: 19
+ Option: VAR_ATTMPOWER
+ Script: |
+ bonus bMatk,getrandomoptinfo(ROA_VALUE);
+ - Id: 20
+ Option: VAR_ITEMDEFPOWER
+ Script: |
+ bonus bDef,getrandomoptinfo(ROA_VALUE);
+ - Id: 21
+ Option: VAR_MDEFPOWER
+ Script: |
+ bonus bMdef,getrandomoptinfo(ROA_VALUE);
+ - Id: 22
+ Option: VAR_AVOIDSUCCESSVALUE
+ Script: |
+ bonus bFlee,getrandomoptinfo(ROA_VALUE);
+ - Id: 23
+ Option: VAR_PLUSAVOIDSUCCESSVALUE
+ Script: |
+ bonus bFlee2,getrandomoptinfo(ROA_VALUE);
+ - Id: 24
+ Option: VAR_CRITICALSUCCESSVALUE
+ Script: |
+ bonus bCritical,getrandomoptinfo(ROA_VALUE);
+ - Id: 25
+ Option: ATTR_TOLERACE_NOTHING
+ Script: |
+ bonus2 bSubEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE);
+ - Id: 26
+ Option: ATTR_TOLERACE_WATER
+ Script: |
+ bonus2 bSubEle,Ele_Water,getrandomoptinfo(ROA_VALUE);
+ - Id: 27
+ Option: ATTR_TOLERACE_GROUND
+ Script: |
+ bonus2 bSubEle,Ele_Earth,getrandomoptinfo(ROA_VALUE);
+ - Id: 28
+ Option: ATTR_TOLERACE_FIRE
+ Script: |
+ bonus2 bSubEle,Ele_Fire,getrandomoptinfo(ROA_VALUE);
+ - Id: 29
+ Option: ATTR_TOLERACE_WIND
+ Script: |
+ bonus2 bSubEle,Ele_Wind,getrandomoptinfo(ROA_VALUE);
+ - Id: 30
+ Option: ATTR_TOLERACE_POISON
+ Script: |
+ bonus2 bSubEle,Ele_Poison,getrandomoptinfo(ROA_VALUE);
+ - Id: 31
+ Option: ATTR_TOLERACE_SAINT
+ Script: |
+ bonus2 bSubEle,Ele_Holy,getrandomoptinfo(ROA_VALUE);
+ - Id: 32
+ Option: ATTR_TOLERACE_DARKNESS
+ Script: |
+ bonus2 bSubEle,Ele_Dark,getrandomoptinfo(ROA_VALUE);
+ - Id: 33
+ Option: ATTR_TOLERACE_TELEKINESIS
+ Script: |
+ bonus2 bSubEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE);
+ - Id: 34
+ Option: ATTR_TOLERACE_UNDEAD
+ Script: |
+ bonus2 bSubEle,Ele_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 35
+ Option: ATTR_TOLERACE_ALLBUTNOTHING
+ Script: |
+ for(.@i = Ele_Water; .@i < Ele_Undead; ++.@i)
+ bonus2 bSubEle,.@i,getrandomoptinfo(ROA_VALUE);
+ - Id: 36
+ Option: DAMAGE_PROPERTY_NOTHING_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE);
+ - Id: 37
+ Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE);
+ - Id: 38
+ Option: DAMAGE_PROPERTY_WATER_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Water,getrandomoptinfo(ROA_VALUE);
+ - Id: 39
+ Option: DAMAGE_PROPERTY_WATER_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Water,getrandomoptinfo(ROA_VALUE);
+ - Id: 40
+ Option: DAMAGE_PROPERTY_GROUND_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Earth,getrandomoptinfo(ROA_VALUE);
+ - Id: 41
+ Option: DAMAGE_PROPERTY_GROUND_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Earth,getrandomoptinfo(ROA_VALUE);
+ - Id: 42
+ Option: DAMAGE_PROPERTY_FIRE_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Fire,getrandomoptinfo(ROA_VALUE);
+ - Id: 43
+ Option: DAMAGE_PROPERTY_FIRE_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Fire,getrandomoptinfo(ROA_VALUE);
+ - Id: 44
+ Option: DAMAGE_PROPERTY_WIND_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Wind,getrandomoptinfo(ROA_VALUE);
+ - Id: 45
+ Option: DAMAGE_PROPERTY_WIND_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Wind,getrandomoptinfo(ROA_VALUE);
+ - Id: 46
+ Option: DAMAGE_PROPERTY_POISON_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Poison,getrandomoptinfo(ROA_VALUE);
+ - Id: 47
+ Option: DAMAGE_PROPERTY_POISON_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Poison,getrandomoptinfo(ROA_VALUE);
+ - Id: 48
+ Option: DAMAGE_PROPERTY_SAINT_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Holy,getrandomoptinfo(ROA_VALUE);
+ - Id: 49
+ Option: DAMAGE_PROPERTY_SAINT_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Holy,getrandomoptinfo(ROA_VALUE);
+ - Id: 50
+ Option: DAMAGE_PROPERTY_DARKNESS_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Dark,getrandomoptinfo(ROA_VALUE);
+ - Id: 51
+ Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Dark,getrandomoptinfo(ROA_VALUE);
+ - Id: 52
+ Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE);
+ - Id: 53
+ Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE);
+ - Id: 54
+ Option: DAMAGE_PROPERTY_UNDEAD_USER
+ Script: |
+ bonus2 bSubDefEle,Ele_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 55
+ Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ Script: |
+ bonus2 bAddEle,Ele_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 56
+ Option: MDAMAGE_PROPERTY_NOTHING_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE);
+ - Id: 57
+ Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Neutral,getrandomoptinfo(ROA_VALUE);
+ - Id: 58
+ Option: MDAMAGE_PROPERTY_WATER_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Water,getrandomoptinfo(ROA_VALUE);
+ - Id: 59
+ Option: MDAMAGE_PROPERTY_WATER_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Water,getrandomoptinfo(ROA_VALUE);
+ - Id: 60
+ Option: MDAMAGE_PROPERTY_GROUND_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Earth,getrandomoptinfo(ROA_VALUE);
+ - Id: 61
+ Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Earth,getrandomoptinfo(ROA_VALUE);
+ - Id: 62
+ Option: MDAMAGE_PROPERTY_FIRE_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Fire,getrandomoptinfo(ROA_VALUE);
+ - Id: 63
+ Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Fire,getrandomoptinfo(ROA_VALUE);
+ - Id: 64
+ Option: MDAMAGE_PROPERTY_WIND_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Wind,getrandomoptinfo(ROA_VALUE);
+ - Id: 65
+ Option: MDAMAGE_PROPERTY_WIND_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Wind,getrandomoptinfo(ROA_VALUE);
+ - Id: 66
+ Option: MDAMAGE_PROPERTY_POISON_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Poison,getrandomoptinfo(ROA_VALUE);
+ - Id: 67
+ Option: MDAMAGE_PROPERTY_POISON_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Poison,getrandomoptinfo(ROA_VALUE);
+ - Id: 68
+ Option: MDAMAGE_PROPERTY_SAINT_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Holy,getrandomoptinfo(ROA_VALUE);
+ - Id: 69
+ Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Holy,getrandomoptinfo(ROA_VALUE);
+ - Id: 70
+ Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Dark,getrandomoptinfo(ROA_VALUE);
+ - Id: 71
+ Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Dark,getrandomoptinfo(ROA_VALUE);
+ - Id: 72
+ Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE);
+ - Id: 73
+ Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Ghost,getrandomoptinfo(ROA_VALUE);
+ - Id: 74
+ Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ Script: |
+ bonus2 bMagicSubDefEle,Ele_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 75
+ Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ Script: |
+ bonus2 bMagicAddEle,Ele_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 76
+ Option: BODY_ATTR_NOTHING
+ Script: |
+ bonus bDefEle,Ele_Neutral;
+ - Id: 77
+ Option: BODY_ATTR_WATER
+ Script: |
+ bonus bDefEle,Ele_Water;
+ - Id: 78
+ Option: BODY_ATTR_GROUND
+ Script: |
+ bonus bDefEle,Ele_Earth;
+ - Id: 79
+ Option: BODY_ATTR_FIRE
+ Script: |
+ bonus bDefEle,Ele_Fire;
+ - Id: 80
+ Option: BODY_ATTR_WIND
+ Script: |
+ bonus bDefEle,Ele_Wind;
+ - Id: 81
+ Option: BODY_ATTR_POISON
+ Script: |
+ bonus bDefEle,Ele_Poison;
+ - Id: 82
+ Option: BODY_ATTR_SAINT
+ Script: |
+ bonus bDefEle,Ele_Holy;
+ - Id: 83
+ Option: BODY_ATTR_DARKNESS
+ Script: |
+ bonus bDefEle,Ele_Dark;
+ - Id: 84
+ Option: BODY_ATTR_TELEKINESIS
+ Script: |
+ bonus bDefEle,Ele_Ghost;
+ - Id: 85
+ Option: BODY_ATTR_UNDEAD
+ Script: |
+ bonus bDefEle,Ele_Undead;
+ - Id: 87
+ Option: RACE_TOLERACE_NOTHING
+ Script: |
+ bonus2 bSubRace,RC_Formless,getrandomoptinfo(ROA_VALUE);
+ - Id: 88
+ Option: RACE_TOLERACE_UNDEAD
+ Script: |
+ bonus2 bSubRace,RC_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 89
+ Option: RACE_TOLERACE_ANIMAL
+ Script: |
+ bonus2 bSubRace,RC_Brute,getrandomoptinfo(ROA_VALUE);
+ - Id: 90
+ Option: RACE_TOLERACE_PLANT
+ Script: |
+ bonus2 bSubRace,RC_Plant,getrandomoptinfo(ROA_VALUE);
+ - Id: 91
+ Option: RACE_TOLERACE_INSECT
+ Script: |
+ bonus2 bSubRace,RC_Insect,getrandomoptinfo(ROA_VALUE);
+ - Id: 92
+ Option: RACE_TOLERACE_FISHS
+ Script: |
+ bonus2 bSubRace,RC_Fish,getrandomoptinfo(ROA_VALUE);
+ - Id: 93
+ Option: RACE_TOLERACE_DEVIL
+ Script: |
+ bonus2 bSubRace,RC_Demon,getrandomoptinfo(ROA_VALUE);
+ - Id: 94
+ Option: RACE_TOLERACE_HUMAN
+ Script: |
+ bonus2 bSubRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE);
+ - Id: 95
+ Option: RACE_TOLERACE_ANGEL
+ Script: |
+ bonus2 bSubRace,RC_Angel,getrandomoptinfo(ROA_VALUE);
+ - Id: 96
+ Option: RACE_TOLERACE_DRAGON
+ Script: |
+ bonus2 bSubRace,RC_Dragon,getrandomoptinfo(ROA_VALUE);
+ - Id: 97
+ Option: RACE_DAMAGE_NOTHING
+ Script: |
+ bonus2 bAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE);
+ - Id: 98
+ Option: RACE_DAMAGE_UNDEAD
+ Script: |
+ bonus2 bAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 99
+ Option: RACE_DAMAGE_ANIMAL
+ Script: |
+ bonus2 bAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE);
+ - Id: 100
+ Option: RACE_DAMAGE_PLANT
+ Script: |
+ bonus2 bAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE);
+ - Id: 101
+ Option: RACE_DAMAGE_INSECT
+ Script: |
+ bonus2 bAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE);
+ - Id: 102
+ Option: RACE_DAMAGE_FISHS
+ Script: |
+ bonus2 bAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE);
+ - Id: 103
+ Option: RACE_DAMAGE_DEVIL
+ Script: |
+ bonus2 bAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE);
+ - Id: 104
+ Option: RACE_DAMAGE_HUMAN
+ Script: |
+ bonus2 bAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE);
+ - Id: 105
+ Option: RACE_DAMAGE_ANGEL
+ Script: |
+ bonus2 bAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE);
+ - Id: 106
+ Option: RACE_DAMAGE_DRAGON
+ Script: |
+ bonus2 bAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE);
+ - Id: 107
+ Option: RACE_MDAMAGE_NOTHING
+ Script: |
+ bonus2 bMagicAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE);
+ - Id: 108
+ Option: RACE_MDAMAGE_UNDEAD
+ Script: |
+ bonus2 bMagicAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 109
+ Option: RACE_MDAMAGE_ANIMAL
+ Script: |
+ bonus2 bMagicAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE);
+ - Id: 110
+ Option: RACE_MDAMAGE_PLANT
+ Script: |
+ bonus2 bMagicAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE);
+ - Id: 111
+ Option: RACE_MDAMAGE_INSECT
+ Script: |
+ bonus2 bMagicAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE);
+ - Id: 112
+ Option: RACE_MDAMAGE_FISHS
+ Script: |
+ bonus2 bMagicAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE);
+ - Id: 113
+ Option: RACE_MDAMAGE_DEVIL
+ Script: |
+ bonus2 bMagicAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE);
+ - Id: 114
+ Option: RACE_MDAMAGE_HUMAN
+ Script: |
+ bonus2 bMagicAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE);
+ - Id: 115
+ Option: RACE_MDAMAGE_ANGEL
+ Script: |
+ bonus2 bMagicAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE);
+ - Id: 116
+ Option: RACE_MDAMAGE_DRAGON
+ Script: |
+ bonus2 bMagicAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE);
+ - Id: 117
+ Option: RACE_CRI_PERCENT_NOTHING
+ Script: |
+ bonus2 bCriticalAddRace,RC_Formless,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 118
+ Option: RACE_CRI_PERCENT_UNDEAD
+ Script: |
+ bonus2 bCriticalAddRace,RC_Undead,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 119
+ Option: RACE_CRI_PERCENT_ANIMAL
+ Script: |
+ bonus2 bCriticalAddRace,RC_Brute,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 120
+ Option: RACE_CRI_PERCENT_PLANT
+ Script: |
+ bonus2 bCriticalAddRace,RC_Plant,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 121
+ Option: RACE_CRI_PERCENT_INSECT
+ Script: |
+ bonus2 bCriticalAddRace,RC_Insect,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 122
+ Option: RACE_CRI_PERCENT_FISHS
+ Script: |
+ bonus2 bCriticalAddRace,RC_Fish,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 123
+ Option: RACE_CRI_PERCENT_DEVIL
+ Script: |
+ bonus2 bCriticalAddRace,RC_Demon,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 124
+ Option: RACE_CRI_PERCENT_HUMAN
+ Script: |
+ bonus2 bCriticalAddRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 125
+ Option: RACE_CRI_PERCENT_ANGEL
+ Script: |
+ bonus2 bCriticalAddRace,RC_Angel,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 126
+ Option: RACE_CRI_PERCENT_DRAGON
+ Script: |
+ bonus2 bCriticalAddRace,RC_Dragon,getrandomoptinfo(ROA_VALUE)/10;
+ - Id: 127
+ Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Formless,getrandomoptinfo(ROA_VALUE);
+ - Id: 128
+ Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 129
+ Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Brute,getrandomoptinfo(ROA_VALUE);
+ - Id: 130
+ Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Plant,getrandomoptinfo(ROA_VALUE);
+ - Id: 131
+ Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Insect,getrandomoptinfo(ROA_VALUE);
+ - Id: 132
+ Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Fish,getrandomoptinfo(ROA_VALUE);
+ - Id: 133
+ Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Demon,getrandomoptinfo(ROA_VALUE);
+ - Id: 134
+ Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,getrandomoptinfo(ROA_VALUE);
+ - Id: 135
+ Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Angel,getrandomoptinfo(ROA_VALUE);
+ - Id: 136
+ Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Dragon,getrandomoptinfo(ROA_VALUE);
+ - Id: 137
+ Option: RACE_IGNORE_MDEF_PERCENT_NOTHING
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Formless,getrandomoptinfo(ROA_VALUE);
+ - Id: 138
+ Option: RACE_IGNORE_MDEF_PERCENT_UNDEAD
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Undead,getrandomoptinfo(ROA_VALUE);
+ - Id: 139
+ Option: RACE_IGNORE_MDEF_PERCENT_ANIMAL
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Brute,getrandomoptinfo(ROA_VALUE);
+ - Id: 140
+ Option: RACE_IGNORE_MDEF_PERCENT_PLANT
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Plant,getrandomoptinfo(ROA_VALUE);
+ - Id: 141
+ Option: RACE_IGNORE_MDEF_PERCENT_INSECT
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Insect,getrandomoptinfo(ROA_VALUE);
+ - Id: 142
+ Option: RACE_IGNORE_MDEF_PERCENT_FISHS
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Fish,getrandomoptinfo(ROA_VALUE);
+ - Id: 143
+ Option: RACE_IGNORE_MDEF_PERCENT_DEVIL
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Demon,getrandomoptinfo(ROA_VALUE);
+ - Id: 144
+ Option: RACE_IGNORE_MDEF_PERCENT_HUMAN
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,getrandomoptinfo(ROA_VALUE);
+ - Id: 145
+ Option: RACE_IGNORE_MDEF_PERCENT_ANGEL
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Angel,getrandomoptinfo(ROA_VALUE);
+ - Id: 146
+ Option: RACE_IGNORE_MDEF_PERCENT_DRAGON
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Dragon,getrandomoptinfo(ROA_VALUE);
+ - Id: 147
+ Option: CLASS_DAMAGE_NORMAL_TARGET
+ Script: |
+ bonus2 bAddClass,Class_Normal,getrandomoptinfo(ROA_VALUE);
+ - Id: 148
+ Option: CLASS_DAMAGE_BOSS_TARGET
+ Script: |
+ bonus2 bAddClass,Class_Boss,getrandomoptinfo(ROA_VALUE);
+ - Id: 149
+ Option: CLASS_DAMAGE_NORMAL_USER
+ Script: |
+ bonus2 bSubClass,Class_Normal,getrandomoptinfo(ROA_VALUE);
+ - Id: 150
+ Option: CLASS_DAMAGE_BOSS_USER
+ Script: |
+ bonus2 bSubClass,Class_Boss,getrandomoptinfo(ROA_VALUE);
+ - Id: 151
+ Option: CLASS_MDAMAGE_NORMAL
+ Script: |
+ bonus2 bMagicAddClass,Class_Normal,getrandomoptinfo(ROA_VALUE);
+ - Id: 152
+ Option: CLASS_MDAMAGE_BOSS
+ Script: |
+ bonus2 bMagicAddClass,Class_Boss,getrandomoptinfo(ROA_VALUE);
+ - Id: 153
+ Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ Script: |
+ bonus2 bIgnoreDefClassRate,Class_Normal,getrandomoptinfo(ROA_VALUE);
+ - Id: 154
+ Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ Script: |
+ bonus2 bIgnoreDefClassRate,Class_Boss,getrandomoptinfo(ROA_VALUE);
+ - Id: 155
+ Option: CLASS_IGNORE_MDEF_PERCENT_NORMAL
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Normal,getrandomoptinfo(ROA_VALUE);
+ - Id: 156
+ Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ Script: |
+ bonus2 bIgnoreMdefClassRate,Class_Boss,getrandomoptinfo(ROA_VALUE);
+ - Id: 157
+ Option: DAMAGE_SIZE_SMALL_TARGET
+ Script: |
+ bonus2 bAddSize,Size_Small,getrandomoptinfo(ROA_VALUE);
+ - Id: 158
+ Option: DAMAGE_SIZE_MIDIUM_TARGET
+ Script: |
+ bonus2 bAddSize,Size_Medium,getrandomoptinfo(ROA_VALUE);
+ - Id: 159
+ Option: DAMAGE_SIZE_LARGE_TARGET
+ Script: |
+ bonus2 bAddSize,Size_Large,getrandomoptinfo(ROA_VALUE);
+ - Id: 160
+ Option: DAMAGE_SIZE_SMALL_USER
+ Script: |
+ bonus2 bSubSize,Size_Small,getrandomoptinfo(ROA_VALUE);
+ - Id: 161
+ Option: DAMAGE_SIZE_MIDIUM_USER
+ Script: |
+ bonus2 bSubSize,Size_Medium,getrandomoptinfo(ROA_VALUE);
+ - Id: 162
+ Option: DAMAGE_SIZE_LARGE_USER
+ Script: |
+ bonus2 bSubSize,Size_Large,getrandomoptinfo(ROA_VALUE);
+ - Id: 163
+ Option: DAMAGE_SIZE_PERFECT
+ Script: |
+ bonus bNoSizeFix,1;
+ - Id: 164
+ Option: DAMAGE_CRI_TARGET
+ Script: |
+ bonus bCritAtkRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 165
+ Option: DAMAGE_CRI_USER
+ Script: |
+ bonus bCritDefRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 166
+ Option: RANGE_ATTACK_DAMAGE_TARGET
+ Script: |
+ bonus bLongAtkRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 167
+ Option: RANGE_ATTACK_DAMAGE_USER
+ Script: |
+ bonus bLongAtkDef,getrandomoptinfo(ROA_VALUE);
+ - Id: 168
+ Option: HEAL_VALUE
+ Script: |
+ bonus bHealPower,getrandomoptinfo(ROA_VALUE);
+ - Id: 169
+ Option: HEAL_MODIFY_PERCENT
+ Script: |
+ bonus bHealPower2,getrandomoptinfo(ROA_VALUE);
+ - Id: 170
+ Option: DEC_SPELL_CAST_TIME
+ Script: |
+ bonus bVariableCastrate,-(getrandomoptinfo(ROA_VALUE));
+ - Id: 171
+ Option: DEC_SPELL_DELAY_TIME
+ Script: |
+ bonus bDelayrate,-(getrandomoptinfo(ROA_VALUE));
+ - Id: 172
+ Option: DEC_SP_CONSUMPTION
+ Script: |
+ bonus bUseSPrate,-(getrandomoptinfo(ROA_VALUE));
+ - Id: 175
+ Option: WEAPON_ATTR_NOTHING
+ Script: |
+ bonus bAtkEle,Ele_Neutral;
+ - Id: 176
+ Option: WEAPON_ATTR_WATER
+ Script: |
+ bonus bAtkEle,Ele_Water;
+ - Id: 177
+ Option: WEAPON_ATTR_GROUND
+ Script: |
+ bonus bAtkEle,Ele_Earth;
+ - Id: 178
+ Option: WEAPON_ATTR_FIRE
+ Script: |
+ bonus bAtkEle,Ele_Fire;
+ - Id: 179
+ Option: WEAPON_ATTR_WIND
+ Script: |
+ bonus bAtkEle,Ele_Wind;
+ - Id: 180
+ Option: WEAPON_ATTR_POISON
+ Script: |
+ bonus bAtkEle,Ele_Poison;
+ - Id: 181
+ Option: WEAPON_ATTR_SAINT
+ Script: |
+ bonus bAtkEle,Ele_Holy;
+ - Id: 182
+ Option: WEAPON_ATTR_DARKNESS
+ Script: |
+ bonus bAtkEle,Ele_Dark;
+ - Id: 183
+ Option: WEAPON_ATTR_TELEKINESIS
+ Script: |
+ bonus bAtkEle,Ele_Ghost;
+ - Id: 184
+ Option: WEAPON_ATTR_UNDEAD
+ Script: |
+ bonus bAtkEle,Ele_Undead;
+ - Id: 185
+ Option: WEAPON_INDESTRUCTIBLE
+ Script: |
+ bonus bUnbreakableWeapon,1;
+ - Id: 186
+ Option: BODY_INDESTRUCTIBLE
+ Script: |
+ bonus bUnbreakableArmor,1;
+ - Id: 187
+ Option: MDAMAGE_SIZE_SMALL_TARGET
+ Script: |
+ bonus2 bMagicAddSize,Size_Small,getrandomoptinfo(ROA_VALUE);
+ - Id: 188
+ Option: MDAMAGE_SIZE_MIDIUM_TARGET
+ Script: |
+ bonus2 bMagicAddSize,Size_Medium,getrandomoptinfo(ROA_VALUE);
+ - Id: 189
+ Option: MDAMAGE_SIZE_LARGE_TARGET
+ Script: |
+ bonus2 bMagicAddSize,Size_Large,getrandomoptinfo(ROA_VALUE);
+ - Id: 190
+ Option: MDAMAGE_SIZE_SMALL_USER
+ Script: |
+ bonus2 bMagicSubSize,Size_Small,getrandomoptinfo(ROA_VALUE);
+ - Id: 191
+ Option: MDAMAGE_SIZE_MIDIUM_USER
+ Script: |
+ bonus2 bMagicSubSize,Size_Medium,getrandomoptinfo(ROA_VALUE);
+ - Id: 192
+ Option: MDAMAGE_SIZE_LARGE_USER
+ Script: |
+ bonus2 bMagicSubSize,Size_Large,getrandomoptinfo(ROA_VALUE);
+ - Id: 193
+ Option: ATTR_TOLERACE_ALL
+ Script: |
+ bonus2 bSubEle,Ele_All,getrandomoptinfo(ROA_VALUE);
+ - Id: 194
+ Option: RACE_WEAPON_TOLERACE_NOTHING
+ Script: |
+ bonus3 bSubRace,RC_Formless,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 195
+ Option: RACE_WEAPON_TOLERACE_UNDEAD
+ Script: |
+ bonus3 bSubRace,RC_Undead,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 196
+ Option: RACE_WEAPON_TOLERACE_ANIMAL
+ Script: |
+ bonus3 bSubRace,RC_Brute,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 197
+ Option: RACE_WEAPON_TOLERACE_PLANT
+ Script: |
+ bonus3 bSubRace,RC_Plant,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 198
+ Option: RACE_WEAPON_TOLERACE_INSECT
+ Script: |
+ bonus3 bSubRace,RC_Insect,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 199
+ Option: RACE_WEAPON_TOLERACE_FISHS
+ Script: |
+ bonus3 bSubRace,RC_Fish,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 200
+ Option: RACE_WEAPON_TOLERACE_DEVIL
+ Script: |
+ bonus3 bSubRace,RC_Demon,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 201
+ Option: RACE_WEAPON_TOLERACE_HUMAN
+ Script: |
+ bonus3 bSubRace,RC_DemiHuman,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 202
+ Option: RACE_WEAPON_TOLERACE_ANGEL
+ Script: |
+ bonus3 bSubRace,RC_Angel,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 203
+ Option: RACE_WEAPON_TOLERACE_DRAGON
+ Script: |
+ bonus3 bSubRace,RC_Dragon,getrandomoptinfo(ROA_VALUE),BF_WEAPON;
+ - Id: 206
+ Option: RACE_TOLERACE_PLAYER_HUMAN
+ Script: |
+ bonus2 bSubRace,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 207
+ Option: RACE_TOLERACE_PLAYER_DORAM
+ Script: |
+ bonus2 bSubRace,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 208
+ Option: RACE_DAMAGE_PLAYER_HUMAN
+ Script: |
+ bonus2 bAddRace,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 209
+ Option: RACE_DAMAGE_PLAYER_DORAM
+ Script: |
+ bonus2 bAddRace,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 210
+ Option: RACE_MDAMAGE_PLAYER_HUMAN
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 211
+ Option: RACE_MDAMAGE_PLAYER_DORAM
+ Script: |
+ bonus2 bMagicAddRace,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 212
+ Option: RACE_CRI_PERCENT_PLAYER_HUMAN
+ Script: |
+ bonus2 bCriticalAddRace,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 213
+ Option: RACE_CRI_PERCENT_PLAYER_DORAM
+ Script: |
+ bonus2 bCriticalAddRace,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 214
+ Option: RACE_IGNORE_DEF_PERCENT_PLAYER_HUMAN
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 215
+ Option: RACE_IGNORE_DEF_PERCENT_PLAYER_DORAM
+ Script: |
+ bonus2 bIgnoreDefRaceRate,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 216
+ Option: RACE_IGNORE_MDEF_PERCENT_PLAYER_HUMAN
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Human,getrandomoptinfo(ROA_VALUE);
+ - Id: 217
+ Option: RACE_IGNORE_MDEF_PERCENT_PLAYER_DORAM
+ Script: |
+ bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,getrandomoptinfo(ROA_VALUE);
+ - Id: 219
+ Option: MELEE_ATTACK_DAMAGE_TARGET
+ Script: |
+ bonus bShortAtkRate,getrandomoptinfo(ROA_VALUE);
+ - Id: 220
+ Option: MELEE_ATTACK_DAMAGE_USER
+ Script: |
+ bonus bNearAtkDef,getrandomoptinfo(ROA_VALUE);
diff --git a/db/re/item_randomopt_group.txt b/db/re/item_randomopt_group.txt
deleted file mode 100644
index 6d9b9929ab..0000000000
--- a/db/re/item_randomopt_group.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-// ,,,,{,,,,,,,,,,,,}
-
-// Crimson Weapon
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_NOTHING,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_WATER,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_GROUND,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_FIRE,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_WIND,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_SAINT,0,0
-RDMOPTG_Crimson_Weapon,1,RDMOPT_WEAPON_ATTR_DARKNESS,0,0
diff --git a/db/re/item_randomopt_group.yml b/db/re/item_randomopt_group.yml
new file mode 100644
index 0000000000..09932978a4
--- /dev/null
+++ b/db/re/item_randomopt_group.yml
@@ -0,0 +1,7456 @@
+# This file is a part of rAthena.
+# Copyright(C) 2021 rAthena Development Team
+# https://rathena.org - https://github.com/rathena
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+#
+###########################################################################
+# Item Random Option Group Database
+###########################################################################
+#
+# Item Random Option Group Settings
+#
+###########################################################################
+# - Id Item Random Option Group ID.
+# Group Item Random Option Group constant.
+# Slots: Slot in which an Item Random Option is guaranteed to be applied. Max of MAX_ITEM_RDM_OPT.
+# - Slot Slot number.
+# Options: List of possible Item Random Options for slot.
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+# MaxRandom Maximum amount of random options applied. These options are not guaranteed to be applied. Max of (MAX_ITEM_RDM_OPT - Total 'Slots'). (Default: 0)
+# Random: List of possible Item Random Options for remaining slots. (Optional)
+# - Option Item Random Option constant.
+# MinValue Minimum value. (Default: 0)
+# MaxValue Maximum value. (Default: 0)
+# Param Parameter value. (Default: 0)
+# Chance Chance applied specifically to this Item Random Option (1 = 0.01%, 10000 = 100%). (Default: 0)
+###########################################################################
+
+Header:
+ Type: RANDOM_OPTION_GROUP
+ Version: 1
+
+Body:
+ - Id: 1
+ Group: Group_1
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ MaxRandom: 0 # These are listed but the group only has 1 slot max
+ Random:
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 50
+ MaxValue: 100
+ Chance: 5000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 10
+ MaxValue: 50
+ Chance: 5000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 5000
+ - Option: VAR_HPACCELERATION
+ MinValue: 10
+ MaxValue: 50
+ Chance: 5000
+ - Option: VAR_SPACCELERATION
+ MinValue: 10
+ MaxValue: 50
+ Chance: 5000
+ - Option: VAR_ATKPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5000
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_MDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Id: 2
+ Group: Group_2
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ MaxRandom: 1
+ Random:
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Id: 3
+ Group: Group_3
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ MaxRandom: 2
+ Random:
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Id: 4
+ Group: Group_4
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ MaxRandom: 3
+ Random:
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 5000
+ - Id: 5
+ Group: Group_5
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: WEAPON_ATTR_NOTHING
+ Chance: 2000
+ - Option: WEAPON_ATTR_WATER
+ Chance: 2000
+ - Option: WEAPON_ATTR_GROUND
+ Chance: 2000
+ - Option: WEAPON_ATTR_FIRE
+ Chance: 2000
+ - Option: WEAPON_ATTR_WIND
+ Chance: 2000
+ - Option: WEAPON_ATTR_SAINT
+ Chance: 1000
+ - Option: WEAPON_ATTR_DARKNESS
+ Chance: 1000
+ - Id: 6
+ Group: Group_6
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Slot: 2
+ Options:
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Slot: 3
+ Options:
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Slot: 4
+ Options:
+ - Option: BODY_ATTR_WATER
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: BODY_ATTR_TELEKINESIS
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ MaxRandom: 1
+ Random:
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 10
+ MaxValue: 20
+ Chance: 2000
+ - Id: 7
+ Group: AS_WEAPON_1 # Staff
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: HEAL_VALUE
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 900
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 6
+ MaxValue: 10
+ Chance: 900
+ - Slot: 2
+ Options:
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: CLASS_MDAMAGE_NORMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_NOTHING
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_UNDEAD
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANIMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_PLANT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_INSECT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_FISHS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANGEL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_DRAGON
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_MDEF_PERCENT_DEVIL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: RACE_IGNORE_MDEF_PERCENT_HUMAN
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: CLASS_IGNORE_MDEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Slot: 3
+ Options:
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 15
+ Chance: 900
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 10
+ Chance: 900
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 1
+ MaxValue: 5
+ Chance: 900
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 16
+ MaxValue: 20
+ Chance: 100
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 11
+ MaxValue: 15
+ Chance: 100
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 6
+ MaxValue: 10
+ Chance: 100
+ - Id: 8
+ Group: AS_WEAPON_2 # Bow, Pistol, Instrument, Whip
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 900
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: WEAPON_INDESTRUCTIBLE
+ Chance: 300
+ - Option: DAMAGE_SIZE_PERFECT
+ Chance: 200
+ - Option: VAR_ATKPERCENT
+ MinValue: 6
+ MaxValue: 10
+ Chance: 100
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Slot: 3
+ Options:
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1000
+ - Option: DAMAGE_CRI_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 400
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 15
+ Chance: 400
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 16
+ MaxValue: 20
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 9
+ Group: AS_WEAPON_3 # 1H Sword, Mace, Axe
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: WEAPON_ATTR_WATER
+ Chance: 500
+ - Option: WEAPON_ATTR_GROUND
+ Chance: 500
+ - Option: WEAPON_ATTR_FIRE
+ Chance: 500
+ - Option: WEAPON_ATTR_WIND
+ Chance: 500
+ - Option: WEAPON_ATTR_DARKNESS
+ Chance: 300
+ - Option: WEAPON_ATTR_SAINT
+ Chance: 100
+ - Option: VAR_ATKPERCENT
+ MinValue: 6
+ MaxValue: 10
+ Chance: 100
+ - Option: DAMAGE_SIZE_PERFECT
+ Chance: 100
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Slot: 3
+ Options:
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1000
+ - Option: DAMAGE_CRI_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 400
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 15
+ Chance: 400
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 15
+ MaxValue: 20
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 10
+ Group: AS_WEAPON_4 # Daggers, Books, Huuma
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: WEAPON_ATTR_WATER
+ Chance: 500
+ - Option: WEAPON_ATTR_GROUND
+ Chance: 500
+ - Option: WEAPON_ATTR_FIRE
+ Chance: 500
+ - Option: WEAPON_ATTR_WIND
+ Chance: 500
+ - Option: WEAPON_ATTR_DARKNESS
+ Chance: 300
+ - Option: WEAPON_ATTR_SAINT
+ Chance: 100
+ - Option: VAR_ATKPERCENT
+ MinValue: 6
+ MaxValue: 10
+ Chance: 100
+ - Option: DAMAGE_SIZE_PERFECT
+ Chance: 100
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Slot: 3
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 15
+ Chance: 500
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 10
+ Chance: 500
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 400
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 11
+ Group: AS_WEAPON_5 # One-handed spear, Two-handed spear, Two-handed sword, Katar, Knuckle
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 700
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: WEAPON_ATTR_WATER
+ Chance: 500
+ - Option: WEAPON_ATTR_GROUND
+ Chance: 500
+ - Option: WEAPON_ATTR_FIRE
+ Chance: 500
+ - Option: WEAPON_ATTR_WIND
+ Chance: 500
+ - Option: WEAPON_ATTR_DARKNESS
+ Chance: 200
+ - Option: WEAPON_ATTR_SAINT
+ Chance: 100
+ - Option: VAR_ATKPERCENT
+ MinValue: 6
+ MaxValue: 10
+ Chance: 100
+ - Option: WEAPON_INDESTRUCTIBLE
+ Chance: 100
+ - Option: DAMAGE_SIZE_PERFECT
+ Chance: 100
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 400
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 100
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 1
+ MaxValue: 30
+ Chance: 500
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 1
+ MaxValue: 30
+ Chance: 400
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 30
+ Chance: 100
+ - Slot: 3
+ Options:
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 2500
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 2000
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1000
+ - Option: DAMAGE_CRI_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 400
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 400
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 12
+ Group: BEARERS_S2_ATT
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 400
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 50
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 700
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 400
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 700
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 500
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 300
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 500
+ - Slot: 2
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 100
+ MaxRandom: 1
+ Random:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 26
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 26
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 21
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 21
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 9
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 9
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 21
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 6
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 26
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 31
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 31
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 11
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 9
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 6
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 15
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 15
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 7
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 15
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 5
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Id: 13
+ Group: ALLMIGHTY_S_ATT
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 400
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 750
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 700
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 50
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 700
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 400
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 700
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 500
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 300
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 500
+ - Slot: 2
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 10000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 36
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 26
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 26
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 21
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 21
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 9
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 9
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 21
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 6
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 26
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 26
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 31
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 31
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 11
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 9
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 6
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 15
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 15
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 7
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 15
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 5
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Id: 14
+ Group: Bloody_Knight_Shield
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_MDEFPOWER
+ MinValue: 3
+ MaxValue: 10
+ Chance: 10000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 20
+ MaxValue: 200
+ Chance: 10000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 100
+ MaxValue: 1000
+ Chance: 10000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 100
+ Chance: 10000
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10000
+ - Slot: 2
+ Options:
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10000
+ - Option: VAR_MDEFPOWER
+ MinValue: 3
+ MaxValue: 10
+ Chance: 10000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 20
+ MaxValue: 200
+ Chance: 10000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 100
+ MaxValue: 1000
+ Chance: 10000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 100
+ Chance: 10000
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Id: 15
+ Group: Sacred_Knight_Shield
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_MDEFPOWER
+ MinValue: 3
+ MaxValue: 10
+ Chance: 10000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 20
+ MaxValue: 200
+ Chance: 10000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 100
+ MaxValue: 1000
+ Chance: 10000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 100
+ Chance: 10000
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10000
+ - Slot: 2
+ Options:
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10000
+ - Option: VAR_MDEFPOWER
+ MinValue: 3
+ MaxValue: 10
+ Chance: 10000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 20
+ MaxValue: 200
+ Chance: 10000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 100
+ MaxValue: 1000
+ Chance: 10000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 100
+ Chance: 10000
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 2
+ MaxValue: 7
+ Chance: 2000
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 5
+ Chance: 2000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 10000
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_UNDEAD
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_PLANT
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_NOTHING
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_INSECT
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_HUMAN
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_FISHS
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_DRAGON
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_DEVIL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANIMAL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANGEL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 30
+ MaxValue: 60
+ Chance: 10000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10000
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10000
+ - Option: DAMAGE_SIZE_PERFECT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 2000
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 30
+ MaxValue: 60
+ Chance: 4000
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 30
+ MaxValue: 60
+ Chance: 4000
+ - Id: 16
+ Group: RTC_ALL_BOX # Taiwan RTC Event Box PENE
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 2500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_VITAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_INTAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_MDEFPOWER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 3
+ Chance: 10
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Id: 17
+ Group: RTC_ATK_BOX # Taiwan RTC Event Box ATK
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 3
+ MaxValue: 7
+ Chance: 3300
+ - Option: RACE_CRI_PERCENT_NOTHING
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_UNDEAD
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_ANIMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_PLANT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_INSECT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_FISHS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_DEVIL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_HUMAN
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_ANGEL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Option: RACE_CRI_PERCENT_DRAGON
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3400
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_VITAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_INTAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_MDEFPOWER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 3
+ Chance: 10
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Id: 18
+ Group: RTC_DEF_BOX # Taiwan RTC Event Box DEF
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 8
+ MaxValue: 12
+ Chance: 5300
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5300
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5300
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5300
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 3
+ MaxValue: 7
+ Chance: 5200
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_VITAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_INTAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_MDEFPOWER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 3
+ Chance: 10
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Id: 19
+ Group: RTC_PENE_BOX # Taiwan RTC Event Box PENE
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: RACE_IGNORE_DEF_PERCENT_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_UNDEAD
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_ANIMAL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_INSECT
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_FISHS
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_DEVIL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_HUMAN
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_ANGEL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_DEF_PERCENT_DRAGON
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_UNDEAD
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANIMAL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_PLANT
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_INSECT
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_FISHS
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_DEVIL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_HUMAN
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_ANGEL
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Option: RACE_IGNORE_MDEF_PERCENT_DRAGON
+ MinValue: 10
+ MaxValue: 15
+ Chance: 5000
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_VITAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_INTAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 500
+ MaxValue: 1000
+ Chance: 5000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 4000
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 50
+ Chance: 4000
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 5000
+ - Option: VAR_MDEFPOWER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 3
+ Chance: 10
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 10
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 10
+ MaxValue: 15
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 10
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 10
+ - Id: 20
+ Group: ATT_S # Shadow Property Box
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 3
+ MaxValue: 4
+ Chance: 4600
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 4
+ MaxValue: 6
+ Chance: 4600
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 4
+ MaxValue: 6
+ Chance: 4600
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 4
+ MaxValue: 6
+ Chance: 4600
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 4
+ MaxValue: 6
+ Chance: 4600
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4600
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4600
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4600
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4600
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4600
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 8
+ Chance: 4500
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4500
+ # Rand (1)
+ - Option: VAR_ATKPERCENT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_STRAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_VITAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_INTAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_DEXAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_LUKAMOUNT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 3600
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 8
+ Chance: 3600
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 3600
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 20
+ Chance: 3600
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 3600
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: HEAL_VALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3600
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3600
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3600
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3500
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3500
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3500
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 3
+ MaxValue: 5
+ Chance: 3500
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 20
+ Chance: 3500
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 5
+ Chance: 3500
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3500
+ - Option: CLASS_IGNORE_MDEF_PERCENT_NORMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3500
+ - Id: 21
+ Group: ATT_S2
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4000
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4000
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3000
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 500
+ - Slot: 2
+ Options:
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ MaxRandom: 1
+ Random:
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 13
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 12
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 13
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 12
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 25
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 25
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 25
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 26
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 13
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 13
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 13
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 13
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 13
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 13
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 9
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 9
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 8
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 26
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 26
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 26
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 13
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 10
+ MaxValue: 10
+ Chance: 13
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 26
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 26
+ - Id: 22
+ Group: CHARLES_WEAPON_1 # Charleston Melee
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_CRI_TARGET
+ MinValue: 5
+ MaxValue: 20
+ Chance: 1500
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 15
+ Chance: 1500
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1500
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1000
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 1000
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 1000
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: WEAPON_ATTR_WATER
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_GROUND
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_FIRE
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_WIND
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_SAINT
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_DARKNESS
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: DAMAGE_SIZE_PERFECT
+ MinValue: 0
+ MaxValue: 0
+ Chance: 50
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 750
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 750
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 23
+ Group: CHARLES_WEAPON_2 # Charleston Ranged
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 15
+ Chance: 1500
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 1500
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 20
+ Chance: 1500
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 1000
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 1000
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 1
+ MaxValue: 20
+ Chance: 1000
+ - Option: WEAPON_ATTR_WATER
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_GROUND
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_FIRE
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_WIND
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_SAINT
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: WEAPON_ATTR_DARKNESS
+ MinValue: 0
+ MaxValue: 0
+ Chance: 500
+ - Option: DAMAGE_SIZE_PERFECT
+ MinValue: 0
+ MaxValue: 0
+ Chance: 50
+ - Slot: 2
+ Options:
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 20
+ Chance: 2000
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 750
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 750
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 100
+ - Id: 24
+ Group: S_CRIT
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4000
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5000
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 7000
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 7000
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3000
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Slot: 2
+ Options:
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ MaxRandom: 1
+ Random:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 25
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 15
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 25
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 15
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 5
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 20
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 7
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 25
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 17
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 13
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 10
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 30
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 30
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 10
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 8
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Id: 25
+ Group: TW_S1
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 4000
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7500
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 7000
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 7000
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 4000
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 7000
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 3000
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 5000
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 500
+ - Slot: 2
+ Options:
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4500
+ MaxRandom: 1
+ Random:
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 25
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 15
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 25
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 15
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 5
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 20
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 7
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 17
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 13
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 10
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 30
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 25
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 30
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 10
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 8
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 38
+ - Id: 26
+ Group: H_Anto_Range
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 4600
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 400
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 80
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 80
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 10
+ MaxValue: 20
+ Chance: 80
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 80
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Id: 27
+ Group: H_Anto_Melee
+ Slots:
+ - Slot: 1
+ Option:
+ - Option: VAR_ATTPOWER
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 400
+ MaxRandom: 1
+ Random:
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 80
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 80
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 10
+ MaxValue: 20
+ Chance: 80
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 80
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Id: 28
+ Group: H_Anto_Magic
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_ATTMPOWER
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: VAR_MDEFPOWER
+ MinValue: 1
+ MaxValue: 15
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 12
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 400
+ MaxRandom: 1
+ Random:
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 80
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 7
+ Chance: 100
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 80
+ - Option: CLASS_MDAMAGE_NORMAL
+ MinValue: 3
+ MaxValue: 7
+ Chance: 80
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: CLASS_IGNORE_MDEF_PERCENT_NORMAL
+ MinValue: 10
+ MaxValue: 20
+ Chance: 100 # TODO: '00'?
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 10
+ MaxValue: 30
+ Chance: 80
+ - Option: MDAMAGE_SIZE_SMALL_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: MDAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Option: MDAMAGE_SIZE_LARGE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 80
+ - Id: 29
+ Group: Anto_Range
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 15
+ Chance: 4600
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 400
+ MaxRandom: 1
+ Random:
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 5
+ MaxValue: 15
+ Chance: 50
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Id: 30
+ Group: Anto_Melee
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_ATTPOWER
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 5
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_DAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 100
+ MaxRandom: 1
+ Random:
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_DAMAGE_NORMAL_TARGET
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_DAMAGE_BOSS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_DEF_PERCENT_NORMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 5
+ MaxValue: 15
+ Chance: 50
+ - Option: DAMAGE_SIZE_SMALL_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: DAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: DAMAGE_SIZE_LARGE_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Id: 31
+ Group: Anto_Magic
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: VAR_ATTMPOWER
+ MinValue: 1
+ MaxValue: 20
+ Chance: 4600
+ - Option: VAR_MDEFPOWER
+ MinValue: 1
+ MaxValue: 15
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_NOTHING
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_UNDEAD
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_ANIMAL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_PLANT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_INSECT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_FISHS
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_DEVIL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_HUMAN
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_ANGEL
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Option: RACE_MDAMAGE_DRAGON
+ MinValue: 1
+ MaxValue: 10
+ Chance: 4500
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1600
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 1700
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 3
+ Chance: 100
+ MaxRandom: 1
+ Random:
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_MDAMAGE_NORMAL
+ MinValue: 3
+ MaxValue: 5
+ Chance: 50
+ - Option: CLASS_MDAMAGE_BOSS
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_MDEF_PERCENT_NORMAL
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 5
+ MaxValue: 15
+ Chance: 50
+ - Option: MDAMAGE_SIZE_SMALL_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: MDAMAGE_SIZE_MIDIUM_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Option: MDAMAGE_SIZE_LARGE_TARGET
+ MinValue: 3
+ MaxValue: 7
+ Chance: 50
+ - Id: 32
+ Group: BF_Att_Box_TW
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: DAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: DAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: DAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_NOTHING_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: MDAMAGE_PROPERTY_WATER_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_GROUND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_FIRE_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_WIND_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_POISON_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: MDAMAGE_PROPERTY_SAINT_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: MDAMAGE_PROPERTY_DARKNESS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 3000
+ - Option: MDAMAGE_PROPERTY_UNDEAD_TARGET
+ MinValue: 5
+ MaxValue: 10
+ Chance: 5000
+ - Slot: 2
+ Options:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 3
+ Chance: 8000
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 1
+ MaxValue: 1000
+ Chance: 4000
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 1
+ MaxValue: 1000
+ Chance: 4000
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 7000
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 7000
+ - Option: HEAL_VALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 6000
+ MaxRandom: 1
+ Random:
+ - Option: VAR_ATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 90
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 90
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 40
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 5
+ MaxValue: 10
+ Chance: 50
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 10
+ Chance: 90
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 30
+ Chance: 90
+ - Option: VAR_MDEFPOWER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 70
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 7
+ Chance: 40
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 5
+ MaxValue: 15
+ Chance: 40
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 5
+ MaxValue: 15
+ Chance: 40
+ - Option: DEC_SPELL_DELAY_TIME
+ MinValue: 1
+ MaxValue: 5
+ Chance: 10
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 5
+ MaxValue: 15
+ Chance: 50
+ - Option: CLASS_IGNORE_DEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 30
+ - Option: CLASS_IGNORE_MDEF_PERCENT_BOSS
+ MinValue: 1
+ MaxValue: 20
+ Chance: 30
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 5
+ MaxValue: 10
+ Chance: 40
+ - Id: 33
+ Group: Hasty_Box
+ Slots:
+ - Slot: 1
+ Options:
+ - Option: ATTR_TOLERACE_NOTHING
+ MinValue: 2
+ MaxValue: 3
+ Chance: 40
+ - Option: ATTR_TOLERACE_WATER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 75
+ - Option: ATTR_TOLERACE_GROUND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 75
+ - Option: ATTR_TOLERACE_FIRE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 75
+ - Option: ATTR_TOLERACE_WIND
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_POISON
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_SAINT
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_DARKNESS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_TELEKINESIS
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_UNDEAD
+ MinValue: 2
+ MaxValue: 3
+ Chance: 70
+ - Option: ATTR_TOLERACE_ALL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5
+ - Option: DAMAGE_SIZE_SMALL_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 70
+ - Option: DAMAGE_SIZE_MIDIUM_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 40
+ - Option: DAMAGE_SIZE_LARGE_USER
+ MinValue: 3
+ MaxValue: 5
+ Chance: 70
+ - Option: MDAMAGE_SIZE_SMALL_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 50
+ - Option: MDAMAGE_SIZE_MIDIUM_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 30
+ - Option: MDAMAGE_SIZE_LARGE_USER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 50
+ - Slot: 2
+ Options:
+ - Option: DAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: DAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_NOTHING_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WATER_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_GROUND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_FIRE_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_WIND_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_POISON_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_SAINT_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_DARKNESS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_TELEKINESIS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: MDAMAGE_PROPERTY_UNDEAD_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: CLASS_DAMAGE_NORMAL_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ - Option: CLASS_DAMAGE_BOSS_USER
+ MinValue: 1
+ MaxValue: 2
+ Chance: 4600
+ MaxRandom: 1
+ Random:
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 35
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 200
+ MaxValue: 200
+ Chance: 25
+ - Option: VAR_MAXHPAMOUNT
+ MinValue: 400
+ MaxValue: 400
+ Chance: 15
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 25
+ MaxValue: 25
+ Chance: 25
+ - Option: VAR_MAXSPAMOUNT
+ MinValue: 50
+ MaxValue: 50
+ Chance: 15
+ - Option: VAR_MAXHPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_MAXSPPERCENT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 20
+ - Option: VAR_HPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_SPACCELERATION
+ MinValue: 5
+ MaxValue: 10
+ Chance: 25
+ - Option: VAR_ATTPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATTMPOWER
+ MinValue: 5
+ MaxValue: 5
+ Chance: 10
+ - Option: VAR_ATTMPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 5
+ - Option: VAR_ATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_MAGICATKPERCENT
+ MinValue: 1
+ MaxValue: 1
+ Chance: 8
+ - Option: VAR_PLUSASPD
+ MinValue: 1
+ MaxValue: 1
+ Chance: 5
+ - Option: VAR_PLUSASPDPERCENT
+ MinValue: 3
+ MaxValue: 5
+ Chance: 20
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 5
+ MaxValue: 5
+ Chance: 11
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 10
+ MaxValue: 10
+ Chance: 7
+ - Option: VAR_AVOIDSUCCESSVALUE
+ MinValue: 3
+ MaxValue: 5
+ Chance: 30
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 10
+ MaxValue: 10
+ Chance: 17
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 20
+ MaxValue: 20
+ Chance: 13
+ - Option: VAR_ITEMDEFPOWER
+ MinValue: 30
+ MaxValue: 30
+ Chance: 10
+ - Option: VAR_MDEFPOWER
+ MinValue: 2
+ MaxValue: 3
+ Chance: 30
+ - Option: VAR_PLUSAVOIDSUCCESSVALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: VAR_CRITICALSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 2
+ Chance: 30
+ - Option: RANGE_ATTACK_DAMAGE_TARGET
+ MinValue: 1
+ MaxValue: 2
+ Chance: 3
+ - Option: HEAL_VALUE
+ MinValue: 2
+ MaxValue: 3
+ Chance: 10
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 5
+ MaxValue: 5
+ Chance: 8
+ - Option: HEAL_MODIFY_PERCENT
+ MinValue: 1
+ MaxValue: 10
+ Chance: 5
+ - Option: DEC_SPELL_CAST_TIME
+ MinValue: 1
+ MaxValue: 2
+ Chance: 5
+ - Option: DEC_SP_CONSUMPTION
+ MinValue: 2
+ MaxValue: 3
+ Chance: 2
+ - Option: RACE_TOLERACE_NOTHING
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_UNDEAD
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANIMAL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_PLANT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_INSECT
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_FISHS
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DEVIL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_HUMAN
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_ANGEL
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Option: RACE_TOLERACE_DRAGON
+ MinValue: 1
+ MaxValue: 2
+ Chance: 37
+ - Id: 99
+ Group: None
+ MaxRandom: 1
+ Random:
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 10
+ MaxValue: 50
+ Chance: 625
+ - Option: RACE_IGNORE_DEF_PERCENT_PLANT
+ MinValue: 10
+ MaxValue: 50
+ Chance: 625
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_AGIAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_DEXAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_HITSUCCESSVALUE
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_INTAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_LUKAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_STRAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
+ - Option: VAR_VITAMOUNT
+ MinValue: 1
+ MaxValue: 5
+ Chance: 625
diff --git a/db/re/item_stack.txt b/db/re/item_stack.txt
deleted file mode 100644
index 877bcb1454..0000000000
--- a/db/re/item_stack.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-// Item Stacking Restriction File
-// Prevents an item to be stacked more than x times in given
-// inventory types. Generally used by 3rd class related skill items.
-//
-// Structure of Database:
-// ItemID,MaxStackAmount,Type
-//
-// MaxStackAmount:
-// Stack limit for the item. Use 0 to disable a restriction.
-//
-// Type mask values:
-// &1: Character inventory restriction
-// &2: Character cart restriction
-// &4: Account storage restriction
-// &8: Guild storage restriction
-//
-// Example:
-// 512,4,12 // Will not allow more than 4 Apples in storages.
-
-// Rune Knight
-12725,60,1 // Nauthiz Rune
-12726,60,1 // Raido Rune
-12727,60,1 // Berkana Rune
-12728,60,1 // Isa Rune
-12730,60,1 // Uruz Rune
-12733,60,1 // Hagalaz Rune
-22540,60,1 // Lux Anima Rune
-
-// Arch Bishop
-12333,3,1 // Ancilla
diff --git a/db/re/item_trade.txt b/db/re/item_trade.txt
deleted file mode 100644
index 0ddf9c12ea..0000000000
--- a/db/re/item_trade.txt
+++ /dev/null
@@ -1,4806 +0,0 @@
-// Item Trade Restrictions Database
-// Defines special trade rules for individual items.
-//
-// Structure of Database:
-// Item ID, TradeMask,Group Level Override
-//
-// Legend for 'TradeMask' field (bitmask):
-// 1 - item can't be dropped
-// 2 - item can't be traded (nor vended)
-// 4 - wedded partner can override restriction 2
-// 8 - item can't be sold to npcs
-// 16 - item can't be placed in the cart
-// 32 - item can't be placed in the storage
-// 64 - item can't be placed in the guild storage
-// 128 - item can't be attached to mail
-// 256 - item can't be auctioned
-//
-// Example:
-// 1161,67,50
-// Balmung cannot be dropped, traded, or placed in Guild Storage (1+2+64).
-// Only groups of group-level 50 and up can override this setting.
-
-547,8,100 // White_Slim_Potion
-598,475,100 // Light_Red_Pot
-599,475,100 // Light_Orange_Pot
-603,8,100 // Old_Blue_Box
-617,8,100 // Old_Violet_Box
-671,507,100 // Gold_Coin
-675,507,100 // Silver_Coin
-744,1,100 // Bunch_Of_Flowers
-745,1,100 // Wedding_Bouquet
-1173,507,100 // Muramasa_C
-1174,507,100 // Executioner_C
-1177,475,100 // Muramash
-1183,499,100 // BF_Two_Handed_Sword1
-1184,499,100 // BF_Two_Handed_Sword2
-1187,499,100 // Krieger_Twohand_Sword1
-1190,507,100 // Claymore_C
-1192,499,100 // P_Slayer1
-1193,499,100 // P_Slayer2
-1197,499,100 // P_Slayer3
-1198,507,100 // Hairtail
-1243,499,100 // Novice_Knife
-1267,507,100 // Infiltrator_C
-1272,475,100 // Scratcher
-1273,507,100 // Bloody_Roar_C
-1274,507,100 // Unholy_Touch_C
-1279,499,100 // BF_Katar1
-1280,499,100 // BF_Katar2
-1281,499,100 // Krieger_Katar1
-1282,499,100 // Krieger_Katar2
-1283,507,100 // Katar_Of_Speed
-1286,507,100 // Jamadhar_C
-1288,507,100 // Bloody_Fear_C
-1289,499,100 // P_Katar1
-1292,1,100 // Upg_Katar
-1296,499,100 // Metal_Katar
-1299,499,100 // TE_Woe_Katar
-1310,499,100 // Krieger_Onehand_Axe1
-1312,507,100 // Orcish_Axe_C
-1313,499,100 // Tourist_Axe
-1319,499,100 // TE_Woe_Axe
-1372,507,100 // Right_Epsilon_C
-1373,507,100 // Brood_Axe_C
-1374,507,100 // Tomahawk_C
-1378,507,100 // Great_Axe_C
-1379,499,100 // BF_Two_Handed_Axe1
-1380,499,100 // BF_Two_Handed_Axe2
-1382,499,100 // Krieger_Twohand_Axe1
-1386,507,100 // Doom_Slayer_I
-1388,507,100 // Two_Handed_Axe_C
-1391,499,100 // P_Two_Handed_Axe1
-1394,1,100 // Upg_Two_Handed_Axe
-1398,499,100 // Metal_Two_Handed_Axe
-1399,499,100 // TE_Woe_Two_Handed_Axe
-1419,507,100 // Pole_Axe_C
-1423,475,100 // Pole_XO
-1424,507,100 // Skewer_C
-1425,499,100 // BF_Spear1
-1426,499,100 // Krieger_Onehand_Spear1
-1427,507,100 // Spear_Of_Excellent
-1428,475,100 // Long_Horn_M
-1429,475,100 // Hunting_Spear_M
-1430,507,100 // Pike_C
-1434,499,100 // P_Sphere1
-1437,499,100 // TE_Woe_Pike
-1482,499,100 // BF_Lance1
-1486,499,100 // Krieger_Twohand_Spear1
-1487,507,100 // Lance_C
-1488,507,100 // Ahlspiess_C
-1489,507,100 // Spearfish_
-1491,1,100 // Upg_Lance
-1493,499,100 // Metal_Lance
-1495,499,100 // TE_Woe_Lance
-1533,507,100 // Warrior_Balmung
-1534,507,100 // Spanner_C
-1536,475,100 // Good_Morning_Star
-1537,507,100 // Quadrille_C
-1542,499,100 // BF_Morning_Star1
-1543,499,100 // BF_Morning_Star2
-1546,499,100 // Krieger_Onehand_Mace1
-1547,507,100 // Mace_Of_Madness
-1563,507,100 // Diary_Of_Great_Sage_C
-1566,475,100 // Diary_Of_Great_Basil
-1567,507,100 // Hardback_C
-1574,499,100 // BF_Book1
-1575,499,100 // BF_Book2
-1576,499,100 // Krieger_Book1
-1577,499,100 // Krieger_Book2
-1578,507,100 // Book_Of_Prayer
-1579,475,100 // Death_Note_M
-1580,507,100 // Encyclopedia_C
-1583,499,100 // P_Dic1
-1585,1,100 // Upg_Book
-1588,499,100 // Metal_Book
-1591,499,100 // TE_Woe_Book
-//1598,499,100 //
-1623,507,100 // Mighty_Staff_C
-1627,475,100 // Staffy
-1628,507,100 // Survival_Rod_C
-1632,499,100 // BF_Staff1
-1633,499,100 // BF_Staff2
-1634,499,100 // BF_Staff3
-1635,499,100 // BF_Staff4
-1638,507,100 // Healing_Staff_C
-1640,499,100 // Krieger_Onehand_Staff1
-1641,499,100 // Krieger_Onehand_Staff2
-1642,507,100 // Staff_Of_Darkness
-1644,475,100 // Piercing_Staff_M
-1645,475,100 // Lich_Bone_Wand_M
-1650,499,100 // P_Staff1
-1651,499,100 // P_Staff2
-1652,499,100 // Tourist_Staff
-1653,507,100 // Staff_Of_Healing_C
-1658,499,100 // P_Staff3
-1667,499,100 // TE_Woe_Staff
-1670,1,100 // RWC_Memory_Staff
-1681,467,100 // Short_Foxtail_Staff
-1687,467,100 // Beginner_Foxtail_Staff
-1699,499,100 // Paradise_Foxtail_Staff_I
-1703,507,100 // Bow__
-1728,507,100 // Balistar_C
-1729,507,100 // Bow_Of_Rudra_C
-1735,475,100 // Kkakkung
-1738,499,100 // BF_Bow1
-1739,499,100 // BF_Bow2
-1743,499,100 // Krieger_Bow1
-1744,507,100 // Bow_Of_Evil
-1747,499,100 // P_Bow1
-1748,499,100 // P_Bow2
-1749,499,100 // Tourist_Bow
-1817,507,100 // Kaiser_Knuckle_C
-1823,499,100 // BF_Knuckle1
-1824,499,100 // BF_Knuckle2
-1826,499,100 // Krieger_Knuckle1
-1827,499,100 // Krieger_Knuckle2
-1828,507,100 // Monk_Knuckle
-1829,507,100 // Fist_C
-1831,499,100 // P_Knuckle1
-1834,499,100 // TE_Woe_Fist
-//1845,499,100 //
-//1848,499,100 //
-//1864,499,100 //
-1921,475,100 // Guh_Moon_Gom
-1923,499,100 // BF_Instrument1
-1924,499,100 // BF_Instrument2
-1927,499,100 // Krieger_Instrument1
-1928,507,100 // Berserk_Guitar_I
-1929,507,100 // Guitar_C
-1931,499,100 // P_String_Inst1
-1932,499,100 // TE_Woe_Guitar
-1938,467,100 // Infinity_Violin
-1941,467,100 // Unity_Violin
-1975,475,100 // Queen_Is_Whip
-1977,499,100 // BF_Whip1
-1978,499,100 // BF_Whip2
-1981,499,100 // Krieger_Whip1
-1982,507,100 // Phenomena_Whip
-1983,507,100 // Rante_C
-1986,499,100 // P_Tail1
-1987,499,100 // TE_Woe_Rope
-1994,467,100 // Infinity_Whip
-1997,467,100 // Unity_Whip
-2002,499,100 // Krieger_Twohand_Staff1
-2003,475,100 // Destruction_Rod_M
-2015,1,100 // Upg_Staff
-2018,499,100 // Metal_Staff
-2019,499,100 // TE_Woe_Two_Hand_Staff
-2024,467,100 // Infinity_Two-handed_Stick
-2030,467,100 // Unity_Two-Handed_Staff
-//2033,499,100 //
-//2040,499,100 //
-//2046,499,100 //
-//2054,499,100 //
-2112,499,100 // Novice_Guard
-2127,475,100 // Secular_Mission
-2132,507,100 // Shelter_Resistance
-2136,507,100 // Cracked_Buckler
-2137,507,100 // Valkyrja's_Shield_C
-2140,507,100 // Energy_Rune_Guard
-2145,467,100 // Time_Keepr_Shield
-2149,1,100 // Upg_Guard
-2150,1,100 // Upg_Buckler
-2151,1,100 // Upg_Shield
-2152,507,100 // Anti_Demon_Shield_C
-2168,1,100 // Immuned_Shield
-2178,499,100 // TE_Woe_Buckler
-2179,499,100 // TE_Woe_Shield
-2180,499,100 // TE_Woe_Magic_Guard
-2352,499,100 // Novice_Plate
-2358,475,100 // Dress_Of_Angel
-2368,467,100 // Golden_Armor
-2369,507,100 // Freyja_Overcoat
-2370,475,100 // Used_Mage_Coat
-2376,499,100 // Assaulter_Plate
-2377,499,100 // Elite_Engineer_Armor
-2378,499,100 // Assassin_Robe
-2379,499,100 // Warlock_Battle_Robe
-2380,499,100 // Medic_Robe
-2381,499,100 // Elite_Archer_Suit
-2382,499,100 // Elite_Shooter_Suit
-2384,507,100 // Spritual_Tunic
-2385,507,100 // Recuperative_Armor
-2392,507,100 // Old_Pant
-2393,499,100 // N_Adventurer's_Suit
-2394,499,100 // Krieger_Suit1
-2395,499,100 // Krieger_Suit2
-2396,499,100 // Krieger_Suit3
-2398,475,100 // Sniping_Suit_M
-2414,499,100 // Novice_Boots
-2427,467,100 // Golden_Shoes
-2428,507,100 // Freyja_Boots
-2429,499,100 // Iron_Boots01
-2430,499,100 // Iron_Boots02
-2431,475,100 // Valley_Shoes
-2435,499,100 // Battle_Greave
-2436,499,100 // Combat_Boots
-2437,499,100 // Battle_Boots
-2438,467,100 // Paw_Of_Cat
-2439,507,100 // Refresh_Shoes
-2442,507,100 // Boots_Perforated
-2443,499,100 // Fish_Shoes
-2444,499,100 // Krieger_Shoes1
-2445,499,100 // Krieger_Shoes2
-2446,499,100 // Krieger_Shoes3
-2449,475,100 // Variant_Shoes_M
-2455,467,100 // Time_Keepr_Boots
-2456,499,100 // Para_Team_Boots1
-2457,499,100 // Para_Team_Boots2
-2458,499,100 // Para_Team_Boots3
-2459,1,100 // Upg_Shoes
-2460,1,100 // Upg_Boots
-2461,1,100 // Upg_Greave
-2463,499,100 // Feral_Boots
-2473,499,100 // Para_Team_Boots4
-2496,499,100 // TE_Woe_Shoes
-2497,499,100 // TE_Woe_Boots
-2498,499,100 // TE_Woe_Magic_Sandal
-2510,499,100 // Novice_Hood
-2533,507,100 // Freyja_Cape
-2534,475,100 // Ruffler
-2535,507,100 // Cloak_Of_Survival_C
-2538,499,100 // Commander_Manteau
-2539,499,100 // Commander_Manteau_
-2540,499,100 // Sheriff_Manteau
-2543,507,100 // Sylphid_Manteau
-2547,507,100 // Cheap_Running_Shirts
-2548,507,100 // Muffler_C
-2549,499,100 // Krieger_Muffler1
-2551,475,100 // Rider_Insignia_M
-2552,475,100 // Mithril_Magic_Cape_M
-2559,467,100 // Time_Keepr_Manteau
-2560,499,100 // Para_Team_Manteau
-2561,1,100 // Upg_Hood
-2562,1,100 // Upg_Muffler
-2563,1,100 // Upg_Manteau
-2564,499,100 // Feral_Tail
-2566,499,100 // Half_Asprika
-2568,467,100 // Muffler_Of_Roki
-2571,499,100 // Para_Team_Manteau2
-2573,1,100 // Archangel_Wing
-2576,1,100 // Bravery_Bag
-2589,1,100 // Fallen_Angel_Wing
-2634,507,100 // Bridegroom_Ring
-2635,507,100 // Bride_Ring
-2642,507,100 // Serin's_Gold_Ring
-2644,507,100 // The_Sign_
-2647,507,100 // Nile_Rose
-2668,499,100 // Women's_Glory
-2670,475,100 // Ring_Of_Longing
-2673,507,100 // Shining_Ring
-2674,507,100 // Honor_Ring
-2676,507,100 // Hunter_Earring
-2681,507,100 // Republic_Ring
-2686,507,100 // Elven_Ears_C
-2687,507,100 // Steel_Flower_C
-2688,507,100 // Critical_Ring_C
-2689,507,100 // Earring_C
-2690,507,100 // Ring_C
-2691,507,100 // Necklace_C
-2692,507,100 // Glove_C
-2693,507,100 // Brooch_C
-2694,507,100 // Rosary_C
-2695,507,100 // Safety_Ring_C
-2696,507,100 // Vesper_Core01_C
-2697,507,100 // Vesper_Core02_C
-2698,507,100 // Vesper_Core03_C
-2699,507,100 // Vesper_Core04_C
-2704,467,100 // Golden_Accessory
-2705,467,100 // Golden_Accessory2
-2706,507,100 // Handcuff
-2707,475,100 // Gusli
-2708,475,100 // Chinese_Handicraft
-2709,507,100 // 5_Anniversary_Coin
-2710,507,100 // Bloody_Iron_Ball_C
-2711,507,100 // Spiritual_Ring_C
-2713,507,100 // Certificate_TW
-2720,499,100 // Medal_Swordman
-2721,499,100 // Medal_Thief
-2722,499,100 // Medal_Acolyte
-2723,499,100 // Medal_Mage
-2724,499,100 // Medal_Archer
-2725,499,100 // Medal_Merchant
-2730,467,100 // Morocc_Seal
-2731,467,100 // Morocc_Charm_Stone
-2732,467,100 // Morocc_Ring
-2733,499,100 // Medal_Gunner
-2734,507,100 // Directive_A
-2735,507,100 // Directive_B
-2738,507,100 // Shiny_Coin
-2739,507,100 // Ordinary_Coin
-2740,507,100 // Rusty_Coin
-2741,507,100 // All_In_One_Ring
-2742,507,100 // Lucky_Clip
-2750,507,100 // Summer_Night_Dream
-2751,467,100 // Academy_Badge
-2752,507,100 // Praxinus_C
-2753,507,100 // Beholder_Ring
-2754,507,100 // Hallow_Ring
-2755,507,100 // Clamorous_Ring
-2756,507,100 // Chemical_Ring
-2757,507,100 // Insecticide_Ring
-2758,507,100 // Fisher_Ring
-2759,507,100 // Decussate_Ring
-2760,507,100 // Bloody_Ring
-2761,507,100 // Satanic_Ring
-2762,507,100 // Dragoon_Ring
-2763,507,100 // Skul_Ring_C
-2766,499,100 // Swordman_Figure
-2767,499,100 // Acolyte_Figure
-2768,499,100 // Mage_Figure
-2769,499,100 // Archer_Figure
-2770,499,100 // Thief_Figure
-2771,499,100 // Merchant_Figure
-2772,499,100 // Krieger_Ring1
-2773,499,100 // Krieger_Ring2
-2774,499,100 // Krieger_Ring3
-2777,1,100 // Shaman_Ring
-2778,1,100 // Shaman_Earing
-2779,1,100 // Dark_Knight_Belt
-2780,1,100 // Dark_Knight_Glove
-2781,1,100 // Aumdura's_Grace
-2782,475,100 // Ring_Of_Wise_King
-2785,475,100 // Orleans_Glove_M
-2786,1,100 // Spiritual_Ring_M
-2792,507,100 // Ring_Of_Flame_Lord_I
-2793,507,100 // Ring_Of_Resonance_I
-2794,507,100 // Magic_Stone_Ring
-2795,499,100 // Green_Apple_Ring
-2796,507,100 // Magical_Stone
-2797,507,100 // Magical_Stone_
-2798,499,100 // Will_Of_Exhausted_Angel
-2799,1,100 // Kuirpenring
-2816,507,100 // Radar_Ring1
-2817,507,100 // Radar_Ring2
-2818,507,100 // Radar_Ring3
-2819,499,100 // Swordman_Manual
-2820,499,100 // Thief_Manual
-2821,499,100 // Acolyte_Manual
-2822,499,100 // Archer_Manual
-2823,499,100 // Merchant_Manual
-2824,499,100 // Mage_Manual
-2825,1,100 // Shaman_EaringB
-2826,1,100 // Dark_Knight_BeltB
-2827,1,100 // Dark_Knight_GloveB
-2828,1,100 // Upg_Clip
-2832,507,100 // Freyja_Ring
-2841,507,100 // Caracas_Ring
-2843,499,100 // Gold_Trickle
-2844,475,100 // El_Dicastes_Light
-2856,499,100 // Half_Megin
-2857,499,100 // Half_Brysing
-2858,475,100 // Pendant_Of_Guardian
-2863,507,100 // Ring_Of_Valkyrie
-2872,475,100 // G_Honor_Certificate
-2875,475,100 // RO_Appreciation_Ring
-2885,499,100 // Mother_Heart
-2897,475,100 // 2011RWC_Necklace_J
-2915,467,100 // Ettlang_Keepsake
-2916,475,100 // Fairy_Wing
-2940,499,100 // Ninja_Manual
-2941,499,100 // Gunslinger_Manual
-2942,499,100 // Taekwon_Manual
-2944,499,100 // TE_Ring_Of_Protection
-2945,499,100 // TE_Ring_Of_Rage
-2946,499,100 // TE_Ring_Of_Defiance
-2950,507,100 // Rune_Ring
-2966,1,100 // RWC_2012_Ring
-2967,1,100 // RWC_2012_Ring_
-2968,1,100 // RWC_2012_Pendant
-2969,1,100 // RWC_2012_Pendant_
-2981,467,100 // RingOfHero
-2997,475,100 // RWC_Gold_Brooch
-2999,475,100 // RWC_Brooch
-5099,1,100 // Cat_Hat
-5106,467,100 // Cone_Hat_INA
-5132,475,100 // Angeling_Hat
-5142,1,100 // Crescent_Helm
-5143,1,100 // Kabuki_Mask
-5147,507,100 // Baseball_Cap
-5149,499,100 // Silver_Tiara
-5154,475,100 // Sunglasses_F
-5155,475,100 // Granpa_Beard_F
-5156,475,100 // Flu_Mask_F
-5179,499,100 // Gold_Tiara
-5187,1,100 // Twin_Ribbon
-5210,1,100 // Flying_Angel
-5214,1,100 // Moonlight_Flower_Hat
-5225,1,100 // Marcher_Hat
-5254,475,100 // Deviling_Hat
-5265,507,100 // Apple_Of_Archer_C
-5266,507,100 // Bunny_Band_C
-5267,507,100 // Sahkkat_C
-5268,507,100 // Lord_Circlet_C
-5269,507,100 // Flying_Angel_
-5279,507,100 // Drooping_Kitty_C
-5280,507,100 // Magestic_Goat_C
-5281,507,100 // Deviruchi_Cap_C
-5283,1,100 // Chick_Hat
-5286,507,100 // Pecopeco_Hairband
-5288,507,100 // Red_Glasses
-5293,507,100 // Ramen_Hat
-5294,507,100 // Whisper_Mask
-5295,467,100 // Golden_Bandana
-5306,507,100 // Freyja_Crown
-5308,475,100 // Brazilian_Flag_Hat
-5309,475,100 // Mahican
-5312,1,100 // Ayothaya_Hat
-5313,1,100 // Diadem
-5314,507,100 // Hockey_Mask
-5315,507,100 // Observer
-5318,467,100 // Poring_Party_Hat
-5319,1,100 // Hellomother_Hat
-5320,475,100 // Champion_Wreath
-5322,475,100 // Scarf
-5323,475,100 // Misstrance_Crown
-5324,1,100 // Little_Angel_Doll
-5325,1,100 // Robo_Eye
-5326,507,100 // Masquerade_C
-5327,507,100 // Orc_Hero_Helm_C
-5328,507,100 // Evil_Wing_Ears_C
-5329,507,100 // Dark_Blindfold_C
-5330,507,100 // kRO_Drooping_Kitty_C
-5331,507,100 // Corsair_C
-5336,507,100 // Guildsman_Recruiter
-5337,507,100 // Party_Recruiter_Hat
-5338,507,100 // Bf_Recruiter_Hat
-5339,507,100 // Friend_Recruiter_Hat
-5340,1,100 // Deprotai_Doll_Hat
-5341,1,100 // Claris_Doll_Hat
-5342,1,100 // Sorin_Doll_Hat
-5343,1,100 // Tayelin_Doll_Hat
-5344,1,100 // Binit_Doll_Hat
-5345,1,100 // Debril_Doll_Hat
-5346,507,100 // Gf_Recruiter_Hat
-5357,475,100 // Wings_Of_Victory
-5359,1,100 // J_Captain_Hat
-5360,1,100 // Whikebain_Ears
-5361,1,100 // Gang_Scarf
-5362,1,100 // Ninja_Scroll
-5363,1,100 // Helm_Of_Abyss
-5365,1,100 // Fried_Egg
-5368,475,100 // White_Wing
-5369,475,100 // Dark_Wing
-5372,1,100 // Drooping_White_Kitty
-5373,1,100 // Darkness_Helm
-5375,1,100 // L_Orc_Hero_Helm
-5378,1,100 // Rabbit_Ear_Hat
-5380,1,100 // Fish_Head_Hat
-5381,1,100 // Santa_Poring_Hat
-5382,1,100 // Bell_Ribbon
-5384,1,100 // Santa_Hat_1
-5389,1,100 // Angel_Spirit
-5391,507,100 // Toast_C
-5393,1,100 // Valentine_Hat
-5394,507,100 // Bubblegum_Lower
-5396,1,100 // Jasper_Crest
-5406,467,100 // Academy_Freshman_Hat
-5407,467,100 // Academy_Graduating_Cap
-5408,507,100 // Old_Bandanna
-5409,1,100 // New_Cowboy_Hat
-5410,499,100 // Bread_Bag2
-5412,507,100 // Sweet_Candy
-5413,467,100 // Popcorn_Hat
-5414,467,100 // Campfire_Hat
-5419,1,100 // Evolved_Leaf
-5420,1,100 // Mask_Of_Ifrit
-5421,1,100 // Ifrit's_Ear
-5423,9,100 // Lovecap_China
-5428,475,100 // Bread_Bag1
-5430,1,100 // Sacred_Torch_Coronet
-5431,1,100 // Chicken_Hat
-5435,1,100 // Coke_Hat
-5450,475,100 // Sun_Cap
-5451,475,100 // Dragonhelm_Gold
-5452,475,100 // Dragonhelm_Silver
-5453,475,100 // Dragonhelm_Copper
-5460,499,100 // Adv_Dragon_Skull
-5461,499,100 // Adv_Whisper_Mask
-5462,507,100 // Spiked_Scarf
-5463,507,100 // Rainbow_Scarf
-5464,1,100 // Zaha_Doll_Hat
-5467,1,100 // Helm_Of_Dragoon
-5469,1,100 // Noble_Hat
-5476,1,100 // Hairband_Of_Grandpeco
-5479,1,100 // Shaman's_Hair_Ornament
-5480,1,100 // Bizofnil_Wing_Deco
-5481,1,100 // Hermose_Cap
-5482,1,100 // Dark_Knight_Mask
-5483,1,100 // Odin_Mask
-5492,507,100 // Boy's_Cap_I
-5493,507,100 // Ulle_Cap_I
-5494,507,100 // Spinx_Helm_I
-5495,1,100 // Power_Of_Thor
-5497,1,100 // King_Tiger_Doll_Hat
-5498,1,100 // Wondering_Wolf_Helm
-5502,1,100 // Necromencer's_Hood
-5503,1,100 // Rabbit_Magic_Hat
-5508,1,100 // Shark_Hat
-5509,1,100 // Sting_Hat
-5520,1,100 // Rabbit_Earplug
-5521,507,100 // Angry_Mouth_C
-5527,1,100 // Lunatic_Hat
-5529,1,100 // Evil's_Bone_Hat
-5530,1,100 // Raven_Cap
-5531,1,100 // B_Dragon_Hat
-5535,1,100 // Side_Cap
-5536,507,100 // Spare_Card
-5537,1,100 // Quati_Hat
-5538,1,100 // Tucan_Hat
-5539,1,100 // Jaguar_Hat
-5544,467,100 // Time_Keeper_Hat
-5545,1,100 // Aries_Diadem
-5546,1,100 // Aries_Crown
-5547,1,100 // RJC_Katusa
-5548,1,100 // Scarlet_Rose
-5549,1,100 // Taurus_Diadem
-5550,1,100 // Taurus_Crown
-5551,499,100 // Holy_Egg_Hat
-5554,1,100 // Octopus_Hat
-5555,1,100 // Leaf_Cat_Hat
-5556,1,100 // Fur_Seal_Hat
-5557,1,100 // Wild_Rose_Hat
-5565,1,100 // Dragon_Arhat_Mask
-5566,1,100 // Tiger_Arhat_Mask
-5567,1,100 // Bright_Fury
-5569,1,100 // Gemini_Diadem
-5570,1,100 // Gemini_Crown
-5572,1,100 // Savage_Baby_Hat
-5573,1,100 // Bogy_Horn
-5577,1,100 // Dark_Knight_MaskB
-5583,499,100 // Para_Team_Hat
-5584,1,100 // Majestic_Evil_Horn
-5585,1,100 // Rune_Hairband
-5587,499,100 // Mosquito_Coil_1Use
-5592,475,100 // Sigrun's_Wing
-5593,1,100 // K_Rabbit_Bonnet
-5594,1,100 // Donut_In_Mouth
-5596,507,100 // 4Leaf_Clover_In_Mouth
-5597,507,100 // Bubble_Gum_In_Mouth
-5603,475,100 // RTC_Winner_Only
-5604,475,100 // RTC_Second_Best
-5605,475,100 // RTC_Third_Best
-5609,1,100 // Chung_Hairband
-5654,1,100 // Holy_Marching_Hat_J
-5658,1,100 // Imp_Hat
-5660,1,100 // Gryphon_Hat
-5665,1,100 // Shaman_Hat
-5666,1,100 // Golden_Crown
-5667,1,100 // Skull_Hood
-5668,499,100 // Weird_Pumpkin_Hat
-5682,1,100 // Triangle_Rune_Cap
-5738,1,100 // Snowman_Hat
-5746,467,100 // Rune_Circlet
-5747,467,100 // Mitra
-5748,467,100 // Sniper_Goggle
-5749,467,100 // Driver_Band
-5750,467,100 // Shadow_Handicraft
-5751,467,100 // Minstrel_Song_Hat
-5752,467,100 // Midas_Whisper
-5753,467,100 // Magic_Stone_Hat
-5754,467,100 // Blazing_Soul
-5755,467,100 // Silent_Executer
-5756,467,100 // Wind_Whisper
-5757,467,100 // Schmidt_Helm
-5758,467,100 // Dying_Swan
-5760,467,100 // Driver_Band_
-5766,1,100 // Amistr_Cap
-5767,1,100 // Samurai_Mask
-5786,475,100 // Ancient_Elven_Ear
-5788,475,100 // 3D_Glasses
-5793,507,100 // Ribbon_Of_Life
-5794,507,100 // 3D_Glasses_
-5796,499,100 // Cheer_Scarf
-5797,507,100 // Cheer_Scarf2
-5798,507,100 // Cheer_Scarf3
-5799,507,100 // Cheer_Scarf4
-5805,475,100 // Victorious_Coronet
-5806,475,100 // Poem_Natalia_Hat
-5809,467,100 // Boom_Boom_Hat
-5812,507,100 // Hat_Of_Expert
-5814,499,100 // Ati_Atihan_Hat3
-5817,507,100 // Valentine_Pledge
-5818,507,100 // Carnival_Hat
-5819,507,100 // Carnival_Circlet
-5820,467,100 // Black_Elven_Ears
-5821,467,100 // Gold_Tulip_Hairpin
-5822,499,100 // Love_Chick_Hat
-5823,467,100 // Love_Arrow
-5855,499,100 // Fishing_Rod
-5856,1,100 // Passion_FB_Hat
-5857,1,100 // Cool_FB_Hat
-5858,1,100 // Victory_FB_Hat
-5859,1,100 // Glory_FB_Hat
-5864,475,100 // Shadow_Booster
-5900,467,100 // Divine Guard Hat
-5901,467,100 // Focus Beret
-5902,467,100 // Harvester Hat
-5903,467,100 // Deadman Bandana
-5904,467,100 // Inconspicuous Hat
-5905,467,100 // Lyrica Hat
-5906,467,100 // Oni Horns
-5907,467,100 // Sea Captain Hat
-6000,475,100 // Dark_Ashes
-6005,467,100 // New_Year_Rice_Cake
-6006,499,100 // Rice_Cake_Delivery_Box
-6007,499,100 // New_Year_Rice_Cake_Soup
-6009,499,100 // Large_Magical_Fan
-6024,8,100 // 17Carat_Dia
-6025,507,100 // Towel_Of_Memory
-6026,1,100 // Marriage_Covenant
-6027,507,100 // Crystal_Of_Feardoom
-6028,507,100 // Seal_Scroll
-6029,507,100 // Morocc_Tracing_Log
-6034,507,100 // Weird_Part
-6035,507,100 // Decaying_Stem
-6036,499,100 // Invite_To_Meeting
-6037,507,100 // Rough_File
-6038,499,100 // Neat_Report
-6039,499,100 // Piece_Of_Fish
-6040,499,100 // Some_Of_Report
-6042,499,100 // Ordinary_Branch
-6043,499,100 // Letter_From_Lugen
-6044,499,100 // Letter_From_Otto
-6045,499,100 // Supply_Box
-6046,475,100 // Clothing_Dye_Coupon
-6047,475,100 // Clothing_Dye_Coupon_II
-6048,499,100 // Unidentified_Mineral
-6049,499,100 // Marlin
-6050,475,100 // Mercenary_Contract
-6051,499,100 // Gray_Hollow
-6052,507,100 // Ornamental_Hairpin
-6060,499,100 // Moon_Admin_Ticket
-6070,475,100 // Shaman's_Old_Paper
-6071,475,100 // Broken_Sword
-6072,475,100 // Wing_Of_Bizofnil
-6074,499,100 // Bazett's_Order
-6076,507,100 // Portable_Toolbox
-6077,507,100 // Rough_Mineral
-6078,507,100 // Stone_Fragments
-6079,507,100 // Flower_Of_Alfheim
-6080,467,100 // Manuk_Coin
-6081,467,100 // Splendide_Coin
-6082,507,100 // Spirit_Of_Alfheim
-6084,507,100 // Bradium_Fragments
-6085,507,100 // Shaggy_Muffler
-6093,499,100 // Egg_Of_Draco
-6101,499,100 // Attendance_Card
-6102,507,100 // Report_On_Splendide
-6103,507,100 // Report_On_Manuk
-6116,507,100 // Succu_Pet_Coupon
-6117,507,100 // Imp_Pet_Coupon
-6118,507,100 // Chung_E_Pet_Coupon
-6121,507,100 // Makeover_Brush
-6122,507,100 // Paint_Brush
-6124,507,100 // Wolf's_Flute
-6125,507,100 // Lucky_Box
-6126,507,100 // Happy_Box
-6127,507,100 // Purification_Stone
-6129,475,100 // Ticket_Nightmare
-6130,507,100 // Ticket_Loli_Ruri
-6131,475,100 // Ticket_Goblin_Leader
-6132,507,100 // Ticket_Incubus
-6133,507,100 // Ticket_Miyabi_Ningyo
-6134,507,100 // Ticket_Whisper
-6135,507,100 // Ticket_Wicked_Nymph
-6136,475,100 // Ticket_Medusa
-6137,507,100 // Ticket_Stoneshooter
-6138,507,100 // Ticket_Marionette
-6139,507,100 // Ticket_Leafcat
-6140,507,100 // Ticket_Dullahan
-6141,507,100 // Ticket_Shinobi
-6142,475,100 // Ticket_Golem
-6143,475,100 // Ticket_Civil_Servant
-6148,499,100 // Chocolate_Of_Eternity
-6149,499,100 // Plain_Chocolate
-6150,507,100 // Key_Of_The_Mansion
-6151,499,100 // Peice_Of_Great_Bradium
-6152,499,100 // Glittering_Crystal
-6153,507,100 // Special_Exchange_Coupon
-6154,499,100 // Broken_Horn_Pipe
-6156,499,100 // Approval_Report
-6157,475,100 // Poring_Ticket
-6158,475,100 // Drops_Ticket
-6159,475,100 // Poporing_Ticket
-6160,475,100 // Lunatic_Ticket
-6161,475,100 // Picky_Ticket
-6162,475,100 // Pecopeco_Ticket
-6163,475,100 // Savage_Baby_Ticket
-6164,475,100 // Spore_Ticket
-6165,475,100 // Poison_Spore_Ticket
-6166,475,100 // Chonchon_Ticket
-6167,475,100 // Steel_Chonchon_Ticket
-6168,475,100 // Petit_Ticket
-6169,475,100 // Deviruchi_Ticket
-6170,475,100 // Isis_Ticket
-6171,475,100 // Smokie_Ticket
-6172,475,100 // Dokebi_Ticket
-6173,475,100 // Desert_Wolf_B_Ticket
-6174,475,100 // Yoyo_Ticket
-6175,475,100 // Sohee_Ticket
-6176,475,100 // Rocker_Ticket
-6177,475,100 // Hunter_Fly_Ticket
-6178,475,100 // Orc_Warrior_Ticket
-6179,475,100 // Bapho_Jr_Ticket
-6180,475,100 // Munak_Ticket
-6181,475,100 // Bongun_Ticket
-6182,475,100 // Goblin_Ticket
-6183,475,100 // Hardtack_Ticket
-6184,475,100 // Zherlthsh_Ticket
-6185,475,100 // Alice_Ticket
-6206,499,100 // I_Love_You
-6207,499,100 // Thank_You
-6208,499,100 // I_Respect_You
-6218,507,100 // Disin_Delivery_Box
-6219,507,100 // Para_Team_Mark
-6225,475,100 // HD_Carnium
-6226,475,100 // HD_Bradium
-6228,475,100 // Guarantee_Weapon_9Up
-6229,475,100 // Guarantee_Weapon_8Up
-6230,475,100 // Guarantee_Weapon_7Up
-6231,475,100 // Guarantee_Weapon_6Up
-6232,475,100 // Guarantee_Armor_9Up
-6233,475,100 // Guarantee_Armor_8Up
-6234,475,100 // Guarantee_Armor_7Up
-6235,475,100 // Guarantee_Armor_6Up
-6236,499,100 // Blue_Card_7
-6237,507,100 // Guarana_Fruit
-6238,475,100 // Guarantee_Weapon_11Up
-6239,475,100 // Guarantee_Armor_11Up
-6240,475,100 // HD_Oridecon
-6241,475,100 // HD_Elunium
-6242,9,100 // Midgard_Coin
-6266,507,100 // Cheat_Key
-6267,507,100 // Virtual_Key
-6268,507,100 // Mirth_Key
-6269,507,100 // Master_Brush
-6270,499,100 // Mins_Picture
-6271,499,100 // Mins_Receipt
-6272,507,100 // Experiment_Seed
-6273,507,100 // Altered_Seed
-6274,507,100 // Saint_Cloth_Piece
-6275,507,100 // King_Shield
-6276,507,100 // Clear_Reagent
-6277,507,100 // Red_Reagent
-6278,507,100 // Black_Reagent
-6296,499,100 // RF_Taining_Notice
-6298,499,100 // Pumpkin_Head_Crushed
-6299,499,100 // Worn_Cloth_Piece
-6304,475,100 // Sapa_Feat_Cert
-6305,507,100 // Frozen_Skin_Piece
-6306,507,100 // Solid_Bloodstain
-6307,507,100 // Suspicious_Magic_Stone
-6308,475,100 // Unidentified_Relic
-6316,475,100 // E_Token_Of_Siegfried
-6320,475,100 // Premium_Reset_Stone
-6327,475,100 // Limited_High_Density_Bradium
-6345,499,100 // Love_Ball
-6347,499,100 // Bless_Word_Paper1
-6348,499,100 // Bless_Word_Paper2
-6349,499,100 // Bless_Word_Paper3
-6350,499,100 // Bless_Word_Paper4
-6351,499,100 // Bless_Word_Paper5
-6352,499,100 // Bless_Word_Paper6
-6353,499,100 // Bless_Word_Paper7
-6354,499,100 // Bless_Word_Paper8
-6355,499,100 // Bless_Word_Paper9
-6356,499,100 // Bless_Word_Paper10
-6357,499,100 // Fortune_Cookie_Fail
-6358,507,100 // Free_Cash_Coupon
-6359,507,100 // Guidebook_Exchange
-6377,467,100 // Buy_Market_Permit
-6378,499,100 // Winning_Mark
-6380,467,100 // Mora_Coin
-6383,499,100 // Clue_Of_Lope
-6384,507,100 // Ring_Of_Lope
-6385,507,100 // Research_Tool_Bag
-6386,499,100 // Bathtub_R_Sample
-6387,499,100 // Teeth_Sample
-6388,499,100 // Scale_Sample
-6389,499,100 // Puddle_R_Sample
-6390,499,100 // Small_Pocket
-6391,499,100 // Splendid_Supply_Kit
-6392,499,100 // Bradium_Box
-6396,475,100 // Auger_Of_Spirit
-6397,507,100 // PR_Team_Ticket
-6398,507,100 // Develop_Team_Ticket
-6399,507,100 // Marketing_Team_Ticket
-6400,507,100 // Operating_Team_Ticket
-6401,507,100 // Palm_O
-6402,499,100 // Oil_Palm_F
-6411,499,100 // Ripe_Watermelon
-6412,507,100 // Special_Medal
-6413,475,100 // New_Insurance
-6415,507,100 // Strange_Embryo
-6416,499,100 // Pet_Exchange
-6417,475,100 // Silvervine
-6424,499,100 // Halloween_Fragment
-6425,499,100 // Halloween_Certificate
-6426,499,100 // Bad_Can
-6427,507,100 // Bad_Can_Sack
-6428,507,100 // Bravery_Card_A
-6429,507,100 // Bravery_Card_B
-6430,499,100 // Picture_Piece
-6431,499,100 // Bucket
-6432,499,100 // Full_Bucket
-6433,499,100 // Clean_Brush
-6434,499,100 // Fix_Kit
-6435,499,100 // Fresh_Fruit
-6436,507,100 // Ptotection_Seagod
-6440,475,100 // General_Lubricant
-6441,475,100 // High_RankLubricant
-6442,507,100 // Octopus_Hunt_Stick
-6443,475,100 // Sillit_Pong_Bottle
-6444,475,100 // Emperium_G
-6446,507,100 // Green_Paper
-6447,507,100 // Red_Paper
-6448,507,100 // White_Paper
-6449,507,100 // Casual_Diary
-6450,507,100 // Honest_Diary
-6451,499,100 // Unknown_Fish
-6452,507,100 // Etoile_Ring
-6456,475,100 // Guarantee_Weapon_5Up
-6457,475,100 // Guarantee_Armor_5Up
-6464,499,100 // Hate_Bundle
-6465,467,100 // Guard_Coin
-6480,507,100 // Event_coin
-6484,475,100 // Enchant_Book
-6488,467,100 // Thanks_Invest_Ticket
-6489,467,100 // Cats_Invest_Certif
-6500,499,100 // Sharp_Bamboo
-6501,499,100 // Salt_Bag
-6502,499,100 // Silver_Cross
-6503,467,100 // Soul_Protection
-6504,499,100 // Cast_Iron_Caldron
-6505,499,100 // Purified_Bone
-6506,499,100 // Memorial_Bouquet
-6507,499,100 // Evil_Bone
-6519,467,100 // Collected_Samples
-6520,467,100 // Lost_Belongings
-6536,499,100 // Star_Decor
-6539,499,100 // Old_Left_Lapine
-6540,499,100 // Golden_Leaf
-6541,499,100 // Avant_Research_Data
-6542,467,100 // Star_Shape_Mushroom
-6543,499,100 // Lv110_Achieved_Coin
-6544,499,100 // Lv120_Achieved_Coin
-6545,499,100 // Firm_Hair
-6546,499,100 // Younger_Bro_Letter
-6547,499,100 // Stained_Research_Book
-6548,499,100 // Piece_Of_Lapine_Wing
-6549,499,100 // Courtesy_Ticket
-6552,507,100 // Mail_Package
-6553,507,100 // Leaf_Made_Wood
-6554,507,100 // Seed_Box
-6555,507,100 // Birthday_Candle
-6556,499,100 // Nespresso_Ticket
-6562,507,100 // Tiny_Mouse_Tail
-6563,507,100 // Weeds
-6566,499,100 // Cacao99_Recipe
-6567,499,100 // Choco_Drink_Recipe
-//6584,475,100 //
-//6585,475,100 //
-//6586,507,100 //
-6593,499,100 // Cryptura_Hair_Coupon
-6625,467,100 // High_Purity_Energy_Xtal
-6635,1,100 // Blacksmith_Blessing
-6654,499,100 // Needle_And_Thread
-6655,499,100 // Firm_Pumpkin
-6656,499,100 // Goast_Free_Charm
-6657,499,100 // Memory_Of_Jack
-6665,1,100 // RWC_Inicializer
-6671,467,100 // Geffen_Coin_Magic_Tournament
-6672,467,100 // Black_As_Night_Piece
-6673,507,100 // Bossnia_Tickets
-6674,499,100 // GM_Coin
-6681,467,100 // XMAS_Cookie
-6682,499,100 // Bag_Of_Selling_Goods
-6684,467,100 // TokenOfHero
-6685,499,100 // Morocc_Certification
-6686,507,100 // Brick
-6687,507,100 // Rope__
-6688,507,100 // Wood_
-6689,467,100 // Fire_Beetle_Shell
-6690,467,100 // Delicious_Stem
-6698,499,100 // Wooden_Axe
-6699,499,100 // Faith_Silence
-6700,499,100 // White_Snake_Scale
-6701,499,100 // Treasure_Dwarf
-6702,499,100 // Sweat_Dwarf
-6703,499,100 // Warrior_Tears
-6704,499,100 // Warrior_Anger
-6705,499,100 // Warrior_Certificate
-6706,499,100 // Guardian_Flowers
-6708,499,100 // Mana_crystal
-6709,499,100 // Crisp_Silk
-6710,499,100 // Tied_Snake
-6713,499,100 // Heart_of_Soul
-6714,499,100 // Sheenas_Soul
-6715,467,100 // P_Of_Evil_Soul
-6720,507,100 // Status_Reset_Coupon
-6721,507,100 // Status_Reset_Coupon_
-6722,499,100 // Delicious_Clam_Flesh
-6723,499,100 // Delicious_Canned_Food
-6724,507,100 // Savage_Box
-6725,507,100 // Grand_Peco_Box
-6726,507,100 // Desert_Wolf_Box
-6727,499,100 // Arranged_Photo_Album
-6733,499,100 // Tingly_Feather
-6746,499,100 // Iron_Artifacts
-6747,499,100 // Iron_Artifacts_
-6748,507,100 // Daily_Report_He_And_His_Team
-6749,507,100 // Operation_Control_Device
-6752,467,100 // Charleston_Parts
-6753,467,100 // Token_Of_Destruction
-6754,507,100 // Collected_Medicinal_Herbs
-6756,507,100 // Cohesive_Energy
-6757,507,100 // The_Memory_Recorder
-6766,499,100 // Ice_World_Ticket
-6767,499,100 // Summer_Fes_Coin
-6768,499,100 // Red_Beans_Of_Ice
-6769,499,100 // Sweet_Rice_Cake
-6784,507,100 // Squid_Skewer
-6785,507,100 // Fantastic_Sauce
-6786,507,100 // Squid_Of_Bbq
-6787,507,100 // Good_Firewood
-6788,507,100 // Rose_Knife
-6789,507,100 // Custom_Pan
-6813,1,100 // Kafra_Ticket
-6814,475,100 // Swordman_Soul
-6815,475,100 // Merchant_Soul
-6816,475,100 // Thief_Soul
-6817,475,100 // Mage_Soul
-6818,475,100 // Archer_Soul
-6819,475,100 // Acolyte_Soul
-6820,475,100 // Particles_Of_Energy
-6821,467,100 // Solo_Troops_Badge
-6824,507,100 // Experimental_Dong_Memory_Record
-6825,499,100 // Air_Cleaner_Box
-6826,499,100 // Fresh_Grapes
-6827,499,100 // Complete_Machine_Parts
-6833,475,100 // Limited_Token_of_Ziegfried
-6836,499,100 // Talisman_Of_Soul
-6837,499,100 // Piece_Of_Soul_Mouse
-6838,499,100 // Secret_Orders_Of_Prophet_K
-6839,467,100 // Gold_Choco_Coin
-6840,467,100 // Silver_Choco_Coin
-6841,467,100 // Bronze_Choco_Coin
-6842,499,100 // Huge_Jewery
-6843,499,100 // Thin_Ring
-6844,499,100 // Mild_Stone
-6845,499,100 // That_Thing
-6846,475,100 // Limited_Gym_Membership_Card
-6847,499,100 // Very_Small_Box
-6848,499,100 // Light_Box
-6849,499,100 // Request_Complete_Certificate
-6850,499,100 // Questionable_Box
-6851,499,100 // Questionable_Document
-6852,499,100 // Super_Corrector
-6853,499,100 // Thanks_Bouquet
-6854,499,100 // Novus_Captured
-6855,499,100 // Tatacho_Captured
-6856,499,100 // Manuscript_Written_By_Pigoreum
-6857,499,100 // Very_Hard_Stone
-6858,499,100 // Lude_Captured
-6859,499,100 // Wanderer_Captured
-6860,499,100 // Piece_Of_Soul_Cow
-6862,499,100 // Piece_Of_Soul_Tiger
-6863,499,100 // Strong_Piece_Of_Soul_Tiger
-6864,475,100 // Safe_to_19_Weapon_Certificate
-6865,475,100 // Safe_to_19_Armor_Certificate
-6866,499,100 // Piece_Of_Soul_Rabbit
-6867,499,100 // Large_Insect_Barrel
-6868,499,100 // Medium_Insect_Barrel
-6869,499,100 // Dust
-6870,475,100 // Safe_to_13_Weapon_Certificate
-6871,475,100 // Safe_to_14_Weapon_Certificate
-6872,475,100 // Safe_to_15_Weapon_Certificate
-6873,475,100 // Safe_to_16_Weapon_Certificate
-6874,475,100 // Safe_to_17_Weapon_Certificate
-6875,475,100 // Safe_to_18_Weapon_Certificate
-6876,475,100 // Safe_to_13_Armor_Certificate
-6877,475,100 // Safe_to_14_Armor_Certificate
-6878,475,100 // Safe_to_15_Armor_Certificate
-6879,475,100 // Safe_to_16_Armor_Certificate
-6880,475,100 // Safe_to_17_Armor_Certificate
-6881,475,100 // Safe_to_18_Armor_Certificate
-6883,475,100 // Pet_Snow_Bunny_Exchange_Ticket
-6884,475,100 // Pet_Tikbalang_Exchange_Ticket
-6885,499,100 // Piece_Of_Soul_Dragon
-6886,499,100 // Strong_Piece_Of_Soul_Dragon
-6904,499,100 // Piece_Of_Soul_Snake
-6906,475,100 // Limited_High_Density_Kalunium
-6907,499,100 // Piece_Of_Soul_Horse
-6909,475,100 // Actinidia_Cat_Fruit
-6910,475,100 // Limited_Purified_Oridecon
-6911,475,100 // Limited_Purified_Eluminium
-6912,499,100 // Piece_Of_Soul_Sheep
-6913,507,100 // Holy_Rosary
-6914,499,100 // Black_Horn
-6915,499,100 // Captured_Soul
-6916,499,100 // Piece_Of_Soul_Monkey
-6917,499,100 // Piece_Of_Soul_Chicken
-6919,499,100 // Honor_Proof
-6920,467,100 // Rune_Magic_Powder
-6923,499,100 // Bright_Fire_Lights
-6925,499,100 // Letter_Of_Prisoner
-6926,499,100 // Rune-Midgard_History_Book
-6927,499,100 // Stone_That_Contained_Sea
-6928,499,100 // Poring_Scourer
-6929,499,100 // Letter_With_Stamped_Seal
-6930,499,100 // Samples_New_Business_Items
-6931,499,100 // Secret_Documents
-6932,499,100 // Rare_Book
-6933,499,100 // Banquet_Invitation_Letter
-6934,499,100 // Magnificent_Dish
-6935,499,100 // Advanced_Dish
-6953,475,100 // Ramor_Refine_Ticket
-6954,499,100 // Piece_Of_Soul_Dog
-6955,499,100 // Piece_Of_Soul_Pig
-6956,499,100 // Captured_Sheep
-6957,499,100 // Lamb_Fleece
-//6959,499,100 //
-6960,467,100 // Key_Air_Fortress
-//6993,475,100 //
-//6994,475,100 //
-//6995,499,100 //
-//6996,499,100 //
-//6997,499,100 //
-7025,475,100 // Lucifer's_Lament
-7037,475,100 // Trade_Coupon
-7059,499,100 // Cargo_Free_Ticket
-7060,499,100 // Warp_Free_Ticket
-7061,499,100 // Cart_Free_Ticket
-7140,1,100 // Seed_Of_Life
-7170,1,100 // Tuxedo
-7177,507,100 // Part_Of_Star's_Sob
-7178,507,100 // Star's_Sob
-7199,499,100 // Coupon
-7275,507,100 // Ancient_Document
-7276,507,100 // Picture_Letter
-7304,507,100 // Witch's_Spell_Book
-7305,507,100 // Authority_Of_Nine_World
-7306,507,100 // Fragment_Of_Soul
-7307,507,100 // Whisper_Of_Soul
-7308,507,100 // Witch's_Potion
-7309,507,100 // Wing_Of_Crow
-7314,507,100 // The_Sign
-7332,507,100 // Slate
-7333,507,100 // Piece_Of_Slate_1
-7334,507,100 // Piece_Of_Slate_2
-7335,507,100 // Piece_Of_Slate_3
-7336,507,100 // Piece_Of_Slate_4
-7339,507,100 // RO_Transportation_Card_
-7341,507,100 // Worn_Out_Pendant
-7342,507,100 // File01
-7343,507,100 // File02
-7344,507,100 // File03
-7346,507,100 // Pile_Of_Ymir_Heart
-7349,507,100 // Indication_Of_Member02
-7351,507,100 // Friend's_Diary
-7368,499,100 // Lotto08
-7416,475,100 // Letter_Of_Recommend
-7417,475,100 // Mission_ScrollA
-7418,475,100 // Mission_ScrollB
-7420,499,100 // Skull_
-7421,499,100 // Key_Red
-7422,499,100 // Key_Yellow
-7423,499,100 // Key_Blue
-7424,499,100 // Key_Green
-7425,499,100 // Key_Black
-7426,499,100 // Magic_Gem_Red
-7427,499,100 // Magic_Gem_Yellow
-7428,499,100 // Magic_Gem_Blue
-7429,499,100 // Magic_Gem_Green
-7430,499,100 // Magic_Gem_Black
-7431,499,100 // Several_Books
-7432,507,100 // Leather_Pouch
-7484,507,100 // Warrior_Symbol
-7485,507,100 // 2nd_Floor_Pass
-7486,507,100 // 3rd_Floor_Pass
-7487,507,100 // Tavern_Wine
-7488,507,100 // Delivery_Box
-7489,507,100 // Villa_Spare_Key
-7490,507,100 // Kyll_Hire_Letter
-7491,507,100 // Iron_Box
-7492,507,100 // Yellow_Key_Card
-7493,507,100 // Golden_Key
-7494,507,100 // Kiel_Button
-7495,507,100 // Blue_Key_Card
-7496,507,100 // Red_Key_Card
-7497,507,100 // Steel_Piece
-7498,507,100 // Rosimier_Key
-7499,507,100 // Family_Portrait
-7500,507,100 // Elysia_Portrait
-7501,507,100 // Kyll_Hire_Letter2
-7502,507,100 // Piece_Memo_Of_James
-7503,507,100 // Man_Portrait
-7504,507,100 // Toy_Motor
-7505,507,100 // Toy_Key
-7506,499,100 // Black_Key_Card
-7508,507,100 // Elysia_Ring
-7509,475,100 // Fancy_Key_Card
-7514,499,100 // Monster_Ticket
-7515,499,100 // Marvelous_Medal
-7516,499,100 // Green_Key_Card
-7518,499,100 // Women's_Medal
-7527,507,100 // Life_Book
-7530,507,100 // Travel_Brochure_01
-7531,507,100 // Travel_Brochure_02
-7532,507,100 // Travel_Brochure_03
-7533,507,100 // Travel_Brochure_04
-7534,507,100 // Photo_Album_01
-7535,507,100 // Photo_Album_02
-7536,507,100 // Photo_Album_03
-7537,507,100 // Photo_Album_04
-7538,499,100 // Sifted_Sand
-7539,499,100 // Poring_Coin
-7547,499,100 // Soccer_Ball
-7548,499,100 // Soccer_Shoes
-7549,499,100 // Brazilian_Flag
-7550,499,100 // Ticket01
-7551,499,100 // Ticket02
-7552,499,100 // Ticket03
-7553,499,100 // Lotus_Flower
-7554,499,100 // Striped_Candle
-7555,499,100 // Green_Incense
-7556,475,100 // Longing_Heart
-7557,475,100 // Invitation_Letter
-7558,475,100 // Invitation_Ticket
-7559,475,100 // Key_Of_Flower_Garden
-7569,475,100 // Hammer_Of_Wind
-7572,475,100 // Magic_Necklace
-7573,475,100 // Magic_Necklace_
-7575,507,100 // Red_Jewel_
-7576,507,100 // Blue_Jewel_
-7577,499,100 // Golden_Jewel_
-7579,499,100 // Silk_Handkerchief
-7580,499,100 // Black_Bead
-7583,499,100 // Evil_Mind
-7584,499,100 // Proof_Of_Guard1
-7585,499,100 // Proof_Of_Guard2
-7586,499,100 // Proof_Of_Guard3
-7587,499,100 // Proof_Of_Guard4
-7588,499,100 // IPOD_Ticker
-7603,499,100 // RO_Party_Ticket
-7614,499,100 // Special_Packing_Paper
-7618,499,100 // Monster_Crystal
-7619,475,100 // Enriched_Elunium
-7620,475,100 // Enriched_Oridecon
-7621,475,100 // Token_Of_Siegfried
-7622,475,100 // New_Style_Coupon
-7623,507,100 // Name_Change_Coupon
-7625,507,100 // Registration_Ticket
-7630,499,100 // Clean_Beach_Brush
-7631,499,100 // Trash_Debris
-7641,499,100 // Medical_Cure_Box
-7690,475,100 // Special_Exchange_Coupons
-7701,499,100 // Dragon_Spirit
-7704,507,100 // Broken_Thermometer
-7705,507,100 // Note_Of_Geologist
-7715,499,100 // Handmade_Choco_Recipe
-7716,499,100 // Strawberry_Choco_Recipe
-7717,499,100 // Choco_Tart_Recipe
-7720,467,100 // Gold_Coin_US
-7722,507,100 // Debt_Note
-7723,507,100 // Diamond_Of_Ruin
-7724,507,100 // Forbidden_Secret_Art
-7725,507,100 // Unlucky_Emerald
-7726,507,100 // Token_Of_King
-7727,499,100 // HP_Doctor_Ticket
-7728,499,100 // SP_Doctor_Ticket
-7729,499,100 // Rok_Star_Badge
-7730,8,100 // Mission_Certificate1
-7731,8,100 // Mission_Certificate2
-7732,8,100 // Mission_Certificate3
-7733,8,100 // Mission_Certificate4
-7734,8,100 // Mission_Certificate5
-7735,8,100 // Mission_Certificate6
-7736,8,100 // Mission_Certificate7
-7737,8,100 // Mission_Certificate8
-7738,8,100 // Mission_Certificate9
-7739,8,100 // Mission_Certificate10
-7740,8,100 // Mission_Certificate11
-7741,8,100 // Mission_Certificate12
-7755,507,100 // Research_Note
-7759,507,100 // Geology_Report
-7763,507,100 // Sticky_Herb
-7764,507,100 // High_Strength_Adhesive
-7765,507,100 // Yaga_Secret_Medicine
-7766,475,100 // Bok_Choy
-7767,475,100 // Chung_E_Cake
-7773,499,100 // War_Badge
-7775,475,100 // Spring_Rabbit_Ticket
-7776,475,100 // Max_Weight_Up_Scroll
-7779,475,100 // Gold_Key_TW
-7780,475,100 // Silver_Key
-7784,475,100 // Fawner_Coupon1
-7785,475,100 // Fawner_Coupon2
-7786,475,100 // Fawner_Coupon3
-7787,475,100 // Fawner_Coupon4
-7788,475,100 // Fawner_Coupon5
-7789,475,100 // Fawner_Coupon6
-7790,475,100 // Fawner_Coupon7
-7791,475,100 // Fawner_Coupon8
-7793,475,100 // Golden_Apple
-7794,475,100 // Fate_Of_Crow
-7800,475,100 // Golden_Apple_
-7801,499,100 // Girl_Fan_Letter
-7802,499,100 // Autograph_Book
-7803,475,100 // Battle_Manual_TW
-7820,507,100 // Morocc_Skin
-7821,475,100 // Green_Apple
-7822,475,100 // Whole_Barbecue
-7823,475,100 // Meat_Veg_Skewer
-7825,475,100 // Heroic_Stone
-7826,499,100 // Continental_Guard_Paper
-7827,499,100 // Mineral_Report
-7828,499,100 // BF_Badge1
-7829,499,100 // BF_Badge2
-7839,499,100 // Crystal_Key
-7840,507,100 // Valkyrie_Gift
-7841,499,100 // Spotted_Paper
-7842,499,100 // Torn_Paper
-7843,499,100 // Old_Paper
-7844,499,100 // Burnt_Paper
-7863,467,100 // GOLD_ID4
-7865,499,100 // Gold_Pouch
-7866,499,100 // Certificate
-7875,467,100 // Pirate_Box
-7876,499,100 // Gold_Key
-7877,499,100 // Red_Ring
-7878,499,100 // Lusalka_Hair
-7879,499,100 // Golden_Thread
-7880,499,100 // Babayaga_Silver_Spoon
-7881,499,100 // Book_Of_Magic
-7882,499,100 // Pointed_Branch
-7883,499,100 // Pointed_Wooden_Flute
-7884,475,100 // Jade_Plate
-7885,475,100 // Sacred_Arrow
-7895,499,100 // TRO_Memory_Book01
-7896,499,100 // TRO_Memory_Book02
-7897,499,100 // TRO_Memory_Book03
-7898,499,100 // VVS_Balmung
-7899,499,100 // Spiritualist_Dagger
-7900,507,100 // Jenoss_Ring1
-7901,507,100 // Jenoss_Ring2
-7902,507,100 // Jenoss_Ring3
-7903,507,100 // Jenoss_Ring4
-7904,507,100 // Piano_Key
-7906,507,100 // Poppy_Wreath
-7907,499,100 // Bobbin_Of_Goddess
-7909,499,100 // Stolen_Cookie
-7910,499,100 // Stolen_Candy
-7912,507,100 // Portable_Snowman
-7913,507,100 // Test_Certificate
-7914,507,100 // Ancient_Document_TW
-7917,507,100 // Magic_Potion
-7919,507,100 // Festival_Ticket
-7920,507,100 // Hero's_Arsenal
-7923,499,100 // KRATHONG_
-7928,507,100 // Brazilian_Flag_
-7929,507,100 // Golden_Coin_
-7930,507,100 // Cowking's_Nose_Ring
-7945,475,100 // Almighty_Charm
-7949,499,100 // Woven_Wool
-7950,499,100 // Ayothaya_Ticket
-7951,499,100 // Gold_Tulip
-7952,507,100 // Gift_From_Romiros
-7953,507,100 // Gift_From_Juliedge
-7954,499,100 // Festival_Ticket_
-7959,1,100 // Ancient_Gold_Coin
-7960,1,100 // Ancient_Silver_Coin
-7961,499,100 // Weapon_Exchange
-7962,499,100 // Treasure_Map1
-7963,499,100 // Treasure_Map2
-7964,499,100 // Treasure_Map3
-7965,499,100 // Treasure_Map4
-7966,499,100 // Weird_Parchment1
-7967,499,100 // Weird_Parchment2
-7968,499,100 // Weird_Parchment3
-7969,499,100 // Weird_Parchment4
-9028,1,100 // Rice_Cake_Egg
-9058,467,100 // Snow_Rabbit_Egg
-11011,499,100 // Barmund_Note
-11012,499,100 // Expedition_Report
-11013,499,100 // Expedition_Report_Vol1
-11014,499,100 // Expedition_Report_Vol2
-11015,499,100 // Expedition_Report_Vol3
-11016,499,100 // Expedition_Report_Vol4
-11500,475,100 // Light_Yellow_Pot
-11501,475,100 // Light_White_Pot
-11502,475,100 // Light_Blue_Pot
-11503,475,100 // Siege_White_Potion
-11504,475,100 // Siege_Blue_Potion
-11514,475,100 // Enriched_Slim_Pot
-11518,499,100 // N_Blue_Potion
-11551,499,100 // Savory_Herb_Salad
-11552,499,100 // Apple_Carrot_Salad
-11553,499,100 // Casual_Stew
-11554,499,100 // Golden_Roasted_Apple
-11565,475,100 // White_Potion_B
-11566,475,100 // Yellow_Potion_
-11567,475,100 // Novice_Potion_B
-11568,475,100 // Red_Slim_Potion_B
-11569,475,100 // Orange_Potion_
-11570,475,100 // Red_Potion_
-11571,475,100 // Green_Potion_
-11572,475,100 // Blue_Potion_B
-11573,475,100 // White_Slim_Potion_B
-11574,475,100 // Yellow_Slim_Potion_
-11575,475,100 // Lucky_Cookie_B
-11576,475,100 // Lucky_Candy_Cane_B
-11577,475,100 // Rice_Ball_B
-11578,475,100 // Candy_Striper_B
-11579,475,100 // Lucky_Candy_B
-11580,475,100 // Candy_B
-11581,475,100 // Piece_Of_Cake_B
-11582,475,100 // Well_Baked_Cookie_B
-11583,475,100 // Chocolate_Drink_B
-11584,475,100 // White_Chocolate_B
-11585,475,100 // HandMade_Chocolate_B
-11586,475,100 // HandMade_Chocolate_B_
-11587,475,100 // Chocolate_B
-//11603,475,100 //
-//11604,475,100 //
-//11606,499,100 //
-//11614,499,100 //
-//11615,499,100 //
-12142,507,100 // Magic_Book
-12153,499,100 // Bow_Mercenary_Scroll1
-12154,499,100 // Bow_Mercenary_Scroll2
-12155,499,100 // Bow_Mercenary_Scroll3
-12156,499,100 // Bow_Mercenary_Scroll4
-12157,499,100 // Bow_Mercenary_Scroll5
-12158,499,100 // Bow_Mercenary_Scroll6
-12159,499,100 // Bow_Mercenary_Scroll7
-12160,499,100 // Bow_Mercenary_Scroll8
-12161,499,100 // Bow_Mercenary_Scroll9
-12162,499,100 // Bow_Mercenary_Scroll10
-12163,499,100 // SwordMercenary_Scroll1
-12164,499,100 // SwordMercenary_Scroll2
-12165,499,100 // SwordMercenary_Scroll3
-12166,499,100 // SwordMercenary_Scroll4
-12167,499,100 // SwordMercenary_Scroll5
-12168,499,100 // SwordMercenary_Scroll6
-12169,499,100 // SwordMercenary_Scroll7
-12170,499,100 // SwordMercenary_Scroll8
-12171,499,100 // SwordMercenary_Scroll9
-12172,499,100 // SwordMercenary_Scroll10
-12173,499,100 // SpearMercenary_Scroll1
-12174,499,100 // SpearMercenary_Scroll2
-12175,499,100 // SpearMercenary_Scroll3
-12176,499,100 // SpearMercenary_Scroll4
-12177,499,100 // SpearMercenary_Scroll5
-12178,499,100 // SpearMercenary_Scroll6
-12179,499,100 // SpearMercenary_Scroll7
-12180,499,100 // SpearMercenary_Scroll8
-12181,499,100 // SpearMercenary_Scroll9
-12182,499,100 // SpearMercenary_Scroll10
-12199,507,100 // Rice_Scroll
-12202,475,100 // Str_Dish10_
-12203,475,100 // Agi_Dish10_
-12204,475,100 // Int_Dish10_
-12205,475,100 // Dex_Dish10_
-12206,475,100 // Luk_Dish10_
-12207,475,100 // Vit_Dish10_
-12208,475,100 // Battle_Manual
-12209,475,100 // Insurance
-12210,475,100 // Bubble_Gum
-12211,475,100 // Kafra_Card
-12212,475,100 // Giant_Fly_Wing
-12213,475,100 // Neuralizer
-12214,475,100 // Convex_Mirror
-12215,475,100 // Blessing_10_Scroll
-12216,475,100 // Inc_Agi_10_Scroll
-12217,475,100 // Aspersio_5_Scroll
-12218,475,100 // Assumptio_5_Scroll
-12219,475,100 // Wind_Walk_10_Scroll
-12220,475,100 // Adrenaline_Scroll
-12221,475,100 // Megaphone_
-12238,467,100 // New_Year_Rice_Cake_1
-12239,467,100 // New_Year_Rice_Cake_2
-12258,499,100 // Bombring_Box
-12259,507,100 // Miracle_Medicine
-12261,507,100 // Secret_Medicine
-12262,507,100 // Inspector_Certificate_
-12263,507,100 // Comp_Battle_Manual
-12264,475,100 // Comp_Bubble_Gum
-12265,475,100 // Comp_Insurance
-12266,507,100 // Sesame_Pastry_
-12267,507,100 // Honey_Pastry_
-12268,507,100 // Rainbow_Cake_
-12269,467,100 // Tasty_Colonel
-12270,467,100 // Tasty_Major
-12271,467,100 // Mre_A
-12272,467,100 // Mre_B
-12273,467,100 // Mre_C
-12274,507,100 // Gold_Pill_1
-12275,507,100 // Gold_Pill_2
-12276,475,100 // Mimic_Scroll
-12277,475,100 // Disguise_Scroll
-12278,475,100 // Alice_Scroll
-12287,507,100 // Love_Angel
-12288,507,100 // Squirrel
-12289,507,100 // Gogo
-12294,507,100 // PC_Bang_Coin_Box1
-12295,507,100 // PC_Bang_Coin_Box2
-12296,507,100 // PC_Bang_Coin_Box3
-12297,507,100 // PC_Bang_Coin_Box4
-12298,507,100 // SP_Potion
-12299,507,100 // Mega_Resist_Potion
-12300,499,100 // Wild_Rose_Scroll
-12301,499,100 // Doppelganger_Scroll
-12302,499,100 // Ygnizem_Scroll
-12303,475,100 // Water_Of_Blessing
-12304,507,100 // Picture_Diary
-12305,507,100 // Mini_Heart
-12306,507,100 // Newcomer
-12307,507,100 // Kid
-12308,507,100 // Magic_Castle
-12309,507,100 // Bulging_Head
-12310,467,100 // Spray_Of_Flowers
-12311,467,100 // Large_Spray_Of_Flowers
-12313,499,100 // Protection_Of_Angel
-12314,507,100 // Noive_Box
-12319,467,100 // Strawberry_Cake
-12320,467,100 // Pineapple_Juice
-12321,467,100 // Spicy_Sandwich
-12322,499,100 // Chocolate_Pie
-12323,499,100 // N_Fly_Wing
-12324,499,100 // N_Butterfly_Wing
-12325,499,100 // N_Magnifier
-12331,507,100 // Ginseng
-12332,467,100 // Fruit_Juice
-12333,507,100 // Ansila
-12340,499,100 // Mysterious_Rice_Powder
-12361,475,100 // Delicious_Shaved_Ice
-12363,475,100 // Fit_Pipe
-12370,475,100 // Gril's_Naivety
-12384,499,100 // Rainbow_Ruby_Water
-12385,499,100 // Rainbow_Ruby_Fire
-12386,499,100 // Rainbow_Ruby_Wind
-12387,499,100 // Rainbow_Ruby_Earth
-12388,507,100 // Runstone_Crush
-12389,507,100 // Runstone_Storm
-12390,507,100 // Runstone_Millennium
-12391,475,100 // Lucky_Egg_C
-12398,507,100 // PCBang_Gift_Box
-12402,475,100 // 29Fruit
-12403,475,100 // Lucky_Egg_C2
-12404,475,100 // Acti_Potion
-12405,475,100 // Underripe_Yggseed
-12406,475,100 // Psychic_ArmorS
-12407,475,100 // PCBang_Coupon_Box
-12413,475,100 // PCBang_Coupon_Box2
-12415,475,100 // Siege_Teleport_Scroll2
-12416,475,100 // Lucky_Egg_C3
-12473,467,100 // RWC_Parti_Box
-12474,467,100 // RWC_Final_Comp_Box
-12476,475,100 // PCBang_Coupon_Box3
-12478,507,100 // Chance_Box
-12479,507,100 // Caracas_Ring_Box
-12480,475,100 // Attend_3Day_Box
-12481,475,100 // Attend_7Day_Box
-12482,475,100 // Attend_10Day_Box
-12483,475,100 // Attend_15Day_Box
-12484,475,100 // Attend_20Day_Box
-12485,475,100 // Attend_25Day_Box
-12486,475,100 // GoldPC_First_Box
-12487,475,100 // PC_4Leaf_Clover_Box
-12488,475,100 // Ticket_Gift_Box
-12489,475,100 // Ticket_Gift_Box2
-12492,475,100 // Crumpled_Paper
-12493,475,100 // Lucky_Egg_C4
-12497,475,100 // E_Bubble_Gum
-12501,475,100 // E_Str_Dish10_
-12502,475,100 // E_Agi_Dish10_
-12503,475,100 // E_Int_Dish10_
-12504,475,100 // E_Dex_Dish10_
-12505,475,100 // E_Luk_Dish10_
-12506,475,100 // E_Vit_Dish10_
-12507,475,100 // E_WOB_Rune
-12508,475,100 // E_WOB_Schwaltz
-12509,475,100 // E_WOB_Rachel
-12510,475,100 // E_WOB_Local
-12514,475,100 // E_Abrasive
-12515,475,100 // E_Med_Life_Potion
-12516,475,100 // E_Small_Life_Potion
-12522,475,100 // E_Blessing_10_Scroll
-12523,475,100 // E_Inc_Agi_10_Scroll
-12529,475,100 // White_Slim_Potion_Box
-12530,475,100 // Mastela_Fruit_Box
-12531,475,100 // White_Potion_Box
-12532,475,100 // Royal_Jelly_Box2
-12533,475,100 // Blue_Herb_Box2
-12534,475,100 // Yggdrasil_Seed_Box
-12535,475,100 // Iggdrasilberry_Box
-12540,499,100 // GM_Warp_Box
-12541,499,100 // Fortune_Cookie1
-12542,499,100 // Fortune_Cookie2
-12543,499,100 // Fortune_Cookie3
-12545,475,100 // Lucky_Egg_C5
-12549,475,100 // White_Slim_Pot_Box2
-12550,475,100 // Poison_Bottle_Box2
-12565,475,100 // Cheer_Scarf_Box
-12566,475,100 // Cheer_Scarf2_Box
-12567,507,100 // Cheer_Scarf3_Box
-12568,507,100 // Cheer_Scarf4_Box
-12569,507,100 // Cheer_Scarf6_Box
-12570,507,100 // Cheer_Scarf8_Box
-12571,507,100 // Cheer_Scarf10_Box
-12572,507,100 // Cheer_Scarf10_Box2
-12577,475,100 // Lucky_Egg_C6
-12578,475,100 // Rapid_Life_Water
-12579,507,100 // Ring_Of_Valkyrie_Box
-12581,475,100 // Vending_Search_Scroll2
-12583,507,100 // PR_Team_Box
-12584,507,100 // Develop_Team_box
-12585,507,100 // Marketing_Team_Box
-12586,507,100 // Operating_Team_Box
-12587,507,100 // Summer_Night_box
-12588,507,100 // Summer_Night_box2
-12589,507,100 // Summer_Night_box3
-12591,475,100 // Uni_Catalog_Bz
-12595,475,100 // Lucky_Egg_C7
-12596,475,100 // Magic_Candy
-12600,507,100 // Treasure_Box_Scroll
-12607,507,100 // Lolli_Pop_Box
-12610,475,100 // Mysterious_Egg
-12622,507,100 // Boarding_Halter
-12625,475,100 // Sapa_Feat_Cert_Pack
-12633,475,100 // Malang_Cat_Can
-12636,467,100 // Malang_Sp_Can
-12637,475,100 // Gong_Bug_Pocket
-12638,475,100 // Dried_Squid_Box
-12639,475,100 // Flying_Fish_Box
-12640,475,100 // Starfish_Box
-12641,475,100 // Lucky_Egg_C8
-12642,475,100 // Fruit_Of_Mastela_Box2
-12644,475,100 // PCBang_Coupon_Box4
-12645,475,100 // J_Aspersio_5_Scroll_C
-12649,507,100 // Lv70_Imperial_Gift
-12650,507,100 // Lv90_Imperial_Gift
-12651,507,100 // Lv110_Imperial_Gift
-12652,507,100 // Lv130_Imperial_Gift
-12653,507,100 // Lv150_Imperial_Gift
-12654,475,100 // Lucky_Egg_C9
-12658,475,100 // Trans_Scroll_Devi
-12659,475,100 // Trans_Scroll_Ray_Arch
-12660,475,100 // Trans_Scroll_Mavka
-12661,475,100 // Trans_Scroll_Marduk
-12662,475,100 // Trans_Scroll_Banshee
-12663,475,100 // Trans_Scroll_Poring
-12664,475,100 // Trans_Scroll_Golem
-12672,499,100 // Start_New_Box
-12673,475,100 // Lucky_Egg_C10
-12684,475,100 // ASPD_Potion
-12685,475,100 // Gryphon_Egg_Scroll
-12702,467,100 // Old_Bleu_Box
-12704,475,100 // Elixir_Of_Life
-12705,475,100 // Noble_Nameplate
-12714,467,100 // Easter_Scroll
-12715,507,100 // Black_Treasure_Box
-12725,475,100 // Runstone_Nosiege
-12726,475,100 // Runstone_Rhydo
-12727,475,100 // Runstone_Verkana
-12728,475,100 // Runstone_Isia
-12729,475,100 // Runstone_Asir
-12730,475,100 // Runstone_Urj
-12731,475,100 // Runstone_Turisus
-12732,475,100 // Runstone_Pertz
-12733,475,100 // Runstone_Hagalas
-12740,507,100 // Inc_Str_Scroll
-12741,507,100 // Inc_Int_Scroll
-12745,507,100 // Skull_Scroll
-12766,507,100 // Reward_Job_BM25
-12785,475,100 // Dragon_Egg_Scroll
-12786,475,100 // Change_Slot_Card
-12790,475,100 // Change_Name_Card
-12795,475,100 // 2011_RWC_Scroll_Kr
-12796,475,100 // Red_Booster
-12799,475,100 // PCBang_Coupon_Box5
-12802,507,100 // Time_Guardian_Box
-12803,507,100 // Beginner_Kit_Box
-12804,475,100 // Cru_Scroll
-12805,475,100 // Mystic_Powder
-12807,507,100 // Mercenary_Casting_
-12808,507,100 // Mother_Love_Box
-12809,507,100 // Level_Up_Box
-12810,507,100 // Event_Gift_Box
-12811,475,100 // Event_Gift_Box_
-12816,507,100 // Old_Ore_Box_
-12817,507,100 // Old_Card_Album_
-12818,507,100 // High_Weapon_Box_
-12819,507,100 // Zherlthsh_Tck_Box_
-//12825,475,100 //
-//12830,475,100 //
-12831,475,100 // Potion_Box
-//12832,475,100 //
-//12833,475,100 //
-12834,475,100 // Undead_Egg
-12835,475,100 // Girls_Heart
-12845,499,100 // WOB_Amatsu
-12847,507,100 // Old_Equipment_Box
-//12854,467,100 //
-//12855,475,100 //
-12863,507,100 // Treasure_Chest_Summoned_II
-//12871,475,100 //
-//12872,475,100 //
-12873,475,100 // TE_Potion_Box
-12883,475,100 // Almighty
-12884,507,100 // Infinite_Concentration_Potion
-12885,507,100 // Infinite_Awakening_Potion
-12886,507,100 // Infinite_Berserk_Potion
-12887,507,100 // C_Wing_Of_Fly
-12888,507,100 // Siege_Kit_Box
-12900,475,100 // Battle_Manual_Box
-12901,475,100 // Insurance_Package
-12902,475,100 // Bubble_Gum_Box
-12903,475,100 // Str_Dish_Box
-12904,475,100 // Agi_Dish_Box
-12905,475,100 // Int_Dish_Box
-12906,475,100 // Dex_Dish_Box
-12907,475,100 // Luk_Dish_Box
-12908,475,100 // Vit_Dish_Box
-12909,475,100 // Kafra_Card_Box
-12910,475,100 // Giant_Fly_Wing_Box
-12911,475,100 // Neuralizer_Box
-12912,475,100 // Convex_Mirror_Box
-12913,475,100 // Blessing_10_Scroll_Box
-12914,475,100 // Inc_Agi_10_Scroll_Box
-12915,475,100 // Aspersio_5_Scroll_Box
-12916,475,100 // Assumptio_5_Scroll_Box
-12917,475,100 // Wind_Walk_10_Scroll_Box
-12918,475,100 // Adrenaline_Scroll_Box
-12919,475,100 // Megaphone_Box
-12920,475,100 // Enriched_Elunium_Box
-12921,475,100 // Enriched_Oridecon_Box
-12922,475,100 // Token_Of_Siegfried_Box
-12923,1,100 // Pet_Egg_Scroll_Box1
-12924,1,100 // Pet_Egg_Scroll_Box2
-12925,1,100 // Pet_Egg_Scroll1
-12926,1,100 // Pet_Egg_Scroll2
-12927,475,100 // J_Aspersio_5_Scroll_Box
-12928,475,100 // J_Aspersio_5_Scroll
-12929,475,100 // Pet_Egg_Scroll_Box3
-12930,475,100 // Pet_Egg_Scroll_Box4
-12931,475,100 // Pet_Egg_Scroll_Box5
-12932,475,100 // Pet_Egg_Scroll3
-12933,475,100 // Pet_Egg_Scroll4
-12934,475,100 // Pet_Egg_Scroll5
-12935,475,100 // Infiltrator_Box
-12936,475,100 // Muramasa_Box
-12937,475,100 // Excalibur_Box
-12938,475,100 // Combat_Knife_Box
-12939,475,100 // Counter_Dagger_Box
-12940,475,100 // Kaiser_Knuckle_Box
-12941,475,100 // Pole_Axe_Box
-12942,475,100 // Mighty_Staff_Box
-12943,475,100 // Right_Epsilon_Box
-12944,475,100 // Balistar_Box
-12945,475,100 // Diary_Of_Great_Sage_Box
-12946,475,100 // Asura_Box
-12947,475,100 // Apple_Of_Archer_Box
-12948,475,100 // Bunny_Band_Box
-12949,475,100 // Sahkkat_Box
-12950,475,100 // Lord_Circlet_Box
-12951,475,100 // Elven_Ears_Box
-12952,475,100 // Steel_Flower_Box
-12953,475,100 // Critical_Ring_Box
-12954,475,100 // Earring_Box
-12955,475,100 // Ring_Box
-12956,475,100 // Necklace_Box
-12957,475,100 // Glove_Box
-12958,475,100 // Brooch_Box
-12959,475,100 // Rosary_Box
-12960,475,100 // Safety_Ring_Box
-12961,475,100 // Vesper_Core01_Box
-12962,475,100 // Vesper_Core02_Box
-12963,475,100 // Vesper_Core03_Box
-12964,475,100 // Vesper_Core04_Box
-12965,475,100 // Emergency_Box1
-12966,475,100 // Emergency_Box2
-12967,475,100 // Emergency_Box3
-12968,475,100 // Emergency_Scroll1
-12969,475,100 // Emergency_Scroll2
-12970,475,100 // Emergency_Scroll3
-12971,475,100 // Teleport_Box1
-12972,475,100 // Teleport_Box2
-12973,475,100 // Teleport_Box3
-12974,475,100 // Teleport_Box4
-12975,475,100 // Teleport_Box5
-12976,475,100 // Teleport_Box6
-12977,475,100 // Teleport_Scroll1
-12978,475,100 // Teleport_Scroll2
-12979,475,100 // Teleport_Scroll3
-12980,475,100 // Teleport_Scroll4
-12981,475,100 // Teleport_Scroll5
-12982,475,100 // Teleport_Scroll6
-12983,475,100 // Pet_Egg_Scroll_Box6
-12984,475,100 // Pet_Egg_Scroll_Box7
-12985,475,100 // Pet_Egg_Scroll_Box8
-12986,475,100 // Pet_Egg_Scroll_Box9
-12987,475,100 // Pet_Egg_Scroll_Box10
-12988,475,100 // Pet_Egg_Scroll_Box11
-12989,475,100 // Pet_Egg_Scroll6
-12990,475,100 // Pet_Egg_Scroll7
-12991,475,100 // Pet_Egg_Scroll8
-12992,475,100 // Pet_Egg_Scroll9
-12993,475,100 // Pet_Egg_Scroll10
-12994,475,100 // Pet_Egg_Scroll11
-12995,475,100 // White_Herb_Box
-12996,475,100 // Blue_Herb_Box
-12997,475,100 // Elunium_Box
-12998,475,100 // Oridecon_Box
-12999,475,100 // Branch_Of_Dead_Tree_Box
-13020,507,100 // Warrior_Balmung_
-13021,507,100 // Combat_Knife_C
-13022,507,100 // Counter_Dagger_C
-13023,507,100 // Asura_C
-13024,507,100 // Sword_Breaker_C
-13025,507,100 // Mail_Breaker_C
-13026,507,100 // Moonlight_Sword_C
-13029,475,100 // Prinsence_Knife
-13036,499,100 // BF_Dagger1
-13037,499,100 // BF_Dagger2
-13042,499,100 // Krieger_Dagger1
-13043,507,100 // Fortune_Sword_I
-13044,507,100 // House_Auger_I
-13045,507,100 // Kamaitachi_I
-13048,507,100 // Damascus_C
-13049,1,100 // Lacma
-13050,499,100 // P_Dagger1
-13051,499,100 // P_Dagger2
-13052,499,100 // Tourist_Dagger
-13066,499,100 // P_Dagger3
-13068,507,100 // Saurel
-13071,1,100 // Upg_Dagger
-13074,507,100 // Ninja_Cutter
-13079,499,100 // Metal_Dagger
-13083,499,100 // TE_Woe_Knife
-13092,1,100 // RWC_Memory_Knife
-13108,499,100 // BF_Pistol1
-13109,507,100 // Wasteland_Outlaw_C
-13110,499,100 // Krieger_Pistol1
-13111,507,100 // Sharpshooter_Revolver
-13112,499,100 // P_Revolver1
-13113,499,100 // P_Revolver2
-13114,499,100 // P_Revolver3
-13115,1,100 // Upg_Revolver
-13117,499,100 // TE_Woe_Pistol
-13118,499,100 // Tiny_Flame
-13119,467,100 // Freedom_Flame
-13125,499,100 // Metal_Revolver
-13126,467,100 // Infinity_Pistol
-13129,467,100 // Unity_Revolver
-//13132,499,100 //
-//13136,499,100 //
-//13144,499,100 //
-13171,499,100 // BF_Rifle1
-13172,499,100 // BF_Gatling_Gun1
-13173,499,100 // BF_Shotgun1
-13174,499,100 // BF_Launcher1
-13175,507,100 // Lever_Action_Rifle_C
-13176,499,100 // Krieger_Rifle1
-13177,499,100 // Krieger_Gatling1
-13178,499,100 // Krieger_Shotgun1
-13179,499,100 // Krieger_Launcher1
-13184,499,100 // TE_Woe_Rifle
-13185,499,100 // TE_Woe_Gatling
-13186,499,100 // TE_Woe_Shotgun
-13187,499,100 // TE_Woe_Grenade
-13208,475,100 // Gong_Bug
-13291,475,100 // Starfish
-13292,475,100 // Dried_Squid
-13293,475,100 // Flying_Fish
-13295,499,100 // Light_Shuriken
-13305,499,100 // BF_Huuma_Shuriken1
-13306,499,100 // BF_Huuma_Shuriken2
-13307,499,100 // Krieger_Huuma_Shuriken1
-13308,507,100 // Huuma_Blaze_I
-13309,507,100 // Huuma_Giant_Wheel_C
-13310,499,100 // P_Huuma_Shuriken1
-13312,507,100 // Huuma_Job_Test
-13316,1,100 // Upg_Huuma_Shuriken
-13317,499,100 // TE_Woe_Huuma
-13322,499,100 // Huuma_Metal_Shuriken
-13323,467,100 // Infinity_Shuriken
-13329,467,100 // Unity_Huuma_Shuriken
-//13330,499,100 //
-//13336,499,100 //
-//13341,499,100 //
-13401,507,100 // Excalibur_C
-13402,507,100 // Cutlas_C
-13403,507,100 // Solar_Sword_C
-13406,475,100 // Edger
-13407,507,100 // Nagan_C
-13408,507,100 // Fire_Brand_C
-13409,507,100 // Immaterial_Sword_C
-13410,499,100 // BF_Sword1
-13411,499,100 // BF_Sword2
-13416,499,100 // Krieger_Onehand_Sword1
-13417,499,100 // Krieger_Onehand_Sword2
-13418,499,100 // Krieger_Onehand_Sword3
-13419,507,100 // Holy_Saber
-13420,1,100 // Honglyun's_Sword
-13422,507,100 // Flamberge_C
-13423,499,100 // P_Sabre1
-13424,499,100 // P_Sabre2
-13425,499,100 // Tourist_Sword
-13434,499,100 // P_Saber3
-13439,499,100 // TE_Woe_Sword
-13450,1,100 // Saber__
-13456,467,100 // Unity_Sword
-13457,467,100 // Unity_Dagger
-//13483,499,100 //
-//13495,499,100 //
-13500,475,100 // Insurance60_Package
-13501,475,100 // Assorted_Scroll_Box
-13502,475,100 // Drooping_Kitty_Box
-13503,475,100 // Magestic_Goat_Box
-13504,475,100 // Deviruchi_Cap_Box
-13505,475,100 // Executioner_Box
-13506,475,100 // Brood_Axe_Box
-13507,475,100 // Tomahawk_Box
-13508,475,100 // Bow_Of_Rudra_Box
-13509,475,100 // Cutlas_Box
-13510,475,100 // Solar_Sword_Box
-13511,475,100 // Sword_Breaker_Box
-13512,475,100 // Mail_Breaker_Box
-13513,475,100 // Moonlight_Sword_Box
-13514,475,100 // Spanner_Box
-13515,475,100 // Grape_Box
-13516,475,100 // Royal_Jelly_Box
-13517,475,100 // Yggdrasilberry_Box
-13518,475,100 // Weapon_Card_Scroll_Box
-13519,475,100 // Armor_Card_Scroll_Box
-13520,475,100 // Helmet_Card_Scroll_Box
-13521,475,100 // Hood_Card_Scroll_Box
-13522,475,100 // Hood_Card_Scroll_Box2
-13523,475,100 // Shoes_Card_Scroll_Box
-13524,475,100 // Accy_Card_Scroll_Box
-13525,475,100 // Zeny_Scroll_Box
-13526,475,100 // Pet_Egg_Scroll_Box1_
-13527,475,100 // Pet_Egg_Scroll_Box2_
-13528,475,100 // Pet_Egg_Scroll_Box3_
-13529,475,100 // Pet_Egg_Scroll_Box4_
-13530,475,100 // Pet_Egg_Scroll_Box5_
-13531,475,100 // Light_Red_Pot_Box
-13532,475,100 // Light_Orange_Pot_Box
-13533,475,100 // Light_Yellow_Pot_Box
-13534,475,100 // Light_White_Pot_Box
-13535,475,100 // Light_Center_Pot_Box
-13536,475,100 // Light_Awakening_Pot_Box
-13537,475,100 // Light_Berserk_Pot_Box
-13538,475,100 // Meteor_10_Scroll_Box
-13539,475,100 // Storm_10_Scroll_Box
-13540,475,100 // Vermilion_10_Scroll_Box
-13541,475,100 // Lex_Aeterna_Scroll_Box
-13542,475,100 // Magnificat_5_Scroll_Box
-13543,475,100 // CP_Helm_Scroll_Box
-13544,475,100 // CP_Shield_Scroll_Box
-13545,475,100 // CP_Armor_Scroll_Box
-13546,475,100 // CP_Weapon_Scroll_Box
-13547,475,100 // Repair_Scroll_Box
-13548,475,100 // Big_Bun_Box
-13549,475,100 // Pill__Box
-13550,475,100 // Superb_Fish_Slice_Box
-13551,475,100 // Chewy_Ricecake_Box
-13552,475,100 // Oriental_Pastry_Box
-13553,475,100 // Dun_Tele_Scroll1_Box
-13554,475,100 // Weapon_Card_Scroll_Box2
-13555,475,100 // Weapon_Card_Scroll_Box3
-13556,475,100 // Armor_Card_Scroll_Box2
-13557,475,100 // Accy_Card_Scroll_Box2
-13558,475,100 // Weapon_Card_Scroll
-13559,475,100 // Armor_Card_Scroll
-13560,475,100 // Helmet_Card_Scroll
-13561,475,100 // Hood_Card_Scroll
-13562,475,100 // Hood_Card_Scroll2
-13563,475,100 // Shoes_Card_Scroll
-13564,475,100 // Accy_Card_Scroll
-13565,475,100 // Weapon_Card_Scroll2
-13566,475,100 // Weapon_Card_Scroll3
-13567,475,100 // Armor_Card_Scroll2
-13568,475,100 // Accy_Card_Scroll2
-13569,475,100 // PVP_Tele_Scroll_Box
-13570,475,100 // Giant_Fly_Wing_Box50
-13571,475,100 // Giant_Fly_Wing_Box100
-13572,475,100 // Dex_Dish_Box30
-13573,475,100 // Dex_Dish_Box50
-13574,475,100 // Luk_Dish_Box30
-13575,475,100 // Luk_Dish_Box50
-13576,475,100 // Inc_Agi_10_Box30
-13577,475,100 // Inc_Agi_10_Box50
-13578,475,100 // Vit_Dish_Box30
-13579,475,100 // Vit_Dish_Box50
-13580,475,100 // Insurance_Package30
-13581,475,100 // Insurance_Package50
-13582,475,100 // Convex_Mirror_Box5
-13583,475,100 // Convex_Mirror_Box30
-13584,475,100 // Blessing10_Box30
-13585,475,100 // Blessing10_Box50
-13586,475,100 // Adrenaline10_Box30
-13587,475,100 // Adrenaline10_Box50
-13588,475,100 // Assumptio_5_Box30
-13589,475,100 // Assumptio_5_Box50
-13590,475,100 // Aspersio_5_Box30
-13591,475,100 // Aspersio_5_Box50
-13592,475,100 // Agi_Dish_Box30
-13593,475,100 // Agi_Dish_Box50
-13594,475,100 // Wind_Walk10_Box30
-13595,475,100 // Wind_Walk10_Box50
-13596,475,100 // Int_Dish_Box30
-13597,475,100 // Int_Dish_Box50
-13598,475,100 // Battle_Manual_Box1
-13599,475,100 // Battle_Manual_Box5
-13600,475,100 // Siegfried_Box5
-13601,475,100 // Siegfried_Box20
-13602,475,100 // Kafra_Card_Box30
-13603,475,100 // Kafra_Card_Box50
-13604,475,100 // Str_Dish_Box30
-13605,475,100 // Str_Dish_Box50
-13606,475,100 // Bubble_Gum_Box1
-13607,475,100 // Bubble_Gum_Box5
-13608,475,100 // Megaphone_Box1
-13609,475,100 // Megaphone_Box5
-13610,475,100 // Enriched_Elunium_Box5
-13611,475,100 // Enriched_Oridecon_Box5
-13612,475,100 // Handcuff_Box
-13613,475,100 // Super_Pet_Egg_Box1
-13614,475,100 // Super_Pet_Egg_Box2
-13615,475,100 // Super_Pet_Egg_Box3
-13616,475,100 // Super_Pet_Egg_Box4
-13617,475,100 // Super_Pet_Egg1
-13618,475,100 // Super_Pet_Egg2
-13619,475,100 // Super_Pet_Egg3
-13620,475,100 // Super_Pet_Egg4
-13621,475,100 // Greed_Box30
-13622,475,100 // Greed_Box50
-13623,475,100 // Greed_Box100
-13624,475,100 // Flee_30_Scroll_Box
-13625,475,100 // Accuracy_30_Scroll_Box
-13626,475,100 // Super_Card_Pet_Egg_Box1
-13627,475,100 // Super_Card_Pet_Egg_Box2
-13628,475,100 // Super_Card_Pet_Egg_Box3
-13629,475,100 // Super_Card_Pet_Egg_Box4
-13630,475,100 // Super_Card_Pet_Egg1
-13631,475,100 // Super_Card_Pet_Egg2
-13632,475,100 // Super_Card_Pet_Egg3
-13633,475,100 // Super_Card_Pet_Egg4
-13634,475,100 // Vigorgra_Package1
-13635,475,100 // Vigorgra_Package2
-13636,475,100 // Vigorgra_Package3
-13637,475,100 // Vigorgra_Package4
-13638,475,100 // Vigorgra_Package5
-13639,475,100 // Vigorgra_Package6
-13640,475,100 // Vigorgra_Package7
-13641,475,100 // Vigorgra_Package8
-13642,475,100 // Vigorgra_Package9
-13643,475,100 // Vigorgra_Package10
-13644,475,100 // Vigorgra_Package11
-13645,475,100 // Vigorgra_Package12
-13646,475,100 // Infiltrator_Box1
-13647,475,100 // Muramasa_Box1
-13648,475,100 // Excalibur_Box1
-13649,475,100 // Combat_Knife_Box1
-13650,475,100 // Counter_Dagger_Box1
-13651,475,100 // Kaiser_Knuckle_Box1
-13652,475,100 // Pole_Axe_Box1
-13653,475,100 // Mighty_Staff_Box1
-13654,475,100 // Right_Epsilon_Box1
-13655,475,100 // Balistar_Box1
-13656,475,100 // Diary_Of_Sage_Box1
-13657,475,100 // Asura_Box1
-13658,475,100 // Apple_Of_Archer_Box1
-13659,475,100 // Bunny_Band_Box1
-13660,475,100 // Sahkkat_Box1
-13661,475,100 // Lord_Circlet_Box1
-13662,475,100 // Elven_Ears_Box1
-13663,475,100 // Steel_Flower_Box1
-13664,475,100 // Critical_Ring_Box1
-13665,475,100 // Earring_Box1
-13666,475,100 // Ring_Box1
-13667,475,100 // Necklace_Box1
-13668,475,100 // Glove_Box1
-13669,475,100 // Brooch_Box1
-13670,475,100 // Rosary_Box1
-13671,475,100 // Safety_Ring_Box1
-13672,475,100 // Vesper_Core01_Box1
-13673,475,100 // Vesper_Core02_Box1
-13674,475,100 // Vesper_Core03_Box1
-13675,475,100 // Vesper_Core04_Box1
-13676,475,100 // Drooping_Kitty_Box1
-13677,475,100 // Magestic_Goat_Box1
-13678,475,100 // Deviruchi_Cap_Box1
-13679,475,100 // Executioner_Box1
-13680,475,100 // Brood_Axe_Box1
-13681,475,100 // Tomahawk_Box1
-13682,475,100 // Bow_Of_Rudra_Box1
-13683,475,100 // Cutlas_Box1
-13684,475,100 // Solar_Sword_Box1
-13685,475,100 // Sword_Breaker_Box1
-13686,475,100 // Mail_Breaker_Box1
-13687,475,100 // Moonlight_Sword_Box1
-13688,475,100 // Spanner_Box1
-13689,475,100 // Bok_Choy_Box
-13690,475,100 // Chung_E_Cake_Box
-13691,475,100 // Freyja_Overcoat_Box
-13692,475,100 // Freyja_Boots_Box
-13693,475,100 // Freyja_Cape_Box
-13694,475,100 // Freyja_Crown_Box
-13695,475,100 // Battle_Manual25_Box
-13696,475,100 // Battle_Manual100_Box
-13696,475,100 // Battle_Manual100_Box
-13697,475,100 // J_Blessing10_Box
-13698,475,100 // J_Inc_Agi10_Box
-13699,475,100 // J_Wind_Walk10_Box
-13700,475,100 // J_Adrenaline10_Box
-13701,475,100 // Pet_Egg_Scroll12
-13702,475,100 // Pet_Egg_Scroll13
-13703,475,100 // Pet_Egg_Scroll14
-13704,475,100 // Super_Pet_Egg5
-13705,475,100 // Super_Pet_Egg6
-13706,475,100 // Super_Pet_Egg7
-13707,475,100 // Super_Pet_Egg8
-13708,475,100 // Pet_Egg_Scroll_E
-13709,475,100 // BRO_Package_1
-13710,475,100 // Max_Weight_Up_Box
-13711,475,100 // Small_Life_Potion_Box
-13712,475,100 // Small_Life_Potion_Box30
-13713,475,100 // Small_Life_Potion_Box50
-13714,475,100 // Med_Life_Potion_Box
-13715,475,100 // Med_Life_Potion_Box30
-13716,475,100 // Med_Life_Potion_Box50
-13717,475,100 // Abrasive_Box5
-13718,475,100 // Abrasive_Box10
-13719,475,100 // Regeneration_Box5
-13720,475,100 // Regeneration_Box10
-13721,475,100 // Dun_Tele_Scroll_Box10
-13722,475,100 // Pecopeco_Hairband_Box
-13723,475,100 // Red_Glasses_Box
-13724,475,100 // Whisper_Mask_Box
-13725,475,100 // Ramen_Hat_Box
-13726,475,100 // Gold_Box_
-13727,475,100 // Silver_Box_
-13728,475,100 // Gold_Key1_Box
-13729,475,100 // Gold_Key5_Box
-13730,475,100 // Silver_Key1_Box
-13731,475,100 // Silver_Key5_Box
-13734,475,100 // Pecopeco_Hairband_Box1
-13735,475,100 // Red_Glasses_Box1
-13736,475,100 // Whisper_Mask_Box1
-13737,475,100 // Ramen_Hat_Box1
-13738,475,100 // Glass_Of_Illusion_Box5
-13739,475,100 // Glass_Of_Illusion_Box10
-13740,475,100 // Shadow_Armor_S_Box5
-13741,475,100 // Shadow_Armor_S_Box10
-13742,475,100 // Shadow_Armor_S_Box30
-13743,475,100 // Holy_Armor_S_Box5
-13744,475,100 // Holy_Armor_S_Box10
-13745,475,100 // Holy_Armor_S_Box30
-13746,475,100 // S_Def_Potion_Box10
-13747,475,100 // S_Def_Potion_Box30
-13748,475,100 // S_Def_Potion_Box50
-13749,475,100 // B_Def_Potion_Box10
-13750,475,100 // B_Def_Potion_Box30
-13751,475,100 // B_Def_Potion_Box50
-13752,475,100 // S_Mdef_Potion_Box10
-13753,475,100 // S_Mdef_Potion_Box30
-13754,475,100 // S_Mdef_Potion_Box50
-13755,475,100 // B_Mdef_Potion_Box10
-13756,475,100 // B_Mdef_Potion_Box30
-13757,475,100 // B_Mdef_Potion_Box50
-13758,475,100 // Battle_Manual_X3_Box
-13759,475,100 // In_Blue_Herb_Box
-13760,475,100 // Honey_Box
-13761,475,100 // Empty_Bottle_Box
-13762,475,100 // In_Royal_Jelly_Box
-13763,507,100 // 5_Anniversary_Coin_Box
-13764,475,100 // Battle_Manual_Box_TW
-13765,507,100 // Certificate_TW_Box
-13766,475,100 // Nagan_Box
-13767,475,100 // Skewer_Box
-13768,475,100 // Survival_Rod_Box
-13769,475,100 // Quadrille_Box
-13770,475,100 // Great_Axe_Box
-13771,475,100 // Bloody_Roar_Box
-13772,475,100 // Hardback_Box
-13773,475,100 // Fire_Brand_Box
-13774,475,100 // Immaterial_Sword_Box
-13775,475,100 // Unholy_Touch_Box
-13776,475,100 // Cloak_Of_Survival_Box
-13777,475,100 // Masquerade_Box
-13778,475,100 // Orc_Hero_Helm_Box
-13779,475,100 // Evil_Wing_Ears_Box
-13780,475,100 // Dark_Blindfold_Box
-13781,475,100 // kRO_Drooping_Kitty_Box
-13782,475,100 // Corsair_Box
-13783,475,100 // Bloody_Iron_Ball_Box
-13784,475,100 // Spiritual_Ring_Box
-13785,475,100 // Nagan_Box1
-13786,475,100 // Skewer_Box1
-13787,475,100 // Survival_Rod_Box1
-13788,475,100 // Quadrille_Box1
-13789,475,100 // Great_Axe_Box1
-13790,475,100 // Bloody_Roar_Box1
-13791,475,100 // Hardback_Box1
-13792,475,100 // Fire_Brand_Box1
-13793,475,100 // Immaterial_Sword_Box1
-13794,475,100 // Unholy_Touch_Box1
-13795,475,100 // Cloak_Of_Survival_Box1
-13796,475,100 // Masquerade_Box1
-13797,475,100 // Orc_Hero_Helm_Box1
-13798,475,100 // Evil_Wing_Ears_Box1
-13799,475,100 // Dark_Blindfold_Box1
-13800,475,100 // kRO_Drooping_Kitty_Box1
-13801,475,100 // Corsair_Box1
-13802,475,100 // Bloody_Iron_Ball_Box1
-13803,475,100 // Spiritual_Ring_Box1
-13804,475,100 // Fire_Cracker_Love_Box
-13805,475,100 // Fire_Cracker_Wday_Box
-13806,475,100 // Fire_Cracker_Vday_Box
-13807,475,100 // Fire_Cracker_Bday_Box
-13808,475,100 // Fire_Cracker_Xmas_Box
-13809,475,100 // Blue_Gemstone_Box
-13810,475,100 // Blue_Potion_Box
-13811,475,100 // Food_Box_Lv1
-13812,475,100 // Food_Box_Lv2
-13813,475,100 // Food_Box_Lv3
-13814,475,100 // Indonesia_Box
-13815,475,100 // Knife_Goblin_Box
-13816,475,100 // Flail_Goblin_Box
-13817,475,100 // Hammer_Goblin_Box
-13818,475,100 // Red_Deleter_Box
-13819,475,100 // Diabolic_Box
-13820,475,100 // Wanderer_Box
-13821,475,100 // Green_Apple_Box
-13822,475,100 // Whole_Barbecue_Box
-13823,475,100 // Meat_Veg_Skewer_Box
-13824,475,100 // Spirit_Liquor_Box
-13826,475,100 // Power_Box1
-13827,475,100 // Power_Box2
-13828,475,100 // Resist_Box1
-13829,475,100 // Resist_Box2
-13830,475,100 // Stat_Boost1
-13831,475,100 // Stat_Boost2
-13832,475,100 // Stat_Boost3
-13833,475,100 // Stat_Boost4
-13834,475,100 // Dun_Tele_Scroll2_Box5
-13835,475,100 // Dun_Tele_Scroll2_Box10
-13836,475,100 // Mbl_Str_Dish_Box
-13837,475,100 // Mbl_Agi_Dish_Box
-13838,475,100 // Mbl_Int_Dish_Box
-13839,475,100 // Mbl_Dex_Dish_Box
-13840,475,100 // Mbl_Luk_Dish_Box
-13841,475,100 // Mbl_Vit_Dish_Box
-13842,475,100 // Mbl_Kafra_Card_Box
-13843,475,100 // Mbl_Battle_Manual_Box
-13844,475,100 // Heroic_Stone_Box
-13845,475,100 // Mysterious_Travel_Sack1
-13846,475,100 // Mysterious_Travel_Sack2
-13847,475,100 // Mysterious_Travel_Sack3
-13848,475,100 // Mysterious_Travel_Sack4
-13849,475,100 // WOB_Box_Rune5
-13850,475,100 // WOB_Box_Rune10
-13851,475,100 // WOB_Box_Schawaltz5
-13852,475,100 // WOB_Box_Schawaltz10
-13853,475,100 // WOB_Box_Rachel5
-13854,475,100 // WOB_Box_Rachel10
-13855,475,100 // WOB_Box_Local5
-13856,475,100 // WOB_Box_Local10
-13857,475,100 // Spark_Candy_Box5
-13858,475,100 // Spark_Candy_Box10
-13859,507,100 // Directive_A_Envelope
-13860,507,100 // Directive_B_Envelope
-13861,475,100 // Mini_Battle_Manual_Box
-13862,475,100 // Trial_Box
-13863,475,100 // Repair_Scroll_Box10
-13864,475,100 // Hockey_Mask_Box
-13865,475,100 // Observer_Box
-13866,475,100 // Flying_Angel_Box
-13867,475,100 // Neko_Mimi_Box
-13868,475,100 // MFH_Box
-13869,475,100 // Chick_Hat_Box
-13870,475,100 // New_Style_Box
-13871,475,100 // Magician_Card_Box
-13872,475,100 // Acolyte_Card_Box
-13873,475,100 // Archer_Card_Box
-13874,475,100 // Swordman_Card_Box
-13875,475,100 // Thief_Card_Box
-13876,475,100 // Merchant_Card_Box
-13877,475,100 // Clock_Tower_Card_Box
-13878,475,100 // Geffenia_Card_Box
-13879,475,100 // Owl_Card_Box
-13880,475,100 // Ghost_Card_Box
-13881,475,100 // Nightmare_Card_Box
-13882,475,100 // Curse_Card_Box
-13883,475,100 // Sleep_Card_Box
-13884,475,100 // Freeze_Card_Box
-13885,475,100 // Stun_Card_Box
-13886,475,100 // Silence_Card_Box
-13887,475,100 // Blind_Card_Box
-13888,475,100 // Chaos_Card_Box
-13889,475,100 // Elunium_Box_
-13890,475,100 // Oridecon_Box_
-13891,475,100 // Fire_Converter_Box
-13892,475,100 // Water_Converter_Box
-13893,475,100 // Wind_Converter_Box
-13894,475,100 // Earth_Converter_Box
-13895,475,100 // Starter_Pack
-13896,475,100 // Mimic_Summon_Box5
-13897,475,100 // Disguise_Summon_Box5
-13898,475,100 // Alice_Summon_Box5
-13899,475,100 // Mimic_Summon_Box10
-13900,475,100 // Disguise_Summon_Box10
-13901,475,100 // Alice_Summon_Box10
-13902,475,100 // Fish_Head_Hat_Box
-13903,475,100 // Santa_Poring_Hat_Box
-13904,475,100 // Bell_Ribbon_Box
-13905,475,100 // Hard_Core_Set_Box
-13906,475,100 // Kitty_Set_Box
-13907,475,100 // Soft_Core_Set_Box
-13908,475,100 // Deviruchi_Set_Box
-13909,475,100 // MVP_Hunt_Box
-13910,475,100 // Brewing_Box
-13911,475,100 // Xmas_Pet_Scroll
-13912,475,100 // Party_Blessing_Box
-13913,475,100 // Party_Inc_Agi_Box
-13914,475,100 // Party_Assumptio_Box
-13915,475,100 // Love_Angel_Box
-13916,475,100 // Squirrel_Box
-13917,475,100 // Gogo_Box
-13918,475,100 // Drooping_W_Kitty_Box
-13919,475,100 // L_Magestic_Goat_Box
-13920,475,100 // Satanic_Chain_P_Box
-13921,475,100 // Antique_Pipe_Box
-13922,475,100 // Rabbit_Ear_Hat_Box
-13923,475,100 // Darkness_Helm_Box
-13924,475,100 // L_Orc_Hero_Helm_Box
-13925,475,100 // Lucky_Scroll08
-13926,475,100 // Crusader_Card_Box
-13927,475,100 // Alchemist_Card_Box
-13928,475,100 // Rogue_Card_Box
-13929,475,100 // Bard_Dancer_Card_Box
-13930,475,100 // Sage_Card_Box
-13931,475,100 // Monk_Card_Box
-13932,475,100 // Sylph_Box
-13933,475,100 // Undine_Box
-13934,475,100 // Salamander_Box
-13935,475,100 // Soul_Box
-13936,475,100 // Noum_Bpx
-13937,475,100 // Robo_Eye_Box
-13938,475,100 // Twin_Ribbon_Box
-13939,475,100 // Diadem_Box
-13940,475,100 // Siege_Tele_Scroll_Box
-13941,475,100 // Valentine_Scroll_TW
-13942,475,100 // Love_Angel_Box_1m
-13943,475,100 // Squirrel_Box_1m
-13944,475,100 // Gogo_Box_1m
-13945,475,100 // Br_SwordPackage
-13946,475,100 // Br_MagePackage
-13947,475,100 // Br_AcolPackage
-13948,475,100 // Br_ArcherPackage
-13949,475,100 // Br_MerPackage
-13950,475,100 // Br_ThiefPackage
-13951,475,100 // Wasteland_Outlaw_Box
-13952,475,100 // Lever_Action_Rifle_Box
-13953,475,100 // All_In_One_Ring_Box
-13954,475,100 // Spiritual_Tunic_Box
-13955,475,100 // Recuperative_Armor_Box
-13956,475,100 // Shelter_Resistance_Box
-13957,475,100 // Sylphid_Manteau_Box
-13958,475,100 // Refresh_Shoes_Box
-13959,475,100 // Toast_Box
-13960,475,100 // Name_Change_Coupon_Box
-13961,475,100 // Mojji_Box
-13962,475,100 // Deprotai_Doll_Hat_Box
-13963,475,100 // Claris_Doll_Hat_Box
-13964,475,100 // Sorin_Doll_Hat_Box
-13965,475,100 // Tayelin_Doll_Hat_Box
-13966,475,100 // Binit_Doll_Hat_Box
-13967,475,100 // Debril_Doll_Hat_Box
-13968,475,100 // Bubblegum_Lower_Box
-13969,475,100 // Lucky_Clip_Box
-13970,475,100 // Iron_10_Box
-13971,475,100 // Steel_10_Box
-13972,475,100 // Coal_10_Box
-13973,475,100 // Poison_Bottle_30_Box
-13974,475,100 // TW_Scroll01
-13975,475,100 // Picture_Diary_Box
-13976,475,100 // Mini_Heart_Box
-13977,475,100 // Newcomer_Box
-13978,475,100 // Kid_Box
-13979,475,100 // Magic_Castle_Box
-13980,475,100 // Bulging_Head_Box
-13981,475,100 // Picture_Diary_Box_1m
-13982,475,100 // Mini_Heart_Box_1m
-13983,475,100 // Newcomer_Box_1m
-13984,475,100 // Kid_Box_1m
-13985,475,100 // Magic_Castle_Box_1m
-13986,475,100 // Bulging_Head_Box_1m
-13987,475,100 // Ori_Stone_5_Box
-13988,475,100 // Ori_Stone_50_Box
-13989,475,100 // Acidbomb_10_Box
-13990,475,100 // Job_Manual50_Box
-13991,475,100 // Tiger_Mask_Box
-13992,475,100 // Cat_Hat_Box
-13993,475,100 // Alice_Doll_Box
-13994,475,100 // Speed_Up_Potion_Box5
-13995,475,100 // Speed_Up_Potion_Box10
-13996,475,100 // Big_Bun_Box100
-13997,475,100 // Big_Bun_Box500
-13998,475,100 // Giant_Fly_Wing_Box500
-13999,475,100 // Pill__Box100
-14000,475,100 // Pill__Box500
-14001,475,100 // Basic_Siege_Supply_Box
-14002,475,100 // Adv_Siege_Supply_Box
-14003,475,100 // Elite_Siege_Supply_Box
-14004,475,100 // Poison_Bottle_10_Box
-14005,475,100 // Poison_Bottle_5_Box
-14006,475,100 // F_Drooping_W_Kitty_Box
-14007,475,100 // F_Rabbit_Ear_Hat_Box
-14008,475,100 // F_L_Orc_Hero_Helm_Box
-14009,475,100 // F_Love_Angel_Box
-14010,475,100 // F_Squirrel_Box
-14011,475,100 // F_Gogo_Box
-14012,475,100 // F_Love_Angel_Box_1m
-14013,475,100 // F_Squirrel_Box_1m
-14014,475,100 // F_Gogo_Box_1m
-14015,475,100 // F_Wasteland_Outlaw_Box
-14016,475,100 // F_Lever_Action_Rifle_Box
-14017,475,100 // F_All_In_One_Ring_Box
-14018,475,100 // F_Spritual_Tunic_Box
-14019,475,100 // F_Recuperative_Box
-14020,475,100 // F_Shelter_Resist_Box
-14021,475,100 // F_Sylphid_Manteau_Box
-14022,475,100 // F_Refresh_Shoes_Box
-14023,475,100 // F_Toast_Box
-14024,475,100 // F_Robo_Eye_Box
-14025,475,100 // F_Twin_Ribbon_Box
-14026,475,100 // F_Diadem_Box
-14027,475,100 // F_Fish_Head_Hat_Box
-14028,475,100 // F_Santa_Poring_Hat_Box
-14029,475,100 // F_Bell_Ribbon_Box
-14030,475,100 // F_Mimic_Scroll_Box5
-14031,475,100 // F_Disguise_Scroll_Box5
-14032,475,100 // F_Alice_Scroll_Box5
-14033,475,100 // F_Mimic_Scroll_Box10
-14034,475,100 // F_Disguise_Scroll_Box10
-14035,475,100 // F_Alice_Scroll_Box10
-14036,475,100 // F_New_Style_Coupon_Box
-14037,475,100 // F_Repair_Scroll_Box
-14038,475,100 // F_Repair_Scroll_Box10
-14039,475,100 // F_Hockey_Mask_Box
-14040,475,100 // F_Observer_Box
-14041,475,100 // F_WOB_Rune_Box5
-14042,475,100 // F_WOB_Rune_Box10
-14043,475,100 // F_WOB_Schwaltz_Box5
-14044,475,100 // F_WOB_Schwaltz_Box10
-14045,475,100 // F_WOB_Rachel_Box5
-14046,475,100 // F_WOB_Rachel_Box10
-14047,475,100 // F_WOB_Local_Box5
-14048,475,100 // F_WOB_Local_Box10
-14049,475,100 // F_Spark_Candy_Box5
-14050,475,100 // F_Spark_Candy_Box10
-14051,475,100 // F_Dun_Tel_Scroll2_Box5
-14052,475,100 // F_Dun_Tel_Scroll2_Box10
-14053,475,100 // F_Little_Angel_Doll_Box
-14054,475,100 // F_Triple_Poring_Hat_Box
-14055,475,100 // F_Nagan_Box
-14056,475,100 // F_Skewer_Box
-14057,475,100 // F_Survival_Rod_Box
-14058,475,100 // F_Quadrille_Box
-14059,475,100 // F_Great_Axe_Box
-14060,475,100 // F_Bloody_Roar_Box
-14061,475,100 // F_Hardback_Box
-14062,475,100 // F_Fire_Brand_Box
-14063,475,100 // F_Immaterial_Sword_Box
-14064,475,100 // F_Unholy_Touch_Box
-14065,475,100 // F_Clack_Of_Servival_Box
-14066,475,100 // F_Masquerade_Box
-14067,475,100 // F_Orc_Hero_Helm_Box
-14068,475,100 // F_Ear_Of_Devil_Wing_Box
-14069,475,100 // F_Dark_Blindfold_Box
-14070,475,100 // F_K_Drooping_Kitty_Box
-14071,475,100 // F_Corsair_Box
-14072,475,100 // F_Bloody_Iron_Ball_Box
-14073,475,100 // F_Spiritual_Ring_Box
-14074,475,100 // F_G_O_I_Box5
-14075,475,100 // F_G_O_I_Box10
-14076,475,100 // F_Shadow_Armor_S_Box5
-14077,475,100 // F_Shadow_Armor_S_Box10
-14078,475,100 // F_Shadow_Armor_S_Box30
-14079,475,100 // F_Holy_Armor_S_Box5
-14080,475,100 // F_Holy_Armor_S_Box10
-14081,475,100 // F_Holy_Armor_S_Box30
-14082,475,100 // FS_Def_Potion_Box10
-14083,475,100 // FS_Def_Potion_Box30
-14084,475,100 // FS_Def_Potion_Box50
-14085,475,100 // FB_Def_Potion_Box10
-14086,475,100 // FB_Def_Potion_Box30
-14087,475,100 // FB_Def_Potion_Box50
-14088,475,100 // FS_Mdef_Potion_Box10
-14089,475,100 // FS_Mdef_Potion_Box30
-14090,475,100 // FS_Mdef_Potion_Box50
-14091,475,100 // FB_Mdef_Potion_Box10
-14092,475,100 // FB_Mdef_Potion_Box30
-14093,475,100 // FB_Mdef_Potion_Box50
-14094,475,100 // F_Flying_Angel_Box
-14095,475,100 // F_Cat_Hat_Box
-14096,475,100 // F_M_F_H_Box
-14097,475,100 // F_Chick_Hat_Box
-14098,475,100 // F_Pecopeco_Hairband_Box
-14099,475,100 // F_Red_Glasses_Box
-14100,475,100 // F_Whisper_Mask_Box
-14101,475,100 // F_Ramen_Hat_Box
-14102,475,100 // F_Dun_Tele_Scroll1_Box
-14103,475,100 // F_Max_Weight_Up_Box
-14104,475,100 // F_S_Life_Potion_Box
-14105,475,100 // F_S_Life_Potion_Box30
-14106,475,100 // F_S_Life_Potion_Box50
-14107,475,100 // F_M_Life_Potion_Box
-14108,475,100 // F_M_Life_Potion_Box30
-14109,475,100 // F_M_Life_Potion_Box50
-14110,475,100 // F_Abrasive_Box5
-14111,475,100 // F_Abrasive_Box10
-14112,475,100 // F_Regeneration_Box5
-14113,475,100 // F_Regeneration_Box10
-14114,475,100 // F_Dun_Tele_Scroll_Box10
-14115,475,100 // F_Infiltrator_Box
-14116,475,100 // F_Muramasa_Box
-14117,475,100 // F_Excalibur_Box
-14118,475,100 // F_Combat_Knife_Box
-14119,475,100 // F_Counter_Dagger_Box
-14120,475,100 // F_Kaiser_Knuckle_Box
-14121,475,100 // F_Mighty_Staff_Box
-14122,475,100 // F_Right_Epsilon_Box
-14123,475,100 // F_Balistar_Box
-14124,475,100 // F_Diary_Of_Great_Sage
-14125,475,100 // F_Asura_Box
-14126,475,100 // F_Apple_Of_Archer_Box
-14127,475,100 // F_Bunny_Band_Box
-14128,475,100 // F_Sahkkat_Box
-14129,475,100 // F_Lord_Circlet_Box
-14130,475,100 // F_Elven_Ears_Box
-14131,475,100 // F_Steel_Flower_Box
-14132,475,100 // F_Critical_Ring_Box
-14133,475,100 // F_Earring_Box
-14134,475,100 // F_Ring_Box
-14135,475,100 // F_Necklace_Box
-14136,475,100 // F_Glove_Box
-14137,475,100 // F_Brooch_Box
-14138,475,100 // F_Rosary_Box
-14139,475,100 // F_Safety_Ring_Box
-14140,475,100 // F_Vesper_Core_Box01
-14141,475,100 // F_Vesper_Core_Box02
-14142,475,100 // F_Vesper_Core_Box03
-14143,475,100 // F_Vesper_Core_Box04
-14144,475,100 // F_Vigorgra_Package1
-14145,475,100 // F_Vigorgra_Package2
-14146,475,100 // F_Vigorgra_Package3
-14147,475,100 // F_Vigorgra_Package4
-14148,475,100 // F_Vigorgra_Package5
-14149,475,100 // F_Vigorgra_Package6
-14150,475,100 // F_Vigorgra_Package7
-14151,475,100 // F_Vigorgra_Package8
-14152,475,100 // F_Vigorgra_Package9
-14153,475,100 // F_Vigorgra_Package10
-14154,475,100 // F_Vigorgra_Package11
-14155,475,100 // F_Vigorgra_Package12
-14156,475,100 // F_Battle_Manual_Box
-14157,475,100 // F_Insurance_Package
-14158,475,100 // F_Bubble_Gum_Box
-14159,475,100 // F_Str_Dish_Box
-14160,475,100 // F_Agi_Dish_Box
-14161,475,100 // F_Int_Dish_Box
-14162,475,100 // F_Dex_Dish_Box
-14163,475,100 // F_Luk_Dish_Box
-14164,475,100 // F_Vit_Dish_Box
-14165,475,100 // F_Kafra_Card_Box
-14166,475,100 // F_Giant_Fly_Wing_Box
-14167,475,100 // F_Neuralizer_Box
-14168,475,100 // F_Convex_Mirror_Box
-14169,475,100 // F_Blessing_10_Scroll_Box
-14170,475,100 // F_Inc_Agi_10_Scroll_Box
-14171,475,100 // F_Aspersio_5_Scroll_Box
-14172,475,100 // F_Assumptio_5_Scroll_Box
-14173,475,100 // F_Wind_Walk_10_Scroll_Box
-14174,475,100 // F_Adrenaline_Scroll_Box
-14175,475,100 // F_Megaphone_Box
-14176,475,100 // F_Enriched_Elunium_Box
-14177,475,100 // F_Enriched_Oridecon_Box
-14178,475,100 // F_Token_Of_Siegfried_Box
-14179,475,100 // F_Giant_Fly_Wing_Box50
-14180,475,100 // F_Giant_Fly_Wing_Box100
-14181,475,100 // F_Dex_Dish_Box30
-14182,475,100 // F_Dex_Dish_Box50
-14183,475,100 // F_Luk_Dish_Box30
-14184,475,100 // F_Luk_Dish_Box50
-14185,475,100 // F_Inc_Agi_10_Box30
-14186,475,100 // F_Inc_Agi_10_Box50
-14187,475,100 // F_Vit_Dish_Box30
-14188,475,100 // F_Vit_Dish_Box50
-14189,475,100 // F_Insurance_Package30
-14190,475,100 // F_Insurance_Package50
-14191,475,100 // F_Convex_Mirror_Box5
-14192,475,100 // F_Convex_Mirror_Box30
-14193,475,100 // F_Blessing10_Box30
-14194,475,100 // F_Blessing10_Box50
-14195,475,100 // F_Adrenaline10_Box30
-14196,475,100 // F_Adrenaline10_Box50
-14197,475,100 // F_Assumptio_5_Box30
-14198,475,100 // F_Assumptio_5_Box50
-14199,475,100 // F_Aspersio_5_Box30
-14200,475,100 // F_Aspersio_5_Box50
-14201,475,100 // F_Agi_Dish_Box30
-14202,475,100 // F_Agi_Dish_Box50
-14203,475,100 // F_Wind_Walk10_Box30
-14204,475,100 // F_Wind_Walk10_Box50
-14205,475,100 // F_Int_Dish_Box30
-14206,475,100 // F_Int_Dish_Box50
-14207,475,100 // F_Battle_Manual_Box1
-14208,475,100 // F_Battle_Manual_Box5
-14209,475,100 // F_Siegfried_Box5
-14210,475,100 // F_Siegfried_Box20
-14211,475,100 // F_Kafra_Card_Box30
-14212,475,100 // F_Kafra_Card_Box50
-14213,475,100 // F_Str_Dish_Box30
-14214,475,100 // F_Str_Dish_Box50
-14215,475,100 // F_Bubble_Gum_Box1
-14216,475,100 // F_Bubble_Gum_Box5
-14217,475,100 // F_Megaphone_Box1
-14218,475,100 // F_Megaphone_Box5
-14219,475,100 // F_Enriched_Elunium_Box5
-14220,475,100 // F_Enriched_Oridecon_Box5
-14221,475,100 // MP_Scroll_Box
-14222,475,100 // MP_Scroll_Box30
-14223,475,100 // MP_Scroll_Box50
-14224,475,100 // Quagmire_Scroll_Box
-14225,475,100 // Quagmire_Scroll_Box30
-14226,475,100 // Quagmire_Scroll_Box50
-14227,475,100 // Healing_Staff_Box
-14228,475,100 // Praxinus_Box
-14229,475,100 // Cherry_Blossom_Scroll
-14230,475,100 // Note_Headphones_Box
-14231,475,100 // Novice_Breastplate_Boxes
-14232,475,100 // Yggdrasilberry_Box_
-14233,475,100 // Dead_Tree_Branch_Box1
-14234,475,100 // Dead_Tree_Branch_Box2
-14235,475,100 // Field_Manual_Box_2
-14236,475,100 // Steamed_Tongue_Box_20
-14237,475,100 // Steamed_Desert_Scorpions_Box_20
-14238,475,100 // Stew_Of_Immortality_Box_20
-14239,475,100 // Dragon_Breath_Cocktail_Box_20
-14240,475,100 // Hwergelmir's_Tonic_Box_20
-14241,475,100 // Nine_Tail_Dish_Box_20
-14242,475,100 // Beholder_Ring_Box
-14243,475,100 // Hallow_Ring_Box
-14244,475,100 // Clamorous_Ring_Box
-14245,475,100 // Chemical_Ring_Box
-14246,475,100 // Insecticide_Ring_Box
-14247,475,100 // Fisher_Ring_Box
-14248,475,100 // Decussate_Ring_Box
-14249,475,100 // Bloody_Ring_Box
-14250,475,100 // Satanic_Ring_Box
-14251,475,100 // Dragoon_Ring_Box
-14252,475,100 // Beholder_Ring_Box2
-14253,475,100 // Hallow_Ring_Box2
-14254,475,100 // Clamorous_Ring_Box2
-14255,475,100 // Chemical_Ring_Box2
-14256,475,100 // Insecticide_Ring_Box2
-14257,475,100 // Fisher_Ring_Box2
-14258,475,100 // Decussate_Ring_Box2
-14259,475,100 // Bloody_Ring_Box2
-14260,475,100 // Satanic_Ring_Box2
-14261,475,100 // Dragoon_Ring_Box2
-14262,475,100 // Diary_Magic_Powder_Box
-14263,475,100 // Mini_Heart_Magic_Powder_Box
-14264,475,100 // Freshman_Magic_Powder_Box
-14265,475,100 // Kid_Magic_Powder_Box
-14266,475,100 // Magic_Magic_Powder_Box
-14267,475,100 // JJangu_Magic_Powder_Box
-14268,475,100 // Diary_Magic_Powder_Box4
-14269,475,100 // Mini_Heart_Magic_Powder_Box4
-14270,475,100 // Freshman_Magic_Powder_Box4
-14271,475,100 // Kid_Magic_Powder_Box4
-14272,475,100 // Magic_Magic_Powder_Box4
-14273,475,100 // JJangu_Magic_Powder_Box4
-14274,475,100 // Amplification_10_Scroll_Box2
-14275,475,100 // Amplification_30_Scroll_Box2
-14276,475,100 // Amplification_50_Scroll_Box2
-14277,475,100 // Quagmire_10_Scroll_Box2
-14278,475,100 // Quagmire_30_Scroll_Box2
-14279,475,100 // Quagmire_50_Scroll_Box2
-14280,475,100 // Healing_Staff_Box2
-14281,475,100 // Praccsinos_Box
-14282,475,100 // Emperium_Box
-14283,475,100 // Marriage_Certificate_Box
-14284,475,100 // Muffler_Box
-14285,475,100 // Balkiriah_Shield_Box
-14286,475,100 // Skull_Ring_Box
-14287,475,100 // Baricade_Repair_Kit
-14288,475,100 // Guardian_Stone_Repair_Kit
-14289,475,100 // Cloth_Dye_Coupon_Box
-14290,475,100 // Cloth_Dye_Coupon2_Box
-14291,475,100 // Cloth_Dye_Coupon3_Box
-14292,475,100 // Cloth_Dye_Coupon4_Box
-14293,475,100 // Mercenary_Contract_Box
-14294,475,100 // Mercenary_Contract_Box5
-14295,475,100 // Mercenary_Contract_Box10
-14296,475,100 // Angel_Scroll
-14297,475,100 // Devil_Scroll
-14298,475,100 // Surprise_Scroll
-//14299,475,100 //
-14300,475,100 // Mask_Of_Ifrit_Box
-14301,475,100 // Ifrit's_Ear_Box
-//14302,475,100 //
-//14303,475,100 //
-14304,475,100 // Scuba_Mask_Box
-//14305,475,100 //
-14306,475,100 // RWC_Special_Scroll
-14307,475,100 // RWC_Limited_Scroll
-14308,475,100 // Ardor_Scroll
-//14309,475,100 //
-//14310,475,100 //
-//14311,475,100 //
-//14312,475,100 //
-//14313,475,100 //
-14314,475,100 // PhreeoniS_Box
-14315,475,100 // GhostringS_Box
-14316,475,100 // July7_Scroll
-14317,475,100 // Bacsojin_Scroll
-//14318,475,100 //
-//14319,475,100 //
-//14320,475,100 //
-14321,475,100 // Holy_Sabre_Box
-14322,475,100 // Book_Of_Prayer_Box
-14323,475,100 // Phenomena_Whip_Box
-14324,475,100 // Staff_Of_Darkness_Box
-14325,475,100 // Monk_Knuckle_Box
-14326,475,100 // Mace_Of_Madness_Box
-14327,475,100 // Spear_Of_Excellent_Box
-14328,475,100 // Bow_Of_Evil_Box
-14329,475,100 // Katar_Of_Speed_Box
-14330,475,100 // Sharpshooter_Revolver_Box
-//14331,475,100 //
-//14332,475,100 //
-//14333,475,100 //
-//14334,475,100 //
-//14335,475,100 //
-//14336,475,100 //
-//14337,475,100 //
-//14338,475,100 //
-//14339,475,100 //
-//14340,475,100 //
-//14341,475,100 //
-//14342,475,100 //
-14343,475,100 // Spiked_Scarf_Box
-14344,475,100 // Rainbow_Scarf_Box
-14345,475,100 // Animal_Scroll
-//14346,475,100 //
-//14347,475,100 //
-//14348,475,100 //
-14349,475,100 // Mental_Potion20_Box
-14350,475,100 // Mental_Potion50_Box
-14351,475,100 // Tyr's_Blessing20_Box
-14352,475,100 // Tyr's_Blessing50_Box
-//14353,475,100 //
-//14354,475,100 //
-//14355,475,100 //
-//14356,475,100 //
-//14357,475,100 //
-//14358,475,100 //
-//14359,475,100 //
-//14360,475,100 //
-14361,475,100 // Orc_HeroS_Box
-14362,475,100 // Orc_LoadS_Box
-14363,475,100 // Heart_Scroll
-//14364,475,100 //
-//14365,475,100 //
-//14366,475,100 //
-//14367,475,100 //
-//14368,475,100 //
-//14369,475,100 //
-14381,475,100 // Piercing_Box_M
-14382,475,100 // Lich_Bone_Box_M
-14383,475,100 // Long_Horn_Box_M
-14384,475,100 // Hunting_Spear_Box_M
-14385,475,100 // Death_Note_Box_M
-14386,475,100 // Destruction_Box_M
-14387,475,100 // Rider_Insignia_Box_M
-14388,475,100 // Mithril_Cape_Box_M
-14389,475,100 // Sniping_Box_M
-14390,475,100 // Orleans_Box_M
-14391,475,100 // Spiritual_Box_M
-14392,475,100 // Variant_Box_M
-14393,475,100 // Almighty_Charm_Box
-//14394,475,100 //
-//14395,475,100 //
-//14396,475,100 //
-//14397,475,100 //
-//14398,475,100 //
-//14399,475,100 //
-//14400,475,100 //
-//14401,475,100 //
-//14402,475,100 //
-//14403,475,100 //
-//14404,475,100 //
-//14405,475,100 //
-//14406,475,100 //
-14407,475,100 // Xmas_Scroll
-14408,475,100 // New_Year_Scroll
-//14409,475,100 //
-//14410,475,100 //
-//14411,475,100 //
-//14412,475,100 //
-//14413,475,100 //
-//14414,475,100 //
-//14415,475,100 //
-//14416,475,100 //
-//14417,475,100 //
-//14418,475,100 //
-//14419,475,100 //
-//14420,475,100 //
-//14421,475,100 //
-//14422,475,100 //
-//14423,475,100 //
-//14424,475,100 //
-//14425,507,100 //
-14426,475,100 // Fortune_Sword_Box
-14427,475,100 // House_Auger_Box
-14428,475,100 // Kamaitachi_Box
-14429,475,100 // Berserk_Guitar_Box
-14430,475,100 // Doom_Slayer_Box
-14431,475,100 // Huuma_Blaze_Shuriken_Box
-14432,475,100 // Odin's_Blessing_Box
-14433,475,100 // Ring_Of_Flame_Lord_Box
-14434,475,100 // Ring_Of_Resonance_Box
-14435,475,100 // Boys_Cap_Box
-14436,475,100 // Ulle's_Cap_Box
-14437,475,100 // Sphinx_Helm_Box
-14438,475,100 // Honglyun's_Sword_Box
-14439,475,100 // Power_Of_Thor_Box
-14440,475,100 // Dice_Hat_Box
-14441,475,100 // King_Tiger_Doll_Hat_Box
-14442,475,100 // Wondering_Wolf_Helm_Box
-14443,475,100 // Pizza_Hat_Box
-14444,475,100 // Icecream_Hat_Box
-//14445,475,100 //
-//14446,475,100 //
-14447,475,100 // Pirate's_Pride_Box
-14448,475,100 // Necromencer's_Hood_Box
-//14449,475,100 //
-//14450,475,100 //
-14459,475,100 // Rabbit_Magic_Hat_Box
-14460,475,100 // China_Wedding_Veil_Box
-14461,475,100 // Asara_Fairy_Hat_Box
-//14462,475,100 //
-//14463,475,100 //
-//14464,475,100 //
-//14465,475,100 //
-//14467,507,100 //
-//14468,507,100 //
-//14470,507,100 //
-//14471,507,100 //
-//14472,507,100 //
-//14473,507,100 //
-//14474,507,100 //
-//14475,507,100 //
-//14476,507,100 //
-//14477,507,100 //
-//14478,507,100 //
-//14479,507,100 //
-//14480,507,100 //
-//14481,507,100 //
-//14482,507,100 //
-//14483,507,100 //
-//14484,507,100 //
-14488,475,100 // Blue_Pajamas_Hat_Box
-14489,475,100 // Pink_Pajamas_Hat_Box
-14490,475,100 // Shark_Hat_Box
-//14491,475,100 //
-//14492,475,100 //
-//14493,475,100 //
-14494,475,100 // Samambaia_Box
-14499,475,100 // Peacock_Feather_Box
-14500,475,100 // Insurance60
-14505,507,100 // Dungeon_1_hour_Ticket
-14506,507,100 // Dungeon_Ticket
-14508,475,100 // Zeny_Scroll
-14509,475,100 // Light_Center_Pot
-14510,475,100 // Light_Awakening_Pot
-14511,475,100 // Light_Berserk_Pot
-14512,475,100 // Meteor_10_Scroll
-14513,475,100 // Storm_10_Scroll
-14514,475,100 // Vermilion_10_Scroll
-14515,475,100 // Lex_Aeterna_Scroll
-14516,475,100 // Magnificat_5_Scroll
-14517,475,100 // CP_Helm_Scroll
-14518,475,100 // CP_Shield_Scroll
-14519,475,100 // CP_Armor_Scroll
-14520,475,100 // CP_Weapon_Scroll
-14521,475,100 // Repair_Scroll
-14522,475,100 // Big_Bun
-14523,475,100 // Pill_
-14524,475,100 // Superb_Fish_Slice
-14525,475,100 // Chewy_Ricecake
-14526,475,100 // Oriental_Pastry
-14527,475,100 // Dun_Tele_Scroll1
-14528,475,100 // PVP_Tele_Scroll
-14529,507,100 // Greed_Scroll
-14530,475,100 // Flee_30_Scroll
-14531,475,100 // Accuracy_30_Scroll
-14532,475,100 // Battle_Manual25
-14533,475,100 // Battle_Manual100
-14534,475,100 // Small_Life_Potion
-14535,475,100 // Med_Life_Potion
-14536,475,100 // Abrasive
-14537,475,100 // Regeneration_Potion
-14538,475,100 // Glass_Of_Illusion
-14539,475,100 // Shadow_Armor_S
-14540,475,100 // Holy_Armor_S
-14541,475,100 // S_Def_Potion
-14542,475,100 // B_Def_Potion
-14543,475,100 // S_Mdef_Potion
-14544,475,100 // B_Mdef_Potion
-14545,475,100 // Battle_Manual_X3
-14546,475,100 // Fire_Cracker_Love
-14547,475,100 // Fire_Cracker_Wday
-14548,475,100 // Fire_Cracker_Vday
-14549,475,100 // Fire_Cracker_Bday
-14550,475,100 // Fire_Cracker_Xmas
-14551,475,100 // Str_Dish01_
-14552,475,100 // Str_Dish02_
-14553,475,100 // Str_Dish03_
-14554,475,100 // Int_Dish01_
-14555,475,100 // Int_Dish02_
-14556,475,100 // Int_Dish03_
-14557,475,100 // Vit_Dish01_
-14558,475,100 // Vit_Dish02_
-14559,475,100 // Vit_Dish03_
-14560,475,100 // Agi_Dish01_
-14561,475,100 // Agi_Dish02_
-14562,475,100 // Agi_Dish03_
-14563,475,100 // Dex_Dish01_
-14564,475,100 // Dex_Dish02_
-14565,475,100 // Dex_Dish03_
-14566,475,100 // Luk_Dish01_
-14567,475,100 // Luk_Dish02_
-14568,475,100 // Luk_Dish03_
-14569,475,100 // Knife_Goblin_Ring
-14570,475,100 // Flail_Goblin_Ring
-14571,475,100 // Hammer_Goblin_Ring
-14572,475,100 // Holy_Marble
-14573,475,100 // Red_Burning_Stone
-14574,1,100 // Skull_Of_Vagabond
-14575,475,100 // Str_Dish05_
-14576,475,100 // Int_Dish05_
-14577,475,100 // Vit_Dish05_
-14578,475,100 // Agi_Dish05_
-14579,475,100 // Dex_Dish05_
-14580,475,100 // Luk_Dish05_
-14581,475,100 // Dun_Tele_Scroll2
-14582,475,100 // WOB_Rune
-14583,475,100 // WOB_Schwaltz
-14584,475,100 // WOB_Rachel
-14585,475,100 // WOB_Local
-14586,475,100 // Spark_Candy
-14587,475,100 // Repair_Scroll_
-14588,475,100 // Pty_Blessing_Scroll
-14589,475,100 // Pty_Inc_Agi_Scroll
-14590,475,100 // Pty_Assumptio_Scroll
-14591,475,100 // Siege_Teleport_Scroll
-14592,475,100 // Job_Manual50
-14593,475,100 // Magic_Power_Scroll
-14594,475,100 // Quagmire_Scroll
-14595,507,100 // Unsealed_Magic_Spell
-14597,475,100 // PhreeoniS
-14598,475,100 // GhostringS
-14599,475,100 // Greed_Scroll_C
-14600,475,100 // Mental_Potion
-14601,475,100 // Tyr's_Blessing
-14602,475,100 // TaogunkaS
-14603,475,100 // MistressS
-14604,475,100 // Orc_HeroS
-14605,475,100 // Orc_LoadS
-14606,475,100 // Job_Manual25
-14611,475,100 // M_Def_Potion
-14612,475,100 // M_Mdef_Potion
-14613,475,100 // RWC_Scroll_2012
-14614,475,100 // Ex_Def_Potion
-14616,475,100 // STR_Biscuit_Stick
-14617,475,100 // VIT_Biscuit_Stick
-14618,475,100 // AGI_Biscuit_Stick
-14619,475,100 // INT_Biscuit_Stick
-14620,475,100 // DEX_Biscuit_Stick
-14621,475,100 // LUK_Biscuit_Stick
-//14622,1,100 //
-14623,475,100 // Golden_Treasure_Box_
-14627,475,100 // Christmas_Scroll
-14628,475,100 // Costume_Festival_Box
-//14630,1,100 //
-14663,475,100 // Scroll_Sealed_Dark_Lord
-14672,459,100 // Steel_Fighter_Scroll_Lv20
-14673,459,100 // Steel_Fighter_Scroll_Lv25
-14675,475,100 // Shadow_Box_II
-14679,475,100 // Article_Sealed_Storm_Scroll
-14682,475,100 // Sealed_Beelzebub_Scroll
-14689,475,100 // Sealed_Kiel-D-01_Scroll
-14696,475,100 // Sealed_Gloom_Under_Night_Gachapon
-14704,475,100 // Gemstone_Shadow_Box
-14705,475,100 // Sealed_Fallen_Bishop_Hibram_Scroll
-14713,475,100 // Sealed_Ifrit_Scroll
-14717,475,100 // 2013_RWC_Scroll
-14718,475,100 // Scroll_Turtle_General_Sealed
-14723,475,100 // Limited_Neuralizer_I
-14724,475,100 // Limited_Neuralizer_II
-14725,475,100 // Sealed_Bacsojin_Scroll
-14726,475,100 // Grid_Shadow_Box
-14727,475,100 // Heal_Shadow_Box
-14728,475,100 // Hiding_Shadow_Box
-14729,475,100 // Cloaking_Shadow_Box
-14730,475,100 // Costume_Festival_Box_II
-14731,475,100 // Teleport_Shadow_Box
-14732,475,100 // Steal_Shadow_Box
-14733,475,100 // Sealed_Pharaoh_Scroll
-14735,475,100 // Shapeshifter_Costume
-14739,475,100 // Sealed_General_Egnigem_Cenia_Scroll
-14740,475,100 // Sealed_Vesper_Scroll
-14758,475,100 // Safe_To_Smelting_Scroll
-14765,475,100 // Limited_Edition_JOB_Battle_Manual
-14766,475,100 // Limited_Power_Booster
-//14780,475,100 //
-//14781,475,100 //
-//14799,507,100 //
-14805,475,100 // Almighty_Lucky_Egg
-//14826,475,100 //
-15001,507,100 // Odin's_Blessing_I
-15002,507,100 // Rune_Plate
-15007,467,100 // Time_Keepr_Robe
-15008,1,100 // Flame_Sprits_Armor__
-15009,499,100 // Para_Team_Uniform1
-15010,499,100 // Para_Team_Uniform2
-15011,499,100 // Para_Team_Uniform3
-15015,1,100 // Upg_Adv_Suit
-15016,1,100 // Upg_Coat
-15017,1,100 // Upg_Saint_Robe
-15018,1,100 // Upg_Tights
-15019,1,100 // Upg_Thief_Cloth
-15020,1,100 // Upg_Mail
-15021,1,100 // Upg_Formal_Dress
-15023,499,100 // Half_Brynhild
-15031,499,100 // Para_Team_Armor
-15033,507,100 // Tutorial_Mattle
-15034,507,100 // Tutorial_Mattle_
-15062,499,100 // TE_Woe_Coat
-15063,499,100 // TE_Woe_Chain_Mail
-15064,499,100 // TE_Woe_Mage_Coat
-15067,507,100 // Rune_Suit
-15116,467,100 // Airship_Armor
-15141,467,100 // Rift_Ancient_Armor
-15152,467,100 // Unity_Mail
-15153,467,100 // Unity_Mantle
-15154,467,100 // Unity_Suit
-15155,467,100 // Unity_Robe
-//15167,467,100 //
-15181,467,100 // Para_Team_Uniform100
-15182,467,100 // Para_Team_Uniform115
-15183,467,100 // Para_Team_Uniform130
-15184,467,100 // Para_Team_Uniform145
-15185,467,100 // Para_Team_Uniform160
-//15210,499,100 //
-//15247,499,100 //
-//15250,499,100 //
-//15383,499,100 //
-16002,507,100 // Stunner_C
-16004,499,100 // P_Mace1
-16005,499,100 // P_Mace2
-16006,499,100 // Tourist_Mace
-16014,499,100 // P_Mace3
-16016,507,100 // Tuna
-16019,1,100 // Upg_Mace
-16023,499,100 // Metal_Mace
-16025,499,100 // TE_Woe_Mace
-16026,1,100 // RWC_Memory_Mace
-16038,467,100 // Infinity_Mace
-16048,467,100 // Unity_Mace
-//16054,499,100 //
-//16064,499,100 //
-//16075,499,100 //
-//16076,499,100 //
-//16100,475,100 //
-//16101,475,100 //
-//16102,475,100 //
-//16103,475,100 //
-//16104,475,100 //
-//16105,475,100 //
-//16106,475,100 //
-//16107,475,100 //
-//16108,475,100 //
-//16109,475,100 //
-//16110,475,100 //
-//16111,475,100 //
-//16112,475,100 //
-//16113,475,100 //
-//16114,475,100 //
-//16115,475,100 //
-//16116,475,100 //
-//16117,475,100 //
-//16118,475,100 //
-//16119,475,100 //
-//16120,475,100 //
-//16121,475,100 //
-//16122,475,100 //
-//16123,475,100 //
-//16124,475,100 //
-//16125,475,100 //
-//16126,475,100 //
-//16127,475,100 //
-//16128,475,100 //
-//16129,475,100 //
-//16130,475,100 //
-16131,475,100 // Lady_Tanee_Doll_Box
-16132,475,100 // Lunatic_Hat_Box
-16133,475,100 // G_Staff_Of_Light_Box
-16134,475,100 // King_Frog_Hat_Box
-16135,475,100 // Evil's_Bone_Hat_Box
-//16136,475,100 //
-//16137,475,100 //
-//16138,475,100 //
-//16139,475,100 //
-//16140,475,100 //
-//16141,475,100 //
-//16142,475,100 //
-//16143,475,100 //
-//16144,475,100 //
-//16145,475,100 //
-//16146,475,100 //
-//16147,475,100 //
-//16148,475,100 //
-//16149,475,100 //
-//16150,475,100 //
-//16151,475,100 //
-//16152,475,100 //
-//16153,475,100 //
-//16154,475,100 //
-//16155,475,100 //
-//16156,475,100 //
-//16157,475,100 //
-//16158,475,100 //
-//16159,475,100 //
-//16160,475,100 //
-//16161,475,100 //
-//16162,475,100 //
-//16163,475,100 //
-//16164,475,100 //
-//16165,475,100 //
-//16166,475,100 //
-//16167,475,100 //
-//16168,475,100 //
-//16169,475,100 //
-//16170,475,100 //
-//16171,475,100 //
-//16172,475,100 //
-//16173,475,100 //
-//16174,475,100 //
-//16175,475,100 //
-//16176,475,100 //
-//16177,475,100 //
-//16178,475,100 //
-//16179,475,100 //
-//16180,475,100 //
-//16181,475,100 //
-//16182,475,100 //
-//16183,475,100 //
-//16184,475,100 //
-16185,475,100 // Raven_Cap_Box
-16186,475,100 // B_Dragon_Hat_Box
-//16187,475,100 //
-//16188,475,100 //
-//16189,475,100 //
-//16190,475,100 //
-//16191,475,100 //
-16192,475,100 // Quati_Hat_Box
-16193,475,100 // Tucan_Hat_Box
-16194,475,100 // Jaguar_Hat_Box
-//16220,475,100 //
-//16221,475,100 //
-//16222,475,100 //
-//16223,475,100 //
-//16224,475,100 //
-//16225,475,100 //
-16226,475,100 // Aries_Diadem_Box
-16227,475,100 // Aries_Crown_Box
-16228,475,100 // RJC_Katusa_Box
-16229,475,100 // Scarlet_Rose_Box
-16230,475,100 // Taurus_Diadem_Box
-16231,475,100 // Taurus_Crown_Box
-16232,25,100 // Reginleif_Box
-16235,475,100 // Octopus_Hat_Box
-16236,475,100 // Leaf_Cat_Hat_Box
-16237,475,100 // Fur_Seal_Hat_Box
-16238,475,100 // Wild_Rose_Hat_Box
-//16240,475,100 //
-//16241,475,100 //
-//16242,475,100 //
-//16243,475,100 //
-16246,475,100 // Crown_Of_Deceit_Box
-16247,475,100 // Dragon_Arhat_Mask_Box
-16248,475,100 // Tiger_Arhat_Mask_Box
-16251,475,100 // Gemini_Diadem_Box
-16252,475,100 // Gemini_Crown_Box
-16254,475,100 // Energizing_Potion_Box
-//16255,475,100 //
-//16256,1,100 //
-16258,475,100 // HD_Bradium_Box5
-16259,475,100 // HD_Carnium_Box5
-16260,475,100 // HD_Bradium_Box10
-16261,475,100 // HD_Carnium_Box10
-16262,475,100 // F_HD_Bradium_Box5
-16263,475,100 // F_HD_Carnium_Box5
-16264,475,100 // HD_Bradium_10_Box2
-16265,475,100 // HD_Carnium_10_Box2
-//16271,475,100 //
-//16272,475,100 //
-//16273,475,100 //
-//16274,475,100 //
-//16275,475,100 //
-//16276,475,100 //
-//16277,475,100 //
-//16278,475,100 //
-//16279,475,100 //
-//16280,475,100 //
-//16281,475,100 //
-//16282,475,100 //
-//16283,475,100 //
-//16284,475,100 //
-//16285,475,100 //
-//16286,475,100 //
-//16287,475,100 //
-//16288,475,100 //
-//16289,475,100 //
-//16290,475,100 //
-//16291,475,100 //
-//16292,475,100 //
-//16293,475,100 //
-//16294,475,100 //
-//16295,475,100 //
-//16296,475,100 //
-//16297,475,100 //
-//16298,475,100 //
-//16299,475,100 //
-//16300,475,100 //
-//16301,475,100 //
-//16302,475,100 //
-//16303,475,100 //
-16304,475,100 // Evil_Incarnation_Disable
-16305,475,100 // Upg_Guard_Box
-16306,475,100 // F_Upg_Guard_Box
-16307,475,100 // Upg_Buckler_Box
-16308,475,100 // F_Upg_Buckler_Box
-16309,475,100 // Upg_Shield_Box
-16310,475,100 // F_Upg_Shield_Box
-16311,475,100 // Upg_Shoes_Box
-16312,475,100 // F_Upg_Shoes_Box
-16313,475,100 // Upg_Boots_Box
-16314,475,100 // F_Upg_Boots_Box
-16315,475,100 // Upg_Greave_Box
-16316,475,100 // F_Upg_Greave_Box
-16317,475,100 // Upg_Hood_Box
-16318,475,100 // F_Upg_Hood_Box
-16319,475,100 // Upg_Muffler_Box
-16320,475,100 // F_Upg_Muffler_Box
-16321,475,100 // Upg_Manteau_Box
-16322,475,100 // F_Upg_Manteau_Box
-16323,475,100 // Upg_Clip_Box
-16324,475,100 // F_Upg_Clip_Box
-//16325,475,100 //
-//16326,475,100 //
-16327,475,100 // Upg_Adv_Suit_Box
-16328,475,100 // F_Upg_Adv_Suit_Box
-16329,475,100 // Upg_Coat_Box
-16330,475,100 // F_Upg_Coat_Box
-16331,475,100 // Upg_Saint_Robe_Box
-16332,475,100 // F_Upg_Saint_Robe_Box
-16333,475,100 // Upg_Tights_Box
-16334,475,100 // F_Upg_Tights_Box
-16335,475,100 // Upg_Thief_Cloth_Box
-16336,475,100 // F_Upg_Thief_Cloth_Box
-16337,475,100 // Upg_Mail_Box
-16338,475,100 // F_Upg_Mail_Box
-16339,475,100 // Upg_Formal_Dress_Box
-16340,475,100 // F_Upg_Formal_Dress_Box
-//16347,475,100 //
-//16348,475,100 //
-//16349,475,100 //
-//16350,475,100 //
-//16351,475,100 //
-//16352,475,100 //
-//16353,475,100 //
-//16354,475,100 //
-//16355,475,100 //
-//16356,475,100 //
-//16357,475,100 //
-//16358,475,100 //
-16360,475,100 // Desert_Prince_Box
-16361,475,100 // FDesert_Prince_Box
-16362,475,100 // Sigrun's_Wing_Box
-16363,475,100 // FSigrun's_Wing_Box
-16368,475,100 // Virgo_Crown_Box
-//16369,475,100 //
-//16370,475,100 //
-16372,475,100 // F_Clover_Box_Mouth
-//16373,475,100 //
-16374,475,100 // Mouth_Bubble_Gum_Box
-//16375,475,100 //
-16378,475,100 // Siege_Tele_Scroll_Box_30
-16379,475,100 // Siege_Teleport_Scroll_Silver_10Box
-16380,475,100 // Siege_Teleport_Scroll_Silver_30Box
-16381,475,100 // WoE_Teleport_Scroll_100_Box
-16382,475,100 // WoE_Teleport_Scroll_30_Box
-//16383,475,100 //
-//16384,475,100 //
-16385,475,100 // F_Clover_Box_Mouth2
-16386,475,100 // F_Clover_Box_Mouth4
-//16387,475,100 //
-//16388,475,100 //
-16389,475,100 // BGum_Box_In_Mouth2
-16390,475,100 // BGum_Box_In_Mouth4
-//16391,475,100 //
-//16392,475,100 //
-16393,475,100 // HD_Ori_Box5
-16394,475,100 // HD_Ori_Box10
-16395,475,100 // HD_Elu_Box5
-16396,475,100 // HD_Elu_Box10
-16397,475,100 // Virgo_Diadem_Box
-16398,475,100 // Virgo_Crown_Box_
-16399,475,100 // Virgo_Diadem_Box_
-//16400,475,100 //
-//16401,475,100 //
-//16402,475,100 //
-//16403,475,100 //
-16405,507,100 // Midgard_Coin_Box_
-16406,507,100 // FMidgard_Coin_Box
-//16407,475,100 //
-//16408,475,100 //
-//16432,475,100 //
-//16433,475,100 //
-//16434,475,100 //
-//16435,475,100 //
-//16442,475,100 //
-//16443,475,100 //
-//16444,475,100 //
-//16445,475,100 //
-16447,475,100 // Scorpio_Crown_Box
-16448,475,100 // Scorpio_Diadem_Box
-16449,475,100 // Scorpio_Crown_Box_
-16450,475,100 // FScorpio_Diadem_Box
-//16452,475,100 //
-//16453,475,100 //
-//16454,475,100 //
-//16455,475,100 //
-//16467,475,100 //
-//16468,475,100 //
-//16469,475,100 //
-//16470,475,100 //
-16481,475,100 // Small_Life_Potion_Box_10
-16483,475,100 // Abrasive_Box_10
-16504,475,100 // Bubble_Gum_Box_10
-16505,475,100 // Steamed_Tongue_Box_10
-16506,475,100 // Steamed_Desert_Scorpions_Box_10
-16507,475,100 // Dragon_Breath_Cocktail_Box_10
-16508,475,100 // Hwergelmir's_Tonic_Box_10
-16509,475,100 // Cooked_Nine_Tail_Box_10
-16510,475,100 // Immortal_Stew_Box_10
-16514,475,100 // Blessing_Scroll_Box_10
-16515,475,100 // Increase_Agility_Scroll_Box_10
-16543,475,100 // Snowman_Hat_Box
-16544,475,100 // FSnowman_Hat_Box
-16555,475,100 // Pr_Reset_Stone_Box
-//16573,475,100 //
-//16574,475,100 //
-//16580,475,100 //
-//16581,475,100 //
-//16596,475,100 //
-//16597,475,100 //
-16598,475,100 // Activation_Potion_Box_II
-//16599,475,100 //
-16625,475,100 // Half_Asprika_box7
-//16626,475,100 //
-//16627,475,100 //
-16628,475,100 // Brynhild_Box
-//16629,475,100 //
-//16630,475,100 //
-//16634,475,100 //
-//16635,475,100 //
-//16636,475,100 //
-//16637,475,100 //
-16638,475,100 // Ribbon_Of_Life_Box
-16639,475,100 // Ribbon_Of_Life_Box2
-16640,475,100 // Ribbon_Of_Life_Box3
-//16641,475,100 //
-//16642,475,100 //
-//16643,475,100 //
-//16644,475,100 //
-//16645,475,100 //
-//16646,475,100 //
-//16647,475,100 //
-//16648,475,100 //
-//16649,475,100 //
-//16650,475,100 //
-//16651,475,100 //
-16655,475,100 // Rapid_Life_Potion_10_Box
-//16656,475,100 //
-//16657,475,100 //
-16658,475,100 // Rapid_Water_Box_10
-//16660,475,100 //
-//16661,475,100 //
-//16662,475,100 //
-//16663,475,100 //
-16666,475,100 // Magic_Candy_Box10
-//16667,475,100 //
-//16671,475,100 //
-//16672,475,100 //
-16677,475,100 // Universal_Catalog_Gold_Box10
-16678,475,100 // Universal_Catalog_Gold_Box50
-16679,475,100 // Universal_Catalog_Gold_Box10_
-16680,475,100 // Universal_Catalog_Gold_Box50_
-16682,475,100 // Boarding_Halter_Box
-16683,475,100 // B_Halter_Box_30Days
-//16689,475,100 //
-//16690,475,100 //
-16740,475,100 // Ptotection_Seagod_Box
-16741,475,100 // Hairtail_Box1
-16742,475,100 // Hairtail_Box2
-16743,475,100 // Spearfish_Box1
-16744,475,100 // Spearfish_Box2
-16745,475,100 // Saurel_Box1
-16746,475,100 // Saurel_Box2
-16747,475,100 // Tuna_Box1
-16748,475,100 // Tuna_Box2
-16749,475,100 // Malang_Crab_Box1
-16750,475,100 // Malang_Crab_Box2
-16751,475,100 // Brindle_Eel_Box1
-16752,475,100 // Brindle_Eel_Box2
-//16758,475,100 //
-//16759,475,100 //
-16760,475,100 // Umbala_Spirit_Box2
-16761,475,100 // F_Umbala_Spirit_Box2
-//16762,475,100 //
-16763,475,100 // Ptotection_Seagod_Box2
-16764,475,100 // Ptotection_Seagod_Box3
-16765,475,100 // Octo_Hstick_Box
-16766,475,100 // Octo_Hstick_Box2
-16767,475,100 // Octo_Hstick_Box3
-16770,475,100 // Silvervine_Fruit_Box10
-16771,475,100 // Silvervine_Fruit_Box40
-16776,475,100 // Universal_Catalog_Gold_Box10__
-16777,475,100 // Universal_Catalog_Gold_Box50__
-//16778,475,100 //
-//16779,475,100 //
-//16780,475,100 //
-//16781,475,100 //
-//16782,475,100 //
-//16783,475,100 //
-//16784,475,100 //
-//16785,475,100 //
-//16786,475,100 //
-//16787,475,100 //
-//16788,475,100 //
-//16789,475,100 //
-//16790,475,100 //
-//16791,475,100 //
-//16792,475,100 //
-//16793,475,100 //
-//16794,475,100 //
-//16795,475,100 //
-//16796,475,100 //
-//16797,475,100 //
-//16798,475,100 //
-//16799,475,100 //
-//16800,475,100 //
-//16801,475,100 //
-//16802,475,100 //
-//16803,475,100 //
-//16804,475,100 //
-//16805,475,100 //
-//16806,475,100 //
-//16807,475,100 //
-//16808,475,100 //
-//16809,475,100 //
-//16810,475,100 //
-//16811,475,100 //
-//16812,475,100 //
-//16813,475,100 //
-//16814,475,100 //
-//16815,475,100 //
-//16816,475,100 //
-//16817,475,100 //
-//16818,475,100 //
-//16819,475,100 //
-//16820,475,100 //
-16821,475,100 // Dungeon_Teleport_Scroll_Box_5
-16822,475,100 // Dungeon_Teleport_Scroll_Box_10
-//16823,475,100 //
-//16824,475,100 //
-//16825,475,100 //
-//16827,475,100 //
-//16828,475,100 //
-//16829,475,100 //
-//16830,475,100 //
-//16831,475,100 //
-//16832,475,100 //
-//16833,475,100 //
-//16834,475,100 //
-//16835,475,100 //
-//16836,475,100 //
-16837,475,100 // Dungeon_Teleport_Scroll_II_Box_5
-16838,475,100 // Dungeon_Teleport_Scroll_II_Box_10
-//16839,475,100 //
-//16840,475,100 //
-//16841,475,100 //
-//16842,475,100 //
-//16843,475,100 //
-//16844,475,100 //
-//16845,475,100 //
-//16846,475,100 //
-//16847,475,100 //
-//16848,475,100 //
-//16849,475,100 //
-//16850,475,100 //
-//16851,475,100 //
-//16852,475,100 //
-//16853,475,100 //
-//16854,475,100 //
-//16855,475,100 //
-//16856,475,100 //
-//16857,475,100 //
-//16858,475,100 //
-//16859,475,100 //
-//16860,475,100 //
-//16861,475,100 //
-//16862,475,100 //
-//16863,475,100 //
-16864,475,100 // Siege_Map_Teleport_Scroll_Box_10
-16865,475,100 // Siege_Map_Teleport_Scroll_Box_30
-16866,475,100 // Siege_Map_Teleport_Scroll_II_Box_10
-16867,475,100 // Siege_Map_Teleport_Scroll_II_Box_30
-//16868,475,100 //
-//16869,475,100 //
-//16870,475,100 //
-//16871,475,100 //
-//16872,475,100 //
-//16873,475,100 //
-//16874,475,100 //
-//16875,475,100 //
-//16876,475,100 //
-//16877,475,100 //
-//16878,475,100 //
-//16879,475,100 //
-//16880,475,100 //
-//16881,475,100 //
-//16882,475,100 //
-//16883,475,100 //
-//16884,475,100 //
-//16885,475,100 //
-//16886,475,100 //
-//16887,475,100 //
-//16888,475,100 //
-//16889,475,100 //
-//16890,475,100 //
-//16891,475,100 //
-//16892,475,100 //
-//16893,475,100 //
-//16894,475,100 //
-//16895,475,100 //
-//16896,475,100 //
-//16897,475,100 //
-//16898,475,100 //
-//16899,475,100 //
-//16900,475,100 //
-//16901,475,100 //
-//16902,475,100 //
-//16903,475,100 //
-//16904,475,100 //
-//16905,475,100 //
-//16906,475,100 //
-//16907,475,100 //
-//16908,475,100 //
-//16909,475,100 //
-//16910,475,100 //
-//16911,475,100 //
-//16912,475,100 //
-//16913,475,100 //
-//16914,475,100 //
-//16915,475,100 //
-//16916,475,100 //
-//16917,475,100 //
-//16918,475,100 //
-//16919,475,100 //
-//16920,475,100 //
-//16921,475,100 //
-//16922,475,100 //
-//16923,475,100 //
-//16924,475,100 //
-//16925,475,100 //
-//16926,475,100 //
-//16927,475,100 //
-//16928,475,100 //
-//16929,475,100 //
-//16930,475,100 //
-//16931,475,100 //
-//16932,475,100 //
-//16933,475,100 //
-//16934,475,100 //
-//16935,475,100 //
-//16936,475,100 //
-//16937,475,100 //
-//16938,475,100 //
-//16939,475,100 //
-//16940,475,100 //
-//16941,475,100 //
-//16942,475,100 //
-//16943,475,100 //
-//16944,475,100 //
-//16945,475,100 //
-//16946,475,100 //
-//16947,475,100 //
-//16948,475,100 //
-//16949,475,100 //
-//16950,475,100 //
-//16951,475,100 //
-//16952,475,100 //
-//16953,475,100 //
-//16954,475,100 //
-//16955,475,100 //
-//16956,475,100 //
-//16957,475,100 //
-//16958,475,100 //
-//16959,475,100 //
-//16960,475,100 //
-//16961,475,100 //
-//16962,475,100 //
-//16963,475,100 //
-//16964,475,100 //
-//16965,475,100 //
-//16966,475,100 //
-//16967,475,100 //
-//16968,475,100 //
-//16969,475,100 //
-//16970,475,100 //
-//16971,475,100 //
-16972,475,100 // Weather_Report_Box
-16973,475,100 // Yellow_Hat_Box
-16974,475,100 // Comin_Actor_Box
-16975,475,100 // Singing_Bird_Box
-16976,475,100 // Hen_Set_Box
-16977,475,100 // Red_Minicrown_Box
-//16978,475,100 //
-16979,475,100 // Silvervine_Fruit_Box4
-16995,475,100 // Old_Hat_Box
-16998,475,100 // Archangel_Wing_Box
-16999,475,100 // Bravery_Bag_Box
-17013,475,100 // Malang_Woe_Encard_Box
-17014,475,100 // Butterfly_ear_Box
-17015,475,100 // Stuckhead_Screw_Box
-//17027,475,100 //
-17037,475,100 // Trans_Box_Devi
-17038,475,100 // Trans_Box_Ray_Arch
-17039,475,100 // Trans_Box_Mavka
-17040,475,100 // Trans_Box_Marduk
-17041,475,100 // Trans_Box_Banshee
-17042,475,100 // Trans_Box_Poring
-17043,475,100 // Trans_Box_Golem
-//17044,475,100 //
-//17045,475,100 //
-//17046,475,100 //
-//17065,475,100 //
-17081,475,100 // Yggdrasil_Crown_Box
-17084,475,100 // Upg_Katar_Box
-17085,475,100 // Upg_Two_Handed_Axe_Box
-17086,475,100 // Upg_Lance_Box
-17087,475,100 // Upg_Book_Box
-17088,475,100 // Upg_Staff_Box
-17089,475,100 // Upg_Dagger_Box
-17090,475,100 // Upg_Revolver_Box
-17091,475,100 // Upg_Mace_Box
-17092,475,100 // Upg_Bow_Box
-17093,475,100 // Upg_Twohand_Sword_Box
-17094,475,100 // Upg_Katar_Box2
-17095,475,100 // Upg_Two_Handed_Axe_Box2
-17096,475,100 // Upg_Lance_Box2
-17097,475,100 // Upg_Book_Box2
-17098,475,100 // Upg_Staff_Box2
-17099,475,100 // Upg_Dagger_Box2
-17100,475,100 // Upg_Revolver_Box2
-17101,475,100 // Upg_Mace_Box2
-17102,475,100 // Upg_Bow_Box2
-17103,475,100 // Upg_Twohand_Sword_Box2
-17106,475,100 // Max_Weight_Up_10Box
-17118,475,100 // ASPD_Potion_Box10
-17122,475,100 // Immuned_Shield_Box
-17123,475,100 // Black_Devil_Mask_Box
-17126,475,100 // ASPD_Potion_Box10_2
-//17135,475,100 //
-//17136,475,100 //
-//17137,475,100 //
-//17144,475,100 //
-//17145,1,100 //
-//17153,475,100 //
-//17154,475,100 //
-17155,475,100 // Upg_Huuma_Shuriken_Box
-17159,475,100 // Change_Name_Card_Box
-17160,475,100 // Character_Name_Change_Card_Box
-17162,475,100 // Boarding_Halter_Box7
-//17163,475,100 //
-//17164,475,100 //
-//17166,475,100 //
-//17171,475,100 //
-//17172,475,100 //
-//17173,475,100 //
-//17174,475,100 //
-//17175,475,100 //
-17176,475,100 // Boarding_Halter_Box3
-//17177,475,100 //
-//17178,475,100 //
-//17179,475,100 //
-//17180,475,100 //
-//17182,475,100 //
-//17193,475,100 //
-//17194,475,100 //
-//17195,475,100 //
-//17196,475,100 //
-//17197,475,100 //
-//17198,475,100 //
-//17200,475,100 //
-//17201,475,100 //
-//17202,475,100 //
-17204,475,100 // Shining_Egg
-//17205,475,100 //
-//17206,475,100 //
-//17224,475,100 //
-17226,475,100 // Infinite_Concentration_Potion_
-17227,475,100 // Infinite_Awakening_Potion_
-17228,475,100 // Infinite_Berserk_Potion_
-17229,475,100 // Infinite_Flywing_Box
-17231,475,100 // Refinement_Ore_Box
-17232,475,100 // Refinement_Box_7
-17241,475,100 // Amistr_Cap_Box
-17244,475,100 // Event_Almighty_Box
-17246,475,100 // HD_Elunium_Box_30
-17247,475,100 // HD_Oridecon_Box_30
-17251,475,100 // C_Wing_Of_Fly_3Day_Box
-17252,475,100 // RWC_2012_Set_Box
-17253,475,100 // RWC_2012_Ring_Box
-17254,475,100 // RWC_2012_Pendant_Box
-17262,475,100 // Ex_Def_Potion_Box
-17263,475,100 // Infinite_Concentration_Potion_3rd_Box
-17264,475,100 // Infinite_Awakening_Potion_3rd_Box
-17265,475,100 // Infinite_Berserk_Potion_3rd_Box
-17266,475,100 // Limited_Battle_Manual_Package
-17270,475,100 // STR_Biscuit_Stick_Box
-17271,475,100 // VIT_Biscuit_Stick_Box
-17272,475,100 // AGI_Biscuit_Stick_Box
-17273,475,100 // INT_Biscuit_Stick_Box
-17274,475,100 // DEX_Biscuit_Stick_Box
-17275,475,100 // LUK_Biscuit_Stick_Box
-17277,475,100 // Unlimited_Box
-17278,475,100 // Unlimited_Box_10
-//17279,475,100 //
-17281,475,100 // Refinement_Ore_Box_IV
-17282,475,100 // Refinement_Ore_Box_IV_10
-17283,475,100 // Refinement_Ore_Box_IV_20
-//17284,475,100 //
-17285,475,100 // Events_Beauty_Gift_Box
-//17286,475,100 //
-//17287,475,100 //
-//17288,475,100 //
-17292,475,100 // Shadow_Box
-17293,475,100 // Shadow_Physical_Package
-17294,475,100 // Shadow_Magical_Package
-17298,475,100 // Support_Package
-17299,475,100 // Support_Package_10
-17302,475,100 // Shadow_Box_II_
-17303,475,100 // Shadow_Set_Box_II
-17304,475,100 // Neuralizer_Box_3
-17306,475,100 // Status_Reset_Coupon_Box
-17314,475,100 // Infinite_Giant_Fly_Wing_Box
-17315,475,100 // Lucky_Silvervine_Fruit_Box_10
-17316,475,100 // Lucky_Silvervine_Fruit_Box_110
-17321,475,100 // Three_Master_Package
-17322,475,100 // Three_Master_Package_10
-17331,475,100 // Event_Almighty_Box_
-17332,475,100 // Event_Almighty_Box_100
-17338,475,100 // Ore_Box_V
-17339,475,100 // Ore_Box_V_10
-17429,475,100 // 11_Anniversary_Shadow_Box
-17430,475,100 // 11_Anniversary_Shadow_Package
-17432,475,100 // Lucky_Silvervine_Fruit_Box_II_10
-17433,475,100 // Lucky_Silvervine_Fruit_Box_II_110
-17438,475,100 // Three_Master_Package_II
-17439,475,100 // Three_Master_Package_II10
-17440,475,100 // Name_Change_Card_Box
-17441,475,100 // Halter_Lead_Box
-17442,475,100 // Emperium_G_Box
-17443,475,100 // Reinforcement_Buckler_Box
-17449,475,100 // Cookies_Bar_Set
-17455,475,100 // Premium_Battle_Manual_Box
-17456,475,100 // Support_Package_II
-17457,475,100 // Support_Package_II_10
-17461,475,100 // Frozen_Egg_Costume
-17465,475,100 // Refinement_Ore_Box_VI
-17466,475,100 // Refinement_Ore_Box_VI_10
-17467,475,100 // Limited_Token_of_Ziegfried_Box_50
-17468,475,100 // Neuralizer_II_Box_3
-17469,475,100 // Neuralizer_I_Box
-17470,475,100 // Headgear_Costume_Scroll
-17472,475,100 // Support_Package_III
-17473,475,100 // Support_Package_III_10
-17474,475,100 // Infinite_Giant_Fly_Wing_Box_V
-17475,475,100 // Limited_Gym_Membership_Card_Box_10
-17477,475,100 // Unlimited_Box_II
-17478,475,100 // Unlimited_Box_II_10
-17481,475,100 // Flower_Blossom_Scroll
-17483,475,100 // Three_Master_Package_III
-17484,475,100 // Three_Master_Package_III_10
-17491,475,100 // Refinement_Ore_Box_VII
-17492,475,100 // Refinement_Ore_Box_VII_10
-17493,475,100 // Burning_Feather_Costume_Scroll
-17495,475,100 // Lucky_Silvervine_Fruit_Box_III10
-17496,475,100 // Lucky_Silvervine_Fruit_Box_III110
-17497,475,100 // Seaside_Costume_Scroll
-17498,475,100 // Three_Master_Package_IV
-17499,475,100 // Three_Master_Package_IV_10
-17501,475,100 // Support_Package_IV
-17502,475,100 // Support_Package_IV_10
-17507,475,100 // Nyangvine_Box4
-17508,475,100 // Nyangvine_Box10
-17509,475,100 // Nyangvine_Box40
-17510,475,100 // Smelting_Ore_Box_VIII
-17511,475,100 // Smelting_Ore_Box_VIII_10
-17512,475,100 // Limited_Purified_Eluminium_Box_30
-17513,475,100 // Limited_Purified_Oridecon_Box_30
-17515,475,100 // Unlimited_Box_III
-17516,475,100 // Unlimited_Box_III_10
-17517,475,100 // Animal_Costume_Scroll
-17520,475,100 // Limited_Edition_Manual_Box
-17521,475,100 // Three_Master_Package_V
-17522,475,100 // Three_Master_Package_V_10
-17523,475,100 // Mystical_Costume_Scroll
-17524,475,100 // Limited_Power_Booster_Box
-17525,475,100 // Limited_Power_Booster_Box_100
-17527,475,100 // Nyangvine_Box200
-17544,475,100 // Smelting_Ore_Box_IX
-17545,475,100 // Smelting_Ore_Box_IX_10
-17547,475,100 // Limited_2015_Neuralizer_Box
-17548,475,100 // Limited_2015_Status_Initialization_Volume_Box
-17549,475,100 // Limited_High_Density_Bradium_Box_30
-17550,475,100 // Limited_High_Density_Kalunium_Box_30
-17567,475,100 // Event_Almighty_Box__
-17568,475,100 // Event_Almighty_Box_100_
-17569,475,100 // Dungeon_1_hour_Ticket_Box
-//17570,475,100 //
-//17573,475,100 //
-//17574,475,100 //
-//17575,475,100 //
-//17576,475,100 //
-//17582,475,100 //
-//17583,475,100 //
-//17586,475,100 //
-//17587,475,100 //
-//17590,475,100 //
-//17591,475,100 //
-//17592,475,100 //
-//17593,475,100 //
-//17599,475,100 //
-//17601,475,100 //
-//17602,475,100 //
-//17609,475,100 //
-//17610,475,100 //
-//17616,475,100 //
-//17617,475,100 //
-//17631,475,100 //
-//17632,475,100 //
-//17639,475,100 //
-//17640,475,100 //
-17648,475,100 // Smithy_Lucky_Egg
-//17646,475,100 //
-//17650,475,100 //
-//17651,475,100 //
-17659,475,100 // Ganymede_Lucky_Egg
-//17662,475,100 //
-//17663,475,100 //
-17665,475,100 // LastAngel_LuckyScroll
-//17668,475,100 //
-//17669,475,100 //
-17671,475,100 // Valkyrie_Lucky_Egg
-//17672,475,100 //
-//17673,475,100 //
-17674,475,100 // Splash_Rainbow_Lucky_Egg
-//17675,475,100 //
-//17676,475,100 //
-//17677,475,100 //
-17681,475,100 // Midgard_Lucky_Scroll
-//17683,475,100 //
-//17684,475,100 //
-//17689,475,100 //
-//17690,475,100 //
-//17691,475,100 //
-17692,475,100 // Blessing_Scarlet_Egg
-//17712,475,100 //
-//17713,475,100 //
-//17716,475,100 //
-//17717,475,100 //
-//17718,475,100 //
-//17726,475,100 //
-//17727,475,100 //
-//17742,475,100 //
-//17743,475,100 //
-//17748,475,100 //
-//17749,475,100 //
-//17756,475,100 //
-//17759,475,100 //
-//17760,475,100 //
-//17761,475,100 //
-//17764,475,100 //
-//17765,475,100 //
-//17774,475,100 //
-//17775,475,100 //
-//17776,475,100 //
-//17777,475,100 //
-//17783,475,100 //
-//17784,475,100 //
-//17792,475,100 //
-//17793,475,100 //
-//17794,475,100 //
-//17795,475,100 //
-//17799,475,100 //
-//17800,475,100 //
-//17832,475,100 //
-//17833,475,100 //
-//17881,507,100 //
-//17882,475,100 //
-//17883,475,100 //
-//17884,475,100 //
-//17885,475,100 //
-//17886,475,100 //
-//17887,475,100 //
-//17894,475,100 //
-//17895,475,100 //
-//17901,475,100 //
-//17902,475,100 //
-//17914,475,100 //
-//17920,475,100 //
-//17921,475,100 //
-//17923,475,100 //
-//17924,475,100 //
-//17925,475,100 //
-//17926,475,100 //
-//17935,475,100 //
-//17936,475,100 //
-//17940,475,100 //
-//17941,475,100 //
-//17944,475,100 //
-//17945,475,100 //
-//17948,475,100 //
-//17949,475,100 //
-//17950,475,100 //
-//17951,475,100 //
-//17959,475,100 //
-//17960,475,100 //
-//17961,475,100 //
-//17962,475,100 //
-//17967,475,100 //
-//17968,475,100 //
-//17969,475,100 //
-//17970,475,100 //
-//17971,475,100 //
-//17972,475,100 //
-//17973,475,100 //
-//17974,475,100 //
-//17975,475,100 //
-//17976,475,100 //
-//17977,475,100 //
-//17978,475,100 //
-//17979,475,100 //
-//17980,475,100 //
-//17981,475,100 //
-//17982,475,100 //
-//17983,475,100 //
-//17984,475,100 //
-//17985,475,100 //
-//17986,475,100 //
-18100,507,100 // Shooting_Star_C
-18106,499,100 // P_Bow3
-18107,507,100 // Malang_Snow_Crab
-18108,507,100 // Brindle_Eel
-18112,1,100 // Upg_Bow
-18116,499,100 // Metal_Bow
-18118,499,100 // TE_Woe_Bow
-18128,467,100 // Infinity_Bow
-18132,467,100 // Unity_Bow
-//18141,499,100 //
-//18150,499,100 //
-//18151,499,100 //
-//18165,499,100 //
-//18166,499,100 //
-//18182,499,100 //
-//18183,499,100 //
-18500,507,100 // Cheer_Scarf6
-18501,507,100 // Cheer_Scarf8
-18502,507,100 // Cheer_Scarf10
-18505,507,100 // Umbala_Spirit
-18506,1,100 // Hattah_Black
-18508,1,100 // Garuda_Hat
-18514,499,100 // Para_Team_Hat2
-18520,475,100 // Jaty_C
-18526,507,100 // Yummy_Lollipop
-18528,1,100 // Tare_Neko_Cru
-18536,1,100 // Foxtail
-18556,499,100 // Angel_Helmet
-18557,499,100 // Devil_Helmet
-18563,1,100 // Heart_Wing_Hairband
-18566,507,100 // Nut_Donut_In_Mouth
-18569,1,100 // Soft_Sheep_Hat
-18572,1,100 // Korean_Judge_Hat
-18574,1,100 // Lord_of_Death
-18579,467,100 // 9th_Anni_Hat
-18580,1,100 // Yggdrasil_Crown
-18595,1,100 // Horn_Of_Ancient
-18596,1,100 // Sprout_Hat
-18597,1,100 // Mercury_Helm
-18599,1,100 // Black_Devil_Mask
-18600,1,100 // Cat_Ears_Beret
-18601,1,100 // Red_Bread_Hat
-18603,1,100 // Black_Devil_Mask_
-18612,1,100 // White_Musang_Hat
-18613,1,100 // Black_Musang_Hat
-18673,1,100 // Tare_Pope_
-//18731,499,100 //
-18732,499,100 // TE_Woe_Cap
-18733,499,100 // TE_Woe_Bone_Helm
-18734,499,100 // TE_Woe_Magic_Eyes
-18742,1,100 // C_MoonStar_Accessory
-18779,475,100 // RWC_Champ_Crown_Red
-18780,475,100 // RWC_Champ_Crown_Blue
-18781,475,100 // RWC_Champ_Crown_Black
-18796,475,100 // RWC_Champ_Crown_QF
-18821,1,100 // Rainbow_Feather_Deco
-18828,475,100 // 2012RMSCNO1
-18829,475,100 // 2012RMSCNO2
-18830,475,100 // 2012RMSCNO3
-18970,475,100 // Magical_Moon_Cat
-18971,475,100 // Old_Rune_Circlet
-18972,475,100 // Old_Mitra
-18973,475,100 // Old_Driver_Band_R
-18974,475,100 // Old_Driver_Band_Y
-18975,475,100 // Old_Shadow_Handicraft
-18976,475,100 // Old_Minstrel_Song_Hat
-18977,475,100 // Old_Midas_Whisper
-18978,475,100 // Old_Magic_Stone_Hat
-18979,475,100 // Old_Blazing_Soul
-18980,475,100 // Old_Wind_Whisper
-18981,475,100 // Old_Dying_Swan
-18982,475,100 // Old_Circlet_Of_Bone
-18983,475,100 // Old_Protect_Of_Crown
-18984,475,100 // Old_Camo_RabbitHood
-19033,467,100 // Rift_Ancient_Decoration
-19051,475,100 // Warrior_Moon_Cat
-19052,507,100 // Sigruns_Wing
-19053,475,100 // Fighter_Moon_Cat
-19084,467,100 // Parfaille_Vigilante_Hat
-//19119,467,100 //
-19164,467,100 // Para_Team_Hat100
-19165,467,100 // Para_Team_Hat160
-//19169,1,100 //
-19189,475,100 // Racing_Cap_MC
-19190,475,100 // Racing_Cap_GN
-19191,475,100 // Racing_Cap_GC
-19192,475,100 // Racing_Cap_SC
-19193,475,100 // Racing_Cap_WL
-19194,475,100 // Racing_Cap_SO
-19195,475,100 // Racing_Cap_RK
-19196,475,100 // Racing_Cap_RG
-19197,475,100 // Racing_Cap_AB
-19198,475,100 // Racing_Cap_SR
-19199,475,100 // Racing_Cap_RA
-19200,475,100 // Racing_Cap_MI
-19201,475,100 // Racing_Cap_WA
-19202,475,100 // Racing_Cap_GS
-19203,475,100 // Racing_Cap_NJ
-19204,475,100 // Racing_Cap_SN
-19205,475,100 // Racing_Cap_SU
-//19218,499,100 //
-//19256,475,100 //
-//19275,499,100 //
-//19283,1,100 //
-//19284,1,100 //
-//19310,499,100 //
-//19389,507,100 //
-19396,475,100 // Racing_Cap_SG
-19397,475,100 // Racing_Cap_SL
-//19404,499,100 //
-19507,1,100 // Fine_Sun
-19509,1,100 // Butterfly_Wing_Ear
-19510,1,100 // Nut_On_Head
-19511,1,100 // Heart_Eye_Patch1
-19512,1,100 // Heart_Eye_Patch2
-19513,1,100 // Chicken_Beak
-19514,1,100 // Charlie_Beard
-19515,1,100 // Yellow_Hat
-19516,1,100 // Singing_Bird
-19517,1,100 // Cocks_Comb
-19518,1,100 // Rainbow
-19519,1,100 // Lightning_Cloud
-19520,1,100 // Rain_Cloud
-19521,1,100 // Charlie_Hat
-19522,1,100 // Mini_Crown1
-19523,475,100 // Donation_Ribbon
-19530,1,100 // C_Wild_Rose
-19531,475,100 // C_Cube_Mask
-19532,475,100 // C_Red_Bunny_Band
-19533,1,100 // C_Spore_Hat
-19534,1,100 // C_Tha_Despero_Mask
-19535,1,100 // C_Sinsuncho_Hat
-19536,1,100 // C_Rose_Corsage
-19544,1,100 // C_Tare_Neko_Cru
-19555,1,100 // C_Crescent_Moon_Helm
-19556,1,100 // C_Kabuki_Mask
-19557,1,100 // C_Ayothaya_Hat
-19558,1,100 // C_Crow_Hat
-19559,1,100 // C_Baby_Dragon_Hat
-19560,1,100 // C_Coati_Hat
-19561,1,100 // C_Tucan_Hat
-19562,1,100 // C_Jaguar_Hat
-19563,1,100 // C_Dragon_Arhat_Mask
-19564,1,100 // C_Tiger_Arhat_Mask
-19565,1,100 // C_Chung_Hairband
-19566,1,100 // C_Samurai_Mask
-19567,1,100 // C_Hatta_Black
-19568,1,100 // C_Ancient_Horns
-19569,1,100 // C_Sprout_Hat
-19570,1,100 // C_Mercury_Riser
-19571,1,100 // C_White_Musang_Hat
-19572,1,100 // C_Black_Musang_Hat
-19573,1,100 // C_Heart_Wing_Hairband
-19574,1,100 // C_Lord_of_Death
-19576,1,100 // C_Tare_Pope
-19586,1,100 // C_Pink_Bunny_Band_J
-19598,1,100 // C_Wondering_Wolf_Helm
-19599,1,100 // C_Imp_Hat
-19650,1,100 // C_Rainbow_Feather_Deco
-19710,1,100 // C_Wings_Of_Victory
-19764,475,100 // C_Monster_Card
-19765,475,100 // C_Wing_Angels_Ears
-19853,507,100 // C_Filir_Wing_Ears
-19871,1,100 // C_Music_Decoration
-19938,1,100 // C_Love_Rabbit_Hood
-19996,467,100 // Horse_King
-19999,467,100 // C_Mouse_Hat1
-20000,467,100 // C_Mouse_Hat2
-20001,467,100 // C_Mouse_Hat3
-20002,467,100 // C_Mouse_Hat4
-20003,467,100 // C_Mouse_Hat5
-20025,467,100 // C_Cow_Hat1
-20026,467,100 // C_Cow_Hat2
-20027,467,100 // C_Cow_Hat3
-20028,467,100 // C_Cow_Hat4
-20053,467,100 // C_W_King_Tiger_Doll_Hat
-20062,1,100 // C_Angel_Stair
-20063,475,100 // C_Yellow_Brain_Hat
-20064,475,100 // C_Blue_Brain_Hat
-20067,467,100 // C_White_Rabbit_Headband
-20068,467,100 // C_Black_Rabbit_Headband
-20086,467,100 // C_Dragon_Cintamani_Hat1
-20087,467,100 // C_Dragon_Cintamani_Hat2
-20088,467,100 // C_Dragon_Cintamani_Hat3
-20089,467,100 // C_Dragon_Cintamani_Hat4
-20110,467,100 // C_Coiledup_Snake
-20111,467,100 // C_Coiledup_Snake_Hat2
-20135,507,100 // C_12_Anniversary_Crown_Of_Saint
-20136,507,100 // C_12_Anniversary_Elf_Ears
-20139,467,100 // C_Horse_Hairpin
-20140,467,100 // C_Horse_Hairpin_
-20162,467,100 // C_Fleece_Hat
-20163,467,100 // C_Fleece_Hat_
-20179,467,100 // C_Monkey_Coat_Hat
-20206,467,100 // C_Chicken_Hat
-20210,467,100 // C_Chicken_Hat_
-20211,467,100 // C_Chicken_Hat__
-20227,467,100 // C_Husky_Hat
-20228,467,100 // C_Pig_MoneyBox
-20285,1,100 // C_Blossom_Fluttering
-20702,499,100 // TE_Woe_Muffler
-20703,499,100 // TE_Woe_Manteau
-20704,499,100 // TE_Woe_Magic_Manteau
-20709,507,100 // Mana_Manteau
-20727,1,100 // Brilliant_Golden_Wings
-20743,467,100 // Airship_Cape
-20779,467,100 // Rift_Manteau
-20780,467,100 // Unity_STR_Manteau
-20781,467,100 // Unity_AGI_Manteau
-20782,467,100 // Unity_INT_Muffler
-20787,467,100 // Unity_Exquisite_Muffler
-//20801,467,100 //
-20823,467,100 // Para_Team_Manteau100
-20824,467,100 // Para_Team_Manteau130
-20825,467,100 // Para_Team_Manteau160
-20834,256,100 // Drifter's_Cape
-//20835,1,100 //
-//20855,499,100 //
-//20903,499,100 //
-//20906,499,100 //
-//20939,499,100 //
-21000,1,100 // Upg_Twohand_Sword
-21005,499,100 // Metal_Two_Hand_Sword
-21006,499,100 // TE_Woe_Two_Hand_Sword
-21014,467,100 // Infinity_Two-Handed_Sword
-//21023,499,100 //
-//21030,499,100 //
-//21037,499,100 //
-//21049,499,100 //
-22012,507,100 // Mana_Boots
-22046,467,100 // Airship_Boots
-22075,467,100 // Rift_Shoes
-22078,467,100 // Unity_STR_Boots
-22079,467,100 // Unity_AGI_Boots
-22080,467,100 // Unity_DEX_Boots
-22081,467,100 // Unity_INT_Boots
-//22102,467,100 //
-22122,467,100 // Para_Team_Boots100
-22123,467,100 // Para_Team_Boots115
-22124,467,100 // Para_Team_Boots130
-22125,467,100 // Para_Team_Boots145
-22126,467,100 // Para_Team_Boots160
-22131,256,100 // Spurred_Boots
-//22169,499,100 //
-//22173,499,100 //
-//22204,499,100 //
-22508,507,100 // Para_Team_Mark_
-22510,475,100 // King_Wolf_Scroll
-22511,467,100 // Fenrir_Card__
-22513,499,100 // King_of_Gift_Box
-22517,507,100 // Loki_Summon_Scroll
-22521,507,100 // Level_Up_Box_
-22522,507,100 // Level_Up_Box100
-22523,507,100 // Level_Up_Box120
-22524,507,100 // Level_Up_Box130
-22525,507,100 // Level_Up_Box140
-22526,507,100 // Level_Up_Box150
-22527,507,100 // Level_Up_Box160
-22528,475,100 // Pet_Exchange_Ticket_Box
-22533,507,100 // New_Year_Gift_Box
-22535,499,100 // WorkerScroll_A
-22536,499,100 // WorkerScroll_B
-//22539,467,100 //
-22540,475,100 // Runstone_Lux
-22541,475,100 // PC_Room_Coupon_Box_VI
-22542,467,100 // Center_Potion_B
-22543,467,100 // Berserk_Potion_B
-22544,467,100 // Awakening_Potion_B
-22545,475,100 // Speed_Potion
-22546,475,100 // Slow_Potion
-22547,475,100 // Anti-Payne_Moment
-22548,475,100 // Wed_Cursed
-22549,467,100 // Poison_Bottle_
-22550,475,100 // Cookie_Bag_B
-22551,475,100 // Sesame_Pastry_B
-22552,475,100 // Honey_Pastry_B
-22553,475,100 // Rainbow_Cake_B
-22554,467,100 // First_Aid_Box
-22555,24,100 // Gourmet_Chocolate
-22556,24,100 // Luxury_Chocolate
-22557,24,100 // Masterpieces_of_Artisan_Chocolate
-22566,112,100 // Frost_Crystal
-22567,384,100 // Squad_Prize
-22569,499,100 // Gift_New_start
-22589,499,100 // Savage_Ora
-22590,499,100 // Grand_Peco_Ora
-22591,499,100 // Dest_Wolf_Ora
-22592,507,100 // Happy_Call_Box
-22610,499,100 // New_Beginnings_Box
-22614,507,100 // Premium_Manual
-22617,475,100 // Clear_Box_S
-22618,475,100 // Clear_Box_A
-22619,499,100 // Ghost_Summon_Scroll
-22623,499,100 // New_Start_Box
-22626,475,100 // January_Gift_Box
-22627,475,100 // February_Gift_Box
-22652,475,100 // Briliant_Hat_Box
-22671,475,100 // March_Gift_Box
-22672,475,100 // April_Gift_Box
-22673,475,100 // May_Gift_Box
-22674,475,100 // June_Gift_Box
-22685,467,100 // Solo_Christmas_Gift
-22691,507,100 // Record_Fragment1
-22692,507,100 // Record_Fragment2
-22693,507,100 // Record_Fragment3
-22694,507,100 // Record_Fragment4
-22695,507,100 // Record_Fragment5
-22700,507,100 // Jumping_Support_Box
-22708,499,100 // Pitapat_Box
-22717,499,100 // Wanderer_Ball
-22718,499,100 // Lude_Ball
-22719,499,100 // Tatacho_Ball
-22720,499,100 // Novus_Ball
-22734,507,100 // Revolution_Quiz_Box
-22735,475,100 // Sealed_Moonlight_Flower_Scroll
-22736,475,100 // July_Gift_Box
-22756,475,100 // August_Gift_Box
-22760,507,100 // Argiope_Transportin
-22761,507,100 // Luciola_Vespa_Transportin
-22762,507,100 // Centipede_Transportin
-22764,475,100 // Pet_Exchange_Ticket_Box_
-22777,475,100 // Gift_Buff_Set
-22781,475,100 // PC_Bang_Normal_Box
-22782,475,100 // PC_Bang_Wooden_Box
-22783,475,100 // PC_Bang_Golden_Box
-22784,475,100 // PC_Bang_Platinum_Box
-22802,475,100 // Safe_to_6_Equipment_Certificate
-//22807,507,100 //
-22808,475,100 // Special_Gift_Box
-22812,475,100 // Sealed_Dracula_Scroll
-22813,475,100 // Bearer's_Shadow_Box
-//22816,475,100 //
-//22817,475,100 //
-//22818,475,100 //
-//22819,475,100 //
-//22820,475,100 //
-//22821,475,100 //
-22823,475,100 // Sealed_Sniper_Scroll
-22828,475,100 // Sealed_Album_Scroll
-22829,475,100 // Sealed_Card_Album
-22837,507,100 // Integer_Time
-22842,475,100 // Sealed_Dracula_Scroll_II
-22844,475,100 // Sealed_Dracula_Card_Album
-22845,475,100 // Sealed_Fortune_Egg
-22846,467,100 // Sealed_Dracula_Card_
-22850,475,100 // January_Gift_Box_
-22851,475,100 // February_Gift_Box_
-22852,475,100 // March_Gift_Box_
-22853,475,100 // April_Gift_Box_
-22854,475,100 // May_Gift_Box_
-22855,475,100 // June_Gift_Box_
-22856,475,100 // July_Gift_Box_
-22857,475,100 // August_Gift_Box_
-22858,475,100 // September_Gift_Box
-22859,475,100 // October_Gift_Box
-22860,475,100 // November_Gift_Box
-22861,475,100 // December_Gift_Box
-22869,507,100 // Lucky_Roulette_Tickets
-22870,467,100 // Xmas_Package_14
-22873,475,100 // Sealed_Beelzebub_Scroll_II
-22874,475,100 // Sealed_Beelzebub_Card_Album
-22875,467,100 // Sealed_Beelzebub_Card
-22881,499,100 // Binding_Rope
-22883,475,100 // September_Gift_Box_
-22884,475,100 // October_Gift_Box_
-22885,475,100 // November_Gift_Box_
-22886,475,100 // December_Gift_Box_
-22887,507,100 // PC-Room_Box
-22888,475,100 // New_Year's_Scroll
-22893,475,100 // New_Year's_Shadow_Cube
-22894,507,100 // Limited_2015_Neuralizer
-22895,507,100 // Limited_2015_Status_Initialization_Volume
-22896,507,100 // Limited_Old_Status_Initialization_Volume
-22901,499,100 // Question_Old_Blue_Box
-22902,475,100 // Sealed_Card_Album_Scroll_II
-//22906,475,100 //
-//22907,507,100 //
-//22908,507,100 //
-//22914,507,100 //
-//22929,507,100 //
-//22946,475,100 //
-//22947,475,100 //
-//22948,475,100 //
-//22949,475,100 //
-//22950,475,100 //
-//22951,475,100 //
-//22952,475,100 //
-//22971,475,100 //
-//22972,475,100 //
-22979,475,100 // C_Battle_Gum_2
-//22982,507,100 //
-//22983,507,100 //
-//22988,475,100 //
-//22989,475,100 //
-//22997,507,100 //
-//22998,507,100 //
-//23007,475,100 //
-//23008,507,100 //
-//23010,507,100 //
-//23011,507,100 //
-23012,475,100 // S_Small_Mana_Potion
-//23013,475,100 //
-//23014,475,100 //
-//23015,475,100 //
-//23021,507,100 //
-//23022,507,100 //
-//23023,507,100 //
-//23024,475,100 //
-//23025,507,100 //
-//23026,507,100 //
-//23027,467,100 //
-//23028,499,100 //
-//23034,475,100 //
-//23036,507,100 //
-//23037,507,100 //
-23038,475,100 // S_Slim_White_Box
-//23039,475,100 //
-//23040,475,100 //
-//23041,475,100 //
-23042,475,100 // S_Seed_Of_Yggdrasil
-23043,475,100 // S_Seed_Of_Yggdrasil_Box
-23046,475,100 // S_Mystic_Powder
-23047,475,100 // S_Blessing_Tyr
-23048,475,100 // S_Resilience_Potion
-//23049,475,100 //
-//23050,475,100 //
-//23051,475,100 //
-//23052,475,100 //
-//23062,499,100 //
-//23063,507,100 //
-//23069,475,100 //
-//23070,475,100 //
-//23072,475,100 //
-//23073,475,100 //
-//23074,475,100 //
-//23075,475,100 //
-23087,499,100 // Small_Leather_Bag
-//23094,475,100 //
-//23095,475,100 //
-//23096,475,100 //
-//23097,507,100 //
-//23098,507,100 //
-//23106,475,100 //
-//23116,475,100 //
-//23119,475,100 //
-//23120,475,100 //
-//23134,475,100 //
-//23137,507,100 //
-//23142,467,100 //
-//23143,467,100 //
-//23148,475,100 //
-//23149,475,100 //
-//23159,475,100 //
-//23160,467,100 //
-//23162,475,100 //
-//23165,475,100 //
-//23167,475,100 //
-//23171,467,100 //
-//23172,467,100 //
-//23173,467,100 //
-//23176,475,100 //
-23177,475,100 // Kafra_Card_
-23196,475,100 // Shining_Blue_Lucky_Egg
-//23198,475,100 //
-//23199,475,100 //
-//23200,475,100 //
-//23201,475,100 //
-//23202,467,100 //
-//23203,475,100 //
-//23204,475,100 //
-//23206,475,100 //
-//23207,475,100 //
-//23209,475,100 //
-//23210,475,100 //
-//23211,475,100 //
-//23212,475,100 //
-//23213,475,100 //
-//23214,475,100 //
-//23215,475,100 //
-//23216,475,100 //
-//23217,475,100 //
-//23218,475,100 //
-//23235,475,100 //
-//23245,475,100 //
-//23267,507,100 //
-//23268,507,100 //
-//23269,507,100 //
-//23270,507,100 //
-//23271,507,100 //
-//23272,507,100 //
-//23273,507,100 //
-//23274,507,100 //
-//23275,507,100 //
-//23276,507,100 //
-//23278,507,100 //
-23280,499,100 // N_Fly_Wing_
-//23283,475,100 //
-//23296,499,100 //
-//23305,475,100 //
-23307,475,100 // S_Shining_Def_Scroll
-//23317,467,100 //
-//23318,475,100 //
-//23325,507,100 //
-//23328,499,100 //
-//23332,475,100 //
-//23333,475,100 //
-//23338,499,100 //
-23340,467,100 // S_Megaphone
-//23348,507,100 //
-//23349,507,100 //
-//23350,507,100 //
-//23351,507,100 //
-//23352,507,100 //
-//23353,507,100 //
-//23364,499,100 //
-//23365,499,100 //
-//23383,475,100 //
-//23405,475,100 //
-//23440,475,100 //
-//23444,475,100 //
-//23446,499,100 //
-//23473,475,100 //
-//23475,475,100 //
-//23484,499,100 //
-//23485,499,100 //
-//23486,499,100 //
-//23487,499,100 //
-//23488,499,100 //
-//23489,499,100 //
-//23490,499,100 //
-//23491,499,100 //
-//23492,499,100 //
-//23493,499,100 //
-//23494,499,100 //
-//23495,499,100 //
-//23496,499,100 //
-//23497,499,100 //
-//23498,499,100 //
-//23499,499,100 //
-//23500,499,100 //
-//23501,499,100 //
-//23502,499,100 //
-//23503,499,100 //
-//23504,499,100 //
-//23505,499,100 //
-//23506,499,100 //
-//23537,475,100 //
-//23575,499,100 //
-//23576,499,100 //
-//23577,499,100 //
-//23578,499,100 //
-//23579,499,100 //
-//23580,499,100 //
-//23581,499,100 //
-//23582,499,100 //
-//23583,499,100 //
-//23584,499,100 //
-//23585,499,100 //
-//23586,499,100 //
-//23587,499,100 //
-//23618,475,100 //
-//23619,475,100 //
-//23647,507,100 //
-//23648,507,100 //
-//23650,475,100 //
-//23661,475,100 //
-//23683,499,100 //
-//23700,475,100 //
-//23710,475,100 //
-//23718,475,100 //
-//23719,475,100 //
-//23751,475,100 //
-//23752,475,100 //
-//23754,475,100 //
-//23763,475,100 //
-//23764,475,100 //
-//23765,475,100 //
-//23771,499,100 //
-//23772,507,100 //
-//23773,507,100 //
-//23774,507,100 //
-//23775,507,100 //
-//23784,475,100 //
-//23804,475,100 //
-//23878,475,100 //
-//23896,475,100 //
-//23897,507,100 //
-//23897,507,100 //
-//23898,475,100 //
-//23899,475,100 //
-//23900,499,100 //
-//23901,507,100 //
-//23914,475,100 //
-//23919,475,100 //
-24387,499,100 // S_Beginner's_Armor
-24388,499,100 // S_Beginner's_Shield
-24389,499,100 // S_Beginner's_Shoes
-24390,499,100 // S_Beginner's_Weapon
-24391,499,100 // S_Beginner's_Earring
-24392,499,100 // S_Beginner's_Pendant
-24416,499,100 // S_Temporal_Transcendent_Weapon
-24417,499,100 // S_Temporal_Transcendent_Armor
-24418,499,100 // S_Temporal_Transcendent_Shield
-24419,499,100 // S_Temporal_Transcendent_Shoes
-24420,499,100 // S_Temporal_Transcendent_Earring
-24421,499,100 // S_Temporal_Transcendent_Pendant
-//25038,499,100 //
-//25039,499,100 //
-//25042,475,100 //
-25043,499,100 // Thorny_Vine_Flute
-25045,499,100 // Luxurious_Cloth
-25046,499,100 // Boarding_Pass
-25047,499,100 // Kahlunac
-25048,499,100 // Hearty_Lunchbox
-25049,499,100 // Basilac_Clam
-//25051,499,100 //
-//25073,499,100 //
-//25074,499,100 //
-//25075,499,100 //
-//25076,499,100 //
-//25077,499,100 //
-//25078,499,100 //
-//25079,499,100 //
-//25080,499,100 //
-//25083,499,100 //
-//25084,499,100 //
-//25085,499,100 //
-//25086,499,100 //
-//25087,499,100 //
-//25088,467,100 //
-//25089,499,100 //
-//25098,16,100 //
-//25099,16,100 //
-//25100,16,100 //
-//25101,16,100 //
-//25102,16,100 //
-//25103,16,100 //
-//25104,16,100 //
-//25105,16,100 //
-//25106,16,100 //
-//25107,16,100 //
-//25108,16,100 //
-//25109,16,100 //
-//25110,16,100 //
-//25111,16,100 //
-//25112,16,100 //
-//25113,16,100 //
-//25114,16,100 //
-//25115,16,100 //
-//25116,16,100 //
-//25117,16,100 //
-//25118,16,100 //
-//25119,16,100 //
-//25120,16,100 //
-//25121,16,100 //
-//25122,16,100 //
-//25123,16,100 //
-25132,499,100 // Pumpkin_Deco
-25133,499,100 // Dried_White_Stem
-25143,499,100 // Gift_Stuffed_Doll
-25144,499,100 // Bridge_Postured_Doll
-25145,499,100 // Burnt_Spector_Doll
-25146,499,100 // Cold_Blooded_Queen_Doll
-25147,499,100 // Well_Eatenl_Rabbit_Doll
-25148,499,100 // Cute_Starved_Demon_Doll
-25149,499,100 // Doll_With_Warm_Scarf
-25150,499,100 // Hugging_Alice_Pilow
-25151,499,100 // Rachel's_Revolver
-25152,499,100 // Cherished_Bouquet
-25153,499,100 // Broken_Gun_Wreck
-25155,499,100 // Schwartz's_Honor_Token
-25160,499,100 // Borrowed_Book
-25161,499,100 // Delicious_Handmade_Cookie
-25162,499,100 // Crispy_Anchovy
-25163,499,100 // Arms_Shop_Ad
-25164,499,100 // Fresh_Tea_Leaves
-25165,499,100 // High_Class_Tea
-25166,499,100 // Very_Shining_Ring
-25167,499,100 // Old_Letter
-//25169,499,100 //
-25179,499,100 // Blessing_Star
-25180,499,100 // Old_Rings
-25181,499,100 // Wood_Rosary
-25182,499,100 // Assassin's_Mark_Dagger
-25183,499,100 // Decorated_Archer's_Thimble
-25184,499,100 // Portable_Sewingbox
-25185,499,100 // Locket_Pendant
-//25188,499,100 //
-//25200,499,100 //
-//25201,499,100 //
-//25218,499,100 //
-//25219,499,100 //
-//25220,499,100 //
-//25221,499,100 //
-//25222,499,100 //
-25223,467,100 // Para_Team_Coin
-//25235,467,100 //
-25238,475,100 // New_Normal_Lubricant
-25239,475,100 // New_Advanced_Lubricant
-//25245,499,100 //
-25246,467,100 // Juice_Mix_Package
-25247,467,100 // Purple_Ore
-25248,467,100 // Purple_Ore_Crate
-25249,467,100 // Buffalo_Bandit_Mane
-//25252,467,100 //
-//25253,507,100 //
-//25254,467,100 //
-25260,499,100 // Fragment_of_Purple_Ore
-//25268,499,100 //
-//25269,499,100 //
-//25270,499,100 //
-//25274,467,100 //
-//25287,499,100 //
-//25291,507,100 //
-//25295,499,100 //
-//25296,499,100 //
-//25307,499,100 //
-//25309,499,100 //
-//25315,499,100 //
-//25316,499,100 //
-//25319,499,100 //
-//25344,499,100 //
-//25358,499,100 //
-//25359,499,100 //
-//25360,499,100 //
-//25365,499,100 //
-//25366,499,100 //
-//25367,499,100 //
-//25390,499,100 //
-//25391,499,100 //
-//25392,499,100 //
-//25393,499,100 //
-//25394,499,100 //
-//25395,499,100 //
-//25401,499,100 //
-//25408,499,100 //
-//25421,499,100 //
-//25422,499,100 //
-//25425,499,100 //
-//25426,499,100 //
-//25427,499,100 //
-//25428,499,100 //
-25464,475,100 // World_Moving_Rights
-//25479,499,100 //
-//25504,507,100 //
-//25511,499,100 //
-//25512,499,100 //
-//25643,499,100 //
-//25656,499,100 //
-//25657,499,100 //
-//25658,499,100 //
-//25659,499,100 //
-//25664,499,100 //
-//25665,499,100 //
-//25666,499,100 //
-//25733,475,100 //
-//25734,499,100 //
-//25735,499,100 //
-//26001,499,100 //
-//26015,499,100 //
-26100,499,100 // Paradise_Foxtail_Staff_II
-26101,499,100 // Paradise_Foxtail_Staff_III
-//26111,499,100 //
-//26112,499,100 //
-//26119,499,100 //
-//26120,499,100 //
-//26156,499,100 //
-28011,467,100 // Unity_Katar
-//28015,499,100 //
-//28024,499,100 //
-//28027,499,100 //
-//28040,499,100 //
-28105,467,100 // Infinity_Axe
-28110,467,100 // Unity_Two-Handed_Axe
-//28113,499,100 //
-//28120,499,100 //
-//28137,499,100 //
-//28215,499,100 //
-//28216,499,100 //
-//28217,499,100 //
-//28218,499,100 //
-28310,467,100 // Earring_Of_Sarah_L
-28311,467,100 // Earring_Of_Sarah_R
-28333,475,100 // Gold_PC_Room_Ring
-28374,467,100 // Foxtail_Ring
-//28412,507,100 //
-28413,467,100 // Lesser_Mackerel_Talisman
-28414,467,100 // Intermediate_Mackerel_Talisman
-28415,467,100 // Greater_Mackerel_Talisman
-28416,467,100 // Lesser_Leaf_Talisman
-28417,467,100 // Intermediate_Leaf_Talisman
-28418,467,100 // Greater_Leaf_Talisman
-28419,467,100 // Lesser_Rabbit_Talisman
-28420,467,100 // Intermediate_Rabbit_Talisman
-28421,467,100 // Greater_Rabbit_Talisman
-28422,467,100 // Shiny_Branch_Talisman
-28423,467,100 // Fresh_Tuna_Talisman
-28424,467,100 // Chubby_Worm_Talisman
-28443,467,100 // Para_Team_Str_Ring100
-28444,467,100 // Para_Team_Str_Necklace100
-28445,467,100 // Para_Team_Str_Ring115
-28446,467,100 // Para_Team_Str_Necklace115
-28447,467,100 // Para_Team_Str_Ring130
-28448,467,100 // Para_Team_Str_Necklace130
-28449,467,100 // Para_Team_Str_Ring145
-28450,467,100 // Para_Team_Str_Necklace145
-28451,467,100 // Para_Team_Str_Ring160
-28452,467,100 // Para_Team_Str_Necklace160
-28453,467,100 // Para_Team_Magic_Ring100
-28454,467,100 // Para_Team_Magic_Necklace100
-28455,467,100 // Para_Team_Magic_Ring115
-28456,467,100 // Para_Team_Magic_Necklace115
-28457,467,100 // Para_Team_Magic_Ring130
-28458,467,100 // Para_Team_Magic_Necklace130
-28459,467,100 // Para_Team_Magic_Ring145
-28460,467,100 // Para_Team_Magic_Necklace145
-28461,467,100 // Para_Team_Magic_Ring160
-28462,467,100 // Para_Team_Magic_Necklace160
-28463,467,100 // Para_Team_Agi_Ring100
-28464,467,100 // Para_Team_Agi_Necklace100
-28465,467,100 // Para_Team_Agi_Ring115
-28466,467,100 // Para_Team_Agi_Necklace115
-28467,467,100 // Para_Team_Agi_Ring130
-28468,467,100 // Para_Team_Agi_Necklace130
-28469,467,100 // Para_Team_Agi_Ring145
-28470,467,100 // Para_Team_Agi_Necklace145
-28471,467,100 // Para_Team_Agi_Ring160
-28472,467,100 // Para_Team_Agi_Necklace160
-//28473,467,100 //
-//28474,467,100 //
-//28475,467,100 //
-//28476,467,100 //
-//28477,467,100 //
-//28478,467,100 //
-//28479,467,100 //
-//28480,467,100 //
-//28481,467,100 //
-//28482,467,100 //
-28495,467,100 // Sheriffs_Left_Badge
-28496,467,100 // Sheriffs_Right_Badge
-//28511,499,100 //
-//28514,467,100 //
-//28534,467,100 //
-//28535,467,100 //
-//28566,499,100 //
-28606,467,100 // Unity_Bible
-//28607,499,100 //
-//28613,499,100 //
-//28614,499,100 //
-//28616,499,100 //
-//28632,499,100 //
-28703,467,100 // Infinity_Dagger
-//28714,499,100 //
-//28726,499,100 //
-//28740,499,100 //
-//28759,499,100 //
-28904,467,100 // Unity_Guard
-28905,467,100 // Unity_Buckler
-//28914,467,100 //
-//28953,499,100 //
-31105,507,100 // C_RO_Celebration_Hat
-31140,467,100 // C_Cowboy_Hat_
-31141,467,100 // C_Rose_Corsage_
-31262,499,100 // C_Disposable_3D_Glasses
-31263,499,100 // C_Disposable_Popcorn_Hat
-31319,499,100 // C_Summer_Fan_
-31320,499,100 // C_Pinwheel_Hat
-//32004,499,100 //
-//32021,499,100 //
-//32202,507,100 //
-//32221,499,100 //
diff --git a/db/re/job_db1.txt b/db/re/job_db1.txt
index 6db7ae21a0..8a3aecdad8 100644
--- a/db/re/job_db1.txt
+++ b/db/re/job_db1.txt
@@ -262,7 +262,7 @@
// Baby Mechanic (Mado)
4112, 30000,90 ,500 ,400 ,40 ,60 ,65 ,200 ,200 ,200 ,45 ,48 ,48 ,50 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,6
// Super Novice (Expanded)
-4190, 20000,0 ,500 ,100 ,40 ,55 ,57 ,200 ,200 ,200 ,50 ,200 ,50 ,55 ,65 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,65 ,10
+4190, 20000,0 ,5000 ,500 ,40 ,55 ,57 ,200 ,200 ,200 ,50 ,200 ,50 ,55 ,65 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,65 ,10
// Super Baby (Expanded)
4191, 20000,0 ,500 ,100 ,40 ,55 ,57 ,200 ,200 ,200 ,50 ,200 ,50 ,55 ,65 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,200 ,65 ,10
// Kagerou
diff --git a/db/re/job_exp.txt b/db/re/job_exp.txt
index 68b5223e19..5ad508fe4c 100644
--- a/db/re/job_exp.txt
+++ b/db/re/job_exp.txt
@@ -2,26 +2,28 @@
// Only official levels included, check db/import-tmpl/job_exp.txt for an expanded list
//
// Structure of Database:
-// Max Level,Class list,Type,Exp for Lv 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175
+// Max Level,Class list,Type,Exp for Lv 1,2,3,...,200
//
// Type:
// 0 = Base Exp, 1 = Job Exp
//Base - Normal and Baby Jobs
-99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:23:24:25:4023:4024:4025:4026:4027:4028:4029:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4045:4046:4047:4048:4049:4050:4051:4052:4222:4225:4226:4227:4228:4238,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,57000,59000,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,99999999
+99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:23:24:25:4023:4024:4025:4026:4027:4028:4029:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4045:4046:4047:4048:4049:4050:4051:4052:4222:4225:4226:4227:4228:4238,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,59000,61500,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,99999999
-//Base - Adv Jobs
-99,4001:4002:4003:4004:4005:4006:4007:4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,0,660,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,99999999
+//Base - Trans classes
+99,4001:4002:4003:4004:4005:4006:4007:4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,0,600,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,99999999
-//Base - 3rd Jobs, Baby 3rds, Oboro/Kagerou, Rebellion, Summoner, Star Emperor, Soul Reaper
-//Note: (First 98 values [Level 1 - 98] are only used by Summoner Class, because 3rd classes start at level 99.)
-175,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4218:4220:4223:4224:4229:4239:4240:4241:4242:4243:4244,0,55,90,150,220,320,380,420,455,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1800,2100,2400,2700,3000,3300,3600,3900,4200,4500,5400,6300,7200,8100,9000,9900,10800,11700,12600,13500,16200,18900,21600,24300,27000,29700,32400,35100,37800,40500,43200,45900,48600,51300,54000,56700,59400,62100,64800,67500,75600,83700,91800,99900,108000,116100,124200,132300,140400,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,7070000,7400000,7770000,8150000,8550000,9100000,9610000,10150000,10570000,11180000,12000000,12200000,12930000,13150000,14030000,14420000,15420000,15670000,16870000,17140000,18720000,19020000,20590000,20930000,22690000,23310000,25290000,26020000,27860000,28535000,30990000,31680000,33560000,34942000,36372000,38350000,39890000,41545000,43330000,45400000,48100000,50410000,53370000,56250000,59230000,62590000,66120000,70200000,75330000,81100000,95000000,98000000,103000000,107000000,112000000,116000000,121000000,125000000,130000000,134000000,139000000,145000000,152200000,160840000,171200000,191930000,202290000,214720000,229640000,247550000,283370000,301280000,322770000,348560000,379500000,441390000,99999999
+//Base - Extended classes - Values for level 1 - 99 are unused and are simply copy-pasted from Normal classes values.
+200,4190:4191:4211:4212:4215:4239:4240:4223:4224:4229:4239:4240:4241:4242:4243:4244,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,59000,61500,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,1272747,1354202,1440870,1533085,1631202,1735598,1846676,1964863,2090614,2224413,2366775,2518248,2679415,2850897,3033354,3227488,3434047,3653826,3887670,4136480,4401214,4755467,5138234,5551810,5998675,6481508,7003204,7566891,8175950,8834032,9545083,10313366,11143488,12040427,13009560,14056699,15188122,16410613,17731503,19158711,20700795,22367001,24167320,26112547,28214345,30485317,32939080,35590346,38455012,41550255,44894635,48508204,52412629,56631321,61189576,66114724,71436298,77186205,83398922,90111701,97364791,105201683,113669366,122818613,132704283,143385650,154926760,167396814,180870583,195428856,211158924,229155105,246519309,266361648,287801097,310966207,352013746,398479560,451078861,510621270,578023277,654322349,740692899,838464361,949141656,1074428354,1216252896,1376798278,1558535650,1764262355,1997144985,2260768123,2559189515,2897002530,3279406863,3712288568,4202310658,4757015664,5384941731,6095754039,6900363572,99999999
-//Base - Expanded Super Novice & Expanded Super Baby
-160,4190:4191,0,660,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,7070000,7400000,7770000,8150000,8550000,9100000,9610000,10150000,10570000,11180000,12000000,12200000,12930000,13150000,14030000,14420000,15420000,15670000,16870000,17140000,18720000,19020000,20590000,20930000,22690000,23310000,25290000,26020000,27860000,28535000,30990000,31680000,33560000,34942000,36372000,38350000,39890000,41545000,43330000,45400000,48100000,50410000,53370000,56250000,59230000,62590000,66120000,70200000,75330000,81100000,95000000,98000000,103000000,107000000,112000000,116000000,121000000,125000000,130000000,134000000,139000000,145000000,152200000,160840000,171200000,191930000,202290000,214720000,229640000,247550000,283370000,301280000,322770000,348560000,379500000,441390000,99999999
+//Base - Third classes - Values for level 1 - 99 are unused and are simply copy-pasted from Trans classes values.
+200,4054:4055:4056:4057:4058:4059:4066:4067:4068:4069:4070:4071:4072:4060:4061:4062:4063:4064:4065:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112,0,600,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,1272747,1354202,1440870,1533085,1631202,1735598,1846676,1964863,2090614,2224413,2366775,2518248,2679415,2850897,3033354,3227488,3434047,3653826,3887670,4136480,4401214,4755467,5138234,5551810,5998675,6481508,7003204,7566891,8175950,8834032,9545083,10313366,11143488,12040427,13009560,14056699,15188122,16410613,17731503,19158711,20700795,22367001,24167320,26112547,28214345,30485317,32939080,35590346,38455012,41550255,44894635,48508204,52412629,56631321,61189576,66114724,71436298,77186205,83398922,90111701,97364791,105201683,113669366,122818613,132704283,143385650,154926760,167396814,180870583,195428856,211158924,229155105,246519309,266361648,287801097,310966207,352013746,398479560,451078861,510621270,578023277,654322349,740692899,838464361,949141656,1074428354,1216252896,1376798278,1558535650,1764262355,1997144985,2260768123,2559189515,2897002530,3279406863,3712288568,4202310658,4757015664,5384941731,6095754039,6900363572,99999999
+
+//Base- Summoner
+200,4218:4220,0,55,90,150,220,320,380,420,455,500,550,600,700,800,900,1000,1100,1200,1400,1500,1800,2100,2400,2700,3000,3300,3600,3900,4200,4500,5400,6300,7200,8100,9000,9900,10800,11700,12600,13500,16200,18900,21600,24300,27000,29700,32400,35100,37800,40500,43200,45900,48600,51300,54000,56700,59400,62100,64800,67500,70200,72900,75600,78300,81000,83700,86400,89100,91800,94500,103950,114345,125779,138356,152201,167421,184163,202579,222836,240662,259914,280707,303163,327416,353609,381897,412448,445443,481078,519564,561129,606019,654500,706860,763408,824480,890438,961673,1038606,1121694,1211429,1308343,1413010,1526050,1648134,1779984,1922382,2076172,2242265,2421646,2615377,2824607,3050575,3294621,3558190,3842845,4150272,4482293,4840876,5228146,5646397,6098108,6585956,7112832,7681858,8296406,8960118,9676927,10451081,11287167,12190140,13165351,14218579,15356065,16584550,17911314,19344219,20891756,22563096,24368143,26317594,28423001,30696841,33152588,35804795,38669178,41762712,45103728,48712026,52608988,56817707,61363123,66272172,71573945,77299860,83483848,90162555,97375559,105165603,113578851,122665159,132478371,143076640,154522771,166884592,177548517,188893867,200964185,222383346,234614430,247518223,261131725,275493969,290646137,306631674,347137718,392994610,444909197,503681701,570218053,645543857,730820200,827361548,936656008,1060388266,1200465555,1359047054,1538577169,1741823213,1971918059,2232408434,2527309588,2861167184,3239127369,3667016094,4151428920,4699832680,5320680577,6023542481,6819252442,99999999
//Job - Novice & Baby Novice
-10,0:4023,1,10,18,28,40,91,151,205,268,340,999999999
+10,0:4023,1,55,90,150,150,320,380,420,455,500,999999999
//Job - 1st Classes & Baby 1st Classes, Taekwon
50,1:2:3:4:5:6:4024:4025:4026:4027:4028:4029:4046:4050:4225,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,97180,999999999
@@ -29,29 +31,29 @@
//Job - 2nd Classes & Baby 2nd Classes, Soul Linker
50,7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4049:4051:4052:4227,1,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,31500,32000,33300,35100,40500,44100,46300,48500,50700,56000,59400,63500,68100,75000,85700,90500,96600,102600,108600,119700,126000,132300,138600,146100,157500,170600,180400,190300,196800,214900,225200,232000,245700,255900,279300,294000,308700,327000,345400,999999999
-//Job - Novice High
-10,4001,1,11,20,31,44,100,166,226,295,374,999999999
-
-//Job - Adv First Classes
-50,4002:4003:4004:4005:4006:4007,1,100,200,350,550,800,1100,1450,1850,2300,2800,3350,3950,4600,5300,6050,6850,7700,8600,9550,10550,11600,12700,13850,15050,16300,17600,18950,20350,21800,23300,24850,26450,28100,29800,31550,33350,35200,37100,39050,41050,43100,45200,47350,49550,51800,54100,56450,58850,61300,999999999
-
-//Job - Adv Second Classes
-70,4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,1,3800,6200,10400,15200,22900,27100,30000,32500,35700,41300,45000,45800,47600,50300,58700,63900,67100,70300,73500,90600,96200,102700,110200,121400,144700,152900,163100,173300,183500,213500,224700,236000,247200,260700,299800,324800,343600,362300,374800,474400,497000,512100,542200,564800,644300,678200,712100,754500,796900,873100,911900,950600,989400,1028100,1143300,1199900,1233800,1279100,1324300,1486900,1515900,1603000,1719200,1806300,2040300,2244300,2415900,2746000,3326000,999999999
-
-//Job - 3rd Jobs & Baby 3rds, Oboro/Kagerou, Rebellion, Star Emperor, Soul Reaper
-60,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4223:4224:4229:4239:4240:4241:4242:4243:4244,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,131668000,145518000,160753000,177511000,195944000,216220000,238523000,263056000,290042000,319726000,999999999
-
-//Job - Expanded Super Novice & Expanded Super Baby
-50,4190:4191,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,999999999
-
-//Job - Ninja/Gunslinger
+//Job - Ninja, Gunslinger
70,24:25:4222:4228,1,200,300,400,600,700,1000,1200,1400,1700,1900,2400,2700,3200,3600,4200,4900,5500,6100,6900,7700,8400,9300,10100,11100,12100,13000,14600,16100,17500,18600,21500,23300,24700,27000,29000,30000,32400,35000,38100,41100,44000,46700,49600,52500,55600,58900,62700,65500,69200,72300,81200,84100,89300,95500,100900,107800,114900,120700,128600,150500,176900,196100,219600,234200,247900,266400,281300,296600,308000,999999999
//Job - Star Gladiator
50,4047:4048:4226:4238,1,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,101400,112000,118800,127000,136200,150000,171400,181000,193200,205200,217200,239400,252000,264600,277200,292200,315000,341200,360800,380600,393600,429800,450400,464000,491400,511800,558600,588000,617400,654000,690800,999999999
+//Job - High Novice
+10,4001,1,12,22,35,50,113,188,256,335,425,999999999
+
+//Job - Trans 1st Classes
+50,4002:4003:4004:4005:4006:4007,1,340,550,760,990,1250,1600,1980,2340,2740,3140,3950,4510,5210,5950,7000,8150,9130,10220,11480,12780,14090,15560,16980,18620,20280,21780,24510,27000,29000,31000,36000,39000,41000,45000,49000,51900,55000,59450,64630,70030,74940,79800,84630,89610,95170,100420,107250,112070,118120,999999999
+
+//Job - Trans 2nd Classes
+70,4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,1,1803,2972,5036,7434,11312,13520,15117,16540,18350,21441,23596,24256,25461,27174,32029,35216,37349,39521,41734,51958,55721,60081,65113,72448,87216,93081,100283,107620,115094,135249,143768,152508,161343,171856,199607,218415,233368,248529,259675,331968,351261,365552,390909,411275,473857,503777,534248,571719,609886,674886,711926,749561,787957,826965,928824,984554,1022494,1070636,1119554,1269585,1307290,1396228,1512414,1604928,1830969,2034180,2211611,2538936,3105953,999999
+
+//Job - 3rd Jobs & Baby 3rds, Oboro, Kagerou, Rebellion, Star Emperor, Soul Reaper
+70,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4223:4224:4229:4239:4240:4241:4242:4243:4244,1,12800,16384,20971,26843,34359,43980,56294,72057,92233,118059,151115,193428,247588,316912,405648,519229,664613,850705,1088903,1393796,1784059,2283596,2923003,3741444,4231573,4785909,5412863,6121948,6923924,7830958,8856813,10017056,11329290,12813427,14491986,16390436,18537584,20966007,23712554,26818899,30332175,34305690,38799735,43882500,49631108,56132783,63486178,71802867,81209043,91847428,103879441,117487647,132878529,150285617,169973033,192239500,217422874,245905271,278118862,319836691,367812195,422984024,486431628,559396372,632361116,705325860,778290604,851255348,924220092,999999999
+
+//Job - Expanded Super Novice & Expanded Super Baby
+50,4190:4191,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,999999999
+
//Job - Super Novice & Baby Super Novice
-99,23:4045,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,97180,590120,600120,610120,620120,630120,640120,650120,660120,670120,680120,690120,700120,710120,720120,730120,740120,750120,760120,770120,780120,790120,800120,810120,820120,830120,840120,850120,860120,870120,880120,890120,900120,910120,920120,930120,940120,950120,960120,970120,980120,990120,1000120,1010120,1020120,1030120,1040120,1050120,1060120,1070120,999999999
+99,23:4045,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,590120,600120,610120,620120,630120,640120,650120,660120,670120,680120,690120,700120,710120,720120,730120,740120,750120,760120,770120,780120,790120,800120,810120,820120,830120,840120,850120,860120,870120,880120,890120,900120,910120,920120,930120,940120,950120,960120,970120,980120,990120,1000120,1010120,1020120,1030120,1040120,1050120,1060120,1070120,1080120,999999999
//Job - Summoner
-50,4218:4220,1,60,130,260,460,780,1060,1300,1560,1910,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,31500,34900,38300,41700,45100,48500,51900,55000,72000,89000,106000,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,999999999
+60,4218:4220,1,60,130,260,460,780,1060,1300,1560,1910,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,33100,35100,40500,44100,46300,48500,50700,56000,59000,63500,68100,75000,85700,90500,106000,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7585200,9860760,13805064,20707596,33132154,53011447,72890740,92770033,112649326,132528619,999999999
diff --git a/db/re/job_noenter_map.txt b/db/re/job_noenter_map.txt
index 11d98b6fa8..2b2a66b93e 100644
--- a/db/re/job_noenter_map.txt
+++ b/db/re/job_noenter_map.txt
@@ -98,3 +98,10 @@ JOB_BABY_REBELLION,4112,100
JOB_SUMMONER,4112,100
JOB_BABY_SUMMONER,4112,100
+
+JOB_STAR_EMPEROR,4112,100
+JOB_SOUL_REAPER,4112,100
+JOB_BABY_STAR_EMPEROR,4112,100
+JOB_BABY_SOUL_REAPER,4112,100
+JOB_STAR_EMPEROR2,4112,100
+JOB_BABY_STAR_EMPEROR2,4112,100
\ No newline at end of file
diff --git a/db/re/level_penalty.txt b/db/re/level_penalty.txt
deleted file mode 100644
index 3d93079401..0000000000
--- a/db/re/level_penalty.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-// Experience & Drop Rate Modifier Database
-//
-// Structure of Database:
-// Type,Class,Level difference,Rate
-//
-// TYPE:
-// 1=experience, 2=item drop
-// CLASS:
-// 0=Normal monsters, 1=Boss monsters, 2=Guardians
-//
-// Note: RENEWAL_DROP and/or RENEWAL_EXP must be enabled.
-
-// EXP modifiers due to level difference
-1,CLASS_NORMAL,16,40
-1,CLASS_NORMAL,15,115
-1,CLASS_NORMAL,14,120
-1,CLASS_NORMAL,13,125
-1,CLASS_NORMAL,12,130
-1,CLASS_NORMAL,11,135
-1,CLASS_NORMAL,10,140
-1,CLASS_NORMAL,9,135
-1,CLASS_NORMAL,8,130
-1,CLASS_NORMAL,7,125
-1,CLASS_NORMAL,6,120
-1,CLASS_NORMAL,5,115
-1,CLASS_NORMAL,4,110
-1,CLASS_NORMAL,3,105
-1,CLASS_NORMAL,0,100
-1,CLASS_NORMAL,-1,100
-1,CLASS_NORMAL,-6,95
-1,CLASS_NORMAL,-11,90
-1,CLASS_NORMAL,-16,85
-1,CLASS_NORMAL,-21,60
-1,CLASS_NORMAL,-26,35
-1,CLASS_NORMAL,-31,10
-
-// Boss Type
-1,CLASS_BOSS,0,100
-
-// Guardian Type
-1,CLASS_GUARDIAN,0,100
-
-// Drop rate modifiers due to level difference
-2,CLASS_NORMAL,16,50
-2,CLASS_NORMAL,13,60
-2,CLASS_NORMAL,10,70
-2,CLASS_NORMAL,7,80
-2,CLASS_NORMAL,4,90
-2,CLASS_NORMAL,0,100
-2,CLASS_NORMAL,-4,90
-2,CLASS_NORMAL,-7,80
-2,CLASS_NORMAL,-10,70
-2,CLASS_NORMAL,-13,60
-2,CLASS_NORMAL,-16,50
-
-// Boss Type
-2,CLASS_BOSS,0,100
-
-// Guardian Type
-2,CLASS_GUARDIAN,0,100
diff --git a/db/re/level_penalty.yml b/db/re/level_penalty.yml
new file mode 100644
index 0000000000..3e7eec9992
--- /dev/null
+++ b/db/re/level_penalty.yml
@@ -0,0 +1,99 @@
+# 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 .
+#
+###########################################################################
+# Level Penalty Database
+###########################################################################
+#
+# Level Penalty Settings
+#
+###########################################################################
+# - Type: Type of Penalty (Exp, Drop, Mvp_Exp, Mvp_Drop)
+# LevelDifferences: List of level difference between player and monster
+# - Difference: Level difference between player and monster
+# Rate: Rate applied to original exp or drop rate (0-10000)
+###########################################################################
+
+Header:
+ Type: PENALTY_DB
+ Version: 1
+
+Body:
+ - Type: Exp
+ LevelDifferences:
+ - Difference: 16
+ Rate: 40
+ - Difference: 15
+ Rate: 115
+ - Difference: 14
+ Rate: 120
+ - Difference: 13
+ Rate: 125
+ - Difference: 12
+ Rate: 130
+ - Difference: 11
+ Rate: 135
+ - Difference: 10
+ Rate: 140
+ - Difference: 9
+ Rate: 135
+ - Difference: 8
+ Rate: 130
+ - Difference: 7
+ Rate: 125
+ - Difference: 6
+ Rate: 120
+ - Difference: 5
+ Rate: 115
+ - Difference: 4
+ Rate: 110
+ - Difference: 3
+ Rate: 105
+ - Difference: -6
+ Rate: 95
+ - Difference: -11
+ Rate: 90
+ - Difference: -16
+ Rate: 85
+ - Difference: -21
+ Rate: 60
+ - Difference: -26
+ Rate: 35
+ - Difference: -31
+ Rate: 10
+ - Type: Drop
+ LevelDifferences:
+ - Difference: 16
+ Rate: 50
+ - Difference: 13
+ Rate: 60
+ - Difference: 10
+ Rate: 70
+ - Difference: 7
+ Rate: 80
+ - Difference: 4
+ Rate: 90
+ - Difference: -4
+ Rate: 90
+ - Difference: -7
+ Rate: 80
+ - Difference: -10
+ Rate: 70
+ - Difference: -13
+ Rate: 60
+ - Difference: -16
+ Rate: 50
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 8af147a7c6..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 140fa94012..0000000000
--- a/db/re/mob_db.txt
+++ /dev/null
@@ -1,3970 +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,77,3420,0,945,1067,2,757,110,76,37,65,36,33,49,66,30,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,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
-//2783,C5_L_EREMES
-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,0,0
-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,0,0
-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,0,0
-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,0,0
-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,0,0
-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,0x6280085,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,0,0
-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,0,0
-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,0,0
-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,0,0
-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,0,0
-//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,0,0
-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,0,0
-//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,0,0
-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,0,0
-//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,0,0
-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,0,0
-//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,0,0
-//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,0,0
-//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
-//3123,CHARLESTON2
-//3124,CHARLESTON3
-3125,STEP,Step,Step,130,55403,0,3088,2392,1,871,695,101,58,117,127,55,61,116,60,10,12,0,6,22,0x2000000,250,0,780,0,0,0,0,0,0,0,0,6751,1000,998,150,13213,400,0,0,0,0,0,0,0,0,0,0,0,0,4698,1
-//3126,ROCK_STEP
-//3127,KICK_STEP
-//3128,KICK_AND_KICK
-//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,0,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,251,984,101,6962,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-3154,RECON_ROBOT,Recon Robot,Recon Robot,165,256000,0,15796,17738,1,2989,280,128,60,112,60,72,57,120,77,10,12,2,0,80,0x0000085,170,1072,672,384,0,0,0,0,0,0,0,998,1001,756,1001,11597,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-3155,REPAIR_ROBOT,Repair Robot,Repair Robot,155,154760,0,11748,47654,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,0,18172,126234,1,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,0,4666,3874,1,993,250,91,50,88,61,51,62,136,60,10,12,1,7,40,0x0000085,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,4666,139500,1,993,250,91,50,88,61,51,62,136,60,10,12,1,7,40,0x0000085,200,2125,2112,0,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,0,0,0,1,1,1,1,50,1,1,1,1,1,1,10,12,0,0,40,0x0370020,200,0,0,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
-//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,0x87700A4,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,0,0,0,0,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,0,0,0,0,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,0,0,0,0,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,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,27019,1
-3253,SYS_MSG,Sys Msg,System message,160,100,1,0,0,1,1,1,276,99,0,0,0,188,0,0,10,12,0,0,20,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,1,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,0,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,0,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
-//3622,EP16_2_MM_S_GUARDS
-//3623,EP16_2_MM_U_ENERGY_R
-//3624,EP16_2_MM_U_ENERGY_G
-//3625,EP16_2_MM_U_ENERGY_B
-//3626,EP16_2_H_HUNTER_V
-//3627,EP16_2_H_HUNTER_MD
-//3628,EP16_2_H_HUNTER_EV
-//3629,EP16_2_BROKEN_GUN
-//3630,EP16_2_E_BOLKOBA
-//3631,EP16_2_HUMAN_KIMERA
-//3632,EP16_2_MATTER_KIMERA
-//3633,EP16_2_VENOM_KIMERA
-//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
-//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
-
-//20843,ILL_ABYSMAL_WITCH
-//20844,PRAY_GIVER
-//20845,SMILE_GIVER
-//20846,MD_HIDDEN_GROUND01
-//20847,MD_HIDDEN_GROUND02
-
-//20873,WAR_NUT
-//20874,MOLE_TW
-
-//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
-
-//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 3f866df901..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,RDMOPTG_None // LUNATIC
-2770,1102,500,RDMOPTG_None // C2_LUNATIC
-2771,1102,500,RDMOPTG_None // C3_LUNATIC
-2072,1839,50,RDMOPTG_Crimson_Weapon // JAGUAR
-1584,21015,50,RDMOPTG_Crimson_Weapon // TAMRUAN
-2639,21015,250,RDMOPTG_Crimson_Weapon // C4_TAMRUAN
-1154,13454,50,RDMOPTG_Crimson_Weapon // PASANA
-1154,28705,50,RDMOPTG_Crimson_Weapon // PASANA
-2719,13454,250,RDMOPTG_Crimson_Weapon // C1_PASANA
-2719,28705,250,RDMOPTG_Crimson_Weapon // C1_PASANA
-1117,28604,50,RDMOPTG_Crimson_Weapon // EVIL_DRUID
-1517,16040,50,RDMOPTG_Crimson_Weapon // LI_ME_MANG_RYANG
-2071,28007,50,RDMOPTG_Crimson_Weapon // HEADLESS_MULE
-2778,16040,250,RDMOPTG_Crimson_Weapon // C5_LI_ME_MANG_RYANG
-2838,28604,50,RDMOPTG_Crimson_Weapon // C5_EVIL_DRUID
-1613,13127,50,RDMOPTG_None // METALING
-1386,28705,50,RDMOPTG_Crimson_Weapon // SLEEPER
-2655,28705,250,RDMOPTG_Crimson_Weapon // C5_SLEEPER
-2656,28705,250,RDMOPTG_Crimson_Weapon // C1_SLEEPER
-2755,13127,250,RDMOPTG_None // C2_METALING
-2756,13127,250,RDMOPTG_None // C3_METALING
-1631,1839,50,RDMOPTG_Crimson_Weapon // CHUNG_E_
-1215,1443,50,RDMOPTG_Crimson_Weapon // STEM_WORM
-2641,1443,250,RDMOPTG_Crimson_Weapon // C1_STEM_WORM
-1404,1939,50,RDMOPTG_Crimson_Weapon // MIYABI_NINGYO
-1628,13127,50,RDMOPTG_None // MOLE
-1619,28705,50,RDMOPTG_Crimson_Weapon // PORCELLIO
-2700,28705,250,RDMOPTG_Crimson_Weapon // C2_PORCELLIO
-2745,13127,250,RDMOPTG_None // C2_MOLE
-2746,1939,250,RDMOPTG_Crimson_Weapon // C3_MIYABI_NINGYO
-1102,1680,50,RDMOPTG_None // BATHORY
-1155,16040,50,RDMOPTG_Crimson_Weapon // PETIT
-2714,16040,250,RDMOPTG_Crimson_Weapon // C1_PETIT
-2715,16040,250,RDMOPTG_Crimson_Weapon // C2_PETIT
-2885,1680,250,RDMOPTG_None // C4_BATHORY
-2199,28705,50,RDMOPTG_Crimson_Weapon // SIORAVA
-1143,16040,50,RDMOPTG_Crimson_Weapon // MARIONETTE
-1413,1995,50,RDMOPTG_Crimson_Weapon // WILD_GINSENG
-2761,16040,250,RDMOPTG_Crimson_Weapon // C3_MARIONETTE
-1320,1498,50,RDMOPTG_Crimson_Weapon // OWL_DUKE
-1320,2025,50,RDMOPTG_None // OWL_DUKE
-1316,16040,50,RDMOPTG_Crimson_Weapon // SOLIDER
-2647,16040,250,RDMOPTG_Crimson_Weapon // C2_SOLIDER
-2721,1498,250,RDMOPTG_Crimson_Weapon // C3_OWL_DUKE
-2721,2025,250,RDMOPTG_None // C3_OWL_DUKE
-1408,1839,50,RDMOPTG_Crimson_Weapon // BLOOD_BUTTERFLY
-2883,1839,250,RDMOPTG_Crimson_Weapon // C1_BLOOD_BUTTERFLY
-1257,28007,50,RDMOPTG_Crimson_Weapon // INJUSTICE
-2792,28007,250,RDMOPTG_Crimson_Weapon // C4_INJUSTICE
-1302,21015,50,RDMOPTG_Crimson_Weapon // DARK_ILLUSION
-1416,1939,50,RDMOPTG_Crimson_Weapon // WICKED_NYMPH
-1416,1995,50,RDMOPTG_Crimson_Weapon // WICKED_NYMPH
-2617,1939,250,RDMOPTG_Crimson_Weapon // C5_WICKED_NYMPH
-2617,1995,250,RDMOPTG_Crimson_Weapon // C5_WICKED_NYMPH
-1405,13327,50,RDMOPTG_Crimson_Weapon // TENGU
-1030,1498,50,RDMOPTG_Crimson_Weapon // ANACONDAQ
-2904,1498,250,RDMOPTG_Crimson_Weapon // C4_ANACONDAQ
-1205,13454,50,RDMOPTG_Crimson_Weapon // EXECUTIONER
-1135,28106,50,RDMOPTG_Crimson_Weapon // KOBOLD_3
-1106,28705,50,RDMOPTG_Crimson_Weapon // DESERT_WOLF
-1259,1498,250,RDMOPTG_Crimson_Weapon // GRYPHON
-1310,28106,50,RDMOPTG_Crimson_Weapon // MAJORUROS
-2767,28106,250,RDMOPTG_Crimson_Weapon // C4_MAJORUROS
-1736,1839,50,RDMOPTG_Crimson_Weapon // ALIOT
-1296,16040,50,RDMOPTG_Crimson_Weapon // KOBOLD_LEADER
-1204,28705,50,RDMOPTG_Crimson_Weapon // TIRFING
-1204,13454,50,RDMOPTG_Crimson_Weapon // TIRFING
-1993,1443,50,RDMOPTG_Crimson_Weapon // NAGA
-1390,1939,50,RDMOPTG_Crimson_Weapon // VIOLY
-2621,1939,250,RDMOPTG_Crimson_Weapon // C5_VIOLY
-2622,1939,250,RDMOPTG_Crimson_Weapon // C1_VIOLY
-2623,1939,250,RDMOPTG_Crimson_Weapon // C2_VIOLY
-1295,18130,50,RDMOPTG_None // OWL_BARON
-1303,2025,50,RDMOPTG_None // GIANT_HONET
-2821,2025,250,RDMOPTG_None // C3_GIANT_HONET
-1702,21015,50,RDMOPTG_Crimson_Weapon // RETRIBUTION
-2353,28106,50,RDMOPTG_Crimson_Weapon // N_MINOROUS
-2684,21015,250,RDMOPTG_Crimson_Weapon // C4_RETRIBUTION
-2685,21015,250,RDMOPTG_Crimson_Weapon // C5_RETRIBUTION
-2686,21015,250,RDMOPTG_Crimson_Weapon // C1_RETRIBUTION
-1219,21015,50,RDMOPTG_Crimson_Weapon // KNIGHT_OF_ABYSS
-1703,1939,50,RDMOPTG_Crimson_Weapon // SOLACE
-2650,1939,250,RDMOPTG_Crimson_Weapon // C5_SOLACE
-2041,28705,50,RDMOPTG_Crimson_Weapon // MYSTELTAINN
-2041,13454,50,RDMOPTG_Crimson_Weapon // MYSTELTAINN
-2041,21015,50,RDMOPTG_Crimson_Weapon // MYSTELTAINN
-1830,18130,50,RDMOPTG_None // BOW_GUARDIAN
-1653,28705,50,RDMOPTG_Crimson_Weapon // WHIKEBAIN
-1655,1839,50,RDMOPTG_Crimson_Weapon // EREND
-1655,16040,50,RDMOPTG_Crimson_Weapon // EREND
-1657,1680,50,RDMOPTG_None // RAWREL
-1829,21015,50,RDMOPTG_Crimson_Weapon // SWORD_GUARDIAN
-2692,1680,250,RDMOPTG_None // C3_RAWREL
-1654,13454,50,RDMOPTG_Crimson_Weapon // ARMAIA
-1654,28106,50,RDMOPTG_Crimson_Weapon // ARMAIA
-1656,1939,50,RDMOPTG_Crimson_Weapon // KAVAC
-1656,18130,50,RDMOPTG_None // KAVAC
-1652,13454,50,RDMOPTG_Crimson_Weapon // YGNIZEM
-1652,21015,50,RDMOPTG_Crimson_Weapon // YGNIZEM
-1290,28705,50,RDMOPTG_Crimson_Weapon // SKELETON_GENERAL
-2658,28705,250,RDMOPTG_Crimson_Weapon // C3_SKELETON_GENERAL
-2659,28705,250,RDMOPTG_Crimson_Weapon // C4_SKELETON_GENERAL
-1658,21015,500,RDMOPTG_Crimson_Weapon // B_YGNIZEM
-1301,16040,50,RDMOPTG_Crimson_Weapon // AM_MUT
-2362,28604,50,RDMOPTG_Crimson_Weapon // N_AMON_RA
diff --git a/db/re/mob_race2_db.txt b/db/re/mob_race2_db.txt
deleted file mode 100644
index 662bcd7412..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,1143,1905,1906,1907
-// Battlefield
-RC2_BATTLEFIELD,1906,1909,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 d6a0dd596a..6e1278c6c9 100644
--- a/db/re/mob_skill_db.txt
+++ b/db/re/mob_skill_db.txt
@@ -714,12 +714,11 @@
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_RUN,idle,354,7,10000,0,30000,no,master,alchemist,,,,,,,26,
-1142,Marine Sphere@NPC_SELFDESTRUCTION,any,173,1,10000,3000,0,no,self,afterskill,354,,,,,,,
+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_SELFDESTRUCTION,idle,173,1,10000,0,0,yes,self,always,0,,,,,,,
-//1142,Marine Sphere@NPC_SPEEDUP,any,332,1,10000,0,700,yes,self,always,0,,,,,,,
+1142,Marine Sphere@NPC_SPEEDUP,idle,332,1,10000,0,700,yes,target,always,,,,,,,,
1143,Marionette@HT_FREEZINGTRAP,idle,121,5,500,0,300000,yes,around2,always,0,,,,,,29,
1143,Marionette@MG_FIREWALL,chase,18,5,500,500,5000,yes,target,always,0,,,,,,2,
1143,Marionette@NPC_TELEKINESISATTACK,attack,191,5,500,0,5000,yes,target,always,0,,,,,,6,
@@ -10087,6 +10086,34 @@
2781,Leaf Cat Ringleader@AL_HEAL,attack,28,1,10000,500,5000,no,self,myhpltmaxrate,30,,,,,,18,
2781,Leaf Cat Ringleader@AL_HEAL,chase,28,1,10000,500,5000,no,self,myhpltmaxrate,30,,,,,,18,
2781,Leaf Cat Ringleader@NPC_SUMMONSLAVE,idle,196,2,10000,700,30000,no,self,slavele,0,1586,,,,,,
+2782,C4_L_WHIKEBAIN@TF_THROWSTONE,chase,152,1,10000,0,3000,yes,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@TF_THROWSTONE,follow,152,1,10000,0,3000,yes,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@NPC_POISON,attack,176,5,1000,800,5000,no,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@RG_STRIPWEAPON,attack,215,5,500,0,10000,yes,target,always,0,,,,,,18,
+2782,C4_L_WHIKEBAIN@RG_STRIPARMOR,attack,217,5,500,0,10000,yes,target,always,0,,,,,,18,
+2782,C4_L_WHIKEBAIN@RG_STRIPSHIELD,attack,216,5,500,0,10000,yes,target,always,0,,,,,,17,
+2782,C4_L_WHIKEBAIN@RG_STRIPHELM,attack,218,5,500,0,10000,yes,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@RG_INTIMIDATE,attack,219,10,2000,0,60000,no,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@RG_CLOSECONFINE,attack,1005,1,1000,0,30000,yes,target,always,0,,,,,,,
+2782,C4_L_WHIKEBAIN@NPC_POISONATTACK,attack,188,5,1000,0,5000,yes,target,always,0,,,,,,,
+2783,C5_L_EREMES@AS_CLOAKING,attack,135,3,2000,200,5000,yes,self,always,0,,,,,,,
+2783,C5_L_EREMES@AS_CLOAKING,idle,135,3,2000,200,5000,yes,self,always,0,,,,,,,
+2783,C5_L_EREMES@AS_CLOAKING,chase,135,3,2000,200,5000,yes,self,always,0,,,,,,,
+2783,C5_L_EREMES@AS_GRIMTOOTH,idle,137,5,10000,0,0,yes,target,always,0,,,,,,6,
+2783,C5_L_EREMES@AS_GRIMTOOTH,chase,137,5,10000,0,0,yes,target,skillused,18,,,,,,6,
+2783,C5_L_EREMES@AS_SONICBLOW,attack,136,10,2000,0,5000,yes,target,always,0,,,,,,6,
+2783,C5_L_EREMES@AS_GRIMTOOTH,chase,137,5,2000,0,0,yes,target,always,0,,,,,,,
+2783,C5_L_EREMES@AS_VENOMDUST,idle,140,10,2000,0,50000,yes,target,always,0,,,,,,29,
+2783,C5_L_EREMES@AS_VENOMDUST,attack,140,10,2000,0,50000,yes,target,always,0,,,,,,29,
+2783,C5_L_EREMES@NPC_CRITICALSLASH,attack,170,1,1000,0,5000,yes,target,always,0,,,,,,,
+2783,C5_L_EREMES@NPC_STUNATTACK,attack,179,5,1000,0,5000,yes,target,always,0,,,,,,,
+2783,C5_L_EREMES@NPC_POISONATTACK,attack,188,5,1000,0,5000,yes,target,always,0,,,,,,,
+2783,C5_L_EREMES@AL_TELEPORT,idle,26,1,1000,1000,10000,no,self,always,0,,,,,,,
+2783,C5_L_EREMES@AL_TELEPORT,chase,26,1,1000,1000,10000,no,self,always,0,,,,,,,
+2783,C5_L_EREMES@AL_TELEPORT,attack,26,1,1000,1000,10000,no,self,always,0,,,,,,,
+2783,C5_L_EREMES@AL_HEAL,idle,28,9,10000,1000,10000,yes,self,always,0,,,,,,,
+2783,C5_L_EREMES@AL_HEAL,chase,28,9,10000,1000,10000,yes,self,always,0,,,,,,,
+2783,C5_L_EREMES@AL_HEAL,attack,28,9,10000,1000,10000,yes,self,always,0,,,,,,,
2784,Swift Kobold Archer@AL_TELEPORT,attack,26,1,500,0,5000,yes,self,myhpltmaxrate,50,,,,,,,
2784,Swift Kobold Archer@AL_HEAL,attack,28,5,10000,500,5000,yes,self,myhpltmaxrate,50,,,,,,,
2784,Swift Kobold Archer@AC_DOUBLE,attack,46,3,500,1000,5000,no,target,always,,,,,,,6,
@@ -11185,8 +11212,8 @@
3038,Hidden Mob 7@NPC_INVISIBLE,idle,353,1,10000,0,30000,yes,self,always,0,,,,,,,
3038,Hidden Mob 7@NPC_INVISIBLE,attack,353,1,10000,0,30000,yes,self,always,0,,,,,,,
-// 3038,Hidden Mob 7@NPC_HELLBURNING,idle,719,1,10000,0,3000,yes,self,always,0,,,,,,,
-// 3038,Hidden Mob 7@NPC_HELLBURNING,attack,719,1,10000,0,3000,yes,self,always,0,,,,,,,
+3038,Hidden Mob 7@NPC_HELLBURNING,idle,719,1,10000,0,3000,yes,self,always,0,,,,,,,
+3038,Hidden Mob 7@NPC_HELLBURNING,attack,719,1,10000,0,3000,yes,self,always,0,,,,,,,
// Jitterbug instance
3069,Ferre@NPC_GROUNDATTACK,attack,185,5,1000,0,5000,no,target,always,0,,,,,,,
@@ -11872,63 +11899,117 @@
3246,V_B_TRENTINI@NPC_WIDESLEEP,attack,668,5,100,1000,20000,no,self,always,,,,,,,,
3246,V_B_TRENTINI@NPC_WIDECONFUSE,attack,667,5,100,1000,20000,no,target,always,,,,,,,,
-//=================================================================
-// Phantasmagorika 15.2 Mob Skills Placeholder (Gathered from jRO)
-//=================================================================
+// Phantasmagorika 15.2
+3124,CHARLESTON3@NPC_AGIUP,idle,350,1,2000,0,10000,yes,self,always,0,,,,,,,
+3124,CHARLESTON3@AL_HEAL,idle,28,11,10000,0,3000,yes,self,always,0,,,,,,,
+3124,CHARLESTON3@HW_NAPALMVULCAN,chase,400,5,3000,500,10000,no,target,always,0,,,,,,,
+3124,CHARLESTON3@WZ_VERMILION,chase,85,5,2000,1000,15000,no,target,always,0,,,,,,,
+3124,CHARLESTON3@HW_NAPALMVULCAN,attack,400,5,3000,500,10000,no,target,always,0,,,,,,,
+3124,CHARLESTON3@WZ_VERMILION,attack,85,21,1500,4000,20000,no,target,always,0,,,,,,,
+3124,CHARLESTON3@WZ_METEOR,attack,83,11,1500,4000,20000,no,target,always,0,,,,,,,
+3125,STEP@SM_BASH,attack,5,5,1000,0,5000,yes,target,always,0,,,,,,,
+3126,ROCK_STEP@BS_HAMMERFALL,attack,110,5,1000,1000,5000,no,target,always,0,,,,,,,
+3127,KICK_STEP@ASC_BREAKER,attack,379,5,1000,0,5000,yes,target,always,0,,,,,,,
+3128,KICK_AND_KICK@NPC_STUNATTACK,attack,179,3,500,1000,5000,no,target,always,0,,,,,,,
+3161,BOMB@NPC_SELFDESTRUCTION,idle,173,1,10000,3000,0,no,self,always,0,,,,,,,
+3161,BOMB@NPC_SELFDESTRUCTION,attack,173,1,10000,3000,5000,no,self,myhpltmaxrate,99,,,,,,,
+3253,SYS_MSG@AL_HEAL,attack,28,11,5000,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
+3253,SYS_MSG@AL_HEAL,chase,28,11,5000,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
+3253,SYS_MSG@AL_HEAL,idle,28,11,5000,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
+3254,T_W_O@NPC_PIERCINGATT,attack,158,10,3000,0,30000,no,target,always,0,,,,,,,
+3254,T_W_O@NPC_PIERCINGATT,chase,158,10,5000,0,5000,no,target,always,0,,,,,,,
+3254,T_W_O@NPC_SILENCEATTACK,attack,178,5,7500,250,10000,no,target,casttargeted,0,,,,,,6,
+3254,T_W_O@NPC_SILENCEATTACK,chase,178,5,7500,250,3000,no,target,casttargeted,0,,,,,,6,
+3254,T_W_O@NPC_WIDESLEEP,attack,668,5,4000,0,15000,no,self,always,0,,,,,,,
+3254,T_W_O@NPC_WIDESTONE,attack,666,5,6000,0,30000,no,self,always,0,,,,,,,
+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,,,,,,,,
-3153,Excavator Robot@NPC_BLOODDRAIN,angry,199,1,1000,0,3000,no,target,always,0,,,,,,,
-3153,Excavator Robot@NPC_STONESKIN,attack,675,3,10000,0,30000,yes,self,always,0,,,,,,,
-3153,Excavator Robot@NPC_STUNATTACK,attack,179,5,800,1000,5000,no,target,always,0,,,,,,,
-3153,Excavator Robot@NPC_ARMORBRAKE,attack,344,10,500,0,5000,no,target,always,0,,,,,,,
-3153,Excavator Robot@NPC_STONESKIN,chase,675,3,10000,0,30000,yes,self,always,0,,,,,,,
-3153,Excavator Robot@NPC_BLOODDRAIN,attack,199,1,500,0,5000,no,target,always,0,,,,,,,
-3153,Excavator Robot@NPC_STONESKIN,idle,675,3,10000,0,30000,yes,self,always,0,,,,,,,
-3153,Excavator Robot@AL_TELEPORT,idle,26,1,10000,0,0,no,target,rudeattacked,0,,,,,,,
+// 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,,,,,,,,
-3154,Recon Robot@NPC_GUIDEDATTACK,attack,172,5,500,0,20000,no,target,always,0,,,,,,,
-3154,Recon Robot@NPC_STUNATTACK,attack,179,5,800,1000,5000,no,target,always,0,,,,,,,
-
-3155,Repair Robot@NPC_STUNATTACK,any,179,5,500,1000,5000,no,target,always,0,,,,,,,
-3155,Repair Robot@NPC_GUIDEDATTACK,attack,172,5,1000,0,15000,no,target,always,0,,,,,,,
-
-3156,Exploration Rover@NPC_SUMMONSLAVE,idle,196,5,10000,700,10000,no,self,casttargeted,1,3157,3158,,,,,
-3156,Exploration Rover@NPC_GUIDEDATTACK,attack,172,5,1000,0,10000,no,target,always,0,,,,,,,
-3156,Exploration Rover@NPC_SUMMONSLAVE,attack,196,5,10000,700,10000,no,target,attackpcge,10,3157,3158,,,,,
-
-3247,Cenere G@NPC_PETRIFYATTACK,attack,180,3,500,500,5000,no,target,always,0,,,,,,,
-3247,Cenere G@MG_THUNDERSTORM,chase,21,10,3000,1000,10000,no,target,always,0,,,,,,,
-3247,Cenere G@NPC_POISONATTACK,any,188,1,5000,0,5000,no,target,always,0,,,,,,,
-3247,Cenere G@NPC_BLINDATTACK,attack,177,3,500,0,5000,yes,target,always,0,,,,,,,
-3247,Cenere G@MG_THUNDERSTORM,attack,21,10,3000,1000,10000,no,target,always,0,,,,,,,
-
-3248,Repair Robot T@AL_PNEUMA,attack,25,1,2000,0,5000,yes,self,longrangeattacked,0,,,,,,,
-3248,Repair Robot T@AL_TELEPORT,idle,26,1,10000,0,0,no,target,rudeattacked,0,,,,,,,
-3248,Repair Robot T@NPC_CRITICALSLASH,attack,170,1,2000,0,2000,no,target,always,0,,,,,,,
-3248,Repair Robot T@NPC_GUIDEDATTACK,attack,172,5,1000,0,5000,no,target,always,0,,,,,,,
-3248,Repair Robot T@KN_TWOHANDQUICKEN,attack,60,30,10000,0,120000,yes,target,myhpltmaxrate,40,,,,,,,
-3248,Repair Robot T@NPC_STUNATTACK,attack,179,5,500,1000,5000,no,target,always,0,,,,,,,
-3248,Repair Robot T@AL_PNEUMA,chase,25,1,2000,0,5000,no,self,longrangeattacked,0,,,,,,,
-
-3249,Exploration Rover T@KN_TWOHANDQUICKEN,attack,60,30,10000,0,120000,yes,self,myhpltmaxrate,40,,,,,,,
-3249,Exploration Rover T@AL_PNEUMA,chase,25,1,2000,0,5000,no,self,longrangeattacked,0,,,,,,,
-3249,Exploration Rover T@AL_TELEPORT,walk,26,1,10000,0,0,no,target,rudeattacked,0,,,,,,,
-3249,Exploration Rover T@NPC_CRITICALWOUND,attack,673,2,1000,0,5000,no,target,always,0,,,,,,,
-3249,Exploration Rover T@NPC_GUIDEDATTACK,attack,172,5,1000,0,5000,no,target,always,0,,,,,,,
-3249,Exploration Rover T@AL_PNEUMA,attack,25,1,2000,0,5000,no,self,longrangeattacked,0,,,,,,,
-
-3253,SYS_MSG@AL_HEAL,attack,28,10,500,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
-3253,SYS_MSG@AL_HEAL,chase,28,10,500,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
-3253,SYS_MSG@AL_HEAL,idle,28,10,500,500,5000,yes,friend,friendhpltmaxrate,50,,,,,,,
-
-3254,T_W_O@NPC_PIERCINGATT,attack,158,10,300,0,30000,no,target,always,0,,,,,,,
-3254,T_W_O@NPC_PIERCINGATT,chase,158,10,500,0,5000,no,target,always,0,,,,,,,
-3254,T_W_O@NPC_SILENCEATTACK,attack,178,5,750,250,10000,no,target,casttargeted,0,,,,,,6,
-3254,T_W_O@NPC_SILENCEATTACK,chase,178,5,750,250,3000,no,target,casttargeted,0,,,,,,6,
-3254,T_W_O@NPC_WIDESLEEP,attack,668,5,400,0,15000,no,self,always,0,,,,,,,
-3254,T_W_O@NPC_WIDESTONE,attack,666,5,600,0,30000,no,self,always,0,,,,,,,
-3254,T_W_O@NPC_WIDESOULDRAIN,attack,680,10,1000,0,60000,no,self,always,0,,,,,,,
-3254,T_W_O@NPC_CRITICALWOUND,attack,673,5,150,500,45000,no,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,,,,,,
+// ep16.2
+3621,EP16_2_MM_CUTIE@NPC_AGIUP,attack,350,1,10000,0,20000,yes,self,always,0,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_MENTALBREAKER,attack,159,2,10000,1000,30000,no,target,always,0,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_WIDESIGHT,attack,669,1,10000,0,30000,yes,self,always,0,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_BLEEDING,attack,660,5,10000,0,40000,yes,target,always,0,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_DARKNESSBREATH,attack,658,5,500,3000,10000,no,target,always,0,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_VAMPIRE_GIFT,attack,679,1,10000,300,20000,no,self,myhpltmaxrate,50,,,,,,,
+3621,EP16_2_MM_CUTIE@NPC_BLOODDRAIN,attack,199,1,10000,300,10000,no,target,myhpltmaxrate,30,,,,,,,
+3622,EP16_2_MM_S_GUARDS@MG_FIREBOLT,chase,19,5,10000,0,10000,yes,target,always,0,,,,,,,
+3622,EP16_2_MM_S_GUARDS@MG_FIREBALL,attack,17,5,2000,500,1000,no,target,always,0,,,,,,,
+3622,EP16_2_MM_S_GUARDS@NPC_FIREATTACK,attack,186,3,1000,500,5000,no,target,always,0,,,,,,,
+3626,EP16_2_H_HUNTER_V@SM_ENDURE,idle,8,1,10000,0,30000,yes,self,always,0,,,,,,,
+3626,EP16_2_H_HUNTER_V@NPC_CRITICALSLASH,chase,170,1,3000,0,5000,yes,target,always,0,,,,,,,
+3626,EP16_2_H_HUNTER_V@NPC_PIERCINGATT,attack,158,5,2000,500,3000,no,target,always,0,,,,,,,
+3627,EP16_2_H_HUNTER_MD@MO_BODYRELOCATION,attack,264,1,1000,0,10000,yes,target,always,0,,,,,,,
+3627,EP16_2_H_HUNTER_MD@AL_INCAGI,attack,29,1,1000,0,10000,yes,self,always,0,,,,,,,
+3627,EP16_2_H_HUNTER_MD@NPC_POWERUP,idle,349,2,10000,0,30000,yes,self,always,0,,,,,,,
+3627,EP16_2_H_HUNTER_MD@SM_BASH,attack,5,5,2000,500,1000,no,target,always,0,,,,,,,
+3627,EP16_2_H_HUNTER_MD@KN_BOWLINGBASH,attack,62,3,1000,500,5000,no,target,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_AGIUP,attack,350,1,5000,0,20000,yes,self,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@MO_BODYRELOCATION,chase,264,1,2000,0,10000,yes,target,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_BLEEDING,attack,660,5,2000,500,10000,no,target,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_CRITICALWOUND,attack,673,3,1000,500,20000,no,target,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_WIDESIGHT,attack,669,1,10000,0,30000,yes,self,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_WEAPONBRAKER,attack,343,1,10000,0,40000,yes,target,always,0,,,,,,,
+3628,EP16_2_H_HUNTER_EV@NPC_DARKBREATH,attack,202,5,2000,3000,10000,no,target,myhpltmaxrate,60,,,,,,,
+3629,EP16_2_BROKEN_GUN@NPC_COMBOATTACK,attack,171,5,2000,500,5000,no,target,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_AGIUP,chase,350,1,10000,0,20000,yes,self,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_CRITICALWOUND,attack,673,5,500,1000,30000,no,target,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_STUNATTACK,attack,179,1,1000,500,5000,no,target,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_WIDESIGHT,attack,669,1,10000,0,30000,yes,self,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_PULSESTRIKE,attack,661,1,500,2000,5000,no,self,always,0,,,,,,,
+3630,EP16_2_E_BOLKOBA@NPC_MAGICMIRROR,attack,671,10,2000,3000,20000,no,self,myhpltmaxrate,20,,,,,,,
+3631,EP16_2_HUMAN_KIMERA@NPC_AGIUP,idle,350,1,10000,0,60000,yes,self,always,0,,,,,,,
+3631,EP16_2_HUMAN_KIMERA@NPC_COMBOATTACK,chase,171,1,1000,500,5000,no,target,always,0,,,,,,,
+3631,EP16_2_HUMAN_KIMERA@NPC_RANDOMATTACK,attack,183,1,1000,500,5000,no,target,always,0,,,,,,,
+3632,EP16_2_MATTER_KIMERA@NPC_POWERUP,idle,349,1,10000,0,60000,yes,self,always,0,,,,,,,
+3632,EP16_2_MATTER_KIMERA@NPC_COMBOATTACK,chase,171,1,1000,500,5000,no,target,always,0,,,,,,,
+3632,EP16_2_MATTER_KIMERA@NPC_FIREATTACK,attack,186,1,1000,500,5000,no,target,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_POWERUP,attack,349,5,10000,0,20000,yes,self,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_AGIUP,attack,350,5,10000,0,20000,yes,self,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_POISON,attack,176,5,1000,500,5000,no,target,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_POISONATTACK,attack,188,3,1000,0,5000,yes,target,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_WIDESIGHT,attack,669,1,10000,0,30000,yes,self,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@NPC_ACIDBREATH,attack,657,6,10000,3000,25000,no,target,always,0,,,,,,,
+3633,EP16_2_VENOM_KIMERA@RG_STRIPARMOR,attack,217,5,500,1000,5000,no,target,always,0,,,,,,,
diff --git a/db/re/pet_db.yml b/db/re/pet_db.yml
index 735bb7a070..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
@@ -675,13 +675,13 @@ Body:
if (.@i >= PET_INTIMATE_LOYAL) {
bonus2 bAddRace,RC_Demihuman,3;
bonus2 bMagicAddRace,RC_DemiHuman,3;
- bonus2 bAddRace,RC_Player,3;
- bonus2 bMagicAddRace,RC_Player,3;
+ bonus2 bAddRace,RC_Player_Human,3;
+ bonus2 bMagicAddRace,RC_Player_Human,3;
} else if (.@i >= PET_INTIMATE_CORDIAL) {
bonus2 bAddRace,RC_Demihuman,2;
bonus2 bMagicAddRace,RC_DemiHuman,2;
- bonus2 bAddRace,RC_Player,2;
- bonus2 bMagicAddRace,RC_Player,2;
+ bonus2 bAddRace,RC_Player_Human,2;
+ bonus2 bMagicAddRace,RC_Player_Human,2;
}
- Mob: ALICE
TameItem: Sway_Apron
@@ -697,11 +697,11 @@ Body:
if (.@i >= PET_INTIMATE_LOYAL) {
bonus bMdef,2;
bonus2 bSubRace,RC_DemiHuman,2;
- bonus2 bSubRace,RC_Player,2;
+ bonus2 bSubRace,RC_Player_Human,2;
} else if (.@i >= PET_INTIMATE_CORDIAL) {
bonus bMdef,1;
bonus2 bSubRace,RC_DemiHuman,1;
- bonus2 bSubRace,RC_Player,1;
+ bonus2 bSubRace,RC_Player_Human,1;
}
Evolution:
- Target: ALIZA
@@ -760,11 +760,11 @@ Body:
if (.@i >= PET_INTIMATE_LOYAL) {
bonus bDef,2;
bonus2 bSubRace,RC_DemiHuman,2;
- bonus2 bSubRace,RC_Player,2;
+ bonus2 bSubRace,RC_Player_Human,2;
} else if (.@i >= PET_INTIMATE_CORDIAL) {
bonus bDef,1;
bonus2 bSubRace,RC_DemiHuman,1;
- bonus2 bSubRace,RC_Player,1;
+ bonus2 bSubRace,RC_Player_Human,1;
}
- Mob: ECLIPSE_P
EggItem: Spring_Rabbit_Egg
@@ -933,10 +933,10 @@ Body:
if (.@i >= PET_INTIMATE_LOYAL) {
bonus2 bAddRace,RC_DemiHuman,5;
- bonus2 bAddRace,RC_Player,5;
+ bonus2 bAddRace,RC_Player_Human,5;
} else if (.@i >= PET_INTIMATE_CORDIAL) {
bonus2 bAddRace,RC_DemiHuman,3;
- bonus2 bAddRace,RC_Player,3;
+ bonus2 bAddRace,RC_Player_Human,3;
}
- Mob: SUCCUBUS
TameItem: Boy's_Naivety
@@ -1143,8 +1143,10 @@ Body:
if (.@i >= PET_INTIMATE_LOYAL) {
bonus2 bSubRace,RC_Brute,5;
+ bonus2 bSubRace,RC_Player_Doram,5;
} else if (.@i >= PET_INTIMATE_CORDIAL) {
bonus2 bSubRace,RC_Brute,3;
+ bonus2 bSubRace,RC_Player_Doram,3;
}
- Mob: BACSOJIN_
TameItem: Shiny_Wing_Gown
@@ -1275,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
@@ -1294,7 +1296,7 @@ Body:
Evolution:
- Target: CAT_O_NINE_TAIL
ItemRequirements:
- - Item: Sap_Liquid
+ - Item: Sap_Jelly
Amount: 3
- Item: Fox_Tail
Amount: 999
@@ -1303,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
@@ -1322,7 +1324,7 @@ Body:
Evolution:
- Target: HODREMLIN
ItemRequirements:
- - Item: Unprocessed_Parts
+ - Item: Airship_Part
Amount: 3
- Item: Damp_Darkness
Amount: 50
@@ -1331,7 +1333,7 @@ Body:
- Item: Hodremlin_Card
Amount: 1
- Mob: MUMMY
- TameItem: Elixir_Bandages
+ TameItem: Elixir_Bandage
EggItem: Mummy_Egg
FoodItem: Mementos
Fullness: 7
@@ -1348,7 +1350,7 @@ Body:
Evolution:
- Target: ANCIENT_MUMMY
ItemRequirements:
- - Item: Elixir_Bandages
+ - Item: Elixir_Bandage
Amount: 3
- Item: Rune_Of_Darkness
Amount: 200
@@ -1357,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
@@ -1374,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
@@ -1630,7 +1632,7 @@ Body:
bonus bHit,4;
}
- Mob: AM_MUT
- EggItem: Am_Mut_Egg
+ EggItem: Ammut_Egg
FoodItem: Pet_Food
Fullness: 2
HungryDelay: 120
@@ -1651,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
@@ -1689,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
@@ -1765,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
@@ -1813,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
@@ -1842,7 +1844,7 @@ Body:
bonus bAtk,2;
}
- Mob: LITTLE_ISIS
- EggItem: Little_Isis_Egg
+ EggItem: Littleisis_Egg
FoodItem: Pet_Food
Fullness: 2
HungryDelay: 120
@@ -1863,7 +1865,7 @@ Body:
bonus bAtkRate,1;
}
- Mob: DIABOLIC2
- EggItem: Diabolic_2_Egg
+ EggItem: Diabolic_Egg2
FoodItem: Pet_Food
Fullness: 2
HungryDelay: 120
@@ -1896,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/produce_db.txt b/db/re/produce_db.txt
index 415d4edde5..2ae35cb47d 100644
--- a/db/re/produce_db.txt
+++ b/db/re/produce_db.txt
@@ -618,15 +618,15 @@
//---- Create Bomb --- ItemLV=28 ---------------
//-- Apple Bomb <-- GN_MAKEBOMB Lv1, Apple Bomb CB, 1 Apple, 1 Scell, 1 Detonator, 1 Gun Powder
-246,13260,28,2496,1,6279,0,512,1,911,1,1051,1,6244,1
+//246,13260,28,2496,1,6279,0,512,1,911,1,1051,1,6244,1
//-- Coconut Bomb <-- GN_MAKEBOMB Lv1, Coconut Bomb CB, 1 Detonator, 1 Coconut Fruit, 2 Gun Powder
-247,13261,28,2496,1,6281,0,1051,1,6263,1,6244,2
+//247,13261,28,2496,1,6281,0,1051,1,6263,1,6244,2
//-- Melon Bomb <-- GN_MAKEBOMB Lv1, Melon Bomb CB, 1 Sticky Mucus, 1 Detonator, 2 Gun Powder, 1 Melon
-248,13262,28,2496,1,6282,0,938,1,1051,1,6244,2,6264,1
+//248,13262,28,2496,1,6282,0,938,1,1051,1,6244,2,6264,1
//-- Pineapple Bomb <-- GN_MAKEBOMB Lv1, Pinepple Bomb CB, 1 Cactus Needle, 1 Detonator, 3 Gun Powder, 1 Pineapple
-249,13263,28,2496,1,6280,0,952,1,1051,1,6244,3,6265,1
+//249,13263,28,2496,1,6280,0,952,1,1051,1,6244,3,6265,1
//-- Banana Bomb <-- GN_MAKEBOMB Lv1, Banana Bomb CB, 1 Banana, 1 Detonator, 4 Gun Powder, 1 Mould Powder
-250,13264,28,2496,1,6283,0,513,1,1051,1,6244,4,7001,1
+//250,13264,28,2496,1,6283,0,513,1,1051,1,6244,4,7001,1
//---- Special Pharmacy --- ItemLV=29 ----------
//-- Seed Of Horny Plant <-- GN_S_PHARMACY Lv1, Plant Genetic Grow, 10 Prickly Fruit
@@ -655,28 +655,40 @@
262,12437,29,2497,1,6285,0,645,5,656,5,1092,10,7455,5
//-- Cure Free <-- GN_S_PHARMACY Lv1, Quality Potion Book, 20 Green Herb, 1 Fruit Of Mastela, 5 Panacea, 1 Leaf Of Yggdrasil, 10 Empty Cylinder
263,12475,29,2497,1,6285,0,511,20,522,1,525,5,610,1,1092,10
+//-- Golden X <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 10 Yggdrasilberry, 5 Gold
+264,100231,29,2497,1,1092,10,607,10,969,5
+//-- Red Herb Activator <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 45 Red Herb, 5 Yggdrasil Seed
+265,100232,29,2497,1,1092,10,507,45,608,5
+//-- Blue Herb Activator <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 15 Blue Herb, 5 Yggdrasil Seed
+266,100233,29,2497,1,1092,10,510,15,608,5
+//-- Concentrated Red Syrup Potion <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 5 Empty Potion Bottle, 15 Red Syrup
+267,1100003,29,2497,1,1092,10,1093,5,11621,15
+//-- Concentrated Blue Syrup Potion <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 5 Empty Potion Bottle, 15 Blue Syrup
+268,1100004,29,2497,1,1092,10,1093,5,11624,15
+//-- Concentrated Golden Syrup Potion <-- GN_S_PHARMACY Lvl, 10 Empty Testtube, 5 Empty Potion Bottle, 10 White Syrup, 10 Yellow Syrup
+269,1100005,29,2497,1,1092,10,1093,5,11623,10,11622,10
//===============================================
//--------------------LEVEL 30-----------
// Novice Red Potion (569) <-- 2 Red Herbs, 1 Apple
-264,569,30,0,0,11058,0,507,2,512,1
+270,569,30,0,0,11058,0,507,2,512,1
// Novice Magnifier (12325) <-- 3 Fine-grained Trunk, 1 Jellopy
-265,12325,30,0,0,11058,0,1066,3,909,1
+271,12325,30,0,0,11058,0,1066,3,909,1
// Novice Fly Wing (12323) <-- 2 Fluffs, 2 Feathers, 2 Jellopies
-266,12323,30,0,0,11058,0,914,2,949,2,909,2
+272,12323,30,0,0,11058,0,914,2,949,2,909,2
// Novice Cutter (13040) <-- 10 Shells, 10 Worm Peelings, 1 Phracon
-267,13040,30,0,0,11058,0,935,10,955,10,1010,1
+273,13040,30,0,0,11058,0,935,10,955,10,1010,1
// Little Unripe Apple (12846) <-- 1 Apple, 1 Green Herb
-268,12846,30,0,0,11058,0,512,1,511,1
+274,12846,30,0,0,11058,0,512,1,511,1
// Four Leaf Clover (706) <-- 200 Clovers, 200 Sticky Mucus
-269,706,30,0,0,11058,0,705,200,938,200
+275,706,30,0,0,11058,0,705,200,938,200
// Banana Juice (532) <-- 1 Banana, 1 Milk
-270,532,30,0,0,11058,0,513,1,519,1
+276,532,30,0,0,11058,0,513,1,519,1
// Apple Juice (531) <-- 1 Apple, 1 Milk
-271,531,30,0,0,11058,0,512,1,519,1
+277,531,30,0,0,11058,0,512,1,519,1
// Carrot Juice (534) <-- 1 Carrot, 1 Milk
-272,534,30,0,0,11058,0,515,1,519,1
+278,534,30,0,0,11058,0,515,1,519,1
// Grape Juice (533) <-- 1 Grape, 1 Milk
-273,533,30,0,0,11058,0,514,1,519,1
+279,533,30,0,0,11058,0,514,1,519,1
// Unripe Apple (619) <-- 10 Sticky Mucus, 20 Green Herbs, 10 Apples
-274,619,30,0,0,11058,0,938,10,511,20,512,10
+280,619,30,0,0,11058,0,938,10,511,20,512,10
diff --git a/db/re/quest_db.txt b/db/re/quest_db.txt
deleted file mode 100644
index 34b5123fbb..0000000000
--- a/db/re/quest_db.txt
+++ /dev/null
@@ -1,4053 +0,0 @@
-// Quest Database
-//
-// Structure of Database:
-// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title
-//
-// Time Limit* can be:
-// - in seconds ; date limit will be at [Current time + Time Limit]
-// - in HH-MM format ; date limit will be at [Time Limit] of the current day or at [Time Limit]
-// of the next day if [Time Limit] is lower than the current date.
-//
-// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob.
-// If no MobID* is given, then any mob has a chance to drop the given ItemID*.
-
-1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Transcend"
-1001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte"
-1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Archer"
-1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage"
-1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant"
-1013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Thief"
-1014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Swordman"
-1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest"
-1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaining base levels"
-
-// 2010 Headgear Quests
-1100,0,1178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo in the Sphinx Dungeon!"
-1101,0,1164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Sphinx Dungeon!"
-1102,0,1194,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!"
-1103,0,1213,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!"
-1104,0,1519,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-1105,0,1513,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-1106,0,1375,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!"
-1107,0,1403,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!"
-1108,0,1631,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Luoyang!"
-
-// Ropewa & Yuridi Quest
-1109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth"
-1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth"
-1111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth"
-1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth"
-1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart"
-1114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration"
-1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss"
-1116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song"
-1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring"
-1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues"
-1119,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - Cooldown"
-
-1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1152,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1154,0,2197,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat"
-1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend"
-1180,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1181,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1182,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1183,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1186,0,2313,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-1193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-
-// 2011 X-Mas Event
-1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!"
-
-// Find Professor Worm's Memory
-1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1216,0,0,0,0,0,0,0,2364,6542,3000,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1225,0,2367,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1227,0,0,0,0,0,0,0,2364,6542,3000,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
-
-// Academy 14.2
-1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordsman training"
-1237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shop guide"
-1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shop guide"
-1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shop guide"
-1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shop guide"
-
-// Ghost Palace memorial
-1261,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Swordman"
-1263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Swordman"
-
-1264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1266,0,0,0,0,0,0,0,3021,6692,2000,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1268,0,3021,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1269,0,3022,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-1297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flaming Basin and Doom Prayers"
-
-// Rockridge
-1298,0,3740,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gas! Gas!"
-1299,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Patrol Once a Day"
-
-1321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty and Her Ring"
-1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Found Something"
-1323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty, No!"
-1324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty, No!"
-1325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty, No!"
-1326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty, No!"
-1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty, No!"
-1328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Found Missing Items"
-1329,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty in the Dreamland"
-1330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spotty's Holes"
-1331,0,3736,3,3737,3,3738,3,0,0,0,0,0,0,0,0,0,"Avenging Spotty"
-1332,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blood for Blood"
-
-2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith"
-2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue"
-2028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist"
-2041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage"
-2063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 1"
-2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 2"
-2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 3"
-2066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 4"
-2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 5"
-2068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 6"
-2069,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tierra Gorge Battle"
-2070,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flavius Battle"
-2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property"
-2079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong"
-2086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise"
-2109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
-2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-2132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz"
-2143,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event"
-2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event"
-
-2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2150,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2151,0,1992,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2157,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New"
-2158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Fairy"
-2159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Tree Giant"
-2179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
-2182,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rough Minerals"
-2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim"
-2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim"
-2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spirit of Alfheim"
-2186,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping Grenouille"
-
-2187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-2191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
-
-2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest"
-2201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily"
-2208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-
-2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Genetic Job Change Quest"
-2218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2221,600,1718,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
-2223,0,1428,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest"
-
-// Secret in the Woods
-2271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods"
-2281,0,2319,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Buwaya"
-
-// Pyramid (Nightmare)
-2289,0,2355,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting (Nightmare)"
-2290,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting - Cooldown"
-2291,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting - Cooldown"
-2292,0,2360,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting (Nightmare)"
-
-// Academy 14.2
-2293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer's Companion"
-2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rapid Completion Experience"
-
-// New Novice Ground
-// 2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to Lisa"
-2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer"
-2301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Leave the boat"
-2302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Formation"
-
-//2315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard"
-3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader"
-3016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Marathon"
-3029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Final test"
-//3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk"
-3031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training"
-3032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk"
-3040,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet"
-3041,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet"
-3042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Cursed Baphomet Doll"
-3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
-3044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
-3045,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine"
-3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine After-effect"
-
-3050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1"
-3051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2"
-3052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3"
-3053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4"
-3054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5"
-3055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6"
-3056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7"
-3060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?"
-3061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!"
-3062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!"
-3063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?"
-3064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap"
-3065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients"
-3066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..."
-3067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants"
-3068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung"
-3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?"
-3070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!"
-3071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!"
-3072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained"
-3073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained"
-3074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained"
-3075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained"
-3076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained"
-3077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory"
-3078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!"
-3079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold"
-3080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold"
-3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!"
-3082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!"
-3083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key"
-3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Call from the commander"
-3086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Commander's Duty"
-3087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Midgard"
-3088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Accident!"
-3089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - How to restore"
-3090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports"
-3091,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports"
-3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Success to restore!"
-3093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Report to the continent"
-3094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition"
-
-3100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt"
-3101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth"
-3102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..."
-3103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian"
-3104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer"
-3105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer"
-3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed"
-3107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful"
-3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer"
-3109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt"
-3110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond"
-3111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor"
-3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
-3115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information"
-3116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator"
-3117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches"
-3118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!"
-3119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice"
-3120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang"
-3121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor"
-3122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes"
-3123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test"
-3124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
-3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
-3126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell"
-3127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
-3128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
-3129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter"
-3130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..."
-3131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!"
-3132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit"
-3133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!"
-3134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang"
-3135,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest"
-3136,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit"
-
-3200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight"
-3201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight"
-3202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
-3203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
-3204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test"
-3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3209,0,1504,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1"
-3210,0,1506,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2"
-3211,0,1508,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3"
-3212,0,1510,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4"
-3213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
-3215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test"
-3216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
-3217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
-3218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test"
-3219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test"
-3220,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test"
-
-3250,0,1041,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - What is this bandage for?"
-3251,0,1271,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - An alligator of Counterattack"
-3252,0,1264,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - My mermaid don't do like this way!"
-3253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania"
-3254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A country wants you"
-3255,0,1166,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A wild boar subjugate operation"
-3256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Ready for waiting summer"
-3257,0,1170,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A grudge of women"
-3258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A material of delicacy"
-3259,0,1143,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A agony of a doll master"
-3260,0,1035,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Tiresome flies"
-3261,0,1026,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Unclean girl"
-3262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Queer hobby"
-3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A mallet of goblin"
-3265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania"
-
-4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sherin's Job Interview"
-4001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter - Test"
-4012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-4013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter"
-
-// Following entries are depreciated - use 10000-10025
-//4015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser"
-//4016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Proof of Qualification"
-//4017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test"
-//4018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparations for Meeting Princes"
-//4020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince"
-//4028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The prince, Peter's Favor"
-//4029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Girl's Favor"
-//4030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
-//4031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
-//4032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy of the two families"
-//4033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death of Ahrum"
-
-4133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-4134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-4135,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara"
-
-4154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus Researcher"
-4155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1"
-4156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2"
-4157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3"
-4158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4"
-4159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5"
-4160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6"
-
-4161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siege Expert"
-4162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Party Recruiting Expert"
-4163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battleground Expert"
-4164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon Expert"
-4165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Map Expert"
-4166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passing Grades"
-
-// Paradise 86 - 90 [Chilly]
-4167,0,1321,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dragon Tail Hunting"
-4168,0,1322,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Spring Rabbit Hunting"
-4169,0,1256,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pest Hunting"
-4170,0,1102,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Bathory Hunting"
-4171,0,1193,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Alarm Hunting"
-4172,0,1882,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Babayaga Hunting"
-4173,0,1512,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Hyegun Hunting"
-4174,0,1403,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Antique Firelock Hunting"
-4175,0,1417,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Zipper Bear Hunting"
-4176,0,1155,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Earth Petite Hunting"
-4177,0,1162,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rafflesia Hunting"
-4178,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Venomous Hunting"
-4179,0,1616,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pitman Hunting"
-4180,0,1718,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Yellow Novus Hunting"
-
-// Paradise 91 - 99 [Chilly]
-4181,0,1316,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Solider Hunting"
-4182,0,1319,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Freezer Hunting"
-4183,0,1318,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Heater Hunting"
-4184,0,1257,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Injustice Hunting"
-4185,0,1201,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rybio Hunting"
-4186,0,1198,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dark Priest Hunting"
-4187,0,1784,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Stapo Hunting"
-4188,0,1782,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Roween Hunting"
-4189,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Siroma Hunting"
-4190,0,1401,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Shinobi Hunting"
-4191,0,1416,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Evil Nymph Hunting"
-4192,0,1109,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Deviruchi Hunting"
-4193,0,1614,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Mineral Hunting"
-4194,0,1072,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Kaho Hunting"
-4195,0,1255,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Neraid Hunting"
-4196,0,1506,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Disguise Hunting"
-
-4197,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Octopus"
-
-// Paradise Cooldowns
-4198,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4199,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4200,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4201,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4202,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4203,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4204,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4205,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4206,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4207,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4208,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4209,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4210,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4211,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer"
-4212,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4213,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4214,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4215,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4216,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4217,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4218,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4219,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4220,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4221,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4222,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4223,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4224,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4225,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4226,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-4227,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer"
-
-4229,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Devil in the Cave"
-
-4254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairy with a stomache"
-4255,0,2363,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge!"
-4256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An accomplice?"
-4257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy"
-4258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eirinn"
-4259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bourbon"
-4260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee"
-4261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (1)"
-4262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (2)"
-4263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (1)"
-4264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (2)"
-4265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bookshelf use"
-4266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??"
-4267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??"
-
-// Academy 14.2
-4268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja trainer"
-4269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Registration at the Academy"
-4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training - stat explanation"
-4271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-explanation about the skills"
-4272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training- conversation about the skills"
-4273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training- explanation about the weapons"
-4274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninjas training- explanation about job change"
-4275,0,1113,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-Exercise1"
-4276,0,1002,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-Exercise2"
-4277,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-Actual battle2"
-4278,0,1024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-Actual battle1"
-4279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-test"
-4280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-test"
-4281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Beginner's training-Ninja"
-4282,0,1113,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-exercise1"
-4283,0,1002,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-exercise2"
-4284,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-actual battle2"
-4285,0,1024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-actual battle1"
-4286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-test"
-4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ninja training-test"
-
-// Episode 15.1 Bard's Story
-4295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wandering Bard"
-4296,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Take a Break"
-4297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: Some Corporation"
-4298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: The President"
-4299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: a Scholar in Juno"
-4300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: a Mad Scientist"
-4301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: Hugel"
-4302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard's Story: Odin Temple"
-
-//4303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//4304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//4305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-4999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Extermination Crisis"
-5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 7"
-5001,0,1037,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"King Froggie VII's revenge"
-5002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The hero of the frogs"
-5003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frog Hiding Skill"
-5004,0,1099,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food Shortage"
-
-// Researcher's Quest
-5016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bring me a Research Tool Bag"
-5017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher"
-5018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher"
-5019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Sample Studying"
-5020,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Researching"
-5021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting"
-5022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting"
-5023,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample"
-5024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eastern Pool Research"
-5025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Western Pool Research"
-5026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Southern Pool Research"
-5027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Northern Pool Research"
-5028,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample"
-5029,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unidentified Creature"
-5030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family"
-5034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"News from the family"
-5035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5043,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5044,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!"
-5052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon"
-5055,0,2071,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Headless Horse"
-5056,0,1584,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Tamruan"
-5057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Ready the Festival"
-5058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(1)"
-5059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(2)"
-5060,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Shock"
-5061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Am I scared?"
-5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eryu."
-5063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Stew."
-5064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Ketchup."
-5065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eff."
-5066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(1)"
-5067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(2)"
-5068,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting complaint"
-5069,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Token of honor"
-5070,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rock Paper Scissors"
-5071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chamchamcham"
-5072,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kkongnyangkkong"
-5073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Challenging of flag wave"
-5074,0,1158,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat's Meal"
-5075,0,1144,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Health food"
-5076,0,1282,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enemies"
-5077,0,1209,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reaction Training"
-5078,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light bird food"
-5079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to stabilize the mind"
-5080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lack of Snack"
-5081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banned foods"
-5082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cool food"
-5083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(1)"
-5084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(2)"
-5085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(1)"
-5086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(2)"
-5087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(1)"
-5088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(2)"
-5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(1)"
-5090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(2)"
-5091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Go Malangdo"
-
-5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5094,0,1002,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5095,0,1063,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5096,0,1007,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5097,0,1049,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-5100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
-
-5109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor"
-5110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Rumored Character"
-5111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Lab..."
-5112,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laboratory Restricted Access"
-5113,0,1646,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Lord Knight"
-5114,0,2235,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Paladin"
-5115,0,1649,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Priest"
-5116,0,2238,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Champion"
-5117,0,1651,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Wizard"
-5118,0,2237,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Professor"
-5119,0,1648,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Whitesmith"
-5120,0,2236,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Creator"
-5121,0,1647,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Assassin Cross"
-5122,0,2239,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Stalker"
-5123,0,1650,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Sniper"
-5124,0,2240,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Clown"
-5125,0,2241,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Gypsy"
-
-// Kagerou/Oboro Job Quest
-5131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Conversation"
-5132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(1)"
-5133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(2)"
-5134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New path"
-5135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"4 tests"
-5136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge test"
-5137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survival test"
-5138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weapons test"
-5139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The guy looks familiar!!"
-5140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uncertain chilliness"
-5141,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Got a curse!!"
-5142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(1)"
-5143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)"
-5144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)"
-5145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(3)"
-5146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle test"
-
-// Academy 14.2
-5147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gunslinger basic training(1)"
-5148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gunslinger basic training(2)"
-5149,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-5150,0,1012,10,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-5151,0,1167,10,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-5152,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-5153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Refining tutorial (1)"
-5154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Refining tutorial (2)"
-5155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Refining tutorial (3)"
-5156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Refining tutorial (4)"
-5157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchant tutorial (1)"
-5158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchant tutorial (2)"
-5159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchant tutorial (3)"
-
-// 2012 Headgear Quests
-5161,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request[Stand by]"
-5162,0,1164,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5163,0,1102,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5164,0,1322,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5165,0,1386,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5166,0,1117,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5167,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5168,0,1269,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request"
-5169,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request[Stand by]"
-5170,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5171,0,1198,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5172,0,1784,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5173,0,1316,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request"
-5174,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collectiong request[Stand by]"
-5175,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5176,0,1148,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5177,0,1995,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5178,0,1310,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request"
-5179,0,1163,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5180,0,1993,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5181,0,1297,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5182,0,1699,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request"
-5222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals"
-5225,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-5226,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-5227,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]"
-
-// Episode 15.1 Phantasmagorika
-5304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Chief Kesler"
-5305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Officer Salgran"
-5306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Officer Gerev"
-5307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Officer Seiden"
-5308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Officer Piffs"
-5309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Police Chief's Request"
-5310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Salgran's Problem"
-5311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gerev's Problem"
-5312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seiden's Problem"
-5313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Piffs's Problem"
-5314,0,3159,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Salgran's Request"
-5315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gerev's Request"
-5316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seiden's Request"
-5317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Piffs's Request"
-5318,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Come Back Tomorrow"
-
-// Episode 15.2 Memory Record
-5341,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restriction on the Journey"
-5342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Her"
-5343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a Head Count"
-5344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a Head Count"
-5345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a Head Count"
-5346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a Head Count"
-5347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finishing a Head Count"
-5348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finishing a Head Count"
-5349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finishing a Head Count"
-5350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finishing a Head Count"
-5351,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restriction on the Journey"
-5352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Air Purifier"
-5353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered to C-0"
-5354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered to F-1"
-5355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered to F-2"
-5356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered to I-0"
-5357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered to Z-0"
-5358,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restriction on the Journey"
-5359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grape Harvest"
-5360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grape Delivery"
-5361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grape Delivery"
-5362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grape Delivery"
-5363,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restriction on the Journey"
-5364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Subdue Hysterical Patients"
-5365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Urgent News"
-5366,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restriction on the Journey"
-5367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily Necessities Transport"
-5368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered Supplies"
-5369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivered the Message"
-5370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memory Record"
-
-// Banquet Quests
-5402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Royal Richard"
-5403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Royal Richard"
-// Todo : Quests by race / level
-5404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Human"
-5405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Animal"
-5406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Insect"
-5407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Fish"
-5408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Plant"
-5409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Devil"
-5410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Angel"
-5411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Immortal"
-5412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Intangible"
-5413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Warrior Discipline-Dragon"
-5414,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Warrior Discipline"
-5415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector"
-5416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector A"
-5417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector B"
-5418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector C"
-5419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector D"
-5420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector E"
-5421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector F"
-5422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector G"
-5423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restricted Sector H"
-5424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Complete]Restricted Sector"
-5425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Beloved Fellow"
-5426,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]To My Beloved Fellow"
-5427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]To My Beloved Fellow"
-5428,0,0,0,0,0,0,0,3444,6924,2000,0,0,0,0,0,0,"Lowly Standards"
-5429,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Lowly Standards"
-5430,0,0,0,0,0,0,0,3444,6924,2000,0,0,0,0,0,0,"[Repeat]Lowly Standards"
-5431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clean Life"
-5432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Cleaning is complete."
-5433,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Clean Life"
-5434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Clean Life"
-5435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Cleaning is complete."
-5436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Lights"
-5437,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Finding Lights"
-5438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Finding Lights"
-5439,0,0,0,0,0,0,0,3442,6921,2000,0,0,0,0,0,0,"Refreshing Prison Life"
-5440,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Refreshing Prison Life"
-5441,0,0,0,0,0,0,0,3442,6921,2000,0,0,0,0,0,0,"[Repeat]Refreshing Prison Life"
-5442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suppressing Darkness"
-5443,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Suppressing Darkness"
-5444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Repeat]Suppressing Darkness"
-5445,0,0,0,0,0,0,0,3443,6922,2000,0,0,0,0,0,0,"Bothersome Little Thing"
-5446,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Bothersome Little Thing"
-5447,0,0,0,0,0,0,0,3443,6922,2000,0,0,0,0,0,0,"[Repeat]Bothersome Little Thing"
-5448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Chief Guard"
-5449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Chief Guard"
-5450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Chief Guard"
-5451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Chief Guard"
-5452,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Stand by]Request from Chief Guard"
-5453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ungrateful(1)"
-5454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ungrateful(2)"
-5455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ungrateful(3)"
-5456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ungrateful(4)"
-5457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find My Sister(1)"
-5458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find My Sister(2)"
-5459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find My Sister(3)"
-5460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blatant Bluff(1)"
-5461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blatant Bluff(2)"
-5462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blatant Bluff(3)"
-5463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(1)"
-5464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(2)"
-5465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(3)"
-5466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(4)"
-5467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(5)"
-5468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mad Love for Wife(6)"
-
-6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon"
-6005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
-6010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Super Novice"
-6015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from Cougar"
-6016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from a Suspicious Man"
-6017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Leopard Joe's Reply"
-6018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cougar's Madness"
-6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Master Miller's Letter"
-6021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's voucher"
-6022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a voucher"
-6023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's Favor"
-6024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Gunslinger!"
-6025,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Guillaume"
-6026,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Croix"
-6027,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Indicator"
-7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!"
-7007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
-7008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature"
-7009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar"
-7010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?"
-7011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
-7012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
-7037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Case closed?"
-7038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes"
-7039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation"
-7040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation"
-7041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Politics is for the Politicians"
-7042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed"
-7043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed"
-7044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1"
-7045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2"
-7046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - warm rugs"
-7047,18000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Let's call it a day!"
-7048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor"
-7049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
-7053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.."
-7054,0,1282,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Teach them a lesson!"
-7055,0,1261,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Not the cat!"
-7056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
-7059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
-7066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
-7069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Too late!"
-7070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Return"
-7071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Invitation"
-//7072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//7073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-7074,0,2017,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rata Hunt"
-7075,0,2018,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Duneyrr Hunt"
-7076,0,2026,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanted: Dandelion"
-7077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs"
-7078,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs"
-7079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium"
-7080,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium"
-7081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman"
-7082,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman"
-
-7091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 01"
-7092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 02"
-7093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 03"
-7094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 04"
-7095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 05"
-7096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement"
-7100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A message of Bercascell"
-7101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 1"
-7102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 2"
-7103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 3"
-7104,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4"
-7105,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4"
-7106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 5"
-7107,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 6"
-7108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 7"
-7109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 8"
-7110,600,2030,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 9"
-7111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 10"
-7112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Madelle"
-7113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Crave"
-7114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Trovan"
-7115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a peddler"
-7116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a old man"
-
-// Novice Training Grounds
-7117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest!"
-7118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training"
-7122,0,1002,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"First battle - Poring Hunt"
-7123,0,1049,2,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Swordman"
-7124,0,1063,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Mage"
-//7125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"not used"
-7126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selling items"
-7127,0,1010,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Thief"
-
-7128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start"
-7129,0,1009,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1"
-7130,0,1107,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2"
-7131,0,1001,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3"
-7132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest"
-7133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start"
-7134,0,1051,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1"
-7135,0,1175,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2"
-7136,0,1005,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3"
-7137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest"
-7138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start"
-7139,0,1076,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1"
-7140,0,1031,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2"
-7141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest"
-7142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start"
-7143,0,1160,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1"
-7144,0,1095,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2"
-7145,0,1176,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3"
-7146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest"
-7147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start"
-7148,0,1686,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1"
-7149,0,1023,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2"
-7150,0,1273,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3"
-7151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest"
-7152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - start"
-7153,0,1153,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1"
-7154,0,1152,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2"
-7155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest"
-7156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start"
-7157,0,1264,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1"
-7158,0,1065,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2"
-7159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest"
-
-7160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram"
-7161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
-7164,0,2076,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of deception"
-7165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of deception"
-7166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop"
-7167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
-7171,0,2077,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of delusion"
-7172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of delusion"
-7173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message to Halled from Paul"
-7174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th"
-7175,0,2078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunft for shadow of gaiety"
-7176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of Gaiety"
-7177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A young guy in Lighthalzen"
-7178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety"
-7179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vicente, you dare!"
-7180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Doomk"
-
-7181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karakas's ring"
-
-// El Dicastes
-7182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha's Visit"
-7183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation from Sapha"
-7184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To El Dicastes!"
-7185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspector Doha"
-7186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation"
-7187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Shay"
-7188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Plaza"
-7189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Factory"
-7190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - at the Guards"
-7191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shay's designation - BK"
-7192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"BK's Information"
-7193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Crack Investigation"
-7194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this bloodstain?"
-7195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this skin piece?"
-7196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this suspicious magic power?"
-7197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha Certifications?"
-7198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Audience with Ahat"
-7199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Ahat"
-7200,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's call"
-7201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removing traces"
-7202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof"
-7203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Final Report"
-7206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Day for Cheshire"
-7207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's Box"
-7208,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wait for Cheshire?"
-7209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Forget the box."
-7210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily delivery"
-
-// Misty Forest Labyrinth
-7211,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration"
-7212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loki's Search"
-7213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wandering Protector"
-
-// Paradise Gear Advanced Quests [Chilly]
-7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training"
-7215,0,1278,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 1"
-7216,0,1278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 2"
-7217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3"
-7218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete"
-7219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training"
-7220,0,1192,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 1"
-7221,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 2"
-7222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete"
-7223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training"
-7224,0,1619,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 1"
-7225,0,1620,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Removed"
-7226,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)"
-7227,0,1622,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)"
-7228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete"
-7229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training"
-7230,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 1"
-7231,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 2"
-7232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete"
-7233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training"
-7234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor"
-7235,0,1988,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 1"
-7236,0,1995,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 2"
-7237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete"
-7238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Easy)"
-7239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Normal)"
-7240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strengthening Equipment"
-7241,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands - Tomorrow"
-7242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play with the baby cat"
-7243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass"
-7244,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
-7245,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
-7246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-I'm coming now."
-7247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!"
-//7248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-7249,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Bang! See you next time"
-7250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?"
-7251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting"
-7252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting"
-7253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting"
-7254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting"
-7255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting"
-7256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting"
-7257,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!"
-7258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Painting completed"
-7259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team"
-7260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The origin of Bugs"
-7261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Table"
-7262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Mattress"
-7263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Grill"
-7264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Chef Nyas"
-7265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of Chef Nyas"
-7266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Declaration of Chef Nyas"
-7267,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Appointed time with Cleanyang"
-7268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!"
-7269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place"
-7270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
-7271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs"
-7272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Corner"
-7273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Locker"
-7274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Foothold"
-7275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
-7276,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Promise to deliver more food"
-7281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-7346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands"
-
-// Hall of Abyss
-7349,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vote"
-
-// Port Malaya
-7350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cautious Village"
-7351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button"
-7352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sailor Wants a Button"
-7353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man Wants a Button"
-7354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Young Man Wants a Button"
-7355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Merchant Wants a Button"
-7356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Kid Wants a Button"
-7357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button"
-7358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why do they want my Buttons?"
-7359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor"
-7360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man"
-7361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man"
-7362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant"
-7363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid"
-7364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man"
-7365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button-2"
-7366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1"
-7367,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2"
-7368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro"
-7369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo"
-7370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi"
-7371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon"
-7372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah"
-7373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel"
-7374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection for All"
-7375,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection Continues"
-7376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1"
-7377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2"
-7378,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades"
-7379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Peace Preacher"
-7380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection"
-7381,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High Demand on Spiritual Protection Material"
-7382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pedro"
-7383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Nardo"
-7384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pandoi"
-7385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Woeon"
-7386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Talah"
-7387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Romel"
-7388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maries's Child"
-7389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child"
-7390,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried about Maries's Child"
-7391,0,0,0,0,0,0,0,2316,6498,5000,0,0,0,0,0,0,"Jejeling and Jejellopy"
-7392,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Jejellopy Regularly"
-7393,0,2314,10,2311,10,0,0,0,0,0,0,0,0,0,0,0,"Shiny Silver Blade"
-7394,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Tomorrow"
-7395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghost on the Ferry Ship"
-7396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angry Soul on Ferry Ship"
-7397,0,0,0,0,0,0,0,2310,6510,3000,0,0,0,0,0,0,"Mumbaki Phong's Advice"
-7398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki"
-7399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soul Diwata's Story"
-7400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki of Port Malaya"
-7401,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"All Aboard for Perry Sailing"
-7402,0,0,0,0,0,0,0,2310,6510,3000,0,0,0,0,0,0,"Bouquet for Diwata"
-7403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stabilized Perry"
-7404,0,2316,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling"
-7405,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow"
-7406,0,0,0,0,0,0,0,2309,6507,5000,2313,6507,5000,2314,6507,5000,"Agree to Collecting Bones!"
-7407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Purified Bone"
-7408,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Come Back Tomorrow?"
-7409,0,2309,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cannot Meet Eyes with Him!"
-7410,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!"
-
-// Eclage
-7411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Fome's story"
-7412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Litrip's story"
-7413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Chiba's story"
-7414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage guard's message"
-7415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laphine's Chief of Staff"
-7416,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Waiting to meet"
-7417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's request"
-7418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 1"
-7419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 2"
-7420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 3"
-7421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"That's enough"
-7422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's gift"
-7423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 1"
-7424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 2"
-7425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 3"
-7426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 4"
-7427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"At times like this, face it straight on!"
-7428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yai of the wild"
-7429,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wild recent trend!"
-7430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliveryman that runs through space"
-7431,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A mailman never rests!"
-7432,0,2363,5,2364,5,0,0,0,0,0,0,0,0,0,0,0,"The troublemakers in the land of blooming flowers"
-7433,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Need constant guidance"
-
-// Twins and Scholar of Magics
-7434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's big brother"
-7435,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for reading the letter"
-7436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant the Scholar of Magics"
-7437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shenime's favor"
-7438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret sponsorship"
-7439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime"
-7440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Minuel's witness"
-7441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mail is here!"
-7442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The identity of the scholar of magics"
-7443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interfere with the research!"
-7444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Avant was researching"
-
-// Orb
-7445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant's back"
-7446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unfruitful conversation"
-7447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dilemma surrounding the Orb"
-7448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Something's not right"
-7449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Temptation toward the Orb"
-7450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orb's lighting room"
-7451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Betrayal"
-7452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the chief of staff!"
-7453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last of the chief of staff"
-
-// Academy 14.2
-7471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First time talking after being born"
-7472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First step towards a new world"
-7473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cool drink"
-7474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for treasure"
-7475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered the Airship"
-7476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered the Arena"
-7477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bridge to Prontera"
-7478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basic Medical Botany"
-7479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Friend or Foe?"
-7480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Regarding Thief job"
-7481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vicente's class"
-7482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vercassel's class"
-7483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Use the Thief Manual"
-7484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shop owner! Order to steal!"
-7485,0,1725,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Assassin! Use Envenom"
-7486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"With Lumin"
-7487,30,1725,4,0,0,0,0,0,0,0,0,0,0,0,0,0,"30 seconds duel"
-7488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trio set of Fire Elements"
-7489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Silent liquidation plan"
-7490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom soup calling memories"
-7491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get away to Paradise!"
-7492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invincible pumpkin knight"
-7493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle of 17 vs. 1"
-7494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cleanup of the mushroom farm"
-
-// WOE TE Mission
-7501,14400,2451,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"1 Suspicious Babe"
-7502,14400,2451,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"10 Suspicious Babes"
-7503,14400,2451,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"30 Suspicious Babes"
-7504,14400,1288,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destroy 1 Emperium"
-7505,14400,1288,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destroy 3 Emperiums"
-7506,14400,1288,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destroy 5 Emperiums"
-7507,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"10 Small Wooden Boxes"
-7508,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"20 Small Wooden Boxes"
-7509,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"30 Small Wooden Boxes"
-7510,14400,2450,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fight Off a Thief"
-7511,14400,2450,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fight Off 10 Thieves"
-7512,14400,2450,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fight Off 30 Thieves"
-7513,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"10 Paychecks"
-7514,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"20 Paychecks"
-7515,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"30 Paychecks"
-7516,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A break for Commercial Development"
-
-// Guild Occupy Quest
-7517,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Valkyrie Realm"
-7518,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Luina"
-7519,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Britoniah"
-7520,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Greenwood Lake"
-7521,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Nidabehl"
-7522,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Valfreyja"
-7523,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Gloria"
-7524,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Occupy Kafragaten"
-
-// Guild Dungeon Daily Quest
-7525,0,1300,50,1293,50,0,0,0,0,0,0,0,0,0,0,0,"Valkyrie Realm Challenge 1"
-7526,0,2284,30,2285,30,2286,30,0,0,0,0,0,0,0,0,0,"Valkyrie Realm Challenge 2"
-7527,0,2249,1,2250,1,0,0,0,0,0,0,0,0,0,0,0,"Valkyrie Realm Challenge 3"
-7528,0,1305,50,1303,50,0,0,0,0,0,0,0,0,0,0,0,"Luina Challenge 1"
-7529,0,1294,40,2133,50,0,0,0,0,0,0,0,0,0,0,0,"Luina Challenge 2"
-7530,0,2251,1,2252,1,0,0,0,0,0,0,0,0,0,0,0,"Luina Challenge 3"
-7531,0,1298,50,1291,50,0,0,0,0,0,0,0,0,0,0,0,"Britoniah Challenge 1"
-7532,0,2282,20,2283,20,2281,50,0,0,0,0,0,0,0,0,0,"Britoniah Challenge 2"
-7533,0,2255,1,2256,1,0,0,0,0,0,0,0,0,0,0,0,"Britoniah Challenge 3"
-7534,0,1311,50,1306,50,0,0,0,0,0,0,0,0,0,0,0,"Greenwood Lake Challenge 1"
-7535,0,1290,45,1301,20,1309,25,0,0,0,0,0,0,0,0,0,"Greenwood Lake Challenge 2"
-7536,0,2253,1,2254,1,0,0,0,0,0,0,0,0,0,0,0,"Greenwood Lake Challenge 3"
-7537,0,1978,50,1979,50,0,0,0,0,0,0,0,0,0,0,0,"Nidabehl Challenge 1"
-7538,0,1290,35,1301,35,0,0,0,0,0,0,0,0,0,0,0,"Nidabehl Challenge 2"
-7539,0,1974,50,1975,30,0,0,0,0,0,0,0,0,0,0,0,"Valfreyja Challenge 1"
-7540,0,1796,50,1797,20,0,0,0,0,0,0,0,0,0,0,0,"Valfreyja Challenge 2"
-7541,0,2415,30,2416,30,2417,30,0,0,0,0,0,0,0,0,0,"Gloria Challenge 1"
-7542,0,2419,30,2420,30,2418,30,0,0,0,0,0,0,0,0,0,"Gloria Challenge 2"
-7543,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Valkyrie Realm Challenge 1"
-7544,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Valkyrie Realm Challenge 2"
-7545,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Valkyrie Realm Challenge 3"
-7546,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Luina Challenge 1"
-7547,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Luina Challenge 2"
-7548,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Luina Challenge 3"
-7549,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Britoniah Challenge 1"
-7550,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Britoniah Challenge 2"
-7551,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Britoniah Challenge 3"
-7552,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Greenwood Lake Challenge 1"
-7553,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Greenwood Lake Challenge 2"
-7554,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Greenwood Lake Challenge 3"
-7555,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Nidabehl Challenge 1"
-7556,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Nidabehl Challenge 2"
-7557,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Valfreyja Challenge 1"
-7558,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Valfreyja Challenge 2"
-7559,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Gloria Challenge 1"
-7560,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Gloria Challenge 2"
-7561,0,2421,30,2422,30,2423,30,0,0,0,0,0,0,0,0,0,"Kafragaten Challenge 1"
-7562,0,2426,30,2427,30,2424,30,0,0,0,0,0,0,0,0,0,"Kafragaten Challenge 2"
-7563,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Kafragaten Challenge 1"
-7564,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Standby for Kafragaten Challenge 2"
-
-// Devil Tower Memorial
-7568,5400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore the tower"
-7569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Treat the injured"
-7570,0,2939,7,2940,7,2941,7,0,0,0,0,0,0,0,0,0,"Destroy the demons"
-7571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tower Expedition"
-7572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lucile...?"
-7573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Magic Swordman Thanatos"
-7574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower"
-7576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc castle seal"
-7577,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Space distortion"
-
-// Episode 14.3
-7578,0,3061,1,0,0,0,0,3061,6392,10000,0,0,0,0,0,0,"Rampaging Box"
-7579,0,3061,10,0,0,0,0,3061,6392,10000,0,0,0,0,0,0,"Collecting Bradiums"
-7580,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Every Day"
-7581,0,3039,1,3040,1,3041,1,0,0,0,0,0,0,0,0,0,"Eliminating Risks"
-7582,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily Cleaning"
-7583,0,0,0,0,0,0,0,3039,6708,10000,3040,6708,10000,3041,6708,10000,"Collecting Mana"
-7584,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unending Battle"
-
-// Episode 14.3 part 2 - End of morocc
-7593,0,3097,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Demon God Subjugation"
-7594,0,3091,1,3092,1,0,0,0,0,0,0,0,0,0,0,0,"Frost Spider and Fire Wolf"
-7595,0,3101,3,3102,3,3103,3,0,0,0,0,0,0,0,0,0,"Wandering Orb Magic"
-// 7596,0,0,0,0,0,0,0,3105,6713,10000,3106,6714,10000,0,0,0,"Qualifications of the Guests"
-7597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fall of the False God"
-7598,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Caged God"
-7599,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unending Hunt"
-7600,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Promising Tomorrow"
-
-// Episode 15.1 Verus City
-7606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Phantasmagorika Excavator Recruitment"
-7607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eden Group Leader"
-7608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Artnard Excavation Team 1"
-7609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Artnard Excavation Team 2"
-7610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Registered Excavator"
-7611,0,3154,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passage Cleaning"
-7612,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passage Cleaning - Down"
-7613,0,3155,15,3156,15,0,0,0,0,0,0,0,0,0,0,0,"Eliminating Risks"
-7614,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eliminating Risks - Down"
-7615,0,0,0,0,0,0,0,3154,6749,5000,3155,6749,5000,3156,6749,5000,"Core Collection"
-7616,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Core Collection - Down"
-7617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Turning In Excavation Report"
-7618,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporting the Results - Down"
-7619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Assisting the Excavation Team"
-7620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Young Blood?"
-7621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bottling the Energy"
-7622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good News!"
-7623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Artnard's Summon"
-7624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of a Delicacy"
-7625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Count On Me"
-7626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delicacy for Him"
-7627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Last Exploration"
-7628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Power Source"
-7629,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tomorrow for Tomorrow's Energy"
-
-// Episode 15.2 Atnad Excavator 2
-7641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Access Permitted"
-7642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore Research facilities"
-7643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Piece"
-7644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Record Player"
-7645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Piece of Memory Record"
-7646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play Memory Record"
-7647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report Memory Record"
-7648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memory Records of the Laboratories"
-7649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report Memory Record Content"
-7650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Memory Records of Research facilities"
-7651,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One Memory a Day"
-7652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Memory Records of Laboratories"
-7653,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One Memory a Day 2"
-7654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play Research facilities Memory Records"
-7655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play Laboratories Memory Records"
-7656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation of Rekenber"
-
-// Banquet Quests
-7681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation to Royal Banquet"
-7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Socializing Starts from an Eye Contact"
-7683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Visit the Heines"
-7684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Visit the Nerius"
-7685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Is the Next Thing on the Schedule ?"
-7686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyhill and Skia"
-7687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Participating in the Banquet"
-7688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Movement"
-7689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Nyhill"
-7690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where Is Nyhill?"
-7691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Waiting for the Ritual"
-7692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attend the Ritual"
-7693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Surprise Attack"
-7694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I'd Like to See that Too"
-7695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the Past Memories of the Royal Family"
-7696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's Next?"
-7697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation from the Nerius"
-7698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Heine Now"
-7699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Past"
-7700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Once More!"
-7701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Imir Heart"
-7702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prontera at the Time"
-7703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Who Knows the Truth"
-7705,0,3450,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hope You Cannot Let Go"
-7706,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nillem Is Not Almighty"
-
-// Lasagna Quests
-7711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Beginning"
-7712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where am I? Who am I??"
-7713,0,3495,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"First Battle!"
-7714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Refreshing Apple Juice"
-7715,0,0,0,0,0,0,0,3495,1081,5000,0,0,0,0,0,0,"Midding Box"
-7716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Village!"
-7717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Merchant's Kindness"
-7718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I'm used to this"
-7719,0,1078,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time to Digest"
-7720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Service Manual"
-7721,600,3496,3,3497,2,0,0,0,0,0,0,0,0,0,0,0,"Cat showoff contest"
-7722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"EMT"
-7723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The potential within"
-
-// Rockridge
-7790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rock Ridge, Land of Opportunities"
-7791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Problems in Rock Ridge"
-7792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Problems in Rock Ridge 2"
-7793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good News"
-7794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Expected Response"
-7795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Negotiation on the Railroad"
-7796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unexpected Arrest"
-7797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hear Me Out 1"
-7798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Perfectly Prime"
-7799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shawn McCurdy's Weapon 1"
-7800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shawn McCurdy's Weapon 2"
-7801,0,0,0,0,0,0,0,3742,25247,10000,0,0,0,0,0,0,"Shawn McCurdy's Weapon 3"
-7802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hear Me Out 2"
-7803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Happy for Broken Trust"
-7804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Location of the Ores"
-7805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Location of the Ores 2"
-7806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Location of the Ores 3"
-7807,0,3736,3,3737,3,3738,3,0,0,0,0,0,0,0,0,0,"Ace up Our Sleeve"
-7808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Case Solved"
-7809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Ores"
-
-8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quitting Job Change"
-8001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Guild Master!"
-8007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acceptance from the Guild Master"
-8008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin"
-8009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Applying for Job Change to Priest"
-8010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest"
-8017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection"
-8032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tarlock's Favor"
-8033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor"
-8034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor"
-8035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How the Airship Works"
-8036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hallen's Favor"
-8037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller"
-8038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller"
-8039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships"
-8044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Fiancee"
-8045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tips from Kaci"
-8046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Passengers list"
-8047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Favor"
-8048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eukran's Testimony"
-8049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor"
-8050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Danger coming on to Thierry"
-8051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Medicine"
-8052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor"
-8053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Postell"
-8054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Postell"
-8055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nursing Allen"
-8056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little something in return"
-8057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grumbling Manainne"
-8058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with El Schatt"
-8059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Perfitz"
-8060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stubborn El Schatt"
-8061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stories of the past"
-8062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne"
-8063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne's spirit"
-8064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
-8076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla"
-8089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone"
-8090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Manson"
-8091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jenny the gardener"
-8092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Market"
-8093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Message"
-8094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Double Crossed?"
-8095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Phobe"
-8096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone Found"
-8097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Informing Jenny"
-8098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Keeping the Secret"
-8099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vincent's Recommendation"
-8100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
-8106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Shendar's daughter"
-8107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Foreigner, Katinshuell"
-8109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent"
-8110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent"
-8111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring"
-8113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Katinshuell"
-8116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony"
-8117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring"
-8118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Mr. Shendar"
-8119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary"
-8120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell"
-8121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell"
-8122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's resting place"
-8123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayothaya's world famous dish, Tom Yum Goong"
-8127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip"
-8131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
-8132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
-8133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Song of the fox"
-8134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boy at the Northern Shrine"
-8135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fox Expelled"
-8136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gray Wolf's Warning"
-8137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Keymaker"
-8138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blacksmith's Request"
-8139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key"
-8140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Red Ring"
-8141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mashenka's Red Ring"
-8142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Marsh"
-8143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Flute's Voice"
-8144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryubaba's Confession"
-8145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried Mother's Request"
-8146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Lusalka"
-8147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved"
-8148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved"
-8149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Igor"
-8150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Igor's message"
-8151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Marozka's Cave"
-8152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Thread"
-8153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of mind and wisdom"
-8154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Keymaker"
-8155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor"
-8167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key"
-8168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Koshei, the Immortal"
-8169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-8170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-8171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water"
-
-8181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster"
-8182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Push Back Theory"
-8183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster"
-8184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Converter"
-8185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Change"
-8186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fire Elemental Change"
-8187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Earth Elemental Change"
-8188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wind Elemental Change"
-8189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Water Elemental Change"
-8190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Wink"
-8191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Advisor"
-8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor"
-8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor"
-8194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Drunken Advisor"
-8195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kind Canell"
-8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Tripartite Union's Feud"
-8197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Delivery"
-8198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"United Research Official's Favor"
-8200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen's Document Requests"
-8201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Document"
-8202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration"
-8203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration"
-8204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen"
-8205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researchers' Meeting"
-8207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne is not guilty."
-8208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne's Favor"
-8209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hue's Report"
-8210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official"
-8211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Order"
-8217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Message"
-8218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's order"
-8223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's order"
-8224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The clue"
-8225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Reasoning"
-8226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bankley's Death"
-8227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Return to Shurank"
-8228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture"
-8229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prontera Market Research"
-8235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture"
-8241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of Red Jewel"
-8242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of blue Jewel"
-8243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning new languages"
-8244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairies and Tree Giants"
-8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation"
-8246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation"
-8247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress"
-8248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress"
-8249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Compressing Information"
-8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Storage Gem"
-8251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Injection of Magic"
-8252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Handworked jewels"
-8253,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language translation device"
-
-8254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"with a light heart and body"
-8255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence"
-8256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence"
-8257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop"
-8258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop"
-8259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to a place for taking a practical technique test"
-8260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mission! Documents delivery"
-8261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!"
-8262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ranger master never again"
-
-8265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One time a one hour!"
-
-8266,0,1077,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting poison spore!"
-8267,0,1056,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting smokie!"
-8268,0,1033,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt elder wilow!"
-8269,0,1104,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt coco!"
-8270,0,1034,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog!"
-8271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toxic sprays delivery!"
-8272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a honey!"
-8273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a blanket!"
-8274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect bones!"
-8275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect feet!"
-8276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect scell!"
-8277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect tails!"
-8278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect cookies!"
-8279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect mustache!"
-
-9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Knight"
-9001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight"
-9002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight"
-9003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight"
-9006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight"
-9007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight"
-9008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Etiquette as a Knight"
-9009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight"
-9010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quality of reverence"
-9011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight"
-9012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glory of a Knight!"
-9013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard"
-9018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Certified as a Wizard!"
-9058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"O'Riley's Request"
-9059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Happy St. Patrick's Day"
-9117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9118,0,1109,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Deviruchi Hunt"
-9119,0,1291,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Wraith Dead Hunt"
-9120,0,1504,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Dullahan Hunt"
-9121,0,1379,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt"
-9122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse"
-9024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An errand boy from Einbroch"
-// kRO
-//9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Mouse"
-//9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Mouse : present conditions"
-// iRO/cRO
-9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Hydra"
-9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Hydra : present conditions"
-9030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-9031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-9032,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy"
-
-9155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown"
-9156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the Jaty Crown"
-9157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa"
-9158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(1)"
-9159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(2)"
-9161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(3)"
-9163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko"
-9164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(4)"
-9165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown"
-
-9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire"
-9168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest Window Check"
-9169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue"
-9170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue"
-9171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanting Items"
-9172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanted Items"
-9173,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial Timer Cooldown"
-
-9222,0,2327,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bangungot from Hospital 2F"
-9223,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Will there be Peace at the Hospital?"
-9224,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore Hospital 2F"
-
-9225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 1"
-9226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 2"
-9227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 3"
-9228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 4"
-9229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 5"
-9230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 6"
-9231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 7"
-9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 8"
-9233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 9"
-9234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 10"
-9235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 11"
-9236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 12"
-9237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 13"
-9238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 14"
-9239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 15"
-9240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes"
-9244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes"
-9248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes"
-9252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Observing Poppy"
-9253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messy bookshelf"
-9254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a damaged book"
-9255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a container for soda cans"
-9256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messed up table"
-9257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a foreign object"
-9258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Field examination results"
-9259,0,2363,5,2364,30,0,0,0,0,0,0,0,0,0,0,0,"Confirming Cruyan's statements"
-9260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survey investigation notes"
-9262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 16"
-
-// Academy 14.2
-9264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job change to Mage"
-9265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job change to Mage"
-9266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job change to Mage"
-9267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The way to be a strong Mage - 1"
-9268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The way to be a strong Mage - 2"
-9269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The way to be a strong Mage - 3"
-9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The way to be a strong Mage - 4"
-
-//Geffen Magic Tournament
-9284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stopping Geffen Gangsters"
-9285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Beating Geffen Gangsters"
-9286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stop Geffen Gangsters"
-9287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Defeating Geffen Gangsters"
-9288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Catch a Geffen thief"
-9289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get things back from the thief"
-9290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Participate in Magic competitions"
-9291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Participate in Magic competitions"
-9292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Participate in Magic competitions"
-9293,0,1106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Register in Magic Competition"
-9294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Registration Complete"
-9295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"1st match of the Tournament has started"
-9296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"2nd match of the Competition has started"
-9297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"3rd match of the Competition has started"
-9298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"4th match of the Competition has started"
-9299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"5th match of the Competition has started"
-9300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"6th match of the Competition has started"
-9301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"7th match of the Competition has started"
-9302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"8th match of the Competition has started"
-9303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"9th match of the Competition has started"
-9304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"10th match of the Competition has started"
-9305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"11th match of the Competition has started"
-9306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"12th match of the Competition has started"
-9307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Final match of the Competition has started"
-9308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Magic Competition Win~!"
-9309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Magic Tournament defeat"
-9310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encounter Iris"
-9311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encounter Chaos"
-9312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encounter Lydia"
-9313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encounter Fenrir"
-9314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encounter Loki"
-9315,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring the dimensional gap"
-9316,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Re-exploring the crack of spaces"
-
-// EP14.3 Morse's Cave
-9318,0,3000,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Hiding Morocc"
-9319,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Hiding Morocc Continues"
-
-//9327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//9334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-// Sarah Fenrir memorial
-9335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search for shards of Gigantes"
-9336,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Go back to Professor Bernhard"
-9337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wrapping up the Adventure"
-
-// Rockridge
-9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solved Anyway"
-9458,0,3743,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pipe Cleaning"
-9459,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Too Early for Pipe Cleaning"
-9460,0,0,0,0,0,0,0,3736,25260,5000,3737,25260,5000,3739,25260,5000,"Collecting Ore Fragments"
-9461,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enough Ores"
-
-10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Prontera Royal Court"
-10001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test"
-10002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Review"
-10003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instructions on what to do"
-10004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interim Report"
-10005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Eigen Ahrum"
-10006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Ernst"
-10007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Poe"
-10008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Peter"
-10009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Urugen"
-10010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Helmut"
-10011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Erich"
-10012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation of the two princes"
-10013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the unknown girl"
-10014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Peter"
-10015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test 15"
-10016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Guest from the Walter Family"
-10017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy"
-10018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Poe"
-10019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Peter"
-10020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Erich"
-10021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen"
-10022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut"
-10023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-"
-10024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-"
-10025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good-bye, dear!"
-10026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto"
-10034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search the knife"
-10035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver the knife"
-10036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Candy"
-10037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Crap Shells"
-10038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Conch"
-10039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Fish Tail"
-10040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-White Platter"
-10041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-?"
-10042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
-10043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
-10044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained"
-10045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained"
-10046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
-10047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
-10048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
-10049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
-10050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
-10051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
-10052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano"
-10053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot"
-10054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana"
-10055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Understanding the culture of Utan"
-10056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning Utan Language"
-10057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World"
-10079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10085,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10087,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-10089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
-
-10090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-10101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic"
-
-10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon"
-10103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Glast heim"
-10104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Juno"
-10105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of a clock tower"
-10106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of localizing "
-10107,0,1164,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Requiem"
-10108,0,1140,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Marduk"
-10109,0,1154,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Pasana"
-10110,0,1260,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Dark Frame"
-10111,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Evil druid"
-10112,0,1192,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Wraith"
-10113,0,1276,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast Heim - Raydric Archer"
-10114,0,1369,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Grand Peco"
-10115,0,1386,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - sleeper"
-10116,0,1372,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Goat"
-10117,0,1376,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Harpy"
-10118,0,1269,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock tower - Clock"
-10119,0,1199,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock tower - Punk"
-10120,0,1195,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock tower - Rideword"
-10121,0,1883,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Uzhas"
-10122,0,1404,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Miyabi Doll"
-10123,0,1516,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Mi Gao"
-
-11000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
-11009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's Request"
-11010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching the medicine"
-11011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medicine for two"
-11012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Makkie"
-11013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Plant Stem Powder"
-11014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The researcher's medicine"
-11015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siria's cure"
-11016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's story"
-11017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-11022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos"
-// iRO Event Quest
-//11023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1"
-//11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2"
-//11025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3"
-//11026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4"
-//11027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5"
-//11028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6"
-11029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.."
-11038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead"
-11044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
-11070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King"
-11084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings"
-11087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent"
-11091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies"
-11099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend"
-11100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend"
-11101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet"
-11104,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resting time"
-11105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilrion skin"
-
-11106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock"
-11113,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Until radering is functioning"
-
-11114,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet"
-11115,0,1009,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor"
-11116,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg"
-11117,0,1024,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm tail"
-11118,0,1014,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore"
-11119,0,1048,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control"
-11120,0,1055,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka"
-11121,0,1005,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar"
-11122,0,1019,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather"
-11123,0,1077,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore"
-11124,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet - Complete"
-11125,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor - Complete"
-11126,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete"
-11127,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete"
-11128,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore - Complete"
-11129,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control - Complete"
-11130,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka - Complete"
-11131,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete"
-11132,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather - Complete"
-11133,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete"
-
-11135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The sky, plane and travel sickness."
-11141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar"
-11142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fearful metalic sound"
-11143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos tower"
-11144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno manager : click"
-11145,0,1622,33,0,0,0,0,0,0,0,0,0,0,0,0,0,"I want to get the "
-11146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to ice tunnel..."
-11147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lared's dew"
-11148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toward Comodo with the bow"
-11149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..."
-11150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song"
-11152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to the quiet place!..."
-11153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing watch top"
-11154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I will remember the memories with you...."
-11155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"undefinable battler"
-11156,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"annoying homework"
-11157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helmes valley "
-11158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the way for meditation"
-
-11159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Brian"
-11160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of John"
-11161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Tyler"
-11162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Rose"
-11163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Bain"
-11164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Lash"
-11165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Brian"
-11166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to John"
-11167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Tyler"
-11168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Rose"
-11169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Bain"
-11170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Lash"
-11171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede"
-11174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage"
-11175,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage"
-11176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For my friends"
-
-// Mora
-11182,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Report"
-11183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Favor"
-11184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine"
-11185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef"
-11192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..."
-11193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sonya's Friend"
-11194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine"
-11195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..."
-11199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theo's Friend"
-11200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch"
-11201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef"
-11203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef"
-11204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..."
-11205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pauchon's Friend"
-11206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quick Delivery Yoneseu"
-11207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Very Heavy Burden"
-11208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daphne"
-
-// Malangdo
-11209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hardships of Thomas"
-11210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion"
-11221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits"
-11239,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits"
-11240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11243,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks"
-11244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly"
-11245,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly"
-
-// Academy 14.2
-11255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Otter Ssamsun"
-
-11284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-1"
-11285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-2"
-11286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-3"
-11287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-4"
-11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-5"
-11289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-6"
-11290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-7"
-11291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-8"
-11292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-9"
-11293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-10"
-11294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-11"
-11295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-12"
-11296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-13"
-11297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-14"
-11298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-15"
-11299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-16"
-11300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-17"
-11301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-18"
-11302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-19"
-11303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-20"
-11304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-21"
-11305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-22"
-11306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-23"
-11307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-24"
-11308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-25"
-11309,0,2327,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-26"
-
-11310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance"
-11311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance"
-11312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath"
-11315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing"
-11325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg"
-11333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed"
-11334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed"
-11335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-11336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-11337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy"
-
-// Academy 14.2
-11338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Subino"
-11339,0,1002,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The most delicious on earth"
-11340,0,1063,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrots are delicious!"
-11341,0,1007,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rolling Fabre's clothing"
-11342,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antidote Material~"
-11343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Alice"
-11344,0,1008,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Barrier!!"
-11345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Alice"
-11346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acolyte_damped creatures(LV.13)"
-11347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acolyte_soft bone(LV.18)"
-11348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acolyte_Solid bone(LV.23)"
-
-// Dimensional Travel Quest
-11349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Travel"
-11350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Travel"
-11351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Travel"
-11352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Travel"
-11353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Travel"
-11354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Specimen Collection"
-11355,0,3026,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Specimen Collection"
-11356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Specimen Collection"
-11357,0,3028,25,0,0,0,0,0,0,0,0,0,0,0,0,0,"Specimen Collection"
-11358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Specimen Collection"
-11359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antidote"
-11360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antidote"
-11361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antidote"
-11362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antidote"
-
-// Episode 15.1 To Phantasmagorika!
-11363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Phantasmagorika!"
-11364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Phantasmagorika!"
-11365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Phantasmagorika!"
-11366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Phantasmagorika!"
-11367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for the Traces"
-11376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Let the Specialists Handle It"
-11377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Act of Kindness"
-
-11378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trick or treat" // Halloween Event 2013
-
-// Episode 15.2 The Last Room Instance
-11379,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Final Room"
-11380,0,3254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Final Room"
-11381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-11389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vestige"
-
-// Banquet Quests
-11394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Call of the Royal Head Chef"
-11395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Geoborgs"
-11413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11419,0,0,0,0,0,0,0,3455,6935,3000,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why Should I Prepare for the Banquets?"
-11421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banquet: Unexpected Sauce"
-11422,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Complete Today's Sauce"
-11423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banquet: Griffin Barbecue"
-11424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banquet: Griffin Barbecue"
-11425,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Complete Today's Grilled Griffin"
-11426,0,0,0,0,0,0,0,3455,6935,3000,0,0,0,0,0,0,"Banquet: Washing 15 Dishes"
-11427,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Complete Today's Dish Collecting"
-11428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredient for the Sauce"
-11429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredient for the Sauce"
-11430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredient for the Sauce"
-11431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredient for the Sauce"
-
-// Lasagna Quests
-11435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-11444,0,0,0,0,0,0,0,3499,25045,5000,0,0,0,0,0,0,"Vigilante Corp"
-11445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigilante Corp"
-
-12000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An old friend"
-12001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz, Maku's old friend"
-12002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger of Friendship"
-12003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz's message"
-12004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maku's other friend"
-12005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein"
-12006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's lost item"
-12007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kazien"
-12008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researcher Garins"
-12009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed mission"
-12010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No entrance"
-12011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lyozien"
-12012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet Mr. Ahman"
-12013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery complete"
-12014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More missions"
-12015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghalstein"
-12016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sneaking into the Laboratory"
-12017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Membership approved"
-12018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the President"
-12019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The President's Mission"
-12020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member"
-12021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder"
-12022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder"
-12023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shinokas the researcher"
-12024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kafra Corporation Agent"
-12025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
-12028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurelle the traitor"
-12029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Engagement Ring"
-12030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Engagement Ring Found"
-12031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Annon"
-12032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Annon"
-12033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traces of blood"
-12034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Annon's side of the story"
-12035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holy Threads"
-12036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone Slate Message"
-12037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holier Threads"
-12038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger"
-12039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boonthom's Comrade"
-12040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal"
-12043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Slums"
-12044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 1"
-12045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 2"
-12046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 3"
-12047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 4"
-12048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 5"
-12049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 1 - Rogue"
-12050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 2 - Rogue"
-12051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 3 - Rogue"
-12052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 4 - Rogue"
-12053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 5 - Rogue"
-12054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 6 - Rogue"
-12055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin"
-12056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin"
-12057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Lab"
-12058,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Admission Restricted to the 102 Tower"
-12059,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Memory Time Limit"
-12060,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Fishing Closed"
-12061,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Concentration"
-12062,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Mining Closed"
-12070,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limited time for enter"
-12071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stamp a seal on the attendance book"
-12072,0,1034,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog"
-12073,0,1248,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Cruiser"
-12074,0,1070,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Kukre"
-12075,0,1686,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcbaby"
-12076,0,1023,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcwarroir"
-12077,0,1066,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt vadon"
-12078,0,1064,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Megalodon"
-12079,0,1144,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marse"
-12080,0,1067,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cornutus"
-12081,0,1151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Myst"
-12082,0,1074,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt shellfish"
-12083,0,1142,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marine sphere"
-12084,0,1158,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Phen"
-12085,0,1152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcskeleton"
-12086,0,1177,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Zenorc"
-12087,0,1041,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove mummy"
-12088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Accomplishing a request"
-
-12090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious guy"
-12091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just save the burning heart"
-12092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Long lasting story"
-12093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"the record the intelligence Lyoda left"
-12094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The damaged shield letter"
-12096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Karakas"
-12097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basic preparation"
-12098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of dungeon"
-12099,0,2014,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Root Cause"
-12100,0,1994,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Violent Winged Insect"
-12101,0,2013,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Work Interference"
-12102,0,1993,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Intelligent Snakes"
-12103,0,1992,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legendary Creature"
-12104,0,1987,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insects with an Appetite"
-12105,0,2024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Moving Rocks"
-12106,0,1995,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"A child on a flower"
-12107,0,2015,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Twisted Love"
-12108,0,1988,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Plant Removal"
-12109,0,1999,14,0,0,0,0,0,0,0,0,0,0,0,0,0,"Larva Extermination"
-12110,0,2016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Demon of Water"
-12111,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bird with ugly face"
-12117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Withered Flower"
-12118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Welcomed Mineral"
-12119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Valuable Textile"
-12120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Curious Meat"
-12121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials to Clear Snow"
-12122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Cooler Material"
-12123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Paint"
-12124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rare Valuable"
-12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armory Material"
-12126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Advanced Armory Material"
-12127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supervisor's Tool"
-12128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparation for Heating"
-12129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Food"
-12130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Useful Material"
-12131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction"
-12132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction 2"
-12133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decoration arrangement"
-12134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instant Receptacle"
-12135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Not enough medicine"
-12136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Honey robber"
-12137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tools for Experiment"
-12138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fine Gift Samples"
-12139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect for Taste!"
-12140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Courtesy for Regulars"
-12141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special Package"
-12142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Request"
-12143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Trend"
-12144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown Usage"
-12145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Other World Cuisine"
-12146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Filling in Cracks"
-12147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adhesive Material"
-12148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bait for Tatacho Hunting"
-12149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordmanship Practice"
-12150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pretty reddish vegetable"
-12151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of the pub owner"
-12152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tastes like home cooking"
-12153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hazardous plant when burnt"
-12154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unexpectedly Normal"
-12155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift with heart"
-12156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect personal appetite!"
-12157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resolution of the pub owner"
-12158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of the pub owner"
-12159,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Laponte"
-12160,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Kalipo"
-12161,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Pura"
-12162,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Tragis"
-12163,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Calyon"
-12164,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Moltuka"
-12165,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dizziness"
-12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tree Root Doc."
-12167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reptile Tongue Doc."
-12168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scorpion Tail Doc."
-12169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stem Doc."
-12170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pointed Scale Doc."
-12171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resin Doc."
-12172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spawn Doc."
-12173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jellopy Doc."
-12174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fish Tail Doc."
-12175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worm Peeling Doc."
-12176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gill Doc."
-12177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tooth of Bat Doc."
-12178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fluff Doc."
-12179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chrysalis Doc."
-12180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather of Birds Doc."
-12181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talon Document Doc."
-12182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Webfoot Doc."
-12183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Animal Skin Doc."
-12184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wolf Claw Doc."
-12185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom Spore Doc."
-12186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Fang Doc."
-12187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evil Horn Doc."
-12188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Powder of Butterfly Doc."
-12189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bill of Birds Doc."
-12190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake Scale Doc."
-12191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Doc."
-12192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Doc."
-12193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Doc."
-12194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decayed Nail Doc."
-12195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horrendous Mouth Doc."
-12196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tentacle Doc."
-12197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Doc."
-12198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Doc."
-12199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Doc."
-12200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Doc."
-12201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee Sting Doc."
-12202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grasshopper's Leg Doc."
-12203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Royal Jelly Doc."
-12204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yoyo Tail Doc."
-12205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solid Shell Doc."
-12206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yam Doc."
-12207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raccoon Leaf Doc."
-12208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snail's Shell Doc."
-12209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Doc."
-12210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bear's Footskin Doc."
-12211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather Doc."
-12212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Herb Doc."
-12213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrot Doc."
-12214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cactus Needle Doc."
-12215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stone Heart Doc."
-12216,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouty Jahbong"
-12217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt"
-12218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to make lava elixir"
-12219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to creat flame elixir"
-12220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create glaicer elixir"
-12221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create fossil elixir"
-12222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create storm elixir"
-
-// Mora Coin Daily Quests
-12225,0,2132,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pom Spider Hunting"
-12226,0,2133,4,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angra Mantis Hunting"
-12227,0,2134,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Parus Hunting"
-12228,0,2136,6,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Fatam Hunting"
-12229,0,2137,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Miming Hunting"
-12230,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Monster Hunt"
-12231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Collecting"
-12232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Collecting"
-12233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Collecting"
-12234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orcish Voucher Collecting"
-12235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Skeleton Bone Collecting"
-12236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memento Collecting"
-12237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Collecting"
-12238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Collecting"
-12239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Collecting"
-12240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Collecting"
-12241,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 1"
-12242,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 2"
-
-// Missing Person Quests
-12243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tajareu"
-12244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tokenizer"
-12245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mesile"
-12246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Noir"
-12247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Pajama God"
-12248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mendel"
-12249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Miles"
-12250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Kunmune"
-12251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Chayihokin"
-12252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tuale"
-12253,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Person Search Time Limit"
-
-// Malangdo Culverts
-12254,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Now it's cleaning"
-12255,0,2176,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea crab"
-12256,0,2175,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea squid"
-12257,0,2174,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Ancient crustacean"
-12258,0,2178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea shell"
-12259,0,2179,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient kukre"
-12260,0,2177,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea conch"
-12261,0,2182,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea horse"
-12262,0,2181,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sword fish"
-12263,0,2180,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sea god"
-12264,0,2183,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation anolian"
-12265,0,2184,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea mermaid"
-12266,0,2185,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt transformable kapha"
-12267,0,2188,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt weird coelacanth"
-12268,0,2187,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt dark coelacanth"
-12269,0,2190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cruel coelacanth"
-12270,0,2189,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation coelacanth"
-12271,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert single day service"
-12272,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert single day service"
-12273,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert weekly service"
-12274,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert weekly service"
-
-12278,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Bakonawa Lake..."
-12279,0,2322,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
-
-12280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A suspicious prisoner"
-12281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An unwanted favor"
-12282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gossip king Clever"
-12283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The rift researcher"
-12284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A cat merchant's source of information"
-12285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A way to calm down a cat"
-12286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information traded for some canned foods"
-12287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A weird experience"
-12288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A successful experience"
-12289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another visitation"
-12290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clever's historical documents"
-12291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden historical documents (?)"
-12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The unknown ones"
-12293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Figures in history"
-12294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of Eclage"
-12295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Error"
-12296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fun times with the reactor"
-12297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encountering Etran"
-12298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two wishes"
-12299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Robert"
-12300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Etran"
-12301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two remaining friends"
-
-// Academy 14.2
-12302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Salim Hamid"
-12303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Applicant for trader"
-12304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Introduction to merchantology"
-12305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"About the capability figure"
-12306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Experience of disounts"
-12307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Way to the Merchant"
-12308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removal of Worm Tails"
-12309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removal of Boa"
-12310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removal of Spore"
-12311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removal of Pirate Skeletons"
-12312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supplementary to the theory lesson"
-12313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"About stats"
-12314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"About skills"
-
-// Old Glast Heim
-12316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting Hugin"
-12317,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trace of Time Travel"
-12318,0,2475,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Corrupted Soul Hunt"
-12319,0,2476,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Amdarais Hunt"
-12320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time Traveler"
-12321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time Conqueror"
-12322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Space Distortion"
-
-// Faceworm's Nest
-12325,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Faceworm's Nest after-effects"
-12326,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The owner of old ring"
-12327,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The memory of old photo album"
-12328,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dol-Seoi's Sorrow"
-12329,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Keaton's Bracelet"
-
-// Horror Toy Factory - Ep 14.2
-12330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Skull-faced Girl"
-12331,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trail of Toy Factory"
-
-12334,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trace of Time Travel"
-12335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Space Distortion"
-//12336,0,3151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Corrupted Soul Hunt"
-//12337,0,3150,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Amdarais Soul Hunt"
-12338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time Traveler"
-12339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time Conqueror"
-12340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-12341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-12342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-12343,0,3169,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-12344,0,3170,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-12345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rebellion Job Change Quest"
-
-// Episode 15.2: Central Laboratory
-12346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Ancient Science"
-12347,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trace of Laboratory Access"
-
-12363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"?????? ?? ??"
-
-// Banquet Quests
-12369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Business Relation"
-
-// Rockridge
-12381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Continent's Food Supplier"
-12382,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Distributing Food"
-12383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sweet Potato Delivery"
-12384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meat Delivery"
-12385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrot Delivery"
-12386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banana Delivery"
-12387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pumpkin Delivery"
-12388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom Delivery"
-12389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guardian of Rock Ridge"
-12390,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Relieved for Now"
-12391,0,3736,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Buffaloes with Rifles"
-12392,0,3737,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Punishing the Red Masks"
-12393,0,3738,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eye Patch Desperadoes"
-12394,0,3739,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exterminate Gray Four-legged Beasts"
-12395,0,3787,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exterminate Swamp Arclouzes"
-12396,0,3788,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exterminate Brown Rats"
-12398,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"You're Good"
-12399,0,3747,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Heinous Criminals"
-12400,0,3748,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Heinous Criminals"
-12401,0,3749,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Heinous Criminals"
-12402,0,3740,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eliminate Dangerous Gas"
-12403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laborers of Rock Ridge"
-12404,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Are You Not Tired?"
-12405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maintain the Red Pipe"
-12406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maintain the Blue Pipe"
-12407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maintain the Yellow Pipe"
-12408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maintain the White Pipe"
-12409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pipes Maintained"
-12410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Contract with the Wealthy Merchant"
-12411,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Come Back Tomorrow"
-
-13000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering"
-13001,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering - Hold"
-
-// Eden 100-110
-13002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brigan collecting"
-13003,0,1267,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request"
-13004,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request timer"
-13005,0,1194,22,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request"
-13006,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request timer"
-13007,0,1206,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request"
-13008,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request timer"
-13009,0,1207,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request"
-13010,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request timer"
-13011,0,1310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request"
-13012,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request timer"
-13013,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request"
-13014,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request timer"
-13015,0,1994,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request"
-13016,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request timer"
-13017,0,1106,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request"
-13018,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request timer"
-13019,0,1775,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request"
-13020,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request timer"
-13021,0,1777,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request"
-13022,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request Timer"
-13023,0,1379,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request"
-13024,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request Timer"
-13025,0,1384,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flying Deleter Request"
-13026,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deleter Request Timer"
-13040,0,1505,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request"
-13041,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request Timer"
-13042,0,1148,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request"
-13043,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request Timer"
-13044,0,1098,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request"
-13045,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request Timer"
-13046,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request"
-13047,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer"
-13048,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request"
-13049,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer"
-
-13050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Laphine that loves the land"
-13051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The singing Laphine"
-13052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The watering Laphine"
-13053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The dancing Laphine"
-13054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The smiling Laphine"
-13055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"See if all the adventurers are safe"
-13056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporter Rossi"
-13057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer Euncheong"
-13058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Troublemaker New Oz"
-13059,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"End of project"
-13060,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Safety confirmation complete!"
-13061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support"
-13062,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support - complete"
-13063,0,2365,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off"
-13064,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off - complete"
-13065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting a souvenir"
-13066,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"This is enough for souvenirs"
-
-// Eden 111-120
-13067,0,1163,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research"
-13068,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research - timer"
-13069,0,1132,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research"
-13070,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research - timer"
-13071,0,1208,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research"
-13072,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research - timer"
-13073,0,1699,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research"
-13074,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research - timer"
-13075,0,1698,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research"
-13076,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research - timer"
-13077,0,1295,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research"
-13078,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research - timer"
-13079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research"
-13080,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research - Wait"
-13081,0,2015,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research"
-13082,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research - timer"
-13083,0,1988,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research"
-13084,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research - timer"
-13085,0,1993,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research"
-13086,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research - timer"
-13087,0,1999,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research"
-13088,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research - timer"
-13089,0,1992,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research"
-13090,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research - timer"
-13091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research"
-13092,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research - Wait"
-13093,0,1297,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research"
-13094,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research - timer"
-13095,0,1374,10,1370,10,1390,10,0,0,0,0,0,0,0,0,0,"Geffenia expedition"
-13096,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffenia expedition - Wait"
-13097,0,1677,30,1678,30,1679,30,0,0,0,0,0,0,0,0,0,"Juperos expedition"
-13098,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juperos expedition - Wait"
-13099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw"
-13100,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw - Wait"
-
-// Academy 14.2
-13101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The way of Taekwon"
-13102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spinning kick"
-13103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Breaking Willows"
-13104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Breaking Spores"
-13105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Breaking Zombies"
-13106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Breaking Skeletons"
-
-// Eden 121-130
-13107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search"
-13108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search"
-13109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search"
-13110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search"
-13111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Reporting results"
-13112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Reporting results"
-13113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nameless Island Search - Reporting results"
-13114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Reporting results"
-13115,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Wait"
-13116,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Wait"
-13117,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search - Wait"
-13118,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Wait"
-13119,0,1702,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution"
-13120,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution - Wait"
-13121,0,1703,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace"
-13122,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace - Wait"
-13123,0,1701,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter"
-13124,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter - Wait"
-13125,0,1700,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel"
-13126,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel - Wait"
-13127,0,1771,20,1772,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla"
-13128,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla - Wait"
-13129,0,1773,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin"
-13130,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin - Wait"
-13131,0,1769,20,1770,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio"
-13132,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio - Wait"
-13133,0,1865,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie"
-13134,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie - Wait"
-13135,0,1864,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter"
-13136,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter - Wait"
-13137,0,1867,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee"
-13138,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee - Wait"
-13139,0,1714,30,1717,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler"
-13140,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler - Wait"
-13141,0,1713,30,1716,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus"
-13142,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus - Wait"
-
-// Eden 131-140
-13143,0,1652,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story"
-13144,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story - Wait"
-13145,0,1654,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story"
-13146,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story - Wait"
-13147,0,1653,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story"
-13148,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story - Wait"
-13149,0,1656,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story"
-13150,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story - Wait"
-13151,0,1655,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story"
-13152,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story - Wait"
-13153,0,1657,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story"
-13154,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story - Wait"
-13155,0,1918,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1"
-13156,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1 - Wait"
-13157,0,1919,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2"
-13158,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2 - Wait"
-13159,0,1921,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3"
-13160,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3 - Wait"
-13161,0,2083,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story"
-13162,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story - Wait"
-13163,0,2084,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story"
-13164,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story - Wait"
-13165,0,2085,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story"
-13166,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story - Wait"
-13167,0,2086,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story"
-13168,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story - Wait"
-
-13181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmarish Jitterbug"
-13182,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmarish Jitterbug: Waiting"
-13183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmarish Jitterbug: Completed"
-13184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charleston Factory"
-13185,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charleston Factory - Hold"
-13186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charleston Factory - Complete"
-13187,0,3125,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deal with the Staff"
-13188,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deal with the Staff - Hold"
-
-// Episode 15.2 Krotzel's Request
-13195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan"
-13196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan"
-13197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan"
-13198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan : Krotzel's Request"
-13199,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Krotzel's Request - Complete"
-13200,0,3247,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan : Rookie's Request"
-13201,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rookie's Request - Complete"
-13202,0,3248,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan : Photo Journalist's Request"
-13203,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Photo Journalist's Request - Complete"
-13204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monthly Brigan : Grylls' Request"
-13205,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grylls' Request - Complete"
-
-14118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuhari's concern"
-14119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience"
-14120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 2"
-14121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 3"
-14122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for two"
-14123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuharu's favor"
-14125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Surveying the area"
-14126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie"
-14127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband"
-14128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Obtaining the research report"
-14131,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Analysis time"
-14133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another favor"
-14134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sharp Ms. Goatie"
-14135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Mr. Pompe"
-14136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A terrible scene in the field"
-14137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An interesting proposition"
-14138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The big corpse"
-14139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhuru"
-14140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhari"
-14141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredients for research"
-
-// Academy 14.2
-14142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Archer's town!"
-14143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Application for the Archer's job change"
-14144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Retest - Stats"
-14145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Archer Skills"
-14146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting training"
-14147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Retest - Skills"
-14148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the next step"
-14149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Listening to the 2nd job change"
-14150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the next step"
-14151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting training - Spoa"
-14152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting training - Creamy"
-14153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting training - Skeleton"
-14154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragrant herb mix"
-14155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crunchy salad"
-14156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anything shabushabu"
-14157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baked golden apple"
-14158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Presentation of the Archer manual"
-14159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Met with the PR staff"
-14160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Met with the PR staff"
-14161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of stats"
-14162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of skills"
-14163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Caught Spores"
-14164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Caught Creamy"
-14165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Caught Skeletons"
-
-//14254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//14291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-// Banquet Quests
-14469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look around the Walther Family"
-14470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of the Guardian Knight"
-14471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Royal Prison"
-14472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gourmet Bigfoot"
-14473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Veins"
-14474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Isenhonor"
-14475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Jurgen"
-14476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Levuiere and His Wife"
-14477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Is Going on?"
-14478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the Clue"
-14479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clean-up out of Apology"
-14480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conquer the Grease"
-14481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conquer the Mold"
-14482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conquer the Dirt of Devil"
-14483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report the Completion of the Clean-up"
-14484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"There Was a Furniture Delivery Man"
-14485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Am Upset"
-14486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Heard the Story"
-14487,0,0,0,0,0,0,0,1148,6927,3000,0,0,0,0,0,0,"Please Find the Token of Memory"
-14488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please Deliver My Love"
-14489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Have to Turn It Down"
-14490,0,0,0,0,0,0,0,1148,6927,3000,0,0,0,0,0,0,"My Love Once More"
-14491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Have to Turn It Down Again"
-14492,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"There Is a Silver Lining"
-14493,0,0,0,0,0,0,0,1148,6927,3000,0,0,0,0,0,0,"Today I Feel"
-14494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Have to Turn It Down Again"
-14495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wolf"
-14496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Isaac"
-14497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Wolf"
-14498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Which Rumor"
-14499,0,1310,33,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prove Yourself"
-14500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Complete checking out the book"
-14501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Wolf"
-14502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Isaac"
-14503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Wolf"
-14504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of Helmut"
-14505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I Won't go Back"
-14506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Things Turned out This Way"
-14507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Maximilian"
-14508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jewel and Cloth"
-14509,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Still Making It"
-14510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pink Petal-like Dress"
-14511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Beautiful Flower Decoration"
-14512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dress of the Night Sky"
-14513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shawl of the Blazing Sun"
-14514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Step of the Fairy"
-14515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sparkling Star"
-14516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Shadow"
-
-// Lasagna Quests
-14531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Everything about Con-Chliina"
-14532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Greetings to Captain Gamberi"
-14533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Say hi to recorder"
-14534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the kitchen"
-14535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Purser"
-14536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Chef"
-14537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"When do we take off?"
-14538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Can we take off?"
-14539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crazy Dragon"
-14540,0,0,0,0,0,0,0,3502,25049,5000,0,0,0,0,0,0,"An errand out of nowhere"
-14541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No news is not a good news"
-14542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How is the Dragon"
-14543,0,3502,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basilisk Hunt"
-14544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Now I can leave"
-14545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Purser"
-14546,0,3496,5,3497,5,0,0,0,0,0,0,0,0,0,0,0,"Take care of grass thief"
-14547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Can we set out the sailing?"
-14548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crazy Dragon"
-14549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No news is not a good news"
-14550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How is the Dragon"
-14551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chief Basilisk"
-14552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lord Imuk's message"
-14553,0,3504,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basilisk Hunt"
-14554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"We can start sail now"
-14555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whole new world of taste"
-14556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"There also is a scary thing for me"
-14557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Truth is alway harsh"
-14558,0,0,0,0,0,0,0,3503,25049,5000,0,0,0,0,0,0,"Dirty Creatures"
-14559,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charm Effect Duration"
-14560,0,0,0,0,0,0,0,3503,25049,5000,0,0,0,0,0,0,"New Ingredient"
-14561,0,0,0,0,0,0,0,3503,25049,5000,0,0,0,0,0,0,"Dirty and Filty"
-14562,0,0,0,0,0,0,0,3503,25049,5000,0,0,0,0,0,0,"The basic are the best"
-14563,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Free time"
-14565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Emergency food supplies"
-14566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brilliant idea"
-14567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kaluna milk is in Danger!"
-14568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time to persuade"
-14569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Babysitter"
-14570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Processing Anchovy"
-14571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anchovy fishing ship"
-14572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helpless..."
-14573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I need the time on my own"
-14574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meal Box Delivery"
-14575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery Complete Report"
-14576,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meal Box Delivery Time"
-14579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with Captain"
-14580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Recorder"
-14581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Chief"
-14582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Recorder"
-14583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Granma"
-14584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Recorder"
-14588,0,3498,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Competition"
-14589,0,3499,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky ingredient"
-14590,0,3500,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunter's destination"
-14591,0,3501,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Ingredient"
-14592,04:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resting Time"
-
-// Rock Ridge
-14672,0,3740,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparing for the Firework Festival"
-14673,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time to Make Bombs"
-
-// A Bed Of Honor
-14683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Device"
-14684,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Device"
-14685,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Device"
-14686,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Device"
-14687,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Device"
-
-// Academy 14.2
-15000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Experiencing abnormal statuses"
-15001,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hold your breath"
-
-// Heroes' Trail Part 1 - Sara's Memory
-15002,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial dungeon: Sara's Memory"
-15003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer leon"
-
-// Episode 14.3: Isle of Bios
-15005,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Isle of Bios"
-15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Isle of Bios Exploration"
-15007,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Isle of Bios"
-15008,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Isle of Bios"
-//15025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-//15045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""
-
-// Episode 15.1 : Airship Assault instance
-15050,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Airship Assault"
-15051,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Airship Assault"
-// 15052,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon: Airship Assault"
-
-// 2013 Christmas Event
-15055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : We are the great Single Union Army!"
-15056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Declare war against couples!"
-15057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Prepare the festival!"
-15059,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Cooldown Timer"
-15060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Kwami has joined"
-15061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Willer has joined"
-15062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Rinka has joined"
-15063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Jee has joined"
-15064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Marty has joined"
-
-16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Metz Brayde's Notice"
-16001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First examination"
-16002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -1"
-16003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -2"
-16004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -3"
-16005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -4"
-16006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -5"
-16007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -6"
-16008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!"
-16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!"
-16010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daewoon's Test"
-16011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Test"
-16012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Materials"
-16013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage"
-16014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage"
-16015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lady Jesqurienne"
-16016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge"
-16017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed Quiz Challenge"
-16018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz Challenge Triumph"
-16019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search for Dearles"
-16020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test"
-16021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of Appreciation"
-16022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test Part Two"
-16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rhythm Test Passed"
-16024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Bakerlan"
-16025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's delivery"
-16026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mahatra's delivery"
-16027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's Receipt"
-16028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Seylin"
-16029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Medicine"
-16030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients"
-16031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients"
-16032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seylin's Request"
-16033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Seylin"
-16034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Mahatra"
-16035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Bakerlan"
-16036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last Crumb"
-16037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Engel Howard"
-16038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Liana's Letter"
-16039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight"
-16040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Letter to Engel's Family"
-16041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talk to Liana"
-16042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sobbing Starlight Progress"
-16043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restored Sobbing Starlight"
-16044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight"
-16045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Starlight message"
-16046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The man in Umbala"
-16047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the Tree"
-16048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Papers"
-16049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Record of Ancient Language"
-16050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Fastidious Old Man"
-16051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blurry Vision"
-16052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translating the Document"
-16053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translated Ancient Language"
-16054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where the rejected live"
-16055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removed Curse"
-16057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the witch"
-16058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow"
-16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow"
-16060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard in Niflheim"
-16062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gen of Niflheim"
-16063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Witch's Aid"
-16064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
-16065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Queen's Symbol"
-16066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of the Symbol"
-16067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of Asgard"
-16068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces"
-16073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agrboda's Soul"
-16074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Symbol of the Nine Realms"
-16075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions"
-16076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Witch's Tonic"
-16077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Release"
-
-// Rock Ridge
-16078,0,3739,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Peace of the Family"
-16079,4:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back for More Coyotes Tomorrow"
-16080,0,3739,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Coyotes Again"
-16081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed to Get Juice Mix Package"
-16082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Wasteland Cactuten"
-16084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Coyote"
-16086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Cactus Girl"
-16088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Coyote"
-16089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-16095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Discovered Suspicious Sand Pile"
-
-16101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious World Map"
-16118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden poem"
-16119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake swords"
-16120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A dream?"
-16121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Code?"
-16122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Copper Key"
-16123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Green Keycard"
-16124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Steel Box"
-16125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy"
-16200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limberg's Request"
-16201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report"
-16204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crack in the Wall"
-16205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Empty Lava Tube"
-17000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Father Bamph"
-17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Larjes"
-17002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Father Bamph"
-17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Rachel"
-17004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Veins"
-17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frustrated Magistrate"
-17006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interrogated Smugglers"
-17007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Written Orders"
-17008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating"
-17009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More Investigating"
-17010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Further Investigations"
-17011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurdi's Father"
-17012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karyn's Boat"
-17013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Island"
-17014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating the Island"
-17015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Research Note"
-17016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Regicide"
-17017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporting the King's Death"
-
-18001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney"
-18004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lasda's Request"
-18005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesse's Request"
-18006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Approval"
-18007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust"
-18008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust"
-18009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the prison"
-18010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work"
-18017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break"
-18019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs"
-18023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre the Spy"
-18030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse"
-18060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail"
-18061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mikhail's Whereabouts"
-18062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail"
-18063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The isolated swamp"
-18064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the Village"
-18065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High-strength Adhesive"
-18066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the swamp"
-18067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the paste"
-18068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fixing the Matrushka"
-18069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Gallina"
-18070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banishing Winter"
-18071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust"
-18072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust"
-18073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dragon's Lair"
-18074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Magic Gourd Bottle"
-18075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech"
-18076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech"
-18077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Csar's Request"
-18078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine"
-18079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Winter is Banished"
-18100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legends from Moscovia"
-18101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island"
-18102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island"
-18103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island"
-18104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend"
-18105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing Charabel"
-18106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"As the Tide Turns"
-18107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing"
-18108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island?"
-18109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island???"
-18110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Aged Stranger"
-18111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!"
-18112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Story for the Csar"
-18113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evidence for the Csar"
-18114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Before Sunset"
-18115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing"
-18116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!"
-18117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials for Evidence"
-18118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Musical Instrument"
-18119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli"
-18120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli"
-18121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shafka"
-19101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-19129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion"
-
-21001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape the Wreck"
-21002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The first battle"
-21008,0,0,0,0,0,0,0,2401,6008,10000,0,0,0,0,0,0,"The first battle"
-
-50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pirate Dagger materials"
-50001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weather Beaten Old Man"
-50002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?"
-50003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?"
-50004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure"
-50010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A special lock pick"
-50011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The special lock pick"
-50012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Use the lock pick"
-50013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Broken lock pick"
-50015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box"
-50021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger"
-50022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger's key materials"
-50023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with J Roger"
-50024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure"
-50027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Buried treasure"
-50028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen treasure!"
-50029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Pirate's Spirit!"
-
-//60000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"60000"
-60001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination"
-60007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect"
-60008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit"
-60009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc Hero"
-60010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Request"
-60011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Byalan"
-60012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Abyss"
-60013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
-60018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
-60022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
-60026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Continuing the Investigation"
-60027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating Aldebaran"
-60028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lutie Field Monster Investigation"
-60033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
-60038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
-60039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation"
-60042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim"
-60055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
-60058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Brother"
-60059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A history lesson"
-60060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crown of Deceit"
-60061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A magic solvent"
-60062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rendering the crown Inert"
-60101,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60102,0,1019,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60103,0,1019,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos"
-60104,0,1127,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60105,0,1127,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60106,0,1127,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes"
-60107,0,1007,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60108,0,1007,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60109,0,1007,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres"
-60110,0,1008,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60111,0,1008,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60112,0,1008,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa"
-60113,0,1104,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60114,0,1104,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60115,0,1104,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos"
-60116,0,1103,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60117,0,1103,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60118,0,1103,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels"
-60119,0,1271,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60120,0,1271,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60121,0,1271,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators"
-60122,0,1018,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60123,0,1018,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60124,0,1018,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys"
-60125,0,1378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60126,0,1378,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60127,0,1378,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus"
-60128,0,1110,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60129,0,1110,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60130,0,1110,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi"
-60131,0,1493,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60132,0,1493,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60133,0,1493,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads"
-60134,0,1119,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60135,0,1119,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60136,0,1119,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora"
-60137,0,1372,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60138,0,1372,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60139,0,1372,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats"
-60140,0,1040,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60141,0,1040,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60142,0,1040,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems"
-60143,0,1586,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60144,0,1586,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60145,0,1586,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats"
-60146,0,1076,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60147,0,1076,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60148,0,1076,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons"
-60149,0,1026,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60150,0,1026,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60151,0,1026,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks"
-60152,0,1170,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60153,0,1170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60154,0,1170,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees"
-60155,0,1403,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60156,0,1403,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60157,0,1403,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers"
-60158,0,1405,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60159,0,1405,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60160,0,1405,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus"
-60161,0,1675,25,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60162,0,1675,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60163,0,1675,75,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu"
-60164,0,1668,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60165,0,1668,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60166,0,1668,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam"
-60167,0,1776,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas"
-60168,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas"
-60169,0,1776,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siroma"
-60170,0,1777,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60171,0,1777,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60172,0,1777,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans"
-60173,0,1506,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60174,0,1506,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60175,0,1506,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises"
-60176,0,1505,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60177,0,1505,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60178,0,1505,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri"
-60179,0,1139,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60180,0,1139,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60181,0,1139,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis"
-60182,0,1514,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60183,0,1514,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60184,0,1514,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons"
-60185,0,1870,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60186,0,1870,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60187,0,1870,60,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers"
-60188,0,1365,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-60189,0,1365,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-60190,0,1365,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse"
-
-60200,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect"
-60201,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit"
-60211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp"
-60301,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60302,0,1155,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60303,0,1714,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60304,0,1714,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60305,0,1717,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60306,0,1717,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60307,0,1713,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60308,0,1713,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60309,0,1716,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-60310,0,1716,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting"
-
-// iRO expanded upon the log entries of this quest.
-60351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-60355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost"
-
-62238,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Midgardian Mercenary timer"
diff --git a/db/re/quest_db.yml b/db/re/quest_db.yml
new file mode 100644
index 0000000000..141b54b3d9
--- /dev/null
+++ b/db/re/quest_db.yml
@@ -0,0 +1,9906 @@
+# 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 .
+#
+###########################################################################
+# Quest Database
+###########################################################################
+#
+# Quest Settings
+#
+###########################################################################
+# - Id Quest ID.
+# Title Quest title.
+# 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" (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.
+# If Mob is supplied, Count is required and the other fields are ignored.
+# If Id is supplied, at least one other field of Race/Size/Element/MinLevel/MaxLevel is required.
+# If Id is supplied, Count is required for each new entry.
+# - 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). 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.
+# Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1)
+# Rate Item drop rate. (10000 = 100%)
+###########################################################################
+
+Header:
+ Type: QUEST_DB
+ Version: 2
+
+Body:
+ - Id: 1000
+ Title: Transcend
+ - Id: 1001
+ Title: Job Change to Acolyte
+ - Id: 1002
+ Title: Job Change to Acolyte
+ - Id: 1003
+ Title: Job Change to Acolyte
+ - Id: 1004
+ Title: Job Change to Archer
+ - Id: 1005
+ Title: Job Change to Mage
+ - Id: 1006
+ Title: Job Change to Mage
+ - Id: 1007
+ Title: Job Change to Mage
+ - Id: 1008
+ Title: Job Change to Mage
+ - Id: 1009
+ Title: Job Change to Merchant
+ - Id: 1010
+ Title: Job Change to Merchant
+ - Id: 1011
+ Title: Job Change to Merchant
+ - Id: 1012
+ Title: Job Change to Merchant
+ - Id: 1013
+ Title: Job Change to Thief
+ - Id: 1014
+ Title: Job Change to Swordman
+ - Id: 1015
+ Title: Your first quest
+ - Id: 1016
+ Title: Gaining base levels
+ - Id: 1100
+ Title: Solo in the Sphinx Dungeon!
+ Targets:
+ - Mob: ZEROM
+ Count: 20
+ - Id: 1101
+ Title: Soloing Sphinx Dungeon!
+ Targets:
+ - Mob: REQUIEM
+ Count: 20
+ - Id: 1102
+ Title: Soloing Clock Tower!
+ Targets:
+ - Mob: ARCLOUSE
+ Count: 40
+ - Id: 1103
+ Title: Soloing Clock Tower!
+ Targets:
+ - Mob: HIGH_ORC
+ Count: 30
+ - Id: 1104
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CHUNG_E
+ Count: 20
+ - Id: 1105
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CIVIL_SERVANT
+ Count: 50
+ - Id: 1106
+ Title: Solo at Amatsu Dungeon!
+ Targets:
+ - Mob: THE_PAPER
+ Count: 20
+ - Id: 1107
+ Title: Solo at Amatsu Dungeon!
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 40
+ - Id: 1108
+ Title: Solo at Luoyang!
+ Targets:
+ - Mob: CHUNG_E_
+ Count: 20
+ - Id: 1109
+ Title: Ropewa & Yuridi - Survivors of the Labyrinth
+ - Id: 1110
+ Title: Ropewa & Yuridi - Victims of the Labyrinth
+ - Id: 1111
+ Title: Ropewa & Yuridi - Maze in the Labyrinth
+ - Id: 1112
+ Title: Ropewa & Yuridi - Lost in the Labyrinth
+ - Id: 1113
+ Title: Ropewa & Yuridi - Torn Apart
+ - Id: 1114
+ Title: Ropewa & Yuridi - The Cost of Restoration
+ - Id: 1115
+ Title: Ropewa & Yuridi - Song of the Abyss
+ - Id: 1116
+ Title: Ropewa & Yuridi - Dead Man's Song
+ - Id: 1117
+ Title: Ropewa & Yuridi - Eternal Promise, Broken Ring
+ - Id: 1118
+ Title: Neighborhood Knight - I Need Clues
+ - Id: 1119
+ Title: Neighborhood Knight - Cooldown
+ TimeLimit: +23h
+ - Id: 1145
+ Title: Help the poor cat
+ - Id: 1146
+ Title: Help the poor cat
+ - Id: 1147
+ Title: Help the poor cat
+ - Id: 1148
+ Title: Help the poor cat
+ - Id: 1149
+ Title: Help the poor cat
+ - Id: 1150
+ Title: Help the poor cat
+ - Id: 1151
+ Title: Help the poor cat
+ - Id: 1152
+ Title: Help the poor cat
+ TimeLimit: +23h
+ - Id: 1153
+ Title: Help the poor cat
+ - Id: 1154
+ Title: Help the poor cat
+ Targets:
+ - Mob: RED_ERUMA
+ Count: 20
+ - Id: 1155
+ Title: Help the poor cat
+ - Id: 1174
+ Title: Rumor, Time and Legend
+ - Id: 1175
+ Title: Rumor, Time and Legend
+ - Id: 1176
+ Title: Rumor, Time and Legend
+ - Id: 1177
+ Title: Rumor, Time and Legend
+ - Id: 1178
+ Title: Rumor, Time and Legend
+ - Id: 1179
+ Title: Rumor, Time and Legend
+ - Id: 1180
+ Title: Get Rid of Bakonawa
+ Drops:
+ - Mob: TIYANAK
+ Item: Lost_Belongings
+ Rate: 3000
+ - Id: 1181
+ Title: Get Rid of Bakonawa
+ Drops:
+ - Mob: TIYANAK
+ Item: Lost_Belongings
+ Rate: 3000
+ - Id: 1182
+ Title: Get Rid of Bakonawa
+ Drops:
+ - Mob: TIYANAK
+ Item: Lost_Belongings
+ Rate: 3000
+ - Id: 1183
+ Title: Get Rid of Bakonawa
+ Drops:
+ - Mob: TIYANAK
+ Item: Lost_Belongings
+ Rate: 3000
+ - Id: 1184
+ Title: Get Rid of Bakonawa
+ - Id: 1185
+ Title: Get Rid of Bakonawa
+ - Id: 1186
+ Title: Get Rid of Bakonawa
+ Targets:
+ - Mob: TIKBALANG
+ Count: 15
+ - Id: 1187
+ Title: Get Rid of Bakonawa
+ - Id: 1188
+ Title: Get Rid of Bakonawa
+ - Id: 1189
+ Title: Get Rid of Bakonawa
+ - Id: 1190
+ Title: Get Rid of Bakonawa
+ - Id: 1191
+ Title: Get Rid of Bakonawa
+ - Id: 1192
+ Title: Get Rid of Bakonawa
+ - Id: 1193
+ Title: Get Rid of Bakonawa
+ - Id: 1194
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1195
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1196
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1197
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1198
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1199
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1200
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1201
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1202
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1203
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1204
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1205
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1206
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1207
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1208
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1209
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1210
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1211
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1212
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1213
+ Title: Look out the window, Cheers for Raccoon Hurray team!
+ - Id: 1214
+ Title: Getting back Professor Worm's memory
+ - Id: 1215
+ Title: Getting back Professor Worm's memory
+ - Id: 1216
+ Title: Getting back Professor Worm's memory
+ Drops:
+ - Mob: PETAL
+ Item: Star_Shape_Mushroom
+ Rate: 3000
+ - Id: 1217
+ Title: Getting back Professor Worm's memory
+ - Id: 1218
+ Title: Getting back Professor Worm's memory
+ - Id: 1219
+ Title: Getting back Professor Worm's memory
+ - Id: 1220
+ Title: Getting back Professor Worm's memory
+ - Id: 1221
+ Title: Getting back Professor Worm's memory
+ - Id: 1222
+ Title: Getting back Professor Worm's memory
+ - Id: 1223
+ Title: Getting back Professor Worm's memory
+ - Id: 1224
+ Title: Getting back Professor Worm's memory
+ - Id: 1225
+ Title: Getting back Professor Worm's memory
+ Targets:
+ - Mob: LICHTERN_B
+ Count: 15
+ - Id: 1226
+ Title: Getting back Professor Worm's memory
+ - Id: 1227
+ Title: Getting back Professor Worm's memory
+ Drops:
+ - Mob: PETAL
+ Item: Star_Shape_Mushroom
+ Rate: 3000
+ - Id: 1228
+ Title: Getting back Professor Worm's memory
+ - Id: 1229
+ Title: Swordsman training
+ - Id: 1230
+ Title: Swordsman training
+ - Id: 1233
+ Title: Swordsman training
+ - Id: 1234
+ Title: Swordsman training
+ - Id: 1235
+ Title: Swordsman training
+ - Id: 1236
+ Title: Swordsman training
+ - Id: 1237
+ Title: Shop guide
+ - Id: 1238
+ Title: Shop guide
+ - Id: 1239
+ Title: Shop guide
+ - Id: 1240
+ Title: Shop guide
+ - Id: 1261
+ Title: Cursed Swordman
+ TimeLimit: +23h
+ - Id: 1263
+ Title: Cursed Swordman
+ - Id: 1264
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1265
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1266
+ Title: Flaming Basin and Doom Prayers
+ Drops:
+ - Mob: FIRE_SAND_MAN
+ Item: PatrolLog
+ Rate: 2000
+ - Id: 1267
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1268
+ Title: Flaming Basin and Doom Prayers
+ Targets:
+ - Mob: FIRE_SAND_MAN
+ Count: 20
+ - Id: 1269
+ Title: Flaming Basin and Doom Prayers
+ Targets:
+ - Mob: FIRE_FRILLDORA
+ Count: 20
+ - Id: 1270
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1271
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1272
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1273
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1274
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1275
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1297
+ Title: Flaming Basin and Doom Prayers
+ - Id: 1298
+ Title: Gas! Gas!
+ Targets:
+ - Mob: GASTER
+ Count: 20
+ - Id: 1299
+ Title: Patrol Once a Day
+ TimeLimit: 4h
+ - Id: 1321
+ Title: Spotty and Her Ring
+ - Id: 1322
+ Title: Found Something
+ - Id: 1323
+ Title: Spotty, No!
+ - Id: 1324
+ Title: Spotty, No!
+ - Id: 1325
+ Title: Spotty, No!
+ - Id: 1326
+ Title: Spotty, No!
+ - Id: 1327
+ Title: Spotty, No!
+ - Id: 1328
+ Title: Found Missing Items
+ - Id: 1329
+ Title: Spotty in the Dreamland
+ TimeLimit: 4h
+ - Id: 1330
+ Title: Spotty's Holes
+ - Id: 1331
+ Title: Avenging Spotty
+ Targets:
+ - Mob: COWRAIDERS1
+ Count: 3
+ - Mob: COWRAIDERS2
+ Count: 3
+ - Mob: COWRAIDERS3
+ Count: 3
+ - Id: 1332
+ Title: Blood for Blood
+ TimeLimit: 4h
+ - Id: 2000
+ Title: Job Change to Blacksmith
+ - Id: 2001
+ Title: Job Change to Blacksmith
+ - Id: 2002
+ Title: Job Change to Blacksmith
+ - Id: 2003
+ Title: Job Change to Blacksmith
+ - Id: 2004
+ Title: Job Change to Blacksmith
+ - Id: 2005
+ Title: Job Change to Blacksmith
+ - Id: 2006
+ Title: Job Change to Blacksmith
+ - Id: 2007
+ Title: Job Change to Blacksmith
+ - Id: 2008
+ Title: Job Change to Blacksmith
+ - Id: 2009
+ Title: Job Change to Blacksmith
+ - Id: 2010
+ Title: Job Change to Blacksmith
+ - Id: 2011
+ Title: Job Change to Blacksmith
+ - Id: 2012
+ Title: Job Change to Blacksmith
+ - Id: 2013
+ Title: Job Change to Blacksmith
+ - Id: 2014
+ Title: Job Change to Blacksmith
+ - Id: 2015
+ Title: Job Change to Blacksmith
+ - Id: 2016
+ Title: Job Change to Blacksmith
+ - Id: 2017
+ Title: Job Change to Rogue
+ - Id: 2018
+ Title: Job Change to Rogue
+ - Id: 2019
+ Title: Job Change to Rogue
+ - Id: 2020
+ Title: Job Change to Rogue
+ - Id: 2021
+ Title: Job Change to Rogue
+ - Id: 2022
+ Title: Job Change to Rogue
+ - Id: 2023
+ Title: Job Change to Rogue
+ - Id: 2024
+ Title: Job Change to Rogue
+ - Id: 2025
+ Title: Job Change to Rogue
+ - Id: 2026
+ Title: Job Change to Rogue
+ - Id: 2027
+ Title: Job Change to Rogue
+ - Id: 2028
+ Title: Job Change to Alchemist
+ - Id: 2029
+ Title: Job Change to Alchemist
+ - Id: 2030
+ Title: Job Change to Alchemist
+ - Id: 2031
+ Title: Job Change to Alchemist
+ - Id: 2032
+ Title: Job Change to Alchemist
+ - Id: 2033
+ Title: Job Change to Alchemist
+ - Id: 2034
+ Title: Job Change to Alchemist
+ - Id: 2035
+ Title: Job Change to Alchemist
+ - Id: 2036
+ Title: Job Change to Alchemist
+ - Id: 2037
+ Title: Job Change to Alchemist
+ - Id: 2038
+ Title: Job Change to Alchemist
+ - Id: 2039
+ Title: Job Change to Alchemist
+ - Id: 2040
+ Title: Job Change to Alchemist
+ - Id: 2041
+ Title: Job Change to Sage
+ - Id: 2042
+ Title: Job Change to Sage
+ - Id: 2043
+ Title: Job Change to Sage
+ - Id: 2044
+ Title: Job Change to Sage
+ - Id: 2045
+ Title: Job Change to Sage
+ - Id: 2046
+ Title: Job Change to Sage
+ - Id: 2047
+ Title: Job Change to Sage
+ - Id: 2048
+ Title: Job Change to Sage
+ - Id: 2049
+ Title: Job Change to Sage
+ - Id: 2050
+ Title: Job Change to Sage
+ - Id: 2051
+ Title: Job Change to Sage
+ - Id: 2052
+ Title: Job Change to Sage
+ - Id: 2053
+ Title: Job Change to Sage
+ - Id: 2054
+ Title: Job Change to Sage
+ - Id: 2055
+ Title: Job Change to Sage
+ - Id: 2056
+ Title: Job Change to Sage
+ - Id: 2057
+ Title: Job Change to Sage
+ - Id: 2058
+ Title: Job Change to Sage
+ - Id: 2059
+ Title: Job Change to Sage
+ - Id: 2060
+ Title: Job Change to Sage
+ - Id: 2061
+ Title: Job Change to Sage
+ - Id: 2062
+ Title: Job Change to Sage
+ - Id: 2063
+ Title: The Crow of the Fate - 1
+ - Id: 2064
+ Title: The Crow of the Fate - 2
+ - Id: 2065
+ Title: The Crow of the Fate - 3
+ - Id: 2066
+ Title: The Crow of the Fate - 4
+ - Id: 2067
+ Title: The Crow of the Fate - 5
+ - Id: 2068
+ Title: The Crow of the Fate - 6
+ - Id: 2069
+ Title: Tierra Gorge Battle
+ TimeLimit: +5mn
+ - Id: 2070
+ Title: Flavius Battle
+ TimeLimit: +5mn
+ - Id: 2071
+ Title: Cursed Property
+ - Id: 2072
+ Title: Cursed Property
+ - Id: 2073
+ Title: Cursed Property
+ - Id: 2074
+ Title: Cursed Property
+ - Id: 2075
+ Title: Cursed Property
+ - Id: 2076
+ Title: Cursed Property
+ - Id: 2077
+ Title: Cursed Property
+ - Id: 2078
+ Title: Cursed Property
+ - Id: 2079
+ Title: The past went wrong
+ - Id: 2080
+ Title: The past went wrong
+ - Id: 2081
+ Title: The past went wrong
+ - Id: 2082
+ Title: The past went wrong
+ - Id: 2083
+ Title: The past went wrong
+ - Id: 2084
+ Title: The past went wrong
+ - Id: 2085
+ Title: The past went wrong
+ - Id: 2086
+ Title: The Enterprise
+ - Id: 2087
+ Title: The Enterprise
+ - Id: 2088
+ Title: The Enterprise
+ - Id: 2089
+ Title: The Enterprise
+ - Id: 2090
+ Title: The Enterprise
+ - Id: 2091
+ Title: The Enterprise
+ - Id: 2092
+ Title: The Enterprise
+ - Id: 2093
+ Title: The Enterprise
+ - Id: 2094
+ Title: The Enterprise
+ - Id: 2095
+ Title: The Enterprise
+ - Id: 2109
+ Title: A Mage in the Ice Dungeon
+ - Id: 2110
+ Title: A Mage in the Ice Dungeon
+ - Id: 2111
+ Title: A Mage in the Ice Dungeon
+ - Id: 2112
+ Title: A Mage in the Ice Dungeon
+ - Id: 2113
+ Title: A Mage in the Ice Dungeon
+ - Id: 2114
+ Title: Thor Volcano base camp
+ - Id: 2115
+ Title: Thor Volcano base camp
+ - Id: 2116
+ Title: Thor Volcano base camp
+ - Id: 2117
+ Title: Thor Volcano base camp
+ - Id: 2118
+ Title: Thor Volcano base camp
+ - Id: 2119
+ Title: Thor Volcano base camp
+ - Id: 2120
+ Title: Thor Volcano base camp
+ - Id: 2121
+ Title: Thor Volcano base camp
+ - Id: 2122
+ Title: Thor Volcano base camp
+ - Id: 2123
+ Title: Thor Volcano base camp
+ - Id: 2124
+ Title: Thor Volcano base camp
+ - Id: 2125
+ Title: Thor Volcano base camp
+ - Id: 2126
+ Title: Thor Volcano base camp
+ - Id: 2127
+ Title: Thor Volcano base camp
+ - Id: 2128
+ Title: Thor Volcano base camp
+ - Id: 2129
+ Title: Thor Volcano base camp
+ - Id: 2130
+ Title: Thor Volcano base camp
+ - Id: 2131
+ Title: Thor Volcano base camp
+ - Id: 2132
+ Title: For Arunafeltz
+ - Id: 2133
+ Title: For Arunafeltz
+ - Id: 2134
+ Title: For Arunafeltz
+ - Id: 2135
+ Title: For Arunafeltz
+ - Id: 2136
+ Title: For Arunafeltz
+ - Id: 2137
+ Title: For Arunafeltz
+ - Id: 2138
+ Title: For Arunafeltz
+ - Id: 2139
+ Title: For Arunafeltz
+ - Id: 2140
+ Title: For Arunafeltz
+ - Id: 2141
+ Title: For Arunafeltz
+ - Id: 2142
+ Title: For Arunafeltz
+ - Id: 2143
+ Title: Guild Dungeon Event
+ TimeLimit: +50s
+ - Id: 2144
+ Title: Guild Dungeon Event
+ - Id: 2147
+ Title: Attitude to the New
+ - Id: 2148
+ Title: Attitude to the New
+ - Id: 2149
+ Title: Attitude to the New
+ - Id: 2150
+ Title: Attitude to the New
+ Targets:
+ - Mob: PINGUICULA
+ Count: 30
+ - Id: 2151
+ Title: Attitude to the New
+ Targets:
+ - Mob: CORNUS
+ Count: 10
+ - Id: 2152
+ Title: Attitude to the New
+ - Id: 2153
+ Title: Attitude to the New
+ - Id: 2154
+ Title: Attitude to the New
+ - Id: 2155
+ Title: Attitude to the New
+ - Id: 2156
+ Title: Attitude to the New
+ - Id: 2157
+ Title: Attitude to the New
+ Targets:
+ - Mob: TATACHO
+ Count: 10
+ - Id: 2158
+ Title: Finding a Fairy
+ - Id: 2159
+ Title: Finding a Tree Giant
+ - Id: 2179
+ Title: Dr. Lifeguard's request
+ - Id: 2180
+ Title: Dr. Lifeguard's request
+ - Id: 2181
+ Title: Dr. Lifeguard's request
+ - Id: 2182
+ Title: Rough Minerals
+ TimeLimit: +18h
+ - Id: 2183
+ Title: Flower of Alfheim
+ - Id: 2184
+ Title: Flower of Alfheim
+ - Id: 2185
+ Title: Spirit of Alfheim
+ - Id: 2186
+ Title: Helping Grenouille
+ TimeLimit: +18h
+ - Id: 2187
+ Title: Arch Bishop job changing quest
+ - Id: 2188
+ Title: Arch Bishop job changing quest
+ - Id: 2189
+ Title: Arch Bishop job changing quest
+ - Id: 2190
+ Title: Arch Bishop job changing quest
+ - Id: 2191
+ Title: Arch Bishop job changing quest
+ - Id: 2192
+ Title: Guarana quest
+ - Id: 2193
+ Title: Guarana quest
+ - Id: 2194
+ Title: Guarana quest
+ - Id: 2195
+ Title: Guarana quest
+ - Id: 2196
+ Title: Guarana quest
+ - Id: 2197
+ Title: Guarana quest
+ - Id: 2198
+ Title: Guarana quest
+ - Id: 2199
+ Title: Guarana quest
+ - Id: 2200
+ Title: Guarana quest
+ - Id: 2201
+ Title: Brasilis Water Lily
+ - Id: 2202
+ Title: Brasilis Water Lily
+ - Id: 2203
+ Title: Brasilis Water Lily
+ - Id: 2204
+ Title: Brasilis Water Lily
+ - Id: 2205
+ Title: Brasilis Water Lily
+ - Id: 2206
+ Title: Brasilis Water Lily
+ - Id: 2207
+ Title: Brasilis Water Lily
+ - Id: 2208
+ Title: Bathroom Ghost
+ - Id: 2209
+ Title: Genetic Job Change Quest
+ - Id: 2210
+ Title: Genetic Job Change Quest
+ - Id: 2211
+ Title: Genetic Job Change Quest
+ - Id: 2212
+ Title: Genetic Job Change Quest
+ - Id: 2213
+ Title: Genetic Job Change Quest
+ - Id: 2214
+ Title: Genetic Job Change Quest
+ - Id: 2215
+ Title: Genetic Job Change Quest
+ - Id: 2216
+ Title: Genetic Job Change Quest
+ - Id: 2217
+ Title: Genetic Job Change Quest
+ - Id: 2218
+ Title: Wanderer Job Change Quest
+ - Id: 2219
+ Title: Wanderer Job Change Quest
+ - Id: 2220
+ Title: Wanderer Job Change Quest
+ - Id: 2221
+ Title: Wanderer Job Change Quest
+ TimeLimit: +10mn
+ Targets:
+ - Mob: NOVUS_
+ Count: 50
+ - Id: 2222
+ Title: Wanderer Job Change Quest
+ - Id: 2223
+ Title: Generic Job Change Quest
+ Targets:
+ - Mob: G_POISON_SPORE
+ Count: 100
+ - Id: 2271
+ Title: Secret in the Woods
+ - Id: 2272
+ Title: Secret in the Woods
+ - Id: 2273
+ Title: Secret in the Woods
+ - Id: 2274
+ Title: Secret in the Woods
+ - Id: 2275
+ Title: Secret in the Woods
+ - Id: 2276
+ Title: Secret in the Woods
+ - Id: 2277
+ Title: Secret in the Woods
+ - Id: 2278
+ Title: Secret in the Woods
+ - Id: 2279
+ Title: Secret in the Woods
+ - Id: 2280
+ Title: Secret in the Woods
+ - Id: 2281
+ Title: Get Rid of Buwaya
+ Targets:
+ - Mob: BUWAYA
+ Count: 1
+ - Id: 2289
+ Title: Verit Hunting (Nightmare)
+ Targets:
+ - Mob: N_VERIT
+ Count: 20
+ - Id: 2290
+ Title: Verit Hunting - Cooldown
+ TimeLimit: +23h
+ - Id: 2291
+ Title: Mummy Hunting - Cooldown
+ TimeLimit: +23h
+ - Id: 2292
+ Title: Mummy Hunting (Nightmare)
+ Targets:
+ - Mob: N_ANCIENT_MUMMY
+ Count: 20
+ - Id: 2293
+ Title: Adventurer's Companion
+ - Id: 2294
+ Title: Adventurer's Companion
+ - Id: 2295
+ Title: Adventurer's Companion
+ - Id: 2296
+ Title: Adventurer's Companion
+ - Id: 2297
+ Title: Adventurer's Companion
+ - Id: 2298
+ Title: Adventurer's Companion
+ - Id: 2299
+ Title: Rapid Completion Experience
+ - Id: 2300
+ Title: "Training Center: Talk to General Reindeer"
+ - Id: 2301
+ Title: "Training Center: Leave the boat"
+ - Id: 2302
+ Title: "Training Center: Formation"
+ - Id: 3000
+ Title: Job Change to Bard
+ - Id: 3001
+ Title: Job Change to Bard
+ - Id: 3002
+ Title: Job Change to Bard
+ - Id: 3003
+ Title: Job Change to Bard
+ - Id: 3004
+ Title: Job Change to Bard
+ - Id: 3006
+ Title: Job Change to Crusader
+ - Id: 3007
+ Title: Job Change to Crusader
+ - Id: 3008
+ Title: Job Change to Crusader
+ - Id: 3009
+ Title: Job Change to Crusader
+ - Id: 3010
+ Title: Job Change to Crusader
+ - Id: 3011
+ Title: Job Change to Crusader
+ - Id: 3012
+ Title: Job Change to Crusader
+ - Id: 3013
+ Title: Job Change to Crusader
+ - Id: 3014
+ Title: Job Change to Crusader
+ - Id: 3015
+ Title: Job Change to Crusader
+ - Id: 3016
+ Title: Job Change to Monk
+ - Id: 3017
+ Title: Job Change to Monk
+ - Id: 3018
+ Title: Job Change to Monk
+ - Id: 3019
+ Title: Job Change to Monk
+ - Id: 3020
+ Title: Job Change to Monk
+ - Id: 3021
+ Title: Job Change to Monk
+ - Id: 3022
+ Title: Job Change to Monk
+ - Id: 3023
+ Title: Job Change to Monk
+ - Id: 3024
+ Title: Job Change to Monk
+ - Id: 3025
+ Title: Job Change to Monk
+ - Id: 3026
+ Title: Job Change to Monk
+ - Id: 3027
+ Title: Job Change to Monk
+ - Id: 3028
+ Title: Job Change to Monk - Marathon
+ - Id: 3029
+ Title: Job Change to Monk - Final test
+ - Id: 3031
+ Title: Job Change to Monk - Spiritual Training
+ - Id: 3032
+ Title: Job Change to Monk - Become a Monk
+ - Id: 3040
+ Title: The Curse of Baphomet
+ TimeLimit: +12h
+ - Id: 3041
+ Title: The Curse of Baphomet
+ TimeLimit: +3mn
+ - Id: 3042
+ Title: The Cursed Baphomet Doll
+ - Id: 3043
+ Title: The Gigantic Magestic Goat
+ - Id: 3044
+ Title: The Gigantic Magestic Goat
+ - Id: 3045
+ Title: Sealed Shrine
+ TimeLimit: +2h
+ - Id: 3046
+ Title: Sealed Shrine After-effect
+ - Id: 3050
+ Title: Resurrection of Satan Morocc - 1
+ - Id: 3051
+ Title: Resurrection of Satan Morocc - 2
+ - Id: 3052
+ Title: Resurrection of Satan Morocc - 3
+ - Id: 3053
+ Title: Resurrection of Satan Morocc - 4
+ - Id: 3054
+ Title: Resurrection of Satan Morocc - 5
+ - Id: 3055
+ Title: Resurrection of Satan Morocc - 6
+ - Id: 3056
+ Title: Resurrection of Satan Morocc - 7
+ - Id: 3060
+ Title: Kids in Veins - Where's the Little Sis?
+ - Id: 3061
+ Title: Kids in Veins - Find a way to unlock the shackles!
+ - Id: 3062
+ Title: Kids in Veins - Find the Locksmith!
+ - Id: 3063
+ Title: Kids in Veins - Mr. Lockenlock?
+ - Id: 3064
+ Title: Kids in Veins - Organic Chamelepu Soap
+ - Id: 3065
+ Title: Kids in Veins - Soap Ingredients
+ - Id: 3066
+ Title: Kids in Veins - To make a Chamelepu Soap...
+ - Id: 3067
+ Title: Kids in Veins - Camel Appetite Stimulants
+ - Id: 3068
+ Title: Kids in Veins - Getting the Camel Dung
+ - Id: 3069
+ Title: Kids in Veins - Where's the Silk Sand Camel?
+ - Id: 3070
+ Title: Kids in Veins - Silk Sand Camel is gone!
+ - Id: 3071
+ Title: Kids in Veins - Silk Sand Camel is found!
+ - Id: 3072
+ Title: Kids in Veins - 1 lump of Camel dung obtained
+ - Id: 3073
+ Title: Kids in Veins - 2 lumps of Camel dung obtained
+ - Id: 3074
+ Title: Kids in Veins - 3 lumps of Camel dung obtained
+ - Id: 3075
+ Title: Kids in Veins - 4 lumps of Camel dung obtained
+ - Id: 3076
+ Title: Kids in Veins - 5 lumps of Camel dung obtained
+ - Id: 3077
+ Title: Kids in Veins - Go to Ms. Ivory
+ - Id: 3078
+ Title: Kids in Veins - Chamalepu Soap is completed!
+ - Id: 3079
+ Title: Kids in Veins - Making the key mold
+ - Id: 3080
+ Title: Kids in Veins - Bringing the key mold
+ - Id: 3081
+ Title: Kids in Veins - All you need is Steel!
+ - Id: 3082
+ Title: Kids in Veins - The Key is Made!
+ - Id: 3083
+ Title: Kids in Veins - Mr. Lockenlock's key
+ - Id: 3085
+ Title: Call from the commander
+ - Id: 3086
+ Title: Commander's Duty
+ - Id: 3087
+ Title: Report to Midgard
+ - Id: 3088
+ Title: Report to the continent - Accident!
+ - Id: 3089
+ Title: Report to the continent - How to restore
+ - Id: 3090
+ Title: Report to the continent - Location of reports
+ - Id: 3091
+ Title: Report to the continent - Location of reports
+ TimeLimit: +30mn
+ - Id: 3092
+ Title: Report to the continent - Success to restore!
+ - Id: 3093
+ Title: Report to the continent - Report to the continent
+ - Id: 3094
+ Title: Report to the continent - Return to the expedition
+ - Id: 3100
+ Title: Consolidating Heavy Debt - Lost Bond of Debt
+ - Id: 3101
+ Title: Consolidating Heavy Debt - Strange Heap of Earth
+ - Id: 3102
+ Title: Consolidating Heavy Debt - Bond of Debt Found, but...
+ - Id: 3103
+ Title: Consolidating Heavy Debt - Inventor Dorian
+ - Id: 3104
+ Title: Consolidating Heavy Debt - Repair Materials of Magic Dryer
+ - Id: 3105
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer
+ - Id: 3106
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer Failed
+ - Id: 3107
+ Title: Consolidating Heavy Debt - Repairing Magic Dryer Successful
+ - Id: 3108
+ Title: Consolidating Heavy Debt - Let's Run the Magic Dryer
+ - Id: 3109
+ Title: Consolidating Heavy Debt - Restoring the Bond of Debt
+ - Id: 3110
+ Title: Stolen Diamond - Tracking the Diamond
+ - Id: 3111
+ Title: Stolen Diamond - Leblo's Favor
+ - Id: 3112
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3113
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3114
+ Title: Stolen Diamond - Wola the Doctor
+ - Id: 3115
+ Title: Stolen Diamond - Leblo's Information
+ - Id: 3116
+ Title: Stolen Diamond - Information from Rogue Investigator
+ - Id: 3117
+ Title: Stolen Diamond - Odd Switches
+ - Id: 3118
+ Title: Stolen Diamond - Diamond Found!
+ - Id: 3119
+ Title: Z Gang Wanted - Wanted Notice
+ - Id: 3120
+ Title: Z Gang Wanted - About Z Gang
+ - Id: 3121
+ Title: Z Gang Wanted - Valdes's Favor
+ - Id: 3122
+ Title: Z Gang Wanted - Information from Valdes
+ - Id: 3123
+ Title: Z Gang Wanted - Marybell's Test
+ - Id: 3124
+ Title: Z Gang Wanted - Challenging Moonho Ahn
+ - Id: 3125
+ Title: Z Gang Wanted - Challenging Moonho Ahn
+ - Id: 3126
+ Title: Z Gang Wanted - Information from Marybell
+ - Id: 3127
+ Title: Z Gang Wanted - Z Gang's Attack
+ - Id: 3128
+ Title: Z Gang Wanted - Z Gang's Attack
+ - Id: 3129
+ Title: Z Gang Wanted - Strange Letter
+ - Id: 3130
+ Title: Z Gang Wanted - Decrypting the letter...
+ - Id: 3131
+ Title: Z Gang Wanted - Code's Broken!
+ - Id: 3132
+ Title: Z Gang Wanted - Find the Z Gang's Agit
+ - Id: 3133
+ Title: Z Gang Wanted - Agit Found!
+ - Id: 3134
+ Title: Z Gang Wanted - Clean Sweep of Z Gang
+ - Id: 3135
+ Title: Nidhoggur's Nest
+ TimeLimit: +3d
+ - Id: 3136
+ Title: Nidhoggur's Nest Time Limit
+ TimeLimit: +4h
+ - Id: 3200
+ Title: Job changes to Rune knight - Recommendation for Rune knight
+ - Id: 3201
+ Title: Job changes to Rune knight - Secret rendezvous of Rune knight
+ - Id: 3202
+ Title: Job changes to Rune knight - The first test
+ - Id: 3203
+ Title: Job changes to Rune knight - The first test
+ - Id: 3204
+ Title: Job changes to Rune knight - Pass the first test
+ - Id: 3205
+ Title: Job changes to Rune knight - The second test
+ - Id: 3206
+ Title: Job changes to Rune knight - The second test
+ - Id: 3207
+ Title: Job changes to Rune knight - The second test
+ - Id: 3208
+ Title: Job changes to Rune knight - The second test
+ - Id: 3209
+ Title: Job changes to Rune knight - Accumulation of magic energy1
+ Targets:
+ - Mob: DULLAHAN
+ Count: 10
+ - Id: 3210
+ Title: Job changes to Rune knight - Accumulation of magic energy2
+ Targets:
+ - Mob: DISGUISE
+ Count: 10
+ - Id: 3211
+ Title: Job changes to Rune knight - Accumulation of magic energy3
+ Targets:
+ - Mob: QUVE
+ Count: 10
+ - Id: 3212
+ Title: Job changes to Rune knight - Accumulation of magic energy4
+ Targets:
+ - Mob: HYLOZOIST
+ Count: 10
+ - Id: 3213
+ Title: Job changes to Rune knight - The second test
+ - Id: 3214
+ Title: Job changes to Rune knight - The second test
+ - Id: 3215
+ Title: Job changes to Rune knight - Pass the second test
+ - Id: 3216
+ Title: Job changes to Rune knight - The final test
+ - Id: 3217
+ Title: Job changes to Rune knight - The final test
+ - Id: 3218
+ Title: Job changes to Rune knight - Pass the final test
+ - Id: 3219
+ Title: Job changes to Rune knight - The end of all test
+ - Id: 3220
+ Title: Job changes to Rune knight - Waiting time of test
+ TimeLimit: +10mn
+ - Id: 3250
+ Title: Request - What is this bandage for?
+ Targets:
+ - Mob: MUMMY
+ Count: 30
+ - Id: 3251
+ Title: Request - An alligator of Counterattack
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 30
+ - Id: 3252
+ Title: Request - My mermaid don't do like this way!
+ Targets:
+ - Mob: MERMAN
+ Count: 30
+ - Id: 3253
+ Title: Request - Missing occult mania
+ - Id: 3254
+ Title: Request - A country wants you
+ - Id: 3255
+ Title: Request - A wild boar subjugate operation
+ Targets:
+ - Mob: SAVAGE
+ Count: 30
+ - Id: 3256
+ Title: Request - Ready for waiting summer
+ - Id: 3257
+ Title: Request - A grudge of women
+ Targets:
+ - Mob: SOHEE
+ Count: 30
+ - Id: 3258
+ Title: Request - A material of delicacy
+ - Id: 3259
+ Title: Request - A agony of a doll master
+ Targets:
+ - Mob: MARIONETTE
+ Count: 30
+ - Id: 3260
+ Title: Request - Tiresome flies
+ Targets:
+ - Mob: HUNTER_FLY
+ Count: 30
+ - Id: 3261
+ Title: Request - Unclean girl
+ Targets:
+ - Mob: MUNAK
+ Count: 30
+ - Id: 3262
+ Title: Request - Queer hobby
+ - Id: 3263
+ Title: Request - A mallet of goblin
+ - Id: 3265
+ Title: Request - Missing occult mania
+ - Id: 4000
+ Title: Sherin's Job Interview
+ - Id: 4001
+ Title: Job Change to Hunter
+ - Id: 4002
+ Title: Job Change to Hunter
+ - Id: 4003
+ Title: Job Change to Hunter
+ - Id: 4004
+ Title: Job Change to Hunter
+ - Id: 4005
+ Title: Job Change to Hunter
+ - Id: 4006
+ Title: Job Change to Hunter
+ - Id: 4007
+ Title: Job Change to Hunter
+ - Id: 4008
+ Title: Job Change to Hunter
+ - Id: 4009
+ Title: Job Change to Hunter
+ - Id: 4010
+ Title: Job Change to Hunter
+ - Id: 4011
+ Title: Job Change to Hunter - Test
+ - Id: 4012
+ Title: Job Change to Hunter
+ - Id: 4013
+ Title: Job Change to Hunter
+ - Id: 4133
+ Title: Iara
+ - Id: 4134
+ Title: Iara
+ - Id: 4135
+ Title: Iara
+ TimeLimit: +1d
+ - Id: 4154
+ Title: Homunculus Researcher
+ - Id: 4155
+ Title: Homunculus S Mutation Mission - 1
+ - Id: 4156
+ Title: Homunculus S Mutation Mission - 2
+ - Id: 4157
+ Title: Homunculus S Mutation Mission - 3
+ - Id: 4158
+ Title: Homunculus S Mutation Mission - 4
+ - Id: 4159
+ Title: Homunculus S Mutation Mission - 5
+ - Id: 4160
+ Title: Homunculus S Mutation Mission - 6
+ - Id: 4161
+ Title: Siege Expert
+ - Id: 4162
+ Title: Party Recruiting Expert
+ - Id: 4163
+ Title: Battleground Expert
+ - Id: 4164
+ Title: Memorial Dungeon Expert
+ - Id: 4165
+ Title: Map Expert
+ - Id: 4166
+ Title: Passing Grades
+ - Id: 4167
+ Title: "Paradise: Dragon Tail Hunting"
+ Targets:
+ - Mob: DRAGON_TAIL
+ Count: 30
+ - Id: 4168
+ Title: "Paradise: Spring Rabbit Hunting"
+ Targets:
+ - Mob: SPRING_RABBIT
+ Count: 30
+ - Id: 4169
+ Title: "Paradise: Pest Hunting"
+ Targets:
+ - Mob: PEST
+ Count: 30
+ - Id: 4170
+ Title: "Paradise: Bathory Hunting"
+ Targets:
+ - Mob: BATHORY
+ Count: 30
+ - Id: 4171
+ Title: "Paradise: Alarm Hunting"
+ Targets:
+ - Mob: ALARM
+ Count: 30
+ - Id: 4172
+ Title: "Paradise: Babayaga Hunting"
+ Targets:
+ - Mob: VAVAYAGA
+ Count: 30
+ - Id: 4173
+ Title: "Paradise: Hyegun Hunting"
+ Targets:
+ - Mob: HYEGUN
+ Count: 30
+ - Id: 4174
+ Title: "Paradise: Antique Firelock Hunting"
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 30
+ - Id: 4175
+ Title: "Paradise: Zipper Bear Hunting"
+ Targets:
+ - Mob: ZIPPER_BEAR
+ Count: 30
+ - Id: 4176
+ Title: "Paradise: Earth Petite Hunting"
+ Targets:
+ - Mob: PETIT
+ Count: 30
+ - Id: 4177
+ Title: "Paradise: Rafflesia Hunting"
+ Targets:
+ - Mob: RAFFLESIA
+ Count: 30
+ - Id: 4178
+ Title: "Paradise: Venomous Hunting"
+ Targets:
+ - Mob: VENOMOUS
+ Count: 30
+ - Id: 4179
+ Title: "Paradise: Pitman Hunting"
+ Targets:
+ - Mob: PITMAN
+ Count: 30
+ - Id: 4180
+ Title: "Paradise: Yellow Novus Hunting"
+ Targets:
+ - Mob: NOVUS_
+ Count: 30
+ - Id: 4181
+ Title: "Paradise: Solider Hunting"
+ Targets:
+ - Mob: SOLIDER
+ Count: 30
+ - Id: 4182
+ Title: "Paradise: Freezer Hunting"
+ Targets:
+ - Mob: FREEZER
+ Count: 30
+ - Id: 4183
+ Title: "Paradise: Heater Hunting"
+ Targets:
+ - Mob: HEATER
+ Count: 30
+ - Id: 4184
+ Title: "Paradise: Injustice Hunting"
+ Targets:
+ - Mob: INJUSTICE
+ Count: 30
+ - Id: 4185
+ Title: "Paradise: Rybio Hunting"
+ Targets:
+ - Mob: RYBIO
+ Count: 30
+ - Id: 4186
+ Title: "Paradise: Dark Priest Hunting"
+ Targets:
+ - Mob: DARK_PRIEST
+ Count: 30
+ - Id: 4187
+ Title: "Paradise: Stapo Hunting"
+ Targets:
+ - Mob: STAPO
+ Count: 30
+ - Id: 4188
+ Title: "Paradise: Roween Hunting"
+ Targets:
+ - Mob: ROWEEN
+ Count: 30
+ - Id: 4189
+ Title: "Paradise: Siroma Hunting"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 4190
+ Title: "Paradise: Shinobi Hunting"
+ Targets:
+ - Mob: SHINOBI
+ Count: 30
+ - Id: 4191
+ Title: "Paradise: Evil Nymph Hunting"
+ Targets:
+ - Mob: WICKED_NYMPH
+ Count: 30
+ - Id: 4192
+ Title: "Paradise: Deviruchi Hunting"
+ Targets:
+ - Mob: DEVIRUCHI
+ Count: 30
+ - Id: 4193
+ Title: "Paradise: Mineral Hunting"
+ Targets:
+ - Mob: MINERAL
+ Count: 30
+ - Id: 4194
+ Title: "Paradise: Kaho Hunting"
+ Targets:
+ - Mob: KAHO
+ Count: 30
+ - Id: 4195
+ Title: "Paradise: Neraid Hunting"
+ Targets:
+ - Mob: NERAID
+ Count: 30
+ - Id: 4196
+ Title: "Paradise: Disguise Hunting"
+ Targets:
+ - Mob: DISGUISE
+ Count: 30
+ - Id: 4197
+ Title: Octopus
+ TimeLimit: +3h
+ - Id: 4198
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4199
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4200
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4201
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4202
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4203
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4204
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4205
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4206
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4207
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4208
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4209
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4210
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4211
+ Title: 86-90 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4212
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4213
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4214
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4215
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4216
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4217
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4218
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4219
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4220
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4221
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4222
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4223
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4224
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4225
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4226
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4227
+ Title: 91-99 Mission Board Timer
+ TimeLimit: +3h
+ - Id: 4229
+ Title: Devil in the Cave
+ TimeLimit: +23h
+ - Id: 4254
+ Title: Fairy with a stomache
+ - Id: 4255
+ Title: Revenge!
+ Targets:
+ - Mob: MENBLATT
+ Count: 20
+ - Id: 4256
+ Title: An accomplice?
+ - Id: 4257
+ Title: Conspiracy
+ - Id: 4258
+ Title: Eirinn
+ - Id: 4259
+ Title: Bourbon
+ - Id: 4260
+ Title: Bee
+ - Id: 4261
+ Title: Counterattack (1)
+ - Id: 4262
+ Title: Counterattack (2)
+ - Id: 4263
+ Title: Counteroffensive (1)
+ - Id: 4264
+ Title: Counteroffensive (2)
+ - Id: 4265
+ Title: Bookshelf use
+ - Id: 4266
+ Title: ????? ??
+ - Id: 4267
+ Title: ????? ??
+ - Id: 4268
+ Title: Ninja trainer
+ - Id: 4269
+ Title: Registration at the Academy
+ - Id: 4270
+ Title: Ninja training - stat explanation
+ - Id: 4271
+ Title: Ninja training-explanation about the skills
+ - Id: 4272
+ Title: Ninja training- conversation about the skills
+ - Id: 4273
+ Title: Ninja training- explanation about the weapons
+ - Id: 4274
+ Title: Ninjas training- explanation about job change
+ - Id: 4275
+ Title: Ninja training-Exercise1
+ Targets:
+ - Mob: DROPS
+ Count: 10
+ - Id: 4276
+ Title: Ninja training-Exercise2
+ Targets:
+ - Mob: PORING
+ Count: 10
+ - Id: 4277
+ Title: Ninja training-Actual battle2
+ Targets:
+ - Mob: ROCKER
+ Count: 10
+ - Id: 4278
+ Title: Ninja training-Actual battle1
+ Targets:
+ - Mob: WORM_TAIL
+ Count: 10
+ - Id: 4279
+ Title: Ninja training-test
+ - Id: 4280
+ Title: Ninja training-test
+ - Id: 4281
+ Title: Beginner's training-Ninja
+ - Id: 4282
+ Title: Ninja training-exercise1
+ Targets:
+ - Mob: DROPS
+ Count: 10
+ - Id: 4283
+ Title: Ninja training-exercise2
+ Targets:
+ - Mob: PORING
+ Count: 10
+ - Id: 4284
+ Title: Ninja training-actual battle2
+ Targets:
+ - Mob: ROCKER
+ Count: 10
+ - Id: 4285
+ Title: Ninja training-actual battle1
+ Targets:
+ - Mob: WORM_TAIL
+ Count: 10
+ - Id: 4286
+ Title: Ninja training-test
+ - Id: 4287
+ Title: Ninja training-test
+ - Id: 4295
+ Title: Wandering Bard
+ - Id: 4296
+ Title: Take a Break
+ TimeLimit: +23h
+ - Id: 4297
+ Title: "Bard's Story: Some Corporation"
+ - Id: 4298
+ Title: "Bard's Story: The President"
+ - Id: 4299
+ Title: "Bard's Story: a Scholar in Juno"
+ - Id: 4300
+ Title: "Bard's Story: a Mad Scientist"
+ - Id: 4301
+ Title: "Bard's Story: Hugel"
+ - Id: 4302
+ Title: "Bard's Story: Odin Temple"
+ - Id: 4999
+ Title: Extermination Crisis
+ - Id: 5000
+ Title: The Crow of the Fate - 7
+ - Id: 5001
+ Title: King Froggie VII's revenge
+ Targets:
+ - Mob: SIDE_WINDER
+ Count: 50
+ - Id: 5002
+ Title: The hero of the frogs
+ - Id: 5003
+ Title: Frog Hiding Skill
+ - Id: 5004
+ Title: Food Shortage
+ Targets:
+ - Mob: ARGIOPE
+ Count: 50
+ - Id: 5016
+ Title: Bring me a Research Tool Bag
+ - Id: 5017
+ Title: Revenge of the Reseacher
+ - Id: 5018
+ Title: Revenge of the Reseacher
+ - Id: 5019
+ Title: Bathroom Sample Studying
+ - Id: 5020
+ Title: Sample Researching
+ TimeLimit: +1d
+ - Id: 5021
+ Title: Sample Collecting
+ - Id: 5022
+ Title: Sample Collecting
+ - Id: 5023
+ Title: Inspection of the Sample
+ TimeLimit: +6h
+ - Id: 5024
+ Title: Eastern Pool Research
+ - Id: 5025
+ Title: Western Pool Research
+ - Id: 5026
+ Title: Southern Pool Research
+ - Id: 5027
+ Title: Northern Pool Research
+ - Id: 5028
+ Title: Inspection of the Sample
+ TimeLimit: +12h
+ - Id: 5029
+ Title: Unidentified Creature
+ TimeLimit: +1h
+ - Id: 5030
+ Title: The creature's family
+ - Id: 5031
+ Title: The creature's family
+ - Id: 5032
+ Title: The creature's family
+ - Id: 5033
+ Title: The creature's family
+ - Id: 5034
+ Title: News from the family
+ - Id: 5035
+ Title: Help the old man!
+ - Id: 5036
+ Title: Help the old man!
+ - Id: 5037
+ Title: Help the old man!
+ - Id: 5038
+ Title: Help the old man!
+ - Id: 5039
+ Title: Help the old man!
+ - Id: 5040
+ Title: Help the old man!
+ - Id: 5041
+ Title: Help the old man!
+ - Id: 5042
+ Title: Help the old man!
+ - Id: 5043
+ Title: Help the old man!
+ TimeLimit: +5mn
+ - Id: 5044
+ Title: Help the old man!
+ TimeLimit: +1d
+ - Id: 5045
+ Title: Help the old man!
+ - Id: 5046
+ Title: Help the old man!
+ - Id: 5047
+ Title: Help the old man!
+ - Id: 5048
+ Title: Help the old man!
+ - Id: 5049
+ Title: Help the old man!
+ - Id: 5050
+ Title: Help the old man!
+ - Id: 5051
+ Title: Help the old man!
+ - Id: 5052
+ Title: Traditional Weapon
+ - Id: 5053
+ Title: Traditional Weapon
+ - Id: 5054
+ Title: Traditional Weapon
+ - Id: 5055
+ Title: Local Rising - Headless Horse
+ Targets:
+ - Mob: HEADLESS_MULE
+ Count: 15
+ - Id: 5056
+ Title: Local Rising - Tamruan
+ Targets:
+ - Mob: TAMRUAN
+ Count: 15
+ - Id: 5057
+ Title: Local Rising - Ready the Festival
+ - Id: 5058
+ Title: The mood of the players-(1)
+ - Id: 5059
+ Title: The mood of the players-(2)
+ - Id: 5060
+ Title: Cat Shock
+ TimeLimit: +3mn
+ - Id: 5061
+ Title: Am I scared?
+ - Id: 5062
+ Title: I met Eryu.
+ - Id: 5063
+ Title: I met Stew.
+ - Id: 5064
+ Title: I met Ketchup.
+ - Id: 5065
+ Title: I met Eff.
+ - Id: 5066
+ Title: Scary image-(1)
+ - Id: 5067
+ Title: Scary image-(2)
+ - Id: 5068
+ Title: Collecting complaint
+ TimeLimit: +20h
+ - Id: 5069
+ Title: Token of honor
+ TimeLimit: +1h
+ - Id: 5070
+ Title: Rock Paper Scissors
+ TimeLimit: +1d
+ - Id: 5071
+ Title: Chamchamcham
+ TimeLimit: +1d
+ - Id: 5072
+ Title: Kkongnyangkkong
+ TimeLimit: +1d
+ - Id: 5073
+ Title: Challenging of flag wave
+ TimeLimit: +1d
+ - Id: 5074
+ Title: Cat's Meal
+ Targets:
+ - Mob: PHEN
+ Count: 30
+ - Id: 5075
+ Title: Health food
+ Targets:
+ - Mob: MARSE
+ Count: 50
+ - Id: 5076
+ Title: Enemies
+ Targets:
+ - Mob: KOBOLD_ARCHER
+ Count: 30
+ - Id: 5077
+ Title: Reaction Training
+ Targets:
+ - Mob: CRAMP
+ Count: 10
+ - Id: 5078
+ Title: Light bird food
+ Targets:
+ - Mob: PECOPECO
+ Count: 50
+ - Id: 5079
+ Title: How to stabilize the mind
+ - Id: 5080
+ Title: Lack of Snack
+ - Id: 5081
+ Title: Banned foods
+ - Id: 5082
+ Title: Cool food
+ - Id: 5083
+ Title: Please come back Eryu-(1)
+ - Id: 5084
+ Title: Please come back Eryu-(2)
+ - Id: 5085
+ Title: Please come back Stew-(1)
+ - Id: 5086
+ Title: Please come back Stew-(2)
+ - Id: 5087
+ Title: Please come back Ketchup-(1)
+ - Id: 5088
+ Title: Please come back Ketchup-(2)
+ - Id: 5089
+ Title: Please come back Eff-(1)
+ - Id: 5090
+ Title: Please come back Eff-(2)
+ - Id: 5091
+ Title: Go Malangdo
+ - Id: 5092
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5093
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5094
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: PORING
+ Count: 1000
+ - Id: 5095
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: LUNATIC
+ Count: 1000
+ - Id: 5096
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: FABRE
+ Count: 1000
+ - Id: 5097
+ Title: Unlocking the Ultimate Mediocrity
+ Targets:
+ - Mob: PICKY
+ Count: 1000
+ - Id: 5098
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5099
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5100
+ Title: Unlocking the Ultimate Mediocrity
+ - Id: 5109
+ Title: Light but Unconfirmed Rumor
+ - Id: 5110
+ Title: The Rumored Character
+ - Id: 5111
+ Title: To the Lab...
+ - Id: 5112
+ Title: Laboratory Restricted Access
+ TimeLimit: +3d
+ - Id: 5113
+ Title: "[Rest] Lord Knight"
+ Targets:
+ - Mob: B_SEYREN
+ Count: 1
+ - Id: 5114
+ Title: "[Rest] Paladin"
+ Targets:
+ - Mob: B_RANDEL
+ Count: 1
+ - Id: 5115
+ Title: "[Rest] High Priest"
+ Targets:
+ - Mob: B_MAGALETA
+ Count: 1
+ - Id: 5116
+ Title: "[Rest] Champion"
+ Targets:
+ - Mob: B_CHEN
+ Count: 1
+ - Id: 5117
+ Title: "[Rest] High Wizard"
+ Targets:
+ - Mob: B_KATRINN
+ Count: 1
+ - Id: 5118
+ Title: "[Rest] Professor"
+ Targets:
+ - Mob: B_CELIA
+ Count: 1
+ - Id: 5119
+ Title: "[Rest] Whitesmith"
+ Targets:
+ - Mob: B_HARWORD
+ Count: 1
+ - Id: 5120
+ Title: "[Rest] Creator"
+ Targets:
+ - Mob: B_FLAMEL
+ Count: 1
+ - Id: 5121
+ Title: "[Rest] Assassin Cross"
+ Targets:
+ - Mob: B_EREMES
+ Count: 1
+ - Id: 5122
+ Title: "[Rest] Stalker"
+ Targets:
+ - Mob: B_GERTIE
+ Count: 1
+ - Id: 5123
+ Title: "[Rest] Sniper"
+ Targets:
+ - Mob: B_SHECIL
+ Count: 1
+ - Id: 5124
+ Title: "[Rest] Clown"
+ Targets:
+ - Mob: B_ALPHOCCIO
+ Count: 1
+ - Id: 5125
+ Title: "[Rest] Gypsy"
+ Targets:
+ - Mob: B_TRENTINI
+ Count: 1
+ - Id: 5131
+ Title: Strange Conversation
+ - Id: 5132
+ Title: Family Business-(1)
+ - Id: 5133
+ Title: Family Business-(2)
+ - Id: 5134
+ Title: New path
+ - Id: 5135
+ Title: 4 tests
+ - Id: 5136
+ Title: Knowledge test
+ - Id: 5137
+ Title: Survival test
+ - Id: 5138
+ Title: Weapons test
+ - Id: 5139
+ Title: The guy looks familiar!!
+ - Id: 5140
+ Title: Uncertain chilliness
+ - Id: 5141
+ Title: Got a curse!!
+ TimeLimit: +2mn
+ - Id: 5142
+ Title: Prototype-(1)
+ - Id: 5143
+ Title: Prototype-(2)
+ - Id: 5144
+ Title: Prototype-(2)
+ - Id: 5145
+ Title: Prototype-(3)
+ - Id: 5146
+ Title: Battle test
+ - Id: 5147
+ Title: Gunslinger basic training(1)
+ - Id: 5148
+ Title: Gunslinger basic training(2)
+ - Id: 5149
+ Title:
+ Targets:
+ - Mob: HORNET
+ Count: 10
+ - Id: 5150
+ Title:
+ Targets:
+ - Mob: RODA_FROG
+ Count: 10
+ - Id: 5151
+ Title:
+ Targets:
+ - Mob: SAVAGE_BABE
+ Count: 10
+ - Id: 5152
+ Title:
+ Targets:
+ - Mob: ROCKER
+ Count: 10
+ - Id: 5153
+ Title: Refining tutorial (1)
+ - Id: 5154
+ Title: Refining tutorial (2)
+ - Id: 5155
+ Title: Refining tutorial (3)
+ - Id: 5156
+ Title: Refining tutorial (4)
+ - Id: 5157
+ Title: Enchant tutorial (1)
+ - Id: 5158
+ Title: Enchant tutorial (2)
+ - Id: 5159
+ Title: Enchant tutorial (3)
+ - Id: 5161
+ Title: Low Level collection request[Stand by]
+ TimeLimit: +1d
+ - Id: 5162
+ Title: Low Level collection request
+ Targets:
+ - Mob: REQUIEM
+ Count: 100
+ - Id: 5163
+ Title: Low Level collection request
+ Targets:
+ - Mob: BATHORY
+ Count: 100
+ - Id: 5164
+ Title: Low Level collection request
+ Targets:
+ - Mob: SPRING_RABBIT
+ Count: 100
+ - Id: 5165
+ Title: Low Level collection request
+ Targets:
+ - Mob: SLEEPER
+ Count: 100
+ - Id: 5166
+ Title: Low Level collection request
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 100
+ - Id: 5167
+ Title: Low Level collection request
+ Targets:
+ - Mob: PETIT
+ Count: 100
+ - Id: 5168
+ Title: Low Level collection request
+ Targets:
+ - Mob: CLOCK
+ Count: 100
+ - Id: 5169
+ Title: Mid-Level collection request[Stand by]
+ TimeLimit: +1d
+ - Id: 5170
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: SIROMA
+ Count: 100
+ - Id: 5171
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: DARK_PRIEST
+ Count: 100
+ - Id: 5172
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: STAPO
+ Count: 100
+ - Id: 5173
+ Title: Mid-Level collection request
+ Targets:
+ - Mob: SOLIDER
+ Count: 100
+ - Id: 5174
+ Title: High level collectiong request[Stand by]
+ TimeLimit: +1d
+ - Id: 5175
+ Title: High level collection request
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 100
+ - Id: 5176
+ Title: High level collection request
+ Targets:
+ - Mob: MEDUSA
+ Count: 100
+ - Id: 5177
+ Title: High level collection request
+ Targets:
+ - Mob: PINGUICULA
+ Count: 100
+ - Id: 5178
+ Title: High level collection request
+ Targets:
+ - Mob: MAJORUROS
+ Count: 100
+ - Id: 5179
+ Title: Highest level collection request
+ Targets:
+ - Mob: RAYDRIC
+ Count: 100
+ - Id: 5180
+ Title: Highest level collection request
+ Targets:
+ - Mob: NAGA
+ Count: 100
+ - Id: 5181
+ Title: Highest level collection request
+ Targets:
+ - Mob: ANCIENT_MUMMY
+ Count: 100
+ - Id: 5182
+ Title: Highest level collection request
+ Targets:
+ - Mob: ANCIENT_MIMIC
+ Count: 100
+ - Id: 5222
+ Title: Saving the energy crystals
+ - Id: 5223
+ Title: Saving the energy crystals
+ - Id: 5224
+ Title: Saving the energy crystals
+ - Id: 5225
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 5226
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 5227
+ Title: Saving energy crystal[Stand by]
+ TimeLimit: +2h
+ - Id: 5304
+ Title: Police Chief Kesler
+ - Id: 5305
+ Title: Police Officer Salgran
+ - Id: 5306
+ Title: Police Officer Gerev
+ - Id: 5307
+ Title: Police Officer Seiden
+ - Id: 5308
+ Title: Police Officer Piffs
+ - Id: 5309
+ Title: Police Chief's Request
+ - Id: 5310
+ Title: Salgran's Problem
+ - Id: 5311
+ Title: Gerev's Problem
+ - Id: 5312
+ Title: Seiden's Problem
+ - Id: 5313
+ Title: Piffs's Problem
+ - Id: 5314
+ Title: Salgran's Request
+ Targets:
+ - Mob: ILLEGAL_PROMOTION
+ Count: 10
+ - Id: 5315
+ Title: Gerev's Request
+ - Id: 5316
+ Title: Seiden's Request
+ - Id: 5317
+ Title: Piffs's Request
+ - Id: 5318
+ Title: Come Back Tomorrow
+ TimeLimit: +23h
+ - Id: 5341
+ Title: Restriction on the Journey
+ TimeLimit: +22h
+ - Id: 5342
+ Title: Help Her
+ - Id: 5343
+ Title: Making a Head Count
+ - Id: 5344
+ Title: Making a Head Count
+ - Id: 5345
+ Title: Making a Head Count
+ - Id: 5346
+ Title: Making a Head Count
+ - Id: 5347
+ Title: Finishing a Head Count
+ - Id: 5348
+ Title: Finishing a Head Count
+ - Id: 5349
+ Title: Finishing a Head Count
+ - Id: 5350
+ Title: Finishing a Head Count
+ - Id: 5351
+ Title: Restriction on the Journey
+ TimeLimit: +22h
+ - Id: 5352
+ Title: Air Purifier
+ - Id: 5353
+ Title: Delivered to C-0
+ - Id: 5354
+ Title: Delivered to F-1
+ - Id: 5355
+ Title: Delivered to F-2
+ - Id: 5356
+ Title: Delivered to I-0
+ - Id: 5357
+ Title: Delivered to Z-0
+ - Id: 5358
+ Title: Restriction on the Journey
+ TimeLimit: +22h
+ - Id: 5359
+ Title: Grape Harvest
+ - Id: 5360
+ Title: Grape Delivery
+ - Id: 5361
+ Title: Grape Delivery
+ - Id: 5362
+ Title: Grape Delivery
+ - Id: 5363
+ Title: Restriction on the Journey
+ TimeLimit: +22h
+ - Id: 5364
+ Title: Subdue Hysterical Patients
+ - Id: 5365
+ Title: Urgent News
+ - Id: 5366
+ Title: Restriction on the Journey
+ TimeLimit: +22h
+ - Id: 5367
+ Title: Daily Necessities Transport
+ - Id: 5368
+ Title: Delivered Supplies
+ - Id: 5369
+ Title: Delivered the Message
+ - Id: 5370
+ Title: Memory Record
+ - Id: 5402
+ Title: The Royal Richard
+ - Id: 5403
+ Title: The Royal Richard
+ - Id: 5404
+ Title: "[Repeat]Warrior Discipline-Human"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: DemiHuman
+ MinLevel: 140
+ - Id: 5405
+ Title: "[Repeat]Warrior Discipline-Animal"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Brute
+ MinLevel: 140
+ - Id: 5406
+ Title: "[Repeat]Warrior Discipline-Insect"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Insect
+ MinLevel: 140
+ - Id: 5407
+ Title: "[Repeat]Warrior Discipline-Fish"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Fish
+ MinLevel: 140
+ - Id: 5408
+ Title: "[Repeat]Warrior Discipline-Plant"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Plant
+ MinLevel: 140
+ - Id: 5409
+ Title: "[Repeat]Warrior Discipline-Devil"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Demon
+ MinLevel: 140
+ - Id: 5410
+ Title: "[Repeat]Warrior Discipline-Angel"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Angel
+ MinLevel: 140
+ - Id: 5411
+ Title: "[Repeat]Warrior Discipline-Immortal"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Undead
+ MinLevel: 140
+ - Id: 5412
+ Title: "[Repeat]Warrior Discipline-Intangible"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Formless
+ MinLevel: 140
+ - Id: 5413
+ Title: "[Repeat]Warrior Discipline-Dragon"
+ Targets:
+ - Id: 1
+ Count: 50
+ Race: Dragon
+ MinLevel: 140
+ - Id: 5414
+ Title: "[Stand by]Warrior Discipline"
+ TimeLimit: 4h
+ - Id: 5415
+ Title: Restricted Sector
+ - Id: 5416
+ Title: Restricted Sector A
+ - Id: 5417
+ Title: Restricted Sector B
+ - Id: 5418
+ Title: Restricted Sector C
+ - Id: 5419
+ Title: Restricted Sector D
+ - Id: 5420
+ Title: Restricted Sector E
+ - Id: 5421
+ Title: Restricted Sector F
+ - Id: 5422
+ Title: Restricted Sector G
+ - Id: 5423
+ Title: Restricted Sector H
+ - Id: 5424
+ Title: "[Complete]Restricted Sector"
+ - Id: 5425
+ Title: To My Beloved Fellow
+ - Id: 5426
+ Title: "[Stand by]To My Beloved Fellow"
+ TimeLimit: 4h
+ - Id: 5427
+ Title: "[Repeat]To My Beloved Fellow"
+ - Id: 5428
+ Title: Lowly Standards
+ Drops:
+ - Mob: WATCHER
+ Item: Red_Eyes
+ Rate: 2000
+ - Id: 5429
+ Title: "[Stand by]Lowly Standards"
+ TimeLimit: 4h
+ - Id: 5430
+ Title: "[Repeat]Lowly Standards"
+ Drops:
+ - Mob: WATCHER
+ Item: Red_Eyes
+ Rate: 2000
+ - Id: 5431
+ Title: Clean Life
+ - Id: 5432
+ Title: "[Repeat]Cleaning is complete."
+ - Id: 5433
+ Title: "[Stand by]Clean Life"
+ TimeLimit: 4h
+ - Id: 5434
+ Title: "[Repeat]Clean Life"
+ - Id: 5435
+ Title: "[Repeat]Cleaning is complete."
+ - Id: 5436
+ Title: Finding Lights
+ - Id: 5437
+ Title: "[Stand by]Finding Lights"
+ TimeLimit: 4h
+ - Id: 5438
+ Title: "[Repeat]Finding Lights"
+ - Id: 5439
+ Title: Refreshing Prison Life
+ Drops:
+ - Mob: FROZENWOLF
+ Item: Desiccant
+ Rate: 2000
+ - Id: 5440
+ Title: "[Stand by]Refreshing Prison Life"
+ TimeLimit: 4h
+ - Id: 5441
+ Title: "[Repeat]Refreshing Prison Life"
+ Drops:
+ - Mob: FROZENWOLF
+ Item: Desiccant
+ Rate: 2000
+ - Id: 5442
+ Title: Suppressing Darkness
+ - Id: 5443
+ Title: "[Stand by]Suppressing Darkness"
+ TimeLimit: 4h
+ - Id: 5444
+ Title: "[Repeat]Suppressing Darkness"
+ - Id: 5445
+ Title: Bothersome Little Thing
+ Drops:
+ - Mob: TAFFY
+ Item: Sandpaper
+ Rate: 2000
+ - Id: 5446
+ Title: "[Stand by]Bothersome Little Thing"
+ TimeLimit: 4h
+ - Id: 5447
+ Title: "[Repeat]Bothersome Little Thing"
+ Drops:
+ - Mob: TAFFY
+ Item: Sandpaper
+ Rate: 2000
+ - Id: 5448
+ Title: Request from Chief Guard
+ - Id: 5449
+ Title: Request from Chief Guard
+ - Id: 5450
+ Title: Request from Chief Guard
+ - Id: 5451
+ Title: Request from Chief Guard
+ - Id: 5452
+ Title: "[Stand by]Request from Chief Guard"
+ TimeLimit: 4h
+ - Id: 5453
+ Title: Ungrateful(1)
+ - Id: 5454
+ Title: Ungrateful(2)
+ - Id: 5455
+ Title: Ungrateful(3)
+ - Id: 5456
+ Title: Ungrateful(4)
+ - Id: 5457
+ Title: Find My Sister(1)
+ - Id: 5458
+ Title: Find My Sister(2)
+ - Id: 5459
+ Title: Find My Sister(3)
+ - Id: 5460
+ Title: Blatant Bluff(1)
+ - Id: 5461
+ Title: Blatant Bluff(2)
+ - Id: 5462
+ Title: Blatant Bluff(3)
+ - Id: 5463
+ Title: Mad Love for Wife(1)
+ - Id: 5464
+ Title: Mad Love for Wife(2)
+ - Id: 5465
+ Title: Mad Love for Wife(3)
+ - Id: 5466
+ Title: Mad Love for Wife(4)
+ - Id: 5467
+ Title: Mad Love for Wife(5)
+ - Id: 5468
+ Title: Mad Love for Wife(6)
+ - Id: 5727
+ Title: Suddenly in charge
+ TimeLimit: 4h
+ - Id: 5728
+ Title: Headache
+ - Id: 5729
+ Title: To Einbech
+ - Id: 5730
+ Title: Things that can destroy the device
+ - Id: 5731
+ Title: Clana Namieri
+ - Id: 5732
+ Title: To Lighthalzen
+ - Id: 5733
+ Title: Clana Namieri
+ - Id: 5734
+ Title: Core materials are always a problem
+ - Id: 5735
+ Title: To Yuno
+ - Id: 5736
+ Title: To Einbroch
+ - Id: 5737
+ Title: Clana Namieri
+ - Id: 6000
+ Title: Job Change to Taekwon
+ - Id: 6001
+ Title: Job Change to Taekwon
+ - Id: 6002
+ Title: Job Change to Taekwon
+ - Id: 6005
+ Title: Job Change to Soul-Linker
+ - Id: 6006
+ Title: Job Change to Soul-Linker
+ - Id: 6007
+ Title: Job Change to Soul-Linker
+ - Id: 6008
+ Title: Job Change to Soul-Linker
+ - Id: 6010
+ Title: Job Change to Super Novice
+ - Id: 6015
+ Title: A favor from Cougar
+ - Id: 6016
+ Title: A favor from a Suspicious Man
+ - Id: 6017
+ Title: Red Leopard Joe's Reply
+ - Id: 6018
+ Title: Cougar's Madness
+ - Id: 6020
+ Title: Master Miller's Letter
+ - Id: 6021
+ Title: Wise Bull Horn's voucher
+ - Id: 6022
+ Title: Making a voucher
+ - Id: 6023
+ Title: Wise Bull Horn's Favor
+ - Id: 6024
+ Title: Job Change to Gunslinger!
+ - Id: 6025
+ Title: KVM Guillaume
+ TimeLimit: +5mn
+ - Id: 6026
+ Title: KVM Croix
+ TimeLimit: +5mn
+ - Id: 6027
+ Title: KVM Indicator
+ TimeLimit: +5mn
+ - Id: 7000
+ Title: Job Change to Dancer!
+ - Id: 7001
+ Title: Job Change to Dancer!
+ - Id: 7002
+ Title: Job Change to Dancer!
+ - Id: 7003
+ Title: Job Change to Dancer!
+ - Id: 7004
+ Title: Job Change to Dancer!
+ - Id: 7005
+ Title: Job Change to Dancer!
+ - Id: 7006
+ Title: Job Change to Dancer!
+ - Id: 7007
+ Title: Warrior of the Sun, the Moon, and the Stars
+ - Id: 7008
+ Title: Warrior of the Sun, the Moon, and the Stars - Nature
+ - Id: 7009
+ Title: Warrior of the Sun, the Moon, and the Stars - the Altar
+ - Id: 7010
+ Title: Warrior of the Sun, the Moon, and the Stars - Stars?
+ - Id: 7011
+ Title: Warrior of the Sun, the Moon, and the Stars
+ - Id: 7012
+ Title: Pursuing Rayan Moore
+ - Id: 7013
+ Title: Pursuing Rayan Moore
+ - Id: 7014
+ Title: Pursuing Rayan Moore
+ - Id: 7015
+ Title: Pursuing Rayan Moore
+ - Id: 7016
+ Title: Pursuing Rayan Moore
+ - Id: 7017
+ Title: Pursuing Rayan Moore
+ - Id: 7018
+ Title: Pursuing Rayan Moore
+ - Id: 7019
+ Title: Pursuing Rayan Moore
+ - Id: 7020
+ Title: Pursuing Rayan Moore
+ - Id: 7021
+ Title: Pursuing Rayan Moore
+ - Id: 7022
+ Title: Pursuing Rayan Moore
+ - Id: 7023
+ Title: Pursuing Rayan Moore
+ - Id: 7024
+ Title: Pursuing Rayan Moore
+ - Id: 7025
+ Title: Pursuing Rayan Moore
+ - Id: 7026
+ Title: Pursuing Rayan Moore
+ - Id: 7027
+ Title: Pursuing Rayan Moore
+ - Id: 7028
+ Title: Pursuing Rayan Moore
+ - Id: 7029
+ Title: Pursuing Rayan Moore
+ - Id: 7030
+ Title: Pursuing Rayan Moore
+ - Id: 7031
+ Title: Pursuing Rayan Moore
+ - Id: 7032
+ Title: Pursuing Rayan Moore
+ - Id: 7033
+ Title: Pursuing Rayan Moore
+ - Id: 7034
+ Title: Pursuing Rayan Moore
+ - Id: 7035
+ Title: Pursuing Rayan Moore
+ - Id: 7036
+ Title: Pursuing Rayan Moore
+ - Id: 7037
+ Title: Case closed?
+ - Id: 7038
+ Title: Passion for Baked Sweet Potatoes
+ - Id: 7039
+ Title: Dodging the conversation
+ - Id: 7040
+ Title: Dodging the conversation
+ - Id: 7041
+ Title: Politics is for the Politicians
+ - Id: 7042
+ Title: Part-time Job - Tatacho's feed
+ - Id: 7043
+ Title: Part-time Job - Cornus's feed
+ - Id: 7044
+ Title: Part-time Job - Hillthrion's feed1
+ - Id: 7045
+ Title: Part-time Job - Hillthrion's feed2
+ - Id: 7046
+ Title: Part-time Job - warm rugs
+ - Id: 7047
+ Title: Part-time Job - Let's call it a day!
+ TimeLimit: +5h
+ - Id: 7048
+ Title: Thanatos Tower - Burled's Favor
+ - Id: 7049
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7050
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7051
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7052
+ Title: Thanatos Tower - Sealed Tower
+ - Id: 7053
+ Title: Thanatos Tower - What they want is..
+ - Id: 7054
+ Title: Myu's Favor - Teach them a lesson!
+ Targets:
+ - Mob: KOBOLD_ARCHER
+ Count: 1000
+ - Id: 7055
+ Title: Myu's Favor - Not the cat!
+ Targets:
+ - Mob: WILD_ROSE
+ Count: 1
+ - Id: 7056
+ Title: Messenger - Arc's Favor
+ - Id: 7057
+ Title: Messenger - Arc's Favor
+ - Id: 7058
+ Title: Messenger - Arc's Favor
+ - Id: 7059
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7060
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7061
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7062
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7063
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7064
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7065
+ Title: Messenger - Terra's Whereabouts
+ - Id: 7066
+ Title: Messenger - Prove the Truth
+ - Id: 7067
+ Title: Messenger - Prove the Truth
+ - Id: 7068
+ Title: Messenger - Prove the Truth
+ - Id: 7069
+ Title: Messenger - Too late!
+ - Id: 7070
+ Title: Messenger - Terra's Return
+ - Id: 7071
+ Title: Messenger - Invitation
+ - Id: 7074
+ Title: Rata Hunt
+ Targets:
+ - Mob: RATA
+ Count: 1
+ - Id: 7075
+ Title: Duneyrr Hunt
+ Targets:
+ - Mob: DUNEYRR
+ Count: 1
+ - Id: 7076
+ Title: "Wanted: Dandelion"
+ Targets:
+ - Mob: DANDELION_
+ Count: 1
+ - Id: 7077
+ Title: Collecting Dragon Eggs
+ - Id: 7078
+ Title: Collecting Dragon Eggs
+ TimeLimit: +1d
+ - Id: 7079
+ Title: Finding Refined Bradium
+ - Id: 7080
+ Title: Finding Refined Bradium
+ TimeLimit: +1d
+ - Id: 7081
+ Title: Helping the Laphine Craftsman
+ - Id: 7082
+ Title: Helping the Laphine Craftsman
+ TimeLimit: +1d
+ - Id: 7091
+ Title: An advice of Diora 01
+ - Id: 7092
+ Title: An advice of Diora 02
+ - Id: 7093
+ Title: An advice of Diora 03
+ - Id: 7094
+ Title: An advice of Diora 04
+ - Id: 7095
+ Title: An advice of Diora 05
+ - Id: 7096
+ Title: A proof of new requirement
+ - Id: 7097
+ Title: A proof of new requirement
+ - Id: 7098
+ Title: A proof of new requirement
+ - Id: 7099
+ Title: A proof of new requirement
+ - Id: 7100
+ Title: A message of Bercascell
+ - Id: 7101
+ Title: Special task of an assassin guild 1
+ - Id: 7102
+ Title: Special task of an assassin guild 2
+ - Id: 7103
+ Title: Special task of an assassin guild 3
+ - Id: 7104
+ Title: Special task of an assassin guild 4
+ TimeLimit: +50mn
+ - Id: 7105
+ Title: Special task of an assassin guild 4
+ TimeLimit: +10mn
+ - Id: 7106
+ Title: Special task of an assassin guild 5
+ - Id: 7107
+ Title: Special task of an assassin guild 6
+ TimeLimit: +3h
+ - Id: 7108
+ Title: Special task of an assassin guild 7
+ - Id: 7109
+ Title: Special task of an assassin guild 8
+ - Id: 7110
+ Title: Special task of an assassin guild 9
+ TimeLimit: +10mn
+ Targets:
+ - Mob: HIDEN_PRIEST
+ Count: 1
+ - Id: 7111
+ Title: Special task of an assassin guild 10
+ - Id: 7112
+ Title: Information of Madelle
+ - Id: 7113
+ Title: Information of Crave
+ - Id: 7114
+ Title: Information of Trovan
+ - Id: 7115
+ Title: Information of a peddler
+ - Id: 7116
+ Title: Information of a old man
+ - Id: 7117
+ Title: Your first quest!
+ - Id: 7118
+ Title: Novice Training
+ - Id: 7119
+ Title: Novice Training
+ - Id: 7120
+ Title: Novice Training
+ - Id: 7121
+ Title: Novice Training
+ - Id: 7122
+ Title: First battle - Poring Hunt
+ Targets:
+ - Mob: PORING
+ Count: 1
+ - Id: 7123
+ Title: Battle Basics -Swordman
+ Targets:
+ - Mob: PICKY
+ Count: 2
+ - Id: 7124
+ Title: Battle Basics -Mage
+ Targets:
+ - Mob: LUNATIC
+ Count: 5
+ - Id: 7126
+ Title: Selling items
+ - Id: 7127
+ Title: Battle Basics -Thief
+ Targets:
+ - Mob: WILOW
+ Count: 5
+ - Id: 7128
+ Title: Training course 'conquest a desert!' -start
+ - Id: 7129
+ Title: The training course 'conquer the desert!' - A real battle 1
+ Targets:
+ - Mob: CONDOR
+ Count: 10
+ - Id: 7130
+ Title: The training course 'conquer the desert!' - A real battle 2
+ Targets:
+ - Mob: DESERT_WOLF_B
+ Count: 10
+ - Id: 7131
+ Title: The training course 'conquer the desert!' - A real battle 3
+ Targets:
+ - Mob: SCORPION
+ Count: 5
+ - Id: 7132
+ Title: The training course 'conquer the desert!' - Complete a quest
+ - Id: 7133
+ Title: The training course 'conquer the culvert!' - Start
+ - Id: 7134
+ Title: The training course 'conquer the culvert!' - A real battle 1
+ Targets:
+ - Mob: THIEF_BUG
+ Count: 10
+ - Id: 7135
+ Title: The training course 'conquer the culvert!' - A real battle 2
+ Targets:
+ - Mob: TAROU
+ Count: 10
+ - Id: 7136
+ Title: The training course 'conquer the culvert!' - A real battle 3
+ Targets:
+ - Mob: FARMILIAR
+ Count: 5
+ - Id: 7137
+ Title: The training course 'conquer the culvert!' - Complete a quest
+ - Id: 7138
+ Title: The training course 'conquer the haunted cave!' - Start
+ - Id: 7139
+ Title: The training course 'conquer the haunted cave!' - A real battle 1
+ Targets:
+ - Mob: SKELETON
+ Count: 15
+ - Id: 7140
+ Title: The training course 'conquer the haunted cave!' - A real battle 2
+ Targets:
+ - Mob: POPORING
+ Count: 10
+ - Id: 7141
+ Title: The training course 'conquer the haunted cave!' - Complete a quest
+ - Id: 7142
+ Title: The training course 'conquer ant hell!' - Start
+ - Id: 7143
+ Title: The training course 'conquer ant hell!' - A real battle 1
+ Targets:
+ - Mob: PIERE
+ Count: 15
+ - Id: 7144
+ Title: The training course 'conquer ant hell!' - A real battle 2
+ Targets:
+ - Mob: ANDRE
+ Count: 15
+ - Id: 7145
+ Title: The training course 'conquer ant hell!' - A real battle 3
+ Targets:
+ - Mob: VITATA
+ Count: 10
+ - Id: 7146
+ Title: The training course 'conquer ant hell!' - Complete a quest
+ - Id: 7147
+ Title: The training course 'conquer the orc village!' - start
+ - Id: 7148
+ Title: The training course 'conquer the orc village!' - A real battle 1
+ Targets:
+ - Mob: ORC_BABY
+ Count: 10
+ - Id: 7149
+ Title: The training course 'conquer the orc village!' - A real battle 2
+ Targets:
+ - Mob: ORK_WARRIOR
+ Count: 10
+ - Id: 7150
+ Title: The training course 'conquer the orc village!' - A real battle 3
+ Targets:
+ - Mob: ORC_LADY
+ Count: 10
+ - Id: 7151
+ Title: The training course 'conquer the orc village!' - Complete a quest
+ - Id: 7152
+ Title: The training course 'conquer the orc dungeon!' - start
+ - Id: 7153
+ Title: The training course 'conquer the orc dungeon!' - A real battle 1
+ Targets:
+ - Mob: ORC_ZOMBIE
+ Count: 20
+ - Id: 7154
+ Title: The training course 'conquer the orc dungeon!'- A real battle 2
+ Targets:
+ - Mob: ORC_SKELETON
+ Count: 20
+ - Id: 7155
+ Title: The training course 'conquer the orc dungeon!' - complete a quest
+ - Id: 7156
+ Title: The training course 'conquer an undersea city!' - start
+ - Id: 7157
+ Title: The training course 'conquer an undersea city!' - A real battle 1
+ Targets:
+ - Mob: MERMAN
+ Count: 15
+ - Id: 7158
+ Title: The training course 'conquer an undersea city!' - A real battle 2
+ Targets:
+ - Mob: STROUF
+ Count: 10
+ - Id: 7159
+ Title: The training course 'conquer an undersea city!' - Complete a quest
+ - Id: 7160
+ Title: Mysterious Cryptogram
+ - Id: 7161
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7162
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7163
+ Title: Mysterious Cryptogram - 2nd
+ - Id: 7164
+ Title: Hunt for shadow of deception
+ Targets:
+ - Mob: S_WIND_GHOST
+ Count: 1
+ - Id: 7165
+ Title: Key of deception
+ - Id: 7166
+ Title: Rachel Branch of Shadow Workshop
+ - Id: 7167
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7168
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7169
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7170
+ Title: Mysterious Cryptogram - 3rd
+ - Id: 7171
+ Title: Hunt for shadow of delusion
+ Targets:
+ - Mob: S_SKOGUL
+ Count: 1
+ - Id: 7172
+ Title: Key of delusion
+ - Id: 7173
+ Title: Message to Halled from Paul
+ - Id: 7174
+ Title: Mysterious Cryptogram - 4th
+ - Id: 7175
+ Title: Hunft for shadow of gaiety
+ Targets:
+ - Mob: S_SUCCUBUS
+ Count: 1
+ - Id: 7176
+ Title: Key of Gaiety
+ - Id: 7177
+ Title: A young guy in Lighthalzen
+ - Id: 7178
+ Title: Destination of Deception, Delusion and Gaiety
+ - Id: 7179
+ Title: Vicente, you dare!
+ - Id: 7180
+ Title: Message from Doomk
+ - Id: 7181
+ Title: Karakas's ring
+ - Id: 7182
+ Title: Sapha's Visit
+ - Id: 7183
+ Title: Invitation from Sapha
+ - Id: 7184
+ Title: To El Dicastes!
+ - Id: 7185
+ Title: Inspector Doha
+ - Id: 7186
+ Title: Secret Order from Doha - Investigation
+ - Id: 7187
+ Title: Secret Order from Doha - Shay
+ - Id: 7188
+ Title: Information Gathering - in the Plaza
+ - Id: 7189
+ Title: Information Gathering - in the Factory
+ - Id: 7190
+ Title: Information Gathering - at the Guards
+ - Id: 7191
+ Title: Shay's designation - BK
+ - Id: 7192
+ Title: BK's Information
+ - Id: 7193
+ Title: Dimensional Crack Investigation
+ - Id: 7194
+ Title: What's this bloodstain?
+ - Id: 7195
+ Title: What's this skin piece?
+ - Id: 7196
+ Title: What's this suspicious magic power?
+ - Id: 7197
+ Title: Sapha Certifications?
+ - Id: 7198
+ Title: Audience with Ahat
+ - Id: 7199
+ Title: Secret Order from Ahat
+ - Id: 7200
+ Title: Cheshire's call
+ TimeLimit: +23h
+ - Id: 7201
+ Title: Removing traces
+ - Id: 7202
+ Title: Secret order from Doha - Collect proof
+ - Id: 7203
+ Title: Secret order from Doha - Final Report
+ - Id: 7206
+ Title: New Day for Cheshire
+ - Id: 7207
+ Title: Cheshire's Box
+ - Id: 7208
+ Title: Wait for Cheshire?
+ TimeLimit: +1d
+ - Id: 7209
+ Title: Forget the box.
+ - Id: 7210
+ Title: Daily delivery
+ - Id: 7211
+ Title: Misty Forest Labyrinth Exploration
+ TimeLimit: +2h30mn
+ - Id: 7212
+ Title: Loki's Search
+ - Id: 7213
+ Title: Wandering Protector
+ - Id: 7214
+ Title: "Paradise Advanced: Romeo Training"
+ - Id: 7215
+ Title: "Paradise Advanced: Romeo Hunt 1"
+ Targets:
+ - Mob: STALACTIC_GOLEM
+ Count: 3
+ - Id: 7216
+ Title: "Paradise Advanced: Romeo Hunt 2"
+ Targets:
+ - Mob: STALACTIC_GOLEM
+ Count: 10
+ - Id: 7217
+ Title: "Paradise Advanced: Romeo Hunt 3"
+ - Id: 7218
+ Title: "Paradise Advanced: Romeo Complete"
+ - Id: 7219
+ Title: "Paradise Advanced: Johan Training"
+ - Id: 7220
+ Title: "Paradise Advanced: Johan Hunt 1"
+ Targets:
+ - Mob: WRAITH
+ Count: 20
+ - Id: 7221
+ Title: "Paradise Advanced: Johan Hunt 2"
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 10
+ - Id: 7222
+ Title: "Paradise Advanced: Johan Complete"
+ - Id: 7223
+ Title: "Paradise Advanced: Kiren Training"
+ - Id: 7224
+ Title: "Paradise Advanced: Kiren Hunt 1"
+ Targets:
+ - Mob: PORCELLIO
+ Count: 30
+ - Id: 7225
+ Title: "Paradise Advanced: Removed"
+ Targets:
+ - Mob: NOXIOUS
+ Count: 30
+ - Id: 7226
+ Title: "Paradise Advanced: Kiren Hunt 2 (Part A)"
+ Targets:
+ - Mob: VENOMOUS
+ Count: 30
+ - Id: 7227
+ Title: "Paradise Advanced: Kiren Hunt 2 (Part B)"
+ Targets:
+ - Mob: TEDDY_BEAR
+ Count: 5
+ - Id: 7228
+ Title: "Paradise Advanced: Kiren Complete"
+ - Id: 7229
+ Title: "Paradise Advanced: Naomi Training"
+ - Id: 7230
+ Title: "Paradise Advanced: Naomi Hunt 1"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 7231
+ Title: "Paradise Advanced: Naomi Hunt 2"
+ Targets:
+ - Mob: SIROMA
+ Count: 30
+ - Id: 7232
+ Title: "Paradise Advanced: Naomi Complete"
+ - Id: 7233
+ Title: "Paradise Advanced: Margaret Training"
+ - Id: 7234
+ Title: "Paradise Advanced: Margaret's Favor"
+ - Id: 7235
+ Title: "Paradise Advanced: Margaret Hunt 1"
+ Targets:
+ - Mob: NEPENTHES
+ Count: 1
+ - Id: 7236
+ Title: "Paradise Advanced: Margaret Hunt 2"
+ Targets:
+ - Mob: PINGUICULA
+ Count: 5
+ - Id: 7237
+ Title: "Paradise Advanced: Margaret Complete"
+ - Id: 7238
+ Title: Toren's Errands (Easy)
+ - Id: 7239
+ Title: Toren's Errands (Normal)
+ - Id: 7240
+ Title: Strengthening Equipment
+ - Id: 7241
+ Title: Toren's Errands - Tomorrow
+ TimeLimit: +1d
+ - Id: 7242
+ Title: Play with the baby cat
+ - Id: 7243
+ Title: Nyadventure-Duruduru Compass
+ - Id: 7244
+ Title: Nyadventure-Duruduru Race
+ TimeLimit: +3mn
+ - Id: 7245
+ Title: Nyadventure-Duruduru Race
+ TimeLimit: +3mn
+ - Id: 7246
+ Title: Nyadventure-I'm coming now.
+ - Id: 7247
+ Title: Nyadventure-Stop the Bang!
+ - Id: 7249
+ Title: Nyadventure-Bang! See you next time
+ TimeLimit: +1d
+ - Id: 7250
+ Title: Nyadventure-Hidden Treasure?
+ - Id: 7251
+ Title: Nyadventure-The First piece of Painting
+ - Id: 7252
+ Title: Nyadventure-The Second piece of Painting
+ - Id: 7253
+ Title: Nyadventure-The Third piece of Painting
+ - Id: 7254
+ Title: Nyadventure-The Fourth piece of Painting
+ - Id: 7255
+ Title: Nyadventure-The Fifth piece of Painting
+ - Id: 7256
+ Title: Nyadventure-The Sixth piece of Painting
+ - Id: 7257
+ Title: Nyadventure-Race, Come back tomorrow!
+ TimeLimit: +1d
+ - Id: 7258
+ Title: Nyadventure-Painting completed
+ - Id: 7259
+ Title: Gift from the Mew Bravery Team
+ - Id: 7260
+ Title: The origin of Bugs
+ - Id: 7261
+ Title: Cat Biscuits - Table
+ - Id: 7262
+ Title: Cat Biscuits - Mattress
+ - Id: 7263
+ Title: Cat Biscuits - Grill
+ - Id: 7264
+ Title: To Chef Nyas
+ - Id: 7265
+ Title: Rage of Chef Nyas
+ - Id: 7266
+ Title: Declaration of Chef Nyas
+ - Id: 7267
+ Title: Appointed time with Cleanyang
+ TimeLimit: +1d
+ - Id: 7268
+ Title: Find the Cat's hard biscuits!
+ - Id: 7269
+ Title: Cat Biscuits - Resting Place
+ - Id: 7270
+ Title: Cat Biscuits - Sand
+ - Id: 7271
+ Title: Cat Biscuits - Bottom of the Stairs
+ - Id: 7272
+ Title: Cat Biscuits - Corner
+ - Id: 7273
+ Title: Cat Biscuits - Locker
+ - Id: 7274
+ Title: Cat Biscuits - Foothold
+ - Id: 7275
+ Title: Cat Biscuits - Sand
+ - Id: 7276
+ Title: Promise to deliver more food
+ TimeLimit: +1d
+ - Id: 7281
+ Title: List of Errands
+ - Id: 7282
+ Title: List of Errands
+ - Id: 7283
+ Title: List of Errands
+ - Id: 7284
+ Title: List of Errands
+ - Id: 7285
+ Title: List of Errands
+ - Id: 7286
+ Title: List of Errands
+ - Id: 7287
+ Title: List of Errands
+ - Id: 7288
+ Title: List of Errands
+ - Id: 7289
+ Title: List of Errands
+ - Id: 7290
+ Title: List of Errands
+ - Id: 7291
+ Title: List of Errands
+ - Id: 7292
+ Title: List of Errands
+ - Id: 7293
+ Title: List of Errands
+ - Id: 7294
+ Title: List of Errands
+ - Id: 7295
+ Title: List of Errands
+ - Id: 7296
+ Title: List of Errands
+ - Id: 7297
+ Title: List of Errands
+ - Id: 7298
+ Title: List of Errands
+ - Id: 7299
+ Title: List of Errands
+ - Id: 7300
+ Title: List of Errands
+ - Id: 7301
+ Title: List of Errands
+ - Id: 7302
+ Title: List of Errands
+ - Id: 7303
+ Title: List of Errands
+ - Id: 7304
+ Title: List of Errands
+ - Id: 7305
+ Title: List of Errands
+ - Id: 7306
+ Title: List of Errands
+ - Id: 7307
+ Title: List of Errands
+ - Id: 7308
+ Title: List of Errands
+ - Id: 7309
+ Title: List of Errands
+ - Id: 7310
+ Title: List of Errands
+ - Id: 7311
+ Title: List of Errands
+ - Id: 7312
+ Title: List of Errands
+ - Id: 7313
+ Title: List of Errands
+ - Id: 7314
+ Title: List of Errands
+ - Id: 7315
+ Title: List of Errands
+ - Id: 7316
+ Title: List of Errands
+ - Id: 7317
+ Title: List of Errands
+ - Id: 7318
+ Title: List of Errands
+ - Id: 7319
+ Title: List of Errands
+ - Id: 7320
+ Title: List of Errands
+ - Id: 7321
+ Title: List of Errands
+ - Id: 7322
+ Title: List of Errands
+ - Id: 7323
+ Title: List of Errands
+ - Id: 7324
+ Title: List of Errands
+ - Id: 7325
+ Title: List of Errands
+ - Id: 7326
+ Title: List of Errands
+ - Id: 7327
+ Title: List of Errands
+ - Id: 7328
+ Title: List of Errands
+ - Id: 7329
+ Title: List of Errands
+ - Id: 7330
+ Title: List of Errands
+ - Id: 7331
+ Title: List of Errands
+ - Id: 7332
+ Title: List of Errands
+ - Id: 7333
+ Title: List of Errands
+ - Id: 7334
+ Title: List of Errands
+ - Id: 7335
+ Title: List of Errands
+ - Id: 7336
+ Title: List of Errands
+ - Id: 7337
+ Title: List of Errands
+ - Id: 7338
+ Title: List of Errands
+ - Id: 7339
+ Title: List of Errands
+ - Id: 7340
+ Title: List of Errands
+ - Id: 7341
+ Title: List of Errands
+ - Id: 7342
+ Title: List of Errands
+ - Id: 7343
+ Title: List of Errands
+ - Id: 7344
+ Title: List of Errands
+ - Id: 7345
+ Title: List of Errands
+ - Id: 7346
+ Title: List of Errands
+ - Id: 7349
+ Title: Vote
+ TimeLimit: +30mn
+ - Id: 7350
+ Title: Cautious Village
+ - Id: 7351
+ Title: Better than My Old Button
+ - Id: 7352
+ Title: Sailor Wants a Button
+ - Id: 7353
+ Title: Old Man Wants a Button
+ - Id: 7354
+ Title: Young Man Wants a Button
+ - Id: 7355
+ Title: Merchant Wants a Button
+ - Id: 7356
+ Title: Little Kid Wants a Button
+ - Id: 7357
+ Title: Middle-aged Guy Wants a Button
+ - Id: 7358
+ Title: Why do they want my Buttons?
+ - Id: 7359
+ Title: Deliver Holy Item to Sailor
+ - Id: 7360
+ Title: Deliver Holy Item to Old Man
+ - Id: 7361
+ Title: Deliver Holy Item to Young Man
+ - Id: 7362
+ Title: Deliver Holy Item to Merchant
+ - Id: 7363
+ Title: Deliver Holy Item to Little Kid
+ - Id: 7364
+ Title: Deliver Holy Item to Middle-aged Man
+ - Id: 7365
+ Title: Better than My Old Button-2
+ - Id: 7366
+ Title: Traditional Spiritual Protection and Impudent Girl-1
+ - Id: 7367
+ Title: Traditional Spiritual Protection and Impudent Girl-2
+ TimeLimit: +10mn
+ - Id: 7368
+ Title: Deliver Spiritual Protection-Pedro
+ - Id: 7369
+ Title: Deliver Spiritual Protection-Nardo
+ - Id: 7370
+ Title: Deliver Spiritual Protection-Pandoi
+ - Id: 7371
+ Title: Deliver Spiritual Protection-Woeon
+ - Id: 7372
+ Title: Deliver Spiritual Protection-Talah
+ - Id: 7373
+ Title: Deliver Spiritual Protection-Romel
+ - Id: 7374
+ Title: Love and Spiritual Protection for All
+ - Id: 7375
+ Title: Love and Spiritual Protection Continues
+ TimeLimit: +23h
+ - Id: 7376
+ Title: Old Man and Cast-Iron Caldron-1
+ - Id: 7377
+ Title: Old Man and Cast-Iron Caldron-2
+ - Id: 7378
+ Title: Old Man and Cast-Iron Caldron-Regular Trades
+ TimeLimit: +23h
+ - Id: 7379
+ Title: Peace Preacher
+ - Id: 7380
+ Title: To Smith a Traditional Spiritual Protection
+ - Id: 7381
+ Title: High Demand on Spiritual Protection Material
+ TimeLimit: +23h
+ - Id: 7382
+ Title: Deliver to Pedro
+ - Id: 7383
+ Title: Deliver to Nardo
+ - Id: 7384
+ Title: Deliver to Pandoi
+ - Id: 7385
+ Title: Deliver to Woeon
+ - Id: 7386
+ Title: Deliver to Talah
+ - Id: 7387
+ Title: Deliver to Romel
+ - Id: 7388
+ Title: Maries's Child
+ - Id: 7389
+ Title: Give the Shirt to Maries's Child
+ - Id: 7390
+ Title: Worried about Maries's Child
+ TimeLimit: +23h
+ - Id: 7391
+ Title: Jejeling and Jejellopy
+ Drops:
+ - Mob: JEJELING
+ Item: Jejellopy
+ Rate: 5000
+ - Id: 7392
+ Title: Collect Jejellopy Regularly
+ TimeLimit: +1d
+ - Id: 7393
+ Title: Shiny Silver Blade
+ Targets:
+ - Mob: TIYANAK
+ Count: 10
+ - Mob: MANANANGGAL
+ Count: 10
+ - Id: 7394
+ Title: Shiny Tomorrow
+ TimeLimit: +23h
+ - Id: 7395
+ Title: Ghost on the Ferry Ship
+ - Id: 7396
+ Title: Angry Soul on Ferry Ship
+ - Id: 7397
+ Title: Mumbaki Phong's Advice
+ Drops:
+ - Mob: ENGKANTO
+ Item: Elegant_Flower
+ Rate: 3000
+ - Id: 7398
+ Title: Offering Bouquet Recommended by Mumbaki
+ - Id: 7399
+ Title: Soul Diwata's Story
+ - Id: 7400
+ Title: Mumbaki of Port Malaya
+ - Id: 7401
+ Title: All Aboard for Perry Sailing
+ TimeLimit: +23h
+ - Id: 7402
+ Title: Bouquet for Diwata
+ Drops:
+ - Mob: ENGKANTO
+ Item: Elegant_Flower
+ Rate: 3000
+ - Id: 7403
+ Title: Stabilized Perry
+ - Id: 7404
+ Title: Get Rid of Jejeling
+ Targets:
+ - Mob: JEJELING
+ Count: 20
+ - Id: 7405
+ Title: Get Rid of Jejeling - Same Time Tomorrow
+ TimeLimit: +23h
+ - Id: 7406
+ Title: Agree to Collecting Bones!
+ Drops:
+ - Mob: BUNGISNGIS
+ Item: Evil_Bone
+ Rate: 5000
+ - Mob: TIKBALANG
+ Item: Evil_Bone
+ Rate: 5000
+ - Mob: TIYANAK
+ Item: Evil_Bone
+ Rate: 5000
+ - Id: 7407
+ Title: Purified Bone
+ - Id: 7408
+ Title: Agree to Come Back Tomorrow?
+ TimeLimit: +23h
+ - Id: 7409
+ Title: Cannot Meet Eyes with Him!
+ Targets:
+ - Mob: BUNGISNGIS
+ Count: 10
+ - Id: 7410
+ Title: Teach Another Lesson Tomorrow!
+ TimeLimit: +23h
+ - Id: 7411
+ Title: The traveler, Fome's story
+ - Id: 7412
+ Title: The traveler, Litrip's story
+ - Id: 7413
+ Title: The traveler, Chiba's story
+ - Id: 7414
+ Title: Eclage guard's message
+ - Id: 7415
+ Title: Laphine's Chief of Staff
+ - Id: 7416
+ Title: Waiting to meet
+ TimeLimit: +10mn
+ - Id: 7417
+ Title: Kardui's request
+ - Id: 7418
+ Title: For Eclage 1
+ - Id: 7419
+ Title: For Eclage 2
+ - Id: 7420
+ Title: For Eclage 3
+ - Id: 7421
+ Title: That's enough
+ - Id: 7422
+ Title: Kardui's gift
+ - Id: 7423
+ Title: A rumor about the King 1
+ - Id: 7424
+ Title: A rumor about the King 2
+ - Id: 7425
+ Title: A rumor about the King 3
+ - Id: 7426
+ Title: A rumor about the King 4
+ - Id: 7427
+ Title: At times like this, face it straight on!
+ - Id: 7428
+ Title: Yai of the wild
+ - Id: 7429
+ Title: Wild recent trend!
+ TimeLimit: +23h
+ - Id: 7430
+ Title: Deliveryman that runs through space
+ - Id: 7431
+ Title: A mailman never rests!
+ TimeLimit: +23h
+ - Id: 7432
+ Title: The troublemakers in the land of blooming flowers
+ Targets:
+ - Mob: MENBLATT
+ Count: 5
+ - Mob: PETAL
+ Count: 5
+ - Id: 7433
+ Title: Need constant guidance
+ TimeLimit: +23h
+ - Id: 7434
+ Title: Kardui's big brother
+ - Id: 7435
+ Title: Time for reading the letter
+ TimeLimit: +3mn
+ - Id: 7436
+ Title: Avant the Scholar of Magics
+ - Id: 7437
+ Title: Shenime's favor
+ - Id: 7438
+ Title: Secret sponsorship
+ - Id: 7439
+ Title: The scholar of magics sponsored by Shenime
+ - Id: 7440
+ Title: Minuel's witness
+ - Id: 7441
+ Title: Mail is here!
+ - Id: 7442
+ Title: The identity of the scholar of magics
+ - Id: 7443
+ Title: Interfere with the research!
+ - Id: 7444
+ Title: What Avant was researching
+ - Id: 7445
+ Title: Avant's back
+ - Id: 7446
+ Title: Unfruitful conversation
+ - Id: 7447
+ Title: Dilemma surrounding the Orb
+ - Id: 7448
+ Title: Something's not right
+ - Id: 7449
+ Title: Temptation toward the Orb
+ - Id: 7450
+ Title: Orb's lighting room
+ - Id: 7451
+ Title: Betrayal
+ - Id: 7452
+ Title: Find the chief of staff!
+ - Id: 7453
+ Title: The last of the chief of staff
+ - Id: 7471
+ Title: First time talking after being born
+ - Id: 7472
+ Title: First step towards a new world
+ - Id: 7473
+ Title: Cool drink
+ - Id: 7474
+ Title: Searching for treasure
+ - Id: 7475
+ Title: Discovered the Airship
+ - Id: 7476
+ Title: Discovered the Arena
+ - Id: 7477
+ Title: Bridge to Prontera
+ - Id: 7478
+ Title: Basic Medical Botany
+ - Id: 7479
+ Title: Friend or Foe?
+ - Id: 7480
+ Title: Regarding Thief job
+ - Id: 7481
+ Title: Vicente's class
+ - Id: 7482
+ Title: Vercassel's class
+ - Id: 7483
+ Title: Use the Thief Manual
+ - Id: 7484
+ Title: Shop owner! Order to steal!
+ - Id: 7485
+ Title: Assassin! Use Envenom
+ Targets:
+ - Mob: R_PORING
+ Count: 1
+ - Id: 7486
+ Title: With Lumin
+ - Id: 7487
+ Title: 30 seconds duel
+ TimeLimit: +30s
+ Targets:
+ - Mob: R_PORING
+ Count: 4
+ - Id: 7488
+ Title: Trio set of Fire Elements
+ - Id: 7489
+ Title: Silent liquidation plan
+ - Id: 7490
+ Title: Mushroom soup calling memories
+ - Id: 7491
+ Title: Get away to Paradise!
+ - Id: 7492
+ Title: Invincible pumpkin knight
+ - Id: 7493
+ Title: Battle of 17 vs. 1
+ - Id: 7494
+ Title: Cleanup of the mushroom farm
+ - Id: 7501
+ Title: 1 Suspicious Babe
+ TimeLimit: +4h
+ Targets:
+ - Mob: BABY_STRANGE
+ Count: 1
+ - Id: 7502
+ Title: 10 Suspicious Babes
+ TimeLimit: +4h
+ Targets:
+ - Mob: BABY_STRANGE
+ Count: 10
+ - Id: 7503
+ Title: 30 Suspicious Babes
+ TimeLimit: +4h
+ Targets:
+ - Mob: BABY_STRANGE
+ Count: 30
+ - Id: 7504
+ Title: Destroy 1 Emperium
+ TimeLimit: +4h
+ Targets:
+ - Mob: EMPELIUM
+ Count: 1
+ - Id: 7505
+ Title: Destroy 3 Emperiums
+ TimeLimit: +4h
+ Targets:
+ - Mob: EMPELIUM
+ Count: 3
+ - Id: 7506
+ Title: Destroy 5 Emperiums
+ TimeLimit: +4h
+ Targets:
+ - Mob: EMPELIUM
+ Count: 5
+ - Id: 7507
+ Title: 10 Small Wooden Boxes
+ TimeLimit: +4h
+ - Id: 7508
+ Title: 20 Small Wooden Boxes
+ TimeLimit: +4h
+ - Id: 7509
+ Title: 30 Small Wooden Boxes
+ TimeLimit: +4h
+ - Id: 7510
+ Title: Fight Off a Thief
+ TimeLimit: +4h
+ Targets:
+ - Mob: THIEF_PORING
+ Count: 1
+ - Id: 7511
+ Title: Fight Off 10 Thieves
+ TimeLimit: +4h
+ Targets:
+ - Mob: THIEF_PORING
+ Count: 10
+ - Id: 7512
+ Title: Fight Off 30 Thieves
+ TimeLimit: +4h
+ Targets:
+ - Mob: THIEF_PORING
+ Count: 30
+ - Id: 7513
+ Title: 10 Paychecks
+ TimeLimit: +4h
+ - Id: 7514
+ Title: 20 Paychecks
+ TimeLimit: +4h
+ - Id: 7515
+ Title: 30 Paychecks
+ TimeLimit: +4h
+ - Id: 7516
+ Title: A break for Commercial Development
+ TimeLimit: +20mn
+ - Id: 7517
+ Title: Occupy Valkyrie Realm
+ TimeLimit: +1h
+ - Id: 7518
+ Title: Occupy Luina
+ TimeLimit: +1h
+ - Id: 7519
+ Title: Occupy Britoniah
+ TimeLimit: +1h
+ - Id: 7520
+ Title: Occupy Greenwood Lake
+ TimeLimit: +1h
+ - Id: 7521
+ Title: Occupy Nidabehl
+ TimeLimit: +1h
+ - Id: 7522
+ Title: Occupy Valfreyja
+ TimeLimit: +1h
+ - Id: 7523
+ Title: Occupy Gloria
+ TimeLimit: +1h
+ - Id: 7524
+ Title: Occupy Kafragaten
+ TimeLimit: +1h
+ - Id: 7525
+ Title: Valkyrie Realm Challenge 1
+ Targets:
+ - Mob: CATERPILLAR
+ Count: 50
+ - Mob: CREMY_FEAR
+ Count: 50
+ - Id: 7526
+ Title: Valkyrie Realm Challenge 2
+ Targets:
+ - Mob: GLD_KOBOLD_1
+ Count: 30
+ - Mob: GLD_KOBOLD_2
+ Count: 30
+ - Mob: GLD_KOBOLD_3
+ Count: 30
+ - Id: 7527
+ Title: Valkyrie Realm Challenge 3
+ Targets:
+ - Mob: PYURIEL
+ Count: 1
+ - Mob: LORA
+ Count: 1
+ - Id: 7528
+ Title: Luina Challenge 1
+ Targets:
+ - Mob: ANCIENT_WORM
+ Count: 50
+ - Mob: GIANT_HONET
+ Count: 50
+ - Id: 7529
+ Title: Luina Challenge 2
+ Targets:
+ - Mob: KILLER_MANTIS
+ Count: 40
+ - Mob: ANGRA_MANTIS
+ Count: 50
+ - Id: 7530
+ Title: Luina Challenge 3
+ Targets:
+ - Mob: GIOIA
+ Count: 1
+ - Mob: ELVIRA
+ Count: 1
+ - Id: 7531
+ Title: Britoniah Challenge 1
+ Targets:
+ - Mob: ZOMBIE_MASTER
+ Count: 50
+ - Mob: WRAITH_DEAD
+ Count: 50
+ - Id: 7532
+ Title: Britoniah Challenge 2
+ Targets:
+ - Mob: GLD_DARK_FRAME
+ Count: 20
+ - Mob: GLD_DARK_PRIEST
+ Count: 20
+ - Mob: GLD_DARK_SHADOW
+ Count: 50
+ - Id: 7533
+ Title: Britoniah Challenge 3
+ Targets:
+ - Mob: KADES
+ Count: 1
+ - Mob: RUDO
+ Count: 1
+ - Id: 7534
+ Title: Greenwood Lake Challenge 1
+ Targets:
+ - Mob: GULLINBURSTI
+ Count: 50
+ - Mob: LEIB_OLMAI
+ Count: 50
+ - Id: 7535
+ Title: Greenwood Lake Challenge 2
+ Targets:
+ - Mob: SKELETON_GENERAL
+ Count: 45
+ - Mob: AM_MUT
+ Count: 20
+ - Mob: GAJOMART
+ Count: 25
+ - Id: 7536
+ Title: Greenwood Lake Challenge 3
+ Targets:
+ - Mob: DAEHYON
+ Count: 1
+ - Mob: SOHEON
+ Count: 1
+ - Id: 7537
+ Title: Nidabehl Challenge 1
+ Targets:
+ - Mob: HELL_APOCALIPS
+ Count: 50
+ - Mob: ZAKUDAM
+ Count: 50
+ - Id: 7538
+ Title: Nidabehl Challenge 2
+ Targets:
+ - Mob: SKELETON_GENERAL
+ Count: 35
+ - Mob: AM_MUT
+ Count: 35
+ - Id: 7539
+ Title: Valfreyja Challenge 1
+ Targets:
+ - Mob: BANSHEE_MASTER
+ Count: 50
+ - Mob: BEHOLDER_MASTER
+ Count: 30
+ - Id: 7540
+ Title: Valfreyja Challenge 2
+ Targets:
+ - Mob: AUNOE
+ Count: 50
+ - Mob: FANAT
+ Count: 20
+ - Id: 7541
+ Title: Gloria Challenge 1
+ Targets:
+ - Mob: L_SEYREN
+ Count: 30
+ - Mob: L_EREMES
+ Count: 30
+ - Mob: L_HARWORD
+ Count: 30
+ - Id: 7542
+ Title: Gloria Challenge 2
+ Targets:
+ - Mob: L_KATRINN
+ Count: 30
+ - Mob: L_MAGALETA
+ Count: 30
+ - Mob: L_SHECIL
+ Count: 30
+ - Id: 7543
+ Title: Standby for Valkyrie Realm Challenge 1
+ TimeLimit: +20h
+ - Id: 7544
+ Title: Standby for Valkyrie Realm Challenge 2
+ TimeLimit: +20h
+ - Id: 7545
+ Title: Standby for Valkyrie Realm Challenge 3
+ TimeLimit: +20h
+ - Id: 7546
+ Title: Standby for Luina Challenge 1
+ TimeLimit: +20h
+ - Id: 7547
+ Title: Standby for Luina Challenge 2
+ TimeLimit: +20h
+ - Id: 7548
+ Title: Standby for Luina Challenge 3
+ TimeLimit: +20h
+ - Id: 7549
+ Title: Standby for Britoniah Challenge 1
+ TimeLimit: +20h
+ - Id: 7550
+ Title: Standby for Britoniah Challenge 2
+ TimeLimit: +20h
+ - Id: 7551
+ Title: Standby for Britoniah Challenge 3
+ TimeLimit: +20h
+ - Id: 7552
+ Title: Standby for Greenwood Lake Challenge 1
+ TimeLimit: +20h
+ - Id: 7553
+ Title: Standby for Greenwood Lake Challenge 2
+ TimeLimit: +20h
+ - Id: 7554
+ Title: Standby for Greenwood Lake Challenge 3
+ TimeLimit: +20h
+ - Id: 7555
+ Title: Standby for Nidabehl Challenge 1
+ TimeLimit: +20h
+ - Id: 7556
+ Title: Standby for Nidabehl Challenge 2
+ TimeLimit: +20h
+ - Id: 7557
+ Title: Standby for Valfreyja Challenge 1
+ TimeLimit: +20h
+ - Id: 7558
+ Title: Standby for Valfreyja Challenge 2
+ TimeLimit: +20h
+ - Id: 7559
+ Title: Standby for Gloria Challenge 1
+ TimeLimit: +20h
+ - Id: 7560
+ Title: Standby for Gloria Challenge 2
+ TimeLimit: +20h
+ - Id: 7561
+ Title: Kafragaten Challenge 1
+ Targets:
+ - Mob: L_YGNIZEM
+ Count: 30
+ - Mob: L_WHIKEBAIN
+ Count: 30
+ - Mob: L_ARMAIA
+ Count: 30
+ - Id: 7562
+ Title: Kafragaten Challenge 2
+ Targets:
+ - Mob: L_RAWREL
+ Count: 30
+ - Mob: L_EREND
+ Count: 30
+ - Mob: L_KAVAC
+ Count: 30
+ - Id: 7563
+ Title: Standby for Kafragaten Challenge 1
+ TimeLimit: +20h
+ - Id: 7564
+ Title: Standby for Kafragaten Challenge 2
+ TimeLimit: +20h
+ - Id: 7568
+ Title: Explore the tower
+ TimeLimit: +1h30mn
+ - Id: 7569
+ Title: Treat the injured
+ - Id: 7570
+ Title: Destroy the demons
+ Targets:
+ - Mob: MM_EVIL_SHADOW1
+ Count: 7
+ - Mob: MM_EVIL_SHADOW2
+ Count: 7
+ - Mob: MM_EVIL_SHADOW3
+ Count: 7
+ - Id: 7571
+ Title: Tower Expedition
+ - Id: 7572
+ Title: Lucile...?
+ - Id: 7573
+ Title: Magic Swordman Thanatos
+ - Id: 7574
+ Title: Thanatos Tower
+ - Id: 7576
+ Title: Morocc castle seal
+ - Id: 7577
+ Title: Space distortion
+ TimeLimit: +23h
+ - Id: 7578
+ Title: Rampaging Box
+ Targets:
+ - Mob: E_ANGRY_MIMIC
+ Count: 1
+ Drops:
+ - Mob: E_ANGRY_MIMIC
+ Item: Bradium_Box
+ Rate: 10000
+ - Id: 7579
+ Title: Collecting Bradiums
+ Targets:
+ - Mob: E_ANGRY_MIMIC
+ Count: 10
+ Drops:
+ - Mob: E_ANGRY_MIMIC
+ Item: Bradium_Box
+ Rate: 10000
+ - Id: 7580
+ Title: Collecting Every Day
+ TimeLimit: +23h
+ - Id: 7581
+ Title: Eliminating Risks
+ Targets:
+ - Mob: B_MOROCC_1
+ Count: 1
+ - Mob: B_MOROCC_2
+ Count: 1
+ - Mob: B_MOROCC_4
+ Count: 1
+ - Id: 7582
+ Title: Daily Cleaning
+ TimeLimit: +23h
+ - Id: 7583
+ Title: Collecting Mana
+ Drops:
+ - Mob: B_MOROCC_1
+ Item: Mana_crystal
+ Rate: 10000
+ - Mob: B_MOROCC_2
+ Item: Mana_crystal
+ Rate: 10000
+ - Mob: B_MOROCC_4
+ Item: Mana_crystal
+ Rate: 10000
+ - Id: 7584
+ Title: Unending Battle
+ TimeLimit: +23h
+ - Id: 7593
+ Title: Demon God Subjugation
+ Targets:
+ - Mob: MM_MOROCC_ADT
+ Count: 1
+ - Id: 7594
+ Title: Frost Spider and Fire Wolf
+ Targets:
+ - Mob: MM_BRINARANEA
+ Count: 1
+ - Mob: MM_MUSPELLSKOLL
+ Count: 1
+ - Id: 7595
+ Title: Wandering Orb Magic
+ Targets:
+ - Mob: MM_MANA_WHITE
+ Count: 3
+ - Mob: MM_MANA_RED
+ Count: 3
+ - Mob: MM_MANA_YELLOW
+ Count: 3
+ - Id: 7597
+ Title: Fall of the False God
+ - Id: 7598
+ Title: Caged God
+ TimeLimit: +23h
+ - Id: 7599
+ Title: Unending Hunt
+ TimeLimit: +23h
+ - Id: 7600
+ Title: Promising Tomorrow
+ TimeLimit: +23h
+ - Id: 7606
+ Title: Phantasmagorika Excavator Recruitment
+ - Id: 7607
+ Title: Eden Group Leader
+ - Id: 7608
+ Title: Artnard Excavation Team 1
+ - Id: 7609
+ Title: Artnard Excavation Team 2
+ - Id: 7610
+ Title: Registered Excavator
+ - Id: 7611
+ Title: Passage Cleaning
+ Targets:
+ - Mob: RECON_ROBOT
+ Count: 10
+ - Id: 7612
+ Title: Passage Cleaning - Down
+ TimeLimit: +23h
+ - Id: 7613
+ Title: Eliminating Risks
+ Targets:
+ - Mob: REPAIR_ROBOT
+ Count: 15
+ - Mob: EXPLORATION_ROVER
+ Count: 15
+ - Id: 7614
+ Title: Eliminating Risks - Down
+ TimeLimit: +23h
+ - Id: 7615
+ Title: Core Collection
+ Drops:
+ - Mob: RECON_ROBOT
+ Item: Power_Control_Device
+ Rate: 5000
+ - Mob: REPAIR_ROBOT
+ Item: Power_Control_Device
+ Rate: 5000
+ - Mob: EXPLORATION_ROVER
+ Item: Power_Control_Device
+ Rate: 5000
+ - Id: 7616
+ Title: Core Collection - Down
+ TimeLimit: +23h
+ - Id: 7617
+ Title: Turning In Excavation Report
+ - Id: 7618
+ Title: Reporting the Results - Down
+ TimeLimit: +23h
+ - Id: 7619
+ Title: Assisting the Excavation Team
+ - Id: 7620
+ Title: Young Blood?
+ - Id: 7621
+ Title: Bottling the Energy
+ - Id: 7622
+ Title: Good News!
+ - Id: 7623
+ Title: Artnard's Summon
+ - Id: 7624
+ Title: In Search of a Delicacy
+ - Id: 7625
+ Title: Count On Me
+ - Id: 7626
+ Title: Delicacy for Him
+ - Id: 7627
+ Title: Last Exploration
+ - Id: 7628
+ Title: New Power Source
+ - Id: 7629
+ Title: Tomorrow for Tomorrow's Energy
+ TimeLimit: +23h
+ - Id: 7641
+ Title: Access Permitted
+ - Id: 7642
+ Title: Explore Research facilities
+ - Id: 7643
+ Title: Mysterious Piece
+ - Id: 7644
+ Title: Record Player
+ - Id: 7645
+ Title: Piece of Memory Record
+ - Id: 7646
+ Title: Play Memory Record
+ - Id: 7647
+ Title: Report Memory Record
+ - Id: 7648
+ Title: Memory Records of the Laboratories
+ - Id: 7649
+ Title: Report Memory Record Content
+ - Id: 7650
+ Title: Collect Memory Records of Research facilities
+ - Id: 7651
+ Title: One Memory a Day
+ TimeLimit: +23h
+ - Id: 7652
+ Title: Collect Memory Records of Laboratories
+ - Id: 7653
+ Title: One Memory a Day 2
+ TimeLimit: +23h
+ - Id: 7654
+ Title: Play Research facilities Memory Records
+ - Id: 7655
+ Title: Play Laboratories Memory Records
+ - Id: 7656
+ Title: Invitation of Rekenber
+ - Id: 7681
+ Title: Invitation to Royal Banquet
+ - Id: 7682
+ Title: Socializing Starts from an Eye Contact
+ - Id: 7683
+ Title: Visit the Heines
+ - Id: 7684
+ Title: Visit the Nerius
+ - Id: 7685
+ Title: What Is the Next Thing on the Schedule ?
+ - Id: 7686
+ Title: Nyhill and Skia
+ - Id: 7687
+ Title: Participating in the Banquet
+ - Id: 7688
+ Title: Suspicious Movement
+ - Id: 7689
+ Title: Find Nyhill
+ - Id: 7690
+ Title: Where Is Nyhill?
+ - Id: 7691
+ Title: Waiting for the Ritual
+ - Id: 7692
+ Title: Attend the Ritual
+ - Id: 7693
+ Title: Surprise Attack
+ - Id: 7694
+ Title: I'd Like to See that Too
+ - Id: 7695
+ Title: Escape from the Past Memories of the Royal Family
+ - Id: 7696
+ Title: What's Next?
+ - Id: 7697
+ Title: Invitation from the Nerius
+ - Id: 7698
+ Title: Heine Now
+ - Id: 7699
+ Title: To the Past
+ - Id: 7700
+ Title: Once More!
+ - Id: 7701
+ Title: Lost Imir Heart
+ - Id: 7702
+ Title: Prontera at the Time
+ - Id: 7703
+ Title: Who Knows the Truth
+ - Id: 7705
+ Title: Hope You Cannot Let Go
+ Targets:
+ - Mob: BIJOU
+ Count: 1
+ - Id: 7706
+ Title: Nillem Is Not Almighty
+ TimeLimit: 4h
+ - Id: 7711
+ Title: Beginning
+ - Id: 7712
+ Title: Where am I? Who am I??
+ - Id: 7713
+ Title: First Battle!
+ Targets:
+ - Mob: DR_EGGRING
+ Count: 3
+ - Id: 7714
+ Title: Refreshing Apple Juice
+ - Id: 7715
+ Title: Midding Box
+ Drops:
+ - Mob: DR_EGGRING
+ Item: Merchant_Box_1
+ Rate: 5000
+ - Id: 7716
+ Title: To the Village!
+ - Id: 7717
+ Title: Merchant's Kindness
+ - Id: 7718
+ Title: I'm used to this
+ - Id: 7719
+ Title: Time to Digest
+ Targets:
+ - Mob: RED_PLANT
+ Count: 3
+ - Id: 7720
+ Title: Service Manual
+ - Id: 7721
+ Title: Cat showoff contest
+ TimeLimit: +10mn
+ Targets:
+ - Mob: DR_LUNATIC
+ Count: 3
+ - Mob: DR_FABRE
+ Count: 2
+ - Id: 7722
+ Title: EMT
+ - Id: 7723
+ Title: The potential within
+ - Id: 7731
+ Title: Secret Action
+ - Id: 7732
+ Title: Searching the suspect
+ - Id: 7733
+ Title: Pursuit!
+ - Id: 7734
+ Title: Arrest
+ - Id: 7735
+ Title: Secret Action 2
+ - Id: 7736
+ Title: Small differences between sightseeing and secret bussiness
+ - Id: 7737
+ Title: Together with Rebel
+ - Id: 7738
+ Title: Next operation plan
+ - Id: 7739
+ Title: Find Star of Blessing!
+ - Id: 7740
+ Title: Star of Blessing obtained
+ - Id: 7741
+ Title: Let's return
+ - Id: 7742
+ Title: Sweeping the remnants
+ Targets:
+ - Mob: EP16_2_MM_CUTIE
+ Count: 1
+ - Id: 7743
+ Title: Sweeping the remnants (Standby)
+ TimeLimit: 4h
+ - Id: 7744
+ Title: Hiding Researcher
+ - Id: 7745
+ Title: Hiding Researcher (Standby)
+ TimeLimit: 4h
+ - Id: 7746
+ Title: A pair of old rings
+ - Id: 7747
+ Title: Locket Pendant
+ - Id: 7748
+ Title: Wooden Rosary
+ - Id: 7749
+ Title: Bow Thimble Decoration
+ - Id: 7750
+ Title: Assassin Dagger with Glyph
+ - Id: 7751
+ Title: Portable Sewing Kit
+ - Id: 7752
+ Title: Well hidden
+ - Id: 7753
+ Title: Well hidden
+ - Id: 7754
+ Title: Well hidden
+ - Id: 7755
+ Title: Well hidden
+ - Id: 7756
+ Title: Well hidden
+ - Id: 7757
+ Title: Well hidden
+ - Id: 7758
+ Title: Well hidden
+ - Id: 7759
+ Title: Well hidden
+ - Id: 7760
+ Title: Well hidden
+ - Id: 7761
+ Title: Make Chimeras rest in peace
+ Targets:
+ - Mob: EP16_2_HUMAN_KIMERA
+ Count: 10
+ - Mob: EP16_2_MATTER_KIMERA
+ Count: 10
+ - Id: 7762
+ Title: Make Chimeras rest in peace (Standby)
+ TimeLimit: 4h
+ - Id: 7790
+ Title: Rock Ridge, Land of Opportunities
+ - Id: 7791
+ Title: Problems in Rock Ridge
+ - Id: 7792
+ Title: Problems in Rock Ridge 2
+ - Id: 7793
+ Title: Good News
+ - Id: 7794
+ Title: Expected Response
+ - Id: 7795
+ Title: Negotiation on the Railroad
+ - Id: 7796
+ Title: Unexpected Arrest
+ - Id: 7797
+ Title: Hear Me Out 1
+ - Id: 7798
+ Title: Perfectly Prime
+ - Id: 7799
+ Title: Shawn McCurdy's Weapon 1
+ - Id: 7800
+ Title: Shawn McCurdy's Weapon 2
+ - Id: 7801
+ Title: Shawn McCurdy's Weapon 3
+ Drops:
+ - Mob: PURPLESTONE
+ Item: Purple_Ore
+ Rate: 10000
+ - Id: 7802
+ Title: Hear Me Out 2
+ - Id: 7803
+ Title: Happy for Broken Trust
+ - Id: 7804
+ Title: Location of the Ores
+ - Id: 7805
+ Title: Location of the Ores 2
+ - Id: 7806
+ Title: Location of the Ores 3
+ - Id: 7807
+ Title: Ace up Our Sleeve
+ Targets:
+ - Mob: COWRAIDERS1
+ Count: 3
+ - Mob: COWRAIDERS2
+ Count: 3
+ - Mob: COWRAIDERS3
+ Count: 3
+ - Id: 7808
+ Title: Case Solved
+ - Id: 7809
+ Title: Collecting Ores
+ - Id: 8000
+ Title: Quitting Job Change
+ - Id: 8001
+ Title: Job Change to Assassin
+ - Id: 8002
+ Title: Job Change to Assassin
+ - Id: 8003
+ Title: Job Change to Assassin
+ - Id: 8004
+ Title: Job Change to Assassin
+ - Id: 8005
+ Title: Job Change to Assassin
+ - Id: 8006
+ Title: Find the Guild Master!
+ - Id: 8007
+ Title: Acceptance from the Guild Master
+ - Id: 8008
+ Title: Job Change to Assassin
+ - Id: 8009
+ Title: Applying for Job Change to Priest
+ - Id: 8010
+ Title: Job Change to Priest
+ - Id: 8011
+ Title: Job Change to Priest
+ - Id: 8012
+ Title: Job Change to Priest
+ - Id: 8013
+ Title: Job Change to Priest
+ - Id: 8014
+ Title: Job Change to Priest
+ - Id: 8015
+ Title: Job Change to Priest
+ - Id: 8016
+ Title: Job Change to Priest
+ - Id: 8017
+ Title: Factory Inspection
+ - Id: 8018
+ Title: Factory Inspection
+ - Id: 8019
+ Title: Factory Inspection
+ - Id: 8020
+ Title: Factory Inspection
+ - Id: 8021
+ Title: Factory Inspection
+ - Id: 8022
+ Title: Factory Inspection
+ - Id: 8023
+ Title: Factory Inspection
+ - Id: 8024
+ Title: Factory Inspection
+ - Id: 8025
+ Title: Factory Inspection
+ - Id: 8026
+ Title: Factory Inspection
+ - Id: 8027
+ Title: Factory Inspection
+ - Id: 8028
+ Title: Factory Inspection
+ - Id: 8029
+ Title: Factory Inspection
+ - Id: 8030
+ Title: Factory Inspection
+ - Id: 8031
+ Title: Factory Inspection
+ - Id: 8032
+ Title: Tarlock's Favor
+ - Id: 8033
+ Title: Ferlock's Favor
+ - Id: 8034
+ Title: Ferlock's Favor
+ - Id: 8035
+ Title: How the Airship Works
+ - Id: 8036
+ Title: Hallen's Favor
+ - Id: 8037
+ Title: The Dice Roller
+ - Id: 8038
+ Title: The Dice Roller
+ - Id: 8039
+ Title: Secret of Airships
+ - Id: 8040
+ Title: Secret of Airships
+ - Id: 8041
+ Title: Secret of Airships
+ - Id: 8042
+ Title: Secret of Airships
+ - Id: 8043
+ Title: Secret of Airships
+ - Id: 8044
+ Title: Euslan's Fiancee
+ - Id: 8045
+ Title: Tips from Kaci
+ - Id: 8046
+ Title: Ferlock's Passengers list
+ - Id: 8047
+ Title: Euslan's Favor
+ - Id: 8048
+ Title: Eukran's Testimony
+ - Id: 8049
+ Title: Thierry's Favor
+ - Id: 8050
+ Title: Danger coming on to Thierry
+ - Id: 8051
+ Title: Euslan's Medicine
+ - Id: 8052
+ Title: Thierry's Favor
+ - Id: 8053
+ Title: Find Postell
+ - Id: 8054
+ Title: Message from Postell
+ - Id: 8055
+ Title: Nursing Allen
+ - Id: 8056
+ Title: Little something in return
+ - Id: 8057
+ Title: Grumbling Manainne
+ - Id: 8058
+ Title: Conversation with El Schatt
+ - Id: 8059
+ Title: Conversation with Perfitz
+ - Id: 8060
+ Title: Stubborn El Schatt
+ - Id: 8061
+ Title: Stories of the past
+ - Id: 8062
+ Title: Kanainne
+ - Id: 8063
+ Title: Kanainne's spirit
+ - Id: 8064
+ Title: Cellette's Fish Cake Soup
+ - Id: 8065
+ Title: Cellette's Fish Cake Soup
+ - Id: 8066
+ Title: Cellette's Fish Cake Soup
+ - Id: 8067
+ Title: Cellette's Fish Cake Soup
+ - Id: 8068
+ Title: Cellette's Fish Cake Soup
+ - Id: 8069
+ Title: Cellette's Fish Cake Soup
+ - Id: 8070
+ Title: Cellette's Fish Cake Soup
+ - Id: 8071
+ Title: Cellette's Fish Cake Soup
+ - Id: 8072
+ Title: Cellette's Fish Cake Soup
+ - Id: 8073
+ Title: Cellette's Fish Cake Soup
+ - Id: 8074
+ Title: Cellette's Fish Cake Soup
+ - Id: 8075
+ Title: Cellette's Fish Cake Soup
+ - Id: 8076
+ Title: Klitzer and Calla
+ - Id: 8077
+ Title: Klitzer and Calla
+ - Id: 8078
+ Title: Klitzer and Calla
+ - Id: 8079
+ Title: Klitzer and Calla
+ - Id: 8080
+ Title: Klitzer and Calla
+ - Id: 8081
+ Title: Klitzer and Calla
+ - Id: 8082
+ Title: Klitzer and Calla
+ - Id: 8083
+ Title: Klitzer and Calla
+ - Id: 8084
+ Title: Klitzer and Calla
+ - Id: 8085
+ Title: Klitzer and Calla
+ - Id: 8086
+ Title: Klitzer and Calla
+ - Id: 8087
+ Title: Klitzer and Calla
+ - Id: 8088
+ Title: Klitzer and Calla
+ - Id: 8089
+ Title: Stolen Gemstone
+ - Id: 8090
+ Title: Mr. Manson
+ - Id: 8091
+ Title: Jenny the gardener
+ - Id: 8092
+ Title: Searching the Market
+ - Id: 8093
+ Title: Mysterious Message
+ - Id: 8094
+ Title: Double Crossed?
+ - Id: 8095
+ Title: Find Phobe
+ - Id: 8096
+ Title: Stolen Gemstone Found
+ - Id: 8097
+ Title: Informing Jenny
+ - Id: 8098
+ Title: Keeping the Secret
+ - Id: 8099
+ Title: Vincent's Recommendation
+ - Id: 8100
+ Title: Recommendation from High Priest Zhed
+ - Id: 8101
+ Title: Recommendation from High Priest Zhed
+ - Id: 8102
+ Title: Recommendation from High Priest Zhed
+ - Id: 8103
+ Title: Recommendation from High Priest Zhed
+ - Id: 8104
+ Title: Recommendation from High Priest Zhed
+ - Id: 8105
+ Title: Recommendation from High Priest Zhed
+ - Id: 8106
+ Title: Mr. Shendar's daughter
+ - Id: 8107
+ Title: Lachellen's Testimony
+ - Id: 8108
+ Title: A Foreigner, Katinshuell
+ - Id: 8109
+ Title: Bruspetti's scent
+ - Id: 8110
+ Title: Bruspetti's scent
+ - Id: 8111
+ Title: Lachellen's Testimony
+ - Id: 8112
+ Title: Freya's Spring
+ - Id: 8113
+ Title: Bruspetti's Diary
+ - Id: 8114
+ Title: Bruspetti's Diary
+ - Id: 8115
+ Title: Suspicious Katinshuell
+ - Id: 8116
+ Title: Lachellen's Testimony
+ - Id: 8117
+ Title: Freya's Spring
+ - Id: 8118
+ Title: Conversation with Mr. Shendar
+ - Id: 8119
+ Title: Bruspetti's Diary
+ - Id: 8120
+ Title: Conversation with Katinshuell
+ - Id: 8121
+ Title: Conversation with Katinshuell
+ - Id: 8122
+ Title: Bruspetti's resting place
+ - Id: 8123
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8124
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8125
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8126
+ Title: Ayothaya's world famous dish, Tom Yum Goong
+ - Id: 8127
+ Title: Momotaro Field Trip
+ - Id: 8128
+ Title: Momotaro Field Trip
+ - Id: 8129
+ Title: Momotaro Field Trip
+ - Id: 8130
+ Title: Momotaro Field Trip
+ - Id: 8131
+ Title: The mother of lord in Amatsu
+ - Id: 8132
+ Title: The mother of lord in Amatsu
+ - Id: 8133
+ Title: Song of the fox
+ - Id: 8134
+ Title: Boy at the Northern Shrine
+ - Id: 8135
+ Title: Fox Expelled
+ - Id: 8136
+ Title: The Gray Wolf's Warning
+ - Id: 8137
+ Title: Finding the Keymaker
+ - Id: 8138
+ Title: Blacksmith's Request
+ - Id: 8139
+ Title: The Golden Key
+ - Id: 8140
+ Title: The Red Ring
+ - Id: 8141
+ Title: Mashenka's Red Ring
+ - Id: 8142
+ Title: Searching the Marsh
+ - Id: 8143
+ Title: The Flute's Voice
+ - Id: 8144
+ Title: Ryubaba's Confession
+ - Id: 8145
+ Title: Worried Mother's Request
+ - Id: 8146
+ Title: Finding Lusalka
+ - Id: 8147
+ Title: Lusalka's Beloved
+ - Id: 8148
+ Title: Lusalka's Beloved
+ - Id: 8149
+ Title: Searching for Igor
+ - Id: 8150
+ Title: Igor's message
+ - Id: 8151
+ Title: Marozka's Cave
+ - Id: 8152
+ Title: The Golden Thread
+ - Id: 8153
+ Title: Test of mind and wisdom
+ - Id: 8154
+ Title: The Keymaker
+ - Id: 8155
+ Title: Baba Yaga's Favor
+ - Id: 8156
+ Title: Baba Yaga's Favor
+ - Id: 8157
+ Title: Baba Yaga's Favor
+ - Id: 8158
+ Title: Baba Yaga's Favor
+ - Id: 8159
+ Title: Baba Yaga's Favor
+ - Id: 8160
+ Title: Baba Yaga's Favor
+ - Id: 8161
+ Title: Baba Yaga's Favor
+ - Id: 8162
+ Title: Baba Yaga's Favor
+ - Id: 8163
+ Title: Baba Yaga's Favor
+ - Id: 8164
+ Title: Baba Yaga's Favor
+ - Id: 8165
+ Title: Baba Yaga's Favor
+ - Id: 8166
+ Title: Baba Yaga's Favor
+ - Id: 8167
+ Title: The Golden Key
+ - Id: 8168
+ Title: Koshei, the Immortal
+ - Id: 8169
+ Title: Living and Dead Water
+ - Id: 8170
+ Title: Living and Dead Water
+ - Id: 8171
+ Title: Living and Dead Water
+ - Id: 8181
+ Title: Sight Blaster
+ - Id: 8182
+ Title: Push Back Theory
+ - Id: 8183
+ Title: Sight Blaster
+ - Id: 8184
+ Title: Elemental Converter
+ - Id: 8185
+ Title: Elemental Change
+ - Id: 8186
+ Title: Fire Elemental Change
+ - Id: 8187
+ Title: Earth Elemental Change
+ - Id: 8188
+ Title: Wind Elemental Change
+ - Id: 8189
+ Title: Water Elemental Change
+ - Id: 8190
+ Title: Charming Wink
+ - Id: 8191
+ Title: Charming Advisor
+ - Id: 8192
+ Title: Selfish Advisor
+ - Id: 8193
+ Title: Selfish Advisor
+ - Id: 8194
+ Title: Drunken Advisor
+ - Id: 8195
+ Title: Kind Canell
+ - Id: 8196
+ Title: The Tripartite Union's Feud
+ - Id: 8197
+ Title: Document Delivery
+ - Id: 8198
+ Title: Report to the United Research Official
+ - Id: 8199
+ Title: United Research Official's Favor
+ - Id: 8200
+ Title: Ryosen's Document Requests
+ - Id: 8201
+ Title: Missing Document
+ - Id: 8202
+ Title: Document Restoration
+ - Id: 8203
+ Title: Document Restoration
+ - Id: 8204
+ Title: Ryosen
+ - Id: 8205
+ Title: Report to the United Research Official
+ - Id: 8206
+ Title: Researchers' Meeting
+ - Id: 8207
+ Title: Hansenne is not guilty.
+ - Id: 8208
+ Title: Hansenne's Favor
+ - Id: 8209
+ Title: Hue's Report
+ - Id: 8210
+ Title: Report to the United Research Official
+ - Id: 8211
+ Title: Shurank's Lecture
+ - Id: 8212
+ Title: Shurank's Lecture
+ - Id: 8213
+ Title: Shurank's Lecture
+ - Id: 8214
+ Title: Shurank's Lecture
+ - Id: 8215
+ Title: Shurank's Lecture
+ - Id: 8216
+ Title: Shurank's Order
+ - Id: 8217
+ Title: Dequ'ee's Message
+ - Id: 8218
+ Title: Shurank's Lecture
+ - Id: 8219
+ Title: Shurank's Lecture
+ - Id: 8220
+ Title: Shurank's Lecture
+ - Id: 8221
+ Title: Shurank's Lecture
+ - Id: 8222
+ Title: Shurank's order
+ - Id: 8223
+ Title: Dequ'ee's order
+ - Id: 8224
+ Title: The clue
+ - Id: 8225
+ Title: Dequ'ee's Reasoning
+ - Id: 8226
+ Title: Bankley's Death
+ - Id: 8227
+ Title: Return to Shurank
+ - Id: 8228
+ Title: Shurank's Lecture
+ - Id: 8229
+ Title: Guarnien's Lecture
+ - Id: 8230
+ Title: Guarnien's Lecture
+ - Id: 8231
+ Title: Guarnien's Lecture
+ - Id: 8232
+ Title: Guarnien's Lecture
+ - Id: 8233
+ Title: Guarnien's Lecture
+ - Id: 8234
+ Title: Prontera Market Research
+ - Id: 8235
+ Title: Guarnien's Lecture
+ - Id: 8236
+ Title: Guarnien's Lecture
+ - Id: 8237
+ Title: Guarnien's Lecture
+ - Id: 8238
+ Title: Guarnien's Lecture
+ - Id: 8239
+ Title: Guarnien's Lecture
+ - Id: 8240
+ Title: Guarnien's Lecture
+ - Id: 8241
+ Title: Collection of Red Jewel
+ - Id: 8242
+ Title: Collection of blue Jewel
+ - Id: 8243
+ Title: Learning new languages
+ - Id: 8244
+ Title: Fairies and Tree Giants
+ - Id: 8245
+ Title: Language sample investigation
+ - Id: 8246
+ Title: Language sample investigation
+ - Id: 8247
+ Title: Research progress
+ - Id: 8248
+ Title: Research progress
+ - Id: 8249
+ Title: Compressing Information
+ - Id: 8250
+ Title: Storage Gem
+ - Id: 8251
+ Title: Injection of Magic
+ - Id: 8252
+ Title: Handworked jewels
+ - Id: 8253
+ Title: Language translation device
+ TimeLimit: +1h
+ - Id: 8254
+ Title: with a light heart and body
+ - Id: 8255
+ Title: The test of power for existence
+ - Id: 8256
+ Title: The test of power for existence
+ - Id: 8257
+ Title: Providing food of Teardrop
+ - Id: 8258
+ Title: Providing food of Teardrop
+ - Id: 8259
+ Title: to a place for taking a practical technique test
+ - Id: 8260
+ Title: Mission! Documents delivery
+ - Id: 8261
+ Title: When you play the flute,then the wolf show up!
+ - Id: 8262
+ Title: Ranger master never again
+ - Id: 8265
+ Title: One time a one hour!
+ - Id: 8266
+ Title: Hunting poison spore!
+ Targets:
+ - Mob: POISON_SPORE
+ Count: 10
+ - Id: 8267
+ Title: Hunting smokie!
+ Targets:
+ - Mob: SMOKIE
+ Count: 10
+ - Id: 8268
+ Title: Hunt elder wilow!
+ Targets:
+ - Mob: ELDER_WILOW
+ Count: 10
+ - Id: 8269
+ Title: Hunt coco!
+ Targets:
+ - Mob: COCO
+ Count: 10
+ - Id: 8270
+ Title: Hunt tharafrog!
+ Targets:
+ - Mob: THARA_FROG
+ Count: 10
+ - Id: 8271
+ Title: Toxic sprays delivery!
+ - Id: 8272
+ Title: Deliver a honey!
+ - Id: 8273
+ Title: Deliver a blanket!
+ - Id: 8274
+ Title: Collect bones!
+ - Id: 8275
+ Title: Collect feet!
+ - Id: 8276
+ Title: Collect scell!
+ - Id: 8277
+ Title: Collect tails!
+ - Id: 8278
+ Title: Collect cookies!
+ - Id: 8279
+ Title: Collect mustache!
+ - Id: 9000
+ Title: Job Change to Knight
+ - Id: 9001
+ Title: Loyalty of a Knight
+ - Id: 9002
+ Title: Loyalty of a Knight
+ - Id: 9003
+ Title: The Honor of a Knight
+ - Id: 9004
+ Title: The Honor of a Knight
+ - Id: 9005
+ Title: Tenacity of a Knight
+ - Id: 9006
+ Title: Tenacity of a Knight
+ - Id: 9007
+ Title: The Honor of a Knight
+ - Id: 9008
+ Title: Etiquette as a Knight
+ - Id: 9009
+ Title: Life as a Knight
+ - Id: 9010
+ Title: Quality of reverence
+ - Id: 9011
+ Title: Life as a Knight
+ - Id: 9012
+ Title: Glory of a Knight!
+ - Id: 9013
+ Title: Job Change to Wizard
+ - Id: 9014
+ Title: Job Change to Wizard
+ - Id: 9015
+ Title: Job Change to Wizard
+ - Id: 9016
+ Title: Job Change to Wizard
+ - Id: 9017
+ Title: Job Change to Wizard
+ - Id: 9018
+ Title: Certified as a Wizard!
+ - Id: 9058
+ Title: O'Riley's Request
+ - Id: 9059
+ Title: Happy St. Patrick's Day
+ - Id: 9117
+ Title: Lina's Curse
+ - Id: 9118
+ Title: Lina's Curse - Deviruchi Hunt
+ Targets:
+ - Mob: DEVIRUCHI
+ Count: 50
+ - Id: 9119
+ Title: Lina's Curse - Wraith Dead Hunt
+ Targets:
+ - Mob: WRAITH_DEAD
+ Count: 50
+ - Id: 9120
+ Title: Lina's Curse - Dullahan Hunt
+ Targets:
+ - Mob: DULLAHAN
+ Count: 50
+ - Id: 9121
+ Title: Lina's Curse - Nightmare Terror Hunt
+ Targets:
+ - Mob: NIGHTMARE_TERROR
+ Count: 50
+ - Id: 9122
+ Title: Lina's Curse
+ - Id: 9123
+ Title: Lina's Curse
+ - Id: 9024
+ Title: An errand boy from Einbroch
+ - Id: 9028
+ Title: Strange Hydra
+ - Id: 9029
+ Title: "Strange Hydra : present conditions"
+ TimeLimit: +1d
+ - Id: 9030
+ Title: Find a puppy
+ - Id: 9031
+ Title: Find a puppy
+ - Id: 9032
+ Title: Find a puppy
+ TimeLimit: +1d
+ - Id: 9155
+ Title: Getting materials for the Jaty Crown
+ - Id: 9156
+ Title: Make the Jaty Crown
+ - Id: 9157
+ Title: Reward from Sage, Kasyapa
+ - Id: 9158
+ Title: Delivery of Good News(1)
+ - Id: 9159
+ Title: Back to Paiko
+ - Id: 9160
+ Title: Delivery of Good News(2)
+ - Id: 9161
+ Title: Back to Paiko
+ - Id: 9162
+ Title: Delivery of Good News(3)
+ - Id: 9163
+ Title: Back to Paiko
+ - Id: 9164
+ Title: Delivery of Good News(4)
+ - Id: 9165
+ Title: Reward from Paiko for success of Jaty Crown
+ - Id: 9167
+ Title: Tutorial - Mercenary for Hire
+ - Id: 9168
+ Title: Quest Window Check
+ - Id: 9169
+ Title: Window Shopper Catalogue
+ - Id: 9170
+ Title: Window Shopper Catalogue
+ - Id: 9171
+ Title: Enchanting Items
+ - Id: 9172
+ Title: Enchanted Items
+ - Id: 9173
+ Title: Tutorial Timer Cooldown
+ TimeLimit: +20h
+ - Id: 9222
+ Title: Get Rid of Bangungot from Hospital 2F
+ Targets:
+ - Mob: BANGUNGOT_3
+ Count: 1
+ - Id: 9223
+ Title: Will there be Peace at the Hospital?
+ TimeLimit: +7d
+ - Id: 9224
+ Title: Explore Hospital 2F
+ TimeLimit: +1h
+ - Id: 9225
+ Title: Mystery Robbery Incident 1
+ - Id: 9226
+ Title: Mystery Robbery Incident 2
+ - Id: 9227
+ Title: Mystery Robbery Incident 3
+ - Id: 9228
+ Title: Mystery Robbery Incident 4
+ - Id: 9229
+ Title: Mystery Robbery Incident 5
+ - Id: 9230
+ Title: Mystery Robbery Incident 6
+ - Id: 9231
+ Title: Mystery Robbery Incident 7
+ - Id: 9232
+ Title: Mystery Robbery Incident 8
+ - Id: 9233
+ Title: Mystery Robbery Incident 9
+ - Id: 9234
+ Title: Mystery Robbery Incident 10
+ - Id: 9235
+ Title: Mystery Robbery Incident 11
+ - Id: 9236
+ Title: Mystery Robbery Incident 12
+ - Id: 9237
+ Title: Mystery Robbery Incident 13
+ - Id: 9238
+ Title: Mystery Robbery Incident 14
+ - Id: 9239
+ Title: Mystery Robbery Incident 15
+ - Id: 9240
+ Title: Luen's statement notes
+ - Id: 9241
+ Title: Luen's statement notes
+ - Id: 9242
+ Title: Luen's statement notes
+ - Id: 9243
+ Title: Luen's statement notes
+ - Id: 9244
+ Title: Dames's statement notes
+ - Id: 9245
+ Title: Dames's statement notes
+ - Id: 9246
+ Title: Dames's statement notes
+ - Id: 9247
+ Title: Dames's statement notes
+ - Id: 9248
+ Title: Rosa's statement notes
+ - Id: 9249
+ Title: Rosa's statement notes
+ - Id: 9250
+ Title: Rosa's statement notes
+ - Id: 9251
+ Title: Rosa's statement notes
+ - Id: 9252
+ Title: Observing Poppy
+ - Id: 9253
+ Title: Examining a messy bookshelf
+ - Id: 9254
+ Title: Examining a damaged book
+ - Id: 9255
+ Title: Examining a container for soda cans
+ - Id: 9256
+ Title: Examining a messed up table
+ - Id: 9257
+ Title: Examining a foreign object
+ - Id: 9258
+ Title: Field examination results
+ - Id: 9259
+ Title: Confirming Cruyan's statements
+ Targets:
+ - Mob: MENBLATT
+ Count: 5
+ - Mob: PETAL
+ Count: 30
+ - Id: 9260
+ Title: Survey investigation notes
+ - Id: 9262
+ Title: Mystery Robbery Incident 16
+ - Id: 9264
+ Title: Job change to Mage
+ - Id: 9265
+ Title: Job change to Mage
+ - Id: 9266
+ Title: Job change to Mage
+ - Id: 9267
+ Title: The way to be a strong Mage - 1
+ - Id: 9268
+ Title: The way to be a strong Mage - 2
+ - Id: 9269
+ Title: The way to be a strong Mage - 3
+ - Id: 9270
+ Title: The way to be a strong Mage - 4
+ - Id: 9284
+ Title: Stopping Geffen Gangsters
+ - Id: 9285
+ Title: Beating Geffen Gangsters
+ - Id: 9286
+ Title: Stop Geffen Gangsters
+ - Id: 9287
+ Title: Defeating Geffen Gangsters
+ - Id: 9288
+ Title: Catch a Geffen thief
+ - Id: 9289
+ Title: Get things back from the thief
+ - Id: 9290
+ Title: Participate in Magic competitions
+ - Id: 9291
+ Title: Participate in Magic competitions
+ - Id: 9292
+ Title: Participate in Magic competitions
+ - Id: 9293
+ Title: Register in Magic Competition
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 1
+ - Id: 9294
+ Title: Registration Complete
+ - Id: 9295
+ Title: 1st match of the Tournament has started
+ - Id: 9296
+ Title: 2nd match of the Competition has started
+ - Id: 9297
+ Title: 3rd match of the Competition has started
+ - Id: 9298
+ Title: 4th match of the Competition has started
+ - Id: 9299
+ Title: 5th match of the Competition has started
+ - Id: 9300
+ Title: 6th match of the Competition has started
+ - Id: 9301
+ Title: 7th match of the Competition has started
+ - Id: 9302
+ Title: 8th match of the Competition has started
+ - Id: 9303
+ Title: 9th match of the Competition has started
+ - Id: 9304
+ Title: 10th match of the Competition has started
+ - Id: 9305
+ Title: 11th match of the Competition has started
+ - Id: 9306
+ Title: 12th match of the Competition has started
+ - Id: 9307
+ Title: Final match of the Competition has started
+ - Id: 9308
+ Title: Magic Competition Win~!
+ - Id: 9309
+ Title: Magic Tournament defeat
+ - Id: 9310
+ Title: Encounter Iris
+ - Id: 9311
+ Title: Encounter Chaos
+ - Id: 9312
+ Title: Encounter Lydia
+ - Id: 9313
+ Title: Encounter Fenrir
+ - Id: 9314
+ Title: Encounter Loki
+ - Id: 9315
+ Title: Exploring the dimensional gap
+ TimeLimit: +23h
+ - Id: 9316
+ Title: Re-exploring the crack of spaces
+ TimeLimit: +23h
+ - Id: 9318
+ Title: Pursuing Hiding Morocc
+ Targets:
+ - Mob: EP14_MORS_BOSSB
+ Count: 1
+ - 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
+ Title: Go back to Professor Bernhard
+ TimeLimit: +7d
+ - Id: 9337
+ Title: Wrapping up the Adventure
+ - Id: 9457
+ Title: Solved Anyway
+ - Id: 9458
+ Title: Pipe Cleaning
+ Targets:
+ - Mob: SEAANEMONE
+ Count: 20
+ - Id: 9459
+ Title: Too Early for Pipe Cleaning
+ TimeLimit: 4h
+ - Id: 9460
+ Title: Collecting Ore Fragments
+ Drops:
+ - Mob: COWRAIDERS1
+ Item: Fragment_of_Purple_Ore
+ Rate: 5000
+ - Mob: COWRAIDERS2
+ Item: Fragment_of_Purple_Ore
+ Rate: 5000
+ - Mob: COYOTE
+ Item: Fragment_of_Purple_Ore
+ Rate: 5000
+ - Id: 9461
+ Title: Enough Ores
+ TimeLimit: 4h
+ - Id: 10000
+ Title: To the Prontera Royal Court
+ - Id: 10001
+ Title: Qualification Test
+ - Id: 10002
+ Title: Qualification Review
+ - Id: 10003
+ Title: Instructions on what to do
+ - Id: 10004
+ Title: Interim Report
+ - Id: 10005
+ Title: Prince Eigen Ahrum
+ - Id: 10006
+ Title: Prince Ernst
+ - Id: 10007
+ Title: Prince Poe
+ - Id: 10008
+ Title: Prince Peter
+ - Id: 10009
+ Title: Prince Urugen
+ - Id: 10010
+ Title: Prince Helmut
+ - Id: 10011
+ Title: Prince Erich
+ - Id: 10012
+ Title: Conversation of the two princes
+ - Id: 10013
+ Title: Searching for the unknown girl
+ - Id: 10014
+ Title: Back to Peter
+ - Id: 10015
+ Title: Test 15
+ - Id: 10016
+ Title: A Guest from the Walter Family
+ - Id: 10017
+ Title: Conspiracy
+ - Id: 10018
+ Title: Villainous Ahrum - Poe
+ - Id: 10019
+ Title: Villainous Ahrum - Peter
+ - Id: 10020
+ Title: Villainous Ahrum - Erich
+ - Id: 10021
+ Title: Villainous Ahrum - Urugen
+ - Id: 10022
+ Title: Villainous Ahrum - Helmut
+ - Id: 10023
+ Title: Eigen Ahrum and Ernst -Former-
+ - Id: 10024
+ Title: Eigen Ahrum and Ernst -Latter-
+ - Id: 10025
+ Title: Good-bye, dear!
+ - Id: 10026
+ Title: Reforming Meto
+ - Id: 10027
+ Title: Reforming Meto
+ - Id: 10028
+ Title: Reforming Meto
+ - Id: 10029
+ Title: Reforming Meto
+ - Id: 10030
+ Title: Reforming Meto
+ - Id: 10031
+ Title: Reforming Meto
+ - Id: 10032
+ Title: Reforming Meto
+ - Id: 10033
+ Title: Reforming Meto
+ - Id: 10034
+ Title: Search the knife
+ - Id: 10035
+ Title: Deliver the knife
+ - Id: 10036
+ Title: Material Supply-Candy
+ - Id: 10037
+ Title: Material Supply-Crap Shells
+ - Id: 10038
+ Title: Material Supply-Conch
+ - Id: 10039
+ Title: Material Supply-Fish Tail
+ - Id: 10040
+ Title: Material Supply-White Platter
+ - Id: 10041
+ Title: Material Supply-?
+ - Id: 10042
+ Title: Find the Piano Keys-5 remained
+ - Id: 10043
+ Title: Find the Piano Keys-5 remained
+ - Id: 10044
+ Title: Find the Piano Keys-4 remained
+ - Id: 10045
+ Title: Find the Piano Keyboard-4 remained
+ - Id: 10046
+ Title: Find the Piano Keyboard-3 remained
+ - Id: 10047
+ Title: Find the Piano Keyboard-3 remained
+ - Id: 10048
+ Title: Find the Piano Keyboard-2 remained
+ - Id: 10049
+ Title: Find the Piano Keyboard-2 remained
+ - Id: 10050
+ Title: Find the Piano Keyboard-1 remained
+ - Id: 10051
+ Title: Find the Piano Keyboard-1 remained
+ - Id: 10052
+ Title: Find the Piano Keyboard-To the piano
+ - Id: 10053
+ Title: Find the Piano Keyboard-Fill the empty spot
+ - Id: 10054
+ Title: On the Verge of the Escape-Clint Kana
+ - Id: 10055
+ Title: Understanding the culture of Utan
+ - Id: 10056
+ Title: Learning Utan Language
+ - Id: 10057
+ Title: Onward to the Other World
+ - Id: 10058
+ Title: Onward to the Other World
+ - Id: 10059
+ Title: Onward to the Other World
+ - Id: 10060
+ Title: Onward to the Other World
+ - Id: 10061
+ Title: Onward to the Other World
+ - Id: 10062
+ Title: Onward to the Other World
+ - Id: 10063
+ Title: Onward to the Other World
+ - Id: 10064
+ Title: Onward to the Other World
+ - Id: 10065
+ Title: Onward to the Other World
+ - Id: 10066
+ Title: Onward to the Other World
+ - Id: 10067
+ Title: Onward to the Other World
+ - Id: 10068
+ Title: Onward to the Other World
+ - Id: 10069
+ Title: Onward to the Other World
+ - Id: 10070
+ Title: Onward to the Other World
+ - Id: 10071
+ Title: Onward to the Other World
+ - Id: 10072
+ Title: Onward to the Other World
+ - Id: 10073
+ Title: Onward to the Other World
+ - Id: 10074
+ Title: Onward to the Other World
+ - Id: 10075
+ Title: Onward to the Other World
+ - Id: 10076
+ Title: Onward to the Other World
+ - Id: 10077
+ Title: Onward to the Other World
+ - Id: 10078
+ Title: Onward to the Other World
+ - Id: 10079
+ Title: Escape from the reality, into the broad world
+ - Id: 10080
+ Title: Escape from the reality, into the broad world
+ - Id: 10081
+ Title: Escape from the reality, into the broad world
+ - Id: 10082
+ Title: Escape from the reality, into the broad world
+ - Id: 10083
+ Title: Escape from the reality, into the broad world
+ - Id: 10084
+ Title: Escape from the reality, into the broad world
+ - Id: 10085
+ Title: Escape from the reality, into the broad world
+ TimeLimit: +1d
+ - Id: 10086
+ Title: Escape from the reality, into the broad world
+ - Id: 10087
+ Title: Escape from the reality, into the broad world
+ TimeLimit: +1d
+ - Id: 10088
+ Title: Escape from the reality, into the broad world
+ - Id: 10089
+ Title: Escape from the reality, into the broad world
+ - Id: 10090
+ Title: Job changes to Mechanic
+ - Id: 10091
+ Title: Job changes to Mechanic
+ - Id: 10092
+ Title: Job changes to Mechanic
+ - Id: 10093
+ Title: Job changes to Mechanic
+ - Id: 10094
+ Title: Job changes to Mechanic
+ - Id: 10095
+ Title: Job changes to Mechanic
+ - Id: 10096
+ Title: Job changes to Mechanic
+ - Id: 10097
+ Title: Job changes to Mechanic
+ - Id: 10098
+ Title: Job changes to Mechanic
+ - Id: 10099
+ Title: Job changes to Mechanic
+ - Id: 10100
+ Title: Job changes to Mechanic
+ - Id: 10101
+ Title: Job changes to Mechanic
+ - Id: 10102
+ Title: To client - the chapter of the sphinx dungeon
+ - Id: 10103
+ Title: To client - the chapter of Glast heim
+ - Id: 10104
+ Title: To client - the chapter of Juno
+ - Id: 10105
+ Title: To client - the chapter of a clock tower
+ - Id: 10106
+ Title: "To client - the chapter of localizing "
+ - Id: 10107
+ Title: Sphinx dungeon - Requiem
+ Targets:
+ - Mob: REQUIEM
+ Count: 10
+ - Id: 10108
+ Title: Sphinx dungeon - Marduk
+ Targets:
+ - Mob: MARDUK
+ Count: 10
+ - Id: 10109
+ Title: Sphinx dungeon - Pasana
+ Targets:
+ - Mob: PASANA
+ Count: 10
+ - Id: 10110
+ Title: Glast heim - Dark Frame
+ Targets:
+ - Mob: DARK_FRAME
+ Count: 10
+ - Id: 10111
+ Title: Glast heim - Evil druid
+ Targets:
+ - Mob: EVIL_DRUID
+ Count: 10
+ - Id: 10112
+ Title: Glast heim - Wraith
+ Targets:
+ - Mob: WRAITH
+ Count: 10
+ - Id: 10113
+ Title: Glast Heim - Raydric Archer
+ Targets:
+ - Mob: RAYDRIC_ARCHER
+ Count: 10
+ - Id: 10114
+ Title: Juno - Grand Peco
+ Targets:
+ - Mob: GRAND_PECO
+ Count: 20
+ - Id: 10115
+ Title: Juno - sleeper
+ Targets:
+ - Mob: SLEEPER
+ Count: 20
+ - Id: 10116
+ Title: Juno - Goat
+ Targets:
+ - Mob: GOAT
+ Count: 20
+ - Id: 10117
+ Title: Juno - Harpy
+ Targets:
+ - Mob: HARPY
+ Count: 20
+ - Id: 10118
+ Title: Clock tower - Clock
+ Targets:
+ - Mob: CLOCK
+ Count: 15
+ - Id: 10119
+ Title: Clock tower - Punk
+ Targets:
+ - Mob: PUNK
+ Count: 15
+ - Id: 10120
+ Title: Clock tower - Rideword
+ Targets:
+ - Mob: RIDEWORD
+ Count: 15
+ - Id: 10121
+ Title: Localizing - Uzhas
+ Targets:
+ - Mob: UZHAS
+ Count: 15
+ - Id: 10122
+ Title: Localizing - Miyabi Doll
+ Targets:
+ - Mob: MIYABI_NINGYO
+ Count: 15
+ - Id: 10123
+ Title: Localizing - Mi Gao
+ Targets:
+ - Mob: INCREASE_SOIL
+ Count: 15
+ - Id: 11000
+ Title: Inspection of Odin Shrine
+ - Id: 11001
+ Title: Inspection of Odin Shrine
+ - Id: 11002
+ Title: Inspection of Odin Shrine
+ - Id: 11003
+ Title: Inspection of Odin Shrine
+ - Id: 11004
+ Title: Inspection of Odin Shrine
+ - Id: 11005
+ Title: Inspection of Odin Shrine
+ - Id: 11006
+ Title: Inspection of Odin Shrine
+ - Id: 11007
+ Title: Inspection of Odin Shrine
+ - Id: 11008
+ Title: Inspection of Odin Shrine
+ - Id: 11009
+ Title: Morriphen's Request
+ - Id: 11010
+ Title: Fetching the medicine
+ - Id: 11011
+ Title: Medicine for two
+ - Id: 11012
+ Title: Find Makkie
+ - Id: 11013
+ Title: Red Plant Stem Powder
+ - Id: 11014
+ Title: The researcher's medicine
+ - Id: 11015
+ Title: Siria's cure
+ - Id: 11016
+ Title: Morriphen's story
+ - Id: 11017
+ Title: Exploring Juperos
+ - Id: 11018
+ Title: Exploring Juperos
+ - Id: 11019
+ Title: Exploring Juperos
+ - Id: 11020
+ Title: Exploring Juperos
+ - Id: 11021
+ Title: Exploring Juperos
+ - Id: 11022
+ Title: Exploring Juperos
+ - Id: 11029
+ Title: Going to the Turtle Island..
+ - Id: 11030
+ Title: Going to the Turtle Island..
+ - Id: 11031
+ Title: Going to the Turtle Island..
+ - Id: 11032
+ Title: Going to the Turtle Island..
+ - Id: 11033
+ Title: Going to the Turtle Island..
+ - Id: 11034
+ Title: Going to the Turtle Island..
+ - Id: 11035
+ Title: Going to the Turtle Island..
+ - Id: 11036
+ Title: Going to the Turtle Island..
+ - Id: 11037
+ Title: Going to the Turtle Island..
+ - Id: 11038
+ Title: Meet the Dead
+ - Id: 11039
+ Title: Meet the Dead
+ - Id: 11040
+ Title: Meet the Dead
+ - Id: 11041
+ Title: Meet the Dead
+ - Id: 11042
+ Title: Meet the Dead
+ - Id: 11043
+ Title: Meet the Dead
+ - Id: 11044
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11045
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11046
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11047
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11048
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11049
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11050
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11051
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11052
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11053
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11054
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11055
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11056
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11057
+ Title: Herb Medicine - Being a Doctor's Assistance
+ - Id: 11070
+ Title: Poison King
+ - Id: 11071
+ Title: Poison King
+ - Id: 11072
+ Title: Poison King
+ - Id: 11073
+ Title: Poison King
+ - Id: 11074
+ Title: Poison King
+ - Id: 11075
+ Title: Poison King
+ - Id: 11076
+ Title: Poison King
+ - Id: 11077
+ Title: Poison King
+ - Id: 11078
+ Title: Poison King
+ - Id: 11079
+ Title: Poison King
+ - Id: 11080
+ Title: Poison King
+ - Id: 11081
+ Title: Poison King
+ - Id: 11082
+ Title: Poison King
+ - Id: 11083
+ Title: Poison King
+ - Id: 11084
+ Title: New Surroundings
+ - Id: 11085
+ Title: New Surroundings
+ - Id: 11086
+ Title: New Surroundings
+ - Id: 11087
+ Title: Repairing the Tent
+ - Id: 11088
+ Title: Repairing the Tent
+ - Id: 11089
+ Title: Repairing the Tent
+ - Id: 11090
+ Title: Repairing the Tent
+ - Id: 11091
+ Title: Delivering Supplies
+ - Id: 11092
+ Title: Delivering Supplies
+ - Id: 11093
+ Title: Delivering Supplies
+ - Id: 11094
+ Title: Delivering Supplies
+ - Id: 11095
+ Title: Delivering Supplies
+ - Id: 11096
+ Title: Delivering Supplies
+ - Id: 11097
+ Title: Delivering Supplies
+ - Id: 11098
+ Title: Delivering Supplies
+ - Id: 11099
+ Title: To My Friend
+ - Id: 11100
+ Title: To My Friend
+ - Id: 11101
+ Title: Secret note of Bazet
+ - Id: 11102
+ Title: Secret note of Bazet
+ - Id: 11103
+ Title: Secret note of Bazet
+ - Id: 11104
+ Title: Resting time
+ TimeLimit: +23h
+ - Id: 11105
+ Title: Tendrilrion skin
+ - Id: 11106
+ Title: Job changing to Warlock
+ - Id: 11107
+ Title: Job changing to Warlock
+ - Id: 11108
+ Title: Job changing to Warlock
+ - Id: 11109
+ Title: Job changing to Warlock
+ - Id: 11110
+ Title: Job changing to Warlock
+ - Id: 11111
+ Title: Job changing to Warlock
+ - Id: 11112
+ Title: Job changing to Warlock
+ - Id: 11113
+ Title: Until radering is functioning
+ TimeLimit: +23h
+ - Id: 11114
+ Title: "Request : Hunt Honet"
+ Targets:
+ - Mob: HORNET
+ Count: 10
+ - Id: 11115
+ Title: "Request : Hunt Condor"
+ Targets:
+ - Mob: CONDOR
+ Count: 20
+ - Id: 11116
+ Title: "Request : Hunt Grasshopper's Leg"
+ Targets:
+ - Mob: ROCKER
+ Count: 10
+ - Id: 11117
+ Title: "Request : Hunt Worm tail"
+ Targets:
+ - Mob: WORM_TAIL
+ Count: 20
+ - Id: 11118
+ Title: "Request : Hunt Spore"
+ Targets:
+ - Mob: SPORE
+ Count: 30
+ - Id: 11119
+ Title: "Request : Pest Control"
+ Targets:
+ - Mob: THIEF_BUG_EGG
+ Count: 20
+ - Id: 11120
+ Title: "Request : Hunt Muka"
+ Targets:
+ - Mob: MUKA
+ Count: 20
+ - Id: 11121
+ Title: "Request : Hunt Farmiliar"
+ Targets:
+ - Mob: FARMILIAR
+ Count: 20
+ - Id: 11122
+ Title: "Request : Collect Feather"
+ Targets:
+ - Mob: PECOPECO
+ Count: 30
+ - Id: 11123
+ Title: "Request : Collect Poison Spore"
+ Targets:
+ - Mob: POISON_SPORE
+ Count: 30
+ - Id: 11124
+ Title: "Request : Hunt Honet - Complete"
+ TimeLimit: +1d
+ - Id: 11125
+ Title: "Request : Hunt Condor - Complete"
+ TimeLimit: +1d
+ - Id: 11126
+ Title: "Request : Hunt Grasshopper's Leg - Complete"
+ TimeLimit: +1d
+ - Id: 11127
+ Title: "Request : Hunt Worm Tail - Complete"
+ TimeLimit: +1d
+ - Id: 11128
+ Title: "Request : Hunt Spore - Complete"
+ TimeLimit: +1d
+ - Id: 11129
+ Title: "Request : Pest Control - Complete"
+ TimeLimit: +1d
+ - Id: 11130
+ Title: "Request : Hunt Muka - Complete"
+ TimeLimit: +1d
+ - Id: 11131
+ Title: "Request : Hunt Farmiliar - Complete"
+ TimeLimit: +1d
+ - Id: 11132
+ Title: "Request : Collect Feather - Complete"
+ TimeLimit: +1d
+ - Id: 11133
+ Title: "Request : Collect Poison Spore - Complete"
+ TimeLimit: +1d
+ - Id: 11135
+ Title: Looking for Maestro Song
+ - Id: 11136
+ Title: Looking for Maestro Song
+ - Id: 11137
+ Title: Looking for Maestro Song
+ - Id: 11138
+ Title: Looking for Maestro Song
+ - Id: 11139
+ Title: Looking for Maestro Song
+ - Id: 11140
+ Title: The sky, plane and travel sickness.
+ - Id: 11141
+ Title: Human & gossip is towarding to the bar
+ - Id: 11142
+ Title: Fearful metalic sound
+ - Id: 11143
+ Title: Thanatos tower
+ - Id: 11144
+ Title: "Juno manager : click"
+ - Id: 11145
+ Title: "I want to get the "
+ Targets:
+ - Mob: TEDDY_BEAR
+ Count: 33
+ - Id: 11146
+ Title: to ice tunnel...
+ - Id: 11147
+ Title: Lared's dew
+ - Id: 11148
+ Title: Toward Comodo with the bow
+ - Id: 11149
+ Title: Just pour the water. Pour! Pour!...
+ - Id: 11150
+ Title: Looking for Maestro Song
+ - Id: 11151
+ Title: Looking for Maestro Song
+ - Id: 11152
+ Title: to the quiet place!...
+ - Id: 11153
+ Title: Missing watch top
+ - Id: 11154
+ Title: I will remember the memories with you....
+ - Id: 11155
+ Title: undefinable battler
+ - Id: 11156
+ Title: annoying homework
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 100
+ - Id: 11157
+ Title: "Helmes valley "
+ - Id: 11158
+ Title: On the way for meditation
+ - Id: 11159
+ Title: Story of Brian
+ - Id: 11160
+ Title: Story of John
+ - Id: 11161
+ Title: Story of Tyler
+ - Id: 11162
+ Title: Story of Rose
+ - Id: 11163
+ Title: Story of Bain
+ - Id: 11164
+ Title: Story of Lash
+ - Id: 11165
+ Title: Delivery to Brian
+ - Id: 11166
+ Title: Delivery to John
+ - Id: 11167
+ Title: Delivery to Tyler
+ - Id: 11168
+ Title: Delivery to Rose
+ - Id: 11169
+ Title: Delivery to Bain
+ - Id: 11170
+ Title: Delivery to Lash
+ - Id: 11171
+ Title: Request from Frede
+ - Id: 11172
+ Title: Request from Frede
+ - Id: 11173
+ Title: Request from Frede
+ - Id: 11174
+ Title: Supply Shortage
+ - Id: 11175
+ Title: Supply Shortage
+ TimeLimit: +2h
+ - Id: 11176
+ Title: For my friends
+ - Id: 11182
+ Title: Theore's Report
+ TimeLimit: +1mn
+ - Id: 11183
+ Title: Theore's Favor
+ - Id: 11184
+ Title: Runaway Laphine
+ - Id: 11185
+ Title: Pouch
+ - Id: 11186
+ Title: Pouch
+ - Id: 11187
+ Title: Pouch
+ - Id: 11188
+ Title: Pouch
+ - Id: 11189
+ Title: Roast Beef
+ - Id: 11190
+ Title: Roast Beef
+ - Id: 11191
+ Title: Shortage of Roast Beef
+ - Id: 11192
+ Title: Mora Village...
+ - Id: 11193
+ Title: Sonya's Friend
+ - Id: 11194
+ Title: Runaway Laphine
+ - Id: 11195
+ Title: Pouch
+ - Id: 11196
+ Title: Pouch
+ - Id: 11197
+ Title: Pouch
+ - Id: 11198
+ Title: Mora Village...
+ - Id: 11199
+ Title: Theo's Friend
+ - Id: 11200
+ Title: Pouch
+ - Id: 11201
+ Title: Roast Beef
+ - Id: 11202
+ Title: Roast Beef
+ - Id: 11203
+ Title: Shortage of Roast Beef
+ - Id: 11204
+ Title: Mora Village...
+ - Id: 11205
+ Title: Pauchon's Friend
+ - Id: 11206
+ Title: Quick Delivery Yoneseu
+ - Id: 11207
+ Title: A Very Heavy Burden
+ - Id: 11208
+ Title: Daphne
+ - Id: 11209
+ Title: Hardships of Thomas
+ - Id: 11210
+ Title: Malangdo Reunion
+ - Id: 11211
+ Title: Malangdo Reunion
+ - Id: 11212
+ Title: Malangdo Reunion
+ - Id: 11213
+ Title: Malangdo Reunion
+ - Id: 11214
+ Title: Malangdo Reunion
+ - Id: 11215
+ Title: Malangdo Reunion
+ - Id: 11216
+ Title: Malangdo Reunion
+ - Id: 11217
+ Title: Malangdo Reunion
+ - Id: 11218
+ Title: Malangdo Reunion
+ - Id: 11219
+ Title: Malangdo Reunion
+ - Id: 11220
+ Title: Malangdo Reunion
+ - Id: 11221
+ Title: Repair of cracks
+ - Id: 11222
+ Title: Repair of cracks
+ - Id: 11223
+ Title: Repair of cracks
+ - Id: 11224
+ Title: Repair of cracks
+ - Id: 11225
+ Title: Repair of cracks
+ - Id: 11226
+ Title: Repair of cracks
+ - Id: 11227
+ Title: Repair of cracks
+ - Id: 11228
+ Title: Repair of cracks
+ - Id: 11229
+ Title: Repair of cracks
+ - Id: 11230
+ Title: Repair of cracks
+ - Id: 11231
+ Title: Repair of cracks
+ - Id: 11232
+ Title: Repair of cracks
+ - Id: 11233
+ Title: Repair of cracks
+ - Id: 11234
+ Title: Repair of cracks
+ - Id: 11235
+ Title: Repair of cracks
+ - Id: 11236
+ Title: Repair of cracks
+ - Id: 11237
+ Title: Repair of cracks
+ - Id: 11238
+ Title: Malangdo Fruits
+ - Id: 11239
+ Title: Malangdo Fruits
+ TimeLimit: +23h
+ - Id: 11240
+ Title: Repair of cracks
+ - Id: 11241
+ Title: Repair of cracks
+ - Id: 11242
+ Title: Repair of cracks
+ - Id: 11243
+ Title: Repair of cracks
+ TimeLimit: +23h
+ - Id: 11244
+ Title: Soft Jelly
+ - Id: 11245
+ Title: Soft Jelly
+ TimeLimit: +23h
+ - Id: 11255
+ Title: Otter Ssamsun
+ - Id: 11284
+ Title: Nurse at Port Malaya-1
+ - Id: 11285
+ Title: Nurse at Port Malaya-2
+ - Id: 11286
+ Title: Nurse at Port Malaya-3
+ - Id: 11287
+ Title: Nurse at Port Malaya-4
+ - Id: 11288
+ Title: Nurse at Port Malaya-5
+ - Id: 11289
+ Title: Nurse at Port Malaya-6
+ - Id: 11290
+ Title: Nurse at Port Malaya-7
+ - Id: 11291
+ Title: Nurse at Port Malaya-8
+ - Id: 11292
+ Title: Nurse at Port Malaya-9
+ - Id: 11293
+ Title: Nurse at Port Malaya-10
+ - Id: 11294
+ Title: Nurse at Port Malaya-11
+ - Id: 11295
+ Title: Nurse at Port Malaya-12
+ - Id: 11296
+ Title: Nurse at Port Malaya-13
+ - Id: 11297
+ Title: Nurse at Port Malaya-14
+ - Id: 11298
+ Title: Nurse at Port Malaya-15
+ - Id: 11299
+ Title: Nurse at Port Malaya-16
+ - Id: 11300
+ Title: Nurse at Port Malaya-17
+ - Id: 11301
+ Title: Nurse at Port Malaya-18
+ - Id: 11302
+ Title: Nurse at Port Malaya-19
+ - Id: 11303
+ Title: Nurse at Port Malaya-20
+ - Id: 11304
+ Title: Nurse at Port Malaya-21
+ - Id: 11305
+ Title: Nurse at Port Malaya-22
+ - Id: 11306
+ Title: Nurse at Port Malaya-23
+ - Id: 11307
+ Title: Nurse at Port Malaya-24
+ - Id: 11308
+ Title: Nurse at Port Malaya-25
+ - Id: 11309
+ Title: Nurse at Port Malaya-26
+ Targets:
+ - Mob: BANGUNGOT_3
+ Count: 1
+ - Id: 11310
+ Title: Eclage's Entrance
+ TimeLimit: +30s
+ - Id: 11311
+ Title: Eclage's Entrance
+ - Id: 11312
+ Title: Goliath
+ - Id: 11313
+ Title: Goliath
+ - Id: 11314
+ Title: Goliath
+ - Id: 11315
+ Title: And time keeps on flowing
+ - Id: 11316
+ Title: And time keeps on flowing
+ - Id: 11317
+ Title: And time keeps on flowing
+ - Id: 11318
+ Title: And time keeps on flowing
+ - Id: 11319
+ Title: And time keeps on flowing
+ - Id: 11320
+ Title: And time keeps on flowing
+ - Id: 11321
+ Title: And time keeps on flowing
+ - Id: 11322
+ Title: And time keeps on flowing
+ - Id: 11323
+ Title: And time keeps on flowing
+ - Id: 11324
+ Title: And time keeps on flowing
+ - Id: 11325
+ Title: The chicken or the egg
+ - Id: 11326
+ Title: The chicken or the egg
+ - Id: 11327
+ Title: The chicken or the egg
+ - Id: 11328
+ Title: The chicken or the egg
+ - Id: 11329
+ Title: The chicken or the egg
+ - Id: 11330
+ Title: The chicken or the egg
+ - Id: 11331
+ Title: The chicken or the egg
+ - Id: 11332
+ Title: The chicken or the egg
+ - Id: 11333
+ Title: Red seed and green seed
+ - Id: 11334
+ Title: Red seed and green seed
+ - Id: 11335
+ Title: Dreaming boy
+ - Id: 11336
+ Title: Dreaming boy
+ - Id: 11337
+ Title: Dreaming boy
+ - Id: 11338
+ Title: Conversation with Subino
+ - Id: 11339
+ Title: The most delicious on earth
+ Targets:
+ - Mob: PORING
+ Count: 10
+ - Id: 11340
+ Title: Carrots are delicious!
+ Targets:
+ - Mob: LUNATIC
+ Count: 10
+ - Id: 11341
+ Title: Rolling Fabre's clothing
+ Targets:
+ - Mob: FABRE
+ Count: 10
+ - Id: 11342
+ Title: Antidote Material~
+ Targets:
+ - Mob: HORNET
+ Count: 10
+ - Id: 11343
+ Title: Conversation with Alice
+ - Id: 11344
+ Title: Barrier!!
+ Targets:
+ - Mob: PUPA
+ Count: 5
+ - Id: 11345
+ Title: Conversation with Alice
+ - Id: 11346
+ Title: Acolyte_damped creatures(LV.13)
+ - Id: 11347
+ Title: Acolyte_soft bone(LV.18)
+ - Id: 11348
+ Title: Acolyte_Solid bone(LV.23)
+ - Id: 11349
+ Title: Dimensional Travel
+ - Id: 11350
+ Title: Dimensional Travel
+ - Id: 11351
+ Title: Dimensional Travel
+ - Id: 11352
+ Title: Dimensional Travel
+ - Id: 11353
+ Title: Dimensional Travel
+ - Id: 11354
+ Title: Specimen Collection
+ - Id: 11355
+ Title: Specimen Collection
+ Targets:
+ - Mob: FIREPIT
+ Count: 20
+ - Id: 11356
+ Title: Specimen Collection
+ - Id: 11357
+ Title: Specimen Collection
+ Targets:
+ - Mob: SONIA
+ Count: 25
+ - Id: 11358
+ Title: Specimen Collection
+ - Id: 11359
+ Title: Antidote
+ - Id: 11360
+ Title: Antidote
+ - Id: 11361
+ Title: Antidote
+ - Id: 11362
+ Title: Antidote
+ - Id: 11363
+ Title: To Phantasmagorika!
+ - Id: 11364
+ Title: To Phantasmagorika!
+ - Id: 11365
+ Title: To Phantasmagorika!
+ - Id: 11366
+ Title: To Phantasmagorika!
+ - Id: 11367
+ Title: Looking for the Traces
+ - Id: 11368
+ Title: Looking for the Traces
+ - Id: 11369
+ Title: Looking for the Traces
+ - Id: 11370
+ Title: Looking for the Traces
+ - Id: 11371
+ Title: Looking for the Traces
+ - Id: 11372
+ Title: Looking for the Traces
+ - Id: 11373
+ Title: Looking for the Traces
+ - Id: 11374
+ Title: Looking for the Traces
+ - Id: 11375
+ Title: Looking for the Traces
+ - Id: 11376
+ Title: Let the Specialists Handle It
+ - Id: 11377
+ Title: Act of Kindness
+ TimeLimit: +1d
+ - Id: 11378
+ Title: "Trick or treat "
+ - Id: 11379
+ Title: Final Room
+ TimeLimit: +23h
+ - Id: 11380
+ Title: Final Room
+ Targets:
+ - Mob: T_W_O
+ Count: 1
+ - Id: 11381
+ Title: Vestige
+ - Id: 11382
+ Title: Vestige
+ - Id: 11383
+ Title: Vestige
+ - Id: 11384
+ Title: Vestige
+ - Id: 11385
+ Title: Vestige
+ - Id: 11386
+ Title: Vestige
+ - Id: 11387
+ Title: Vestige
+ - Id: 11388
+ Title: Vestige
+ - Id: 11389
+ Title: Vestige
+ - Id: 11394
+ Title: Call of the Royal Head Chef
+ - Id: 11395
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11396
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11397
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11398
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11399
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11400
+ Title: The Geoborgs
+ - Id: 11401
+ Title: The Geoborgs
+ - Id: 11402
+ Title: The Geoborgs
+ - Id: 11403
+ Title: The Geoborgs
+ - Id: 11404
+ Title: The Geoborgs
+ - Id: 11405
+ Title: The Geoborgs
+ - Id: 11406
+ Title: The Geoborgs
+ - Id: 11407
+ Title: The Geoborgs
+ - Id: 11408
+ Title: The Geoborgs
+ - Id: 11409
+ Title: The Geoborgs
+ - Id: 11410
+ Title: The Geoborgs
+ - Id: 11411
+ Title: The Geoborgs
+ - Id: 11412
+ Title: The Geoborgs
+ - Id: 11413
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11414
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11415
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11416
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11417
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11418
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11419
+ Title: Why Should I Prepare for the Banquets?
+ Drops:
+ - Mob: GLASS_PLATE
+ Item: Luxurious_Dish
+ Rate: 3000
+ - Id: 11420
+ Title: Why Should I Prepare for the Banquets?
+ - Id: 11421
+ Title: "Banquet: Unexpected Sauce"
+ - Id: 11422
+ Title: Complete Today's Sauce
+ TimeLimit: 4h
+ - Id: 11423
+ Title: "Banquet: Griffin Barbecue"
+ - Id: 11424
+ Title: "Banquet: Griffin Barbecue"
+ - Id: 11425
+ Title: Complete Today's Grilled Griffin
+ TimeLimit: 4h
+ - Id: 11426
+ Title: "Banquet: Washing 15 Dishes"
+ Drops:
+ - Mob: GLASS_PLATE
+ Item: Luxurious_Dish
+ Rate: 3000
+ - Id: 11427
+ Title: Complete Today's Dish Collecting
+ TimeLimit: 4h
+ - Id: 11428
+ Title: Ingredient for the Sauce
+ - Id: 11429
+ Title: Ingredient for the Sauce
+ - Id: 11430
+ Title: Ingredient for the Sauce
+ - Id: 11431
+ Title: Ingredient for the Sauce
+ - Id: 11435
+ Title: Vigilante Corp
+ - Id: 11436
+ Title: Vigilante Corp
+ - Id: 11437
+ Title: Vigilante Corp
+ - Id: 11438
+ Title: Vigilante Corp
+ - Id: 11439
+ Title: Vigilante Corp
+ - Id: 11440
+ Title: Vigilante Corp
+ - Id: 11441
+ Title: Vigilante Corp
+ - Id: 11442
+ Title: Vigilante Corp
+ - Id: 11443
+ Title: Vigilante Corp
+ - Id: 11444
+ Title: Vigilante Corp
+ Drops:
+ - Mob: DR_RODA_FROG
+ Item: Luxurious_Cloth
+ Rate: 5000
+ - Id: 11445
+ Title: Vigilante Corp
+ - Id: 11454
+ Title: Doubt
+ - Id: 11455
+ Title: Doubt
+ - Id: 11456
+ Title: Doubt
+ - Id: 11457
+ Title: Doubt
+ - Id: 11458
+ Title: Doubt
+ - Id: 11459
+ Title: Doubt
+ - Id: 11460
+ Title: Doubt
+ - Id: 11461
+ Title: Doubt
+ - Id: 11462
+ Title: Doubt
+ - Id: 11463
+ Title: You said the party is ready?
+ - Id: 11464
+ Title: You said the party is ready?
+ - Id: 11465
+ Title: Dien's High Class Tea
+ Targets:
+ - Mob: EP16_2_H_HUNTER_EV
+ Count: 1
+ Drops:
+ - Mob: EP16_2_H_HUNTER_EV
+ Item: High_Class_Tea
+ Rate: 10000
+ - Id: 11466
+ Title: Dien's High Class Tea
+ TimeLimit: 4h
+ - Id: 11467
+ Title: Ridsh's Old Letter
+ Targets:
+ - Mob: EP16_2_H_HUNTER_V
+ Count: 1
+ Drops:
+ - Mob: EP16_2_H_HUNTER_V
+ Item: Old_Letter
+ Rate: 5000
+ - Id: 11468
+ Title: Ridsh's Old Letter
+ TimeLimit: 4h
+ - Id: 11469
+ Title: Cotness's Shiny Ring
+ Targets:
+ - Mob: EP16_2_H_HUNTER_MD
+ Count: 5
+ Drops:
+ - Mob: EP16_2_H_HUNTER_MD
+ Item: Very_Shining_Ring
+ Rate: 5000
+ - Id: 11470
+ Title: Cotness's Shiny Ring
+ TimeLimit: 4h
+ - Id: 12000
+ Title: An old friend
+ - Id: 12001
+ Title: Digotz, Maku's old friend
+ - Id: 12002
+ Title: Messenger of Friendship
+ - Id: 12003
+ Title: Digotz's message
+ - Id: 12004
+ Title: Maku's other friend
+ - Id: 12005
+ Title: Benkaistein
+ - Id: 12006
+ Title: Benkaistein's lost item
+ - Id: 12007
+ Title: Kazien
+ - Id: 12008
+ Title: Researcher Garins
+ - Id: 12009
+ Title: Failed mission
+ - Id: 12010
+ Title: No entrance
+ - Id: 12011
+ Title: Lyozien
+ - Id: 12012
+ Title: Meet Mr. Ahman
+ - Id: 12013
+ Title: Delivery complete
+ - Id: 12014
+ Title: More missions
+ - Id: 12015
+ Title: Ghalstein
+ - Id: 12016
+ Title: Sneaking into the Laboratory
+ - Id: 12017
+ Title: Membership approved
+ - Id: 12018
+ Title: Meeting the President
+ - Id: 12019
+ Title: The President's Mission
+ - Id: 12020
+ Title: Rescuing a Secret Wing Member
+ - Id: 12021
+ Title: The Sealed File Folder
+ - Id: 12022
+ Title: The Sealed File Folder
+ - Id: 12023
+ Title: Shinokas the researcher
+ - Id: 12024
+ Title: Kafra Corporation Agent
+ - Id: 12025
+ Title: Rekenber's Secret Archive
+ - Id: 12026
+ Title: Rekenber's Secret Archive
+ - Id: 12027
+ Title: Rekenber's Secret Archive
+ - Id: 12028
+ Title: Kurelle the traitor
+ - Id: 12029
+ Title: Lost Engagement Ring
+ - Id: 12030
+ Title: Engagement Ring Found
+ - Id: 12031
+ Title: Find Annon
+ - Id: 12032
+ Title: Searching for Annon
+ - Id: 12033
+ Title: Traces of blood
+ - Id: 12034
+ Title: Annon's side of the story
+ - Id: 12035
+ Title: Holy Threads
+ - Id: 12036
+ Title: The Stone Slate Message
+ - Id: 12037
+ Title: Holier Threads
+ - Id: 12038
+ Title: Searching for the Sa-mhing Tiger
+ - Id: 12039
+ Title: Boonthom's Comrade
+ - Id: 12040
+ Title: Benkaistein's Journal
+ - Id: 12041
+ Title: Benkaistein's Journal
+ - Id: 12042
+ Title: Benkaistein's Journal
+ - Id: 12043
+ Title: Pass to the Slums
+ - Id: 12044
+ Title: Soothing a crying child 1
+ - Id: 12045
+ Title: Soothing a crying child 2
+ - Id: 12046
+ Title: Soothing a crying child 3
+ - Id: 12047
+ Title: Soothing a crying child 4
+ - Id: 12048
+ Title: Soothing a crying child 5
+ - Id: 12049
+ Title: Job Quest 1 - Rogue
+ - Id: 12050
+ Title: Job Quest 2 - Rogue
+ - Id: 12051
+ Title: Job Quest 3 - Rogue
+ - Id: 12052
+ Title: Job Quest 4 - Rogue
+ - Id: 12053
+ Title: Job Quest 5 - Rogue
+ - Id: 12054
+ Title: Job Quest 6 - Rogue
+ - Id: 12055
+ Title: Job Quest - Assassin
+ - Id: 12056
+ Title: Job Quest - Assassin
+ - Id: 12057
+ Title: Pass to the Lab
+ - Id: 12058
+ Title: Admission Restricted to the 102 Tower
+ TimeLimit: +7d
+ - Id: 12059
+ Title: Orc's Memory Time Limit
+ TimeLimit: +2h
+ - Id: 12060
+ Title: Today's Fishing Closed
+ TimeLimit: +1d
+ - Id: 12061
+ Title: Concentration
+ TimeLimit: +10s
+ - Id: 12062
+ Title: Today's Mining Closed
+ TimeLimit: +1d
+ - Id: 12070
+ Title: Limited time for enter
+ TimeLimit: +4h
+ - Id: 12071
+ Title: Stamp a seal on the attendance book
+ TimeLimit: +1d
+ - Id: 12072
+ Title: Hunt tharafrog
+ Targets:
+ - Mob: THARA_FROG
+ Count: 20
+ - Id: 12073
+ Title: Remove Cruiser
+ Targets:
+ - Mob: CRUISER
+ Count: 15
+ - Id: 12074
+ Title: Remove Kukre
+ Targets:
+ - Mob: KUKRE
+ Count: 30
+ - Id: 12075
+ Title: Remove orcbaby
+ Targets:
+ - Mob: ORC_BABY
+ Count: 15
+ - Id: 12076
+ Title: Remove orcwarroir
+ Targets:
+ - Mob: ORK_WARRIOR
+ Count: 20
+ - Id: 12077
+ Title: Hunt vadon
+ Targets:
+ - Mob: VADON
+ Count: 15
+ - Id: 12078
+ Title: Hunt Megalodon
+ Targets:
+ - Mob: MEGALODON
+ Count: 30
+ - Id: 12079
+ Title: Hunt Marse
+ Targets:
+ - Mob: MARSE
+ Count: 15
+ - Id: 12080
+ Title: Hunt Cornutus
+ Targets:
+ - Mob: CORNUTUS
+ Count: 20
+ - Id: 12081
+ Title: Remove Myst
+ Targets:
+ - Mob: MYST
+ Count: 15
+ - Id: 12082
+ Title: Hunt shellfish
+ Targets:
+ - Mob: SHELLFISH
+ Count: 30
+ - Id: 12083
+ Title: Hunt Marine sphere
+ Targets:
+ - Mob: MARINE_SPHERE
+ Count: 15
+ - Id: 12084
+ Title: Hunt Phen
+ Targets:
+ - Mob: PHEN
+ Count: 20
+ - Id: 12085
+ Title: Remove orcskeleton
+ Targets:
+ - Mob: ORC_SKELETON
+ Count: 15
+ - Id: 12086
+ Title: Remove Zenorc
+ Targets:
+ - Mob: ZENORC
+ Count: 30
+ - Id: 12087
+ Title: Remove mummy
+ Targets:
+ - Mob: MUMMY
+ Count: 15
+ - Id: 12088
+ Title: Accomplishing a request
+ - Id: 12090
+ Title: Mysterious guy
+ - Id: 12091
+ Title: Just save the burning heart
+ - Id: 12092
+ Title: Long lasting story
+ - Id: 12093
+ Title: the record the intelligence Lyoda left
+ - Id: 12094
+ Title: The damaged shield letter
+ - Id: 12096
+ Title: Towards Karakas
+ - Id: 12097
+ Title: Basic preparation
+ - Id: 12098
+ Title: Tour of dungeon
+ - Id: 12099
+ Title: Remove Root Cause
+ Targets:
+ - Mob: DRACO_EGG
+ Count: 10
+ - Id: 12100
+ Title: Violent Winged Insect
+ Targets:
+ - Mob: LUCIOLA_VESPA
+ Count: 12
+ - Id: 12101
+ Title: Work Interference
+ Targets:
+ - Mob: DRACO
+ Count: 5
+ - Id: 12102
+ Title: Intelligent Snakes
+ Targets:
+ - Mob: NAGA
+ Count: 10
+ - Id: 12103
+ Title: Legendary Creature
+ Targets:
+ - Mob: CORNUS
+ Count: 1
+ - Id: 12104
+ Title: Insects with an Appetite
+ Targets:
+ - Mob: CENTIPEDE
+ Count: 15
+ - Id: 12105
+ Title: Moving Rocks
+ Targets:
+ - Mob: BRADIUM_GOLEM
+ Count: 10
+ - Id: 12106
+ Title: A child on a flower
+ Targets:
+ - Mob: PINGUICULA
+ Count: 15
+ - Id: 12107
+ Title: Twisted Love
+ Targets:
+ - Mob: PINGUICULA_D
+ Count: 10
+ - Id: 12108
+ Title: Dangerous Plant Removal
+ Targets:
+ - Mob: NEPENTHES
+ Count: 12
+ - Id: 12109
+ Title: Larva Extermination
+ Targets:
+ - Mob: CENTIPEDE_LARVA
+ Count: 14
+ - Id: 12110
+ Title: Demon of Water
+ Targets:
+ - Mob: AQUA_ELEMENTAL
+ Count: 7
+ - Id: 12111
+ Title: Bird with ugly face
+ Targets:
+ - Mob: TATACHO
+ Count: 10
+ - Id: 12117
+ Title: Withered Flower
+ - Id: 12118
+ Title: Welcomed Mineral
+ - Id: 12119
+ Title: Valuable Textile
+ - Id: 12120
+ Title: Curious Meat
+ - Id: 12121
+ Title: Materials to Clear Snow
+ - Id: 12122
+ Title: Best Cooler Material
+ - Id: 12123
+ Title: Best Paint
+ - Id: 12124
+ Title: Rare Valuable
+ - Id: 12125
+ Title: Armory Material
+ - Id: 12126
+ Title: Advanced Armory Material
+ - Id: 12127
+ Title: Supervisor's Tool
+ - Id: 12128
+ Title: Preparation for Heating
+ - Id: 12129
+ Title: Suspicious Food
+ - Id: 12130
+ Title: Useful Material
+ - Id: 12131
+ Title: Essential Material for Construction
+ - Id: 12132
+ Title: Essential Material for Construction 2
+ - Id: 12133
+ Title: Decoration arrangement
+ - Id: 12134
+ Title: Instant Receptacle
+ - Id: 12135
+ Title: Not enough medicine
+ - Id: 12136
+ Title: Honey robber
+ - Id: 12137
+ Title: Tools for Experiment
+ - Id: 12138
+ Title: Fine Gift Samples
+ - Id: 12139
+ Title: Respect for Taste!
+ - Id: 12140
+ Title: Courtesy for Regulars
+ - Id: 12141
+ Title: Special Package
+ - Id: 12142
+ Title: Dangerous Request
+ - Id: 12143
+ Title: Strange Trend
+ - Id: 12144
+ Title: Unknown Usage
+ - Id: 12145
+ Title: Other World Cuisine
+ - Id: 12146
+ Title: Filling in Cracks
+ - Id: 12147
+ Title: Adhesive Material
+ - Id: 12148
+ Title: Bait for Tatacho Hunting
+ - Id: 12149
+ Title: Swordmanship Practice
+ - Id: 12150
+ Title: Pretty reddish vegetable
+ - Id: 12151
+ Title: Tenacity of the pub owner
+ - Id: 12152
+ Title: Tastes like home cooking
+ - Id: 12153
+ Title: Hazardous plant when burnt
+ - Id: 12154
+ Title: Unexpectedly Normal
+ - Id: 12155
+ Title: Gift with heart
+ - Id: 12156
+ Title: Respect personal appetite!
+ - Id: 12157
+ Title: Resolution of the pub owner
+ - Id: 12158
+ Title: Rage of the pub owner
+ - Id: 12159
+ Title: Quest record from Laponte
+ TimeLimit: +23h
+ - Id: 12160
+ Title: Quest record from Kalipo
+ TimeLimit: +23h
+ - Id: 12161
+ Title: Quest record from Pura
+ TimeLimit: +23h
+ - Id: 12162
+ Title: Quest record from Tragis
+ TimeLimit: +23h
+ - Id: 12163
+ Title: Quest record from Calyon
+ TimeLimit: +23h
+ - Id: 12164
+ Title: Quest record from Moltuka
+ TimeLimit: +23h
+ - Id: 12165
+ Title: Dizziness
+ TimeLimit: +6h
+ - Id: 12166
+ Title: Tree Root Doc.
+ - Id: 12167
+ Title: Reptile Tongue Doc.
+ - Id: 12168
+ Title: Scorpion Tail Doc.
+ - Id: 12169
+ Title: Stem Doc.
+ - Id: 12170
+ Title: Pointed Scale Doc.
+ - Id: 12171
+ Title: Resin Doc.
+ - Id: 12172
+ Title: Spawn Doc.
+ - Id: 12173
+ Title: Jellopy Doc.
+ - Id: 12174
+ Title: Fish Tail Doc.
+ - Id: 12175
+ Title: Worm Peeling Doc.
+ - Id: 12176
+ Title: Gill Doc.
+ - Id: 12177
+ Title: Tooth of Bat Doc.
+ - Id: 12178
+ Title: Fluff Doc.
+ - Id: 12179
+ Title: Chrysalis Doc.
+ - Id: 12180
+ Title: Feather of Birds Doc.
+ - Id: 12181
+ Title: Talon Document Doc.
+ - Id: 12182
+ Title: Sticky Webfoot Doc.
+ - Id: 12183
+ Title: Animal Skin Doc.
+ - Id: 12184
+ Title: Wolf Claw Doc.
+ - Id: 12185
+ Title: Mushroom Spore Doc.
+ - Id: 12186
+ Title: Orc's Fang Doc.
+ - Id: 12187
+ Title: Evil Horn Doc.
+ - Id: 12188
+ Title: Powder of Butterfly Doc.
+ - Id: 12189
+ Title: Bill of Birds Doc.
+ - Id: 12190
+ Title: Snake Scale Doc.
+ - Id: 12191
+ Title: Insect Feeler Doc.
+ - Id: 12192
+ Title: Immortal Heart Doc.
+ - Id: 12193
+ Title: Rotten Bandage Doc.
+ - Id: 12194
+ Title: Decayed Nail Doc.
+ - Id: 12195
+ Title: Horrendous Mouth Doc.
+ - Id: 12196
+ Title: Tentacle Doc.
+ - Id: 12197
+ Title: Shell Doc.
+ - Id: 12198
+ Title: Scale Shell Doc.
+ - Id: 12199
+ Title: Venom Canine Doc.
+ - Id: 12200
+ Title: Sticky Mucus Doc.
+ - Id: 12201
+ Title: Bee Sting Doc.
+ - Id: 12202
+ Title: Grasshopper's Leg Doc.
+ - Id: 12203
+ Title: Royal Jelly Doc.
+ - Id: 12204
+ Title: Yoyo Tail Doc.
+ - Id: 12205
+ Title: Solid Shell Doc.
+ - Id: 12206
+ Title: Yam Doc.
+ - Id: 12207
+ Title: Raccoon Leaf Doc.
+ - Id: 12208
+ Title: Snail's Shell Doc.
+ - Id: 12209
+ Title: Horn Doc.
+ - Id: 12210
+ Title: Bear's Footskin Doc.
+ - Id: 12211
+ Title: Feather Doc.
+ - Id: 12212
+ Title: Red Herb Doc.
+ - Id: 12213
+ Title: Carrot Doc.
+ - Id: 12214
+ Title: Cactus Needle Doc.
+ - Id: 12215
+ Title: Stone Heart Doc.
+ - Id: 12216
+ Title: Pouty Jahbong
+ TimeLimit: +6h
+ - Id: 12217
+ Title: Request - Traces of wild boar hunt
+ - Id: 12218
+ Title: How to make lava elixir
+ - Id: 12219
+ Title: How to creat flame elixir
+ - Id: 12220
+ Title: How to create glaicer elixir
+ - Id: 12221
+ Title: How to create fossil elixir
+ - Id: 12222
+ Title: How to create storm elixir
+ - Id: 12225
+ Title: Pom Spider Hunting
+ Targets:
+ - Mob: POM_SPIDER
+ Count: 3
+ - Id: 12226
+ Title: Angra Mantis Hunting
+ Targets:
+ - Mob: ANGRA_MANTIS
+ Count: 4
+ - Id: 12227
+ Title: Parus Hunting
+ Targets:
+ - Mob: PARUS
+ Count: 5
+ - Id: 12228
+ Title: Little Fatam Hunting
+ Targets:
+ - Mob: LITTLE_FATUM
+ Count: 6
+ - Id: 12229
+ Title: Miming Hunting
+ Targets:
+ - Mob: MIMING
+ Count: 7
+ - Id: 12230
+ Title: Mora Monster Hunt
+ TimeLimit: +23h
+ - Id: 12231
+ Title: Insect Feeler Collecting
+ - Id: 12232
+ Title: Immortal Heart Collecting
+ - Id: 12233
+ Title: Rotten Bandage Collecting
+ - Id: 12234
+ Title: Orcish Voucher Collecting
+ - Id: 12235
+ Title: Skeleton Bone Collecting
+ - Id: 12236
+ Title: Memento Collecting
+ - Id: 12237
+ Title: Shell Collecting
+ - Id: 12238
+ Title: Scale Shell Collecting
+ - Id: 12239
+ Title: Venom Canine Collecting
+ - Id: 12240
+ Title: Sticky Mucus Collecting
+ - Id: 12241
+ Title: Mora Item Request 1
+ TimeLimit: +23h
+ - Id: 12242
+ Title: Mora Item Request 2
+ TimeLimit: +23h
+ - Id: 12243
+ Title: Missing Information on Tajareu
+ - Id: 12244
+ Title: Missing Information on Tokenizer
+ - Id: 12245
+ Title: Missing Information on Mesile
+ - Id: 12246
+ Title: Missing Information on Noir
+ - Id: 12247
+ Title: Missing Information on Pajama God
+ - Id: 12248
+ Title: Missing Information on Mendel
+ - Id: 12249
+ Title: Missing Information on Miles
+ - Id: 12250
+ Title: Missing Information on Kunmune
+ - Id: 12251
+ Title: Missing Information on Chayihokin
+ - Id: 12252
+ Title: Missing Information on Tuale
+ - Id: 12253
+ Title: Missing Person Search Time Limit
+ TimeLimit: +23h
+ - Id: 12254
+ Title: Now it's cleaning
+ TimeLimit: +1h
+ - Id: 12255
+ Title: Hunt deep sea crab
+ Targets:
+ - Mob: MD_CRAB
+ Count: 20
+ - Id: 12256
+ Title: Hunt deep sea squid
+ Targets:
+ - Mob: MD_MARSE
+ Count: 20
+ - Id: 12257
+ Title: Hunt Ancient crustacean
+ Targets:
+ - Mob: MD_VADON
+ Count: 20
+ - Id: 12258
+ Title: Hunt deep sea shell
+ Targets:
+ - Mob: MD_SHELLFISH
+ Count: 20
+ - Id: 12259
+ Title: Hunt ancient kukre
+ Targets:
+ - Mob: MD_KUKRE
+ Count: 20
+ - Id: 12260
+ Title: Hunt deep sea conch
+ Targets:
+ - Mob: MD_CORNUTUS
+ Count: 20
+ - Id: 12261
+ Title: Hunt deep sea horse
+ Targets:
+ - Mob: MD_MARC
+ Count: 30
+ - Id: 12262
+ Title: Hunt ancient sword fish
+ Targets:
+ - Mob: MD_SWORD_FISH
+ Count: 30
+ - Id: 12263
+ Title: Hunt ancient sea god
+ Targets:
+ - Mob: MD_STROUF
+ Count: 30
+ - Id: 12264
+ Title: Hunt mutation anolian
+ Targets:
+ - Mob: MD_ANOLIAN
+ Count: 30
+ - Id: 12265
+ Title: Hunt deep sea mermaid
+ Targets:
+ - Mob: MD_OBEAUNE
+ Count: 30
+ - Id: 12266
+ Title: Hunt transformable kapha
+ Targets:
+ - Mob: MD_KAPHA
+ Count: 30
+ - Id: 12267
+ Title: Hunt weird coelacanth
+ Targets:
+ - Mob: COELACANTH_N_M
+ Count: 1
+ - Id: 12268
+ Title: Hunt dark coelacanth
+ Targets:
+ - Mob: COELACANTH_N_A
+ Count: 1
+ - Id: 12269
+ Title: Hunt Cruel coelacanth
+ Targets:
+ - Mob: COELACANTH_H_A
+ Count: 1
+ - Id: 12270
+ Title: Hunt mutation coelacanth
+ Targets:
+ - Mob: COELACANTH_H_M
+ Count: 1
+ - Id: 12271
+ Title: In progress general culvert single day service
+ TimeLimit: +23h
+ - Id: 12272
+ Title: In progress hard culvert single day service
+ TimeLimit: +23h
+ - Id: 12273
+ Title: In progress general culvert weekly service
+ TimeLimit: +6d17h
+ - Id: 12274
+ Title: In progress hard culvert weekly service
+ TimeLimit: +6d17h
+ - Id: 12278
+ Title: Towards Bakonawa Lake...
+ TimeLimit: +7d
+ - Id: 12279
+ Title: Get Rid of Bakonawa
+ Targets:
+ - Mob: BAKONAWA_3
+ Count: 1
+ - Id: 12280
+ Title: A suspicious prisoner
+ - Id: 12281
+ Title: An unwanted favor
+ - Id: 12282
+ Title: Gossip king Clever
+ - Id: 12283
+ Title: The rift researcher
+ - Id: 12284
+ Title: A cat merchant's source of information
+ - Id: 12285
+ Title: A way to calm down a cat
+ - Id: 12286
+ Title: Information traded for some canned foods
+ - Id: 12287
+ Title: A weird experience
+ - Id: 12288
+ Title: A successful experience
+ - Id: 12289
+ Title: Another visitation
+ - Id: 12290
+ Title: Clever's historical documents
+ - Id: 12291
+ Title: Hidden historical documents (?)
+ - Id: 12292
+ Title: The unknown ones
+ - Id: 12293
+ Title: Figures in history
+ - Id: 12294
+ Title: Tour of Eclage
+ - Id: 12295
+ Title: Error
+ - Id: 12296
+ Title: Fun times with the reactor
+ - Id: 12297
+ Title: Encountering Etran
+ - Id: 12298
+ Title: Two wishes
+ - Id: 12299
+ Title: Revisiting Robert
+ - Id: 12300
+ Title: Revisiting Etran
+ - Id: 12301
+ Title: Two remaining friends
+ - Id: 12302
+ Title: Salim Hamid
+ - Id: 12303
+ Title: Applicant for trader
+ - Id: 12304
+ Title: Introduction to merchantology
+ - Id: 12305
+ Title: About the capability figure
+ - Id: 12306
+ Title: Experience of disounts
+ - Id: 12307
+ Title: Way to the Merchant
+ - Id: 12308
+ Title: Removal of Worm Tails
+ - Id: 12309
+ Title: Removal of Boa
+ - Id: 12310
+ Title: Removal of Spore
+ - Id: 12311
+ Title: Removal of Pirate Skeletons
+ - Id: 12312
+ Title: Supplementary to the theory lesson
+ - Id: 12313
+ Title: About stats
+ - Id: 12314
+ Title: About skills
+ - Id: 12316
+ Title: Meeting Hugin
+ - Id: 12317
+ Title: Trace of Time Travel
+ TimeLimit: +23h
+ - Id: 12318
+ Title: Corrupted Soul Hunt
+ Targets:
+ - Mob: MG_CORRUPTION_ROOT
+ Count: 1
+ - Id: 12319
+ Title: Amdarais Hunt
+ Targets:
+ - Mob: MG_AMDARAIS
+ Count: 1
+ - Id: 12320
+ Title: Time Traveler
+ - Id: 12321
+ Title: Time Conqueror
+ - Id: 12322
+ Title: Space Distortion
+ - Id: 12325
+ Title: Faceworm's Nest after-effects
+ TimeLimit: +23h
+ - Id: 12326
+ Title: The owner of old ring
+ TimeLimit: +1d
+ - Id: 12327
+ Title: The memory of old photo album
+ TimeLimit: +1d
+ - Id: 12328
+ Title: Dol-Seoi's Sorrow
+ TimeLimit: +1d
+ - Id: 12329
+ Title: Keaton's Bracelet
+ TimeLimit: +1d
+ - Id: 12330
+ Title: Skull-faced Girl
+ - Id: 12331
+ Title: Trail of Toy Factory
+ TimeLimit: +23h
+ - Id: 12334
+ Title: Trace of Time Travel
+ TimeLimit: +23h
+ - Id: 12335
+ Title: Space Distortion
+ - Id: 12338
+ Title: Time Traveler
+ - Id: 12339
+ Title: Time Conqueror
+ - Id: 12340
+ Title: Rebellion Job Change Quest
+ - Id: 12341
+ Title: Rebellion Job Change Quest
+ - Id: 12342
+ Title: Rebellion Job Change Quest
+ - Id: 12343
+ Title: Rebellion Job Change Quest
+ Targets:
+ - Mob: J_REB_SHECIL1
+ Count: 10
+ - Id: 12344
+ Title: Rebellion Job Change Quest
+ Targets:
+ - Mob: J_REB_SHECIL2
+ Count: 3
+ - Id: 12345
+ Title: Rebellion Job Change Quest
+ - Id: 12346
+ Title: Strange Ancient Science
+ - Id: 12347
+ Title: Trace of Laboratory Access
+ TimeLimit: +23h
+ - Id: 12363
+ Title: ?????? ?? ??
+ - Id: 12368
+ Title: Operate the old robot
+ - Id: 12369
+ Title: Secret Business Relation
+ - Id: 12374
+ Title: Heart Hunter Base occupation
+ - Id: 12375
+ Title: Base maintenance
+ TimeLimit: 4h
+ - Id: 12376
+ Title: First transaction
+ - Id: 12381
+ Title: New Continent's Food Supplier
+ - Id: 12382
+ Title: Distributing Food
+ TimeLimit: 4h
+ - Id: 12383
+ Title: Sweet Potato Delivery
+ - Id: 12384
+ Title: Meat Delivery
+ - Id: 12385
+ Title: Carrot Delivery
+ - Id: 12386
+ Title: Banana Delivery
+ - Id: 12387
+ Title: Pumpkin Delivery
+ - Id: 12388
+ Title: Mushroom Delivery
+ - Id: 12389
+ Title: Guardian of Rock Ridge
+ - Id: 12390
+ Title: Relieved for Now
+ TimeLimit: 4h
+ - Id: 12391
+ Title: Buffaloes with Rifles
+ Targets:
+ - Mob: COWRAIDERS1
+ Count: 15
+ - Id: 12392
+ Title: Punishing the Red Masks
+ Targets:
+ - Mob: COWRAIDERS2
+ Count: 15
+ - Id: 12393
+ Title: Eye Patch Desperadoes
+ Targets:
+ - Mob: COWRAIDERS3
+ Count: 15
+ - Id: 12394
+ Title: Exterminate Gray Four-legged Beasts
+ Targets:
+ - Mob: COYOTE
+ Count: 20
+ - Id: 12395
+ Title: Exterminate Swamp Arclouzes
+ Targets:
+ - Mob: RR_ARCLOUSE
+ Count: 10
+ - Id: 12396
+ Title: Exterminate Brown Rats
+ Targets:
+ - Mob: RR_CRAMP
+ Count: 10
+ - Id: 12398
+ Title: You're Good
+ TimeLimit: 4h
+ - Id: 12399
+ Title: Hunt Heinous Criminals
+ Targets:
+ - Mob: E_COWRAIDERS1
+ Count: 10
+ - Id: 12400
+ Title: Hunt Heinous Criminals
+ Targets:
+ - Mob: E_COWRAIDERS2
+ Count: 10
+ - Id: 12401
+ Title: Hunt Heinous Criminals
+ Targets:
+ - Mob: E_COWRAIDERS3
+ Count: 10
+ - Id: 12402
+ Title: Eliminate Dangerous Gas
+ Targets:
+ - Mob: GASTER
+ Count: 10
+ - Id: 12403
+ Title: Laborers of Rock Ridge
+ - Id: 12404
+ Title: Are You Not Tired?
+ TimeLimit: 4h
+ - Id: 12405
+ Title: Maintain the Red Pipe
+ - Id: 12406
+ Title: Maintain the Blue Pipe
+ - Id: 12407
+ Title: Maintain the Yellow Pipe
+ - Id: 12408
+ Title: Maintain the White Pipe
+ - Id: 12409
+ Title: Pipes Maintained
+ - Id: 12410
+ Title: Contract with the Wealthy Merchant
+ - Id: 12411
+ Title: Come Back Tomorrow
+ TimeLimit: 4h
+ - Id: 13000
+ Title: RWC2011Card Gathering
+ - Id: 13001
+ Title: RWC2011Card Gathering - Hold
+ TimeLimit: +23h
+ - Id: 13002
+ Title: Brigan collecting
+ - Id: 13003
+ Title: Carat Request
+ Targets:
+ - Mob: CARAT
+ Count: 30
+ - Id: 13004
+ Title: Carat Request timer
+ TimeLimit: +1h
+ - Id: 13005
+ Title: Arclouse Request
+ Targets:
+ - Mob: ARCLOUSE
+ Count: 22
+ - Id: 13006
+ Title: Arclouse Request timer
+ TimeLimit: +1h
+ - Id: 13007
+ Title: Anolian Request
+ Targets:
+ - Mob: ANOLIAN
+ Count: 30
+ - Id: 13008
+ Title: Anolian Request timer
+ TimeLimit: +1h
+ - Id: 13009
+ Title: Sting Request
+ Targets:
+ - Mob: STING
+ Count: 30
+ - Id: 13010
+ Title: Sting Request timer
+ TimeLimit: +1h
+ - Id: 13011
+ Title: Majoruros Request
+ Targets:
+ - Mob: MAJORUROS
+ Count: 30
+ - Id: 13012
+ Title: Majoruros Request timer
+ TimeLimit: +1h
+ - Id: 13013
+ Title: Pinguicula Request
+ Targets:
+ - Mob: PINGUICULA
+ Count: 30
+ - Id: 13014
+ Title: Pinguicula Request timer
+ TimeLimit: +1h
+ - Id: 13015
+ Title: Luciola Vespa Request
+ Targets:
+ - Mob: LUCIOLA_VESPA
+ Count: 30
+ - Id: 13016
+ Title: Luciola Vespa Request timer
+ TimeLimit: +1h
+ - Id: 13017
+ Title: Desert Wolf Request
+ Targets:
+ - Mob: DESERT_WOLF
+ Count: 30
+ - Id: 13018
+ Title: Desert Wolf Request timer
+ TimeLimit: +1h
+ - Id: 13019
+ Title: Snowier Request
+ Targets:
+ - Mob: SNOWIER
+ Count: 30
+ - Id: 13020
+ Title: Snowier Request timer
+ TimeLimit: +1h
+ - Id: 13021
+ Title: Ice Titan Request
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 30
+ - Id: 13022
+ Title: Ice Titan Request Timer
+ TimeLimit: +1h
+ - Id: 13023
+ Title: Nightmare Terror Request
+ Targets:
+ - Mob: NIGHTMARE_TERROR
+ Count: 30
+ - Id: 13024
+ Title: Nightmare Terror Request Timer
+ TimeLimit: +1h
+ - Id: 13025
+ Title: Flying Deleter Request
+ Targets:
+ - Mob: DELETER
+ Count: 30
+ - Id: 13026
+ Title: Deleter Request Timer
+ TimeLimit: +1h
+ - Id: 13040
+ Title: Loli Ruri Request
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 30
+ - Id: 13041
+ Title: Loli Ruri Request Timer
+ TimeLimit: +1h
+ - Id: 13042
+ Title: Medusa Request
+ Targets:
+ - Mob: MEDUSA
+ Count: 30
+ - Id: 13043
+ Title: Medusa Request Timer
+ TimeLimit: +1h
+ - Id: 13044
+ Title: Anubis Request
+ Targets:
+ - Mob: ANUBIS
+ Count: 20
+ - Id: 13045
+ Title: Anubis Request Timer
+ TimeLimit: +1h
+ - Id: 13046
+ Title: Tendrilion Request
+ Targets:
+ - Mob: TENDRILRION
+ Count: 1
+ - Id: 13047
+ Title: Tendrilion Request Timer
+ TimeLimit: +1h
+ - Id: 13048
+ Title: Tendrilion Request
+ Targets:
+ - Mob: TENDRILRION
+ Count: 1
+ - Id: 13049
+ Title: Tendrilion Request Timer
+ TimeLimit: +1h
+ - Id: 13050
+ Title: The Laphine that loves the land
+ - Id: 13051
+ Title: The singing Laphine
+ - Id: 13052
+ Title: The watering Laphine
+ - Id: 13053
+ Title: The dancing Laphine
+ - Id: 13054
+ Title: The smiling Laphine
+ - Id: 13055
+ Title: See if all the adventurers are safe
+ - Id: 13056
+ Title: Reporter Rossi
+ - Id: 13057
+ Title: Adventurer Euncheong
+ - Id: 13058
+ Title: Troublemaker New Oz
+ - Id: 13059
+ Title: End of project
+ TimeLimit: +22h
+ - Id: 13060
+ Title: Safety confirmation complete!
+ TimeLimit: +22h
+ - Id: 13061
+ Title: Food support
+ - Id: 13062
+ Title: Food support - complete
+ TimeLimit: +22h
+ - Id: 13063
+ Title: Dusting off
+ Targets:
+ - Mob: CENERE
+ Count: 20
+ - Id: 13064
+ Title: Dusting off - complete
+ TimeLimit: +22h
+ - Id: 13065
+ Title: Collecting a souvenir
+ - Id: 13066
+ Title: This is enough for souvenirs
+ TimeLimit: +22h
+ - Id: 13067
+ Title: Raydric research
+ Targets:
+ - Mob: RAYDRIC
+ Count: 30
+ - Id: 13068
+ Title: Raydric research - timer
+ TimeLimit: +1h
+ - Id: 13069
+ Title: Khalitzburg research
+ Targets:
+ - Mob: KHALITZBURG
+ Count: 30
+ - Id: 13070
+ Title: Khalitzburg research - timer
+ TimeLimit: +1h
+ - Id: 13071
+ Title: Wander Man research
+ Targets:
+ - Mob: WANDER_MAN
+ Count: 30
+ - Id: 13072
+ Title: Wander Man research - timer
+ TimeLimit: +1h
+ - Id: 13073
+ Title: Ancient Mimic research
+ Targets:
+ - Mob: ANCIENT_MIMIC
+ Count: 30
+ - Id: 13074
+ Title: Ancient Mimic research - timer
+ TimeLimit: +1h
+ - Id: 13075
+ Title: Death Word research
+ Targets:
+ - Mob: DEATHWORD
+ Count: 30
+ - Id: 13076
+ Title: Death Word research - timer
+ TimeLimit: +1h
+ - Id: 13077
+ Title: Owl Baron research
+ Targets:
+ - Mob: OWL_BARON
+ Count: 20
+ - Id: 13078
+ Title: Owl Baron research - timer
+ TimeLimit: +1h
+ - Id: 13079
+ Title: Bloody Page Research
+ - Id: 13080
+ Title: Bloody Page Research - Wait
+ TimeLimit: +1h
+ - Id: 13081
+ Title: Dark Pinguicula research
+ Targets:
+ - Mob: PINGUICULA_D
+ Count: 30
+ - Id: 13082
+ Title: Dark Pinguicula research - timer
+ TimeLimit: +1h
+ - Id: 13083
+ Title: Nepenthes research
+ Targets:
+ - Mob: NEPENTHES
+ Count: 30
+ - Id: 13084
+ Title: Nepenthes research - timer
+ TimeLimit: +1h
+ - Id: 13085
+ Title: Naga research
+ Targets:
+ - Mob: NAGA
+ Count: 30
+ - Id: 13086
+ Title: Naga research - timer
+ TimeLimit: +1h
+ - Id: 13087
+ Title: Centipede Larva research
+ Targets:
+ - Mob: CENTIPEDE_LARVA
+ Count: 20
+ - Id: 13088
+ Title: Centipede Larva research - timer
+ TimeLimit: +1h
+ - Id: 13089
+ Title: Cornus research
+ Targets:
+ - Mob: CORNUS
+ Count: 30
+ - Id: 13090
+ Title: Cornus research - timer
+ TimeLimit: +1h
+ - Id: 13091
+ Title: Mystic Horn Research
+ - Id: 13092
+ Title: Mystic Horn Research - Wait
+ TimeLimit: +1h
+ - Id: 13093
+ Title: Ancient Mummy research
+ Targets:
+ - Mob: ANCIENT_MUMMY
+ Count: 30
+ - Id: 13094
+ Title: Ancient Mummy research - timer
+ TimeLimit: +1h
+ - Id: 13095
+ Title: Geffenia expedition
+ Targets:
+ - Mob: INCUBUS
+ Count: 10
+ - Mob: SUCCUBUS
+ Count: 10
+ - Mob: VIOLY
+ Count: 10
+ - Id: 13096
+ Title: Geffenia expedition - Wait
+ TimeLimit: +1h
+ - Id: 13097
+ Title: Juperos expedition
+ Targets:
+ - Mob: VENATU_2
+ Count: 30
+ - Mob: VENATU_3
+ Count: 30
+ - Mob: VENATU_4
+ Count: 30
+ - Id: 13098
+ Title: Juperos expedition - Wait
+ TimeLimit: +1h
+ - Id: 13099
+ Title: Fragments and Rusty Screw
+ - Id: 13100
+ Title: Fragments and Rusty Screw - Wait
+ TimeLimit: +1h
+ - Id: 13101
+ Title: The way of Taekwon
+ - Id: 13102
+ Title: Spinning kick
+ - Id: 13103
+ Title: Breaking Willows
+ - Id: 13104
+ Title: Breaking Spores
+ - Id: 13105
+ Title: Breaking Zombies
+ - Id: 13106
+ Title: Breaking Skeletons
+ - Id: 13107
+ Title: Thanatos Tower Search
+ - Id: 13108
+ Title: Rachel holy ground Search
+ - Id: 13109
+ Title: Unknown island Search
+ - Id: 13110
+ Title: Abyss Lake Search
+ - Id: 13111
+ Title: Thanatos Tower Search - Reporting results
+ - Id: 13112
+ Title: Rachel holy ground Search - Reporting results
+ - Id: 13113
+ Title: Nameless Island Search - Reporting results
+ - Id: 13114
+ Title: Abyss Lake Search - Reporting results
+ - Id: 13115
+ Title: Thanatos Tower Search - Wait
+ TimeLimit: +1h
+ - Id: 13116
+ Title: Rachel holy ground Search - Wait
+ TimeLimit: +1h
+ - Id: 13117
+ Title: Unknown island Search - Wait
+ TimeLimit: +1h
+ - Id: 13118
+ Title: Abyss Lake Search - Wait
+ TimeLimit: +1h
+ - Id: 13119
+ Title: Combat Baroness of Retribution
+ Targets:
+ - Mob: RETRIBUTION
+ Count: 30
+ - Id: 13120
+ Title: Combat Baroness of Retribution - Wait
+ TimeLimit: +1h
+ - Id: 13121
+ Title: Combat Lady Solace
+ Targets:
+ - Mob: SOLACE
+ Count: 30
+ - Id: 13122
+ Title: Combat Lady Solace - Wait
+ TimeLimit: +1h
+ - Id: 13123
+ Title: Combat Mistress of Shelter
+ Targets:
+ - Mob: SHELTER
+ Count: 30
+ - Id: 13124
+ Title: Combat Mistress of Shelter - Wait
+ TimeLimit: +1h
+ - Id: 13125
+ Title: Combat Dame of Sentinel
+ Targets:
+ - Mob: OBSERVATION
+ Count: 30
+ - Id: 13126
+ Title: Combat Dame of Sentinel - Wait
+ TimeLimit: +1h
+ - Id: 13127
+ Title: Combat Vanberk and Isilla
+ Targets:
+ - Mob: VANBERK
+ Count: 20
+ - Mob: ISILLA
+ Count: 20
+ - Id: 13128
+ Title: Combat Vanberk and Isilla - Wait
+ TimeLimit: +1h
+ - Id: 13129
+ Title: Combat Hodremlin
+ Targets:
+ - Mob: HODREMLIN
+ Count: 30
+ - Id: 13130
+ Title: Combat Hodremlin - Wait
+ TimeLimit: +1h
+ - Id: 13131
+ Title: Combat Agav and Echio
+ Targets:
+ - Mob: AGAV
+ Count: 20
+ - Mob: ECHIO
+ Count: 20
+ - Id: 13132
+ Title: Combat Agav and Echio - Wait
+ TimeLimit: +1h
+ - Id: 13133
+ Title: Combat Ragged Zombie
+ Targets:
+ - Mob: RAGGED_ZOMBIE
+ Count: 30
+ - Id: 13134
+ Title: Combat Ragged Zombie - Wait
+ TimeLimit: +1h
+ - Id: 13135
+ Title: Combat Zombie Slaughter
+ Targets:
+ - Mob: ZOMBIE_SLAUGHTER
+ Count: 30
+ - Id: 13136
+ Title: Combat Zombie Slaughter - Wait
+ TimeLimit: +1h
+ - Id: 13137
+ Title: Combat Banshee
+ Targets:
+ - Mob: BANSHEE
+ Count: 30
+ - Id: 13138
+ Title: Combat Banshee - Wait
+ TimeLimit: +1h
+ - Id: 13139
+ Title: Combat Ferus and Bewler
+ Targets:
+ - Mob: FERUS
+ Count: 30
+ - Mob: FERUS_
+ Count: 30
+ - Id: 13140
+ Title: Combat Ferus and Bewler - Wait
+ TimeLimit: +1h
+ - Id: 13141
+ Title: Combat Acidus
+ Targets:
+ - Mob: ACIDUS
+ Count: 30
+ - Mob: ACIDUS_
+ Count: 30
+ - Id: 13142
+ Title: Combat Acidus - Wait
+ TimeLimit: +1h
+ - Id: 13143
+ Title: Egnigem Story
+ Targets:
+ - Mob: YGNIZEM
+ Count: 30
+ - Id: 13144
+ Title: Egnigem Story - Wait
+ TimeLimit: +1h
+ - Id: 13145
+ Title: Armeyer Story
+ Targets:
+ - Mob: ARMAIA
+ Count: 30
+ - Id: 13146
+ Title: Armeyer Story - Wait
+ TimeLimit: +1h
+ - Id: 13147
+ Title: Whikebain Story
+ Targets:
+ - Mob: WHIKEBAIN
+ Count: 30
+ - Id: 13148
+ Title: Whikebain Story - Wait
+ TimeLimit: +1h
+ - Id: 13149
+ Title: Kavach Story
+ Targets:
+ - Mob: KAVAC
+ Count: 30
+ - Id: 13150
+ Title: Kavach Story - Wait
+ TimeLimit: +1h
+ - Id: 13151
+ Title: Errende Story
+ Targets:
+ - Mob: EREND
+ Count: 30
+ - Id: 13152
+ Title: Errende Story - Wait
+ TimeLimit: +1h
+ - Id: 13153
+ Title: Laurell Story
+ Targets:
+ - Mob: RAWREL
+ Count: 30
+ - Id: 13154
+ Title: Laurell Story - Wait
+ TimeLimit: +1h
+ - Id: 13155
+ Title: Morocc Story1
+ Targets:
+ - Mob: MOROCC_1
+ Count: 30
+ - Id: 13156
+ Title: Morocc Story1 - Wait
+ TimeLimit: +1h
+ - Id: 13157
+ Title: Morocc Story2
+ Targets:
+ - Mob: MOROCC_2
+ Count: 30
+ - Id: 13158
+ Title: Morocc Story2 - Wait
+ TimeLimit: +1h
+ - Id: 13159
+ Title: Morocc Story3
+ Targets:
+ - Mob: MOROCC_4
+ Count: 30
+ - Id: 13160
+ Title: Morocc Story3 - Wait
+ TimeLimit: +1h
+ - Id: 13161
+ Title: Uni-horn Scaraba Story
+ Targets:
+ - Mob: HORN_SCARABA
+ Count: 30
+ - Id: 13162
+ Title: Uni-horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13163
+ Title: Horn Scaraba Story
+ Targets:
+ - Mob: HORN_SCARABA2
+ Count: 30
+ - Id: 13164
+ Title: Horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13165
+ Title: Antler Scaraba Story
+ Targets:
+ - Mob: ANTLER_SCARABA
+ Count: 30
+ - Id: 13166
+ Title: Antler Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13167
+ Title: Rake horn Scaraba Story
+ Targets:
+ - Mob: RAKE_SCARABA
+ Count: 30
+ - Id: 13168
+ Title: Rake horn Scaraba Story - Wait
+ TimeLimit: +1h
+ - Id: 13181
+ Title: Nightmarish Jitterbug
+ - Id: 13182
+ Title: "Nightmarish Jitterbug: Waiting"
+ TimeLimit: +23h
+ - Id: 13183
+ Title: "Nightmarish Jitterbug: Completed"
+ - Id: 13184
+ Title: Charleston Factory
+ - Id: 13185
+ Title: Charleston Factory - Hold
+ TimeLimit: +20h
+ - Id: 13186
+ Title: Charleston Factory - Complete
+ - Id: 13187
+ Title: Deal with the Staff
+ Targets:
+ - Mob: STEP
+ Count: 50
+ - Id: 13188
+ Title: Deal with the Staff - Hold
+ TimeLimit: +20h
+ - Id: 13195
+ Title: Monthly Brigan
+ - Id: 13196
+ Title: Monthly Brigan
+ - Id: 13197
+ Title: Monthly Brigan
+ - Id: 13198
+ Title: "Monthly Brigan : Krotzel's Request"
+ - Id: 13199
+ Title: Krotzel's Request - Complete
+ TimeLimit: +20h
+ - Id: 13200
+ Title: "Monthly Brigan : Rookie's Request"
+ Targets:
+ - Mob: CENERE_G
+ Count: 30
+ - Id: 13201
+ Title: Rookie's Request - Complete
+ TimeLimit: +20h
+ - Id: 13202
+ Title: "Monthly Brigan : Photo Journalist's Request"
+ Targets:
+ - Mob: REPAIR_ROBOT_T
+ Count: 30
+ - Id: 13203
+ Title: Photo Journalist's Request - Complete
+ TimeLimit: +20h
+ - Id: 13204
+ Title: "Monthly Brigan : Grylls' Request"
+ - Id: 13205
+ Title: Grylls' Request - Complete
+ TimeLimit: +20h
+ - Id: 14118
+ Title: Wuhari's concern
+ - Id: 14119
+ Title: Test of patience
+ - Id: 14120
+ Title: Test of patience 2
+ - Id: 14121
+ Title: Test of patience 3
+ - Id: 14122
+ Title: Time for two
+ - Id: 14123
+ Title: Wuharu's favor
+ - Id: 14125
+ Title: Surveying the area
+ - Id: 14126
+ Title: Searching for Ms. Goatie
+ - Id: 14127
+ Title: Searching for Ms. Goatie's husband
+ - Id: 14128
+ Title: Obtaining the research report
+ - Id: 14131
+ Title: Analysis time
+ TimeLimit: +5mn
+ - Id: 14133
+ Title: Another favor
+ - Id: 14134
+ Title: Sharp Ms. Goatie
+ - Id: 14135
+ Title: Searching for Mr. Pompe
+ - Id: 14136
+ Title: A terrible scene in the field
+ - Id: 14137
+ Title: An interesting proposition
+ - Id: 14138
+ Title: The big corpse
+ - Id: 14139
+ Title: To Wuhuru
+ - Id: 14140
+ Title: To Wuhari
+ - Id: 14141
+ Title: Ingredients for research
+ - Id: 14142
+ Title: To the Archer's town!
+ - Id: 14143
+ Title: Application for the Archer's job change
+ - Id: 14144
+ Title: Retest - Stats
+ - Id: 14145
+ Title: Archer Skills
+ - Id: 14146
+ Title: Hunting training
+ - Id: 14147
+ Title: Retest - Skills
+ - Id: 14148
+ Title: To the next step
+ - Id: 14149
+ Title: Listening to the 2nd job change
+ - Id: 14150
+ Title: To the next step
+ - Id: 14151
+ Title: Hunting training - Spoa
+ - Id: 14152
+ Title: Hunting training - Creamy
+ - Id: 14153
+ Title: Hunting training - Skeleton
+ - Id: 14154
+ Title: Fragrant herb mix
+ - Id: 14155
+ Title: Crunchy salad
+ - Id: 14156
+ Title: Anything shabushabu
+ - Id: 14157
+ Title: Baked golden apple
+ - Id: 14158
+ Title: Presentation of the Archer manual
+ - Id: 14159
+ Title: Met with the PR staff
+ - Id: 14160
+ Title: Met with the PR staff
+ - Id: 14161
+ Title: Test of stats
+ - Id: 14162
+ Title: Test of skills
+ - Id: 14163
+ Title: Caught Spores
+ - Id: 14164
+ Title: Caught Creamy
+ - Id: 14165
+ Title: Caught Skeletons
+ - Id: 14469
+ Title: Look around the Walther Family
+ - Id: 14470
+ Title: In Search of the Guardian Knight
+ - Id: 14471
+ Title: To the Royal Prison
+ - Id: 14472
+ Title: Gourmet Bigfoot
+ - Id: 14473
+ Title: To Veins
+ - Id: 14474
+ Title: Report to Isenhonor
+ - Id: 14475
+ Title: To Jurgen
+ - Id: 14476
+ Title: To Levuiere and His Wife
+ - Id: 14477
+ Title: What Is Going on?
+ - Id: 14478
+ Title: Searching for the Clue
+ - Id: 14479
+ Title: Clean-up out of Apology
+ - Id: 14480
+ Title: Conquer the Grease
+ - Id: 14481
+ Title: Conquer the Mold
+ - Id: 14482
+ Title: Conquer the Dirt of Devil
+ - Id: 14483
+ Title: Report the Completion of the Clean-up
+ - Id: 14484
+ Title: There Was a Furniture Delivery Man
+ - Id: 14485
+ Title: I Am Upset
+ - Id: 14486
+ Title: I Heard the Story
+ - Id: 14487
+ Title: Please Find the Token of Memory
+ Drops:
+ - Mob: MEDUSA
+ Item: Filled_With_SeaStones
+ Rate: 3000
+ - Id: 14488
+ Title: Please Deliver My Love
+ - Id: 14489
+ Title: I Have to Turn It Down
+ - Id: 14490
+ Title: My Love Once More
+ Drops:
+ - Mob: MEDUSA
+ Item: Filled_With_SeaStones
+ Rate: 3000
+ - Id: 14491
+ Title: I Have to Turn It Down Again
+ - Id: 14492
+ Title: There Is a Silver Lining
+ TimeLimit: 4h
+ - Id: 14493
+ Title: Today I Feel
+ Drops:
+ - Mob: MEDUSA
+ Item: Filled_With_SeaStones
+ Rate: 3000
+ - Id: 14494
+ Title: I Have to Turn It Down Again
+ - Id: 14495
+ Title: To Wolf
+ - Id: 14496
+ Title: To Isaac
+ - Id: 14497
+ Title: Delivery for Wolf
+ - Id: 14498
+ Title: Which Rumor
+ - Id: 14499
+ Title: Prove Yourself
+ Targets:
+ - Mob: MAJORUROS
+ Count: 33
+ - Id: 14500
+ Title: Complete checking out the book
+ - Id: 14501
+ Title: Report to Wolf
+ - Id: 14502
+ Title: To Isaac
+ - Id: 14503
+ Title: Report to Wolf
+ - Id: 14504
+ Title: In Search of Helmut
+ - Id: 14505
+ Title: I Won't go Back
+ - Id: 14506
+ Title: Things Turned out This Way
+ - Id: 14507
+ Title: To Maximilian
+ - Id: 14508
+ Title: Jewel and Cloth
+ - Id: 14509
+ Title: Still Making It
+ TimeLimit: 4h
+ - Id: 14510
+ Title: Pink Petal-like Dress
+ - Id: 14511
+ Title: Beautiful Flower Decoration
+ - Id: 14512
+ Title: Dress of the Night Sky
+ - Id: 14513
+ Title: Shawl of the Blazing Sun
+ - Id: 14514
+ Title: Step of the Fairy
+ - Id: 14515
+ Title: Sparkling Star
+ - Id: 14516
+ Title: Suspicious Shadow
+ - Id: 14531
+ Title: Everything about Con-Chliina
+ - Id: 14532
+ Title: Greetings to Captain Gamberi
+ - Id: 14533
+ Title: Say hi to recorder
+ - Id: 14534
+ Title: To the kitchen
+ - Id: 14535
+ Title: To Purser
+ - Id: 14536
+ Title: Delivery to Chef
+ - Id: 14537
+ Title: When do we take off?
+ - Id: 14538
+ Title: Can we take off?
+ - Id: 14539
+ Title: Crazy Dragon
+ - Id: 14540
+ Title: An errand out of nowhere
+ Drops:
+ - Mob: DR_BASILISK1
+ Item: Basilac_Clam
+ Rate: 5000
+ - Id: 14541
+ Title: No news is not a good news
+ - Id: 14542
+ Title: How is the Dragon
+ - Id: 14543
+ Title: Basilisk Hunt
+ Targets:
+ - Mob: DR_BASILISK1
+ Count: 20
+ - Id: 14544
+ Title: Now I can leave
+ - Id: 14545
+ Title: To Purser
+ - Id: 14546
+ Title: Take care of grass thief
+ Targets:
+ - Mob: DR_LUNATIC
+ Count: 5
+ - Mob: DR_FABRE
+ Count: 5
+ - Id: 14547
+ Title: Can we set out the sailing?
+ - Id: 14548
+ Title: Crazy Dragon
+ - Id: 14549
+ Title: No news is not a good news
+ - Id: 14550
+ Title: How is the Dragon
+ - Id: 14551
+ Title: Chief Basilisk
+ - Id: 14552
+ Title: Lord Imuk's message
+ - Id: 14553
+ Title: Basilisk Hunt
+ Targets:
+ - Mob: DR_BASILISK3
+ Count: 20
+ - Id: 14554
+ Title: We can start sail now
+ - Id: 14555
+ Title: Whole new world of taste
+ - Id: 14556
+ Title: There also is a scary thing for me
+ - Id: 14557
+ Title: Truth is alway harsh
+ - Id: 14558
+ Title: Dirty Creatures
+ Drops:
+ - Mob: DR_BASILISK2
+ Item: Basilac_Clam
+ Rate: 5000
+ - Id: 14559
+ Title: Charm Effect Duration
+ TimeLimit: 4h
+ - Id: 14560
+ Title: New Ingredient
+ Drops:
+ - Mob: DR_BASILISK2
+ Item: Basilac_Clam
+ Rate: 5000
+ - Id: 14561
+ Title: Dirty and Filty
+ Drops:
+ - Mob: DR_BASILISK2
+ Item: Basilac_Clam
+ Rate: 5000
+ - Id: 14562
+ Title: The basic are the best
+ Drops:
+ - Mob: DR_BASILISK2
+ Item: Basilac_Clam
+ Rate: 5000
+ - Id: 14563
+ Title: Free time
+ TimeLimit: 4h
+ - Id: 14565
+ Title: Emergency food supplies
+ - Id: 14566
+ Title: Brilliant idea
+ - Id: 14567
+ Title: Kaluna milk is in Danger!
+ - Id: 14568
+ Title: Time to persuade
+ - Id: 14569
+ Title: Babysitter
+ - Id: 14570
+ Title: Processing Anchovy
+ - Id: 14571
+ Title: Anchovy fishing ship
+ - Id: 14572
+ Title: Helpless...
+ - Id: 14573
+ Title: I need the time on my own
+ - Id: 14574
+ Title: Meal Box Delivery
+ - Id: 14575
+ Title: Delivery Complete Report
+ - Id: 14576
+ Title: Meal Box Delivery Time
+ TimeLimit: 4h
+ - Id: 14579
+ Title: Interview with Captain
+ - Id: 14580
+ Title: To Recorder
+ - Id: 14581
+ Title: Interview with the Chief
+ - Id: 14582
+ Title: To Recorder
+ - Id: 14583
+ Title: To Granma
+ - Id: 14584
+ Title: Back to Recorder
+ - Id: 14588
+ Title: The Competition
+ Targets:
+ - Mob: DR_HORNET
+ Count: 10
+ - Id: 14589
+ Title: Sticky ingredient
+ Targets:
+ - Mob: DR_RODA_FROG
+ Count: 10
+ - Id: 14590
+ Title: Hunter's destination
+ Targets:
+ - Mob: DR_DESERT_WOLF_B
+ Count: 10
+ - Id: 14591
+ Title: Secret Ingredient
+ Targets:
+ - Mob: DR_SPORE
+ Count: 10
+ - Id: 14592
+ Title: Resting Time
+ TimeLimit: 4h
+ - Id: 14595
+ Title: To Einbech train station
+ - Id: 14596
+ Title: Follow the trails
+ - Id: 14597
+ Title: Corner of Einbech
+ - Id: 14598
+ Title: Invisible entrance
+ - Id: 14599
+ Title: A glass of tea gratitude
+ - Id: 14600
+ Title: Gentleman on second floor
+ - Id: 14601
+ Title: Ladies on second floor
+ - Id: 14602
+ Title: Hunter on second floor
+ - Id: 14603
+ Title: Pipe repair materials
+ Targets:
+ - Mob: WASTE_STOVE
+ Count: 10
+ - Id: 14604
+ Title: National Fuel Solar Fuel
+ Targets:
+ - Mob: WASTE_STOVE
+ Count: 10
+ - Id: 14605
+ Title: Sparkling things
+ Targets:
+ - Mob: OBSIDIAN
+ Count: 5
+ - Mob: MINERAL
+ Count: 5
+ - Id: 14606
+ Title: Pipe repair materials
+ Targets:
+ - Mob: WASTE_STOVE
+ Count: 10
+ - Id: 14607
+ Title: National Fuel Solar Fuel
+ Targets:
+ - Mob: WASTE_STOVE
+ Count: 10
+ - Id: 14608
+ Title: Sparkling things
+ Targets:
+ - Mob: OBSIDIAN
+ Count: 5
+ - Mob: MINERAL
+ Count: 5
+ - Id: 14609
+ Title: Quiet time
+ TimeLimit: 4h
+ - Id: 14610
+ Title: Gun recycling
+ Targets:
+ - Mob: EP16_2_BROKEN_GUN
+ Count: 5
+ Drops:
+ - Mob: EP16_2_BROKEN_GUN
+ Item: Broken_Gun_Wreck
+ Rate: 5000
+ - Id: 14611
+ Title: Gun recycling
+ Targets:
+ - Mob: EP16_2_BROKEN_GUN
+ Count: 5
+ Drops:
+ - Mob: EP16_2_BROKEN_GUN
+ Item: Broken_Gun_Wreck
+ Rate: 5000
+ - Id: 14612
+ Title: Time for repair
+ TimeLimit: 4h
+ - Id: 14613
+ Title: Erst on second floor
+ - Id: 14614
+ Title: Convince the leaders
+ - Id: 14615
+ Title: Between negotiation and deception
+ - Id: 14672
+ Title: Preparing for the Firework Festival
+ Targets:
+ - Mob: GASTER
+ Count: 15
+ - Id: 14673
+ Title: Time to Make Bombs
+ TimeLimit: 4h
+ - Id: 14683
+ Title: Mysterious Device
+ - Id: 14684
+ Title: Mysterious Device
+ TimeLimit: +1h
+ - Id: 14685
+ Title: Mysterious Device
+ TimeLimit: +1h
+ - Id: 14686
+ Title: Mysterious Device
+ TimeLimit: +1h
+ - Id: 14687
+ Title: Mysterious Device
+ TimeLimit: +1h
+ - Id: 15000
+ Title: Experiencing abnormal statuses
+ - Id: 15001
+ Title: Hold your breath
+ TimeLimit: +20s
+ - Id: 15002
+ Title: "Memorial dungeon: Sara's Memory"
+ TimeLimit: +20h
+ - Id: 15003
+ Title: Adventurer leon
+ - Id: 15005
+ Title: "Memorial Dungeon: Isle of Bios"
+ TimeLimit: +23h
+ - Id: 15006
+ Title: Isle of Bios Exploration
+ - Id: 15007
+ Title: "Memorial Dungeon: Isle of Bios"
+ TimeLimit: +5mn
+ - Id: 15008
+ Title: "Memorial Dungeon: Isle of Bios"
+ TimeLimit: +5mn
+ - Id: 15050
+ Title: "Memorial Dungeon: Airship Assault"
+ TimeLimit: +23h
+ - Id: 15051
+ Title: "Memorial Dungeon: Airship Assault"
+ TimeLimit: +5mn
+ - Id: 15055
+ Title: "Christmas : We are the great Single Union Army!"
+ - Id: 15056
+ Title: "Christmas : Declare war against couples!"
+ - Id: 15057
+ Title: "Christmas : Prepare the festival!"
+ - Id: 15059
+ Title: "Christmas : Cooldown Timer"
+ TimeLimit: +1d
+ - Id: 15060
+ Title: "Christmas : Kwami has joined"
+ - Id: 15061
+ Title: "Christmas : Willer has joined"
+ - Id: 15062
+ Title: "Christmas : Rinka has joined"
+ - Id: 15063
+ Title: "Christmas : Jee has joined"
+ - Id: 15064
+ Title: "Christmas : Marty has joined"
+ - Id: 16000
+ Title: Metz Brayde's Notice
+ - Id: 16001
+ Title: First examination
+ - Id: 16002
+ Title: Fetching Items for Arian -1
+ - Id: 16003
+ Title: Fetching Items for Arian -2
+ - Id: 16004
+ Title: Fetching Items for Arian -3
+ - Id: 16005
+ Title: Fetching Items for Arian -4
+ - Id: 16006
+ Title: Fetching Items for Arian -5
+ - Id: 16007
+ Title: Fetching Items for Arian -6
+ - Id: 16008
+ Title: Quiz time!
+ - Id: 16009
+ Title: Fighting is the language of warmonger
+ - Id: 16010
+ Title: Battle in great condition
+ TimeLimit: 4h
+ - Id: 16011
+ Title: Arena entrance
+ - Id: 16012
+ Title: Troublesome twin
+ - Id: 16013
+ Title: "Testimony: Chef's story"
+ - Id: 16014
+ Title: "Testimony: Sniper's story"
+ - Id: 16015
+ Title: The cause of failure is a careless attempt
+ - Id: 16016
+ Title: Borrowing wisdom of the experts
+ - Id: 16017
+ Title: Twin's sincere confession
+ - Id: 16018
+ Title: Encourage instead of punishment
+ - Id: 16019
+ Title: Elena Volkova's Solution
+ - Id: 16020
+ Title: Daily babysitting
+ TimeLimit: 4h
+ - Id: 16021
+ Title: "Service: Book lending agent"
+ - Id: 16022
+ Title: "Service: Book lending agent"
+ - Id: 16023
+ Title: "Service: Book lending agent"
+ - Id: 16024
+ Title: "Service: Loaned book delivery"
+ - Id: 16025
+ Title: "Service: Exploring the Mine Dungeon"
+ Targets:
+ - Mob: PITMAN
+ Count: 30
+ - Id: 16026
+ Title: "Service: Exploring the Mine Dungeon"
+ Targets:
+ - Mob: NOXIOUS
+ Count: 20
+ - Mob: VENOMOUS
+ Count: 20
+ - Id: 16027
+ Title: "Service: Cookies delivery"
+ - Id: 16028
+ Title: "Service: Cookies delivery"
+ - Id: 16029
+ Title: "Service: Cookies delivery"
+ - Id: 16030
+ Title: "Service: Cookies delivery"
+ - Id: 16031
+ Title: "Service: Cookies delivery"
+ - Id: 16032
+ Title: Hospitality to senior
+ - Id: 16033
+ Title: Bring dessert and listen the story
+ - Id: 16034
+ Title: Sweet cookies once a day
+ TimeLimit: 4h
+ - Id: 16035
+ Title: "Delivery: Explosive revolver materials"
+ - Id: 16036
+ Title: Expert's keen eye
+ - Id: 16037
+ Title: Material collection once a day
+ TimeLimit: 4h
+ - Id: 16038
+ Title: Collect 2 Oridecons
+ - Id: 16039
+ Title: Collect 2 Eluniums
+ - Id: 16040
+ Title: Collect 5 Irons
+ - Id: 16041
+ Title: "Investigation: Capture strolling cat operation"
+ - Id: 16042
+ Title: Charity temporarily stays
+ TimeLimit: 4h
+ - Id: 16043
+ Title: "Investigation: Capture someone's craving operation"
+ - Id: 16044
+ Title: In charge of Charity
+ - Id: 16045
+ Title: Veteran's small memorial service
+ - Id: 16046
+ Title: DIY obtaining bouquet materials
+ - Id: 16047
+ Title: Quiet memorial ceremony
+ - Id: 16048
+ Title: Traces of old story
+ - Id: 16049
+ Title: Quiet dawn
+ TimeLimit: 4h
+ - Id: 16050
+ Title: Tribute hour
+ - Id: 16051
+ Title: DIY obtaining bouquet materials
+ - Id: 16052
+ Title: Quiet memorial ceremony
+ - Id: 16053
+ Title: Ongoing old story
+ - Id: 16054
+ Title: Differentiated advertising strategy
+ - Id: 16055
+ Title: "Advertising: Dou you want a clean city?"
+ - Id: 16056
+ Title: "Advertising: Then blow it all away!"
+ - Id: 16057
+ Title: "Advertising: Suitable revenge for old age!"
+ - Id: 16058
+ Title: Slow advertising effect
+ TimeLimit: 4h
+ - Id: 16059
+ Title: Differentiated advertising strategy
+ - Id: 16060
+ Title: Fighting is the language of warmonger
+ - Id: 16061
+ Title: Fair and equitable result
+ - Id: 16062
+ Title: Gen of Niflheim
+ - Id: 16063
+ Title: The Witch's Aid
+ - Id: 16064
+ Title: Misfortunate of Niflheim
+ - Id: 16065
+ Title: The Queen's Symbol
+ - Id: 16066
+ Title: Knowledge of the Symbol
+ - Id: 16067
+ Title: Knowledge of Asgard
+ - Id: 16068
+ Title: Finding the Soul Pieces
+ - Id: 16069
+ Title: Finding the Soul Pieces
+ - Id: 16070
+ Title: Finding the Soul Pieces
+ - Id: 16071
+ Title: Finding the Soul Pieces
+ - Id: 16072
+ Title: Finding the Soul Pieces
+ - Id: 16073
+ Title: Agrboda's Soul
+ - Id: 16074
+ Title: Symbol of the Nine Realms
+ - Id: 16075
+ Title: Serin's Ambitions
+ - Id: 16076
+ Title: Witch's Tonic
+ - Id: 16077
+ Title: Serin's Release
+ - Id: 16078
+ Title: Peace of the Family
+ Targets:
+ - Mob: COYOTE
+ Count: 30
+ - Id: 16079
+ Title: Back for More Coyotes Tomorrow
+ TimeLimit: 4h
+ - Id: 16080
+ Title: Hunting Coyotes Again
+ Targets:
+ - Mob: COYOTE
+ Count: 30
+ - Id: 16081
+ Title: Failed to Get Juice Mix Package
+ - Id: 16082
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16083
+ Title: Discovered Wasteland Cactuten
+ - Id: 16084
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16085
+ Title: Discovered Coyote
+ - Id: 16086
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16087
+ Title: Discovered Cactus Girl
+ - Id: 16088
+ Title: Discovered Coyote
+ - Id: 16089
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16090
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16091
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16092
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16093
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16094
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16095
+ Title: Discovered Suspicious Sand Pile
+ - Id: 16101
+ Title: Kiel Hyre Academy
+ - Id: 16102
+ Title: Kiel Hyre Academy
+ - Id: 16103
+ Title: Kiel Hyre Academy
+ - Id: 16104
+ Title: Kiel Hyre Academy
+ - Id: 16105
+ Title: Kiel Hyre Academy
+ - Id: 16106
+ Title: Kiel Hyre Academy
+ - Id: 16107
+ Title: Kiel Hyre Academy
+ - Id: 16108
+ Title: Kiel Hyre Academy
+ - Id: 16109
+ Title: Kiel Hyre Academy
+ - Id: 16110
+ Title: Kiel Hyre Academy
+ - Id: 16111
+ Title: Kiel Hyre Academy
+ - Id: 16112
+ Title: Kiel Hyre Academy
+ - Id: 16113
+ Title: Kiel Hyre Academy
+ - Id: 16114
+ Title: Kiel Hyre Academy
+ - Id: 16115
+ Title: Kiel Hyre Academy
+ - Id: 16116
+ Title: Kiel Hyre Academy
+ - Id: 16117
+ Title: Mysterious World Map
+ - Id: 16118
+ Title: Hidden poem
+ - Id: 16119
+ Title: Snake swords
+ - Id: 16120
+ Title: A dream?
+ - Id: 16121
+ Title: Secret Code?
+ - Id: 16122
+ Title: Old Copper Key
+ - Id: 16123
+ Title: Green Keycard
+ - Id: 16124
+ Title: Steel Box
+ - Id: 16125
+ Title: Kiel Hyre Academy
+ - Id: 16126
+ Title: Kiel Hyre Academy
+ - Id: 16127
+ Title: Kiel Hyre Academy
+ - Id: 16128
+ Title: Kiel Hyre Academy
+ - Id: 16129
+ Title: Kiel Hyre Academy
+ - Id: 16130
+ Title: Kiel Hyre Academy
+ - Id: 16131
+ Title: Kiel Hyre Academy
+ - Id: 16132
+ Title: Kiel Hyre Academy
+ - Id: 16133
+ Title: Kiel Hyre Academy
+ - Id: 16134
+ Title: Kiel Hyre Academy
+ - Id: 16135
+ Title: Kiel Hyre Academy
+ - Id: 16136
+ Title: Kiel Hyre Academy
+ - Id: 16137
+ Title: Kiel Hyre Academy
+ - Id: 16138
+ Title: Kiel Hyre Academy
+ - Id: 16139
+ Title: Kiel Hyre Academy
+ - Id: 16140
+ Title: Kiel Hyre Academy
+ - Id: 16141
+ Title: Kiel Hyre Academy
+ - Id: 16142
+ Title: Kiel Hyre Academy
+ - Id: 16143
+ Title: Kiel Hyre Academy
+ - Id: 16144
+ Title: Kiel Hyre Academy
+ - Id: 16145
+ Title: Kiel Hyre Academy
+ - Id: 16146
+ Title: Kiel Hyre Academy
+ - Id: 16200
+ Title: Limberg's Request
+ - Id: 16201
+ Title: TPS Report
+ - Id: 16202
+ Title: TPS Report
+ - Id: 16203
+ Title: TPS Report
+ - Id: 16204
+ Title: Crack in the Wall
+ - Id: 16205
+ Title: The Empty Lava Tube
+ - Id: 17000
+ Title: Meet with Father Bamph
+ - Id: 17001
+ Title: Meet with Larjes
+ - Id: 17002
+ Title: Report to Father Bamph
+ - Id: 17003
+ Title: Travel to Rachel
+ - Id: 17004
+ Title: Travel to Veins
+ - Id: 17005
+ Title: Frustrated Magistrate
+ - Id: 17006
+ Title: Interrogated Smugglers
+ - Id: 17007
+ Title: Written Orders
+ - Id: 17008
+ Title: Investigating
+ - Id: 17009
+ Title: More Investigating
+ - Id: 17010
+ Title: Further Investigations
+ - Id: 17011
+ Title: Kurdi's Father
+ - Id: 17012
+ Title: Karyn's Boat
+ - Id: 17013
+ Title: To the Island
+ - Id: 17014
+ Title: Investigating the Island
+ - Id: 17015
+ Title: The Research Note
+ - Id: 17016
+ Title: Regicide
+ - Id: 17017
+ Title: Reporting the King's Death
+ - Id: 18001
+ Title: Delivery for Rooney
+ - Id: 18002
+ Title: Delivery for Rooney
+ - Id: 18003
+ Title: Delivery for Rooney
+ - Id: 18004
+ Title: Lasda's Request
+ - Id: 18005
+ Title: Jesse's Request
+ - Id: 18006
+ Title: Sir Krieg's Approval
+ - Id: 18007
+ Title: Sir Krieg's Trust
+ - Id: 18008
+ Title: Sir Krieg's Trust
+ - Id: 18009
+ Title: Into the prison
+ - Id: 18010
+ Title: Jail Break
+ - Id: 18011
+ Title: Bodyguard work
+ - Id: 18012
+ Title: Bodyguard work
+ - Id: 18013
+ Title: Bodyguard work
+ - Id: 18014
+ Title: Bodyguard work
+ - Id: 18015
+ Title: Bodyguard work
+ - Id: 18016
+ Title: Bodyguard work
+ - Id: 18017
+ Title: Jail Break
+ - Id: 18018
+ Title: Jail Break
+ - Id: 18019
+ Title: Vitre's Songs
+ - Id: 18020
+ Title: Vitre's Songs
+ - Id: 18021
+ Title: Vitre's Songs
+ - Id: 18022
+ Title: Vitre's Songs
+ - Id: 18023
+ Title: Vitre the Spy
+ - Id: 18030
+ Title: Gaebolg Family Curse
+ - Id: 18031
+ Title: Gaebolg Family Curse
+ - Id: 18032
+ Title: Gaebolg Family Curse
+ - Id: 18033
+ Title: Gaebolg Family Curse
+ - Id: 18034
+ Title: Gaebolg Family Curse
+ - Id: 18035
+ Title: Gaebolg Family Curse
+ - Id: 18036
+ Title: Gaebolg Family Curse
+ - Id: 18037
+ Title: Gaebolg Family Curse
+ - Id: 18038
+ Title: Gaebolg Family Curse
+ - Id: 18039
+ Title: Gaebolg Family Curse
+ - Id: 18040
+ Title: Gaebolg Family Curse
+ - Id: 18041
+ Title: Gaebolg Family Curse
+ - Id: 18042
+ Title: Gaebolg Family Curse
+ - Id: 18043
+ Title: Gaebolg Family Curse
+ - Id: 18044
+ Title: Gaebolg Family Curse
+ - Id: 18045
+ Title: Gaebolg Family Curse
+ - Id: 18046
+ Title: Gaebolg Family Curse
+ - Id: 18047
+ Title: Gaebolg Family Curse
+ - Id: 18048
+ Title: Gaebolg Family Curse
+ - Id: 18049
+ Title: Gaebolg Family Curse
+ - Id: 18050
+ Title: Gaebolg Family Curse
+ - Id: 18051
+ Title: Gaebolg Family Curse
+ - Id: 18052
+ Title: Gaebolg Family Curse
+ - Id: 18060
+ Title: Missing boy Mikhail
+ - Id: 18061
+ Title: Mikhail's Whereabouts
+ - Id: 18062
+ Title: Missing boy Mikhail
+ - Id: 18063
+ Title: The isolated swamp
+ - Id: 18064
+ Title: Back to the Village
+ - Id: 18065
+ Title: High-strength Adhesive
+ - Id: 18066
+ Title: Back to the swamp
+ - Id: 18067
+ Title: Make the paste
+ - Id: 18068
+ Title: Fixing the Matrushka
+ - Id: 18069
+ Title: Report to Gallina
+ - Id: 18070
+ Title: Banishing Winter
+ - Id: 18071
+ Title: Making the magic dust
+ - Id: 18072
+ Title: Making the magic dust
+ - Id: 18073
+ Title: The Dragon's Lair
+ - Id: 18074
+ Title: The Magic Gourd Bottle
+ - Id: 18075
+ Title: Containing People's Speech
+ - Id: 18076
+ Title: Containing People's Speech
+ - Id: 18077
+ Title: Csar's Request
+ - Id: 18078
+ Title: Baba Yaga's Secret Medicine
+ - Id: 18079
+ Title: Winter is Banished
+ - Id: 18100
+ Title: Legends from Moscovia
+ - Id: 18101
+ Title: The Moving Island
+ - Id: 18102
+ Title: In Search of The Moving Island
+ - Id: 18103
+ Title: In Search of The Moving Island
+ - Id: 18104
+ Title: Mr. Ibanoff's New Friend
+ - Id: 18105
+ Title: Repairing Charabel
+ - Id: 18106
+ Title: As the Tide Turns
+ - Id: 18107
+ Title: Departing
+ - Id: 18108
+ Title: The Moving Island?
+ - Id: 18109
+ Title: The Moving Island???
+ - Id: 18110
+ Title: The Aged Stranger
+ - Id: 18111
+ Title: Whale Island!
+ - Id: 18112
+ Title: A Story for the Csar
+ - Id: 18113
+ Title: Evidence for the Csar
+ - Id: 18114
+ Title: Before Sunset
+ - Id: 18115
+ Title: Departing
+ - Id: 18116
+ Title: Whale Island!
+ - Id: 18117
+ Title: Materials for Evidence
+ - Id: 18118
+ Title: Mysterious Musical Instrument
+ - Id: 18119
+ Title: Gusli
+ - Id: 18120
+ Title: Gusli
+ - Id: 18121
+ Title: Shafka
+ - Id: 19101
+ Title: The Eye of Hellion
+ - Id: 19102
+ Title: The Eye of Hellion
+ - Id: 19103
+ Title: The Eye of Hellion
+ - Id: 19104
+ Title: The Eye of Hellion
+ - Id: 19105
+ Title: The Eye of Hellion
+ - Id: 19106
+ Title: The Eye of Hellion
+ - Id: 19107
+ Title: The Eye of Hellion
+ - Id: 19108
+ Title: The Eye of Hellion
+ - Id: 19109
+ Title: The Eye of Hellion
+ - Id: 19110
+ Title: The Eye of Hellion
+ - Id: 19111
+ Title: The Eye of Hellion
+ - Id: 19112
+ Title: The Eye of Hellion
+ - Id: 19113
+ Title: The Eye of Hellion
+ - Id: 19114
+ Title: The Eye of Hellion
+ - Id: 19115
+ Title: The Eye of Hellion
+ - Id: 19116
+ Title: The Eye of Hellion
+ - Id: 19117
+ Title: The Eye of Hellion
+ - Id: 19118
+ Title: The Eye of Hellion
+ - Id: 19119
+ Title: The Eye of Hellion
+ - Id: 19120
+ Title: The Eye of Hellion
+ - Id: 19121
+ Title: The Eye of Hellion
+ - Id: 19122
+ Title: The Eye of Hellion
+ - Id: 19123
+ Title: The Eye of Hellion
+ - Id: 19124
+ Title: The Eye of Hellion
+ - Id: 19125
+ Title: The Eye of Hellion
+ - Id: 19126
+ Title: The Eye of Hellion
+ - Id: 19127
+ Title: The Eye of Hellion
+ - Id: 19128
+ Title: The Eye of Hellion
+ - Id: 19129
+ Title: The Eye of Hellion
+ - Id: 21001
+ Title: Escape the Wreck
+ - Id: 21002
+ Title: The first battle
+ - Id: 21008
+ Title: The first battle
+ Drops:
+ - Mob: G_PORING
+ Item: Wood
+ Rate: 10000
+ - Id: 50000
+ Title: Pirate Dagger materials
+ - Id: 50001
+ Title: Weather Beaten Old Man
+ - Id: 50002
+ Title: Lost Treasure?
+ - Id: 50003
+ Title: Lost Treasure?
+ - Id: 50004
+ Title: The Old Man's Treasure
+ - Id: 50005
+ Title: The Old Man's Treasure
+ - Id: 50006
+ Title: The Old Man's Treasure
+ - Id: 50007
+ Title: The Old Man's Treasure
+ - Id: 50008
+ Title: The Old Man's Treasure
+ - Id: 50009
+ Title: The Old Man's Treasure
+ - Id: 50010
+ Title: A special lock pick
+ - Id: 50011
+ Title: The special lock pick
+ - Id: 50012
+ Title: Use the lock pick
+ - Id: 50013
+ Title: Broken lock pick
+ - Id: 50015
+ Title: The empty treasure box
+ - Id: 50016
+ Title: The empty treasure box
+ - Id: 50017
+ Title: The empty treasure box
+ - Id: 50018
+ Title: The empty treasure box
+ - Id: 50019
+ Title: The empty treasure box
+ - Id: 50020
+ Title: The empty treasure box
+ - Id: 50021
+ Title: J Roger
+ - Id: 50022
+ Title: J Roger's key materials
+ - Id: 50023
+ Title: Conversation with J Roger
+ - Id: 50024
+ Title: Bury the treasure
+ - Id: 50025
+ Title: Bury the treasure
+ - Id: 50026
+ Title: Bury the treasure
+ - Id: 50027
+ Title: Buried treasure
+ - Id: 50028
+ Title: Stolen treasure!
+ - Id: 50029
+ Title: A Pirate's Spirit!
+ - Id: 60001
+ Title: Monster Extermination
+ - Id: 60002
+ Title: Monster Extermination
+ - Id: 60003
+ Title: Monster Extermination
+ - Id: 60004
+ Title: Monster Extermination
+ - Id: 60005
+ Title: Monster Extermination
+ - Id: 60006
+ Title: Monster Extermination
+ - Id: 60007
+ Title: Endless Tower Effect
+ - Id: 60008
+ Title: Endless Tower Time Limit
+ - Id: 60009
+ Title: Orc Hero
+ - Id: 60010
+ Title: Derik Ver's Request
+ - Id: 60011
+ Title: Investigation of Byalan
+ - Id: 60012
+ Title: Investigation of Abyss
+ - Id: 60013
+ Title: Monster Investigation
+ - Id: 60014
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60015
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60016
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60017
+ Title: Geffen Dungeon's Monster Investigation
+ - Id: 60018
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60019
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60020
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60021
+ Title: Byalan Dungeon's Monster Investigation
+ - Id: 60022
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60023
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60024
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60025
+ Title: Abyss Lake's Monster Investigation
+ - Id: 60026
+ Title: Continuing the Investigation
+ - Id: 60027
+ Title: Investigating Aldebaran
+ - Id: 60028
+ Title: Monster Investigation
+ - Id: 60029
+ Title: Aldebaran Monster Investigation
+ - Id: 60030
+ Title: Clock Tower Monster Investigation
+ - Id: 60031
+ Title: Clock Tower Monster Investigation
+ - Id: 60032
+ Title: Lutie Field Monster Investigation
+ - Id: 60033
+ Title: Clock Tower Monster Investigation
+ - Id: 60034
+ Title: Clock Tower Monster Investigation
+ - Id: 60035
+ Title: Aldebaran Monster Investigation
+ - Id: 60036
+ Title: Clock Tower Monster Investigation
+ - Id: 60037
+ Title: Clock Tower Monster Investigation
+ - Id: 60038
+ Title: Aldebaran Monster Investigation
+ - Id: 60039
+ Title: Investigation of Glastheim
+ - Id: 60040
+ Title: Investigation of Glastheim
+ - Id: 60041
+ Title: Monster Investigation
+ - Id: 60042
+ Title: Investigation of Glastheim
+ - Id: 60043
+ Title: Glastheim Monster Investigation
+ - Id: 60044
+ Title: Glastheim Monster Investigation
+ - Id: 60045
+ Title: Investigation of Glastheim
+ - Id: 60046
+ Title: Glastheim Monster Investigation
+ - Id: 60047
+ Title: Glastheim Monster Investigation
+ - Id: 60048
+ Title: Investigation of Glastheim
+ - Id: 60049
+ Title: Glastheim Monster Investigation
+ - Id: 60050
+ Title: Glastheim Monster Investigation
+ - Id: 60051
+ Title: Investigation of Glastheim
+ - Id: 60052
+ Title: Glastheim Monster Investigation
+ - Id: 60053
+ Title: Glastheim Monster Investigation
+ - Id: 60054
+ Title: Investigation of Glastheim
+ - Id: 60055
+ Title: Glastheim Monster Investigation
+ - Id: 60056
+ Title: Glastheim Monster Investigation
+ - Id: 60057
+ Title: Glastheim Monster Investigation
+ - Id: 60058
+ Title: Derik Ver's Brother
+ - Id: 60059
+ Title: A history lesson
+ - Id: 60060
+ Title: The Crown of Deceit
+ - Id: 60061
+ Title: A magic solvent
+ - Id: 60062
+ Title: Rendering the crown Inert
+ - Id: 60101
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 50
+ - Id: 60102
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 100
+ - Id: 60103
+ Title: Hunting Peco Pecos
+ Targets:
+ - Mob: PECOPECO
+ Count: 150
+ - Id: 60104
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 50
+ - Id: 60105
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 100
+ - Id: 60106
+ Title: Hunting Hodes
+ Targets:
+ - Mob: HODE
+ Count: 150
+ - Id: 60107
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 50
+ - Id: 60108
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 100
+ - Id: 60109
+ Title: Hunting Fabres
+ Targets:
+ - Mob: FABRE
+ Count: 150
+ - Id: 60110
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 50
+ - Id: 60111
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 100
+ - Id: 60112
+ Title: Hunting Pupa
+ Targets:
+ - Mob: PUPA
+ Count: 150
+ - Id: 60113
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 50
+ - Id: 60114
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 100
+ - Id: 60115
+ Title: Hunting Cocos
+ Targets:
+ - Mob: COCO
+ Count: 150
+ - Id: 60116
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 50
+ - Id: 60117
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 100
+ - Id: 60118
+ Title: Hunting Caramels
+ Targets:
+ - Mob: CARAMEL
+ Count: 150
+ - Id: 60119
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 50
+ - Id: 60120
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 100
+ - Id: 60121
+ Title: Hunting Alligators
+ Targets:
+ - Mob: ALLIGATOR
+ Count: 150
+ - Id: 60122
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 50
+ - Id: 60123
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 100
+ - Id: 60124
+ Title: Hunting Creamys
+ Targets:
+ - Mob: CREAMY
+ Count: 150
+ - Id: 60125
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 50
+ - Id: 60126
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 100
+ - Id: 60127
+ Title: Hunting Demon Pungus
+ Targets:
+ - Mob: DEMON_PUNGUS
+ Count: 150
+ - Id: 60128
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 50
+ - Id: 60129
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 100
+ - Id: 60130
+ Title: Hunting Dokebi
+ Targets:
+ - Mob: DOKEBI
+ Count: 150
+ - Id: 60131
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 50
+ - Id: 60132
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 100
+ - Id: 60133
+ Title: Hunting Dryads
+ Targets:
+ - Mob: DRYAD
+ Count: 150
+ - Id: 60134
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 50
+ - Id: 60135
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 100
+ - Id: 60136
+ Title: Hunting Frilldora
+ Targets:
+ - Mob: FRILLDORA
+ Count: 150
+ - Id: 60137
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 50
+ - Id: 60138
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 100
+ - Id: 60139
+ Title: Hunting Goats
+ Targets:
+ - Mob: GOAT
+ Count: 150
+ - Id: 60140
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 50
+ - Id: 60141
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 100
+ - Id: 60142
+ Title: Hunting Golems
+ Targets:
+ - Mob: GOLEM
+ Count: 150
+ - Id: 60143
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 50
+ - Id: 60144
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 100
+ - Id: 60145
+ Title: Hunting Leaf Cats
+ Targets:
+ - Mob: LEAF_CAT
+ Count: 150
+ - Id: 60146
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 50
+ - Id: 60147
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 100
+ - Id: 60148
+ Title: Hunting Skeletons
+ Targets:
+ - Mob: SKELETON
+ Count: 150
+ - Id: 60149
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 50
+ - Id: 60150
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 100
+ - Id: 60151
+ Title: Hunting Munaks
+ Targets:
+ - Mob: MUNAK
+ Count: 150
+ - Id: 60152
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 50
+ - Id: 60153
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 100
+ - Id: 60154
+ Title: Hunting Sohees
+ Targets:
+ - Mob: SOHEE
+ Count: 150
+ - Id: 60155
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 50
+ - Id: 60156
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 100
+ - Id: 60157
+ Title: Hunting Firelock Soldiers
+ Targets:
+ - Mob: ANTIQUE_FIRELOCK
+ Count: 150
+ - Id: 60158
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 50
+ - Id: 60159
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 100
+ - Id: 60160
+ Title: Hunting Tengus
+ Targets:
+ - Mob: TENGU
+ Count: 150
+ - Id: 60161
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 25
+ - Id: 60162
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 50
+ - Id: 60163
+ Title: Hunting Venatu
+ Targets:
+ - Mob: VENATU
+ Count: 75
+ - Id: 60164
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 50
+ - Id: 60165
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 100
+ - Id: 60166
+ Title: Hunting Archdam
+ Targets:
+ - Mob: ARCHDAM
+ Count: 150
+ - Id: 60167
+ Title: Hunting Siromas
+ Targets:
+ - Mob: SIROMA
+ Count: 50
+ - Id: 60168
+ Title: Hunting Siromas
+ Targets:
+ - Mob: SIROMA
+ Count: 100
+ - Id: 60169
+ Title: Hunting Siroma
+ Targets:
+ - Mob: SIROMA
+ Count: 150
+ - Id: 60170
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 50
+ - Id: 60171
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 100
+ - Id: 60172
+ Title: Hunting Ice Titans
+ Targets:
+ - Mob: ICE_TITAN
+ Count: 150
+ - Id: 60173
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 50
+ - Id: 60174
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 100
+ - Id: 60175
+ Title: Hunting Disguises
+ Targets:
+ - Mob: DISGUISE
+ Count: 150
+ - Id: 60176
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 50
+ - Id: 60177
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 100
+ - Id: 60178
+ Title: Hunting Loli Ruri
+ Targets:
+ - Mob: LOLI_RURI
+ Count: 150
+ - Id: 60179
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 50
+ - Id: 60180
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 100
+ - Id: 60181
+ Title: Hunting Mantis
+ Targets:
+ - Mob: MANTIS
+ Count: 150
+ - Id: 60182
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 50
+ - Id: 60183
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 100
+ - Id: 60184
+ Title: Hunting Dancing Dragons
+ Targets:
+ - Mob: DANCING_DRAGON
+ Count: 150
+ - Id: 60185
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 20
+ - Id: 60186
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 40
+ - Id: 60187
+ Title: Hunting Necromancers
+ Targets:
+ - Mob: NECROMANCER
+ Count: 60
+ - Id: 60188
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 50
+ - Id: 60189
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 100
+ - Id: 60190
+ Title: Hunting Apocalypse
+ Targets:
+ - Mob: APOCALIPS
+ Count: 150
+ - Id: 60200
+ Title: Endless Tower Effect
+ TimeLimit: +7d
+ - Id: 60201
+ Title: Endless Tower Time Limit
+ TimeLimit: +4h
+ - Id: 60211
+ Title: Thor Volcano base camp
+ - Id: 60212
+ Title: Thor Volcano base camp
+ - Id: 60213
+ Title: Thor Volcano base camp
+ - Id: 60301
+ Title: Dragon Hunting
+ Targets:
+ - Mob: PETIT
+ Count: 100
+ - Id: 60302
+ Title: Dragon Hunting
+ Targets:
+ - Mob: PETIT
+ Count: 200
+ - Id: 60303
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS
+ Count: 100
+ - Id: 60304
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS
+ Count: 200
+ - Id: 60305
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS_
+ Count: 100
+ - Id: 60306
+ Title: Dragon Hunting
+ Targets:
+ - Mob: FERUS_
+ Count: 200
+ - Id: 60307
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS
+ Count: 100
+ - Id: 60308
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS
+ Count: 200
+ - Id: 60309
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS_
+ Count: 100
+ - Id: 60310
+ Title: Dragon Hunting
+ Targets:
+ - Mob: ACIDUS_
+ Count: 200
+ - Id: 60351
+ Title: Bathroom Ghost
+ - Id: 60352
+ Title: Bathroom Ghost
+ - Id: 60353
+ Title: Bathroom Ghost
+ - Id: 60354
+ Title: Bathroom Ghost
+ - Id: 60355
+ Title: Bathroom Ghost
+ - Id: 62238
+ Title: Midgardian Mercenary timer
+ TimeLimit: +1h
diff --git a/db/re/refine.yml b/db/re/refine.yml
new file mode 100644
index 0000000000..36b4362673
--- /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: 4800
+ 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: 5100
+ 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: 5400
+ 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: 5700
+ 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: 6000
+ 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: 8000
+ 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: 8500
+ 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: 9000
+ 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: 9500
+ 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: 10000
+ 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: 11200
+ 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: 11900
+ 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: 12600
+ 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: 13300
+ 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: 14000
+ 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: 16000
+ 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: 17000
+ 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: 18000
+ 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: 19000
+ 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: 20000
+ 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 9a217836cb..de9e4a7dfc 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
@@ -55,7 +55,7 @@
# NoNearNPC: Determines if the skill can be used near a NPC. (Optional)
# AdditionalRange Number of cells from an NPC where the skill can be cast. (Optional)
# Type: Type of NPC.
-# CastCancel Cancel cast when hit. (Default: true)
+# CastCancel Cancel cast when hit. (Default: false)
# CastDefenseReduction Defense reduction rate during skill cast. (Default: 0)
# CastTime: Time to cast the skill in milliseconds. (Default: 0)
# - Level Skill level.
@@ -1260,10 +1260,6 @@ Body:
Size: 2
- Level: 11
Size: 3
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -1595,7 +1591,7 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 18
CastCancel: true
CastTime: 350
AfterCastActDelay: 3500
@@ -2076,7 +2072,7 @@ Body:
- Level: 3
Time: 400
- Level: 4
- Time: -1
+ Time: 0
Requires:
SpCost: 60
ItemCost:
@@ -2110,11 +2106,9 @@ Body:
TargetType: Attack
DamageFlags:
NoDamage: true
- Flags:
- IncreaseGloomyDayDamage: true
Range: -2
- Hit: Single
- HitCount: 1
+ Hit: Multi_Hit
+ HitCount: -3
Element: Weapon
SplashArea: 2
ActiveInstance: 5
@@ -2285,8 +2279,6 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
- DamageFlags:
- Splash: true
Flags:
TargetTrap: true
Range: -2
@@ -2294,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
@@ -2351,17 +2363,7 @@ Body:
NoDamage: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 3
- - Level: 2
- Area: 3
- - Level: 3
- Area: 7
- - Level: 4
- Area: 7
- - Level: 5
- Area: 15
+ SplashArea: 18
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
@@ -2371,30 +2373,27 @@ Body:
Requires:
SpCost:
- Level: 1
- Amount: 13
+ Amount: 59
- Level: 2
- Amount: 16
+ Amount: 62
- Level: 3
- Amount: 19
+ Amount: 65
- Level: 4
- Amount: 22
+ Amount: 68
- Level: 5
- Amount: 25
+ Amount: 71
- Id: 67
Name: PR_SUFFRAGIUM
Description: Suffragium
MaxLevel: 3
Type: Magic
- TargetType: Support
+ TargetType: Self
DamageFlags:
NoDamage: true
Splash: true
- Flags:
- NoTargetSelf: true
- Range: 9
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 18
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
@@ -2656,7 +2655,7 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 18
CastCancel: true
CastTime: 3200
AfterCastActDelay: 2000
@@ -2685,7 +2684,7 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 18
CastCancel: true
AfterCastActDelay: 2000
Duration1:
@@ -3466,10 +3465,6 @@ Body:
Size: 6
- Level: 11
Size: 7
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Range: 1
Interval: 1250
Target: Enemy
@@ -3562,12 +3557,6 @@ Body:
Size: 2
- Level: 10
Size: 2
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -6140,11 +6129,8 @@ Body:
Name: NPC_DARKBREATH
Description: Dark Breath
MaxLevel: 5
- Type: Misc
+ Type: Magic
TargetType: Attack
- DamageFlags:
- IgnoreFlee: true
- IgnoreDefCard: true
Flags:
IsNpc: true
Range: 9
@@ -7094,8 +7080,6 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range:
- Level: 1
Size: 3
@@ -7212,8 +7196,8 @@ Body:
CastDefenseReduction: 33
CastTime: 1000
AfterCastActDelay: 500
- AfterCastWalkDelay: 800
- Duration1: 800
+ AfterCastWalkDelay: 1000
+ Duration1: 950
Duration2: 20000
Cooldown: 1000
FixedCastTime: 500
@@ -8255,22 +8239,6 @@ Body:
Size: 4
- Level: 5
Size: 5
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -8586,9 +8554,9 @@ Body:
IsEnsemble: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 60000
Cooldown: 20000
Requires:
@@ -8640,9 +8608,9 @@ Body:
IsEnsemble: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 60000
Cooldown: 20000
Requires:
@@ -8672,7 +8640,7 @@ Body:
IsEnsemble: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
Duration1: 60000
Duration2: 60000
@@ -8726,9 +8694,9 @@ Body:
IsEnsemble: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 60000
Cooldown: 20000
Requires:
@@ -8748,9 +8716,9 @@ Body:
IsEnsemble: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 60000
Cooldown: 20000
Requires:
@@ -8786,7 +8754,7 @@ Body:
HitCount: 2
Element: Weapon
CastTime: 500
- AfterCastActDelay: 3000
+ AfterCastActDelay: 300
FixedCastTime: 300
Requires:
SpCost: 12
@@ -8866,9 +8834,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -8908,9 +8876,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -8950,9 +8918,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -8992,9 +8960,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -9118,9 +9086,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -9202,9 +9170,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -9244,9 +9212,9 @@ Body:
IsSong: true
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 15
CastTime: 1000
- Duration1: 60000
+ Duration1: 180000
Duration2: 20000
Cooldown: 20000
Requires:
@@ -9411,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
@@ -9930,26 +9897,15 @@ Body:
Time: 1000
Duration1:
- Level: 1
- Time: 20000
+ Time: 60000
- Level: 2
- Time: 25000
+ Time: 90000
- Level: 3
- Time: 30000
+ Time: 120000
- Level: 4
- Time: 35000
+ Time: 150000
- Level: 5
- Time: 40000
- Duration2:
- - Level: 1
- Time: 20000
- - Level: 2
- Time: 25000
- - Level: 3
- Time: 30000
- - Level: 4
- Time: 35000
- - Level: 5
- Time: 40000
+ Time: 180000
Cooldown: 30000
FixedCastTime:
- Level: 1
@@ -10019,25 +9975,25 @@ Body:
Requires:
SpCost:
- Level: 1
- Amount: 14
+ Amount: 35
- Level: 2
- Amount: 18
+ Amount: 40
- Level: 3
- Amount: 22
+ Amount: 45
- Level: 4
- Amount: 26
- - Level: 5
- Amount: 30
- - Level: 6
- Amount: 34
- - Level: 7
- Amount: 38
- - Level: 8
- Amount: 42
- - Level: 9
- Amount: 46
- - Level: 10
Amount: 50
+ - Level: 5
+ Amount: 55
+ - Level: 6
+ Amount: 60
+ - Level: 7
+ Amount: 65
+ - Level: 8
+ Amount: 70
+ - Level: 9
+ Amount: 75
+ - Level: 10
+ Amount: 80
- Id: 367
Name: PA_PRESSURE
Description: Gloria Domini
@@ -10408,62 +10364,21 @@ Body:
Name: ASC_BREAKER
Description: Soul Destroyer
MaxLevel: 10
- Type: Misc
+ Type: Weapon
TargetType: Attack
DamageFlags:
- IgnoreAtkCard: true
- IgnoreDefense: true
- IgnoreFlee: true
+ Critical: true
Range: 9
Hit: Single
HitCount: 1
Element: Weapon
CastCancel: true
CastTime: 250
- AfterCastActDelay:
- - Level: 1
- Time: 1000
- - Level: 2
- Time: 1200
- - Level: 3
- Time: 1400
- - Level: 4
- Time: 1600
- - Level: 5
- Time: 1800
- - Level: 6
- Time: 2000
- - Level: 7
- Time: 2200
- - Level: 8
- Time: 2400
- - Level: 9
- Time: 2600
- - Level: 10
- Time: 2800
+ AfterCastActDelay: 2000
+ Cooldown: 150
FixedCastTime: 250
Requires:
- SpCost:
- - Level: 1
- Amount: 20
- - Level: 2
- Amount: 20
- - Level: 3
- Amount: 20
- - Level: 4
- Amount: 20
- - Level: 5
- Amount: 20
- - Level: 6
- Amount: 30
- - Level: 7
- Amount: 30
- - Level: 8
- Amount: 30
- - Level: 9
- Amount: 30
- - Level: 10
- Amount: 30
+ SpCost: 20
- Id: 380
Name: SN_SIGHT
Description: Falcon Eyes
@@ -11020,7 +10935,6 @@ Body:
TargetType: Attack
Flags:
TargetTrap: true
- IncreaseGloomyDayDamage: true
Range: 5
Hit: Multi_Hit
HitCount: 5
@@ -11304,7 +11218,6 @@ Body:
TargetType: Self
DamageFlags:
Splash: true
- IgnoreAtkCard: true
Flags:
TargetTrap: true
IgnoreAutoGuard: true
@@ -11466,13 +11379,13 @@ Body:
- Level: 6
Time: 500
- Level: 7
- Time: -1
+ Time: 0
- Level: 8
- Time: -1
+ Time: 0
- Level: 9
- Time: -1
+ Time: 0
- Level: 10
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -13254,8 +13167,6 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range:
- Level: 1
Size: 7
@@ -13353,29 +13264,27 @@ Body:
MaxLevel: 5
Type: Magic
TargetType: Ground
- DamageFlags:
- NoDamage: true
Flags:
TargetEmperium: true
IgnoreHovering: true
TargetHidden: true
Range: 18
- Hit: Single
- HitCount: 1
+ Hit: Multi_Hit
+ HitCount:
+ - Level: 1
+ Count: 10
+ - Level: 2
+ Count: 12
+ - Level: 3
+ Count: 14
+ - Level: 4
+ Count: 16
+ - Level: 5
+ Count: 18
CastCancel: true
CastTime: 5000
AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 2000
- - Level: 2
- Time: 2400
- - Level: 3
- Time: 2800
- - Level: 4
- Time: 3200
- - Level: 5
- Time: 3600
+ Duration1: 100
Cooldown: 5000
FixedCastTime: 1000
Requires:
@@ -13390,13 +13299,10 @@ Body:
Amount: 90
- Level: 5
Amount: 100
- ItemCost:
- - Item: Blue_Gemstone
- Amount: 1
Unit:
Id: Gravitation
- Layout: 2
- Interval: 200
+ Range: 2
+ Interval: 5100 #Using 5s causes a rare bug where another hit occurs at the end
Target: Enemy
Flag:
PathCheck: true
@@ -13584,11 +13490,8 @@ Body:
Name: CR_ACIDDEMONSTRATION
Description: Acid Demonstration
MaxLevel: 10
- Type: Misc
+ Type: Weapon
TargetType: Attack
- DamageFlags:
- IgnoreDefense: true
- IgnoreFlee: true
Range: 9
Hit: Multi_Hit
HitCount:
@@ -13615,15 +13518,16 @@ Body:
Element: Weapon
CastCancel: true
AfterCastActDelay: 1000
+ Cooldown: 150
FixedCastTime: 1000
Requires:
- SpCost: 30
+ SpCost: 50
ItemCost:
- Item: Fire_Bottle
Amount: 1
- Item: Acid_Bottle
Amount: 1
- - Id: 491
+ - Id: 491 # Removed on kRO
Name: CR_CULTIVATION
Description: Plant Cultivation
MaxLevel: 2
@@ -14308,7 +14212,6 @@ Body:
Element: Weapon
Knockback: 5
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -14437,7 +14340,6 @@ Body:
- Level: 10
Area: 4
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -14760,15 +14662,15 @@ Body:
AllowWhenHidden: true
Range:
- Level: 1
- Size: 7
+ Size: 6
- Level: 2
- Size: 9
+ Size: 7
- Level: 3
- Size: 11
+ Size: 8
- Level: 4
- Size: 13
+ Size: 9
- Level: 5
- Size: 15
+ Size: 10
Hit: Single
HitCount: 1
CopyFlags:
@@ -14793,15 +14695,15 @@ Body:
AlterRangeShadowJump: true
Range:
- Level: 1
- Size: 7
+ Size: 6
- Level: 2
- Size: 9
+ Size: 7
- Level: 3
- Size: 11
+ Size: 8
- Level: 4
- Size: 13
+ Size: 9
- Level: 5
- Size: 15
+ Size: 10
Hit: Single
HitCount: -3
Element: Weapon
@@ -15384,12 +15286,6 @@ Body:
Size: 3
- Level: 10
Size: 4
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Flag:
PathCheck: true
@@ -15512,7 +15408,6 @@ Body:
Time: 4000
- Level: 10
Time: 4400
- AfterCastActDelay: 1000
FixedCastTime:
- Level: 1
Time: 200
@@ -15602,22 +15497,6 @@ Body:
Size: 2
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -15840,9 +15719,12 @@ Body:
DamageFlags:
Splash: true
SplashSplit: true
+ IgnoreDefense: true
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
+ IgnoreLandProtector: true
Hit: Multi_Hit
HitCount: 1
SplashArea:
@@ -15866,6 +15748,35 @@ Body:
Area: 11
- Level: 10
Area: 13
+ Duration1: 910
+ FixedCastTime: -1
+ Unit:
+ Id: Earthquake
+ Range:
+ - Level: 1
+ Size: 5
+ - Level: 2
+ Size: 7
+ - Level: 3
+ Size: 9
+ - Level: 4
+ Size: 11
+ - Level: 5
+ Size: 13
+ - Level: 6
+ Size: 5
+ - Level: 7
+ Size: 7
+ - Level: 8
+ Size: 9
+ - Level: 9
+ Size: 11
+ - Level: 10
+ Size: 13
+ Interval: 300
+ Target: Enemy
+ Flag:
+ PathCheck: true
- Id: 654
Name: NPC_FIREBREATH
Description: Fire Breath
@@ -15895,7 +15806,6 @@ Body:
SplashArea: 3
ActiveInstance: 14
Duration2: 30000
- FixedCastTime: -1
- Id: 656
Name: NPC_THUNDERBREATH
Description: Thunder Breath
@@ -15925,7 +15835,6 @@ Body:
SplashArea: 3
ActiveInstance: 14
Duration2: 20000
- FixedCastTime: -1
- Id: 658
Name: NPC_DARKNESSBREATH
Description: Darkness Breath
@@ -15950,6 +15859,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -15972,7 +15882,6 @@ Body:
Time: 30000
- Level: 4
Time: 120000
- FixedCastTime: -1
- Id: 660
Name: NPC_BLEEDING
Description: Bleeding
@@ -15986,7 +15895,6 @@ Body:
HitCount: 1
Element: Weapon
Duration2: 120000
- FixedCastTime: -1
- Id: 661
Name: NPC_PULSESTRIKE
Description: Pulse Strike
@@ -15998,6 +15906,7 @@ Body:
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea: 7
@@ -16013,11 +15922,11 @@ Body:
Flags:
IsNpc: true
TargetTrap: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea: 14
Duration2: 20000
- FixedCastTime: -1
- Id: 663
Name: NPC_WIDESILENCE
Description: Wide Silence
@@ -16028,6 +15937,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16042,7 +15952,6 @@ Body:
- Level: 5
Area: 14
Duration2: 20000
- FixedCastTime: -1
- Id: 664
Name: NPC_WIDEFREEZE
Description: Wide Freeze
@@ -16053,6 +15962,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16067,7 +15977,6 @@ Body:
- Level: 5
Area: 14
Duration2: 30000
- FixedCastTime: -1
- Id: 665
Name: NPC_WIDEBLEEDING
Description: Wide Bleeding
@@ -16078,6 +15987,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16092,7 +16002,6 @@ Body:
- Level: 5
Area: 14
Duration2: 120000
- FixedCastTime: -1
- Id: 666
Name: NPC_WIDESTONE
Description: Wide Petrify
@@ -16103,6 +16012,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16117,7 +16027,6 @@ Body:
- Level: 5
Area: 14
Duration2: 20000
- FixedCastTime: -1
- Id: 667
Name: NPC_WIDECONFUSE
Description: Wide Confusion
@@ -16128,6 +16037,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16142,7 +16052,6 @@ Body:
- Level: 5
Area: 14
Duration2: 30000
- FixedCastTime: -1
- Id: 668
Name: NPC_WIDESLEEP
Description: Wide Sleep
@@ -16153,6 +16062,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16167,7 +16077,6 @@ Body:
- Level: 5
Area: 14
Duration2: 30000
- FixedCastTime: -1
- Id: 669
Name: NPC_WIDESIGHT
Description: Wide Sight
@@ -16179,12 +16088,12 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
Element: Fire
SplashArea: 5
Duration1: 10000
- FixedCastTime: -1
- Id: 670
Name: NPC_EVILLAND
Description: Evil Land
@@ -16198,6 +16107,7 @@ Body:
IgnoreDefCard: true
Flags:
IsNpc: true
+ ShowScale: true
Range: 7
Hit: Single
HitCount: 1
@@ -16224,7 +16134,6 @@ Body:
- Level: 10
Time: 12900
Duration2: 20000
- FixedCastTime: -1
Unit:
Id: Evilland
Layout: 1
@@ -16249,12 +16158,6 @@ Body:
Size: 5
- Level: 10
Size: 13
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Flag:
NoOverlap: true
@@ -16291,7 +16194,6 @@ Body:
Time: 2000
- Level: 10
Time: 2000
- FixedCastTime: -1
- Id: 672
Name: NPC_SLOWCAST
Description: Slow Cast
@@ -16302,6 +16204,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16316,7 +16219,6 @@ Body:
- Level: 5
Area: 14
Duration2: 30000
- FixedCastTime: -1
- Id: 673
Name: NPC_CRITICALWOUND
Description: Critical Wounds
@@ -16330,7 +16232,6 @@ Body:
HitCount: 1
Element: Weapon
Duration2: 30000
- FixedCastTime: -1
- Id: 674
Name: NPC_EXPULSION
Description: Expulsion
@@ -16377,7 +16278,6 @@ Body:
Time: 2000
- Level: 10
Time: 2000
- FixedCastTime: -1
- Id: 676
Name: NPC_ANTIMAGIC
Description: Anti Magic
@@ -16411,7 +16311,6 @@ Body:
Time: 2000
- Level: 10
Time: 2000
- FixedCastTime: -1
- Id: 677
Name: NPC_WIDECURSE
Description: Wide Curse
@@ -16422,6 +16321,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16436,7 +16336,6 @@ Body:
- Level: 5
Area: 14
Duration2: 20000
- FixedCastTime: -1
- Id: 678
Name: NPC_WIDESTUN
Description: Wide Stun
@@ -16447,6 +16346,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16461,7 +16361,6 @@ Body:
- Level: 5
Area: 14
Duration2: 5000
- FixedCastTime: -1
- Id: 679
Name: NPC_VAMPIRE_GIFT
Description: Vampire Gift
@@ -16472,6 +16371,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16505,6 +16405,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
SplashArea:
@@ -16556,7 +16457,6 @@ Body:
Range: -9
HitCount: 1
Duration2: 180000
- FixedCastTime: -1
- Id: 684
Name: NPC_WIDEHELLDIGNITY
Description: Hell Dignity
@@ -16571,7 +16471,6 @@ Body:
HitCount: 1
SplashArea: -1
Duration2: 180000
- FixedCastTime: -1
- Id: 685
Name: NPC_INVINCIBLE
Description: Invincible
@@ -16583,7 +16482,6 @@ Body:
IsNpc: true
HitCount: 1
Duration1: -1
- FixedCastTime: -1
- Id: 686
Name: NPC_INVINCIBLEOFF
Description: Invincible off
@@ -16595,7 +16493,6 @@ Body:
IsNpc: true
HitCount: 1
Duration1: 60000
- FixedCastTime: -1
- Id: 687
Name: NPC_ALLHEAL
Description: Full Heal
@@ -16657,7 +16554,6 @@ Body:
Time: 220000
- Level: 10
Time: 240000
- FixedCastTime: -1
- Id: 690
Name: CASH_INCAGI
Description: Party Increase AGI
@@ -16694,7 +16590,6 @@ Body:
Time: 220000
- Level: 10
Time: 240000
- FixedCastTime: -1
- Id: 691
Name: CASH_ASSUMPTIO
Description: Party Assumptio
@@ -16721,7 +16616,6 @@ Body:
Time: 80000
- Level: 5
Time: 100000
- FixedCastTime: -1
- Id: 692
Name: ALL_CATCRY
Description: Cat Cry
@@ -16729,7 +16623,6 @@ Body:
Flags:
IsNpc: true
AfterCastActDelay: 5000
- FixedCastTime: -1
- Id: 693
Name: ALL_PARTYFLEE
Description: Party Flee
@@ -16746,7 +16639,6 @@ Body:
SplashArea: -1
CastCancel: true
Cooldown: 300000
- FixedCastTime: -1
- Id: 694
Name: ALL_ANGEL_PROTECT
Description: Angel's Protection
@@ -16754,7 +16646,6 @@ Body:
Flags:
IsNpc: true
Duration1: 30000
- FixedCastTime: -1
- Id: 695
Name: ALL_DREAM_SUMMERNIGHT
Description: Summer Night Dream
@@ -16762,7 +16653,6 @@ Body:
Flags:
IsNpc: true
AfterCastActDelay: 12000
- FixedCastTime: -1
- Id: 697
Name: ALL_REVERSEORCISH
Description: Reverse Orcish
@@ -16778,7 +16668,6 @@ Body:
HitCount: 1
CastCancel: true
Duration1: 1200000
- FixedCastTime: -1
- Id: 698
Name: ALL_WEWISH
Description: Christmas Carol
@@ -16791,7 +16680,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 20000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 706
@@ -16803,11 +16691,11 @@ Body:
Flags:
IsNpc: true
IgnoreLandProtector: true
+ ShowScale: true
Hit: Single
HitCount: 1
Element: Poison
Duration1: 3000
- FixedCastTime: -1
Unit:
Id: Venomfog
Layout: 2
@@ -16826,6 +16714,7 @@ Body:
Splash: true
Flags:
AlterRangeRadius: true
+ ShowScale: true
Range: 11
Hit: Multi_Hit
HitCount: -20
@@ -16851,10 +16740,10 @@ Body:
IgnoreDefCard: true
Flags:
IsNpc: true
+ ShowScale: true
Hit: Single
HitCount: 1
Duration1: 10000
- FixedCastTime: -1
Unit:
Id: Icemine
Range: 3
@@ -16875,11 +16764,11 @@ Body:
Flags:
IsNpc: true
IgnoreLandProtector: true
+ ShowScale: true
Hit: Single
HitCount: 1
Knockback: 2
Duration1: 3000
- FixedCastTime: -1
Unit:
Id: Flamecross
Layout: -1
@@ -16906,7 +16795,6 @@ Body:
ActiveInstance: 14
CastCancel: true
AfterCastActDelay: 2000
- FixedCastTime: -1
- Id: 716
Name: NPC_MAXPAIN
Description: Max Pain
@@ -16945,6 +16833,28 @@ Body:
Flags:
IsNpc: true
HitCount: 1
+ - Id: 719
+ Name: NPC_HELLBURNING
+ Description: Hell Burning
+ MaxLevel: 1
+ Type: Magic
+ TargetType: Self
+ Flags:
+ IsNpc: true
+ IgnoreLandProtector: true
+ Hit: Single
+ HitCount: 1
+ Element: Fire
+ Duration1: 3000
+ Unit:
+ Id: Hellburning
+ Layout: 1
+ Interval: 20
+ Target: Enemy
+ Flag:
+ NoOverlap: true
+ PathCheck: true
+ RangedSingleUnit: true
- Id: 720
Name: NPC_JACKFROST
Description: Jack Frost 2
@@ -16953,6 +16863,8 @@ Body:
TargetType: Self
DamageFlags:
Splash: true
+ Flags:
+ ShowScale: true
Hit: Multi_Hit
HitCount: -5
Element: Water
@@ -16978,7 +16890,6 @@ Body:
Time: 27500
- Level: 5
Time: 32500
- FixedCastTime: -1
- Id: 725
Name: NPC_REVERBERATION
Description: Reverberation 2
@@ -16991,6 +16902,7 @@ Body:
IsNpc: true
IsTrap: true
DisableNearNpc: true
+ ShowScale: true
Range: 1
Hit: Single
HitCount: 1
@@ -17006,7 +16918,6 @@ Body:
Time: 12000
- Level: 5
Time: 13000
- FixedCastTime: -1
Unit:
Id: Reverberation
Interval: 1000
@@ -17039,6 +16950,7 @@ Body:
Splash: true
Flags:
IsNpc: true
+ ShowScale: true
Range: 9
Hit: Single
SplashArea:
@@ -17090,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
@@ -17122,7 +17208,6 @@ Body:
Hit: Single
Knockback: 2
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost: 15
State: Shield
@@ -17173,7 +17258,6 @@ Body:
Time: 55000
- Level: 10
Time: 60000
- FixedCastTime: -1
Requires:
SpCost: 15
Ammo:
@@ -17193,7 +17277,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 10000
- FixedCastTime: -1
Requires:
SpCost: 25
- Id: 1006
@@ -17401,7 +17484,6 @@ Body:
Knockback: 5
AfterCastActDelay: 2000
Duration2: 5000
- FixedCastTime: -1
Requires:
HpCost: 10
SpCost: 20
@@ -17487,7 +17569,6 @@ Body:
CastCancel: true
CastTime: 1000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -17516,6 +17597,8 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
+ DamageFlags:
+ Critical: true
Range:
- Level: 1
Size: 7
@@ -17545,7 +17628,6 @@ Body:
Reproduce: true
AfterCastActDelay: 1000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -17583,7 +17665,6 @@ Body:
Duration1: 3000
Duration2: 2000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -17612,12 +17693,33 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
- Range: 5
+ DamageFlags:
+ Splash: true
+ Range: 7
Hit: Multi_Hit
HitCount: -5
Element: Weapon
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 1
+ - Level: 4
+ Area: 1
+ - Level: 5
+ Area: 2
+ - Level: 6
+ Area: 2
+ - Level: 7
+ Area: 2
+ - Level: 8
+ Area: 2
+ - Level: 9
+ Area: 3
+ - Level: 10
+ Area: 3
CastTime:
- Level: 1
Time: 1000
@@ -17641,7 +17743,6 @@ Body:
Time: 100
AfterCastActDelay: 500
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost: 60
Weapon:
@@ -17652,33 +17753,50 @@ Body:
Description: Wind Cutter
MaxLevel: 5
Type: Weapon
- TargetType: Ground
+ TargetType: Self
DamageFlags:
Splash: true
- Range: 1
Hit: Single
HitCount: 1
- Element: Wind
- SplashArea: 2
- Knockback: 3
+ Element: Weapon
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 2
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 3
CopyFlags:
Skill:
Reproduce: true
- Duration1: 15000
- Cooldown: 2000
- FixedCastTime: -1
+ AfterCastActDelay: 1000
+ Cooldown:
+ - Level: 1
+ Time: 800
+ - Level: 2
+ Time: 650
+ - Level: 3
+ Time: 500
+ - Level: 4
+ Time: 350
+ - Level: 5
+ Time: 200
Requires:
SpCost:
- Level: 1
- Amount: 20
+ Amount: 34
- Level: 2
- Amount: 24
+ Amount: 38
- Level: 3
- Amount: 28
+ Amount: 42
- Level: 4
- Amount: 32
+ Amount: 46
- Level: 5
- Amount: 36
+ Amount: 50
Weapon:
Dagger: true
1hSword: true
@@ -17693,6 +17811,7 @@ Body:
TargetType: Self
DamageFlags:
Splash: true
+ Critical: true
Hit: Single
HitCount: 1
Element: Weapon
@@ -17702,7 +17821,6 @@ Body:
Reproduce: true
CastTime: 1000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -17825,7 +17943,6 @@ Body:
Area: 7
Duration1: 15000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost: 30
State: Ridingdragon
@@ -17843,9 +17960,8 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 1000
- Duration1: 180000
+ Duration1: 900000
Duration2: 60000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 2012
@@ -17896,7 +18012,7 @@ Body:
Hit: Single
HitCount: 1
CastCancel: true
- Duration1: 180000
+ Duration1: 900000
FixedCastTime: 1000
CastTimeFlags:
IgnoreDex: true
@@ -17914,7 +18030,7 @@ Body:
Hit: Single
HitCount: 1
CastCancel: true
- Duration1: 180000
+ Duration1: 900000
Duration2: 10000
FixedCastTime: 2000
CastTimeFlags:
@@ -17933,8 +18049,7 @@ Body:
Hit: Single
HitCount: 1
CastCancel: true
- Duration1: 180000
- FixedCastTime: -1
+ Duration1: 900000
Requires:
SpCost: 1
- Id: 2017
@@ -17945,15 +18060,14 @@ Body:
TargetType: Self
DamageFlags:
Splash: true
+ Critical: true
Flags:
TargetTrap: true
Hit: Single
HitCount: 1
Element: Weapon
SplashArea: 3
- Knockback: 7
CastTime: 2000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 2018
@@ -17966,10 +18080,8 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea: -1
CastCancel: true
- Duration1: 180000
- FixedCastTime: -1
+ Duration1: 900000
Requires:
SpCost: 1
- Id: 2019
@@ -17984,8 +18096,7 @@ Body:
HitCount: 1
Element: Holy
CastCancel: true
- Duration1: 180000
- FixedCastTime: -1
+ Duration1: 900000
Requires:
SpCost: 1
- Id: 2020
@@ -18050,7 +18161,6 @@ Body:
Time: 14000
Duration2: 15000
Cooldown: 4000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -18094,7 +18204,6 @@ Body:
CastCancel: true
CastTime: 2000
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -18112,25 +18221,36 @@ Body:
Description: Frosty Misty
MaxLevel: 5
Type: Magic
- TargetType: Self
+ TargetType: Ground
DamageFlags:
Splash: true
Flags:
AlterRangeRadius: true
+ Range: 11
Hit: Multi_Hit
HitCount:
- Level: 1
- Count: -3
+ Count: 1
- Level: 2
- Count: -4
+ Count: 2
- Level: 3
- Count: -5
+ Count: 3
- Level: 4
- Count: -6
+ Count: 4
- Level: 5
- Count: -7
+ Count: 5
Element: Water
- SplashArea: 9
+ SplashArea:
+ - Level: 1
+ Area: 3
+ - Level: 2
+ Area: 3
+ - Level: 3
+ Area: 4
+ - Level: 4
+ Area: 4
+ - Level: 5
+ Area: 5
CopyFlags:
Skill:
Reproduce: true
@@ -18148,6 +18268,7 @@ Body:
Time: 4000
AfterCastActDelay: 1000
Duration1: 40000
+ Duration2: 10000
Cooldown: 4000
FixedCastTime: 500
Requires:
@@ -18167,23 +18288,24 @@ Body:
Description: Jack Frost
MaxLevel: 5
Type: Magic
- TargetType: Self
+ TargetType: Attack
DamageFlags:
Splash: true
+ Range: 11
Hit: Multi_Hit
HitCount: -5
Element: Water
SplashArea:
- Level: 1
- Area: 5
+ Area: 3
- Level: 2
- Area: 6
+ Area: 3
- Level: 3
- Area: 7
+ Area: 4
- Level: 4
- Area: 8
+ Area: 4
- Level: 5
- Area: 9
+ Area: 5
CopyFlags:
Skill:
Reproduce: true
@@ -18211,6 +18333,7 @@ Body:
Time: 27500
- Level: 5
Time: 32500
+ Cooldown: 4000
FixedCastTime: 1000
Requires:
SpCost:
@@ -18342,7 +18465,6 @@ Body:
Time: 16000
- Level: 5
Time: 18000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -18473,7 +18595,7 @@ Body:
Reproduce: true
CastCancel: true
CastTime: 5000
- AfterCastActDelay: 2000
+ AfterCastActDelay: 500
Duration1: 5000
Cooldown: 5000
FixedCastTime: 1000
@@ -18495,32 +18617,46 @@ Body:
MaxLevel: 5
Type: Magic
TargetType: Attack
+ DamageFlags:
+ Splash: true
Flags:
AlterRangeRadius: true
Range: 11
Hit: Single
HitCount: 1
Element: Fire
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 1
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 2
CopyFlags:
Skill:
Reproduce: true
CastCancel: true
CastTime: 3000
- AfterCastActDelay: 1000
+ AfterCastActDelay: 500
Duration1: 15000
+ Cooldown: 3000
FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
- Amount: 35
+ Amount: 64
- Level: 2
- Amount: 40
+ Amount: 70
- Level: 3
- Amount: 45
+ Amount: 76
- Level: 4
- Amount: 50
+ Amount: 82
- Level: 5
- Amount: 55
+ Amount: 88
- Id: 2213
Name: WL_COMET
Description: Comet
@@ -18533,8 +18669,8 @@ Body:
AlterRangeRadius: true
Range: 11
Hit: Multi_Hit
- HitCount: -20
- SplashArea: 9
+ HitCount: -10
+ SplashArea: 6
Knockback: 2
CopyFlags:
Skill:
@@ -18542,45 +18678,32 @@ Body:
CastCancel: true
CastTime:
- Level: 1
- Time: 10000
+ Time: 6000
- Level: 2
- Time: 11000
+ Time: 7000
- Level: 3
- Time: 12000
+ Time: 8000
- Level: 4
- Time: 13000
+ Time: 9000
- Level: 5
- Time: 14000
- AfterCastActDelay: 2000
+ Time: 10000
+ AfterCastActDelay: 1500
Duration1: 100
Duration2: 42000
- Cooldown: 60000
- FixedCastTime:
- - Level: 1
- Time: 1000
- - Level: 2
- Time: 1500
- - Level: 3
- Time: 2000
- - Level: 4
- Time: 2500
- - Level: 5
- Time: 3000
+ Cooldown: 20000
+ FixedCastTime: 2000
Requires:
SpCost:
- Level: 1
- Amount: 480
+ Amount: 70
- Level: 2
- Amount: 560
+ Amount: 90
- Level: 3
- Amount: 640
+ Amount: 110
- Level: 4
- Amount: 720
+ Amount: 130
- Level: 5
- Amount: 800
- ItemCost:
- - Item: Red_Gemstone
- Amount: 2
+ Amount: 150
Unit:
Id: Dummyskill
Range: 9
@@ -18684,7 +18807,7 @@ Body:
Time: 5000
- Level: 5
Time: 6000
- AfterCastActDelay: 1000
+ AfterCastActDelay: 500
Duration1: 100
Duration2:
- Level: 1
@@ -18697,7 +18820,7 @@ Body:
Time: 120000
- Level: 5
Time: 135000
- Cooldown: 10000
+ Cooldown: 7000
FixedCastTime: 2000
Requires:
SpCost:
@@ -18865,7 +18988,7 @@ Body:
- Id: 2222
Name: WL_SUMMONFB
Description: Summon Fire Ball
- MaxLevel: 5
+ MaxLevel: 2
Type: Magic
TargetType: Self
DamageFlags:
@@ -18889,7 +19012,6 @@ Body:
Time: 240000
- Level: 5
Time: 280000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -18905,7 +19027,7 @@ Body:
- Id: 2223
Name: WL_SUMMONBL
Description: Summon Lightning Ball
- MaxLevel: 5
+ MaxLevel: 2
Type: Magic
TargetType: Self
DamageFlags:
@@ -18929,7 +19051,6 @@ Body:
Time: 240000
- Level: 5
Time: 280000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -18945,7 +19066,7 @@ Body:
- Id: 2224
Name: WL_SUMMONWB
Description: Summon Water Ball
- MaxLevel: 5
+ MaxLevel: 2
Type: Magic
TargetType: Self
DamageFlags:
@@ -18969,7 +19090,6 @@ Body:
Time: 240000
- Level: 5
Time: 280000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19049,7 +19169,7 @@ Body:
- Id: 2229
Name: WL_SUMMONSTONE
Description: Summon Stone
- MaxLevel: 5
+ MaxLevel: 2
Type: Magic
TargetType: Self
DamageFlags:
@@ -19073,7 +19193,6 @@ Body:
Time: 240000
- Level: 5
Time: 280000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19108,19 +19227,7 @@ Body:
Name: WL_READING_SB
Description: Reading Spellbook
MaxLevel: 1
- Type: Magic
- TargetType: Self
- DamageFlags:
- NoDamage: true
- Hit: Single
- HitCount: 1
- CastCancel: true
- CastTime: 5000
- AfterCastActDelay: 500
Duration1: 30000
- FixedCastTime: 1000
- Requires:
- SpCost: 40
- Id: 2232
Name: WL_FREEZE_SP
Description: Freeze Spell
@@ -19157,7 +19264,6 @@ Body:
Time: 40000
- Level: 5
Time: 50000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19176,7 +19282,9 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Range: 3
+ DamageFlags:
+ Critical: true
+ Range: 7
Hit: Multi_Hit
HitCount: -7
Element: Weapon
@@ -19194,11 +19302,11 @@ Body:
Time: 1000
- Level: 5
Time: 500
- FixedCastTime: -1
+ Cooldown: 700
CastDelayFlags:
IgnoreStatus: true
Requires:
- SpCost: 25
+ SpCost: 40
State: Move_Enable
- Id: 2023
Name: GC_DARKILLUSION
@@ -19224,7 +19332,6 @@ Body:
Skill:
Reproduce: true
AfterCastActDelay: 1500
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 2024
@@ -19241,7 +19348,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 2026
@@ -19281,7 +19387,6 @@ Body:
- Level: 5
Time: 300000
Duration2: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19309,7 +19414,6 @@ Body:
AfterCastActDelay: 2000
Duration1: 180000
Duration2: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19357,7 +19461,6 @@ Body:
Area: 2
Knockback: 3
AfterCastActDelay: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19396,9 +19499,10 @@ Body:
Element: Weapon
AfterCastActDelay: 1000
Duration1: 60000
- FixedCastTime: -1
Requires:
SpCost: 20
+ Status:
+ Weaponblock_On: true
- Id: 2031
Name: GC_VENOMPRESSURE
Description: Venom Pressure
@@ -19410,7 +19514,6 @@ Body:
HitCount: 1
Element: Weapon
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -19481,7 +19584,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 2000
- FixedCastTime: -1
Requires:
SpCost: 45
- Id: 2034
@@ -19500,7 +19602,6 @@ Body:
Skill:
Reproduce: true
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 30
- Id: 2035
@@ -19525,7 +19626,6 @@ Body:
Time: 50000
Duration2: 25000
Cooldown: 300000
- FixedCastTime: -1
Requires:
SpCost: 100
HpRateCost: 10
@@ -19546,14 +19646,13 @@ Body:
- Level: 2
Area: 1
- Level: 3
- Area: 1
- - Level: 4
- Area: 1
- - Level: 5
Area: 2
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 3
AfterCastActDelay: 200
- Duration1: 3000
- FixedCastTime: -1
+ Duration1: 5000
Requires:
SpCost: 5
Weapon:
@@ -19578,8 +19677,8 @@ Body:
Hit: Single
HitCount: 1
Element: Weapon
- AfterCastActDelay: 1000
- FixedCastTime: -1
+ AfterCastActDelay: 500
+ Cooldown: 500
Requires:
SpCost:
- Level: 1
@@ -19651,13 +19750,12 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 30
SpRateCost: -10
ItemCost:
- Item: Blue_Gemstone
- Amount: 1
+ Amount: 0
- Id: 2040
Name: AB_ADORAMUS
Description: Adoramus
@@ -19672,25 +19770,25 @@ Body:
Element: Holy
SplashArea:
- Level: 1
- Area: 1
+ Area: 3
- Level: 2
- Area: 1
+ Area: 3
- Level: 3
- Area: 1
+ Area: 3
- Level: 4
- Area: 1
+ Area: 3
- Level: 5
- Area: 1
+ Area: 3
- Level: 6
- Area: 1
+ Area: 3
- Level: 7
- Area: 2
+ Area: 5
- Level: 8
- Area: 2
+ Area: 5
- Level: 9
- Area: 2
+ Area: 5
- Level: 10
- Area: 2
+ Area: 5
CopyFlags:
Skill:
Reproduce: true
@@ -19739,8 +19837,7 @@ Body:
Time: 55000
- Level: 10
Time: 60000
- Cooldown: 2000
- FixedCastTime: -1
+ Cooldown: 2500
Requires:
SpCost:
- Level: 1
@@ -19866,7 +19963,7 @@ Body:
- Level: 2
Time: 500
- Level: 3
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -20045,7 +20142,6 @@ Body:
CastTime: 1000
Duration1: 60000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20073,7 +20169,6 @@ Body:
CastTime: 1000
Duration1: 60000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20084,10 +20179,10 @@ Body:
Amount: 70
- Level: 4
Amount: 80
-# - Id: 2049 # Removed on kRO
-# Name: AB_EUCHARISTICA
-# Description: Eucharistica
-# MaxLevel: 10
+ - Id: 2049 # Removed on kRO
+ Name: AB_EUCHARISTICA
+ Description: Eucharistica
+ MaxLevel: 10
- Id: 2050
Name: AB_RENOVATIO
Description: Renovatio
@@ -20146,7 +20241,6 @@ Body:
CastTime: 1000
AfterCastActDelay: 1000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20177,7 +20271,6 @@ Body:
CastCancel: true
CastTime: 4000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20353,7 +20446,6 @@ Body:
- Level: 5
Time: 60000
Cooldown: 15000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20485,7 +20577,6 @@ Body:
Time: 3400
- Level: 10
Time: 3200
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20600,7 +20691,6 @@ Body:
HitCount: 1
SplashArea: 3
Duration1: 1000
- FixedCastTime: -1
Requires:
SpCost: 15
- Id: 2238
@@ -20632,7 +20722,6 @@ Body:
Time: 26000
- Level: 5
Time: 28000
- FixedCastTime: -1
Requires:
SpCost: 35
ItemCost:
@@ -20669,7 +20758,6 @@ Body:
Skill:
Reproduce: true
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 20
ItemCost:
@@ -20692,7 +20780,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 5
ItemCost:
@@ -20708,7 +20795,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost: 2
- Id: 2242
@@ -20742,9 +20828,9 @@ Body:
IgnoreDefCard: true
Flags:
AllowOnWarg: true
- IncreaseDanceWithWugDamage: true
IgnoreAutoGuard: true
IgnoreCicada: true
+ IncreaseDanceWithWugDamage: true
Range: 9
Hit: Single
HitCount: 1
@@ -20772,9 +20858,9 @@ Body:
IgnoreDefCard: true
Flags:
AlterRangeVulture: true
- IncreaseDanceWithWugDamage: true
IgnoreAutoGuard: true
IgnoreCicada: true
+ IncreaseDanceWithWugDamage: true
Range: 9
Hit: Single
HitCount: 1
@@ -20801,7 +20887,6 @@ Body:
Time: 10000
- Level: 5
Time: 12000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -20843,7 +20928,6 @@ Body:
- Level: 5
Area: 7
AfterCastActDelay: 3000
- FixedCastTime: -1
Requires:
SpCost: 12
State: Wug
@@ -20860,7 +20944,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 10000
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 2248
@@ -20888,7 +20971,6 @@ Body:
ActiveInstance: 1
AfterCastActDelay: 2000
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -20926,7 +21008,6 @@ Body:
ActiveInstance: 1
AfterCastActDelay: 2000
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -20964,7 +21045,6 @@ Body:
ActiveInstance: 1
AfterCastActDelay: 2000
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -21002,7 +21082,6 @@ Body:
ActiveInstance: 1
AfterCastActDelay: 2000
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -21044,7 +21123,6 @@ Body:
Reproduce: true
Duration1: 15000
Duration2: 15000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -21083,7 +21161,6 @@ Body:
Reproduce: true
Duration1: 15000
Duration2: 20000
- FixedCastTime: -1
Requires:
SpCost: 10
ItemCost:
@@ -21124,7 +21201,6 @@ Body:
Time: 800
- Level: 5
Time: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21152,7 +21228,6 @@ Body:
Element: Weapon
AfterCastActDelay: 2000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 50
State: Mado
@@ -21184,7 +21259,6 @@ Body:
Time: 200
- Level: 3
Time: 100
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21279,7 +21353,6 @@ Body:
- Level: 3
Time: 21000
Duration2: 40000
- FixedCastTime: -1
Requires:
SpCost: 20
State: Mado
@@ -21331,19 +21404,32 @@ Body:
Time: 1600
- Level: 3
Time: 1800
- AfterCastActDelay:
- - Level: 1
- Time: 500
- - Level: 2
- Time: 1000
- - Level: 3
+ - Level: 4
Time: 2000
+ - Level: 5
+ Time: 2200
+ AfterCastActDelay: 1000
+ Cooldown:
+ - Level: 1
+ Time: 150
+ - Level: 2
+ Time: 200
+ - Level: 3
+ Time: 300
+ - Level: 4
+ Time: 450
+ - Level: 5
+ Time: 650
FixedCastTime:
- Level: 1
Time: 600
- Level: 2
Time: 400
- Level: 3
+ Time: 400
+ - Level: 4
+ Time: 200
+ - Level: 5
Time: 200
Requires:
SpCost:
@@ -21382,7 +21468,6 @@ Body:
Time: 90000
- Level: 3
Time: 120000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21409,7 +21494,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 90000
- FixedCastTime: -1
Requires:
SpCost: 25
State: Mado
@@ -21431,7 +21515,6 @@ Body:
HitCount: 1
Knockback: 7
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost: 5
State: Mado
@@ -21451,7 +21534,6 @@ Body:
HitCount: 1
Knockback: 7
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost: 5
State: Mado
@@ -21553,7 +21635,6 @@ Body:
HitCount: 1
AfterCastActDelay: 500
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 20
State: Mado
@@ -21581,7 +21662,6 @@ Body:
AfterCastActDelay: 500
Duration1: 3000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost: 45
State: Mado
@@ -21638,7 +21718,6 @@ Body:
Time: 15000
- Level: 3
Time: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21678,7 +21757,6 @@ Body:
Time: 15000
- Level: 3
Time: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21722,7 +21800,6 @@ Body:
Time: 15000
- Level: 3
Time: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21777,7 +21854,6 @@ Body:
- Level: 5
Time: 600
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21856,7 +21932,6 @@ Body:
Time: 3500
- Level: 5
Time: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21906,7 +21981,6 @@ Body:
- Level: 10
Time: 500
Duration1: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -21966,7 +22040,6 @@ Body:
Time: 2500
- Level: 5
Time: 2000
- FixedCastTime: -1
Requires:
HpCost:
- Level: 1
@@ -22128,7 +22201,6 @@ Body:
Hit: Single
HitCount: 1
CastTime: 2000
- FixedCastTime: -1
Requires:
SpCost: 15
ItemCost:
@@ -22171,7 +22243,6 @@ Body:
Skill:
Reproduce: true
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22205,7 +22276,6 @@ Body:
HitCount: 1
AfterCastActDelay: 1000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22328,7 +22398,6 @@ Body:
Time: 60000
- Level: 5
Time: 70000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22378,7 +22447,6 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22431,7 +22499,6 @@ Body:
Time: 13000
Duration2: 10000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22472,7 +22539,6 @@ Body:
Time: 50000
- Level: 5
Time: 60000
- FixedCastTime: -1
Requires:
SpCost: 100
- Id: 2291
@@ -22497,7 +22563,6 @@ Body:
- Level: 5
Time: 30000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22531,7 +22596,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22566,7 +22630,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22601,7 +22664,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22636,7 +22698,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22671,7 +22732,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22706,7 +22766,6 @@ Body:
- Level: 3
Time: 20000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22744,7 +22803,6 @@ Body:
Time: 90000
- Level: 5
Time: 100000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22786,7 +22844,6 @@ Body:
Time: 10000
- Level: 3
Time: 15000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22830,7 +22887,6 @@ Body:
Time: 8000
- Level: 3
Time: 12000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22884,7 +22940,6 @@ Body:
Time: 8000
- Level: 3
Time: 12000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22935,7 +22990,6 @@ Body:
Time: 14000
- Level: 3
Time: 21000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -22978,7 +23032,6 @@ Body:
- Level: 3
Time: 30000
Cooldown: 180000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23040,7 +23093,6 @@ Body:
CastTime: 1000
Duration1: 1500
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23089,7 +23141,6 @@ Body:
SplashArea: 1
ActiveInstance: 11
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23152,7 +23203,6 @@ Body:
HitCount: 1
SplashArea: 2
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23167,8 +23217,6 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
- Flags:
- IncreaseGloomyDayDamage: true
Range: 1
Hit: Single
HitCount: 5
@@ -23176,7 +23224,6 @@ Body:
Skill:
Reproduce: true
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23212,7 +23259,6 @@ Body:
HitCount: 1
SplashArea: 3
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23241,7 +23287,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 12000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 50
Weapon:
@@ -23277,7 +23322,6 @@ Body:
HitCount: 1
Element: Weapon
AfterCastActDelay: 3000
- FixedCastTime: -1
Requires:
SpCost: 150
- Id: 2315
@@ -23317,7 +23361,6 @@ Body:
- Level: 3
Time: 30000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost: 50
State: Shield
@@ -23347,7 +23390,6 @@ Body:
Time: 7000
AfterCastActDelay: 1000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23375,7 +23417,6 @@ Body:
CastCancel: true
CastTime: 500
AfterCastActDelay: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23451,7 +23492,6 @@ Body:
Time: 8000
- Level: 5
Time: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23500,7 +23540,6 @@ Body:
Time: 3000
- Level: 5
Time: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23632,7 +23671,6 @@ Body:
Time: 120000
- Level: 5
Time: 140000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23700,7 +23738,6 @@ Body:
Time: 4000
- Level: 5
Time: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23728,7 +23765,6 @@ Body:
CastTime: 1000
AfterCastActDelay: 3000
Cooldown: 20000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23847,7 +23883,6 @@ Body:
Skill:
Reproduce: true
Duration1: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23889,7 +23924,6 @@ Body:
Skill:
Reproduce: true
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23943,7 +23977,6 @@ Body:
Time: 3000
Duration2: 5000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -23989,7 +24022,6 @@ Body:
Time: 2500
- Level: 10
Time: 2500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24096,7 +24128,6 @@ Body:
Time: 2000
AfterCastActDelay: 1000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24170,7 +24201,6 @@ Body:
Reproduce: true
AfterCastActDelay: 1000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost: 100
Status:
@@ -24199,7 +24229,6 @@ Body:
- Level: 5
Time: 7000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 80
SpiritSphereCost: 2
@@ -24238,7 +24267,6 @@ Body:
- Level: 5
Time: 7000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24285,7 +24313,6 @@ Body:
- Level: 5
Time: 9000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24354,7 +24381,6 @@ Body:
Skill:
Reproduce: true
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24388,6 +24414,16 @@ Body:
Amount: 1
- Level: 5
Amount: 1
+ - Level: 6
+ Amount: 0
+ - Level: 7
+ Amount: 0
+ - Level: 8
+ Amount: 0
+ - Level: 9
+ Amount: 0
+ - Level: 10
+ Amount: 0
- Id: 2337
Name: SR_WINDMILL
Description: Windmill
@@ -24410,7 +24446,6 @@ Body:
CastTime: 1000
AfterCastActDelay: 500
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost: 45
- Id: 2338
@@ -24446,7 +24481,6 @@ Body:
- Level: 10
Time: 165000
Cooldown: 30000
- FixedCastTime: -1
Requires:
SpCost: 120
- Id: 2339
@@ -24470,7 +24504,6 @@ Body:
SplashArea: 2
AfterCastActDelay: 1000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 2341
@@ -24512,6 +24545,8 @@ Body:
MaxLevel: 10
Type: Weapon
TargetType: Attack
+ DamageFlags:
+ IgnoreLongCard: true
Range: 7
Hit: Multi_Hit
HitCount: -7
@@ -24562,7 +24597,6 @@ Body:
Time: 900
- Level: 10
Time: 1000
- FixedCastTime: -1
Requires:
SpCost: 100
SpiritSphereCost: 2
@@ -24601,7 +24635,6 @@ Body:
Time: 2500
- Level: 5
Time: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24636,7 +24669,6 @@ Body:
Time: 2500
- Level: 5
Time: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24869,7 +24901,6 @@ Body:
- Level: 5
Time: 5000
Cooldown: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -24903,22 +24934,11 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 7
- - Level: 2
- Area: 8
- - Level: 3
- Area: 9
- - Level: 4
- Area: 10
- - Level: 5
- Area: 11
+ SplashArea: -1
CastCancel: true
CastTime: 1000
AfterCastActDelay: 2000
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 180000
Requires:
SpCost:
- Level: 1
@@ -24944,22 +24964,11 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 7
- - Level: 2
- Area: 8
- - Level: 3
- Area: 9
- - Level: 4
- Area: 10
- - Level: 5
- Area: 11
+ SplashArea: -1
CastCancel: true
CastTime: 1000
AfterCastActDelay: 2000
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 180000
Requires:
SpCost:
- Level: 1
@@ -24985,22 +24994,11 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 7
- - Level: 2
- Area: 8
- - Level: 3
- Area: 9
- - Level: 4
- Area: 10
- - Level: 5
- Area: 11
+ SplashArea: -1
CastCancel: true
CastTime: 1000
AfterCastActDelay: 2000
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 180000
Requires:
SpCost:
- Level: 1
@@ -25026,22 +25024,11 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 7
- - Level: 2
- Area: 8
- - Level: 3
- Area: 9
- - Level: 4
- Area: 10
- - Level: 5
- Area: 11
+ SplashArea: -1
CastCancel: true
CastTime: 1000
AfterCastActDelay: 2000
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 180000
Requires:
SpCost:
- Level: 1
@@ -25081,8 +25068,7 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 2000
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 180000
Requires:
SpCost:
- Level: 1
@@ -25115,7 +25101,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 60000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -25149,7 +25134,7 @@ Body:
Skill:
Reproduce: true
CastCancel: true
- CastTime: # !TODO: Confirm all times
+ CastTime: # !TODO: Confirm cast times
- Level: 1
Time: 1000
- Level: 2
@@ -25170,29 +25155,8 @@ Body:
Time: 5000
- Level: 10
Time: 5500
- AfterCastActDelay: 1000
- Cooldown:
- - Level: 1
- Time: 1000
- - Level: 2
- Time: 1500
- - Level: 3
- Time: 2000
- - Level: 4
- Time: 2500
- - Level: 5
- Time: 3000
- - Level: 6
- Time: 3500
- - Level: 7
- Time: 4000
- - Level: 8
- Time: 4500
- - Level: 9
- Time: 5000
- - Level: 10
- Time: 5500
- FixedCastTime: -1
+ AfterCastActDelay: 500
+ Cooldown: 2500
Requires:
SpCost:
- Level: 1
@@ -25219,44 +25183,34 @@ Body:
Name: WM_REVERBERATION
Description: Reverberation
MaxLevel: 5
- TargetType: Ground
+ Type: Magic
+ TargetType: Attack
DamageFlags:
- NoDamage: true
Splash: true
Flags:
IsTrap: true
Range: 9
- Hit: Single
- HitCount: 1
- SplashArea: 2
+ Hit: Multi_Hit
+ HitCount: -10
+ SplashArea:
+ - Level: 1
+ Area: 2
+ - Level: 2
+ Area: 2
+ - Level: 3
+ Area: 2
+ - Level: 4
+ Area: 3
+ - Level: 5
+ Area: 3
CopyFlags:
Skill:
Reproduce: true
CastCancel: true
- CastTime:
- - Level: 1
- Time: 1100
- - Level: 2
- Time: 1200
- - Level: 3
- Time: 1300
- - Level: 4
- Time: 1400
- - Level: 5
- Time: 1500
- AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 9000
- - Level: 2
- Time: 10000
- - Level: 3
- Time: 11000
- - Level: 4
- Time: 12000
- - Level: 5
- Time: 13000
- FixedCastTime: -1
+ CastTime: 1000
+ AfterCastActDelay: 500
+ Cooldown: 150
+ FixedCastTime: 500
Requires:
SpCost:
- Level: 1
@@ -25269,13 +25223,10 @@ Body:
Amount: 42
- Level: 5
Amount: 48
- Unit:
- Id: Reverberation
- Interval: 1000
- Target: Enemy
- Flag:
- NoKnockback: true
- - Id: 2415
+ Ammo:
+ Arrow: true
+ AmmoAmount: 10
+ - Id: 2415 # Removed on kRO
Name: WM_REVERBERATION_MELEE
Description: Reverberation Melee
MaxLevel: 5
@@ -25283,7 +25234,6 @@ Body:
TargetType: Attack
DamageFlags:
Splash: true
- SplashSplit: true
Hit: Single
HitCount: 1
Element: Weapon
@@ -25293,24 +25243,18 @@ Body:
Reproduce: true
Requires:
SpCost: 1
- - Id: 2416
+ - Id: 2416 # Removed on kRO
Name: WM_REVERBERATION_MAGIC
Description: Reverberation Magic
MaxLevel: 5
Type: Magic
TargetType: Attack
- DamageFlags:
- Splash: true
- SplashSplit: true
- Hit: Single
- HitCount: 1
- SplashArea: 2
+ Hit: Multi_Hit
+ HitCount: 10
CopyFlags:
Skill:
Reproduce: true
- Requires:
- SpCost: 1
- - Id: 2417
+ - Id: 2417 # Removed on kRO
Name: WM_DOMINION_IMPULSE
Description: Dominion Impulse
MaxLevel: 1
@@ -25323,7 +25267,6 @@ Body:
HitCount: 1
SplashArea: 5
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 2418
@@ -25430,7 +25373,6 @@ Body:
Time: 14000
- Level: 5
Time: 16000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -25448,7 +25390,7 @@ Body:
Whip: true
ItemCost:
- Item: Protect_Neck_Candy
- Amount: 1
+ Amount: 2
Unit:
Id: Netherworld
Range: 1
@@ -25504,7 +25446,6 @@ Body:
- Level: 5
Time: 27000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -25566,7 +25507,7 @@ Body:
Name: WM_LULLABY_DEEPSLEEP
Description: Deep Sleep Lullaby
MaxLevel: 5
- TargetType: Self
+ TargetType: Attack
DamageFlags:
NoDamage: true
Splash: true
@@ -25574,19 +25515,19 @@ Body:
HitCount: 1
SplashArea:
- Level: 1
- Area: 5
+ Area: 1
- Level: 2
- Area: 6
+ Area: 1
- Level: 3
- Area: 7
+ Area: 1
- Level: 4
- Area: 8
+ Area: 2
- Level: 5
- Area: 9
+ Area: 2
CastCancel: true
CastTime: 2000
AfterCastActDelay: 1000
- Duration1:
+ Duration1: # !TODO: What's the updated duration?
- Level: 1
Time: 12000
- Level: 2
@@ -25614,6 +25555,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 2
- Id: 2423
Name: WM_SIRCLEOFNATURE
Description: Circle of Nature's Sound
@@ -25624,23 +25568,12 @@ Body:
Splash: true
Hit: Single
HitCount: 1
- SplashArea:
- - Level: 1
- Area: 3
- - Level: 2
- Area: 4
- - Level: 3
- Area: 5
- - Level: 4
- Area: 6
- - Level: 5
- Area: 7
+ SplashArea: -1
CastCancel: true
CastTime: 2000
AfterCastActDelay: 1000
- Duration1: 60000
+ Duration1: 180000
Cooldown: 15000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -25661,7 +25594,7 @@ Body:
Description: Improvised Song
MaxLevel: 5
Type: Magic
- TargetType: Self
+ TargetType: Attack
DamageFlags:
NoDamage: true
Range: 9
@@ -25670,7 +25603,6 @@ Body:
CastCancel: true
AfterCastActDelay: 1000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -25699,17 +25631,7 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 30000
- - Level: 2
- Time: 45000
- - Level: 3
- Time: 60000
- - Level: 4
- Time: 75000
- - Level: 5
- Time: 90000
+ Duration1: 60000
Cooldown: 10000
FixedCastTime: 500
Requires:
@@ -25780,7 +25702,7 @@ Body:
Amount: 120
ItemCost:
- Item: Protect_Neck_Candy
- Amount: 1
+ Amount: 2
- Id: 2427
Name: WM_SONG_OF_MANA
Description: Song of Mana
@@ -25807,17 +25729,7 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 30000
- - Level: 2
- Time: 60000
- - Level: 3
- Time: 90000
- - Level: 4
- Time: 120000
- - Level: 5
- Time: 150000
+ Duration1: 120000
Cooldown: 90000
FixedCastTime: 500
Requires:
@@ -25835,6 +25747,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 1
- Id: 2428
Name: WM_DANCE_WITH_WUG
Description: Dance With A Warg
@@ -25871,17 +25786,7 @@ Body:
- Level: 5
Time: 3500
AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 30000
- - Level: 2
- Time: 60000
- - Level: 3
- Time: 90000
- - Level: 4
- Time: 120000
- - Level: 5
- Time: 150000
+ Duration1: 120000
Cooldown: 90000
FixedCastTime: 500
Requires:
@@ -25899,30 +25804,32 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 1
- Id: 2429
Name: WM_SOUND_OF_DESTRUCTION
Description: Sound of Destruction
MaxLevel: 5
- TargetType: Ground
+ TargetType: Self
DamageFlags:
+ NoDamage: true
Splash: true
- IgnoreFlee: true
Flags:
IsChorus: true
- Range: 9
Hit: Single
HitCount: 1
SplashArea:
- Level: 1
- Area: 4
+ Area: 5
- Level: 2
- Area: 4
+ Area: 5
- Level: 3
- Area: 5
- - Level: 4
- Area: 5
- - Level: 5
Area: 6
+ - Level: 4
+ Area: 6
+ - Level: 5
+ Area: 7
CastCancel: true
CastTime:
- Level: 2
@@ -25934,18 +25841,8 @@ Body:
- Level: 5
Time: 2000
AfterCastActDelay: 1000
- Duration1: 5000
- Cooldown:
- - Level: 1
- Time: 6000
- - Level: 2
- Time: 7000
- - Level: 3
- Time: 8000
- - Level: 4
- Time: 9000
- - Level: 5
- Time: 10000
+ Duration1: 10000
+ Cooldown: 60000
FixedCastTime: 500
Requires:
SpCost:
@@ -25962,6 +25859,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 10
- Id: 2430
Name: WM_SATURDAY_NIGHT_FEVER
Description: Saturday Night Fever
@@ -26020,7 +25920,7 @@ Body:
Time: 4000
- Level: 5
Time: 2000
- Cooldown: 180000
+ Cooldown: 60000
FixedCastTime: 1000
Requires:
SpCost:
@@ -26037,6 +25937,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 5
- Id: 2431
Name: WM_LERADS_DEW
Description: Lerad's Dew
@@ -26063,17 +25966,7 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- Duration1:
- - Level: 1
- Time: 20000
- - Level: 2
- Time: 30000
- - Level: 3
- Time: 40000
- - Level: 4
- Time: 50000
- - Level: 5
- Time: 60000
+ Duration1: 120000
Cooldown: 180000
FixedCastTime: 500
Requires:
@@ -26091,6 +25984,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 1
- Id: 2432
Name: WM_MELODYOFSINK
Description: Melody of Sink
@@ -26128,7 +26024,7 @@ Body:
Time: 50000
- Level: 5
Time: 60000
- Cooldown: 180000
+ Cooldown: 20000
FixedCastTime: 500
Requires:
SpCost:
@@ -26145,6 +26041,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 2
- Id: 2433
Name: WM_BEYOND_OF_WARCRY
Description: Warcry of Beyond
@@ -26182,7 +26081,7 @@ Body:
Time: 50000
- Level: 5
Time: 60000
- Cooldown: 180000
+ Cooldown: 20000
FixedCastTime: 500
Requires:
SpCost:
@@ -26199,6 +26098,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 2
- Id: 2434
Name: WM_UNLIMITED_HUMMING_VOICE
Description: Unlimited Humming Voice
@@ -26263,6 +26165,9 @@ Body:
Weapon:
Musical: true
Whip: true
+ ItemCost:
+ - Item: Protect_Neck_Candy
+ Amount: 5
- Id: 2516
Name: WM_SEVERE_RAINSTORM_MELEE
Description: Severe Rainstorm Melee
@@ -26309,7 +26214,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 30000
Duration2: 12000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -26359,7 +26263,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 30000
Duration2: 12000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -26510,22 +26413,6 @@ Body:
Size: 4
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -26580,7 +26467,7 @@ Body:
- Level: 4
Time: 200
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -26606,22 +26493,6 @@ Body:
Size: 4
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -26677,7 +26548,7 @@ Body:
- Level: 4
Time: 200
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -26763,22 +26634,6 @@ Body:
Size: 4
- Level: 5
Size: 5
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -26843,7 +26698,7 @@ Body:
- Level: 4
Time: 100
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -26882,7 +26737,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 60000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27012,7 +26866,6 @@ Body:
Time: 12000
Duration2: 2000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27038,22 +26891,6 @@ Body:
Size: 2
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -27069,7 +26906,7 @@ Body:
Splash: true
Range: 9
Hit: Single
- HitCount: 3
+ HitCount: -3
Element: Wind
SplashArea:
- Level: 1
@@ -27096,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
@@ -27139,7 +26976,7 @@ Body:
Time: 3400
- Level: 10
Time: 3600
- Cooldown: 2000
+ Cooldown: 5000
FixedCastTime:
- Level: 1
Time: 2000
@@ -27261,7 +27098,7 @@ Body:
- Level: 4
Time: 200
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -27511,7 +27348,6 @@ Body:
CastCancel: true
CastTime: 2000
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 10
State: Elementalspirit
@@ -27700,7 +27536,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 5000
Cooldown: 2000
- FixedCastTime: -1
Requires:
SpCost: 30
State: Cart
@@ -27751,7 +27586,6 @@ Body:
- Level: 5
Time: 3000
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27781,7 +27615,6 @@ Body:
CastTime: 1500
AfterCastActDelay: 500
Duration1: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27825,7 +27658,6 @@ Body:
- Level: 5
Time: 18000
Duration2: 20000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27879,7 +27711,6 @@ Body:
Time: 26000
- Level: 5
Time: 28000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27902,10 +27733,11 @@ Body:
Type: Weapon
TargetType: Attack
DamageFlags:
+ NoDamage: true
Splash: true
Range: 11
- Hit: Single
- HitCount: 3
+ Hit: Multi_Hit
+ HitCount: 2
Element: Weapon
SplashArea:
- Level: 1
@@ -27934,9 +27766,8 @@ Body:
CastCancel: true
CastTime: 1500
AfterCastActDelay: 500
- Duration1: 2000
+ Duration1: 500
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -27977,7 +27808,7 @@ Body:
Hit: Single
HitCount: 1
ActiveInstance: 1
- Knockback: 2
+ Knockback: 1
CopyFlags:
Skill:
Reproduce: true
@@ -27996,7 +27827,6 @@ Body:
- Level: 5
Time: 14000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28063,7 +27893,6 @@ Body:
Time: 7500
AfterCastActDelay: 500
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28100,15 +27929,36 @@ Body:
Flags:
TargetTrap: true
IgnoreLandProtector: true
- Hit: Single
- HitCount: 1
- Element: Earth
+ Range: 5
+ Hit: Multi_Hit
+ HitCount: 2
+ Element: Weapon
SplashArea: 2
+ ActiveInstance:
+ - Level: 1
+ Max: 5
+ - Level: 2
+ Max: 6
+ - Level: 3
+ Max: 6
+ - Level: 4
+ Max: 7
+ - Level: 5
+ Max: 7
+ - Level: 6
+ Max: 8
+ - Level: 7
+ Max: 8
+ - Level: 8
+ Max: 9
+ - Level: 9
+ Max: 9
+ - Level: 10
+ Max: 10
CopyFlags:
Skill:
Reproduce: true
Duration1: 100
- FixedCastTime: -1
Requires:
SpCost: 1
Unit:
@@ -28165,7 +28015,6 @@ Body:
- Level: 5
Time: 40000
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28202,7 +28051,6 @@ Body:
CastCancel: true
CastTime: 2000
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28235,7 +28083,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 4000
- FixedCastTime: -1
Requires:
SpCost: 1
Unit:
@@ -28253,7 +28100,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 5000
- FixedCastTime: -1
Requires:
SpCost: 1
Unit:
@@ -28266,15 +28112,9 @@ Body:
Name: GN_FIRE_EXPANSION_ACID
Description: Fire Expansion Acid
MaxLevel: 10
- Type: Misc
+ Type: Weapon
TargetType: Attack
- DamageFlags:
- IgnoreDefense: true
- IgnoreFlee: true
- Flags:
- IgnoreBgReduction: true
- IgnoreGvgReduction: true
- Range: 11
+ Range: 9
Hit: Multi_Hit
HitCount:
- Level: 1
@@ -28303,28 +28143,11 @@ Body:
Name: GN_HELLS_PLANT
Description: Hell's Plant
MaxLevel: 5
- Type: Misc
- TargetType: Ground
+ TargetType: Self
DamageFlags:
NoDamage: true
- Splash: true
- Flags:
- IsTrap: true
- Range: 9
Hit: Single
HitCount: 1
- SplashArea: 1
- ActiveInstance:
- - Level: 1
- Max: 2
- - Level: 2
- Max: 3
- - Level: 3
- Max: 4
- - Level: 4
- Max: 5
- - Level: 5
- Max: 6
CopyFlags:
Skill:
Reproduce: true
@@ -28343,16 +28166,15 @@ Body:
AfterCastActDelay: 500
Duration1:
- Level: 1
- Time: 14000
+ Time: 60000
- Level: 2
- Time: 21000
+ Time: 90000
- Level: 3
- Time: 28000
+ Time: 120000
- Level: 4
- Time: 35000
+ Time: 150000
- Level: 5
- Time: 42000
- FixedCastTime: -1
+ Time: 180000
Requires:
SpCost:
- Level: 1
@@ -28368,32 +28190,22 @@ Body:
ItemCost:
- Item: MenEater_Plant_Bottle
Amount: 1
- Unit:
- Id: Hells_Plant
- Range: 1
- Interval: 1000
- Target: Enemy
- Flag:
- NoReiteration: true
- RemovedByFireRain: true
- Id: 2491
Name: GN_HELLS_PLANT_ATK
Description: Hell's Plant Attack
MaxLevel: 5
- Type: Misc
+ Type: Weapon
TargetType: Attack
DamageFlags:
- IgnoreElement: true
- IgnoreDefCard: true
+ Splash: true
Hit: Single
HitCount: 1
+ SplashArea: 2
+ Element: Weapon
CopyFlags:
Skill:
Reproduce: true
Duration1: 20000
- FixedCastTime: -1
- Requires:
- SpCost: 1
- Id: 2492
Name: GN_MANDRAGORA
Description: Howling of Mandragora
@@ -28430,7 +28242,6 @@ Body:
- Level: 5
Time: 30000
Cooldown: 15000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28446,7 +28257,7 @@ Body:
ItemCost:
- Item: Mandragora_Flowerpot
Amount: 1
- - Id: 2493
+ - Id: 2493 # Removed on kRO
Name: GN_SLINGITEM
Description: Sling Item
MaxLevel: 1
@@ -28459,7 +28270,6 @@ Body:
Hit: Single
HitCount: 1
Cooldown: 1000
- FixedCastTime: -1
Requires:
SpCost: 4
Ammo:
@@ -28491,7 +28301,7 @@ Body:
Amount: 5
- Level: 2
Amount: 40
- - Id: 2496
+ - Id: 2496 # Removed on kRO
Name: GN_MAKEBOMB
Description: Create Bomb
MaxLevel: 2
@@ -28517,7 +28327,7 @@ Body:
HitCount: 1
Requires:
SpCost: 12
- - Id: 2498
+ - Id: 2498 # Removed on kRO
Name: GN_SLINGITEM_RANGEMELEEATK
Description: Sling Item Attack
MaxLevel: 1
@@ -28629,6 +28439,7 @@ Body:
HitCount: 1
Requires:
SpCost: 40
+ State: Cart
- Id: 2552
Name: RL_RICHS_COIN
Description: Rich's Coin
@@ -28641,7 +28452,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 600000
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost: 10
ZenyCost: 100
@@ -28651,7 +28461,7 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Range: -9
+ Range: -15
Hit: Single
HitCount: 1
Element: Weapon
@@ -28683,7 +28493,7 @@ Body:
- Id: 2554
Name: RL_BANISHING_BUSTER
Description: Banishing Buster
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Attack
Flags:
@@ -28693,31 +28503,32 @@ Body:
Hit: Single
HitCount: 1
Element: Weapon
- CastTime:
- - Level: 1
- Time: 3000
- - Level: 2
- Time: 2500
- - Level: 3
- Time: 2000
- - Level: 4
- Time: 1500
- - Level: 5
- Time: 1000
- Cooldown: 2000
- FixedCastTime: 1000
+ CastTime: 1000
+ AfterCastActDelay: 400
+ Cooldown: 1000
+ FixedCastTime: 1600
Requires:
SpCost:
- Level: 1
Amount: 55
- Level: 2
- Amount: 60
+ Amount: 57
- Level: 3
- Amount: 65
+ Amount: 59
- Level: 4
- Amount: 70
+ Amount: 61
- Level: 5
- Amount: 75
+ Amount: 63
+ - Level: 6
+ Amount: 65
+ - Level: 7
+ Amount: 67
+ - Level: 8
+ Amount: 69
+ - Level: 9
+ Amount: 71
+ - Level: 10
+ Amount: 73
Weapon:
Shotgun: true
Ammo:
@@ -28781,7 +28592,6 @@ Body:
- Level: 5
Time: 14000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -28817,22 +28627,6 @@ Body:
Size: 3
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 500
Target: Enemy
Flag:
@@ -28937,7 +28731,6 @@ Body:
Time: 165000
- Level: 10
Time: 180000
- FixedCastTime: -1
Requires:
SpCost: 45
Weapon:
@@ -28959,7 +28752,6 @@ Body:
Element: Weapon
SplashArea: 10
Duration1: 1500
- FixedCastTime: -1
Requires:
SpCost: 5
Weapon:
@@ -28982,13 +28774,12 @@ Body:
TargetType: Attack
DamageFlags:
NoDamage: true
- Range: -9
+ Range: -11
Hit: Single
HitCount: 1
ActiveInstance: 3
Duration1: 30000
Cooldown: 1000
- FixedCastTime: -1
Requires:
SpCost: 10
Weapon:
@@ -29001,42 +28792,60 @@ Body:
- Id: 2561
Name: RL_FIREDANCE
Description: Fire Dance
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Self
DamageFlags:
Splash: true
- Range: 5
Hit: Single
HitCount: 1
Element: Weapon
SplashArea: 3
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
- Amount: 12
+ Amount: 13
- Level: 2
- Amount: 14
- - Level: 3
Amount: 16
+ - Level: 3
+ Amount: 19
- Level: 4
- Amount: 18
+ Amount: 22
- Level: 5
- Amount: 20
+ Amount: 25
+ - Level: 6
+ Amount: 28
+ - Level: 7
+ Amount: 31
+ - Level: 8
+ Amount: 34
+ - Level: 9
+ Amount: 37
+ - Level: 10
+ Amount: 40
Weapon:
Revolver: true
Ammo:
Bullet: true
- AmmoAmount: 5
+ AmmoAmount: 3
- Id: 2562
Name: RL_H_MINE
Description: Howling Mine
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Range: -9
+ Range:
+ - Level: 1
+ Size: -7
+ - Level: 2
+ Size: -8
+ - Level: 3
+ Size: -9
+ - Level: 4
+ Size: -10
+ - Level: 5
+ Size: -11
Hit: Single
HitCount: 1
Element: Weapon
@@ -29056,7 +28865,6 @@ Body:
Time: 3500
- Level: 5
Time: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -29072,7 +28880,7 @@ Body:
Weapon:
Grenade: true
ItemCost:
- - Item: Mine_Projectile
+ - Item: Shooting_Mine
Amount: 1
- Id: 2563
Name: RL_P_ALTER
@@ -29095,7 +28903,6 @@ Body:
Time: 78000
- Level: 5
Time: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -29127,7 +28934,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 2000
- FixedCastTime: -1
Requires:
SpCost: 10
Weapon:
@@ -29136,12 +28942,11 @@ Body:
- Id: 2565
Name: RL_R_TRIP
Description: Round Trip
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Self
DamageFlags:
Splash: true
- Range: 5
Hit: Single
HitCount: 1
Element: Weapon
@@ -29151,37 +28956,66 @@ Body:
- Level: 2
Area: 3
- Level: 3
- Area: 4
+ Area: 3
- Level: 4
- Area: 5
+ Area: 4
- Level: 5
+ Area: 4
+ - Level: 6
+ Area: 4
+ - Level: 7
+ Area: 5
+ - Level: 8
+ Area: 5
+ - Level: 9
+ Area: 5
+ - Level: 10
Area: 6
Knockback: 3
AfterCastActDelay: 1000
Cooldown:
- Level: 1
- Time: 3000
+ Time: 2800
- Level: 2
- Time: 2500
+ Time: 2600
- Level: 3
- Time: 2000
+ Time: 2400
- Level: 4
- Time: 1500
+ Time: 2200
- Level: 5
+ Time: 2000
+ - Level: 6
+ Time: 1800
+ - Level: 7
+ Time: 1600
+ - Level: 8
+ Time: 1400
+ - Level: 9
+ Time: 1200
+ - Level: 10
Time: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
- Amount: 40
+ Amount: 43
- Level: 2
- Amount: 45
+ Amount: 46
- Level: 3
- Amount: 50
+ Amount: 49
- Level: 4
- Amount: 55
+ Amount: 52
- Level: 5
- Amount: 60
+ Amount: 55
+ - Level: 6
+ Amount: 58
+ - Level: 7
+ Amount: 61
+ - Level: 8
+ Amount: 64
+ - Level: 9
+ Amount: 67
+ - Level: 10
+ Amount: 70
Weapon:
Gatling: true
Ammo:
@@ -29190,16 +29024,16 @@ Body:
- Id: 2566
Name: RL_D_TAIL
Description: Dragon Tail
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
- TargetType: Self
+ TargetType: Attack
DamageFlags:
IgnoreElement: true
IgnoreDefense: true
- Range: 5
+ Range: 11
Hit: Single
HitCount: 1
- SplashArea: -1
+ SplashArea: 1
CastTime:
- Level: 1
Time: 1200
@@ -29211,26 +29045,42 @@ Body:
Time: 1800
- Level: 5
Time: 2000
- AfterCastActDelay: 2000
- Cooldown: 5000
- FixedCastTime: -1
+ - Level: 6
+ Time: 2200
+ - Level: 7
+ Time: 2400
+ - Level: 8
+ Time: 2600
+ - Level: 9
+ Time: 2800
+ - Level: 10
+ Time: 3000
+ AfterCastActDelay: 1000
+ Cooldown: 3500
Requires:
SpCost:
- Level: 1
- Amount: 60
+ Amount: 55
- Level: 2
- Amount: 70
+ Amount: 60
- Level: 3
- Amount: 80
+ Amount: 65
- Level: 4
- Amount: 90
+ Amount: 70
- Level: 5
+ Amount: 75
+ - Level: 6
+ Amount: 80
+ - Level: 7
+ Amount: 85
+ - Level: 8
+ Amount: 90
+ - Level: 9
+ Amount: 95
+ - Level: 10
Amount: 100
Weapon:
Grenade: true
- Ammo:
- Grenade: true
- AmmoAmount: 1
ItemCost:
- Item: Dragon_Tail_Missile
Amount: 1
@@ -29242,7 +29092,7 @@ Body:
TargetType: Ground
DamageFlags:
Splash: true
- Range: 2
+ Range: 3
Hit: Single
HitCount: 1
Element: Weapon
@@ -29250,7 +29100,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 100
Cooldown: 5000
- FixedCastTime: -1
Requires:
SpCost: 70
Weapon:
@@ -29290,7 +29139,6 @@ Body:
Time: 85000
- Level: 5
Time: 80000
- FixedCastTime: -1
Requires:
SpCost: 30
SpiritSphereCost: -1
@@ -29300,7 +29148,7 @@ Body:
MaxLevel: 5
Type: Weapon
TargetType: Attack
- Range: -9
+ Range: -15
Hit: Single
HitCount: 1
Element: Weapon
@@ -29378,50 +29226,58 @@ Body:
- Id: 2571
Name: RL_HAMMER_OF_GOD
Description: Hammer of God
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Attack
DamageFlags:
Splash: true
- Range:
- - Level: 1
- Size: 7
- - Level: 2
- Size: 8
- - Level: 3
- Size: 9
- - Level: 4
- Size: 10
- - Level: 5
- Size: 11
+ Range: 11
Hit: Single
HitCount: 1
- SplashArea: 2
- AfterCastActDelay: 2000
- Duration2:
+ SplashArea:
- Level: 1
- Time: 3000
+ Area: 2
- Level: 2
- Time: 3000
+ Area: 2
- Level: 3
- Time: 4000
+ Area: 2
- Level: 4
- Time: 4000
+ Area: 2
- Level: 5
- Time: 5000
- Cooldown: 30000
- FixedCastTime: -1
+ Area: 2
+ - Level: 6
+ Area: 3
+ - Level: 7
+ Area: 3
+ - Level: 8
+ Area: 3
+ - Level: 9
+ Area: 3
+ - Level: 10
+ Area: 3
+ AfterCastActDelay: 500
+ Cooldown: 20000
Requires:
SpCost:
- Level: 1
- Amount: 35
+ Amount: 37
- Level: 2
- Amount: 40
+ Amount: 39
- Level: 3
- Amount: 45
+ Amount: 41
- Level: 4
- Amount: 50
+ Amount: 43
- Level: 5
+ Amount: 45
+ - Level: 6
+ Amount: 47
+ - Level: 7
+ Amount: 49
+ - Level: 8
+ Amount: 51
+ - Level: 9
+ Amount: 53
+ - Level: 10
Amount: 55
Weapon:
Rifle: true
@@ -29444,23 +29300,52 @@ Body:
Description: Light of Moon
MaxLevel: 5
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Duration1:
+ - Level: 1
+ Time: 20000
+ - Level: 2
+ Time: 30000
+ - Level: 3
+ Time: 40000
+ - Level: 4
+ Time: 50000
+ - Level: 5
+ Time: 60000
Requires:
SpCost: 40
+ State: Moonstance
- Id: 2575
Name: SJ_LUNARSTANCE
Description: Lunar Stance
MaxLevel: 3
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
Requires:
SpCost: 10
- Id: 2576
Name: SJ_FULLMOONKICK
Description: Full Moon Kick
- MaxLevel: 7
+ MaxLevel: 10
+ Type: Weapon
TargetType: Self
+ DamageFlags:
+ Splash: true
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
+ SplashArea: 3
CastCancel: true
+ Duration1: 20000
+ Cooldown: 1000
Requires:
SpCost:
- Level: 1
@@ -29477,19 +29362,46 @@ Body:
Amount: 55
- Level: 7
Amount: 60
+ - Level: 8
+ Amount: 65
+ - Level: 9
+ Amount: 70
+ - Level: 10
+ Amount: 75
+ State: Moonstance
- Id: 2577
Name: SJ_LIGHTOFSTAR
Description: Light of Star
MaxLevel: 5
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Duration1:
+ - Level: 1
+ Time: 20000
+ - Level: 2
+ Time: 30000
+ - Level: 3
+ Time: 40000
+ - Level: 4
+ Time: 50000
+ - Level: 5
+ Time: 60000
Requires:
SpCost: 40
+ State: Starstance
- Id: 2578
Name: SJ_STARSTANCE
Description: Star Stance
MaxLevel: 3
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
Requires:
SpCost: 10
@@ -29497,8 +29409,18 @@ Body:
Name: SJ_NEWMOONKICK
Description: New Moon Kick
MaxLevel: 7
+ Type: Weapon
TargetType: Self
+ DamageFlags:
+ Splash: true
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
+ SplashArea: 3
CastCancel: true
+ CastTime: 1000
+ Duration1: 15000
+ Cooldown: 1000
Requires:
SpCost:
- Level: 1
@@ -29515,13 +29437,33 @@ Body:
Amount: 45
- Level: 7
Amount: 50
+ State: Moonstance
- Id: 2580
Name: SJ_FLASHKICK
Description: Flash Kick
MaxLevel: 7
+ Type: Weapon
TargetType: Attack
Range: 1
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
CastCancel: true
+ Duration1:
+ - Level: 1
+ Time: 4000
+ - Level: 2
+ Time: 5000
+ - Level: 3
+ Time: 6000
+ - Level: 4
+ Time: 7000
+ - Level: 5
+ Time: 8000
+ - Level: 6
+ Time: 9000
+ - Level: 7
+ Time: 10000
Requires:
SpCost:
- Level: 1
@@ -29538,12 +29480,24 @@ Body:
Amount: 20
- Level: 7
Amount: 15
+ State: Starstance
- Id: 2581
Name: SJ_STAREMPEROR
- Description: Star Emperor
+ Description: Star Emperor Advent
MaxLevel: 5
+ Type: Weapon
TargetType: Self
+ DamageFlags:
+ Splash: true
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
+ SplashArea: 3
CastCancel: true
+ AfterCastActDelay: 1000
+ Duration1: 7000
+ Cooldown: 10000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29556,13 +29510,26 @@ Body:
Amount: 85
- Level: 5
Amount: 90
+ State: Universestance
- Id: 2582
Name: SJ_NOVAEXPLOSING
- Description: Nova Explosing
+ Description: Nova Explosion
MaxLevel: 5
+ Type: Misc
TargetType: Attack
+ DamageFlags:
+ IgnoreElement: true
+ IgnoreFlee: true
+ IgnoreDefCard: true
Range: 3
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 5000
+ AfterCastActDelay: 1000
+ Duration1: 2000
+ Cooldown: 20000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29575,20 +29542,52 @@ Body:
Amount: 75
- Level: 5
Amount: 80
+ State: Universestance
- Id: 2583
Name: SJ_UNIVERSESTANCE
Description: Universe Stance
MaxLevel: 3
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
Requires:
SpCost: 10
- Id: 2584
Name: SJ_FALLINGSTAR
Description: Falling Star
- MaxLevel: 7
+ MaxLevel: 10
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 1000
+ Duration1:
+ - Level: 1
+ Time: 120000
+ - Level: 2
+ Time: 140000
+ - Level: 3
+ Time: 160000
+ - Level: 4
+ Time: 180000
+ - Level: 5
+ Time: 200000
+ - Level: 6
+ Time: 220000
+ - Level: 7
+ Time: 240000
+ - Level: 8
+ Time: 260000
+ - Level: 9
+ Time: 280000
+ - Level: 10
+ Time: 300000
+ FixedCastTime: 2000
Requires:
SpCost:
- Level: 1
@@ -29605,30 +29604,83 @@ Body:
Amount: 65
- Level: 7
Amount: 70
+ - Level: 8
+ Amount: 75
+ - Level: 9
+ Amount: 80
+ - Level: 10
+ Amount: 85
+ State: Starstance
- Id: 2585
Name: SJ_GRAVITYCONTROL
Description: Gravity Control
MaxLevel: 1
TargetType: Attack
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 2000
+ AfterCastActDelay: 500
+ Duration1: 5000
+ Cooldown: 20000
Requires:
SpCost: 80
+ State: Universestance
- Id: 2586
Name: SJ_BOOKOFDIMENSION
Description: Book of Dimension
MaxLevel: 5
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Duration1: 60000
+ Duration2: 30000
+ Cooldown:
+ - Level: 1
+ Time: 150000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 90000
+ - Level: 4
+ Time: 60000
+ - Level: 5
+ Time: 30000
Requires:
SpCost: 40
+ State: Universestance
- Id: 2587
Name: SJ_BOOKOFCREATINGSTAR
Description: Book of Creating Star
MaxLevel: 5
+ Type: Weapon
TargetType: Ground
Range: 7
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
CastCancel: true
+ CastTime: 2000
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 6000
+ - Level: 2
+ Time: 7000
+ - Level: 3
+ Time: 8000
+ - Level: 4
+ Time: 9000
+ - Level: 5
+ Time: 10000
+ Cooldown: 15000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29641,40 +29693,83 @@ Body:
Amount: 65
- Level: 5
Amount: 70
+ State: Universestance
+ Unit:
+ Id: Creatingstar
+ Layout: 2
+ Interval: -1
+ Target: Enemy
+ Flag:
+ NoOverlap: true
+ PathCheck: true
+ NoKnockback: true
- Id: 2588
Name: SJ_DOCUMENT
- Description: Document
+ Description: Document of Sun Moon and Star
MaxLevel: 3
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Cooldown: 60000
Requires:
SpCost: 60
- Id: 2589
Name: SJ_PURIFY
- Description: Purify
+ Description: Purification of Sun Moon and Star
MaxLevel: 1
- Id: 2590
Name: SJ_LIGHTOFSUN
Description: Light of Sun
MaxLevel: 5
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Duration1:
+ - Level: 1
+ Time: 20000
+ - Level: 2
+ Time: 30000
+ - Level: 3
+ Time: 40000
+ - Level: 4
+ Time: 50000
+ - Level: 5
+ Time: 60000
Requires:
SpCost: 40
+ State: Sunstance
- Id: 2591
Name: SJ_SUNSTANCE
Description: Sun Stance
MaxLevel: 3
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
Requires:
SpCost: 10
- Id: 2592
Name: SJ_SOLARBURST
Description: Solar Burst
- MaxLevel: 7
+ MaxLevel: 10
+ Type: Weapon
TargetType: Self
+ DamageFlags:
+ Splash: true
+ Hit: Multi_Hit
+ HitCount: -3
+ Element: Weapon
+ SplashArea: 3
CastCancel: true
+ AfterCastActDelay: 500
Requires:
SpCost:
- Level: 1
@@ -29691,42 +29786,94 @@ Body:
Amount: 49
- Level: 7
Amount: 52
+ - Level: 8
+ Amount: 55
+ - Level: 9
+ Amount: 58
+ - Level: 10
+ Amount: 61
+ State: Sunstance
- Id: 2593
Name: SJ_PROMINENCEKICK
Description: Prominence Kick
MaxLevel: 7
+ Type: Weapon
TargetType: Attack
+ DamageFlags:
+ Splash: true
Range: 1
+ Hit: Single
+ HitCount: 1
+ Element: Weapon
+ SplashArea: 1
CastCancel: true
+ AfterCastActDelay: 1000
+ CastDelayFlags:
+ IgnoreStatus: true
Requires:
SpCost: 20
+ State: Sunstance
- Id: 2594
Name: SJ_FALLINGSTAR_ATK
Description: Falling Star Attack
- MaxLevel: 7
- TargetType: Attack
+ MaxLevel: 10
+ Type: Weapon
+ TargetType: Self
+ DamageFlags:
+ Splash: true
Flags:
IsChorus: true
+ Hit: Multi_Hit
+ HitCount: -3
+ Element: Weapon
+ SplashArea: 2
CastCancel: true
Requires:
SpCost: 1
+ State: Starstance
- Id: 2595
Name: SJ_FALLINGSTAR_ATK2
Description: Falling Star Attack 2
- MaxLevel: 7
+ MaxLevel: 10
+ Type: Weapon
TargetType: Attack
+ DamageFlags:
+ Splash: true
Flags:
IsChorus: true
+ Range: 1
+ Hit: Multi_Hit
+ HitCount: -3
+ Element: Weapon
+ SplashArea: 2
CastCancel: true
Requires:
SpCost: 1
+ State: Starstance
- Id: 2596
Name: SP_SOULGOLEM
- Description: Soul Golem
+ Description: Golem's Soul
MaxLevel: 5
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 60000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 180000
+ - Level: 4
+ Time: 240000
+ - Level: 5
+ Time: 300000
Requires:
SpCost:
- Level: 1
@@ -29739,13 +29886,31 @@ Body:
Amount: 100
- Level: 5
Amount: 50
+ SpiritSphereCost: 1
- Id: 2597
Name: SP_SOULSHADOW
- Description: Soul Shadow
+ Description: Shadow's Soul
MaxLevel: 5
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 60000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 180000
+ - Level: 4
+ Time: 240000
+ - Level: 5
+ Time: 300000
Requires:
SpCost:
- Level: 1
@@ -29758,13 +29923,31 @@ Body:
Amount: 100
- Level: 5
Amount: 50
+ SpiritSphereCost: 1
- Id: 2598
Name: SP_SOULFALCON
- Description: Soul Falcon
+ Description: Falcon's Soul
MaxLevel: 5
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 60000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 180000
+ - Level: 4
+ Time: 240000
+ - Level: 5
+ Time: 300000
Requires:
SpCost:
- Level: 1
@@ -29777,13 +29960,31 @@ Body:
Amount: 100
- Level: 5
Amount: 50
+ SpiritSphereCost: 1
- Id: 2599
Name: SP_SOULFAIRY
- Description: Soul Fairy
+ Description: Fairy's Soul
MaxLevel: 5
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 60000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 180000
+ - Level: 4
+ Time: 240000
+ - Level: 5
+ Time: 300000
Requires:
SpCost:
- Level: 1
@@ -29796,13 +29997,25 @@ Body:
Amount: 100
- Level: 5
Amount: 50
+ SpiritSphereCost: 1
- Id: 2600
Name: SP_CURSEEXPLOSION
Description: Curse Explosion
- MaxLevel: 5
+ MaxLevel: 10
+ Type: Magic
TargetType: Attack
+ DamageFlags:
+ Splash: true
Range: 9
+ Hit: Multi_Hit
+ HitCount: -7
+ Element: Dark
+ SplashArea: 3
CastCancel: true
+ CastTime: 3000
+ AfterCastActDelay: 500
+ Cooldown: 1000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29815,22 +30028,52 @@ Body:
Amount: 65
- Level: 5
Amount: 70
+ - Level: 6
+ Amount: 75
+ - Level: 7
+ Amount: 80
+ - Level: 8
+ Amount: 85
+ - Level: 9
+ Amount: 90
+ - Level: 10
+ Amount: 95
- Id: 2601
Name: SP_SOULCURSE
Description: Soul Curse
MaxLevel: 5
+ Type: Magic
TargetType: Attack
+ DamageFlags:
+ NoDamage: true
+ Splash: true
Range: 9
+ Hit: Single
+ HitCount: 1
+ SplashArea: 3
CastCancel: true
+ CastTime: 1000
+ AfterCastActDelay: 500
+ Duration1: 20000
+ Cooldown: 5000
+ FixedCastTime: 1000
Requires:
SpCost: 70
+ SpiritSphereCost: 3
- Id: 2602
Name: SP_SPA
Description: Espa
- MaxLevel: 5
+ MaxLevel: 10
+ Type: Magic
TargetType: Attack
Range: 9
+ Hit: Single
+ HitCount: 1
+ Element: Endowed
CastCancel: true
+ CastTime: 500
+ Duration1: 5000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29843,13 +30086,77 @@ Body:
Amount: 64
- Level: 5
Amount: 68
+ - Level: 6
+ Amount: 72
+ - Level: 7
+ Amount: 76
+ - Level: 8
+ Amount: 80
+ - Level: 9
+ Amount: 84
+ - Level: 10
+ Amount: 88
+ SpiritSphereCost:
+ - Level: 1
+ Amount: 1
+ - Level: 2
+ Amount: 1
+ - Level: 3
+ Amount: 1
+ - Level: 4
+ Amount: 1
+ - Level: 5
+ Amount: 1
+ - Level: 6
+ Amount: 1
+ - Level: 7
+ Amount: 1
+ - Level: 8
+ Amount: 1
+ - Level: 9
+ Amount: 1
+ - Level: 10
+ Amount: 0
- Id: 2603
Name: SP_SHA
Description: Esha
MaxLevel: 5
+ Type: Magic
TargetType: Attack
+ DamageFlags:
+ Splash: true
Range: 9
+ Hit: Single
+ HitCount: 1
+ Element: Endowed
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 2
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 2
CastCancel: true
+ CastTime: 500
+ AfterCastActDelay: 500
+ Duration1:
+ - Level: 1
+ Time: 3000
+ - Level: 2
+ Time: 4000
+ - Level: 3
+ Time: 5000
+ - Level: 4
+ Time: 6000
+ - Level: 5
+ Time: 7000
+ Duration2: 5000
+ Cooldown: 3000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29862,13 +30169,46 @@ Body:
Amount: 24
- Level: 5
Amount: 26
+ SpiritSphereCost: 1
- Id: 2604
Name: SP_SWHOO
Description: Eswhoo
- MaxLevel: 7
+ MaxLevel: 10
+ Type: Magic
TargetType: Attack
+ DamageFlags:
+ Splash: true
Range: 9
+ Hit: Multi_Hit
+ HitCount: -5
+ Element: Endowed
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 1
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 2
+ - Level: 6
+ Area: 2
+ - Level: 7
+ Area: 3
+ - Level: 8
+ Area: 3
+ - Level: 9
+ Area: 3
+ - Level: 10
+ Area: 4
CastCancel: true
+ CastTime: 500
+ AfterCastActDelay: 500
+ Duration1: 5000
+ Cooldown: 2000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29885,13 +30225,91 @@ Body:
Amount: 86
- Level: 7
Amount: 90
+ - Level: 8
+ Amount: 94
+ - Level: 9
+ Amount: 98
+ - Level: 10
+ Amount: 102
+ SpiritSphereCost:
+ - Level: 1
+ Amount: 2
+ - Level: 2
+ Amount: 2
+ - Level: 3
+ Amount: 2
+ - Level: 4
+ Amount: 2
+ - Level: 5
+ Amount: 2
+ - Level: 6
+ Amount: 2
+ - Level: 7
+ Amount: 2
+ - Level: 8
+ Amount: 2
+ - Level: 9
+ Amount: 2
+ - Level: 10
+ Amount: 1
- Id: 2605
Name: SP_SOULUNITY
Description: Soul Unity
MaxLevel: 7
+ Type: Magic
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Splash: true
Range: 11
+ Hit: Single
+ HitCount: 1
+ SplashArea:
+ - Level: 1
+ Area: 1
+ - Level: 2
+ Area: 1
+ - Level: 3
+ Area: 2
+ - Level: 4
+ Area: 2
+ - Level: 5
+ Area: 3
+ - Level: 6
+ Area: 3
+ - Level: 7
+ Area: 4
CastCancel: true
+ AfterCastActDelay: 1000
+ Duration1:
+ - Level: 1
+ Time: 30000
+ - Level: 2
+ Time: 60000
+ - Level: 3
+ Time: 90000
+ - Level: 4
+ Time: 120000
+ - Level: 5
+ Time: 150000
+ - Level: 6
+ Time: 180000
+ - Level: 7
+ Time: 210000
+ Cooldown:
+ - Level: 2
+ Time: 30000
+ - Level: 3
+ Time: 60000
+ - Level: 4
+ Time: 90000
+ - Level: 5
+ Time: 120000
+ - Level: 6
+ Time: 150000
+ - Level: 7
+ Time: 180000
+ FixedCastTime: 4000
Requires:
SpCost:
- Level: 1
@@ -29908,13 +30326,24 @@ Body:
Amount: 54
- Level: 7
Amount: 56
+ SpiritSphereCost: 10
- Id: 2606
Name: SP_SOULDIVISION
Description: Soul Division
MaxLevel: 5
+ Type: Magic
TargetType: Attack
+ DamageFlags:
+ NoDamage: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 500
+ AfterCastActDelay: 500
+ Duration1: 5000
+ Cooldown: 3000
+ FixedCastTime: 1500
Requires:
SpCost:
- Level: 1
@@ -29927,12 +30356,42 @@ Body:
Amount: 48
- Level: 5
Amount: 52
+ SpiritSphereCost: 1
- Id: 2607
Name: SP_SOULREAPER
Description: Soul Reaper
MaxLevel: 5
+ Type: Magic
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 3000
+ Duration1:
+ - Level: 1
+ Time: 90000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 150000
+ - Level: 4
+ Time: 180000
+ - Level: 5
+ Time: 210000
+ Cooldown:
+ - Level: 1
+ Time: 90000
+ - Level: 2
+ Time: 120000
+ - Level: 3
+ Time: 150000
+ - Level: 4
+ Time: 180000
+ - Level: 5
+ Time: 210000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29945,13 +30404,24 @@ Body:
Amount: 48
- Level: 5
Amount: 50
+ SpiritSphereCost: 2
- Id: 2608
Name: SP_SOULREVOLVE
- Description: Soul Revolve
+ Description: Soul Revolution
MaxLevel: 3
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
+ Flags:
+ PartyOnly: true
Range: 9
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 500
+ Cooldown: 3000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29964,17 +30434,45 @@ Body:
Name: SP_SOULCOLLECT
Description: Soul Collect
MaxLevel: 5
+ Type: Magic
TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ Duration1:
+ - Level: 1
+ Time: 60000
+ - Level: 2
+ Time: 50000
+ - Level: 3
+ Time: 40000
+ - Level: 4
+ Time: 30000
+ - Level: 5
+ Time: 20000
+ Duration2: 600000
Requires:
SpCost: 100
- Id: 2610
Name: SP_SOULEXPLOSION
Description: Soul Explosion
MaxLevel: 5
+ Type: Misc
TargetType: Attack
+ DamageFlags:
+ IgnoreElement: true
+ IgnoreFlee: true
+ IgnoreDefCard: true
Range: 7
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ CastTime: 2000
+ AfterCastActDelay: 500
+ Cooldown: 60000
+ FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
@@ -29987,17 +30485,25 @@ Body:
Amount: 120
- Level: 5
Amount: 150
+ SpiritSphereCost: 10
- Id: 2611
Name: SP_SOULENERGY
- Description: Soul Energy
+ Description: Soul Energy Research
MaxLevel: 5
- Id: 2612
Name: SP_KAUTE
Description: Kaute
MaxLevel: 5
+ Type: Magic
TargetType: Support
+ DamageFlags:
+ NoDamage: true
Range: 7
+ Hit: Single
+ HitCount: 1
CastCancel: true
+ AfterCastActDelay: 1000
+ Cooldown: 5000
Requires:
SpCost:
- Level: 1
@@ -30010,6 +30516,7 @@ Body:
Amount: 42
- Level: 5
Amount: 48
+ SpiritSphereCost: 5
- Id: 3001
Name: KO_YAMIKUMO
Description: Shadow Hiding
@@ -30020,7 +30527,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 200000
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 3002
@@ -30036,27 +30542,55 @@ Body:
- Id: 3004
Name: KO_JYUMONJIKIRI
Description: Cross Slash
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Attack
Range:
- Level: 1
- Size: 3
+ Size: 4
- Level: 2
Size: 4
- Level: 3
- Size: 5
+ Size: 4
- Level: 4
- Size: 6
+ Size: 5
- Level: 5
+ Size: 5
+ - Level: 6
+ Size: 5
+ - Level: 7
+ Size: 6
+ - Level: 8
+ Size: 6
+ - Level: 9
+ Size: 6
+ - Level: 10
Size: 7
Hit: Multi_Hit
HitCount: -2
Element: Weapon
- AfterCastActDelay: 500
Duration1: 3000
- Cooldown: 5000
- FixedCastTime: -1
+ Cooldown:
+ - Level: 1
+ Time: 4000
+ - Level: 2
+ Time: 3900
+ - Level: 3
+ Time: 3800
+ - Level: 4
+ Time: 3700
+ - Level: 5
+ Time: 3600
+ - Level: 6
+ Time: 3500
+ - Level: 7
+ Time: 3400
+ - Level: 8
+ Time: 3300
+ - Level: 9
+ Time: 3200
+ - Level: 10
+ Time: 3100
Requires:
SpCost:
- Level: 1
@@ -30069,6 +30603,16 @@ Body:
Amount: 16
- Level: 5
Amount: 18
+ - Level: 6
+ Amount: 20
+ - Level: 7
+ Amount: 22
+ - Level: 8
+ Amount: 24
+ - Level: 9
+ Amount: 26
+ - Level: 10
+ Amount: 28
- Id: 3005
Name: KO_SETSUDAN
Description: Soul Cutter
@@ -30080,7 +30624,6 @@ Body:
HitCount: 1
Element: Weapon
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30098,7 +30641,7 @@ Body:
Description: Kunai Explosion
MaxLevel: 5
Type: Weapon
- TargetType: Ground
+ TargetType: Attack
DamageFlags:
Splash: true
IgnoreFlee: true
@@ -30131,7 +30674,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 100
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30179,7 +30721,6 @@ Body:
- Level: 5
Area: 5
AfterCastActDelay: 500
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30194,7 +30735,7 @@ Body:
Amount: 20
Ammo:
Kunai: true
- AmmoAmount: 8
+ AmmoAmount: 2
- Id: 3008
Name: KO_MUCHANAGE
Description: Rapid Throw
@@ -30236,7 +30777,6 @@ Body:
Reproduce: true
CastTime: 1000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost: 50
ZenyCost:
@@ -30283,12 +30823,6 @@ Body:
Size: 1
- Level: 10
Size: 2
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: 1000
Target: Enemy
Flag:
@@ -30297,52 +30831,41 @@ Body:
- Id: 3009
Name: KO_HUUMARANKA
Description: Swirling Petal
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
- TargetType: Ground
+ TargetType: Attack
DamageFlags:
Splash: true
- Range:
- - Level: 1
- Size: 9
- - Level: 2
- Size: 10
- - Level: 3
- Size: 11
- - Level: 4
- Size: 12
- - Level: 5
- Size: 13
+ Range: 11
Hit: Multi_Hit
HitCount: -5
Element: Weapon
SplashArea: 3
- CastTime:
- - Level: 1
- Time: 1000
- - Level: 2
- Time: 1200
- - Level: 3
- Time: 1400
- - Level: 4
- Time: 1600
- - Level: 5
- Time: 1800
- AfterCastActDelay: 1000
+ CastTime: 1500
+ AfterCastActDelay: 500
Duration1: 100
Cooldown: 3000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
- Amount: 24
+ Amount: 22
- Level: 2
- Amount: 28
+ Amount: 24
- Level: 3
- Amount: 32
+ Amount: 26
- Level: 4
- Amount: 36
+ Amount: 28
- Level: 5
+ Amount: 30
+ - Level: 6
+ Amount: 32
+ - Level: 7
+ Amount: 34
+ - Level: 8
+ Amount: 36
+ - Level: 9
+ Amount: 38
+ - Level: 10
Amount: 40
Weapon:
Huuma: true
@@ -30393,7 +30916,6 @@ Body:
- Level: 5
Time: 4500
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30436,7 +30958,6 @@ Body:
CastTime: 3000
Duration1: 10000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost: 100
- Id: 3012
@@ -30482,7 +31003,6 @@ Body:
Time: 21000
- Level: 5
Time: 18000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30528,7 +31048,6 @@ Body:
- Level: 5
Time: 20000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30574,7 +31093,6 @@ Body:
- Level: 5
Time: 16000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30599,7 +31117,6 @@ Body:
Element: Fire
CastTime: 2000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost: 20
ItemCost:
@@ -30617,7 +31134,6 @@ Body:
Element: Water
CastTime: 2000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost: 20
ItemCost:
@@ -30635,7 +31151,6 @@ Body:
Element: Wind
CastTime: 2000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost: 20
ItemCost:
@@ -30653,7 +31168,6 @@ Body:
Element: Earth
CastTime: 2000
Duration1: 300000
- FixedCastTime: -1
Requires:
SpCost: 20
ItemCost:
@@ -30682,7 +31196,6 @@ Body:
CastCancel: true
AfterCastActDelay: 1000
Duration1: 10000
- FixedCastTime: -1
Requires:
SpCost: 30
Unit:
@@ -30726,7 +31239,6 @@ Body:
AfterCastActDelay: 1000
Duration1: 30000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30759,7 +31271,6 @@ Body:
- Level: 5
Time: 90000
Cooldown: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30803,7 +31314,6 @@ Body:
Time: 8000
- Level: 5
Time: 9000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30839,7 +31349,6 @@ Body:
- Level: 5
Time: 30000
Cooldown: 20000
- FixedCastTime: -1
Requires:
SpCost: 50
ItemCost:
@@ -30868,7 +31377,6 @@ Body:
- Level: 5
Time: 180000
Cooldown: 20000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -30955,7 +31463,6 @@ Body:
- Level: 5
Time: 30000
Cooldown: 15000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31099,6 +31606,31 @@ Body:
IgnoreItemBonus: true
Requires:
SpCost: 1
+ - Id: 3042
+ Name: ALL_PRONTERA_RECALL
+ Description: Prontera Recall
+ MaxLevel: 2
+ TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Hit: Single
+ HitCount: 1
+ Cooldown:
+ - Level: 1
+ Time: 1800000
+ - Level: 2
+ Time: 900000
+ FixedCastTime: 1000
+ CastTimeFlags:
+ IgnoreDex: true
+ IgnoreStatus: true
+ IgnoreItemBonus: true
+ CastDelayFlags:
+ IgnoreDex: true
+ IgnoreStatus: true
+ IgnoreItemBonus: true
+ Requires:
+ SpCost: 1
- Id: 5001
Name: GC_DARKCROW
Description: Dark Claw
@@ -31112,9 +31644,8 @@ Body:
CopyFlags:
Skill:
Reproduce: true
- Duration1: 5000
+ Duration1: 10000
Cooldown: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31201,7 +31732,7 @@ Body:
- Level: 4
Time: 1000
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -31301,12 +31832,9 @@ Body:
TargetType: Self
DamageFlags:
NoDamage: true
- Splash: true
Hit: Single
HitCount: 1
- SplashArea: 3
- Duration1: 60000
- FixedCastTime: -1
+ Duration1: 900000
Requires:
SpCost: 1
- Id: 5006
@@ -31343,7 +31871,6 @@ Body:
Time: 7000
- Level: 5
Time: 6000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31388,7 +31915,6 @@ Body:
CastTime: 1000
AfterCastActDelay: 2000
Duration1: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31447,7 +31973,6 @@ Body:
Time: 6000
- Level: 5
Time: 4000
- FixedCastTime: -1
Requires:
SpCost: 65
SpiritSphereCost:
@@ -31497,7 +32022,6 @@ Body:
Time: 4000
- Level: 5
Time: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31541,7 +32065,6 @@ Body:
Time: 1000
AfterCastActDelay: 500
Duration1: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31566,7 +32089,6 @@ Body:
AfterCastActDelay: 500
Duration1: 60000
Cooldown: 300000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31602,7 +32124,6 @@ Body:
Time: 70000
- Level: 5
Time: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31647,7 +32168,6 @@ Body:
Time: 30000
Duration2: 10000
Cooldown: 1800000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 5015
@@ -31663,7 +32183,6 @@ Body:
Hit: Single
HitCount: 1
Duration2: 20000
- FixedCastTime: -1
- Id: 5018
Name: SU_BASIC_SKILL
Description: New Basic Skill
@@ -31681,7 +32200,6 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 5020
@@ -31771,7 +32289,6 @@ Body:
Time: 4000
- Level: 3
Time: 6000
- FixedCastTime: -1
Requires:
SpCost: 30
- Id: 5024
@@ -31806,7 +32323,6 @@ Body:
CastTime: 2000
AfterCastActDelay: 1000
Duration2: 120000
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 5027
@@ -31836,7 +32352,6 @@ Body:
- Level: 5
Time: 7000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -31850,7 +32365,7 @@ Body:
- Level: 5
Amount: 24
ItemCost:
- - Item: Catnip_Fruit
+ - Item: Nepeta_Cataria
Amount: 1
Unit:
Id: Catnippowder
@@ -31865,22 +32380,6 @@ Body:
Size: 2
- Level: 5
Size: 3
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Target: Enemy
Flag:
@@ -32023,7 +32522,6 @@ Body:
Duration1: 9000
Duration2: 1000
Cooldown: 10000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32049,7 +32547,6 @@ Body:
CastCancel: true
CastTime: 1000
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32140,7 +32637,6 @@ Body:
AfterCastActDelay: 1000
Duration2: 5000
Cooldown: 6000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32182,7 +32678,6 @@ Body:
Time: 11000
- Level: 5
Time: 14000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32332,10 +32827,9 @@ Body:
- Level: 5
Time: 3500
Duration2: 20000
- FixedCastTime: -1
Requires:
ItemCost:
- - Item: Catnip_Fruit
+ - Item: Nepeta_Cataria
Amount: 1
Unit:
Id: Dummyskill
@@ -32369,7 +32863,6 @@ Body:
Area: 3
CastCancel: true
Duration2: 5000
- FixedCastTime: -1
Requires:
ItemCost:
- Item: Carrot
@@ -32416,7 +32909,6 @@ Body:
Duration1: 15000
Duration2: 10000
Cooldown: 100000
- FixedCastTime: -1
Requires:
SpCost: 50
- Id: 5046
@@ -32443,7 +32935,6 @@ Body:
Time: 2000
AfterCastActDelay: 1000
Cooldown: 22000
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 5047
@@ -32474,7 +32965,6 @@ Body:
- Level: 5
Time: 5000
Cooldown: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32523,7 +33013,6 @@ Body:
- Level: 5
Time: 10000
Cooldown: 60000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32549,22 +33038,6 @@ Body:
Size: 3
- Level: 5
Size: 4
- - Level: 6
- Size: 0
- - Level: 7
- Size: 0
- - Level: 8
- Size: 0
- - Level: 9
- Size: 0
- - Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
Interval: -1
Target: Enemy
Flag:
@@ -32643,7 +33116,6 @@ Body:
Time: 50000
- Level: 5
Time: 45000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32703,7 +33175,6 @@ Body:
Time: 50000
- Level: 5
Time: 45000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -32970,6 +33441,39 @@ Body:
FixedCastTime: 2000
Requires:
SpCost: 70
+ - Id: 5075
+ Name: NV_BREAKTHROUGH
+ Description: Break Through
+ MaxLevel: 5
+ - Id: 5076
+ Name: NV_HELPANGEL
+ Description: Help Angel
+ MaxLevel: 1
+ TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Splash: true
+ Hit: Single
+ HitCount: 1
+ SplashArea: 7
+ CastCancel: true
+ AfterCastActDelay: 500
+ Duration1: 20000
+ Cooldown: 300000
+ Requires:
+ SpCost: 1
+ - Id: 5077
+ Name: NV_TRANSCENDENCE
+ Description: Transcendence
+ MaxLevel: 5
+ - Id: 5078
+ Name: WL_READING_SB_READING
+ Description: Reading Spellbook
+ MaxLevel: 10
+ TargetType: Self
+ CastTime: 5000
+ AfterCastActDelay: 500
+ FixedCastTime: 1000
- Id: 8001
Name: HLIF_HEAL
Description: Healing Touch
@@ -32982,7 +33486,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33021,7 +33524,6 @@ Body:
Time: 25000
- Level: 5
Time: 20000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33061,7 +33563,6 @@ Body:
Time: 900000
- Level: 3
Time: 1200000
- FixedCastTime: -1
Requires:
SpCost: 100
- Id: 8005
@@ -33073,7 +33574,6 @@ Body:
NoDamage: true
Hit: Single
Duration2: 1000
- FixedCastTime: -1
Requires:
SpCost: 10
- Id: 8006
@@ -33096,7 +33596,6 @@ Body:
Time: 25000
- Level: 5
Time: 20000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33137,7 +33636,6 @@ Body:
Time: 600000
- Level: 3
Time: 900000
- FixedCastTime: -1
Requires:
SpCost: 120
- Id: 8009
@@ -33160,7 +33658,6 @@ Body:
- Level: 5
Count: -3
AfterCastWalkDelay: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33203,7 +33700,6 @@ Body:
Time: 105000
- Level: 5
Time: 120000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33248,7 +33744,6 @@ Body:
Time: 105000
- Level: 5
Time: 120000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33271,7 +33766,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8013
@@ -33304,7 +33798,6 @@ Body:
Time: 2600
- Level: 5
Time: 2800
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33327,7 +33820,6 @@ Body:
Hit: Single
AfterCastActDelay: 3000
AfterCastWalkDelay: 3000
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8015
@@ -33353,7 +33845,6 @@ Body:
Element: Weapon
SplashArea: 4
AfterCastWalkDelay: 1000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8018
@@ -33414,9 +33905,11 @@ Body:
- Id: 8019
Name: MH_NEEDLE_OF_PARALYZE
Description: Needle of Paralyze
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Attack
+ DamageFlags:
+ IgnoreDefense: true
Range: 5
Hit: Single
HitCount: 1
@@ -33425,47 +33918,86 @@ Body:
- Level: 1
Time: 1000
- Level: 2
- Time: 1100
+ Time: 1000
- Level: 3
- Time: 1200
+ Time: 1000
- Level: 4
- Time: 1300
+ Time: 1100
- Level: 5
- Time: 1400
- AfterCastActDelay: 2000
+ Time: 1100
+ - Level: 6
+ Time: 1100
+ - Level: 7
+ Time: 1200
+ - Level: 8
+ Time: 1200
+ - Level: 9
+ Time: 1200
+ - Level: 10
+ Time: 1300
Duration1:
- Level: 1
Time: 12000
- Level: 2
- Time: 14000
+ Time: 12000
- Level: 3
- Time: 16000
+ Time: 12000
- Level: 4
- Time: 18000
+ Time: 14000
- Level: 5
- Time: 20000
+ Time: 14000
+ - Level: 6
+ Time: 14000
+ - Level: 7
+ Time: 16000
+ - Level: 8
+ Time: 16000
+ - Level: 9
+ Time: 16000
+ - Level: 10
+ Time: 18000
FixedCastTime:
- Level: 1
Time: 500
- Level: 2
- Time: 400
+ Time: 500
- Level: 3
- Time: 300
+ Time: 500
- Level: 4
- Time: 200
+ Time: 400
- Level: 5
- Time: 100
+ Time: 400
+ - Level: 6
+ Time: 400
+ - Level: 7
+ Time: 300
+ - Level: 8
+ Time: 300
+ - Level: 9
+ Time: 300
+ - Level: 10
+ Time: 200
Requires:
SpCost:
- Level: 1
- Amount: 48
+ Amount: 42
- Level: 2
- Amount: 60
+ Amount: 48
- Level: 3
- Amount: 72
+ Amount: 54
- Level: 4
- Amount: 84
+ Amount: 60
- Level: 5
+ Amount: 66
+ - Level: 6
+ Amount: 72
+ - Level: 7
+ Amount: 78
+ - Level: 8
+ Amount: 84
+ - Level: 9
+ Amount: 90
+ - Level: 10
Amount: 96
- Id: 8020
Name: MH_POISON_MIST
@@ -33535,46 +34067,76 @@ Body:
- Id: 8021
Name: MH_PAIN_KILLER
Description: Pain Killer
- MaxLevel: 5
+ MaxLevel: 10
TargetType: Support
DamageFlags:
NoDamage: true
- Range: 1
+ Range: 5
Hit: Single
HitCount: 1
CastTime:
- Level: 1
Time: 1000
- Level: 2
- Time: 1200
+ Time: 1100
- Level: 3
- Time: 1400
+ Time: 1200
- Level: 4
- Time: 1600
+ Time: 1300
- Level: 5
+ Time: 1400
+ - Level: 6
+ Time: 1500
+ - Level: 7
+ Time: 1600
+ - Level: 8
+ Time: 1700
+ - Level: 9
Time: 1800
+ - Level: 10
+ Time: 1900
Duration1:
- Level: 1
- Time: 20000
- - Level: 2
Time: 30000
- - Level: 3
+ - Level: 2
Time: 40000
- - Level: 4
+ - Level: 3
Time: 50000
- - Level: 5
+ - Level: 4
Time: 60000
+ - Level: 5
+ Time: 70000
+ - Level: 6
+ Time: 80000
+ - Level: 7
+ Time: 90000
+ - Level: 8
+ Time: 100000
+ - Level: 9
+ Time: 110000
+ - Level: 10
+ Time: 120000
FixedCastTime:
- Level: 1
Time: 1000
- Level: 2
- Time: 800
+ Time: 900
- Level: 3
- Time: 600
+ Time: 800
- Level: 4
- Time: 400
+ Time: 700
- Level: 5
+ Time: 600
+ - Level: 6
+ Time: 500
+ - Level: 7
+ Time: 400
+ - Level: 8
+ Time: 300
+ - Level: 9
Time: 200
+ - Level: 10
+ Time: 100
Requires:
SpCost:
- Level: 1
@@ -33587,6 +34149,16 @@ Body:
Amount: 60
- Level: 5
Amount: 64
+ - Level: 6
+ Amount: 68
+ - Level: 7
+ Amount: 72
+ - Level: 8
+ Amount: 76
+ - Level: 9
+ Amount: 80
+ - Level: 10
+ Amount: 84
- Id: 8022
Name: MH_LIGHT_OF_REGENE
Description: Light of Regene
@@ -33641,7 +34213,7 @@ Body:
HitCount: 1
CastTime:
- Level: 1
- Time: 800
+ Time: 100
- Level: 2
Time: 700
- Level: 3
@@ -33687,37 +34259,36 @@ Body:
- Id: 8024
Name: MH_ERASER_CUTTER
Description: Eraser Cutter
- MaxLevel: 5
+ MaxLevel: 10
Type: Magic
TargetType: Attack
+ DamageFlags:
+ IgnoreDefense: true
Range: 7
Hit: Multi_Hit
HitCount: -6
- Element:
- - Level: 1
- Element: Wind
- - Level: 2
- Element: Neutral
- - Level: 3
- Element: Wind
- - Level: 4
- Element: Neutral
- - Level: 5
- Element: Wind
CastCancel: true
CastTime:
- Level: 1
- Time: 1000
+ Time: 1500
- Level: 2
Time: 1500
- Level: 3
- Time: 2000
+ Time: 1500
- Level: 4
- Time: 2500
+ Time: 2000
- Level: 5
+ Time: 2000
+ - Level: 6
+ Time: 2000
+ - Level: 7
+ Time: 2500
+ - Level: 8
+ Time: 2500
+ - Level: 9
+ Time: 2500
+ - Level: 10
Time: 3000
- AfterCastActDelay: 2000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -33730,95 +34301,118 @@ Body:
Amount: 40
- Level: 5
Amount: 45
+ - Level: 6
+ Amount: 50
+ - Level: 7
+ Amount: 55
+ - Level: 8
+ Amount: 60
+ - Level: 9
+ Amount: 65
+ - Level: 10
+ Amount: 70
- Id: 8025
Name: MH_XENO_SLASHER
Description: Xeno Slasher
- MaxLevel: 5
+ MaxLevel: 10
Type: Magic
TargetType: Ground
DamageFlags:
Splash: true
+ IgnoreDefense: true
Range: 7
Hit: Multi_Hit
HitCount: -6
- Element:
- - Level: 1
- Element: Wind
- - Level: 2
- Element: Neutral
- - Level: 3
- Element: Wind
- - Level: 4
- Element: Neutral
- - Level: 5
- Element: Wind
+ Element: Wind
SplashArea:
- Level: 1
- Area: 2
+ Area: 1
- Level: 2
- Area: 2
+ Area: 1
- Level: 3
- Area: 3
+ Area: 1
- Level: 4
- Area: 3
+ Area: 2
- Level: 5
+ Area: 2
+ - Level: 6
+ Area: 2
+ - Level: 7
+ Area: 3
+ - Level: 8
+ Area: 3
+ - Level: 9
+ Area: 3
+ - Level: 10
Area: 4
CastTime:
- Level: 1
- Time: 1500
+ Time: 1700
- Level: 2
- Time: 2500
+ Time: 1900
- Level: 3
- Time: 3500
+ Time: 2100
- Level: 4
- Time: 4500
+ Time: 2300
- Level: 5
- Time: 5500
- AfterCastActDelay: 5000
+ Time: 2500
+ - Level: 6
+ Time: 2700
+ - Level: 7
+ Time: 2900
+ - Level: 8
+ Time: 3100
+ - Level: 9
+ Time: 3300
+ - Level: 10
+ Time: 3500
Duration1: 500
Duration2: 120000
- FixedCastTime: 500
Requires:
SpCost:
- Level: 1
- Amount: 90
+ Amount: 85
- Level: 2
- Amount: 100
+ Amount: 90
- Level: 3
- Amount: 110
+ Amount: 95
- Level: 4
- Amount: 120
+ Amount: 100
- Level: 5
+ Amount: 105
+ - Level: 6
+ Amount: 110
+ - Level: 7
+ Amount: 115
+ - Level: 8
+ Amount: 120
+ - Level: 9
+ Amount: 125
+ - Level: 10
Amount: 130
Unit:
Id: Dummyskill
Range:
- Level: 1
- Size: 2
+ Size: 1
- Level: 2
- Size: 2
+ Size: 1
- Level: 3
- Size: 3
+ Size: 1
- Level: 4
- Size: 3
+ Size: 2
- Level: 5
- Size: 4
+ Size: 2
- Level: 6
- Size: 0
+ Size: 2
- Level: 7
- Size: 0
+ Size: 3
- Level: 8
- Size: 0
+ Size: 3
- Level: 9
- Size: 0
+ Size: 3
- Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
+ Size: 4
Interval: 1000
Target: Enemy
Flag:
@@ -33900,7 +34494,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 1000
- FixedCastTime: 500
Requires:
SpCost: 35
- Id: 8028
@@ -33911,11 +34504,10 @@ Body:
TargetType: Attack
Flags:
NoTargetSelf: true
- Range: 1
- Hit: Multi_Hit
+ Range: 3
+ Hit: Single
HitCount: 1
- AfterCastActDelay: 1000
- FixedCastTime: -1
+ Cooldown: 1000
Requires:
SpCost:
- Level: 1
@@ -33932,111 +34524,129 @@ Body:
- Id: 8029
Name: MH_SILVERVEIN_RUSH
Description: Silver Bain Rush
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Self
Flags:
NoTargetSelf: true
- Range: 1
+ Range: 3
Hit: Single
HitCount: 1
Duration1: 5000
- Cooldown: 2000
- FixedCastTime: -1
+ Cooldown: 1500
Requires:
SpCost:
- Level: 1
- Amount: 10
+ Amount: 17
- Level: 2
- Amount: 15
+ Amount: 19
- Level: 3
- Amount: 20
+ Amount: 21
- Level: 4
- Amount: 25
+ Amount: 23
- Level: 5
- Amount: 30
+ Amount: 25
+ - Level: 6
+ Amount: 27
+ - Level: 7
+ Amount: 29
+ - Level: 8
+ Amount: 31
+ - Level: 9
+ Amount: 33
+ - Level: 10
+ Amount: 35
SpiritSphereCost: 1
- Id: 8030
Name: MH_MIDNIGHT_FRENZY
Description: Midnight Frenzy
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Self
Flags:
NoTargetSelf: true
- Range: 1
+ Range: 3
Hit: Single
HitCount: 1
Duration1: 10000
- Cooldown: 2000
- FixedCastTime: -1
+ Cooldown: 1500
Requires:
SpCost:
- Level: 1
- Amount: 8
+ Amount: 18
- Level: 2
- Amount: 16
+ Amount: 21
- Level: 3
Amount: 24
- Level: 4
- Amount: 32
+ Amount: 27
- Level: 5
- Amount: 40
- SpiritSphereCost: 2
+ Amount: 30
+ - Level: 6
+ Amount: 33
+ - Level: 7
+ Amount: 36
+ - Level: 8
+ Amount: 39
+ - Level: 9
+ Amount: 42
+ - Level: 10
+ Amount: 45
+ SpiritSphereCost: 1
- Id: 8031
Name: MH_STAHL_HORN
Description: Steel Horn
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Attack
Range:
- Level: 1
Size: 5
- Level: 2
- Size: 6
+ Size: 5
- Level: 3
- Size: 7
+ Size: 6
- Level: 4
- Size: 8
+ Size: 6
- Level: 5
+ Size: 7
+ - Level: 6
+ Size: 7
+ - Level: 7
+ Size: 8
+ - Level: 8
+ Size: 8
+ - Level: 9
+ Size: 9
+ - Level: 10
Size: 9
Hit: Single
HitCount: 1
Knockback: 3
- CastTime:
- - Level: 1
- Time: 800
- - Level: 2
- Time: 600
- - Level: 3
- Time: 400
- - Level: 4
- Time: 200
- AfterCastActDelay: 3000
Duration1: 5000
- FixedCastTime:
- - Level: 1
- Time: 200
- - Level: 2
- Time: 400
- - Level: 3
- Time: 600
- - Level: 4
- Time: 800
- - Level: 5
- Time: 1000
+ FixedCastTime: 500
Requires:
SpCost:
- Level: 1
- Amount: 40
+ Amount: 43
- Level: 2
- Amount: 45
+ Amount: 46
- Level: 3
- Amount: 50
+ Amount: 49
- Level: 4
- Amount: 55
+ Amount: 52
- Level: 5
- Amount: 60
+ Amount: 55
+ - Level: 6
+ Amount: 58
+ - Level: 7
+ Amount: 61
+ - Level: 8
+ Amount: 64
+ - Level: 9
+ Amount: 67
+ - Level: 10
+ Amount: 70
- Id: 8032
Name: MH_GOLDENE_FERSE
Description: Golden Heel
@@ -34068,7 +34678,6 @@ Body:
Time: 75000
- Level: 5
Time: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -34102,7 +34711,6 @@ Body:
Time: 75000
- Level: 5
Time: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -34124,11 +34732,12 @@ Body:
- Id: 8034
Name: MH_HEILIGE_STANGE
Description: Holy Pole
- MaxLevel: 5
+ MaxLevel: 10
Type: Magic
TargetType: Attack
DamageFlags:
Splash: true
+ IgnoreDefense: true
Range: 9
Hit: Single
HitCount: 1
@@ -34144,6 +34753,16 @@ Body:
Area: 1
- Level: 5
Area: 2
+ - Level: 6
+ Area: 2
+ - Level: 7
+ Area: 2
+ - Level: 8
+ Area: 2
+ - Level: 9
+ Area: 3
+ - Level: 10
+ Area: 3
CastTime:
- Level: 1
Time: 200
@@ -34155,30 +34774,59 @@ Body:
Time: 800
- Level: 5
Time: 1000
- AfterCastActDelay: 5000
+ - Level: 6
+ Time: 1200
+ - Level: 7
+ Time: 1400
+ - Level: 8
+ Time: 1600
+ - Level: 9
+ Time: 1800
+ - Level: 10
+ Time: 2000
FixedCastTime:
- Level: 1
- Time: 1800
+ Time: 2000
- Level: 2
- Time: 1600
+ Time: 1800
- Level: 3
- Time: 1400
+ Time: 1600
- Level: 4
- Time: 1200
+ Time: 1400
- Level: 5
+ Time: 1200
+ - Level: 6
Time: 1000
+ - Level: 7
+ Time: 800
+ - Level: 8
+ Time: 600
+ - Level: 9
+ Time: 400
+ - Level: 10
+ Time: 200
Requires:
SpCost:
- Level: 1
- Amount: 60
+ Amount: 48
- Level: 2
- Amount: 68
+ Amount: 54
- Level: 3
- Amount: 76
+ Amount: 60
- Level: 4
- Amount: 84
+ Amount: 66
- Level: 5
- Amount: 100
+ Amount: 72
+ - Level: 6
+ Amount: 78
+ - Level: 7
+ Amount: 84
+ - Level: 8
+ Amount: 90
+ - Level: 9
+ Amount: 96
+ - Level: 10
+ Amount: 102
- Id: 8035
Name: MH_ANGRIFFS_MODUS
Description: Attack Mode
@@ -34210,7 +34858,6 @@ Body:
Time: 75000
- Level: 5
Time: 90000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -34245,7 +34892,6 @@ Body:
Hit: Single
HitCount: 1
CastTime: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -34287,7 +34933,7 @@ Body:
Name: MH_EQC
Description: Eternal Quick Combo
MaxLevel: 5
- Type: Misc
+ Type: Weapon
TargetType: Self
Flags:
NoTargetSelf: true
@@ -34295,7 +34941,6 @@ Body:
Hit: Single
HitCount: 1
AfterCastActDelay: 1000
- FixedCastTime: -1
Requires:
SpCost:
- Level: 1
@@ -34364,7 +35009,7 @@ Body:
- Level: 4
Time: 500
- Level: 5
- Time: -1
+ Time: 0
Requires:
SpCost:
- Level: 1
@@ -34415,7 +35060,7 @@ Body:
- Id: 8041
Name: MH_LAVA_SLIDE
Description: Lava Slide
- MaxLevel: 5
+ MaxLevel: 10
Type: Weapon
TargetType: Ground
DamageFlags:
@@ -34429,39 +35074,69 @@ Body:
- Level: 1
Time: 5000
- Level: 2
- Time: 4500
+ Time: 5000
- Level: 3
- Time: 4000
+ Time: 5000
- Level: 4
- Time: 3500
+ Time: 4500
- Level: 5
- Time: 3000
+ Time: 4500
+ - Level: 6
+ Time: 4500
+ - Level: 7
+ Time: 4000
+ - Level: 8
+ Time: 4000
+ - Level: 9
+ Time: 4000
+ - Level: 10
+ Time: 3500
AfterCastActDelay: 1000
Duration1:
- Level: 1
- Time: 12000
+ Time: 8000
- Level: 2
- Time: 14000
+ Time: 10000
- Level: 3
- Time: 16000
+ Time: 12000
- Level: 4
- Time: 18000
+ Time: 14000
- Level: 5
+ Time: 16000
+ - Level: 6
+ Time: 18000
+ - Level: 7
Time: 20000
+ - Level: 8
+ Time: 22000
+ - Level: 9
+ Time: 24000
+ - Level: 10
+ Time: 26000
Duration2: 20000
FixedCastTime: 1000
Requires:
SpCost:
- Level: 1
- Amount: 30
- - Level: 2
- Amount: 35
- - Level: 3
Amount: 40
- - Level: 4
+ - Level: 2
Amount: 45
- - Level: 5
+ - Level: 3
Amount: 50
+ - Level: 4
+ Amount: 55
+ - Level: 5
+ Amount: 60
+ - Level: 6
+ Amount: 65
+ - Level: 7
+ Amount: 70
+ - Level: 8
+ Amount: 75
+ - Level: 9
+ Amount: 80
+ - Level: 10
+ Amount: 85
Unit:
Id: Lava_Slide
Layout:
@@ -34470,27 +35145,21 @@ Body:
- Level: 2
Size: 1
- Level: 3
- Size: 2
+ Size: 1
- Level: 4
Size: 2
- Level: 5
- Size: 3
+ Size: 2
- Level: 6
- Size: 0
+ Size: 2
- Level: 7
- Size: 0
+ Size: 3
- Level: 8
- Size: 0
+ Size: 3
- Level: 9
- Size: 0
+ Size: 3
- Level: 10
- Size: 0
- - Level: 11
- Size: 0
- - Level: 12
- Size: 0
- - Level: 13
- Size: 0
+ Size: 4
Interval: 2000
Target: Enemy
Flag:
@@ -34500,7 +35169,7 @@ Body:
- Id: 8042
Name: MH_PYROCLASTIC
Description: Pyroclastic
- MaxLevel: 5
+ MaxLevel: 10
TargetType: Self
DamageFlags:
NoDamage: true
@@ -34518,18 +35187,38 @@ Body:
Time: 2500
- Level: 5
Time: 3000
+ - Level: 6
+ Time: 3500
+ - Level: 7
+ Time: 4000
+ - Level: 8
+ Time: 4500
+ - Level: 9
+ Time: 5000
+ - Level: 10
+ Time: 5500
AfterCastActDelay: 1000
Duration1:
- Level: 1
Time: 60000
- Level: 2
- Time: 90000
+ Time: 80000
- Level: 3
- Time: 120000
+ Time: 100000
- Level: 4
- Time: 150000
+ Time: 120000
- Level: 5
+ Time: 140000
+ - Level: 6
+ Time: 160000
+ - Level: 7
Time: 180000
+ - Level: 8
+ Time: 200000
+ - Level: 9
+ Time: 220000
+ - Level: 10
+ Time: 240000
FixedCastTime: 200
Requires:
SpCost:
@@ -34543,6 +35232,16 @@ Body:
Amount: 44
- Level: 5
Amount: 52
+ - Level: 6
+ Amount: 56
+ - Level: 7
+ Amount: 60
+ - Level: 8
+ Amount: 64
+ - Level: 9
+ Amount: 66
+ - Level: 10
+ Amount: 70
- Id: 8043
Name: MH_VOLCANIC_ASH
Description: Volcanic Ash
@@ -35172,8 +35871,6 @@ Body:
TargetType: Attack
DamageFlags:
NoDamage: true
- Flags:
- IncreaseGloomyDayDamage: true
Range: -2
Hit: Single
HitCount: 1
@@ -35198,7 +35895,6 @@ Body:
TargetType: Attack
Flags:
TargetTrap: true
- IncreaseGloomyDayDamage: true
Range: 5
Hit: Multi_Hit
HitCount: 5
@@ -35688,7 +36384,7 @@ Body:
Hit: Single
CastCancel: true
AfterCastActDelay: 3000
- Duration1:
+ Duration2:
- Level: 1
Time: 30000
- Level: 2
@@ -35927,7 +36623,6 @@ Body:
Element: Fire
Knockback: 2
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8402
@@ -35940,7 +36635,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8403
@@ -35955,7 +36649,6 @@ Body:
ActiveInstance: 3
Knockback: 2
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 80
Unit:
@@ -35977,7 +36670,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8405
@@ -35990,7 +36682,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8406
@@ -36003,7 +36694,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 80
Unit:
@@ -36026,7 +36716,6 @@ Body:
HitCount: 1
Knockback: 5
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8408
@@ -36039,7 +36728,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8409
@@ -36052,7 +36740,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 80
Unit:
@@ -36074,7 +36761,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8411
@@ -36087,7 +36773,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8412
@@ -36100,7 +36785,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 80
Unit:
@@ -36122,7 +36806,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8414
@@ -36135,7 +36818,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8415
@@ -36148,7 +36830,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8416
@@ -36161,7 +36842,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8417
@@ -36174,7 +36854,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8418
@@ -36187,7 +36866,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8419
@@ -36200,7 +36878,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8420
@@ -36213,7 +36890,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8421
@@ -36226,7 +36902,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8422
@@ -36239,7 +36914,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8423
@@ -36252,7 +36926,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8424
@@ -36265,7 +36938,6 @@ Body:
Hit: Single
HitCount: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8425
@@ -36382,7 +37054,6 @@ Body:
Element: Water
SplashArea: 1
Duration1: -1
- FixedCastTime: -1
Requires:
SpCost: 80
- Id: 8434
@@ -36396,7 +37067,6 @@ Body:
HitCount: 1
Element: Wind
CastTime: 1000
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8435
@@ -36411,7 +37081,6 @@ Body:
Element: Wind
SplashArea: 1
CastTime: 1000
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8436
@@ -36439,7 +37108,6 @@ Body:
SplashArea: 1
CastTime: 1000
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 80
- Id: 8438
@@ -36466,7 +37134,6 @@ Body:
HitCount: 1
Element: Earth
Duration1: 5000
- FixedCastTime: -1
Requires:
SpCost: 40
- Id: 8440
@@ -36481,7 +37148,6 @@ Body:
Element: Earth
SplashArea: 1
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 60
- Id: 8441
@@ -36496,7 +37162,6 @@ Body:
Element: Earth
SplashArea: 1
Duration1: 15000
- FixedCastTime: -1
Requires:
SpCost: 1
- Id: 8442
@@ -36556,7 +37221,6 @@ Body:
IsGuild: true
SplashArea: 2
Duration1: 300000
- FixedCastTime: -1
Unit:
Id: Gd_Leadership
Layout: 2
@@ -36572,7 +37236,6 @@ Body:
IsGuild: true
SplashArea: 2
Duration1: 300000
- FixedCastTime: -1
Unit:
Id: Gd_Glorywounds
Layout: 2
@@ -36588,7 +37251,6 @@ Body:
IsGuild: true
SplashArea: 2
Duration1: 300000
- FixedCastTime: -1
Unit:
Id: Gd_Soulcold
Layout: 2
@@ -36604,7 +37266,6 @@ Body:
IsGuild: true
SplashArea: 2
Duration1: 300000
- FixedCastTime: -1
Unit:
Id: Gd_Hawkeyes
Layout: 2
@@ -36625,13 +37286,10 @@ Body:
SplashArea: 15
CastCancel: true
Duration1: 180000
- Duration2: 300000
- FixedCastTime: -1
+ Cooldown: 180000
CastTimeFlags:
IgnoreDex: true
IgnoreStatus: true
- Requires:
- SpCost: 1
- Id: 10011
Name: GD_REGENERATION
Description: Regeneration
@@ -36645,13 +37303,10 @@ Body:
SplashArea: 15
CastCancel: true
Duration1: 60000
- Duration2: 300000
- FixedCastTime: -1
+ Cooldown: 180000
CastTimeFlags:
IgnoreDex: true
IgnoreStatus: true
- Requires:
- SpCost: 1
- Id: 10012
Name: GD_RESTORE
Description: Restoration
@@ -36664,13 +37319,11 @@ Body:
IsGuild: true
SplashArea: 15
CastCancel: true
- Duration2: 300000
- FixedCastTime: 10000
+ Cooldown: 180000
+ FixedCastTime: 1000
CastTimeFlags:
IgnoreStatus: true
IgnoreItemBonus: true
- Requires:
- SpCost: 1
- Id: 10013
Name: GD_EMERGENCYCALL
Description: Urgent Call
@@ -36683,14 +37336,12 @@ Body:
IsGuild: true
IgnoreKagehumi: true
CastCancel: true
- Duration2: 300000
+ Cooldown: 300000
FixedCastTime: 5000
CastTimeFlags:
IgnoreDex: true
IgnoreStatus: true
IgnoreItemBonus: true
- Requires:
- SpCost: 1
- Id: 10014
Name: GD_DEVELOPMENT
Description: Permanent Development
@@ -36709,13 +37360,49 @@ Body:
IsGuild: true
IgnoreKagehumi: true
CastCancel: true
- Duration2: 300000
+ Cooldown: 300000
FixedCastTime: 5000
- Requires:
- SpCost: 1
- Id: 10016
Name: GD_GUILD_STORAGE
Description: Guild Storage Expansion
MaxLevel: 5
Flags:
IsGuild: true
+ - Id: 10017
+ Name: GD_CHARGESHOUT_FLAG
+ Description: Charge Shout Flag
+ MaxLevel: 1
+ TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Flags:
+ IsGuild: true
+ CastCancel: true
+ Duration1: 300000
+ Cooldown: 60000
+ FixedCastTime: 1000
+ - Id: 10018
+ Name: GD_CHARGESHOUT_BEATING
+ Description: Charge Shout Beating
+ MaxLevel: 1
+ TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Flags:
+ IsGuild: true
+ CastCancel: true
+ Cooldown: 60000
+ FixedCastTime: 1000
+ - Id: 10019
+ Name: GD_EMERGENCY_MOVE
+ Description: Emergency Move
+ MaxLevel: 1
+ TargetType: Self
+ DamageFlags:
+ NoDamage: true
+ Splash: true
+ Flags:
+ IsGuild: true
+ SplashArea: 15
+ Duration1: 10000
+ Cooldown: 600000
diff --git a/db/re/skill_nocast_db.txt b/db/re/skill_nocast_db.txt
index 43a1de57e1..2816166058 100644
--- a/db/re/skill_nocast_db.txt
+++ b/db/re/skill_nocast_db.txt
@@ -33,7 +33,11 @@
328,1 //DC_DONTFORGETME
2422,1 //WM_LULLABY_DEEPSLEEP
2423,1 //WM_SIRCLEOFNATURE
+2425,1 //WM_GLOOMYDAY
+2429,1 //WM_SOUND_OF_DESTRUCTION
2430,1 //WM_SATURDAY_NIGHT_FEVER
+2432,1 //WM_MELODYOFSINK
+2433,1 //WM_BEYOND_OF_WARCRY
2455,1 //SO_ARRULLO
2299,1 //SC_MANHOLE
@@ -59,9 +63,9 @@
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
//----------------------------------------------------------------------------
// Battlegrounds
@@ -78,7 +82,6 @@
395,8 //CG_MOONLIT
409,8 //WE_CALLPARENT
410,8 //WE_CALLBABY
-491,8 //CR_CULTIVATION
411,8 //TK_RUN
426,8 //TK_HIGHJUMP
427,8 //SG_FEEL
@@ -95,11 +98,13 @@
438,8 //SG_SUN_BLESS
439,8 //SG_MOON_BLESS
440,8 //SG_STAR_BLESS
+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
+462,8 //SL_KAIZEL
//----------------------------------------------------------------------------
// Mixed
@@ -129,13 +134,12 @@
409,16 // WE_CALLPARENT
410,16 // WE_CALLBABY
426,16 // TK_HIGHJUMP
-491,16 // CR_CULTIVATION
+491,16 //CR_CULTIVATION
529,16 // NJ_SHADOWJUMP
// 530,16 // NJ_KIRIKAGE
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
@@ -160,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
@@ -176,7 +179,6 @@
//----------------------------------------------------------------------------
219,128 //RG_INTIMIDATE
26,128 //AL_TELEPORT
-2284,128 //SC_FATALMENACE
2300,128 //SC_DIMENSIONDOOR
//----------------------------------------------------------------------------
@@ -184,6 +186,8 @@
//----------------------------------------------------------------------------
426,256 //TK_HIGHJUMP
290,256 //SA_ABRACADABRA
+5023,256 //SU_LOPE
+462,256 //SL_KAIZEL
//----------------------------------------------------------------------------
// Zone 5 - Sealed Shrine
@@ -193,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
@@ -205,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/skill_tree.txt b/db/re/skill_tree.txt
index 775d3aafb7..d9fc3ac0f4 100644
--- a/db/re/skill_tree.txt
+++ b/db/re/skill_tree.txt
@@ -1266,7 +1266,7 @@
4019,478,10,231,5,0,0,0,0,0,0,0,0 //CR_SLIMPITCHER#Aid Condensed Potion#
4019,479,5,234,5,235,5,236,5,237,5,0,0 //CR_FULLPROTECTION#Full Protection#
4019,490,10,229,5,230,5,0,0,0,0,0,0 //CR_ACIDDEMONSTRATION#Acid Demonstration#
-4019,491,2,0,0,0,0,0,0,0,0,0,0 //CR_CULTIVATION#Cultivation#
+//4019,491,2,0,0,0,0,0,0,0,0,0,0 //CR_CULTIVATION#Cultivation#
4019,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
4019,446,1,0,0,0,0,0,0,0,0,0,0 //AM_BERSERKPITCHER#Berserk Pitcher#
4019,496,1,228,10,0,0,0,0,0,0,0,0 //AM_TWILIGHT1#Twilight Alchemy 1#
@@ -2492,10 +2492,10 @@
4055,2214,5,2223,1,0,0,0,0,0,0,0,0 //WL_CHAINLIGHTNING#Chain Lightning#
4055,2216,5,2207,2,0,0,0,0,0,0,0,0 //WL_EARTHSTRAIN#Earth Strain#
4055,2217,10,2204,5,2212,5,2214,5,2216,5,0,0 //WL_TETRAVORTEX#Tetra Vortex#
-4055,2222,5,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
-4055,2223,5,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
-4055,2224,5,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
-4055,2229,5,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
+4055,2222,2,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
+4055,2223,2,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
+4055,2224,2,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
+4055,2229,2,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
4055,2230,2,0,0,0,0,0,0,0,0,0,0 //WL_RELEASE#Release#
4055,2231,1,0,0,0,0,0,0,0,0,0,0 //WL_READING_SB#Reading Spellbook#
4055,2232,10,0,0,0,0,0,0,0,0,0,0 //WL_FREEZE_SP#Freeze Spell#
@@ -2604,6 +2604,7 @@
4057,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4057,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4057,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4057,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4057,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4057,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4057,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -2832,10 +2833,10 @@
4061,2214,5,2223,1,0,0,0,0,0,0,0,0 //WL_CHAINLIGHTNING#Chain Lightning#
4061,2216,5,2207,2,0,0,0,0,0,0,0,0 //WL_EARTHSTRAIN#Earth Strain#
4061,2217,10,2204,5,2212,5,2214,5,2216,5,0,0 //WL_TETRAVORTEX#Tetra Vortex#
-4061,2222,5,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
-4061,2223,5,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
-4061,2224,5,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
-4061,2229,5,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
+4061,2222,2,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
+4061,2223,2,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
+4061,2224,2,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
+4061,2229,2,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
4061,2230,2,0,0,0,0,0,0,0,0,0,0 //WL_RELEASE#Release#
4061,2231,1,0,0,0,0,0,0,0,0,0,0 //WL_READING_SB#Reading Spellbook#
4061,2232,10,0,0,0,0,0,0,0,0,0,0 //WL_FREEZE_SP#Freeze Spell#
@@ -2952,6 +2953,7 @@
4063,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4063,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4063,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4063,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4063,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4063,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4063,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -3248,9 +3250,9 @@
4068,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4068,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4068,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4068,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4068,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4068,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4068,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4068,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4068,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4068,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4068,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3304,9 +3306,9 @@
4069,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4069,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4069,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4069,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4069,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4069,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4069,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4069,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4069,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4069,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4069,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3434,10 +3436,10 @@
4071,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4071,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4071,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4071,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4071,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4071,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4071,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4071,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4071,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4071,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4071,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4071,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
@@ -3679,9 +3681,9 @@
4075,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4075,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4075,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4075,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4075,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4075,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4075,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4075,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4075,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4075,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4075,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3742,9 +3744,9 @@
4076,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4076,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4076,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4076,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4076,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4076,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4076,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4076,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4076,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4076,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4076,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -3860,7 +3862,7 @@
4078,478,10,231,5,0,0,0,0,0,0,0,0 //CR_SLIMPITCHER#Aid Condensed Potion#
4078,479,5,234,5,235,5,236,5,237,5,0,0 //CR_FULLPROTECTION#Full Protection#
4078,490,10,229,5,230,5,0,0,0,0,0,0 //CR_ACIDDEMONSTRATION#Acid Demonstration#
-4078,491,2,0,0,0,0,0,0,0,0,0,0 //CR_CULTIVATION#Cultivation#
+//4078,491,2,0,0,0,0,0,0,0,0,0,0 //CR_CULTIVATION#Cultivation#
4078,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
4078,446,1,0,0,0,0,0,0,0,0,0,0 //AM_BERSERKPITCHER#Berserk Pitcher#
4078,496,1,228,10,0,0,0,0,0,0,0,0 //AM_TWILIGHT1#Twilight Alchemy 1#
@@ -3880,10 +3882,10 @@
4078,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4078,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4078,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4078,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4078,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4078,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4078,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4078,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4078,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4078,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4078,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4078,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
@@ -4498,10 +4500,10 @@
4097,2214,5,2223,1,0,0,0,0,0,0,0,0 //WL_CHAINLIGHTNING#Chain Lightning#
4097,2216,5,2207,2,0,0,0,0,0,0,0,0 //WL_EARTHSTRAIN#Earth Strain#
4097,2217,10,2204,5,2212,5,2214,5,2216,5,0,0 //WL_TETRAVORTEX#Tetra Vortex#
-4097,2222,5,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
-4097,2223,5,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
-4097,2224,5,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
-4097,2229,5,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
+4097,2222,2,83,1,0,0,0,0,0,0,0,0 //WL_SUMMONFB#Summon Fire Ball#
+4097,2223,2,85,1,0,0,0,0,0,0,0,0 //WL_SUMMONBL#Summon Lightning Ball#
+4097,2224,2,89,1,0,0,0,0,0,0,0,0 //WL_SUMMONWB#Summon Water Ball#
+4097,2229,2,91,1,0,0,0,0,0,0,0,0 //WL_SUMMONSTONE#Summon Stone#
4097,2230,2,0,0,0,0,0,0,0,0,0,0 //WL_RELEASE#Release#
4097,2231,1,0,0,0,0,0,0,0,0,0,0 //WL_READING_SB#Reading Spellbook#
4097,2232,10,0,0,0,0,0,0,0,0,0,0 //WL_FREEZE_SP#Freeze Spell#
@@ -4614,6 +4616,7 @@
4099,2046,10,2045,5,0,0,0,0,0,0,0,0 //AB_ORATIO#Oratio#
4099,2047,4,72,1,0,0,0,0,0,0,0,0 //AB_LAUDAAGNUS#Lauda Agnus#
4099,2048,4,2047,2,0,0,0,0,0,0,0,0 //AB_LAUDARAMUS#Lauda Ramus#
+//4099,2049,10,2044,1,2053,1,0,0,0,0,0,0 //AB_EUCHARISTICA#Eucharistica#
4099,2050,4,2043,3,0,0,0,0,0,0,0,0 //AB_RENOVATIO#Renovatio#
4099,2051,5,2050,1,0,0,0,0,0,0,0,0 //AB_HIGHNESSHEAL#Highness Heal#
4099,2052,5,2048,2,0,0,0,0,0,0,0,0 //AB_CLEARANCE#Clearance#
@@ -4910,9 +4913,9 @@
4104,2382,5,2422,1,0,0,0,0,0,0,0,0 //MI_ECHOSONG#Echo Song#
4104,2383,5,2422,1,0,0,0,0,0,0,0,0 //MI_HARMONIZE#Harmonize#
4104,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4104,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4104,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4104,2414,5,317,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4104,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4104,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4104,2418,5,316,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4104,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4104,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -4968,9 +4971,9 @@
4105,2351,5,2422,1,0,0,0,0,0,0,0,0 //WA_SYMPHONY_OF_LOVER#Symphony of Lovers#
4105,2352,5,2422,1,0,0,0,0,0,0,0,0 //WA_MOONLIT_SERENADE#Moonlit Serenade#
4105,2412,10,0,0,0,0,0,0,0,0,0,0 //WM_LESSON#Lesson#
-4105,2413,10,2417,1,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
+4105,2413,10,2414,5,0,0,0,0,0,0,0,0 //WM_METALICSOUND#Metallic Sound#
4105,2414,5,325,5,0,0,0,0,0,0,0,0 //WM_REVERBERATION#Reverberation#
-4105,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
+//4105,2417,1,2414,1,0,0,0,0,0,0,0,0 //WM_DOMINION_IMPULSE#Dominion Impulse#
4105,2418,5,324,5,0,0,0,0,0,0,0,0 //WM_SEVERE_RAINSTORM#Severe Rainstorm#
4105,2419,5,2412,1,0,0,0,0,0,0,0,0 //WM_POEMOFNETHERWORLD#Poem Of The Netherworld#
4105,2420,5,2419,3,0,0,0,0,0,0,0,0 //WM_VOICEOFSIREN#Voice Of Siren#
@@ -5102,10 +5105,10 @@
4107,2486,5,2485,3,0,0,0,0,0,0,0,0 //GN_FIRE_EXPANSION#Fire Expansion#
4107,2490,5,2480,3,0,0,0,0,0,0,0,0 //GN_HELLS_PLANT#Hell's Plant#
4107,2492,5,2490,3,0,0,0,0,0,0,0,0 //GN_MANDRAGORA#Howling of Mandragora#
-4107,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
+//4107,2493,1,2494,1,0,0,0,0,0,0,0,0 //GN_SLINGITEM#Sling Item#
4107,2494,1,0,0,0,0,0,0,0,0,0,0 //GN_CHANGEMATERIAL#Change Material#
4107,2495,2,2497,1,0,0,0,0,0,0,0,0 //GN_MIX_COOKING#Mix Cooking#
-4107,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
+//4107,2496,2,2495,1,0,0,0,0,0,0,0,0 //GN_MAKEBOMB#Create Bomb#
4107,2497,10,0,0,0,0,0,0,0,0,0,0 //GN_S_PHARMACY#Special Pharmacy#
4107,5003,5,2497,1,0,0,0,0,0,0,0,0 //GN_ILLUSIONDOOPING#Hallucination Drug#
4107,5014,5,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE#Full Throttle#
@@ -5452,34 +5455,54 @@
4190,53,1,52,3,0,0,0,0,0,0,0,0 //TF_DETOXIFY#Detoxify#
4190,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
4190,66,5,0,0,0,0,0,0,0,0,0,0 //PR_IMPOSITIO#Impositio Manus#
+4190,68,5,31,1,66,3,0,0,0,0,0,0 //PR_ASPERSIO#Aspersio#
4190,70,10,28,1,0,0,0,0,0,0,0,0 //PR_SANCTUARY#Sanctuary#
4190,72,1,0,0,0,0,0,0,0,0,0,0 //PR_STRECOVERY#Status Recovery#
+4190,74,5,0,0,0,0,0,0,0,0,0,0 //PR_MAGNIFICAT#Magnificat#
4190,75,5,70,7,0,0,0,0,0,0,0,0 //PR_GLORIA#Gloria#
4190,80,10,18,1,0,0,0,0,0,0,0,0 //WZ_FIREPILLAR#Fire Pillar#
4190,81,10,20,1,10,1,0,0,0,0,0,0 //WZ_SIGHTRASHER#Sightrasher#
+4190,83,10,81,2,21,1,0,0,0,0,0,0 //WZ_METEOR#Meteor Storm#
4190,84,10,11,1,20,1,0,0,0,0,0,0 //WZ_JUPITEL#Jupiter Thunder#
+4190,85,10,21,1,84,5,0,0,0,0,0,0 //WZ_VERMILION#Lord of Vermilion#
4190,86,5,14,1,20,1,0,0,0,0,0,0 //WZ_WATERBALL#Water Ball#
4190,87,10,16,1,15,1,0,0,0,0,0,0 //WZ_ICEWALL#Ice Wall#
4190,88,10,87,1,0,0,0,0,0,0,0,0 //WZ_FROSTNOVA#Frost Nova#
+4190,89,10,15,1,84,3,0,0,0,0,0,0 //WZ_STORMGUST#Storm Gust#
4190,90,5,16,1,0,0,0,0,0,0,0,0 //WZ_EARTHSPIKE#Earth Spike#
4190,91,5,90,3,0,0,0,0,0,0,0,0 //WZ_HEAVENDRIVE#Heaven's Drive#
4190,92,5,91,1,0,0,0,0,0,0,0,0 //WZ_QUAGMIRE#Quagmire#
4190,93,1,0,0,0,0,0,0,0,0,0,0 //WZ_ESTIMATION#Sense#
4190,105,1,0,0,0,0,0,0,0,0,0,0 //BS_HILTBINDING#Hilt Binding#
4190,107,10,105,1,0,0,0,0,0,0,0,0 //BS_WEAPONRESEARCH#Weaponry Research#
+4190,108,1,107,1,0,0,0,0,0,0,0,0 //BS_REPAIRWEAPON#Weapon Repair#
4190,115,5,0,0,0,0,0,0,0,0,0,0 //HT_SKIDTRAP#Skid Trap#
-4190,119,5,120,1,0,0,0,0,0,0,0,0 //HT_SANDMAN#Sandman#
-4190,120,5,115,1,0,0,0,0,0,0,0,0 //HT_FLASHER#Flasher#
-4190,121,5,120,1,0,0,0,0,0,0,0,0 //HT_FREEZINGTRAP#Freezing Trap#
+4190,116,5,0,0,0,0,0,0,0,0,0,0 //HT_LANDMINE#Land Mine#
+4190,126,10,0,0,0,0,0,0,0,0,0,0 //HT_BEASTBANE#Beast Bane#
4190,138,10,52,1,0,0,0,0,0,0,0,0 //AS_ENCHANTPOISON#Enchant Poison#
+4190,139,10,138,3,0,0,0,0,0,0,0,0 //AS_POISONREACT#Poison React#
+4190,140,10,138,5,0,0,0,0,0,0,0,0 //AS_VENOMDUST#Venom Dust#
+4190,141,10,139,5,140,5,0,0,0,0,0,0 //AS_SPLASHER#Venom Splasher#
+4190,210,10,50,1,0,0,0,0,0,0,0,0 //RG_SNATCHER#Gank#
+4190,211,10,210,4,0,0,0,0,0,0,0,0 //RG_STEALCOIN#Mug#
+4190,212,10,211,4,0,0,0,0,0,0,0,0 //RG_BACKSTAP#Back Stab#
4190,213,5,51,1,0,0,0,0,0,0,0,0 //RG_TUNNELDRIVE#Stalk#
+4190,214,5,212,2,213,2,0,0,0,0,0,0 //RG_RAID#Sightless Raid#
4190,226,10,0,0,0,0,0,0,0,0,0,0 //AM_AXEMASTERY#Axe Mastery#
4190,248,10,0,0,0,0,0,0,0,0,0,0 //CR_TRUST#Faith#
+4190,249,10,0,0,0,0,0,0,0,0,0,0 //CR_AUTOGUARD#Guard#
+4190,250,5,249,5,0,0,0,0,0,0,0,0 //CR_SHIELDCHARGE#Smite#
+4190,251,5,250,3,0,0,0,0,0,0,0,0 //CR_SHIELDBOOMERANG#Shield Boomerang#
4190,253,10,248,7,0,0,0,0,0,0,0,0 //CR_HOLYCROSS#Holy Cross#
4190,259,10,23,10,22,10,0,0,0,0,0,0 //MO_IRONHAND#Iron Fists#
4190,261,5,259,2,0,0,0,0,0,0,0,0 //MO_CALLSPIRITS#Summon Spirit Sphere#
4190,262,1,261,5,0,0,0,0,0,0,0,0 //MO_ABSORBSPIRITS#Absorb Spirit Sphere#
+4190,270,5,262,1,0,0,0,0,0,0,0,0 //MO_EXPLOSIONSPIRITS#Fury#
4190,365,1,9,1,0,0,0,0,0,0,0,0 //HW_MAGICCRASHER#Stave Crasher#
+4190,401,1,261,5,262,1,270,5,0,0,0,0 //CH_SOULCOLLECT#Hyper Spirit Sphere#
+4190,5075,5,0,0,0,0,0,0,0,0,0,0 //NV_BREAKTHROUGH#Break Through#
+4190,5076,1,0,0,0,0,0,0,0,0,0,0 //NV_HELPANGEL#Help Angel#
+4190,5077,5,0,0,0,0,0,0,0,0,0,0 //NV_TRANSCENDENCE#Transcendence#
4190,2535,1,41,1,0,0,0,0,0,0,0,0 //ALL_BUYING_STORE#Open Buying Store#
4190,2544,1,0,0,0,0,0,0,0,0,0,0 //MC_CARTDECORATE#Cart Decorate#
//Super Baby (Expanded)
@@ -5537,34 +5560,54 @@
4191,408,1,0,0,0,0,0,0,0,0,0,0 //WE_BABY#Baby#
4191,409,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLPARENT#Call Parent#
4191,66,5,0,0,0,0,0,0,0,0,0,0 //PR_IMPOSITIO#Impositio Manus#
+4191,68,5,31,1,66,3,0,0,0,0,0,0 //PR_ASPERSIO#Aspersio#
4191,70,10,28,1,0,0,0,0,0,0,0,0 //PR_SANCTUARY#Sanctuary#
4191,72,1,0,0,0,0,0,0,0,0,0,0 //PR_STRECOVERY#Status Recovery#
+4191,74,5,0,0,0,0,0,0,0,0,0,0 //PR_MAGNIFICAT#Magnificat#
4191,75,5,70,7,0,0,0,0,0,0,0,0 //PR_GLORIA#Gloria#
4191,80,10,18,1,0,0,0,0,0,0,0,0 //WZ_FIREPILLAR#Fire Pillar#
4191,81,10,20,1,10,1,0,0,0,0,0,0 //WZ_SIGHTRASHER#Sightrasher#
+4191,83,10,81,2,21,1,0,0,0,0,0,0 //WZ_METEOR#Meteor Storm#
4191,84,10,11,1,20,1,0,0,0,0,0,0 //WZ_JUPITEL#Jupiter Thunder#
+4191,85,10,21,1,84,5,0,0,0,0,0,0 //WZ_VERMILION#Lord of Vermilion#
4191,86,5,14,1,20,1,0,0,0,0,0,0 //WZ_WATERBALL#Water Ball#
4191,87,10,16,1,15,1,0,0,0,0,0,0 //WZ_ICEWALL#Ice Wall#
4191,88,10,87,1,0,0,0,0,0,0,0,0 //WZ_FROSTNOVA#Frost Nova#
+4191,89,10,15,1,84,3,0,0,0,0,0,0 //WZ_STORMGUST#Storm Gust#
4191,90,5,16,1,0,0,0,0,0,0,0,0 //WZ_EARTHSPIKE#Earth Spike#
4191,91,5,90,3,0,0,0,0,0,0,0,0 //WZ_HEAVENDRIVE#Heaven's Drive#
4191,92,5,91,1,0,0,0,0,0,0,0,0 //WZ_QUAGMIRE#Quagmire#
4191,93,1,0,0,0,0,0,0,0,0,0,0 //WZ_ESTIMATION#Sense#
4191,105,1,0,0,0,0,0,0,0,0,0,0 //BS_HILTBINDING#Hilt Binding#
4191,107,10,105,1,0,0,0,0,0,0,0,0 //BS_WEAPONRESEARCH#Weaponry Research#
+4191,108,1,107,1,0,0,0,0,0,0,0,0 //BS_REPAIRWEAPON#Weapon Repair#
4191,115,5,0,0,0,0,0,0,0,0,0,0 //HT_SKIDTRAP#Skid Trap#
-4191,119,5,120,1,0,0,0,0,0,0,0,0 //HT_SANDMAN#Sandman#
-4191,120,5,115,1,0,0,0,0,0,0,0,0 //HT_FLASHER#Flasher#
-4191,121,5,120,1,0,0,0,0,0,0,0,0 //HT_FREEZINGTRAP#Freezing Trap#
+4191,116,5,0,0,0,0,0,0,0,0,0,0 //HT_LANDMINE#Land Mine#
+4191,126,10,0,0,0,0,0,0,0,0,0,0 //HT_BEASTBANE#Beast Bane#
4191,138,10,52,1,0,0,0,0,0,0,0,0 //AS_ENCHANTPOISON#Enchant Poison#
+4191,139,10,138,3,0,0,0,0,0,0,0,0 //AS_POISONREACT#Poison React#
+4191,140,10,138,5,0,0,0,0,0,0,0,0 //AS_VENOMDUST#Venom Dust#
+4191,141,10,139,5,140,5,0,0,0,0,0,0 //AS_SPLASHER#Venom Splasher#
+4191,210,10,50,1,0,0,0,0,0,0,0,0 //RG_SNATCHER#Gank#
+4191,211,10,210,4,0,0,0,0,0,0,0,0 //RG_STEALCOIN#Mug#
+4191,212,10,211,4,0,0,0,0,0,0,0,0 //RG_BACKSTAP#Back Stab#
4191,213,5,51,1,0,0,0,0,0,0,0,0 //RG_TUNNELDRIVE#Stalk#
+4191,214,5,212,2,213,2,0,0,0,0,0,0 //RG_RAID#Sightless Raid#
4191,226,10,0,0,0,0,0,0,0,0,0,0 //AM_AXEMASTERY#Axe Mastery#
4191,248,10,0,0,0,0,0,0,0,0,0,0 //CR_TRUST#Faith#
+4191,249,10,0,0,0,0,0,0,0,0,0,0 //CR_AUTOGUARD#Guard#
+4191,250,5,249,5,0,0,0,0,0,0,0,0 //CR_SHIELDCHARGE#Smite#
+4191,251,5,250,3,0,0,0,0,0,0,0,0 //CR_SHIELDBOOMERANG#Shield Boomerang#
4191,253,10,248,7,0,0,0,0,0,0,0,0 //CR_HOLYCROSS#Holy Cross#
4191,259,10,23,10,22,10,0,0,0,0,0,0 //MO_IRONHAND#Iron Fists#
4191,261,5,259,2,0,0,0,0,0,0,0,0 //MO_CALLSPIRITS#Summon Spirit Sphere#
4191,262,1,261,5,0,0,0,0,0,0,0,0 //MO_ABSORBSPIRITS#Absorb Spirit Sphere#
+4191,270,5,262,1,0,0,0,0,0,0,0,0 //MO_EXPLOSIONSPIRITS#Fury#
4191,365,1,9,1,0,0,0,0,0,0,0,0 //HW_MAGICCRASHER#Stave Crasher#
+4191,401,1,261,5,262,1,270,5,0,0,0,0 //CH_SOULCOLLECT#Hyper Spirit Sphere#
+4191,5075,5,0,0,0,0,0,0,0,0,0,0 //NV_BREAKTHROUGH#Break Through#
+4191,5076,1,0,0,0,0,0,0,0,0,0,0 //NV_HELPANGEL#Help Angel#
+4191,5077,5,0,0,0,0,0,0,0,0,0,0 //NV_TRANSCENDENCE#Transcendence#
4191,2535,1,41,1,0,0,0,0,0,0,0,0 //ALL_BUYING_STORE#Open Buying Store#
4191,2544,1,0,0,0,0,0,0,0,0,0,0 //MC_CARTDECORATE#Cart Decorate#
4191,5065,1,0,0,0,0,0,0,0,0,0,0 //WE_CHEERUP#Cheer Up#
@@ -5598,12 +5641,12 @@
4211,3001,1,530,5,0,0,0,0,0,0,0,0 //KO_YAMIKUMO##
4211,3002,5,0,0,0,0,0,0,0,0,0,0 //KO_RIGHT##
4211,3003,5,0,0,0,0,0,0,0,0,0,0 //KO_LEFT##
-4211,3004,5,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
+4211,3004,10,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
4211,3005,5,3004,2,0,0,0,0,0,0,0,0 //KO_SETSUDAN##
4211,3006,5,524,5,0,0,0,0,0,0,0,0 //KO_BAKURETSU##
4211,3007,5,3006,1,0,0,0,0,0,0,0,0 //KO_HAPPOKUNAI##
4211,3008,10,3010,3,0,0,0,0,0,0,0,0 //KO_MUCHANAGE##
-4211,3009,5,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
+4211,3009,10,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
4211,3010,5,526,1,0,0,0,0,0,0,0,0 //KO_MAKIBISHI##
4211,3011,5,533,10,0,0,0,0,0,0,0,0 //KO_MEIKYOUSISUI##
4211,3012,5,531,1,0,0,0,0,0,0,0,0 //KO_ZANZOU##
@@ -5650,12 +5693,12 @@
4212,3001,1,530,5,0,0,0,0,0,0,0,0 //KO_YAMIKUMO##
4212,3002,5,0,0,0,0,0,0,0,0,0,0 //KO_RIGHT##
4212,3003,5,0,0,0,0,0,0,0,0,0,0 //KO_LEFT##
-4212,3004,5,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
+4212,3004,10,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
4212,3005,5,3004,2,0,0,0,0,0,0,0,0 //KO_SETSUDAN##
4212,3006,5,524,5,0,0,0,0,0,0,0,0 //KO_BAKURETSU##
4212,3007,5,3006,1,0,0,0,0,0,0,0,0 //KO_HAPPOKUNAI##
4212,3008,10,3010,3,0,0,0,0,0,0,0,0 //KO_MUCHANAGE##
-4212,3009,5,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
+4212,3009,10,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
4212,3010,5,526,1,0,0,0,0,0,0,0,0 //KO_MAKIBISHI##
4212,3011,5,533,10,0,0,0,0,0,0,0,0 //KO_MEIKYOUSISUI##
4212,3012,5,531,1,0,0,0,0,0,0,0,0 //KO_ZANZOU##
@@ -5700,24 +5743,24 @@
4215,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
4215,2552,1,500,5,0,0,0,0,0,0,0,0 //RL_RICHS_COIN#Rich's Coin#
4215,2553,5,514,1,0,0,0,0,0,0,0,0 //RL_MASS_SPIRAL#Mass Spiral#
-4215,2554,5,2557,1,0,0,0,0,0,0,0,0 //RL_BANISHING_BUSTER#Banishing Buster#
+4215,2554,10,2557,1,0,0,0,0,0,0,0,0 //RL_BANISHING_BUSTER#Banishing Buster#
4215,2555,5,2556,1,0,0,0,0,0,0,0,0 //RL_B_TRAP#Bind Trap#
4215,2556,1,500,1,0,0,0,0,0,0,0,0 //RL_FLICKER#Flicker#
4215,2557,5,513,1,518,1,0,0,0,0,0,0 //RL_S_STORM#Shatter Storm#
4215,2558,10,500,1,511,10,0,0,0,0,0,0 //RL_E_CHAIN#Eternal Chain#
4215,2559,1,511,1,0,0,0,0,0,0,0,0 //RL_QD_SHOT#Quick Draw Shot#
4215,2560,1,500,1,0,0,0,0,0,0,0,0 //RL_C_MARKER#Crimson Marker#
-4215,2561,5,516,1,0,0,0,0,0,0,0,0 //RL_FIREDANCE#Fire Dance#
+4215,2561,10,516,1,0,0,0,0,0,0,0,0 //RL_FIREDANCE#Fire Dance#
4215,2562,5,521,1,0,0,0,0,0,0,0,0 //RL_H_MINE#Howling Mine#
4215,2563,5,2552,1,0,0,0,0,0,0,0,0 //RL_P_ALTER#Platinum Alter#
4215,2564,1,516,10,0,0,0,0,0,0,0,0 //RL_FALLEN_ANGEL#Fallen Angel#
-4215,2565,5,2567,1,0,0,0,0,0,0,0,0 //RL_R_TRIP#Round Trip#
-4215,2566,5,2560,1,2562,3,0,0,0,0,0,0 //RL_D_TAIL#Dragon Tail#
+4215,2565,10,2567,1,0,0,0,0,0,0,0,0 //RL_R_TRIP#Round Trip#
+4215,2566,10,2560,1,2562,3,0,0,0,0,0,0 //RL_D_TAIL#Dragon Tail#
4215,2567,5,517,1,0,0,0,0,0,0,0,0 //RL_FIRE_RAIN#Fire Rain#
4215,2568,5,2552,1,0,0,0,0,0,0,0,0 //RL_HEAT_BARREL#Heat Barrel#
4215,2569,5,2553,1,0,0,0,0,0,0,0,0 //RL_AM_BLAST#Anti-Material Blast#
4215,2570,5,2554,3,0,0,0,0,0,0,0,0 //RL_SLUGSHOT#Slug Shot#
-4215,2571,5,2552,1,2569,3,0,0,0,0,0,0 //RL_HAMMER_OF_GOD#Hammer of God#
+4215,2571,10,2552,1,2569,3,0,0,0,0,0,0 //RL_HAMMER_OF_GOD#Hammer of God#
//Summoner
4218,5018,1,0,0,0,0,0,0,0,0,0,0 //SU_BASIC_SKILL##
4218,5019,1,5018,1,0,0,0,0,0,0,0,0 //SU_BITE##
@@ -5854,12 +5897,12 @@
4223,3001,1,530,5,0,0,0,0,0,0,0,0 //KO_YAMIKUMO##
4223,3002,5,0,0,0,0,0,0,0,0,0,0 //KO_RIGHT##
4223,3003,5,0,0,0,0,0,0,0,0,0,0 //KO_LEFT##
-4223,3004,5,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
+4223,3004,10,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
4223,3005,5,3004,2,0,0,0,0,0,0,0,0 //KO_SETSUDAN##
4223,3006,5,524,5,0,0,0,0,0,0,0,0 //KO_BAKURETSU##
4223,3007,5,3006,1,0,0,0,0,0,0,0,0 //KO_HAPPOKUNAI##
4223,3008,10,3010,3,0,0,0,0,0,0,0,0 //KO_MUCHANAGE##
-4223,3009,5,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
+4223,3009,10,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
4223,3010,5,526,1,0,0,0,0,0,0,0,0 //KO_MAKIBISHI##
4223,3011,5,533,10,0,0,0,0,0,0,0,0 //KO_MEIKYOUSISUI##
4223,3012,5,531,1,0,0,0,0,0,0,0,0 //KO_ZANZOU##
@@ -5908,12 +5951,12 @@
4224,3001,1,530,5,0,0,0,0,0,0,0,0 //KO_YAMIKUMO##
4224,3002,5,0,0,0,0,0,0,0,0,0,0 //KO_RIGHT##
4224,3003,5,0,0,0,0,0,0,0,0,0,0 //KO_LEFT##
-4224,3004,5,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
+4224,3004,10,3001,1,0,0,0,0,0,0,0,0 //KO_JYUMONJIKIRI##
4224,3005,5,3004,2,0,0,0,0,0,0,0,0 //KO_SETSUDAN##
4224,3006,5,524,5,0,0,0,0,0,0,0,0 //KO_BAKURETSU##
4224,3007,5,3006,1,0,0,0,0,0,0,0,0 //KO_HAPPOKUNAI##
4224,3008,10,3010,3,0,0,0,0,0,0,0,0 //KO_MUCHANAGE##
-4224,3009,5,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
+4224,3009,10,525,5,0,0,0,0,0,0,0,0 //KO_HUUMARANKA##
4224,3010,5,526,1,0,0,0,0,0,0,0,0 //KO_MAKIBISHI##
4224,3011,5,533,10,0,0,0,0,0,0,0,0 //KO_MEIKYOUSISUI##
4224,3012,5,531,1,0,0,0,0,0,0,0,0 //KO_ZANZOU##
@@ -6102,24 +6145,24 @@
4229,409,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLPARENT#Call Parent#
4229,2552,1,500,5,0,0,0,0,0,0,0,0 //RL_RICHS_COIN#Rich's Coin#
4229,2553,5,514,1,0,0,0,0,0,0,0,0 //RL_MASS_SPIRAL#Mass Spiral#
-4229,2554,5,2557,1,0,0,0,0,0,0,0,0 //RL_BANISHING_BUSTER#Banishing Buster#
+4229,2554,10,2557,1,0,0,0,0,0,0,0,0 //RL_BANISHING_BUSTER#Banishing Buster#
4229,2555,5,0,0,0,0,0,0,0,0,0,0 //RL_B_TRAP#Bind Trap#
4229,2556,1,501,1,0,0,0,0,0,0,0,0 //RL_FLICKER#Flicker#
4229,2557,5,513,1,518,1,0,0,0,0,0,0 //RL_S_STORM#Shatter Storm#
4229,2558,10,511,10,0,0,0,0,0,0,0,0 //RL_E_CHAIN#Eternal Chain#
4229,2559,1,2558,1,0,0,0,0,0,0,0,0 //RL_QD_SHOT#Quick Draw Shot#
4229,2560,1,506,1,0,0,0,0,0,0,0,0 //RL_C_MARKER#Crimson Marker#
-4229,2561,5,2564,1,0,0,0,0,0,0,0,0 //RL_FIREDANCE#Fire Dance#
+4229,2561,10,2564,1,0,0,0,0,0,0,0,0 //RL_FIREDANCE#Fire Dance#
4229,2562,5,520,1,0,0,0,0,0,0,0,0 //RL_H_MINE#Howling Mine#
4229,2563,5,0,0,0,0,0,0,0,0,0,0 //RL_P_ALTER#Platinum Alter#
4229,2564,5,516,10,0,0,0,0,0,0,0,0 //RL_FALLEN_ANGEL#Fallen Angel#
-4229,2565,5,2567,1,0,0,0,0,0,0,0,0 //RL_R_TRIP#Round Trip#
-4229,2566,5,2560,1,2562,3,0,0,0,0,0,0 //RL_D_TAIL#Dragon Tail#
+4229,2565,10,2567,1,0,0,0,0,0,0,0,0 //RL_R_TRIP#Round Trip#
+4229,2566,10,2560,1,2562,3,0,0,0,0,0,0 //RL_D_TAIL#Dragon Tail#
4229,2567,5,517,1,0,0,0,0,0,0,0,0 //RL_FIRE_RAIN#Fire Rain#
4229,2568,5,2561,2,0,0,0,0,0,0,0,0 //RL_HEAT_BARREL#Heat Barrel#
4229,2569,5,2553,1,0,0,0,0,0,0,0,0 //RL_AM_BLAST#Anti-Material Blast#
4229,2570,5,2554,3,0,0,0,0,0,0,0,0 //RL_SLUGSHOT#Slug Shot#
-4229,2571,5,2569,3,0,0,0,0,0,0,0,0 //RL_HAMMER_OF_GOD#Hammer of God#
+4229,2571,10,2569,3,0,0,0,0,0,0,0,0 //RL_HAMMER_OF_GOD#Hammer of God#
4229,5065,1,0,0,0,0,0,0,0,0,0,0 //WE_CHEERUP#Cheer Up#
//Baby Star Gladiator (Union)
4238,1,9,0,0,0,0,0,0,0,0,0,0 //NV_BASIC#Basic Skill#
@@ -6203,7 +6246,7 @@
4239,444,1,443,9,0,0,0,0,0,0,0,0 //SG_FUSION#Union of the Sun, Moon and Stars#
4239,2574,5,2576,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFMOON##
4239,2575,3,2588,1,0,0,0,0,0,0,0,0 //SJ_LUNARSTANCE##
-4239,2576,7,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
+4239,2576,10,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
4239,2577,5,2584,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSTAR##
4239,2578,3,2588,1,0,0,0,0,0,0,0,0 //SJ_STARSTANCE##
4239,2579,7,2575,1,0,0,0,0,0,0,0,0 //SJ_NEWMOONKICK##
@@ -6211,7 +6254,7 @@
4239,2581,5,2582,5,2583,3,0,0,0,0,0,0 //SJ_STAREMPEROR##
4239,2582,5,2583,1,0,0,0,0,0,0,0,0 //SJ_NOVAEXPLOSING##
4239,2583,3,2575,3,2578,3,2591,3,0,0,0,0 //SJ_UNIVERSESTANCE##
-4239,2584,7,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
+4239,2584,10,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
4239,2585,1,2583,1,0,0,0,0,0,0,0,0 //SJ_GRAVITYCONTROL##
4239,2586,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFDIMENSION##
4239,2587,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFCREATINGSTAR##
@@ -6219,7 +6262,7 @@
4239,2589,1,441,10,0,0,0,0,0,0,0,0 //SJ_PURIFY##
4239,2590,5,2592,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSUN##
4239,2591,3,2588,1,0,0,0,0,0,0,0,0 //SJ_SUNSTANCE##
-4239,2592,7,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
+4239,2592,10,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
4239,2593,7,2591,1,0,0,0,0,0,0,0,0 //SJ_PROMINENCEKICK##
4239,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
@@ -6274,13 +6317,13 @@
4240,2597,5,2605,5,0,0,0,0,0,0,0,0 //SP_SOULSHADOW##
4240,2598,5,2608,2,0,0,0,0,0,0,0,0 //SP_SOULFALCON##
4240,2599,5,2605,5,0,0,0,0,0,0,0,0 //SP_SOULFAIRY##
-4240,2600,5,2601,3,0,0,0,0,0,0,0,0 //SP_CURSEEXPLOSION##
+4240,2600,10,2601,3,0,0,0,0,0,0,0,0 //SP_CURSEEXPLOSION##
4240,2601,5,2607,3,0,0,0,0,0,0,0,0 //SP_SOULCURSE##
-4240,2602,5,2603,1,0,0,0,0,0,0,0,0 //SP_SPA##
+4240,2602,10,2603,1,0,0,0,0,0,0,0,0 //SP_SPA##
4240,2603,5,2607,3,0,0,0,0,0,0,0,0 //SP_SHA##
-4240,2604,7,2602,3,0,0,0,0,0,0,0,0 //SP_SWHOO##
+4240,2604,10,2602,3,0,0,0,0,0,0,0,0 //SP_SWHOO##
4240,2605,7,2611,3,0,0,0,0,0,0,0,0 //SP_SOULUNITY##
-4240,2606,5,2602,5,2603,5,0,0,0,0,0,0 //SP_SOULDIVISION##
+4240,2606,5,2602,10,2603,5,0,0,0,0,0,0 //SP_SOULDIVISION##
4240,2607,5,2609,1,0,0,0,0,0,0,0,0 //SP_SOULREAPER##
4240,2608,3,2611,3,2612,3,0,0,0,0,0,0 //SP_SOULREVOLVE##
4240,2609,5,0,0,0,0,0,0,0,0,0,0 //SP_SOULCOLLECT##
@@ -6329,7 +6372,7 @@
4241,444,1,443,9,0,0,0,0,0,0,0,0 //SG_FUSION#Union of the Sun, Moon and Stars#
4241,2574,5,2576,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFMOON##
4241,2575,3,2588,1,0,0,0,0,0,0,0,0 //SJ_LUNARSTANCE##
-4241,2576,7,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
+4241,2576,10,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
4241,2577,5,2584,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSTAR##
4241,2578,3,2588,1,0,0,0,0,0,0,0,0 //SJ_STARSTANCE##
4241,2579,7,2575,1,0,0,0,0,0,0,0,0 //SJ_NEWMOONKICK##
@@ -6337,7 +6380,7 @@
4241,2581,5,2582,5,2583,3,0,0,0,0,0,0 //SJ_STAREMPEROR##
4241,2582,5,2583,1,0,0,0,0,0,0,0,0 //SJ_NOVAEXPLOSING##
4241,2583,3,2575,3,2578,3,2591,3,0,0,0,0 //SJ_UNIVERSESTANCE##
-4241,2584,7,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
+4241,2584,10,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
4241,2585,1,2583,1,0,0,0,0,0,0,0,0 //SJ_GRAVITYCONTROL##
4241,2586,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFDIMENSION##
4241,2587,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFCREATINGSTAR##
@@ -6345,7 +6388,7 @@
4241,2589,1,441,10,0,0,0,0,0,0,0,0 //SJ_PURIFY##
4241,2590,5,2592,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSUN##
4241,2591,3,2588,1,0,0,0,0,0,0,0,0 //SJ_SUNSTANCE##
-4241,2592,7,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
+4241,2592,10,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
4241,2593,7,2591,1,0,0,0,0,0,0,0,0 //SJ_PROMINENCEKICK##
4241,408,1,0,0,0,0,0,0,0,0,0,0 //WE_BABY#Baby#
4241,409,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLPARENT#Call Parent#
@@ -6402,13 +6445,13 @@
4242,2597,5,2605,5,0,0,0,0,0,0,0,0 //SP_SOULSHADOW##
4242,2598,5,2608,2,0,0,0,0,0,0,0,0 //SP_SOULFALCON##
4242,2599,5,2605,5,0,0,0,0,0,0,0,0 //SP_SOULFAIRY##
-4242,2600,5,2601,3,0,0,0,0,0,0,0,0 //SP_CURSEEXPLOSION##
+4242,2600,10,2601,3,0,0,0,0,0,0,0,0 //SP_CURSEEXPLOSION##
4242,2601,5,2607,3,0,0,0,0,0,0,0,0 //SP_SOULCURSE##
-4242,2602,5,2603,1,0,0,0,0,0,0,0,0 //SP_SPA##
+4242,2602,10,2603,1,0,0,0,0,0,0,0,0 //SP_SPA##
4242,2603,5,2607,3,0,0,0,0,0,0,0,0 //SP_SHA##
-4242,2604,7,2602,3,0,0,0,0,0,0,0,0 //SP_SWHOO##
+4242,2604,10,2602,3,0,0,0,0,0,0,0,0 //SP_SWHOO##
4242,2605,7,2611,3,0,0,0,0,0,0,0,0 //SP_SOULUNITY##
-4242,2606,5,2602,5,2603,5,0,0,0,0,0,0 //SP_SOULDIVISION##
+4242,2606,5,2602,10,2603,5,0,0,0,0,0,0 //SP_SOULDIVISION##
4242,2607,5,2609,1,0,0,0,0,0,0,0,0 //SP_SOULREAPER##
4242,2608,3,2611,3,2612,3,0,0,0,0,0,0 //SP_SOULREVOLVE##
4242,2609,5,0,0,0,0,0,0,0,0,0,0 //SP_SOULCOLLECT##
@@ -6459,7 +6502,7 @@
4243,444,1,443,9,0,0,0,0,0,0,0,0 //SG_FUSION#Union of the Sun, Moon and Stars#
4243,2574,5,2576,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFMOON##
4243,2575,3,2588,1,0,0,0,0,0,0,0,0 //SJ_LUNARSTANCE##
-4243,2576,7,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
+4243,2576,10,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
4243,2577,5,2584,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSTAR##
4243,2578,3,2588,1,0,0,0,0,0,0,0,0 //SJ_STARSTANCE##
4243,2579,7,2575,1,0,0,0,0,0,0,0,0 //SJ_NEWMOONKICK##
@@ -6467,7 +6510,7 @@
4243,2581,5,2582,5,2583,3,0,0,0,0,0,0 //SJ_STAREMPEROR##
4243,2582,5,2583,1,0,0,0,0,0,0,0,0 //SJ_NOVAEXPLOSING##
4243,2583,3,2575,3,2578,3,2591,3,0,0,0,0 //SJ_UNIVERSESTANCE##
-4243,2584,7,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
+4243,2584,10,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
4243,2585,1,2583,1,0,0,0,0,0,0,0,0 //SJ_GRAVITYCONTROL##
4243,2586,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFDIMENSION##
4243,2587,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFCREATINGSTAR##
@@ -6475,7 +6518,7 @@
4243,2589,1,441,10,0,0,0,0,0,0,0,0 //SJ_PURIFY##
4243,2590,5,2592,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSUN##
4243,2591,3,2588,1,0,0,0,0,0,0,0,0 //SJ_SUNSTANCE##
-4243,2592,7,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
+4243,2592,10,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
4243,2593,7,2591,1,0,0,0,0,0,0,0,0 //SJ_PROMINENCEKICK##
4243,410,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLBABY#Call Baby#
@@ -6519,7 +6562,7 @@
4244,444,1,443,9,0,0,0,0,0,0,0,0 //SG_FUSION#Union of the Sun, Moon and Stars#
4244,2574,5,2576,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFMOON##
4244,2575,3,2588,1,0,0,0,0,0,0,0,0 //SJ_LUNARSTANCE##
-4244,2576,7,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
+4244,2576,10,2579,7,0,0,0,0,0,0,0,0 //SJ_FULLMOONKICK##
4244,2577,5,2584,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSTAR##
4244,2578,3,2588,1,0,0,0,0,0,0,0,0 //SJ_STARSTANCE##
4244,2579,7,2575,1,0,0,0,0,0,0,0,0 //SJ_NEWMOONKICK##
@@ -6527,7 +6570,7 @@
4244,2581,5,2582,5,2583,3,0,0,0,0,0,0 //SJ_STAREMPEROR##
4244,2582,5,2583,1,0,0,0,0,0,0,0,0 //SJ_NOVAEXPLOSING##
4244,2583,3,2575,3,2578,3,2591,3,0,0,0,0 //SJ_UNIVERSESTANCE##
-4244,2584,7,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
+4244,2584,10,2580,7,0,0,0,0,0,0,0,0 //SJ_FALLINGSTAR##
4244,2585,1,2583,1,0,0,0,0,0,0,0,0 //SJ_GRAVITYCONTROL##
4244,2586,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFDIMENSION##
4244,2587,5,2581,3,2588,3,0,0,0,0,0,0 //SJ_BOOKOFCREATINGSTAR##
@@ -6535,7 +6578,7 @@
4244,2589,1,441,10,0,0,0,0,0,0,0,0 //SJ_PURIFY##
4244,2590,5,2592,3,0,0,0,0,0,0,0,0 //SJ_LIGHTOFSUN##
4244,2591,3,2588,1,0,0,0,0,0,0,0,0 //SJ_SUNSTANCE##
-4244,2592,7,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
+4244,2592,10,2593,7,0,0,0,0,0,0,0,0 //SJ_SOLARBURST##
4244,2593,7,2591,1,0,0,0,0,0,0,0,0 //SJ_PROMINENCEKICK##
4244,408,1,0,0,0,0,0,0,0,0,0,0 //WE_BABY#Baby#
4244,409,1,0,0,0,0,0,0,0,0,0,0 //WE_CALLPARENT#Call Parent#
diff --git a/db/re/spellbook_db.yml b/db/re/spellbook_db.yml
index a366226a26..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
@@ -32,54 +32,33 @@ Header:
Version: 1
Body:
- - Skill: MG_COLDBOLT
- Book: Magic_Book_CB
- PreservePoints: 7
- - Skill: MG_FIREBOLT
- Book: Magic_Book_FB
- PreservePoints: 7
- - Skill: MG_LIGHTNINGBOLT
- Book: Magic_Book_LB
- PreservePoints: 7
- - Skill: MG_THUNDERSTORM
- Book: Magic_Book_TS
- PreservePoints: 9
- Skill: WZ_METEOR
- Book: Magic_Book_MS
+ Book: WL_MB_MS
PreservePoints: 10
- - Skill: WZ_JUPITEL
- Book: Magic_Book_JT
- PreservePoints: 9
- Skill: WZ_VERMILION
- Book: Magic_Book_LOV
+ Book: WL_MB_LOV
PreservePoints: 10
- - Skill: WZ_WATERBALL
- Book: Magic_Book_WB
- PreservePoints: 9
- Skill: WZ_STORMGUST
- Book: Magic_Book_SG
+ Book: WL_MB_SG
+ PreservePoints: 10
+ - Skill: WL_JACKFROST
+ Book: WL_MB_JF
PreservePoints: 10
- - Skill: WZ_EARTHSPIKE
- Book: Magic_Book_ES
- PreservePoints: 8
- - Skill: WZ_HEAVENDRIVE
- Book: Magic_Book_HD
- PreservePoints: 9
- Skill: WL_DRAINLIFE
- Book: Magic_Book_DL
+ Book: WL_MB_DL
PreservePoints: 8
- Skill: WL_CRIMSONROCK
- Book: Magic_Book_CR
+ Book: WL_MB_CR
PreservePoints: 12
- Skill: WL_COMET
- Book: Magic_Book_CM
+ Book: WL_MB_CM
PreservePoints: 22
- Skill: WL_CHAINLIGHTNING
- Book: Magic_Book_CL
+ Book: WL_MB_CL
PreservePoints: 12
- Skill: WL_EARTHSTRAIN
- Book: Magic_Book_ES_
+ Book: WL_MB_ES
PreservePoints: 12
- Skill: WL_TETRAVORTEX
- Book: Magic_Book_TV
+ Book: WL_MB_TV
PreservePoints: 22
diff --git a/db/readme.md b/db/readme.md
index eeddb1faed..7b36e08416 100644
--- a/db/readme.md
+++ b/db/readme.md
@@ -18,30 +18,36 @@ 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
---
We want to add our own customized Housing Instance.
-#### /db/import/instance_db.txt
+#### /db/import/instance_db.yml
- // ID,Name,LimitTime,IdleTimeOut,EnterMap,EnterX,EnterY,Map2,Map3,...,Map255
- 35,Home,3600,900,1@home,24,6,2@home,3@home
+ - Id: 35
+ Name: Home
+ IdleTimeOut: 900
+ Enter:
+ Map: 1@home
+ X: 24
+ Y: 6
+ AdditionalMaps:
+ - Map: 2@home
+ - Map: 3@home
### Mob Alias
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 28ec2ca234..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
@@ -55,7 +55,7 @@
# NoNearNPC: Determines if the skill can be used near a NPC. (Optional)
# AdditionalRange Number of cells from an NPC where the skill can be cast. (Optional)
# Type: Type of NPC.
-# CastCancel Cancel cast when hit. (Default: true)
+# CastCancel Cancel cast when hit. (Default: false)
# CastDefenseReduction Defense reduction rate during skill cast. (Default: 0)
# CastTime: Time to cast the skill in milliseconds. (Default: 0)
# - Level Skill level.
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/db/status_disabled.txt b/db/status_disabled.txt
index 5196142b16..17058ef039 100644
--- a/db/status_disabled.txt
+++ b/db/status_disabled.txt
@@ -300,6 +300,62 @@ SC_ZANGETSU,16
SC_GENSOU,16
SC_AKAITSUKI,16
+//Summoner
+SC_SUHIDE,16
+SC_SU_STOOP,16
+SC_SPRITEMABLE,16
+SC_CATNIPPOWDER,16
+SC_SV_ROOTTWIST,16
+SC_BITESCAR,16
+SC_ARCLOUSEDASH,16
+SC_TUNAPARTY,16
+SC_SHRIMP,16
+SC_FRESHSHRIMP,16
+
+// Rebellion
+SC_HEAT_BARREL,16
+SC_MAGICALBULLET,16
+SC_P_ALTER,16
+SC_E_CHAIN,16
+SC_C_MARKER,16
+SC_ANTI_M_BLAST,16
+SC_B_TRAP,16
+SC_H_MINE,16
+SC_QD_SHOT_READY,16
+
+// Star Emperor
+SC_LIGHTOFMOON,16
+SC_LIGHTOFSUN,16
+SC_LIGHTOFSTAR,16
+SC_LUNARSTANCE,16
+SC_UNIVERSESTANCE,16
+SC_SUNSTANCE,16
+SC_FLASHKICK,16
+SC_NEWMOON,16
+SC_STARSTANCE,16
+SC_DIMENSION,16
+SC_DIMENSION1,16
+SC_DIMENSION2,16
+SC_CREATINGSTAR,16
+SC_FALLINGSTAR,16
+SC_NOVAEXPLOSING,16
+SC_GRAVITYCONTROL,16
+
+// Soul Reaper
+SC_SOULCOLLECT,16
+SC_SOULREAPER,16
+SC_SOULUNITY,16
+SC_SOULSHADOW,16
+SC_SOULFAIRY,16
+SC_SOULFALCON,16
+SC_SOULGOLEM,16
+SC_SOULDIVISION,16
+SC_SOULENERGY,16
+SC_USE_SKILL_SP_SPA,16
+SC_USE_SKILL_SP_SHA,16
+SC_SP_SHA,16
+SC_SOULCURSE,16
+
// Others
SC_FEAR,16
SC_BURNING,16
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 abf2ba0266..daa2753641 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
@@ -920,6 +929,14 @@ Resets stats (@streset), skills (@skreset), or both (@reset).
@feelreset
Resets a Star Gladiator's marked maps.
+Only works on Star Gladiator and Star Emperor classes.
+
+---------------------------------------
+
+@hatereset
+
+Resets a Star Gladiator's marked monsters.
+Only works on Star Gladiator and Star Emperor classes.
---------------------------------------
@@ -949,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).
@@ -1018,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).
@@ -1135,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.
+
+---------------------------------------
+
==============================
| 5. Administrative Commands |
==============================
@@ -1186,6 +1229,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).
@@ -1336,6 +1387,7 @@ This will also send a packet to clients causing them to close.
@reloadskilldb
@reloadstatusdb
@reloadachievementdb
+@reloadattendancedb
Reloads a database or configuration file.
@@ -1347,6 +1399,7 @@ Databases:
-- script: NPC Scripts
-- skilldb: Skill Database
-- achievementdb: Achievement Database
+-- attendancedb: Attendance Database
Configuration files:
-- atcommand: Atcommand Settings
@@ -1357,19 +1410,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.txt, item_group_db.txt, item_trade.txt, item_noequip.txt, item_nouse.txt, item_combo_db.txt, item_avail.txt, item_stack.txt, item_delay.txt, item_buyingstore.txt, item_flag.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.txt, const.txt, skill_require_db.txt, skill_cast_db.txt, skill_castnodex_db.txt, skill_nocast_db.txt, skill_copyable_db.txt, skill_improvise_db.txt, skill_changematerial_db.txt, skill_nonearnpc_db.txt, skill_damage_db.txt, skill_unit_db.txt, abra_db.txt, create_arrow_db.txt, produce_db.txt, spellbook_db.txt, magicmushroom_db.txt
--- statusdb: attr_fix.txt, size_fix.txt, refine_db.txt
--- achievementdb: achievement_db.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.yml, refine.yml
+-- achievementdb: achievement_db.yml
+-- attendancedb: attendance.yml
Restriction:
- Used from 'atcommand' or 'useatcmd'. For @reload & @reloadscript
@@ -1775,3 +1829,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 5d3a528fb7..60e8dd291b 100644
--- a/doc/item_bonus.txt
+++ b/doc/item_bonus.txt
@@ -22,10 +22,11 @@ This list contains all available constants referenced in the 'bonus' commands.
* Race (r)
RC_Angel, RC_Brute, RC_DemiHuman, RC_Demon, RC_Dragon, RC_Fish, RC_Formless,
- RC_Insect, RC_Plant, RC_Player, RC_Undead, RC_All
+ RC_Insect, RC_Plant, RC_Player_Human (RC_Player deprecated), RC_Player_Doram, RC_Undead, RC_All
* Monster Race (mr)
- RC2_Goblin, RC2_Kobold, RC2_Orc, RC2_Golem, RC2_Guardian, RC2_Ninja
+ RC2_Goblin, RC2_Kobold, RC2_Orc, RC2_Golem, RC2_Guardian, RC2_Ninja,
+ RC2_BioLab, RC2_SCARABA, RC2_FACEWORM, RC2_THANATOS, RC2_CLOCKTOWER, RC2_ROCKRIDGE
See 'db/(pre-)re/mob_race2_db.txt'
* Class (c)
@@ -58,16 +59,17 @@ This list contains all available constants referenced in the 'bonus' commands.
ATF_LONG = Trigger on ranged attacks
Skill/attack type criteria: (Default: Physical/weapon)
+ ATF_SKILL = Trigger on magic/misc skills
ATF_WEAPON = Trigger on weapon skill / physical attacks
ATF_MAGIC = Trigger on magic skills
ATF_MISC = Trigger on misc skills
* Other values:
- Skill (sk): see 'db/(pre-)re/skill_db.txt' (NOTE: Both skill IDs and names, in quotes, are supported.)
+ Skill (sk): see 'db/(pre-)re/skill_db.yml' (NOTE: Both skill IDs and names, in quotes, are supported.)
Monster id (mid): see 'db/(pre-)re/mob_db.txt'
- Item id (iid): see 'db/(pre-)re/item_db.txt'
+ Item id (iid): see 'db/item_db.yml'
Item group (ig): see 'db/(pre-)re/item_group_db.txt' and the constants in 'db/const.txt', prefixed with IG_*
- Weapon type (w): see 'doc/item_db.txt' -> View -> Weapons
+ Weapon type (w): see 'doc/item_db.txt' -> SubType
Bonuses
@@ -166,8 +168,10 @@ bonus2 bSkillUseSPrate,sk,n; Decreases SP consumption of skill sk by n%
Atk/Def
-------
bonus2 bSkillAtk,sk,n; Increases damage of skill sk by n%
-bonus bLongAtkRate,n; Increases damage of ranged attacks by n%
+bonus bShortAtkRate,n; Increases damage of short ranged attacks by n%
+bonus bLongAtkRate,n; Increases damage of long ranged attacks by n%
bonus bCritAtkRate,n; Increases critical damage by +n%
+bonus bCritDefRate,n; Decreases critical damage received by n%
bonus bCriticalDef,n; Decreases the chance of being hit by critical hits by n%
bonus2 bWeaponAtk,w,n; Adds n ATK when weapon of type w is equipped
bonus2 bWeaponDamageRate,w,n; Adds n% damage to normal attacks when weapon of type w is equipped
@@ -224,11 +228,13 @@ bonus3 bAddEle,e,x,bf; +x% physical damage against element e with trigger c
bonus2 bMagicAddEle,e,x; +x% magical damage against element e
bonus2 bSubEle,e,x; +x% damage reduction against attack element e
bonus3 bSubEle,e,x,bf; +x% damage reduction against attack element e with trigger criteria bf
-bonus2 bSubDefEle,e,x; +x% damage reduction from enemy with defense element e
+bonus2 bSubDefEle,e,x; +x% physical damage reduction from enemy with defense element e
+bonus2 bMagicSubDefEle,e,x; +x% magic damage reduction from enemy with defense element e
bonus2 bAddRace,r,x; +x% physical damage against race r
bonus2 bMagicAddRace,r,x; +x% magical damage against race r
bonus2 bSubRace,r,x; +x% damage reduction against race r
+bonus3 bSubRace,r,x,bf; +x% damage reduction against race r with trigger criteria bf
bonus2 bAddClass,c,x; +x% physical damage against class c
bonus2 bMagicAddClass,c,x; +x% magical damage against class c
@@ -237,6 +243,7 @@ bonus2 bSubClass,c,x; +x% damage reduction against class c
bonus2 bAddSize,s,x; +x% physical damage against size s
bonus2 bMagicAddSize,s,x; +x% magical damage against size s
bonus2 bSubSize,s,x; +x% damage reduction against size s
+bonus2 bMagicSubSize,s,x; +x% magic damage reduction against size s
bonus bNoSizeFix; Ignores the size modifier when calculating damage
bonus2 bAddDamageClass,mid,x; +x% physical damage against monster mid
@@ -274,7 +281,6 @@ Ignore Def
----------
bonus bIgnoreDefEle,e; Disregard DEF against enemies of element e
bonus bIgnoreDefRace,r; Disregard DEF against enemies of race r
-bonus2 bIgnoreDefRaceRate,r,n; Disregard n% of the target's DEF if the target belongs to race r
bonus bIgnoreDefClass,c; Disregard DEF against enemies of class c
bonus bIgnoreMDefRace,r; Disregard MDEF against enemies of race r
bonus2 bIgnoreDefRaceRate,r,n; Disregard n% of the target's DEF if the target belongs to race r
@@ -310,6 +316,7 @@ bonus4 bAddEffWhenHit,eff,n,atf,t; Adds a n/100% chance to cause status eff for
ATF_SHORT = trigger on melee attacks
ATF_LONG = trigger on ranged attacks
Skill/attack type criteria: (Default: Physical/weapon)
+ ATF_SKILL = trigger on magic/misc skills
ATF_WEAPON = trigger on weapon skill / physical attacks
ATF_MAGIC = trigger on magic skills
ATF_MISC = trigger on misc skills
@@ -399,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 d79332efb8..d921ad2c49 100644
--- a/doc/item_db.txt
+++ b/doc/item_db.txt
@@ -1,44 +1,82 @@
//===== rAthena Documentation ================================
-//= Item Database
+//= Item Database Structure
//===== By: ==================================================
//= rAthena Dev Team
//===== Last Updated: ========================================
-//= 20160319
+//= 20200602
//===== Description: =========================================
-//= Explanation of the item_db.txt file and structure.
+//= Explanation of the item_db.yml file and structure.
//============================================================
---------------------------------------
-ID: Item id
+Id: Item ID.
---------------------------------------
-AegisName: Server name to reference the item in scripts and lookups,
- should use no spaces.
+AegisName: Server name to reference the item in scripts and lookups, should use no spaces.
---------------------------------------
-Name: Name in English for displaying as output for @ and script commands.
+Name: Name in English for displaying as output for atcommands and script commands.
---------------------------------------
-Type:
- 0 Healing item.
- 2 Usable item.
- 3 Etc item
- 4 Armor/Garment/Boots/Headgear/Accessory
- 5 Weapon
- 6 Card
- 7 Pet egg
- 8 Pet equipment
- 10 Ammo (Arrows/Bullets/etc)
- 11 Usable with delayed consumption (intended for 'itemskill')
- Items using the 'itemskill' script command are consumed after
- selecting a target. Any other command will NOT consume the item.
- 12 Shadow Equipment
- 18 Another delayed consume that requires user confirmation before
- using item.
+Type: Item's type.
+
+Healing - Healing item.
+Usable - Usable item.
+Etc - Etc item.
+Armor - Armor/Garment/Boots/Headgear/Accessory item.
+Weapon - Weapon item.
+Card - Card item.
+PetEgg - Pet egg item.
+PetArmor - Pet equipment item.
+Ammo - Ammo (Arrows/Bullets/etc) item.
+DelayConsume - Usable with delayed consumption (intended for 'itemskill').
+ Items using the 'itemskill' script command are consumed after selecting a target. Any other command will NOT consume the item.
+ShadowGear - Shadow Equipment item.
+Cash - Another delayed consume that requires user confirmation before using the item.
+
+---------------------------------------
+
+SubType: Indicates the weapon-class of the item.
+
+For weapons, the types are:
+Fist
+Dagger
+1hSword
+2hSword
+1hSpear
+2hSpear
+1hAxe
+2hAxe
+Mace
+Staff
+Bow
+Knuckle
+Musical
+Whip
+Book
+Katar
+Revolver
+Rifle
+Gatling
+Shotgun
+Grenade
+Huuma
+2hStaff
+
+For ammo, the types are:
+Arrow
+Dagger
+Bullet
+Shell
+Grenade
+Shuriken
+Kunai
+CannonBall
+ThrowWeapon
---------------------------------------
@@ -54,17 +92,19 @@ Weight: Item's weight. Each 10 is 1 weight.
---------------------------------------
-ATK: Weapon's attack
-
-MATK: Weapon's magic attack (Renewal only)
+Attack: Weapon's attack.
---------------------------------------
-DEF: Armor's defense
+MagicAttack: Weapon's magic attack. (Renewal only)
---------------------------------------
-Range: Weapon's attack range
+Defense: Armor's defense.
+
+---------------------------------------
+
+Range: Weapon's attack range.
---------------------------------------
@@ -72,146 +112,162 @@ Slots: Amount of slots the item possesses.
---------------------------------------
-Job: Equippable jobs. Uses the following bitmask table:
- (S.) Novice (2^00): 0x00000001
- Swordman (2^01): 0x00000002
- Magician (2^02): 0x00000004
- Archer (2^03): 0x00000008
- Acolyte (2^04): 0x00000010
- Merchant (2^05): 0x00000020
- Thief (2^06): 0x00000040
- Knight (2^07): 0x00000080
- Priest (2^08): 0x00000100
- Wizard (2^09): 0x00000200
- Blacksmith (2^10): 0x00000400
- Hunter (2^11): 0x00000800
- Assassin (2^12): 0x00001000
- Unused (2^13): 0x00002000
- Crusader (2^14): 0x00004000
- Monk (2^15): 0x00008000
- Sage (2^16): 0x00010000
- Rogue (2^17): 0x00020000
- Alchemist (2^18): 0x00040000
- Bard/Dancer (2^19): 0x00080000
- Unused (2^20): 0x00100000
- Taekwon (2^21): 0x00200000
- Star Gladiator (2^22): 0x00400000
- Soul Linker (2^23): 0x00800000
- Gunslinger (2^24): 0x01000000
- Ninja (2^25): 0x02000000
- Gangsi (2^26): 0x04000000
- Death Knight (2^27): 0x08000000
- Dark Collector (2^28): 0x10000000
- Kagerou/Oboro (2^29): 0x20000000
- Rebellion (2^30): 0x40000000
- Summoner (2^31): 0x80000000
+Jobs: Equippable jobs.
- Novice + Swordman + Magician + Archer = 0x0000000F, why?
- Because: 10 = A, 11 = B, 12 = C, 13 = D, 14 = E, and 15 = F
- It's using hexadecimal.
+All - Applies to all jobs listed below.
+Acolyte
+Alchemist
+Archer
+Assassin
+BardDancer - Applies to Bard and Dancer.
+Blacksmith
+Crusader
+Gunslinger
+Hunter
+KagerouOboro - Applies to Kagerou and Oboro.
+Knight
+Mage
+Merchant
+Monk
+Ninja
+Novice
+Priest
+Rebellion
+Rogue
+Sage
+SoulLinker
+StarGladiator
+Summoner
+SuperNovice
+Swordman
+Taekwon
+Thief
+Wizard
---------------------------------------
-Class: Equippable upper-types. Uses the following bitmasks:
- 1: Normal classes (no Baby/Transcendent/Third classes)
- 2: Transcedent classes (no Transcedent-Third classes)
- 4: Baby classes (no Third-Baby classes)
- 8: Third classes (no Transcedent-Third or Third-Baby classes)
- 16: Transcedent-Third classes
- 32: Third-Baby classes
+Classes: Equippable upper-types.
+
+All - Applies to all classes.
+Normal - Normal classes (no Baby/Transcendent/Third classes).
+Upper - Transcedent classes (no Transcedent-Third classes).
+Baby - Baby classes (no Third-Baby classes).
+Third - Third classes (no Transcedent-Third or Third-Baby classes).
+Third_Upper - Transcedent-Third classes.
+Third_Baby - Third-Baby classes.
+All_Upper - All Transcedent classes
+All_Baby - All baby classes
+All_Third - Applies to all Third classes.
---------------------------------------
-Gender: Gender restriction. 0 is female, 1 is male, 2 for both.
+Gender: Gender restriction.
+
+Female
+Male
+Both
---------------------------------------
-Loc: Equipment's placement. Values are:
- 2^8 256 = Upper Headgear
- 2^9 512 = Middle Headgear
- 2^0 001 = Lower Headgear
- 2^4 016 = Armor
- 2^1 002 = Weapon
- 2^5 032 = Shield
- 2^2 004 = Garment
- 2^6 064 = Footgear
- 2^3 008 = Accessory Right
- 2^7 128 = Accessory Left
- 2^10 1024 = Costume Top Headgear
- 2^11 2048 = Costume Mid Headgear
- 2^12 4096 = Costume Low Headgear
- 2^13 8192 = Costume Garment/Robe
- 2^15 32768 = Ammo
- 2^16 65536 = Shadow Armor
- 2^17 131072 = Shadow Weapon
- 2^18 262144 = Shadow Shield
- 2^19 524288 = Shadow Shoes
- 2^20 1048576 = Shadow Accessory Right (Earring)
- 2^21 2097152 = Shadow Accessory Left (Pendant)
+Locations: Equipment's placement.
+
+Head_Top - Upper Headgear
+Head_Mid - Middle Headgear
+Head_Low - Lower Headgear
+Armor - Armor
+Right_Hand - Weapon
+Left_Hand - Shield
+Garment - Garment/Robe
+Shoes - Shoes
+Right_Accessory - Accessory Right
+Left_Accessory - Accessory Left
+Costume_Head_Top - Costume Top Headgear
+Costume_Head_Mid - Costume Mid Headgear
+Costume_Head_Low - Costume Low Headgear
+Costume_Garment - Costume Garment/Robe
+Ammo - Ammo
+Shadow_Armor - Shadow Armor
+Shadow_Weapon - Shadow Weapon
+Shadow_Shield - Shadow Shield
+Shadow_Shoes - Shadow Shoes
+Shadow_Right_Accessory - Shadow Accessory Right (Earring)
+Shadow_Left_Accessory - Shadow Accessory Left (Pendant)
+
+Both_Hand - Right_Hand + Left_Hand
+Both_Accessory - Right_Accessory + Left_Accessory
---------------------------------------
-wLV: Weapon level.
+WeaponLevel: Weapon level. Used for refinement.
---------------------------------------
-eLV: Base level required to be able to equip.
-
-maxLevel: Only able to equip if base level is lower than this.
+EquipLevelMin: Base level required to be able to equip.
---------------------------------------
-Refineable: 1 if the item can be refined, 0 otherwise.
+EquipLevelMax: Only able to equip if base level is lower than this.
---------------------------------------
-View: For normal items, defines a replacement view-sprite for the item (eg:
- Making apples look like apple juice). The special case are weapons
- and ammo where this value indicates the weapon-class of the item.
+Refineable: Defines if the item can be refined.
- For weapons, the types are:
- 0: bare fist
- 1: Daggers
- 2: One-handed swords
- 3: Two-handed swords
- 4: One-handed spears
- 5: Two-handed spears
- 6: One-handed axes
- 7: Two-handed axes
- 8: Maces
- 9: Unused
- 10: Staves
- 11: Bows
- 12: Knuckles
- 13: Musical Instruments
- 14: Whips
- 15: Books
- 16: Katars
- 17: Revolvers
- 18: Rifles
- 19: Gatling guns
- 20: Shotguns
- 21: Grenade launchers
- 22: Fuuma Shurikens
- 23: Two-handed staves
- 24: Max Type
- 25: Dual-wield Daggers
- 26: Dual-wield Swords
- 27: Dual-wield Axes
- 28: Dagger + Sword
- 29: Dagger + Axe
- 30: Sword + Axe
+---------------------------------------
- For ammo, the types are:
- 1: Arrows
- 2: Throwable daggers
- 3: Bullets
- 4: Shells
- 5: Grenades
- 6: Shuriken
- 7: Kunai
- 8: Cannonballs
- 9: Throwable Items (Sling Item)
+View: For normal items, defines a replacement view-sprite for the item.
+
+---------------------------------------
+
+AliasName: Use the AegisName of another item which will be sent to the client instead of this item.
+ This makes items visually appear as another without having to change the client data.
+
+---------------------------------------
+
+Flags: Different types of flags for an item.
+
+BuyingStore - If the item is available to Buying Stores.
+DeadBranch - If the item is a Dead Branch type.
+Container - If the item is part of a Container.
+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 on the ground when dropped by a monster.
+
+---------------------------------------
+
+Delay: Item use delay.
+ Duration - Duration of delay in seconds.
+ Status - Status Change used to keep track of the delay.
+
+---------------------------------------
+
+Stack: Item stack amount.
+ Amount - Maximum amount that can be stacked.
+ Inventory - If the stack is applied to player's inventory.
+ Cart - If the stack is applied to the player's cart.
+ Storage - If the stack is applied to the player's storage.
+ GuildStorage - If the stack is applied to the player's guild storage.
+
+---------------------------------------
+
+NoUse: Conditions when the item is unusable.
+ Override - Group level to override these conditions.
+ Sitting - If the item can not be used while sitting.
+
+---------------------------------------
+
+Trade: Trade restrictions.
+ Override - Group level to override these conditions.
+ NoDrop - If the item can not be dropped.
+ NoTrade - If the item can not be traded.
+ TradePartner - If the item can not be traded to the player's partner.
+ NoSell - If the item can not be sold.
+ NoCart - If the item can not be put in a cart.
+ NoStorage - If the item can not be put in a storage.
+ NoGuildStorage - If the item can not be put in a guild storage.
+ NoMail - If the item can not be put in a mail.
+ NoAuction - If the item can not be put in an auction.
---------------------------------------
@@ -224,8 +280,5 @@ OnEquip_Script: Script to execute when the item is equipped.
---------------------------------------
-OnUnequip_Script: Script to execute when the item is unequipped
- or when a rental item expires.
+OnUnequip_Script: Script to execute when the item is unequipped or when a rental item expires.
Warning, not all item bonuses will work here as expected.
-
----------------------------------------
diff --git a/branding/logo.png b/doc/logo.png
similarity index 100%
rename from branding/logo.png
rename to doc/logo.png
diff --git a/doc/mapflags.txt b/doc/mapflags.txt
index aa6cb66554..bfcc9285f9 100644
--- a/doc/mapflags.txt
+++ b/doc/mapflags.txt
@@ -304,7 +304,7 @@ for 'Map' type 16 will be applied.
This mapflag can also be used to adjust the damage of one skill by a percentage:
- skill_name:
- Name of the skill in 'db/(pre-)re/skill_db.txt' (ex. SM_BASH).
+ Name of the skill in 'db/(pre-)re/skill_db.yml' (ex. SM_BASH).
To adjust all skill damage, write "all" (without quotes).
- caster: the groups for which the adjustment takes effect. (bitmask)
BL_PC = Player
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/mob_skill_db_powerskill.txt b/doc/mob_skill_db_powerskill.txt
index 3c7e6075e8..8c191a8771 100644
--- a/doc/mob_skill_db_powerskill.txt
+++ b/doc/mob_skill_db_powerskill.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= rAthena Dev Team
//===== Last Updated: ========================================
-//= 20160213
+//= 20200104
//===== Description: =========================================
//= Reference for monster level 10 skills.
//============================================================
@@ -12,7 +12,12 @@ When a monster uses a level 10 skill on Aegis, it will be much stronger than the
normal player version. On rAthena we reflect this by giving the monster a skill
level above the maximum player level.
The following lists explains the skill specialities and the corresponding level
-you need to put for these skills in the mob_skill_db.
+which needs to be put for these skills in the mob_skill_db.
+
+Note: The "SkillDatabase::parseNode" template has a linear determination feature
+where it will attempt to fill the values from the last level defined to MAX_SKILL_LEVEL.
+If it can't determine a trend it will fill with the last level defined.
+
-------------------------------------------------------------------------------
Skill | rAthena Lv | Explanation
-------------------------------------------------------------------------------
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 74d8fb9438..3fe535b7e2 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -3,7 +3,7 @@
//===== By:==================================================
//= rAthena Dev Team
//===== Last Updated:========================================
-//= 20180831
+//= 20201115
//===== Description:=========================================
//= A reference manual for the rAthena scripting language.
//= Commands are sorted depending on their functionality.
@@ -296,7 +296,7 @@ clicking) will cause a shop window to come up. No code whatsoever runs in shop
NPCs and you can't change the prices otherwise than by editing the script
itself.
-The Item ID is the number of item in the 'item_db.txt' database. If Price is set
+The Item ID is the number of item in the 'db/item_db.yml' database. If Price is set
to -1, the 'buy price' given in the item database will be used. Otherwise, the
price you gave will be used for this item, which is how you create differing
prices for items in different shops.
@@ -958,13 +958,6 @@ mapflag for it to work is because, otherwise, it'd be server-wide and trigger
every time a player would change maps. Imagine the server load with 1,000 players
(oh the pain...)
-OnPCStatCalcEvent:
-
-This special label triggers when a player's stats are recalculated, such as when
-changing stats, equipment, or maps, as well as when logging in, leveling up, and
-mounting a job mount. This can be used to grant additional item bonuses to certain
-player groups, for instance.
-
OnWhisperGlobal:
This special label triggers when a player whispers the NPC, and will run with the
@@ -1132,6 +1125,24 @@ Similarly, you can create links to websites that launch in a new window:
Display Namehttp://www.example.com/";
+Quests
+------
+You can link to a quest:
+
+ Quest1
+
+Message
+-------
+You can show a message from the msgstringtable:
+
+ 1
+
+Tips
+----
+You can show a tip box:
+
+ Show Tip1
+
---------------------------------------
*next;
@@ -1648,7 +1659,7 @@ S_CheckFull:
Example 2: callsub used repeatedly, with different arguments
// notice how the Zeny check/delete is reused, instead of copy-pasting for every warp
- switch(select("Abyss Lake:Amatsu Dungeon:Anthell:Ayothaya Dungeon:Beacon Island, Pharos") {
+ switch(select("Abyss Lake:Amatsu Dungeon:Anthell:Ayothaya Dungeon:Beacon Island, Pharos")) {
case 1: callsub S_DunWarp,"hu_fild05",192,207;
case 2: callsub S_DunWarp,"ama_in02",119,181;
case 3: callsub S_DunWarp,"moc_fild20",164,145;
@@ -1908,7 +1919,7 @@ Example 3:
Example 4:
mes "[Quest Person]";
- if (countitem(512) < 1) { // 512 is the item ID for Apple, found in item_db
+ if (countitem(512) < 1) { // 512 is the item ID for Apple, found in db/item_db.yml
mes "Can you please bring me an apple?";
close;
}
@@ -2613,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)
@@ -2694,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.
---------------------------------------
@@ -2840,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.
@@ -2855,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.
---------------------------------------
@@ -2868,8 +2884,7 @@ number.
This is the only function around where a parameter may be either a string or a
number! If it's a number, it means that only the items with that item ID number
will be counted. If it is a string, it is assumed to mean the 'english name'
-field from the item database. If you give it an empty string, or something that
-isn't found from the item database, it will count items number '512' (apples).
+field from the item database.
---------------------------------------
@@ -2917,6 +2932,7 @@ recreate these items perfectly if they are destroyed. Here's what you get:
@inventorylist_option_id5[] - fifth array of random option IDs
@inventorylist_option_value5[] - fifth array of random option values
@inventorylist_option_parameter5[] - fifth array of random option parameters
+@inventorylist_tradable - Returns if an item is tradable or not (Pass item_trade.txt, bound, and rental restrictions).
This could be handy to save/restore a character's inventory, since no other
command returns such a complete set of data, and could also be the only way to
@@ -2984,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'.
---------------------------------------
@@ -3433,7 +3453,7 @@ recalculating guardians' HP.
This function returns the level of the skill of the guild .
If the guild does not have that skill, 0 is returned.
If the guild does not exist, -1 is returned.
-Refer to 'db/(pre-)re/skill_db.txt' for the full list of skills. (GD_* are guild skills)
+Refer to 'db/(pre-)re/skill_db.yml' for the full list of skills. (GD_* are guild skills)
---------------------------------------
@@ -3466,7 +3486,7 @@ mes "You have " + getMapGuildUsers("prontera",getcharid(2)) + " guild members in
This function returns the level of the specified skill that the invoking
character has. If they don't have the skill, 0 will be returned. The full list
-of character skills is available in 'db/(pre-)re/skill_db.txt'.
+of character skills is available in 'db/(pre-)re/skill_db.yml'.
There are two main uses for this function, it can check whether the character
has a skill or not, and it can tell you if the level is high enough.
@@ -3839,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.
@@ -3914,6 +3940,22 @@ Name is optional, and defaults to the attached player if omitted.
---------------------------------------
+*checkidlehom({""})
+
+Returns the time, in seconds, that the specified player has been idle for homunculus item/exp share.
+Name is optional, and defaults to the attached player if omitted.
+This will only work if 'hom_idle_no_share' and 'idletime_hom_option' are enabled (see '/conf/battle/homunc.conf').
+
+---------------------------------------
+
+*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()
@@ -3943,8 +3985,8 @@ more:
Checks if a renewal feature is enabled or not in renewal.hpp, and returns 1 if
enabled and 0 for disabled.
-The renewal feature to check is determined by type.
- 0 - RENEWAL (game renewal server mode)
+The renewal feature to check is determined by the number .
+ 0 - RENEWAL enabled (game renewal server mode)
1 - RENEWAL_CAST (renewal cast time)
2 - RENEWAL_DROP (renewal drop rate algorithms)
3 - RENEWAL_EXP (renewal exp rate algorithms)
@@ -4595,7 +4637,7 @@ online, items will be created in their inventory instead. If they are not
online, nothing will happen.
In the first and most commonly used version of this command, items are
-referred to by their database ID number found inside 'db/(pre-)re/item_db.txt'.
+referred to by their database ID number found inside 'db/item_db.yml'.
getitem 502,10 // The person will receive 10 apples
getitem 617,1 // The person will receive 1 Old Violet Box
@@ -4797,8 +4839,9 @@ for special cases such as removing a status change or resetting a variable or st
of the player.
This command can not be used to rent stackable items. Rental items cannot be
-dropped, traded, sold to NPCs, or placed in guild storage. (i.e. trade mask 75)
+dropped, traded, or placed in guild storage. (i.e. trade mask 67)
Note: 'delitem' in an NPC script can still remove rental items.
+Note: 'countitem' will not count any item with a rental timer. Use 'rentalcountitem' instead.
---------------------------------------
@@ -4861,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;
@@ -4900,7 +4943,7 @@ the results array is limited to 10 items.
*delitem "
- ",{,};
This command will remove a specified amount of items from the invoking/target character.
-Like all the item commands, it uses the item ID found inside 'db/(pre-)re/item_db.txt'.
+Like all the item commands, it uses the item ID found inside 'db/item_db.yml'.
delitem 502,10; // The person will lose 10 apples
delitem 617,1; // The person will lose 1 Old Violet Box
@@ -5029,20 +5072,47 @@ If player is not in a guild or storage is open, 'guildstoragecountitem2' will re
---------------------------------------
+*rentalcountitem(
- {,})
+*rentalcountitem("
- "{,})
+
+This function will return the number of rental items for the specified item ID that the
+invoking character has in the inventory.
+
+---------------------------------------
+
+*rentalcountitem2(
- ,,,,,,,{,})
+*rentalcountitem2("
- ",,,,,,,{,})
+*rentalcountitem3(
- ,,,,,,,,,,{,})
+*rentalcountitem3("
- ",,,,,,,,,,{,})
+
+Expanded version of 'rentalcountitem' function, used for created/carded/forged items.
+
+This function will return the number of rental items for the specified item ID and
+other parameters that the invoking character has in the inventory.
+See 'getitem2' for an explanation of the expanded parameters.
+
+'rentalcountitem3' is advance version of 'rentalcountitem2' that also use Item Random Option as criteria.
+ : Array variable of ID for item random option, see db/[pre-]re/item_randomopt_db.txt
+ : Array variable of item random option's value.
+ : Array variable of item random option's param.
+
+---------------------------------------
+
*countbound({{,}})
-This function will return the number of bounded items in the character's
-inventory, and sets an array @bound_items[] containing all item IDs of the
-counted items. If a bound type is specified, only those items will be counted.
+This function will return the number of different bounded items in the character's
+inventory, and sets the arrays @bound_items[] and @bound_amount[] containing all item IDs of the
+counted items and their respective amount. If a bound type is specified, only those items will be counted.
For a list of bound types see 'getitembound'.
Example:
- mes "You currently have " + countbound() + " bounded items.";
+ .@total_type = countbound();
+ mes "You currently have " + .@total_type + " different type of bounded items.";
next;
mes "The list of bounded items include:";
- for(.@i = 0; .@i < getarraysize(@bound_items); .@i++)
- mes getitemname(@bound_items[.@i]);
+ for(.@i = 0; .@i < .@total_type; .@i++)
+ mes "x" + @bound_amount[.@i] + " " + getitemname(@bound_items[.@i]);
close;
---------------------------------------
@@ -5114,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;
---------------------------------------
@@ -5210,7 +5295,7 @@ a rune and has the appropriate raw materials in their inventory.
*successremovecards ;
-This command will remove all cards of the cards slots defined by item_db.txt
+This command will remove all cards of the cards slots defined in db/item_db.yml
from the item found in the specified equipment slot of the invoking character,
create new card items and give them to the character.
If any cards were removed in this manner, it will also show a success effect.
@@ -5582,7 +5667,7 @@ levels. This refers to the invoking character and will only work if the invoking
character is a member of a guild AND its guild master, otherwise no failure
message will be given and no error will occur, but nothing will happen - same
about the guild skill trying to exceed the possible maximum. The full list of
-guild skills is available in 'db/(pre-)re/skill_db.txt', these are all the GD_ skills at
+guild skills is available in 'db/(pre-)re/skill_db.yml', these are all the GD_ skills at
the end.
// This would give your character's guild one level of Approval (GD_APPROVAL ID
@@ -5647,6 +5732,20 @@ Used in reset NPC's (duh!)
---------------------------------------
+*resetfeel({});
+
+This command will reset the Star Gladiator's designated maps on the invoking character.
+Only works on Star Gladiator and Star Emperor classes.
+
+---------------------------------------
+
+*resethate({});
+
+This command will reset the Star Gladiator's designated monsters on the invoking character.
+Only works on Star Gladiator and Star Emperor classes.
+
+---------------------------------------
+
*sc_start ,,{,,